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/kirkwood-km_common.dtsi

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
    2 / {
    3         chosen {
    4                 bootargs = "console=ttyS0,115200n8 earlyprintk";
    5                 stdout-path = &uart0;
    6         };
    7 
    8         ocp@f1000000 {
    9                 pinctrl: pin-controller@10000 {
   10                         pinctrl-0 = < &pmx_i2c_gpio_sda &pmx_i2c_gpio_scl >;
   11                         pinctrl-names = "default";
   12 
   13                         pmx_i2c_gpio_sda: pmx-gpio-sda {
   14                                 marvell,pins = "mpp8";
   15                                 marvell,function = "gpio";
   16                         };
   17                         pmx_i2c_gpio_scl: pmx-gpio-scl {
   18                                 marvell,pins = "mpp9";
   19                                 marvell,function = "gpio";
   20                         };
   21                 };
   22 
   23                 serial@12000 {
   24                         status = "okay";
   25                 };
   26         };
   27 
   28         i2c {
   29                 compatible = "i2c-gpio";
   30                 gpios = < &gpio0 8 GPIO_ACTIVE_HIGH             /* sda */
   31                           &gpio0 9 GPIO_ACTIVE_HIGH>;           /* scl */
   32                 i2c-gpio,delay-us = <2>;        /* ~100 kHz */
   33         };
   34 };
   35 
   36 &nand {
   37         status = "okay";
   38         chip-delay = <25>;
   39 };
   40 
   41 &pciec {
   42         status = "okay";
   43 };
   44 
   45 &pcie0 {
   46         status = "okay";
   47 };

Cache object: 838328f53ed434076d76071f99d9d9bf


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