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

TOMOYO Linux Cross Reference
Linux/arch/arm/boot/dts/intel/ixp/intel-ixp42x-adi-coyote.dts

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: ISC
  2 /*
  3  * Device Tree file for ADI Engineering Coyote platform.
  4  * Derived from boardfiles written by MontaVista software.
  5  * Ethernet set-up from OpenWrt.
  6  */
  7 
  8 /dts-v1/;
  9 
 10 #include "intel-ixp42x.dtsi"
 11 #include <dt-bindings/input/input.h>
 12 
 13 / {
 14         model = "ADI Engineering Coyote reference design";
 15         compatible = "adieng,coyote", "intel,ixp42x";
 16         #address-cells = <1>;
 17         #size-cells = <1>;
 18 
 19         memory@0 {
 20                 /* CHECKME: 16 MB SDRAM minimum, maybe the Coyote actually has more */
 21                 device_type = "memory";
 22                 reg = <0x00000000 0x01000000>;
 23         };
 24 
 25         chosen {
 26                 bootargs = "console=ttyS0,115200n8 root=/dev/sda1 rw rootwait";
 27                 stdout-path = "uart1:115200n8";
 28         };
 29 
 30         aliases {
 31                 /* These are switched around */
 32                 serial0 = &uart1;
 33                 serial1 = &uart0;
 34         };
 35 
 36         soc {
 37                 bus@c4000000 {
 38                         flash@0,0 {
 39                                 compatible = "intel,ixp4xx-flash", "cfi-flash";
 40                                 bank-width = <2>;
 41                                 /*
 42                                  * 32 MB of Flash in 128 0x20000 sized blocks
 43                                  * mapped in at CS0 and CS1
 44                                  */
 45                                 reg = <0 0x00000000 0x2000000>;
 46 
 47                                 /* Configure expansion bus to allow writes */
 48                                 intel,ixp4xx-eb-write-enable = <1>;
 49 
 50                                 partitions {
 51                                         compatible = "redboot-fis";
 52                                         /* CHECKME: guess this is Redboot FIS */
 53                                         fis-index-block = <0x1ff>;
 54                                 };
 55                         };
 56                 };
 57 
 58                 pci@c0000000 {
 59                         status = "okay";
 60 
 61                         /*
 62                          * Taken from Coyote PCI boardfile.
 63                          * We have slots (IDSEL) 1 and 2 with one assigned IRQ
 64                          * each handling all IRQs.
 65                          */
 66                         #interrupt-cells = <1>;
 67                         interrupt-map-mask = <0xf800 0 0 7>;
 68                         interrupt-map =
 69                         /* IDSEL 1 */
 70                         <0x0800 0 0 1 &gpio0 6 IRQ_TYPE_LEVEL_LOW>, /* INT A on slot 1 is irq 6 */
 71                         <0x0800 0 0 2 &gpio0 6 IRQ_TYPE_LEVEL_LOW>, /* INT B on slot 1 is irq 6 */
 72                         <0x0800 0 0 3 &gpio0 6 IRQ_TYPE_LEVEL_LOW>, /* INT C on slot 1 is irq 6 */
 73                         <0x0800 0 0 4 &gpio0 6 IRQ_TYPE_LEVEL_LOW>, /* INT D on slot 1 is irq 6 */
 74                         /* IDSEL 2 */
 75                         <0x1000 0 0 1 &gpio0 11 IRQ_TYPE_LEVEL_LOW>, /* INT A on slot 2 is irq 11 */
 76                         <0x1000 0 0 2 &gpio0 11 IRQ_TYPE_LEVEL_LOW>, /* INT B on slot 2 is irq 11 */
 77                         <0x1000 0 0 3 &gpio0 11 IRQ_TYPE_LEVEL_LOW>, /* INT C on slot 2 is irq 11 */
 78                         <0x1000 0 0 4 &gpio0 11 IRQ_TYPE_LEVEL_LOW>; /* INT D on slot 2 is irq 11 */
 79                 };
 80 
 81                 /* EthB */
 82                 ethernet@c8009000 {
 83                         status = "okay";
 84                         queue-rx = <&qmgr 3>;
 85                         queue-txready = <&qmgr 20>;
 86                         phy-mode = "rgmii";
 87                         phy-handle = <&phy5>;
 88 
 89                         mdio {
 90                                 #address-cells = <1>;
 91                                 #size-cells = <0>;
 92 
 93                                 phy4: ethernet-phy@4 {
 94                                         reg = <4>;
 95                                 };
 96 
 97                                 phy5: ethernet-phy@5 {
 98                                         reg = <5>;
 99                                 };
100                         };
101                 };
102 
103                 /* EthC */
104                 ethernet@c800a000 {
105                         status = "okay";
106                         queue-rx = <&qmgr 4>;
107                         queue-txready = <&qmgr 21>;
108                         phy-mode = "rgmii";
109                         phy-handle = <&phy4>;
110                 };
111         };
112 };

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