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/suniv-f1c100s-licheepi-nano.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 X11)
    2 /*
    3  * Copyright 2018 Icenowy Zheng <icenowy@aosc.io>
    4  */
    5 
    6 /dts-v1/;
    7 #include "suniv-f1c100s.dtsi"
    8 
    9 / {
   10         model = "Lichee Pi Nano";
   11         compatible = "licheepi,licheepi-nano", "allwinner,suniv-f1c100s";
   12 
   13         aliases {
   14                 mmc0 = &mmc0;
   15                 serial0 = &uart0;
   16                 spi0 = &spi0;
   17         };
   18 
   19         chosen {
   20                 stdout-path = "serial0:115200n8";
   21         };
   22 
   23         reg_vcc3v3: vcc3v3 {
   24                 compatible = "regulator-fixed";
   25                 regulator-name = "vcc3v3";
   26                 regulator-min-microvolt = <3300000>;
   27                 regulator-max-microvolt = <3300000>;
   28         };
   29 };
   30 
   31 &mmc0 {
   32         broken-cd;
   33         bus-width = <4>;
   34         disable-wp;
   35         status = "okay";
   36         vmmc-supply = <&reg_vcc3v3>;
   37 };
   38 
   39 &spi0 {
   40         pinctrl-names = "default";
   41         pinctrl-0 = <&spi0_pc_pins>;
   42         status = "okay";
   43 
   44         flash@0 {
   45                 #address-cells = <1>;
   46                 #size-cells = <1>;
   47                 compatible = "winbond,w25q128", "jedec,spi-nor";
   48                 reg = <0>;
   49                 spi-max-frequency = <40000000>;
   50         };
   51 };
   52 
   53 &uart0 {
   54         pinctrl-names = "default";
   55         pinctrl-0 = <&uart0_pe_pins>;
   56         status = "okay";
   57 };

Cache object: bead75154e56ca82b967d1ef27c4f828


[ 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.