The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/src/arm/rda8810pl-orangepi-i96.dts

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
    2 /*
    3  * Copyright (c) 2017 Andreas Färber
    4  * Copyright (c) 2018 Manivannan Sadhasivam
    5  */
    6 
    7 /dts-v1/;
    8 
    9 #include "rda8810pl.dtsi"
   10 
   11 / {
   12         compatible = "xunlong,orangepi-i96", "rda,8810pl";
   13         model = "Orange Pi i96";
   14 
   15         aliases {
   16                 serial0 = &uart2;
   17                 serial1 = &uart1;
   18                 serial2 = &uart3;
   19         };
   20 
   21         chosen {
   22                 stdout-path = "serial2:921600n8";
   23         };
   24 
   25         memory@80000000 {
   26                 device_type = "memory";
   27                 reg = <0x80000000 0x10000000>;
   28         };
   29 
   30         uart_clk: uart-clk {
   31                 compatible = "fixed-clock";
   32                 clock-frequency = <921600>;
   33                 #clock-cells = <0>;
   34         };
   35 };
   36 
   37 &uart1 {
   38         status = "okay";
   39         clocks = <&uart_clk>;
   40 };
   41 
   42 &uart2 {
   43         status = "okay";
   44         clocks = <&uart_clk>;
   45 };
   46 
   47 &uart3 {
   48         status = "okay";
   49         clocks = <&uart_clk>;
   50 };

Cache object: 758c15989b70a9c610dc0373974834fb


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.