~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/arm/boot/dts/microchip/at91sam9x5cm.dtsi

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-or-later
  2 /*
  3  * at91sam9x5cm.dtsi - Device Tree Include file for AT91SAM9x5 CPU Module
  4  *
  5  *  Copyright (C) 2012 Atmel,
  6  *                2012 Nicolas Ferre <nicolas.ferre@atmel.com>
  7  */
  8 
  9 / {
 10         memory@20000000 {
 11                 reg = <0x20000000 0x8000000>;
 12         };
 13 
 14         clocks {
 15                 slow_xtal {
 16                         clock-frequency = <32768>;
 17                 };
 18 
 19                 main_xtal {
 20                         clock-frequency = <12000000>;
 21                 };
 22         };
 23 
 24         ahb {
 25                 apb {
 26                         tcb0: timer@f8008000 {
 27                                 timer@0 {
 28                                         compatible = "atmel,tcb-timer";
 29                                         reg = <0>;
 30                                 };
 31 
 32                                 timer@1 {
 33                                         compatible = "atmel,tcb-timer";
 34                                         reg = <1>;
 35                                 };
 36                         };
 37 
 38                         pinctrl@fffff400 {
 39                                 1wire_cm {
 40                                         pinctrl_1wire_cm: 1wire_cm-0 {
 41                                                 atmel,pins = <AT91_PIOB 18 AT91_PERIPH_GPIO AT91_PINCTRL_MULTI_DRIVE>; /* PB18 multidrive, conflicts with led */
 42                                         };
 43                                 };
 44                         };
 45 
 46                         rtc@fffffeb0 {
 47                                 status = "okay";
 48                         };
 49                 };
 50 
 51                 ebi: ebi@10000000 {
 52                         pinctrl-0 = <&pinctrl_ebi_addr_nand
 53                                      &pinctrl_ebi_data_0_7>;
 54                         pinctrl-names = "default";
 55                         status = "okay";
 56 
 57                         nand_controller: nand-controller {
 58                                 status = "okay";
 59                                 pinctrl-0 = <&pinctrl_nand_oe_we
 60                                              &pinctrl_nand_cs
 61                                              &pinctrl_nand_rb>;
 62                                 pinctrl-names = "default";
 63 
 64                                 nand@3 {
 65                                         reg = <0x3 0x0 0x800000>;
 66                                         rb-gpios = <&pioD 5 GPIO_ACTIVE_HIGH>;
 67                                         cs-gpios = <&pioD 4 GPIO_ACTIVE_HIGH>;
 68                                         nand-bus-width = <8>;
 69                                         nand-ecc-mode = "hw";
 70                                         nand-ecc-strength = <2>;
 71                                         nand-ecc-step-size = <512>;
 72                                         nand-on-flash-bbt;
 73                                         label = "atmel_nand";
 74 
 75                                         partitions {
 76                                                 compatible = "fixed-partitions";
 77                                                 #address-cells = <1>;
 78                                                 #size-cells = <1>;
 79 
 80                                                 at91bootstrap@0 {
 81                                                         label = "at91bootstrap";
 82                                                         reg = <0x0 0x40000>;
 83                                                 };
 84 
 85                                                 uboot@40000 {
 86                                                         label = "u-boot";
 87                                                         reg = <0x40000 0xc0000>;
 88                                                 };
 89 
 90                                                 ubootenvred@100000 {
 91                                                         label = "U-Boot Env Redundant";
 92                                                         reg = <0x100000 0x40000>;
 93                                                 };
 94 
 95                                                 ubootenv@140000 {
 96                                                         label = "U-Boot Env";
 97                                                         reg = <0x140000 0x40000>;
 98                                                 };
 99 
100                                                 dtb@180000 {
101                                                         label = "device tree";
102                                                         reg = <0x180000 0x80000>;
103                                                 };
104 
105                                                 kernel@200000 {
106                                                         label = "kernel";
107                                                         reg = <0x200000 0x600000>;
108                                                 };
109 
110                                                 rootfs@800000 {
111                                                         label = "rootfs";
112                                                         reg = <0x800000 0x0f800000>;
113                                                 };
114                                         };
115                                 };
116                         };
117                 };
118         };
119 
120         leds {
121                 compatible = "gpio-leds";
122 
123                 led-pb18 {
124                         label = "pb18";
125                         gpios = <&pioB 18 GPIO_ACTIVE_LOW>;
126                         linux,default-trigger = "heartbeat";
127                 };
128 
129                 led-pd21 {
130                         label = "pd21";
131                         gpios = <&pioD 21 GPIO_ACTIVE_HIGH>;
132                 };
133         };
134 
135         1wire_cm {
136                 compatible = "w1-gpio";
137                 gpios = <&pioB 18 GPIO_ACTIVE_HIGH>;
138                 linux,open-drain;
139                 pinctrl-names = "default";
140                 pinctrl-0 = <&pinctrl_1wire_cm>;
141                 status = "okay";
142         };
143 
144 };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php