diff options
| author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-03-29 22:46:19 -0400 |
|---|---|---|
| committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-03-29 22:46:19 -0400 |
| commit | 0a3108beea9143225119d5e7c72a8e2c64f3eb7d (patch) | |
| tree | 89ec500c03f0704799407265db21966b721c6d3f | |
| parent | ec78c8ac16e7a5f45e21838ab2f5573200bfcdd3 (diff) | |
| parent | df4b6806d35ca6adedd5c0a7e36ac74af1c32d7a (diff) | |
Merge commit 'kumar/next' into next
69 files changed, 4507 insertions, 1813 deletions
diff --git a/Documentation/powerpc/dts-bindings/fsl/ssi.txt b/Documentation/powerpc/dts-bindings/fsl/ssi.txt index 731332288931..5ff76c9c57d2 100644 --- a/Documentation/powerpc/dts-bindings/fsl/ssi.txt +++ b/Documentation/powerpc/dts-bindings/fsl/ssi.txt | |||
| @@ -4,46 +4,56 @@ The SSI is a serial device that communicates with audio codecs. It can | |||
| 4 | be programmed in AC97, I2S, left-justified, or right-justified modes. | 4 | be programmed in AC97, I2S, left-justified, or right-justified modes. |
| 5 | 5 | ||
| 6 | Required properties: | 6 | Required properties: |
| 7 | - compatible : compatible list, containing "fsl,ssi" | 7 | - compatible: Compatible list, contains "fsl,ssi". |
| 8 | - cell-index : the SSI, <0> = SSI1, <1> = SSI2, and so on | 8 | - cell-index: The SSI, <0> = SSI1, <1> = SSI2, and so on. |
| 9 | - reg : offset and length of the register set for the device | 9 | - reg: Offset and length of the register set for the device. |
| 10 | - interrupts : <a b> where a is the interrupt number and b is a | 10 | - interrupts: <a b> where a is the interrupt number and b is a |
| 11 | field that represents an encoding of the sense and | 11 | field that represents an encoding of the sense and |
| 12 | level information for the interrupt. This should be | 12 | level information for the interrupt. This should be |
| 13 | encoded based on the information in section 2) | 13 | encoded based on the information in section 2) |
| 14 | depending on the type of interrupt controller you | 14 | depending on the type of interrupt controller you |
| 15 | have. | 15 | have. |
| 16 | - interrupt-parent : the phandle for the interrupt controller that | 16 | - interrupt-parent: The phandle for the interrupt controller that |
| 17 | services interrupts for this device. | 17 | services interrupts for this device. |
| 18 | - fsl,mode : the operating mode for the SSI interface | 18 | - fsl,mode: The operating mode for the SSI interface. |
| 19 | "i2s-slave" - I2S mode, SSI is clock slave | 19 | "i2s-slave" - I2S mode, SSI is clock slave |
| 20 | "i2s-master" - I2S mode, SSI is clock master | 20 | "i2s-master" - I2S mode, SSI is clock master |
| 21 | "lj-slave" - left-justified mode, SSI is clock slave | 21 | "lj-slave" - left-justified mode, SSI is clock slave |
| 22 | "lj-master" - l.j. mode, SSI is clock master | 22 | "lj-master" - l.j. mode, SSI is clock master |
| 23 | "rj-slave" - right-justified mode, SSI is clock slave | 23 | "rj-slave" - right-justified mode, SSI is clock slave |
| 24 | "rj-master" - r.j., SSI is clock master | 24 | "rj-master" - r.j., SSI is clock master |
| 25 | "ac97-slave" - AC97 mode, SSI is clock slave | 25 | "ac97-slave" - AC97 mode, SSI is clock slave |
| 26 | "ac97-master" - AC97 mode, SSI is clock master | 26 | "ac97-master" - AC97 mode, SSI is clock master |
| 27 | - fsl,playback-dma: phandle to a node for the DMA channel to use for | 27 | - fsl,playback-dma: Phandle to a node for the DMA channel to use for |
| 28 | playback of audio. This is typically dictated by SOC | 28 | playback of audio. This is typically dictated by SOC |
| 29 | design. See the notes below. | 29 | design. See the notes below. |
| 30 | - fsl,capture-dma: phandle to a node for the DMA channel to use for | 30 | - fsl,capture-dma: Phandle to a node for the DMA channel to use for |
| 31 | capture (recording) of audio. This is typically dictated | 31 | capture (recording) of audio. This is typically dictated |
| 32 | by SOC design. See the notes below. | 32 | by SOC design. See the notes below. |
| 33 | - fsl,fifo-depth: the number of elements in the transmit and receive FIFOs. | 33 | - fsl,fifo-depth: The number of elements in the transmit and receive FIFOs. |
| 34 | This number is the maximum allowed value for SFCSR[TFWM0]. | 34 | This number is the maximum allowed value for SFCSR[TFWM0]. |
| 35 | - fsl,ssi-asynchronous: | ||
| 36 | If specified, the SSI is to be programmed in asynchronous | ||
| 37 | mode. In this mode, pins SRCK, STCK, SRFS, and STFS must | ||
| 38 | all be connected to valid signals. In synchronous mode, | ||
| 39 | SRCK and SRFS are ignored. Asynchronous mode allows | ||
| 40 | playback and capture to use different sample sizes and | ||
| 41 | sample rates. Some drivers may require that SRCK and STCK | ||
| 42 | be connected together, and SRFS and STFS be connected | ||
| 43 | together. This would still allow different sample sizes, | ||
| 44 | but not different sample rates. | ||
| 35 | 45 | ||
| 36 | Optional properties: | 46 | Optional properties: |
| 37 | - codec-handle : phandle to a 'codec' node that defines an audio | 47 | - codec-handle: Phandle to a 'codec' node that defines an audio |
| 38 | codec connected to this SSI. This node is typically | 48 | codec connected to this SSI. This node is typically |
| 39 | a child of an I2C or other control node. | 49 | a child of an I2C or other control node. |
| 40 | 50 | ||
| 41 | Child 'codec' node required properties: | 51 | Child 'codec' node required properties: |
| 42 | - compatible : compatible list, contains the name of the codec | 52 | - compatible: Compatible list, contains the name of the codec |
| 43 | 53 | ||
| 44 | Child 'codec' node optional properties: | 54 | Child 'codec' node optional properties: |
| 45 | - clock-frequency : The frequency of the input clock, which typically | 55 | - clock-frequency: The frequency of the input clock, which typically comes |
| 46 | comes from an on-board dedicated oscillator. | 56 | from an on-board dedicated oscillator. |
| 47 | 57 | ||
| 48 | Notes on fsl,playback-dma and fsl,capture-dma: | 58 | Notes on fsl,playback-dma and fsl,capture-dma: |
| 49 | 59 | ||
diff --git a/arch/powerpc/boot/dts/asp834x-redboot.dts b/arch/powerpc/boot/dts/asp834x-redboot.dts index 524af7ef9f26..7da84fd7be93 100644 --- a/arch/powerpc/boot/dts/asp834x-redboot.dts +++ b/arch/powerpc/boot/dts/asp834x-redboot.dts | |||
| @@ -181,70 +181,76 @@ | |||
| 181 | phy_type = "ulpi"; | 181 | phy_type = "ulpi"; |
| 182 | }; | 182 | }; |
| 183 | 183 | ||
| 184 | mdio@24520 { | ||
| 185 | #address-cells = <1>; | ||
| 186 | #size-cells = <0>; | ||
| 187 | compatible = "fsl,gianfar-mdio"; | ||
| 188 | reg = <0x24520 0x20>; | ||
| 189 | |||
| 190 | phy0: ethernet-phy@0 { | ||
| 191 | interrupt-parent = <&ipic>; | ||
| 192 | interrupts = <17 0x8>; | ||
| 193 | reg = <0x1>; | ||
| 194 | device_type = "ethernet-phy"; | ||
| 195 | }; | ||
| 196 | phy1: ethernet-phy@1 { | ||
| 197 | interrupt-parent = <&ipic>; | ||
| 198 | interrupts = <18 0x8>; | ||
| 199 | reg = <0x2>; | ||
| 200 | device_type = "ethernet-phy"; | ||
| 201 | }; | ||
| 202 | |||
| 203 | tbi0: tbi-phy@11 { | ||
| 204 | reg = <0x11>; | ||
| 205 | device_type = "tbi-phy"; | ||
| 206 | }; | ||
| 207 | }; | ||
| 208 | |||
| 209 | mdio@25520 { | ||
| 210 | #address-cells = <1>; | ||
| 211 | #size-cells = <0>; | ||
| 212 | compatible = "fsl,gianfar-tbi"; | ||
| 213 | reg = <0x25520 0x20>; | ||
| 214 | |||
| 215 | tbi1: tbi-phy@11 { | ||
| 216 | reg = <0x11>; | ||
| 217 | device_type = "tbi-phy"; | ||
| 218 | }; | ||
| 219 | }; | ||
| 220 | |||
| 221 | |||
| 222 | enet0: ethernet@24000 { | 184 | enet0: ethernet@24000 { |
| 185 | #address-cells = <1>; | ||
| 186 | #size-cells = <1>; | ||
| 223 | cell-index = <0>; | 187 | cell-index = <0>; |
| 224 | device_type = "network"; | 188 | device_type = "network"; |
| 225 | model = "TSEC"; | 189 | model = "TSEC"; |
| 226 | compatible = "gianfar"; | 190 | compatible = "gianfar"; |
| 227 | reg = <0x24000 0x1000>; | 191 | reg = <0x24000 0x1000>; |
| 192 | ranges = <0x0 0x24000 0x1000>; | ||
| 228 | local-mac-address = [ 00 08 e5 11 32 33 ]; | 193 | local-mac-address = [ 00 08 e5 11 32 33 ]; |
| 229 | interrupts = <32 0x8 33 0x8 34 0x8>; | 194 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 230 | interrupt-parent = <&ipic>; | 195 | interrupt-parent = <&ipic>; |
| 231 | tbi-handle = <&tbi0>; | 196 | tbi-handle = <&tbi0>; |
| 232 | phy-handle = <&phy0>; | 197 | phy-handle = <&phy0>; |
| 233 | linux,network-index = <0>; | 198 | linux,network-index = <0>; |
| 199 | |||
| 200 | mdio@520 { | ||
| 201 | #address-cells = <1>; | ||
| 202 | #size-cells = <0>; | ||
| 203 | compatible = "fsl,gianfar-mdio"; | ||
| 204 | reg = <0x520 0x20>; | ||
| 205 | |||
| 206 | phy0: ethernet-phy@0 { | ||
| 207 | interrupt-parent = <&ipic>; | ||
| 208 | interrupts = <17 0x8>; | ||
| 209 | reg = <0x1>; | ||
| 210 | device_type = "ethernet-phy"; | ||
| 211 | }; | ||
| 212 | |||
| 213 | phy1: ethernet-phy@1 { | ||
| 214 | interrupt-parent = <&ipic>; | ||
| 215 | interrupts = <18 0x8>; | ||
| 216 | reg = <0x2>; | ||
| 217 | device_type = "ethernet-phy"; | ||
| 218 | }; | ||
| 219 | |||
| 220 | tbi0: tbi-phy@11 { | ||
| 221 | reg = <0x11>; | ||
| 222 | device_type = "tbi-phy"; | ||
| 223 | }; | ||
| 224 | }; | ||
| 234 | }; | 225 | }; |
| 235 | 226 | ||
| 236 | enet1: ethernet@25000 { | 227 | enet1: ethernet@25000 { |
| 228 | #address-cells = <1>; | ||
| 229 | #size-cells = <1>; | ||
| 237 | cell-index = <1>; | 230 | cell-index = <1>; |
| 238 | device_type = "network"; | 231 | device_type = "network"; |
| 239 | model = "TSEC"; | 232 | model = "TSEC"; |
| 240 | compatible = "gianfar"; | 233 | compatible = "gianfar"; |
| 241 | reg = <0x25000 0x1000>; | 234 | reg = <0x25000 0x1000>; |
| 235 | ranges = <0x0 0x25000 0x1000>; | ||
| 242 | local-mac-address = [ 00 08 e5 11 32 34 ]; | 236 | local-mac-address = [ 00 08 e5 11 32 34 ]; |
| 243 | interrupts = <35 0x8 36 0x8 37 0x8>; | 237 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 244 | interrupt-parent = <&ipic>; | 238 | interrupt-parent = <&ipic>; |
| 245 | tbi-handle = <&tbi1>; | 239 | tbi-handle = <&tbi1>; |
| 246 | phy-handle = <&phy1>; | 240 | phy-handle = <&phy1>; |
| 247 | linux,network-index = <1>; | 241 | linux,network-index = <1>; |
| 242 | |||
| 243 | mdio@520 { | ||
| 244 | #address-cells = <1>; | ||
| 245 | #size-cells = <0>; | ||
| 246 | compatible = "fsl,gianfar-tbi"; | ||
| 247 | reg = <0x520 0x20>; | ||
| 248 | |||
| 249 | tbi1: tbi-phy@11 { | ||
| 250 | reg = <0x11>; | ||
| 251 | device_type = "tbi-phy"; | ||
| 252 | }; | ||
| 253 | }; | ||
| 248 | }; | 254 | }; |
| 249 | 255 | ||
| 250 | serial0: serial@4500 { | 256 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/gef_ppc9a.dts b/arch/powerpc/boot/dts/gef_ppc9a.dts index 0ddfdfc7ab5f..d47ad0718759 100644 --- a/arch/powerpc/boot/dts/gef_ppc9a.dts +++ b/arch/powerpc/boot/dts/gef_ppc9a.dts | |||
| @@ -247,34 +247,37 @@ | |||
| 247 | }; | 247 | }; |
| 248 | }; | 248 | }; |
| 249 | 249 | ||
| 250 | mdio@24520 { | ||
| 251 | #address-cells = <1>; | ||
| 252 | #size-cells = <0>; | ||
| 253 | compatible = "fsl,gianfar-mdio"; | ||
| 254 | reg = <0x24520 0x20>; | ||
| 255 | |||
| 256 | phy0: ethernet-phy@0 { | ||
| 257 | interrupt-parent = <&gef_pic>; | ||
| 258 | interrupts = <0x9 0x4>; | ||
| 259 | reg = <1>; | ||
| 260 | }; | ||
| 261 | phy2: ethernet-phy@2 { | ||
| 262 | interrupt-parent = <&gef_pic>; | ||
| 263 | interrupts = <0x8 0x4>; | ||
| 264 | reg = <3>; | ||
| 265 | }; | ||
| 266 | }; | ||
| 267 | |||
| 268 | enet0: ethernet@24000 { | 250 | enet0: ethernet@24000 { |
| 251 | #address-cells = <1>; | ||
| 252 | #size-cells = <1>; | ||
| 269 | device_type = "network"; | 253 | device_type = "network"; |
| 270 | model = "eTSEC"; | 254 | model = "eTSEC"; |
| 271 | compatible = "gianfar"; | 255 | compatible = "gianfar"; |
| 272 | reg = <0x24000 0x1000>; | 256 | reg = <0x24000 0x1000>; |
| 257 | ranges = <0x0 0x24000 0x1000>; | ||
| 273 | local-mac-address = [ 00 00 00 00 00 00 ]; | 258 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 274 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; | 259 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; |
| 275 | interrupt-parent = <&mpic>; | 260 | interrupt-parent = <&mpic>; |
| 276 | phy-handle = <&phy0>; | 261 | phy-handle = <&phy0>; |
| 277 | phy-connection-type = "gmii"; | 262 | phy-connection-type = "gmii"; |
| 263 | |||
| 264 | mdio@520 { | ||
| 265 | #address-cells = <1>; | ||
| 266 | #size-cells = <0>; | ||
| 267 | compatible = "fsl,gianfar-mdio"; | ||
| 268 | reg = <0x520 0x20>; | ||
| 269 | |||
| 270 | phy0: ethernet-phy@0 { | ||
| 271 | interrupt-parent = <&gef_pic>; | ||
| 272 | interrupts = <0x9 0x4>; | ||
| 273 | reg = <1>; | ||
| 274 | }; | ||
| 275 | phy2: ethernet-phy@2 { | ||
| 276 | interrupt-parent = <&gef_pic>; | ||
| 277 | interrupts = <0x8 0x4>; | ||
| 278 | reg = <3>; | ||
| 279 | }; | ||
| 280 | }; | ||
| 278 | }; | 281 | }; |
| 279 | 282 | ||
| 280 | enet1: ethernet@26000 { | 283 | enet1: ethernet@26000 { |
diff --git a/arch/powerpc/boot/dts/gef_sbc310.dts b/arch/powerpc/boot/dts/gef_sbc310.dts index 09eeb438216b..1569117e5ddc 100644 --- a/arch/powerpc/boot/dts/gef_sbc310.dts +++ b/arch/powerpc/boot/dts/gef_sbc310.dts | |||
| @@ -247,34 +247,37 @@ | |||
| 247 | }; | 247 | }; |
| 248 | }; | 248 | }; |
| 249 | 249 | ||
| 250 | mdio@24520 { | ||
| 251 | #address-cells = <1>; | ||
| 252 | #size-cells = <0>; | ||
| 253 | compatible = "fsl,gianfar-mdio"; | ||
| 254 | reg = <0x24520 0x20>; | ||
| 255 | |||
| 256 | phy0: ethernet-phy@0 { | ||
| 257 | interrupt-parent = <&gef_pic>; | ||
| 258 | interrupts = <0x9 0x4>; | ||
| 259 | reg = <1>; | ||
| 260 | }; | ||
| 261 | phy2: ethernet-phy@2 { | ||
| 262 | interrupt-parent = <&gef_pic>; | ||
| 263 | interrupts = <0x8 0x4>; | ||
| 264 | reg = <3>; | ||
| 265 | }; | ||
| 266 | }; | ||
| 267 | |||
| 268 | enet0: ethernet@24000 { | 250 | enet0: ethernet@24000 { |
| 251 | #address-cells = <1>; | ||
| 252 | #size-cells = <1>; | ||
| 269 | device_type = "network"; | 253 | device_type = "network"; |
| 270 | model = "eTSEC"; | 254 | model = "eTSEC"; |
| 271 | compatible = "gianfar"; | 255 | compatible = "gianfar"; |
| 272 | reg = <0x24000 0x1000>; | 256 | reg = <0x24000 0x1000>; |
| 257 | ranges = <0x0 0x24000 0x1000>; | ||
| 273 | local-mac-address = [ 00 00 00 00 00 00 ]; | 258 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 274 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; | 259 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; |
| 275 | interrupt-parent = <&mpic>; | 260 | interrupt-parent = <&mpic>; |
| 276 | phy-handle = <&phy0>; | 261 | phy-handle = <&phy0>; |
| 277 | phy-connection-type = "gmii"; | 262 | phy-connection-type = "gmii"; |
| 263 | |||
| 264 | mdio@520 { | ||
| 265 | #address-cells = <1>; | ||
| 266 | #size-cells = <0>; | ||
| 267 | compatible = "fsl,gianfar-mdio"; | ||
| 268 | reg = <0x520 0x20>; | ||
| 269 | |||
| 270 | phy0: ethernet-phy@0 { | ||
| 271 | interrupt-parent = <&gef_pic>; | ||
| 272 | interrupts = <0x9 0x4>; | ||
| 273 | reg = <1>; | ||
| 274 | }; | ||
| 275 | phy2: ethernet-phy@2 { | ||
| 276 | interrupt-parent = <&gef_pic>; | ||
| 277 | interrupts = <0x8 0x4>; | ||
| 278 | reg = <3>; | ||
| 279 | }; | ||
| 280 | }; | ||
| 278 | }; | 281 | }; |
| 279 | 282 | ||
| 280 | enet1: ethernet@26000 { | 283 | enet1: ethernet@26000 { |
diff --git a/arch/powerpc/boot/dts/gef_sbc610.dts b/arch/powerpc/boot/dts/gef_sbc610.dts index 714175ccb2a4..6582dbd36da7 100644 --- a/arch/powerpc/boot/dts/gef_sbc610.dts +++ b/arch/powerpc/boot/dts/gef_sbc610.dts | |||
| @@ -202,34 +202,37 @@ | |||
| 202 | }; | 202 | }; |
| 203 | }; | 203 | }; |
| 204 | 204 | ||
| 205 | mdio@24520 { | ||
| 206 | #address-cells = <1>; | ||
| 207 | #size-cells = <0>; | ||
| 208 | compatible = "fsl,gianfar-mdio"; | ||
| 209 | reg = <0x24520 0x20>; | ||
| 210 | |||
| 211 | phy0: ethernet-phy@0 { | ||
| 212 | interrupt-parent = <&gef_pic>; | ||
| 213 | interrupts = <0x9 0x4>; | ||
| 214 | reg = <1>; | ||
| 215 | }; | ||
| 216 | phy2: ethernet-phy@2 { | ||
| 217 | interrupt-parent = <&gef_pic>; | ||
| 218 | interrupts = <0x8 0x4>; | ||
| 219 | reg = <3>; | ||
| 220 | }; | ||
| 221 | }; | ||
| 222 | |||
| 223 | enet0: ethernet@24000 { | 205 | enet0: ethernet@24000 { |
| 206 | #address-cells = <1>; | ||
| 207 | #size-cells = <1>; | ||
| 224 | device_type = "network"; | 208 | device_type = "network"; |
| 225 | model = "eTSEC"; | 209 | model = "eTSEC"; |
| 226 | compatible = "gianfar"; | 210 | compatible = "gianfar"; |
| 227 | reg = <0x24000 0x1000>; | 211 | reg = <0x24000 0x1000>; |
| 212 | ranges = <0x0 0x24000 0x1000>; | ||
| 228 | local-mac-address = [ 00 00 00 00 00 00 ]; | 213 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 229 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; | 214 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; |
| 230 | interrupt-parent = <&mpic>; | 215 | interrupt-parent = <&mpic>; |
| 231 | phy-handle = <&phy0>; | 216 | phy-handle = <&phy0>; |
| 232 | phy-connection-type = "gmii"; | 217 | phy-connection-type = "gmii"; |
| 218 | |||
| 219 | mdio@520 { | ||
| 220 | #address-cells = <1>; | ||
| 221 | #size-cells = <0>; | ||
| 222 | compatible = "fsl,gianfar-mdio"; | ||
| 223 | reg = <0x520 0x20>; | ||
| 224 | |||
| 225 | phy0: ethernet-phy@0 { | ||
| 226 | interrupt-parent = <&gef_pic>; | ||
| 227 | interrupts = <0x9 0x4>; | ||
| 228 | reg = <1>; | ||
| 229 | }; | ||
| 230 | phy2: ethernet-phy@2 { | ||
| 231 | interrupt-parent = <&gef_pic>; | ||
| 232 | interrupts = <0x8 0x4>; | ||
| 233 | reg = <3>; | ||
| 234 | }; | ||
| 235 | }; | ||
| 233 | }; | 236 | }; |
| 234 | 237 | ||
| 235 | enet1: ethernet@26000 { | 238 | enet1: ethernet@26000 { |
diff --git a/arch/powerpc/boot/dts/ksi8560.dts b/arch/powerpc/boot/dts/ksi8560.dts index 3bfff47418db..308fe7c29dea 100644 --- a/arch/powerpc/boot/dts/ksi8560.dts +++ b/arch/powerpc/boot/dts/ksi8560.dts | |||
| @@ -124,67 +124,72 @@ | |||
| 124 | }; | 124 | }; |
| 125 | }; | 125 | }; |
| 126 | 126 | ||
| 127 | mdio@24520 { /* For TSECs */ | ||
| 128 | #address-cells = <1>; | ||
| 129 | #size-cells = <0>; | ||
| 130 | compatible = "fsl,gianfar-mdio"; | ||
| 131 | reg = <0x24520 0x20>; | ||
| 132 | |||
| 133 | PHY1: ethernet-phy@1 { | ||
| 134 | interrupt-parent = <&mpic>; | ||
| 135 | reg = <0x1>; | ||
| 136 | device_type = "ethernet-phy"; | ||
| 137 | }; | ||
| 138 | |||
| 139 | PHY2: ethernet-phy@2 { | ||
| 140 | interrupt-parent = <&mpic>; | ||
| 141 | reg = <0x2>; | ||
| 142 | device_type = "ethernet-phy"; | ||
| 143 | }; | ||
| 144 | |||
| 145 | tbi0: tbi-phy@11 { | ||
| 146 | reg = <0x11>; | ||
| 147 | device_type = "tbi-phy"; | ||
| 148 | }; | ||
| 149 | }; | ||
| 150 | |||
| 151 | mdio@25520 { | ||
| 152 | #address-cells = <1>; | ||
| 153 | #size-cells = <0>; | ||
| 154 | compatible = "fsl,gianfar-tbi"; | ||
| 155 | reg = <0x25520 0x20>; | ||
| 156 | |||
| 157 | tbi1: tbi-phy@11 { | ||
| 158 | reg = <0x11>; | ||
| 159 | device_type = "tbi-phy"; | ||
| 160 | }; | ||
| 161 | }; | ||
| 162 | |||
| 163 | |||
| 164 | enet0: ethernet@24000 { | 127 | enet0: ethernet@24000 { |
| 128 | #address-cells = <1>; | ||
| 129 | #size-cells = <1>; | ||
| 165 | device_type = "network"; | 130 | device_type = "network"; |
| 166 | model = "TSEC"; | 131 | model = "TSEC"; |
| 167 | compatible = "gianfar"; | 132 | compatible = "gianfar"; |
| 168 | reg = <0x24000 0x1000>; | 133 | reg = <0x24000 0x1000>; |
| 134 | ranges = <0x0 0x24000 0x1000>; | ||
| 169 | /* Mac address filled in by bootwrapper */ | 135 | /* Mac address filled in by bootwrapper */ |
| 170 | local-mac-address = [ 00 00 00 00 00 00 ]; | 136 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 171 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; | 137 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; |
| 172 | interrupt-parent = <&mpic>; | 138 | interrupt-parent = <&mpic>; |
| 173 | tbi-handle = <&tbi0>; | 139 | tbi-handle = <&tbi0>; |
| 174 | phy-handle = <&PHY1>; | 140 | phy-handle = <&PHY1>; |
| 141 | |||
| 142 | mdio@520 { /* For TSECs */ | ||
| 143 | #address-cells = <1>; | ||
| 144 | #size-cells = <0>; | ||
| 145 | compatible = "fsl,gianfar-mdio"; | ||
| 146 | reg = <0x520 0x20>; | ||
| 147 | |||
| 148 | PHY1: ethernet-phy@1 { | ||
| 149 | interrupt-parent = <&mpic>; | ||
| 150 | reg = <0x1>; | ||
| 151 | device_type = "ethernet-phy"; | ||
| 152 | }; | ||
| 153 | |||
| 154 | PHY2: ethernet-phy@2 { | ||
| 155 | interrupt-parent = <&mpic>; | ||
| 156 | reg = <0x2>; | ||
| 157 | device_type = "ethernet-phy"; | ||
| 158 | }; | ||
| 159 | |||
| 160 | tbi0: tbi-phy@11 { | ||
| 161 | reg = <0x11>; | ||
| 162 | device_type = "tbi-phy"; | ||
| 163 | }; | ||
| 164 | }; | ||
| 175 | }; | 165 | }; |
| 176 | 166 | ||
| 177 | enet1: ethernet@25000 { | 167 | enet1: ethernet@25000 { |
| 168 | #address-cells = <1>; | ||
| 169 | #size-cells = <1>; | ||
| 178 | device_type = "network"; | 170 | device_type = "network"; |
| 179 | model = "TSEC"; | 171 | model = "TSEC"; |
| 180 | compatible = "gianfar"; | 172 | compatible = "gianfar"; |
| 181 | reg = <0x25000 0x1000>; | 173 | reg = <0x25000 0x1000>; |
| 174 | ranges = <0x0 0x25000 0x1000>; | ||
| 182 | /* Mac address filled in by bootwrapper */ | 175 | /* Mac address filled in by bootwrapper */ |
| 183 | local-mac-address = [ 00 00 00 00 00 00 ]; | 176 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 184 | interrupts = <0x23 0x2 0x24 0x2 0x28 0x2>; | 177 | interrupts = <0x23 0x2 0x24 0x2 0x28 0x2>; |
| 185 | interrupt-parent = <&mpic>; | 178 | interrupt-parent = <&mpic>; |
| 186 | tbi-handle = <&tbi1>; | 179 | tbi-handle = <&tbi1>; |
| 187 | phy-handle = <&PHY2>; | 180 | phy-handle = <&PHY2>; |
| 181 | |||
| 182 | mdio@520 { | ||
| 183 | #address-cells = <1>; | ||
| 184 | #size-cells = <0>; | ||
| 185 | compatible = "fsl,gianfar-tbi"; | ||
| 186 | reg = <0x520 0x20>; | ||
| 187 | |||
| 188 | tbi1: tbi-phy@11 { | ||
| 189 | reg = <0x11>; | ||
| 190 | device_type = "tbi-phy"; | ||
| 191 | }; | ||
| 192 | }; | ||
| 188 | }; | 193 | }; |
| 189 | 194 | ||
| 190 | mpic: pic@40000 { | 195 | mpic: pic@40000 { |
diff --git a/arch/powerpc/boot/dts/mpc8313erdb.dts b/arch/powerpc/boot/dts/mpc8313erdb.dts index 3ebf7ec0484c..761faa7b6964 100644 --- a/arch/powerpc/boot/dts/mpc8313erdb.dts +++ b/arch/powerpc/boot/dts/mpc8313erdb.dts | |||
| @@ -180,7 +180,7 @@ | |||
| 180 | #address-cells = <1>; | 180 | #address-cells = <1>; |
| 181 | #size-cells = <1>; | 181 | #size-cells = <1>; |
| 182 | sleep = <&pmc 0x20000000>; | 182 | sleep = <&pmc 0x20000000>; |
| 183 | ranges; | 183 | ranges = <0x0 0x24000 0x1000>; |
| 184 | 184 | ||
| 185 | cell-index = <0>; | 185 | cell-index = <0>; |
| 186 | device_type = "network"; | 186 | device_type = "network"; |
| @@ -195,11 +195,11 @@ | |||
| 195 | fixed-link = <1 1 1000 0 0>; | 195 | fixed-link = <1 1 1000 0 0>; |
| 196 | fsl,magic-packet; | 196 | fsl,magic-packet; |
| 197 | 197 | ||
| 198 | mdio@24520 { | 198 | mdio@520 { |
| 199 | #address-cells = <1>; | 199 | #address-cells = <1>; |
| 200 | #size-cells = <0>; | 200 | #size-cells = <0>; |
| 201 | compatible = "fsl,gianfar-mdio"; | 201 | compatible = "fsl,gianfar-mdio"; |
| 202 | reg = <0x24520 0x20>; | 202 | reg = <0x520 0x20>; |
| 203 | phy4: ethernet-phy@4 { | 203 | phy4: ethernet-phy@4 { |
| 204 | interrupt-parent = <&ipic>; | 204 | interrupt-parent = <&ipic>; |
| 205 | interrupts = <20 0x8>; | 205 | interrupts = <20 0x8>; |
| @@ -221,6 +221,7 @@ | |||
| 221 | model = "eTSEC"; | 221 | model = "eTSEC"; |
| 222 | compatible = "gianfar"; | 222 | compatible = "gianfar"; |
| 223 | reg = <0x25000 0x1000>; | 223 | reg = <0x25000 0x1000>; |
| 224 | ranges = <0x0 0x25000 0x1000>; | ||
| 224 | local-mac-address = [ 00 00 00 00 00 00 ]; | 225 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 225 | interrupts = <34 0x8 33 0x8 32 0x8>; | 226 | interrupts = <34 0x8 33 0x8 32 0x8>; |
| 226 | interrupt-parent = <&ipic>; | 227 | interrupt-parent = <&ipic>; |
| @@ -229,11 +230,11 @@ | |||
| 229 | sleep = <&pmc 0x10000000>; | 230 | sleep = <&pmc 0x10000000>; |
| 230 | fsl,magic-packet; | 231 | fsl,magic-packet; |
| 231 | 232 | ||
| 232 | mdio@25520 { | 233 | mdio@520 { |
| 233 | #address-cells = <1>; | 234 | #address-cells = <1>; |
| 234 | #size-cells = <0>; | 235 | #size-cells = <0>; |
| 235 | compatible = "fsl,gianfar-tbi"; | 236 | compatible = "fsl,gianfar-tbi"; |
| 236 | reg = <0x25520 0x20>; | 237 | reg = <0x520 0x20>; |
| 237 | 238 | ||
| 238 | tbi1: tbi-phy@11 { | 239 | tbi1: tbi-phy@11 { |
| 239 | reg = <0x11>; | 240 | reg = <0x11>; |
diff --git a/arch/powerpc/boot/dts/mpc8315erdb.dts b/arch/powerpc/boot/dts/mpc8315erdb.dts index 88d691cccb38..3f4c5fb988a0 100644 --- a/arch/powerpc/boot/dts/mpc8315erdb.dts +++ b/arch/powerpc/boot/dts/mpc8315erdb.dts | |||
| @@ -190,66 +190,74 @@ | |||
| 190 | phy_type = "utmi"; | 190 | phy_type = "utmi"; |
| 191 | }; | 191 | }; |
| 192 | 192 | ||
| 193 | mdio@24520 { | ||
| 194 | #address-cells = <1>; | ||
| 195 | #size-cells = <0>; | ||
| 196 | compatible = "fsl,gianfar-mdio"; | ||
| 197 | reg = <0x24520 0x20>; | ||
| 198 | phy0: ethernet-phy@0 { | ||
| 199 | interrupt-parent = <&ipic>; | ||
| 200 | interrupts = <20 0x8>; | ||
| 201 | reg = <0x0>; | ||
| 202 | device_type = "ethernet-phy"; | ||
| 203 | }; | ||
| 204 | phy1: ethernet-phy@1 { | ||
| 205 | interrupt-parent = <&ipic>; | ||
| 206 | interrupts = <19 0x8>; | ||
| 207 | reg = <0x1>; | ||
| 208 | device_type = "ethernet-phy"; | ||
| 209 | }; | ||
| 210 | tbi0: tbi-phy@11 { | ||
| 211 | reg = <0x11>; | ||
| 212 | device_type = "tbi-phy"; | ||
| 213 | }; | ||
| 214 | }; | ||
| 215 | |||
| 216 | mdio@25520 { | ||
| 217 | #address-cells = <1>; | ||
| 218 | #size-cells = <0>; | ||
| 219 | compatible = "fsl,gianfar-tbi"; | ||
| 220 | reg = <0x25520 0x20>; | ||
| 221 | |||
| 222 | tbi1: tbi-phy@11 { | ||
| 223 | reg = <0x11>; | ||
| 224 | device_type = "tbi-phy"; | ||
| 225 | }; | ||
| 226 | }; | ||
| 227 | |||
| 228 | |||
| 229 | enet0: ethernet@24000 { | 193 | enet0: ethernet@24000 { |
| 194 | #address-cells = <1>; | ||
| 195 | #size-cells = <1>; | ||
| 230 | cell-index = <0>; | 196 | cell-index = <0>; |
| 231 | device_type = "network"; | 197 | device_type = "network"; |
| 232 | model = "eTSEC"; | 198 | model = "eTSEC"; |
| 233 | compatible = "gianfar"; | 199 | compatible = "gianfar"; |
| 234 | reg = <0x24000 0x1000>; | 200 | reg = <0x24000 0x1000>; |
| 201 | ranges = <0x0 0x24000 0x1000>; | ||
| 235 | local-mac-address = [ 00 00 00 00 00 00 ]; | 202 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 236 | interrupts = <32 0x8 33 0x8 34 0x8>; | 203 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 237 | interrupt-parent = <&ipic>; | 204 | interrupt-parent = <&ipic>; |
| 238 | tbi-handle = <&tbi0>; | 205 | tbi-handle = <&tbi0>; |
| 239 | phy-handle = < &phy0 >; | 206 | phy-handle = < &phy0 >; |
| 207 | |||
| 208 | mdio@520 { | ||
| 209 | #address-cells = <1>; | ||
| 210 | #size-cells = <0>; | ||
| 211 | compatible = "fsl,gianfar-mdio"; | ||
| 212 | reg = <0x520 0x20>; | ||
| 213 | |||
| 214 | phy0: ethernet-phy@0 { | ||
| 215 | interrupt-parent = <&ipic>; | ||
| 216 | interrupts = <20 0x8>; | ||
| 217 | reg = <0x0>; | ||
| 218 | device_type = "ethernet-phy"; | ||
| 219 | }; | ||
| 220 | |||
| 221 | phy1: ethernet-phy@1 { | ||
| 222 | interrupt-parent = <&ipic>; | ||
| 223 | interrupts = <19 0x8>; | ||
| 224 | reg = <0x1>; | ||
| 225 | device_type = "ethernet-phy"; | ||
| 226 | }; | ||
| 227 | |||
| 228 | tbi0: tbi-phy@11 { | ||
| 229 | reg = <0x11>; | ||
| 230 | device_type = "tbi-phy"; | ||
| 231 | }; | ||
| 232 | }; | ||
| 240 | }; | 233 | }; |
| 241 | 234 | ||
| 242 | enet1: ethernet@25000 { | 235 | enet1: ethernet@25000 { |
| 236 | #address-cells = <1>; | ||
| 237 | #size-cells = <1>; | ||
| 243 | cell-index = <1>; | 238 | cell-index = <1>; |
| 244 | device_type = "network"; | 239 | device_type = "network"; |
| 245 | model = "eTSEC"; | 240 | model = "eTSEC"; |
| 246 | compatible = "gianfar"; | 241 | compatible = "gianfar"; |
| 247 | reg = <0x25000 0x1000>; | 242 | reg = <0x25000 0x1000>; |
| 243 | ranges = <0x0 0x25000 0x1000>; | ||
| 248 | local-mac-address = [ 00 00 00 00 00 00 ]; | 244 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 249 | interrupts = <35 0x8 36 0x8 37 0x8>; | 245 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 250 | interrupt-parent = <&ipic>; | 246 | interrupt-parent = <&ipic>; |
| 251 | tbi-handle = <&tbi1>; | 247 | tbi-handle = <&tbi1>; |
| 252 | phy-handle = < &phy1 >; | 248 | phy-handle = < &phy1 >; |
| 249 | |||
| 250 | mdio@520 { | ||
| 251 | #address-cells = <1>; | ||
| 252 | #size-cells = <0>; | ||
| 253 | compatible = "fsl,gianfar-tbi"; | ||
| 254 | reg = <0x520 0x20>; | ||
| 255 | |||
| 256 | tbi1: tbi-phy@11 { | ||
| 257 | reg = <0x11>; | ||
| 258 | device_type = "tbi-phy"; | ||
| 259 | }; | ||
| 260 | }; | ||
| 253 | }; | 261 | }; |
| 254 | 262 | ||
| 255 | serial0: serial@4500 { | 263 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8349emitx.dts b/arch/powerpc/boot/dts/mpc8349emitx.dts index b5eda94a8e2a..1ae38f0ddef8 100644 --- a/arch/powerpc/boot/dts/mpc8349emitx.dts +++ b/arch/powerpc/boot/dts/mpc8349emitx.dts | |||
| @@ -170,57 +170,52 @@ | |||
| 170 | phy_type = "ulpi"; | 170 | phy_type = "ulpi"; |
| 171 | }; | 171 | }; |
| 172 | 172 | ||
| 173 | mdio@24520 { | ||
| 174 | #address-cells = <1>; | ||
| 175 | #size-cells = <0>; | ||
| 176 | compatible = "fsl,gianfar-mdio"; | ||
| 177 | reg = <0x24520 0x20>; | ||
| 178 | |||
| 179 | /* Vitesse 8201 */ | ||
| 180 | phy1c: ethernet-phy@1c { | ||
| 181 | interrupt-parent = <&ipic>; | ||
| 182 | interrupts = <18 0x8>; | ||
| 183 | reg = <0x1c>; | ||
| 184 | device_type = "ethernet-phy"; | ||
| 185 | }; | ||
| 186 | tbi0: tbi-phy@11 { | ||
| 187 | reg = <0x11>; | ||
| 188 | device_type = "tbi-phy"; | ||
| 189 | }; | ||
| 190 | }; | ||
| 191 | |||
| 192 | mdio@25520 { | ||
| 193 | #address-cells = <1>; | ||
| 194 | #size-cells = <0>; | ||
| 195 | compatible = "fsl,gianfar-tbi"; | ||
| 196 | reg = <0x25520 0x20>; | ||
| 197 | |||
| 198 | tbi1: tbi-phy@11 { | ||
| 199 | reg = <0x11>; | ||
| 200 | device_type = "tbi-phy"; | ||
| 201 | }; | ||
| 202 | }; | ||
| 203 | |||
| 204 | enet0: ethernet@24000 { | 173 | enet0: ethernet@24000 { |
| 174 | #address-cells = <1>; | ||
| 175 | #size-cells = <1>; | ||
| 205 | cell-index = <0>; | 176 | cell-index = <0>; |
| 206 | device_type = "network"; | 177 | device_type = "network"; |
| 207 | model = "TSEC"; | 178 | model = "TSEC"; |
| 208 | compatible = "gianfar"; | 179 | compatible = "gianfar"; |
| 209 | reg = <0x24000 0x1000>; | 180 | reg = <0x24000 0x1000>; |
| 181 | ranges = <0x0 0x24000 0x1000>; | ||
| 210 | local-mac-address = [ 00 00 00 00 00 00 ]; | 182 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 211 | interrupts = <32 0x8 33 0x8 34 0x8>; | 183 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 212 | interrupt-parent = <&ipic>; | 184 | interrupt-parent = <&ipic>; |
| 213 | tbi-handle = <&tbi0>; | 185 | tbi-handle = <&tbi0>; |
| 214 | phy-handle = <&phy1c>; | 186 | phy-handle = <&phy1c>; |
| 215 | linux,network-index = <0>; | 187 | linux,network-index = <0>; |
| 188 | |||
| 189 | mdio@520 { | ||
| 190 | #address-cells = <1>; | ||
| 191 | #size-cells = <0>; | ||
| 192 | compatible = "fsl,gianfar-mdio"; | ||
| 193 | reg = <0x520 0x20>; | ||
| 194 | |||
| 195 | /* Vitesse 8201 */ | ||
| 196 | phy1c: ethernet-phy@1c { | ||
| 197 | interrupt-parent = <&ipic>; | ||
| 198 | interrupts = <18 0x8>; | ||
| 199 | reg = <0x1c>; | ||
| 200 | device_type = "ethernet-phy"; | ||
| 201 | }; | ||
| 202 | |||
| 203 | tbi0: tbi-phy@11 { | ||
| 204 | reg = <0x11>; | ||
| 205 | device_type = "tbi-phy"; | ||
| 206 | }; | ||
| 207 | }; | ||
| 216 | }; | 208 | }; |
| 217 | 209 | ||
| 218 | enet1: ethernet@25000 { | 210 | enet1: ethernet@25000 { |
| 211 | #address-cells = <1>; | ||
| 212 | #size-cells = <1>; | ||
| 219 | cell-index = <1>; | 213 | cell-index = <1>; |
| 220 | device_type = "network"; | 214 | device_type = "network"; |
| 221 | model = "TSEC"; | 215 | model = "TSEC"; |
| 222 | compatible = "gianfar"; | 216 | compatible = "gianfar"; |
| 223 | reg = <0x25000 0x1000>; | 217 | reg = <0x25000 0x1000>; |
| 218 | ranges = <0x0 0x25000 0x1000>; | ||
| 224 | local-mac-address = [ 00 00 00 00 00 00 ]; | 219 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 225 | interrupts = <35 0x8 36 0x8 37 0x8>; | 220 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 226 | interrupt-parent = <&ipic>; | 221 | interrupt-parent = <&ipic>; |
| @@ -228,6 +223,18 @@ | |||
| 228 | fixed-link = <1 1 1000 0 0>; | 223 | fixed-link = <1 1 1000 0 0>; |
| 229 | linux,network-index = <1>; | 224 | linux,network-index = <1>; |
| 230 | tbi-handle = <&tbi1>; | 225 | tbi-handle = <&tbi1>; |
| 226 | |||
| 227 | mdio@520 { | ||
| 228 | #address-cells = <1>; | ||
| 229 | #size-cells = <0>; | ||
| 230 | compatible = "fsl,gianfar-tbi"; | ||
| 231 | reg = <0x520 0x20>; | ||
| 232 | |||
| 233 | tbi1: tbi-phy@11 { | ||
| 234 | reg = <0x11>; | ||
| 235 | device_type = "tbi-phy"; | ||
| 236 | }; | ||
| 237 | }; | ||
| 231 | }; | 238 | }; |
| 232 | 239 | ||
| 233 | serial0: serial@4500 { | 240 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8349emitxgp.dts b/arch/powerpc/boot/dts/mpc8349emitxgp.dts index c87a6015e165..662abe1fb804 100644 --- a/arch/powerpc/boot/dts/mpc8349emitxgp.dts +++ b/arch/powerpc/boot/dts/mpc8349emitxgp.dts | |||
| @@ -149,37 +149,41 @@ | |||
| 149 | phy_type = "ulpi"; | 149 | phy_type = "ulpi"; |
| 150 | }; | 150 | }; |
| 151 | 151 | ||
| 152 | mdio@24520 { | ||
| 153 | #address-cells = <1>; | ||
| 154 | #size-cells = <0>; | ||
| 155 | compatible = "fsl,gianfar-mdio"; | ||
| 156 | reg = <0x24520 0x20>; | ||
| 157 | |||
| 158 | /* Vitesse 8201 */ | ||
| 159 | phy1c: ethernet-phy@1c { | ||
| 160 | interrupt-parent = <&ipic>; | ||
| 161 | interrupts = <18 0x8>; | ||
| 162 | reg = <0x1c>; | ||
| 163 | device_type = "ethernet-phy"; | ||
| 164 | }; | ||
| 165 | tbi0: tbi-phy@11 { | ||
| 166 | reg = <0x11>; | ||
| 167 | device_type = "tbi-phy"; | ||
| 168 | }; | ||
| 169 | }; | ||
| 170 | |||
| 171 | enet0: ethernet@24000 { | 152 | enet0: ethernet@24000 { |
| 153 | #address-cells = <1>; | ||
| 154 | #size-cells = <1>; | ||
| 172 | cell-index = <0>; | 155 | cell-index = <0>; |
| 173 | device_type = "network"; | 156 | device_type = "network"; |
| 174 | model = "TSEC"; | 157 | model = "TSEC"; |
| 175 | compatible = "gianfar"; | 158 | compatible = "gianfar"; |
| 176 | reg = <0x24000 0x1000>; | 159 | reg = <0x24000 0x1000>; |
| 160 | ranges = <0x0 0x24000 0x1000>; | ||
| 177 | local-mac-address = [ 00 00 00 00 00 00 ]; | 161 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 178 | interrupts = <32 0x8 33 0x8 34 0x8>; | 162 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 179 | interrupt-parent = <&ipic>; | 163 | interrupt-parent = <&ipic>; |
| 180 | tbi-handle = <&tbi0>; | 164 | tbi-handle = <&tbi0>; |
| 181 | phy-handle = <&phy1c>; | 165 | phy-handle = <&phy1c>; |
| 182 | linux,network-index = <0>; | 166 | linux,network-index = <0>; |
| 167 | |||
| 168 | mdio@520 { | ||
| 169 | #address-cells = <1>; | ||
| 170 | #size-cells = <0>; | ||
| 171 | compatible = "fsl,gianfar-mdio"; | ||
| 172 | reg = <0x520 0x20>; | ||
| 173 | |||
| 174 | /* Vitesse 8201 */ | ||
| 175 | phy1c: ethernet-phy@1c { | ||
| 176 | interrupt-parent = <&ipic>; | ||
| 177 | interrupts = <18 0x8>; | ||
| 178 | reg = <0x1c>; | ||
| 179 | device_type = "ethernet-phy"; | ||
| 180 | }; | ||
| 181 | |||
| 182 | tbi0: tbi-phy@11 { | ||
| 183 | reg = <0x11>; | ||
| 184 | device_type = "tbi-phy"; | ||
| 185 | }; | ||
| 186 | }; | ||
| 183 | }; | 187 | }; |
| 184 | 188 | ||
| 185 | serial0: serial@4500 { | 189 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc834x_mds.dts b/arch/powerpc/boot/dts/mpc834x_mds.dts index d9adba01c09c..d9f0a2325fa4 100644 --- a/arch/powerpc/boot/dts/mpc834x_mds.dts +++ b/arch/powerpc/boot/dts/mpc834x_mds.dts | |||
| @@ -167,69 +167,76 @@ | |||
| 167 | phy_type = "ulpi"; | 167 | phy_type = "ulpi"; |
| 168 | }; | 168 | }; |
| 169 | 169 | ||
| 170 | mdio@24520 { | ||
| 171 | #address-cells = <1>; | ||
| 172 | #size-cells = <0>; | ||
| 173 | compatible = "fsl,gianfar-mdio"; | ||
| 174 | reg = <0x24520 0x20>; | ||
| 175 | |||
| 176 | phy0: ethernet-phy@0 { | ||
| 177 | interrupt-parent = <&ipic>; | ||
| 178 | interrupts = <17 0x8>; | ||
| 179 | reg = <0x0>; | ||
| 180 | device_type = "ethernet-phy"; | ||
| 181 | }; | ||
| 182 | phy1: ethernet-phy@1 { | ||
| 183 | interrupt-parent = <&ipic>; | ||
| 184 | interrupts = <18 0x8>; | ||
| 185 | reg = <0x1>; | ||
| 186 | device_type = "ethernet-phy"; | ||
| 187 | }; | ||
| 188 | tbi0: tbi-phy@11 { | ||
| 189 | reg = <0x11>; | ||
| 190 | device_type = "tbi-phy"; | ||
| 191 | }; | ||
| 192 | }; | ||
| 193 | |||
| 194 | mdio@25520 { | ||
| 195 | #address-cells = <1>; | ||
| 196 | #size-cells = <0>; | ||
| 197 | compatible = "fsl,gianfar-tbi"; | ||
| 198 | reg = <0x25520 0x20>; | ||
| 199 | |||
| 200 | tbi1: tbi-phy@11 { | ||
| 201 | reg = <0x11>; | ||
| 202 | device_type = "tbi-phy"; | ||
| 203 | }; | ||
| 204 | }; | ||
| 205 | |||
| 206 | |||
| 207 | enet0: ethernet@24000 { | 170 | enet0: ethernet@24000 { |
| 171 | #address-cells = <1>; | ||
| 172 | #size-cells = <1>; | ||
| 208 | cell-index = <0>; | 173 | cell-index = <0>; |
| 209 | device_type = "network"; | 174 | device_type = "network"; |
| 210 | model = "TSEC"; | 175 | model = "TSEC"; |
| 211 | compatible = "gianfar"; | 176 | compatible = "gianfar"; |
| 212 | reg = <0x24000 0x1000>; | 177 | reg = <0x24000 0x1000>; |
| 178 | ranges = <0x0 0x24000 0x1000>; | ||
| 213 | local-mac-address = [ 00 00 00 00 00 00 ]; | 179 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 214 | interrupts = <32 0x8 33 0x8 34 0x8>; | 180 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 215 | interrupt-parent = <&ipic>; | 181 | interrupt-parent = <&ipic>; |
| 216 | tbi-handle = <&tbi0>; | 182 | tbi-handle = <&tbi0>; |
| 217 | phy-handle = <&phy0>; | 183 | phy-handle = <&phy0>; |
| 218 | linux,network-index = <0>; | 184 | linux,network-index = <0>; |
| 185 | |||
| 186 | mdio@520 { | ||
| 187 | #address-cells = <1>; | ||
| 188 | #size-cells = <0>; | ||
| 189 | compatible = "fsl,gianfar-mdio"; | ||
| 190 | reg = <0x520 0x20>; | ||
| 191 | |||
| 192 | phy0: ethernet-phy@0 { | ||
| 193 | interrupt-parent = <&ipic>; | ||
| 194 | interrupts = <17 0x8>; | ||
| 195 | reg = <0x0>; | ||
| 196 | device_type = "ethernet-phy"; | ||
| 197 | }; | ||
| 198 | |||
| 199 | phy1: ethernet-phy@1 { | ||
| 200 | interrupt-parent = <&ipic>; | ||
| 201 | interrupts = <18 0x8>; | ||
| 202 | reg = <0x1>; | ||
| 203 | device_type = "ethernet-phy"; | ||
| 204 | }; | ||
| 205 | |||
| 206 | tbi0: tbi-phy@11 { | ||
| 207 | reg = <0x11>; | ||
| 208 | device_type = "tbi-phy"; | ||
| 209 | }; | ||
| 210 | }; | ||
| 219 | }; | 211 | }; |
| 220 | 212 | ||
| 221 | enet1: ethernet@25000 { | 213 | enet1: ethernet@25000 { |
| 214 | #address-cells = <1>; | ||
| 215 | #size-cells = <1>; | ||
| 222 | cell-index = <1>; | 216 | cell-index = <1>; |
| 223 | device_type = "network"; | 217 | device_type = "network"; |
| 224 | model = "TSEC"; | 218 | model = "TSEC"; |
| 225 | compatible = "gianfar"; | 219 | compatible = "gianfar"; |
| 226 | reg = <0x25000 0x1000>; | 220 | reg = <0x25000 0x1000>; |
| 221 | ranges = <0x0 0x25000 0x1000>; | ||
| 227 | local-mac-address = [ 00 00 00 00 00 00 ]; | 222 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 228 | interrupts = <35 0x8 36 0x8 37 0x8>; | 223 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 229 | interrupt-parent = <&ipic>; | 224 | interrupt-parent = <&ipic>; |
| 230 | tbi-handle = <&tbi1>; | 225 | tbi-handle = <&tbi1>; |
| 231 | phy-handle = <&phy1>; | 226 | phy-handle = <&phy1>; |
| 232 | linux,network-index = <1>; | 227 | linux,network-index = <1>; |
| 228 | |||
| 229 | mdio@520 { | ||
| 230 | #address-cells = <1>; | ||
| 231 | #size-cells = <0>; | ||
| 232 | compatible = "fsl,gianfar-tbi"; | ||
| 233 | reg = <0x520 0x20>; | ||
| 234 | |||
| 235 | tbi1: tbi-phy@11 { | ||
| 236 | reg = <0x11>; | ||
| 237 | device_type = "tbi-phy"; | ||
| 238 | }; | ||
| 239 | }; | ||
| 233 | }; | 240 | }; |
| 234 | 241 | ||
| 235 | serial0: serial@4500 { | 242 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8377_mds.dts b/arch/powerpc/boot/dts/mpc8377_mds.dts index 3e3ec8fdef49..963708017e6c 100644 --- a/arch/powerpc/boot/dts/mpc8377_mds.dts +++ b/arch/powerpc/boot/dts/mpc8377_mds.dts | |||
| @@ -129,21 +129,38 @@ | |||
| 129 | reg = <0x200 0x100>; | 129 | reg = <0x200 0x100>; |
| 130 | }; | 130 | }; |
| 131 | 131 | ||
| 132 | i2c@3000 { | 132 | sleep-nexus { |
| 133 | #address-cells = <1>; | 133 | #address-cells = <1>; |
| 134 | #size-cells = <0>; | 134 | #size-cells = <1>; |
| 135 | cell-index = <0>; | 135 | compatible = "simple-bus"; |
| 136 | compatible = "fsl-i2c"; | 136 | sleep = <&pmc 0x0c000000>; |
| 137 | reg = <0x3000 0x100>; | 137 | ranges; |
| 138 | interrupts = <14 0x8>; | 138 | |
| 139 | interrupt-parent = <&ipic>; | 139 | i2c@3000 { |
| 140 | dfsrr; | 140 | #address-cells = <1>; |
| 141 | #size-cells = <0>; | ||
| 142 | cell-index = <0>; | ||
| 143 | compatible = "fsl-i2c"; | ||
| 144 | reg = <0x3000 0x100>; | ||
| 145 | interrupts = <14 0x8>; | ||
| 146 | interrupt-parent = <&ipic>; | ||
| 147 | dfsrr; | ||
| 148 | |||
| 149 | rtc@68 { | ||
| 150 | compatible = "dallas,ds1374"; | ||
| 151 | reg = <0x68>; | ||
| 152 | interrupts = <19 0x8>; | ||
| 153 | interrupt-parent = <&ipic>; | ||
| 154 | }; | ||
| 155 | }; | ||
| 141 | 156 | ||
| 142 | rtc@68 { | 157 | sdhci@2e000 { |
| 143 | compatible = "dallas,ds1374"; | 158 | compatible = "fsl,mpc8377-esdhc", "fsl,mpc8379-esdhc"; |
| 144 | reg = <0x68>; | 159 | reg = <0x2e000 0x1000>; |
| 145 | interrupts = <19 0x8>; | 160 | interrupts = <42 0x8>; |
| 146 | interrupt-parent = <&ipic>; | 161 | interrupt-parent = <&ipic>; |
| 162 | /* Filled in by U-Boot */ | ||
| 163 | clock-frequency = <0>; | ||
| 147 | }; | 164 | }; |
| 148 | }; | 165 | }; |
| 149 | 166 | ||
| @@ -176,70 +193,83 @@ | |||
| 176 | interrupts = <38 0x8>; | 193 | interrupts = <38 0x8>; |
| 177 | dr_mode = "host"; | 194 | dr_mode = "host"; |
| 178 | phy_type = "ulpi"; | 195 | phy_type = "ulpi"; |
| 196 | sleep = <&pmc 0x00c00000>; | ||
| 179 | }; | 197 | }; |
| 180 | 198 | ||
| 181 | mdio@24520 { | ||
| 182 | #address-cells = <1>; | ||
| 183 | #size-cells = <0>; | ||
| 184 | compatible = "fsl,gianfar-mdio"; | ||
| 185 | reg = <0x24520 0x20>; | ||
| 186 | phy2: ethernet-phy@2 { | ||
| 187 | interrupt-parent = <&ipic>; | ||
| 188 | interrupts = <17 0x8>; | ||
| 189 | reg = <0x2>; | ||
| 190 | device_type = "ethernet-phy"; | ||
| 191 | }; | ||
| 192 | phy3: ethernet-phy@3 { | ||
| 193 | interrupt-parent = <&ipic>; | ||
| 194 | interrupts = <18 0x8>; | ||
| 195 | reg = <0x3>; | ||
| 196 | device_type = "ethernet-phy"; | ||
| 197 | }; | ||
| 198 | tbi0: tbi-phy@11 { | ||
| 199 | reg = <0x11>; | ||
| 200 | device_type = "tbi-phy"; | ||
| 201 | }; | ||
| 202 | }; | ||
| 203 | |||
| 204 | mdio@25520 { | ||
| 205 | #address-cells = <1>; | ||
| 206 | #size-cells = <0>; | ||
| 207 | compatible = "fsl,gianfar-tbi"; | ||
| 208 | reg = <0x25520 0x20>; | ||
| 209 | |||
| 210 | tbi1: tbi-phy@11 { | ||
| 211 | reg = <0x11>; | ||
| 212 | device_type = "tbi-phy"; | ||
| 213 | }; | ||
| 214 | }; | ||
| 215 | |||
| 216 | |||
| 217 | enet0: ethernet@24000 { | 199 | enet0: ethernet@24000 { |
| 200 | #address-cells = <1>; | ||
| 201 | #size-cells = <1>; | ||
| 218 | cell-index = <0>; | 202 | cell-index = <0>; |
| 219 | device_type = "network"; | 203 | device_type = "network"; |
| 220 | model = "eTSEC"; | 204 | model = "eTSEC"; |
| 221 | compatible = "gianfar"; | 205 | compatible = "gianfar"; |
| 222 | reg = <0x24000 0x1000>; | 206 | reg = <0x24000 0x1000>; |
| 207 | ranges = <0x0 0x24000 0x1000>; | ||
| 223 | local-mac-address = [ 00 00 00 00 00 00 ]; | 208 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 224 | interrupts = <32 0x8 33 0x8 34 0x8>; | 209 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 225 | phy-connection-type = "mii"; | 210 | phy-connection-type = "mii"; |
| 226 | interrupt-parent = <&ipic>; | 211 | interrupt-parent = <&ipic>; |
| 227 | tbi-handle = <&tbi0>; | 212 | tbi-handle = <&tbi0>; |
| 228 | phy-handle = <&phy2>; | 213 | phy-handle = <&phy2>; |
| 214 | sleep = <&pmc 0xc0000000>; | ||
| 215 | fsl,magic-packet; | ||
| 216 | |||
| 217 | mdio@520 { | ||
| 218 | #address-cells = <1>; | ||
| 219 | #size-cells = <0>; | ||
| 220 | compatible = "fsl,gianfar-mdio"; | ||
| 221 | reg = <0x520 0x20>; | ||
| 222 | |||
| 223 | phy2: ethernet-phy@2 { | ||
| 224 | interrupt-parent = <&ipic>; | ||
| 225 | interrupts = <17 0x8>; | ||
| 226 | reg = <0x2>; | ||
| 227 | device_type = "ethernet-phy"; | ||
| 228 | }; | ||
| 229 | |||
| 230 | phy3: ethernet-phy@3 { | ||
| 231 | interrupt-parent = <&ipic>; | ||
| 232 | interrupts = <18 0x8>; | ||
| 233 | reg = <0x3>; | ||
| 234 | device_type = "ethernet-phy"; | ||
| 235 | }; | ||
| 236 | |||
| 237 | tbi0: tbi-phy@11 { | ||
| 238 | reg = <0x11>; | ||
| 239 | device_type = "tbi-phy"; | ||
| 240 | }; | ||
| 241 | }; | ||
| 229 | }; | 242 | }; |
| 230 | 243 | ||
| 231 | enet1: ethernet@25000 { | 244 | enet1: ethernet@25000 { |
| 245 | #address-cells = <1>; | ||
| 246 | #size-cells = <1>; | ||
| 232 | cell-index = <1>; | 247 | cell-index = <1>; |
| 233 | device_type = "network"; | 248 | device_type = "network"; |
| 234 | model = "eTSEC"; | 249 | model = "eTSEC"; |
| 235 | compatible = "gianfar"; | 250 | compatible = "gianfar"; |
| 236 | reg = <0x25000 0x1000>; | 251 | reg = <0x25000 0x1000>; |
| 252 | ranges = <0x0 0x25000 0x1000>; | ||
| 237 | local-mac-address = [ 00 00 00 00 00 00 ]; | 253 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 238 | interrupts = <35 0x8 36 0x8 37 0x8>; | 254 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 239 | phy-connection-type = "mii"; | 255 | phy-connection-type = "mii"; |
| 240 | interrupt-parent = <&ipic>; | 256 | interrupt-parent = <&ipic>; |
| 241 | tbi-handle = <&tbi1>; | 257 | tbi-handle = <&tbi1>; |
| 242 | phy-handle = <&phy3>; | 258 | phy-handle = <&phy3>; |
| 259 | sleep = <&pmc 0x30000000>; | ||
| 260 | fsl,magic-packet; | ||
| 261 | |||
| 262 | mdio@520 { | ||
| 263 | #address-cells = <1>; | ||
| 264 | #size-cells = <0>; | ||
| 265 | compatible = "fsl,gianfar-tbi"; | ||
| 266 | reg = <0x520 0x20>; | ||
| 267 | |||
| 268 | tbi1: tbi-phy@11 { | ||
| 269 | reg = <0x11>; | ||
| 270 | device_type = "tbi-phy"; | ||
| 271 | }; | ||
| 272 | }; | ||
| 243 | }; | 273 | }; |
| 244 | 274 | ||
| 245 | serial0: serial@4500 { | 275 | serial0: serial@4500 { |
| @@ -311,15 +341,7 @@ | |||
| 311 | fsl,channel-fifo-len = <24>; | 341 | fsl,channel-fifo-len = <24>; |
| 312 | fsl,exec-units-mask = <0x9fe>; | 342 | fsl,exec-units-mask = <0x9fe>; |
| 313 | fsl,descriptor-types-mask = <0x3ab0ebf>; | 343 | fsl,descriptor-types-mask = <0x3ab0ebf>; |
| 314 | }; | 344 | sleep = <&pmc 0x03000000>; |
| 315 | |||
| 316 | sdhci@2e000 { | ||
| 317 | compatible = "fsl,mpc8377-esdhc", "fsl,mpc8379-esdhc"; | ||
| 318 | reg = <0x2e000 0x1000>; | ||
| 319 | interrupts = <42 0x8>; | ||
| 320 | interrupt-parent = <&ipic>; | ||
| 321 | /* Filled in by U-Boot */ | ||
| 322 | clock-frequency = <0>; | ||
| 323 | }; | 345 | }; |
| 324 | 346 | ||
| 325 | sata@18000 { | 347 | sata@18000 { |
| @@ -327,6 +349,7 @@ | |||
| 327 | reg = <0x18000 0x1000>; | 349 | reg = <0x18000 0x1000>; |
| 328 | interrupts = <44 0x8>; | 350 | interrupts = <44 0x8>; |
| 329 | interrupt-parent = <&ipic>; | 351 | interrupt-parent = <&ipic>; |
| 352 | sleep = <&pmc 0x000000c0>; | ||
| 330 | }; | 353 | }; |
| 331 | 354 | ||
| 332 | sata@19000 { | 355 | sata@19000 { |
| @@ -334,6 +357,7 @@ | |||
| 334 | reg = <0x19000 0x1000>; | 357 | reg = <0x19000 0x1000>; |
| 335 | interrupts = <45 0x8>; | 358 | interrupts = <45 0x8>; |
| 336 | interrupt-parent = <&ipic>; | 359 | interrupt-parent = <&ipic>; |
| 360 | sleep = <&pmc 0x00000030>; | ||
| 337 | }; | 361 | }; |
| 338 | 362 | ||
| 339 | /* IPIC | 363 | /* IPIC |
| @@ -349,6 +373,13 @@ | |||
| 349 | #interrupt-cells = <2>; | 373 | #interrupt-cells = <2>; |
| 350 | reg = <0x700 0x100>; | 374 | reg = <0x700 0x100>; |
| 351 | }; | 375 | }; |
| 376 | |||
| 377 | pmc: power@b00 { | ||
| 378 | compatible = "fsl,mpc8377-pmc", "fsl,mpc8349-pmc"; | ||
| 379 | reg = <0xb00 0x100 0xa00 0x100>; | ||
| 380 | interrupts = <80 0x8>; | ||
| 381 | interrupt-parent = <&ipic>; | ||
| 382 | }; | ||
| 352 | }; | 383 | }; |
| 353 | 384 | ||
| 354 | pci0: pci@e0008500 { | 385 | pci0: pci@e0008500 { |
| @@ -403,6 +434,7 @@ | |||
| 403 | ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000 | 434 | ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000 |
| 404 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 | 435 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 |
| 405 | 0x01000000 0x0 0x00000000 0xe0300000 0x0 0x00100000>; | 436 | 0x01000000 0x0 0x00000000 0xe0300000 0x0 0x00100000>; |
| 437 | sleep = <&pmc 0x00010000>; | ||
| 406 | clock-frequency = <0>; | 438 | clock-frequency = <0>; |
| 407 | #interrupt-cells = <1>; | 439 | #interrupt-cells = <1>; |
| 408 | #size-cells = <2>; | 440 | #size-cells = <2>; |
| @@ -428,6 +460,7 @@ | |||
| 428 | 0 0 0 2 &ipic 1 8 | 460 | 0 0 0 2 &ipic 1 8 |
| 429 | 0 0 0 3 &ipic 1 8 | 461 | 0 0 0 3 &ipic 1 8 |
| 430 | 0 0 0 4 &ipic 1 8>; | 462 | 0 0 0 4 &ipic 1 8>; |
| 463 | sleep = <&pmc 0x00300000>; | ||
| 431 | clock-frequency = <0>; | 464 | clock-frequency = <0>; |
| 432 | 465 | ||
| 433 | pcie@0 { | 466 | pcie@0 { |
| @@ -459,6 +492,7 @@ | |||
| 459 | 0 0 0 2 &ipic 2 8 | 492 | 0 0 0 2 &ipic 2 8 |
| 460 | 0 0 0 3 &ipic 2 8 | 493 | 0 0 0 3 &ipic 2 8 |
| 461 | 0 0 0 4 &ipic 2 8>; | 494 | 0 0 0 4 &ipic 2 8>; |
| 495 | sleep = <&pmc 0x000c0000>; | ||
| 462 | clock-frequency = <0>; | 496 | clock-frequency = <0>; |
| 463 | 497 | ||
| 464 | pcie@0 { | 498 | pcie@0 { |
diff --git a/arch/powerpc/boot/dts/mpc8377_rdb.dts b/arch/powerpc/boot/dts/mpc8377_rdb.dts index fb1d884348ec..053339390c22 100644 --- a/arch/powerpc/boot/dts/mpc8377_rdb.dts +++ b/arch/powerpc/boot/dts/mpc8377_rdb.dts | |||
| @@ -127,37 +127,54 @@ | |||
| 127 | gpio-controller; | 127 | gpio-controller; |
| 128 | }; | 128 | }; |
| 129 | 129 | ||
| 130 | i2c@3000 { | 130 | sleep-nexus { |
| 131 | #address-cells = <1>; | 131 | #address-cells = <1>; |
| 132 | #size-cells = <0>; | 132 | #size-cells = <1>; |
| 133 | cell-index = <0>; | 133 | compatible = "simple-bus"; |
| 134 | compatible = "fsl-i2c"; | 134 | sleep = <&pmc 0x0c000000>; |
| 135 | reg = <0x3000 0x100>; | 135 | ranges; |
| 136 | interrupts = <14 0x8>; | ||
| 137 | interrupt-parent = <&ipic>; | ||
| 138 | dfsrr; | ||
| 139 | |||
| 140 | dtt@48 { | ||
| 141 | compatible = "national,lm75"; | ||
| 142 | reg = <0x48>; | ||
| 143 | }; | ||
| 144 | |||
| 145 | at24@50 { | ||
| 146 | compatible = "at24,24c256"; | ||
| 147 | reg = <0x50>; | ||
| 148 | }; | ||
| 149 | 136 | ||
| 150 | rtc@68 { | 137 | i2c@3000 { |
| 151 | compatible = "dallas,ds1339"; | 138 | #address-cells = <1>; |
| 152 | reg = <0x68>; | 139 | #size-cells = <0>; |
| 140 | cell-index = <0>; | ||
| 141 | compatible = "fsl-i2c"; | ||
| 142 | reg = <0x3000 0x100>; | ||
| 143 | interrupts = <14 0x8>; | ||
| 144 | interrupt-parent = <&ipic>; | ||
| 145 | dfsrr; | ||
| 146 | |||
| 147 | dtt@48 { | ||
| 148 | compatible = "national,lm75"; | ||
| 149 | reg = <0x48>; | ||
| 150 | }; | ||
| 151 | |||
| 152 | at24@50 { | ||
| 153 | compatible = "at24,24c256"; | ||
| 154 | reg = <0x50>; | ||
| 155 | }; | ||
| 156 | |||
| 157 | rtc@68 { | ||
| 158 | compatible = "dallas,ds1339"; | ||
| 159 | reg = <0x68>; | ||
| 160 | }; | ||
| 161 | |||
| 162 | mcu_pio: mcu@a { | ||
| 163 | #gpio-cells = <2>; | ||
| 164 | compatible = "fsl,mc9s08qg8-mpc8377erdb", | ||
| 165 | "fsl,mcu-mpc8349emitx"; | ||
| 166 | reg = <0x0a>; | ||
| 167 | gpio-controller; | ||
| 168 | }; | ||
| 153 | }; | 169 | }; |
| 154 | 170 | ||
| 155 | mcu_pio: mcu@a { | 171 | sdhci@2e000 { |
| 156 | #gpio-cells = <2>; | 172 | compatible = "fsl,mpc8377-esdhc", "fsl,mpc8379-esdhc"; |
| 157 | compatible = "fsl,mc9s08qg8-mpc8377erdb", | 173 | reg = <0x2e000 0x1000>; |
| 158 | "fsl,mcu-mpc8349emitx"; | 174 | interrupts = <42 0x8>; |
| 159 | reg = <0x0a>; | 175 | interrupt-parent = <&ipic>; |
| 160 | gpio-controller; | 176 | /* Filled in by U-Boot */ |
| 177 | clock-frequency = <0>; | ||
| 161 | }; | 178 | }; |
| 162 | }; | 179 | }; |
| 163 | 180 | ||
| @@ -228,64 +245,76 @@ | |||
| 228 | interrupt-parent = <&ipic>; | 245 | interrupt-parent = <&ipic>; |
| 229 | interrupts = <38 0x8>; | 246 | interrupts = <38 0x8>; |
| 230 | phy_type = "ulpi"; | 247 | phy_type = "ulpi"; |
| 248 | sleep = <&pmc 0x00c00000>; | ||
| 231 | }; | 249 | }; |
| 232 | 250 | ||
| 233 | mdio@24520 { | ||
| 234 | #address-cells = <1>; | ||
| 235 | #size-cells = <0>; | ||
| 236 | compatible = "fsl,gianfar-mdio"; | ||
| 237 | reg = <0x24520 0x20>; | ||
| 238 | phy2: ethernet-phy@2 { | ||
| 239 | interrupt-parent = <&ipic>; | ||
| 240 | interrupts = <17 0x8>; | ||
| 241 | reg = <0x2>; | ||
| 242 | device_type = "ethernet-phy"; | ||
| 243 | }; | ||
| 244 | tbi0: tbi-phy@11 { | ||
| 245 | reg = <0x11>; | ||
| 246 | device_type = "tbi-phy"; | ||
| 247 | }; | ||
| 248 | }; | ||
| 249 | |||
| 250 | mdio@25520 { | ||
| 251 | #address-cells = <1>; | ||
| 252 | #size-cells = <0>; | ||
| 253 | compatible = "fsl,gianfar-tbi"; | ||
| 254 | reg = <0x25520 0x20>; | ||
| 255 | |||
| 256 | tbi1: tbi-phy@11 { | ||
| 257 | reg = <0x11>; | ||
| 258 | device_type = "tbi-phy"; | ||
| 259 | }; | ||
| 260 | }; | ||
| 261 | |||
| 262 | |||
| 263 | enet0: ethernet@24000 { | 251 | enet0: ethernet@24000 { |
| 252 | #address-cells = <1>; | ||
| 253 | #size-cells = <1>; | ||
| 264 | cell-index = <0>; | 254 | cell-index = <0>; |
| 265 | device_type = "network"; | 255 | device_type = "network"; |
| 266 | model = "eTSEC"; | 256 | model = "eTSEC"; |
| 267 | compatible = "gianfar"; | 257 | compatible = "gianfar"; |
| 268 | reg = <0x24000 0x1000>; | 258 | reg = <0x24000 0x1000>; |
| 259 | ranges = <0x0 0x24000 0x1000>; | ||
| 269 | local-mac-address = [ 00 00 00 00 00 00 ]; | 260 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 270 | interrupts = <32 0x8 33 0x8 34 0x8>; | 261 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 271 | phy-connection-type = "mii"; | 262 | phy-connection-type = "mii"; |
| 272 | interrupt-parent = <&ipic>; | 263 | interrupt-parent = <&ipic>; |
| 273 | tbi-handle = <&tbi0>; | 264 | tbi-handle = <&tbi0>; |
| 274 | phy-handle = <&phy2>; | 265 | phy-handle = <&phy2>; |
| 266 | sleep = <&pmc 0xc0000000>; | ||
| 267 | fsl,magic-packet; | ||
| 268 | |||
| 269 | mdio@520 { | ||
| 270 | #address-cells = <1>; | ||
| 271 | #size-cells = <0>; | ||
| 272 | compatible = "fsl,gianfar-mdio"; | ||
| 273 | reg = <0x520 0x20>; | ||
| 274 | |||
| 275 | phy2: ethernet-phy@2 { | ||
| 276 | interrupt-parent = <&ipic>; | ||
| 277 | interrupts = <17 0x8>; | ||
| 278 | reg = <0x2>; | ||
| 279 | device_type = "ethernet-phy"; | ||
| 280 | }; | ||
| 281 | |||
| 282 | tbi0: tbi-phy@11 { | ||
| 283 | reg = <0x11>; | ||
| 284 | device_type = "tbi-phy"; | ||
| 285 | }; | ||
| 286 | }; | ||
| 275 | }; | 287 | }; |
| 276 | 288 | ||
| 277 | enet1: ethernet@25000 { | 289 | enet1: ethernet@25000 { |
| 290 | #address-cells = <1>; | ||
| 291 | #size-cells = <1>; | ||
| 278 | cell-index = <1>; | 292 | cell-index = <1>; |
| 279 | device_type = "network"; | 293 | device_type = "network"; |
| 280 | model = "eTSEC"; | 294 | model = "eTSEC"; |
| 281 | compatible = "gianfar"; | 295 | compatible = "gianfar"; |
| 282 | reg = <0x25000 0x1000>; | 296 | reg = <0x25000 0x1000>; |
| 297 | ranges = <0x0 0x25000 0x1000>; | ||
| 283 | local-mac-address = [ 00 00 00 00 00 00 ]; | 298 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 284 | interrupts = <35 0x8 36 0x8 37 0x8>; | 299 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 285 | phy-connection-type = "mii"; | 300 | phy-connection-type = "mii"; |
| 286 | interrupt-parent = <&ipic>; | 301 | interrupt-parent = <&ipic>; |
| 287 | fixed-link = <1 1 1000 0 0>; | 302 | fixed-link = <1 1 1000 0 0>; |
| 288 | tbi-handle = <&tbi1>; | 303 | tbi-handle = <&tbi1>; |
| 304 | sleep = <&pmc 0x30000000>; | ||
| 305 | fsl,magic-packet; | ||
| 306 | |||
| 307 | mdio@520 { | ||
| 308 | #address-cells = <1>; | ||
| 309 | #size-cells = <0>; | ||
| 310 | compatible = "fsl,gianfar-tbi"; | ||
| 311 | reg = <0x520 0x20>; | ||
| 312 | |||
| 313 | tbi1: tbi-phy@11 { | ||
| 314 | reg = <0x11>; | ||
| 315 | device_type = "tbi-phy"; | ||
| 316 | }; | ||
| 317 | }; | ||
| 289 | }; | 318 | }; |
| 290 | 319 | ||
| 291 | serial0: serial@4500 { | 320 | serial0: serial@4500 { |
| @@ -318,15 +347,7 @@ | |||
| 318 | fsl,channel-fifo-len = <24>; | 347 | fsl,channel-fifo-len = <24>; |
| 319 | fsl,exec-units-mask = <0x9fe>; | 348 | fsl,exec-units-mask = <0x9fe>; |
| 320 | fsl,descriptor-types-mask = <0x3ab0ebf>; | 349 | fsl,descriptor-types-mask = <0x3ab0ebf>; |
| 321 | }; | 350 | sleep = <&pmc 0x03000000>; |
| 322 | |||
| 323 | sdhci@2e000 { | ||
| 324 | compatible = "fsl,mpc8377-esdhc", "fsl,mpc8379-esdhc"; | ||
| 325 | reg = <0x2e000 0x1000>; | ||
| 326 | interrupts = <42 0x8>; | ||
| 327 | interrupt-parent = <&ipic>; | ||
| 328 | /* Filled in by U-Boot */ | ||
| 329 | clock-frequency = <0>; | ||
| 330 | }; | 351 | }; |
| 331 | 352 | ||
| 332 | sata@18000 { | 353 | sata@18000 { |
| @@ -334,6 +355,7 @@ | |||
| 334 | reg = <0x18000 0x1000>; | 355 | reg = <0x18000 0x1000>; |
| 335 | interrupts = <44 0x8>; | 356 | interrupts = <44 0x8>; |
| 336 | interrupt-parent = <&ipic>; | 357 | interrupt-parent = <&ipic>; |
| 358 | sleep = <&pmc 0x000000c0>; | ||
| 337 | }; | 359 | }; |
| 338 | 360 | ||
| 339 | sata@19000 { | 361 | sata@19000 { |
| @@ -341,6 +363,7 @@ | |||
| 341 | reg = <0x19000 0x1000>; | 363 | reg = <0x19000 0x1000>; |
| 342 | interrupts = <45 0x8>; | 364 | interrupts = <45 0x8>; |
| 343 | interrupt-parent = <&ipic>; | 365 | interrupt-parent = <&ipic>; |
| 366 | sleep = <&pmc 0x00000030>; | ||
| 344 | }; | 367 | }; |
| 345 | 368 | ||
| 346 | /* IPIC | 369 | /* IPIC |
| @@ -356,6 +379,13 @@ | |||
| 356 | #interrupt-cells = <2>; | 379 | #interrupt-cells = <2>; |
| 357 | reg = <0x700 0x100>; | 380 | reg = <0x700 0x100>; |
| 358 | }; | 381 | }; |
| 382 | |||
| 383 | pmc: power@b00 { | ||
| 384 | compatible = "fsl,mpc8377-pmc", "fsl,mpc8349-pmc"; | ||
| 385 | reg = <0xb00 0x100 0xa00 0x100>; | ||
| 386 | interrupts = <80 0x8>; | ||
| 387 | interrupt-parent = <&ipic>; | ||
| 388 | }; | ||
| 359 | }; | 389 | }; |
| 360 | 390 | ||
| 361 | pci0: pci@e0008500 { | 391 | pci0: pci@e0008500 { |
| @@ -381,6 +411,7 @@ | |||
| 381 | ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000 | 411 | ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000 |
| 382 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 | 412 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 |
| 383 | 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>; | 413 | 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>; |
| 414 | sleep = <&pmc 0x00010000>; | ||
| 384 | clock-frequency = <66666666>; | 415 | clock-frequency = <66666666>; |
| 385 | #interrupt-cells = <1>; | 416 | #interrupt-cells = <1>; |
| 386 | #size-cells = <2>; | 417 | #size-cells = <2>; |
| @@ -406,6 +437,7 @@ | |||
| 406 | 0 0 0 2 &ipic 1 8 | 437 | 0 0 0 2 &ipic 1 8 |
| 407 | 0 0 0 3 &ipic 1 8 | 438 | 0 0 0 3 &ipic 1 8 |
| 408 | 0 0 0 4 &ipic 1 8>; | 439 | 0 0 0 4 &ipic 1 8>; |
| 440 | sleep = <&pmc 0x00300000>; | ||
| 409 | clock-frequency = <0>; | 441 | clock-frequency = <0>; |
| 410 | 442 | ||
| 411 | pcie@0 { | 443 | pcie@0 { |
| @@ -437,6 +469,7 @@ | |||
| 437 | 0 0 0 2 &ipic 2 8 | 469 | 0 0 0 2 &ipic 2 8 |
| 438 | 0 0 0 3 &ipic 2 8 | 470 | 0 0 0 3 &ipic 2 8 |
| 439 | 0 0 0 4 &ipic 2 8>; | 471 | 0 0 0 4 &ipic 2 8>; |
| 472 | sleep = <&pmc 0x000c0000>; | ||
| 440 | clock-frequency = <0>; | 473 | clock-frequency = <0>; |
| 441 | 474 | ||
| 442 | pcie@0 { | 475 | pcie@0 { |
diff --git a/arch/powerpc/boot/dts/mpc8378_mds.dts b/arch/powerpc/boot/dts/mpc8378_mds.dts index c3b212cf9025..651ff2f9db2d 100644 --- a/arch/powerpc/boot/dts/mpc8378_mds.dts +++ b/arch/powerpc/boot/dts/mpc8378_mds.dts | |||
| @@ -129,21 +129,38 @@ | |||
| 129 | reg = <0x200 0x100>; | 129 | reg = <0x200 0x100>; |
| 130 | }; | 130 | }; |
| 131 | 131 | ||
| 132 | i2c@3000 { | 132 | sleep-nexus { |
| 133 | #address-cells = <1>; | 133 | #address-cells = <1>; |
| 134 | #size-cells = <0>; | 134 | #size-cells = <1>; |
| 135 | cell-index = <0>; | 135 | compatible = "simple-bus"; |
| 136 | compatible = "fsl-i2c"; | 136 | sleep = <&pmc 0x0c000000>; |
| 137 | reg = <0x3000 0x100>; | 137 | ranges; |
| 138 | interrupts = <14 0x8>; | 138 | |
| 139 | interrupt-parent = <&ipic>; | 139 | i2c@3000 { |
| 140 | dfsrr; | 140 | #address-cells = <1>; |
| 141 | #size-cells = <0>; | ||
| 142 | cell-index = <0>; | ||
| 143 | compatible = "fsl-i2c"; | ||
| 144 | reg = <0x3000 0x100>; | ||
| 145 | interrupts = <14 0x8>; | ||
| 146 | interrupt-parent = <&ipic>; | ||
| 147 | dfsrr; | ||
| 148 | |||
| 149 | rtc@68 { | ||
| 150 | compatible = "dallas,ds1374"; | ||
| 151 | reg = <0x68>; | ||
| 152 | interrupts = <19 0x8>; | ||
| 153 | interrupt-parent = <&ipic>; | ||
| 154 | }; | ||
| 155 | }; | ||
| 141 | 156 | ||
| 142 | rtc@68 { | 157 | sdhci@2e000 { |
| 143 | compatible = "dallas,ds1374"; | 158 | compatible = "fsl,mpc8378-esdhc", "fsl,mpc8379-esdhc"; |
| 144 | reg = <0x68>; | 159 | reg = <0x2e000 0x1000>; |
| 145 | interrupts = <19 0x8>; | 160 | interrupts = <42 0x8>; |
| 146 | interrupt-parent = <&ipic>; | 161 | interrupt-parent = <&ipic>; |
| 162 | /* Filled in by U-Boot */ | ||
| 163 | clock-frequency = <0>; | ||
| 147 | }; | 164 | }; |
| 148 | }; | 165 | }; |
| 149 | 166 | ||
| @@ -215,70 +232,83 @@ | |||
| 215 | interrupts = <38 0x8>; | 232 | interrupts = <38 0x8>; |
| 216 | dr_mode = "host"; | 233 | dr_mode = "host"; |
| 217 | phy_type = "ulpi"; | 234 | phy_type = "ulpi"; |
| 235 | sleep = <&pmc 0x00c00000>; | ||
| 218 | }; | 236 | }; |
| 219 | 237 | ||
| 220 | mdio@24520 { | ||
| 221 | #address-cells = <1>; | ||
| 222 | #size-cells = <0>; | ||
| 223 | compatible = "fsl,gianfar-mdio"; | ||
| 224 | reg = <0x24520 0x20>; | ||
| 225 | phy2: ethernet-phy@2 { | ||
| 226 | interrupt-parent = <&ipic>; | ||
| 227 | interrupts = <17 0x8>; | ||
| 228 | reg = <0x2>; | ||
| 229 | device_type = "ethernet-phy"; | ||
| 230 | }; | ||
| 231 | phy3: ethernet-phy@3 { | ||
| 232 | interrupt-parent = <&ipic>; | ||
| 233 | interrupts = <18 0x8>; | ||
| 234 | reg = <0x3>; | ||
| 235 | device_type = "ethernet-phy"; | ||
| 236 | }; | ||
| 237 | tbi0: tbi-phy@11 { | ||
| 238 | reg = <0x11>; | ||
| 239 | device_type = "tbi-phy"; | ||
| 240 | }; | ||
| 241 | }; | ||
| 242 | |||
| 243 | mdio@25520 { | ||
| 244 | #address-cells = <1>; | ||
| 245 | #size-cells = <0>; | ||
| 246 | compatible = "fsl,gianfar-tbi"; | ||
| 247 | reg = <0x25520 0x20>; | ||
| 248 | |||
| 249 | tbi1: tbi-phy@11 { | ||
| 250 | reg = <0x11>; | ||
| 251 | device_type = "tbi-phy"; | ||
| 252 | }; | ||
| 253 | }; | ||
| 254 | |||
| 255 | |||
| 256 | enet0: ethernet@24000 { | 238 | enet0: ethernet@24000 { |
| 239 | #address-cells = <1>; | ||
| 240 | #size-cells = <1>; | ||
| 257 | cell-index = <0>; | 241 | cell-index = <0>; |
| 258 | device_type = "network"; | 242 | device_type = "network"; |
| 259 | model = "eTSEC"; | 243 | model = "eTSEC"; |
| 260 | compatible = "gianfar"; | 244 | compatible = "gianfar"; |
| 261 | reg = <0x24000 0x1000>; | 245 | reg = <0x24000 0x1000>; |
| 246 | ranges = <0x0 0x24000 0x1000>; | ||
| 262 | local-mac-address = [ 00 00 00 00 00 00 ]; | 247 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 263 | interrupts = <32 0x8 33 0x8 34 0x8>; | 248 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 264 | phy-connection-type = "mii"; | 249 | phy-connection-type = "mii"; |
| 265 | interrupt-parent = <&ipic>; | 250 | interrupt-parent = <&ipic>; |
| 266 | tbi-handle = <&tbi0>; | 251 | tbi-handle = <&tbi0>; |
| 267 | phy-handle = <&phy2>; | 252 | phy-handle = <&phy2>; |
| 253 | sleep = <&pmc 0xc0000000>; | ||
| 254 | fsl,magic-packet; | ||
| 255 | |||
| 256 | mdio@520 { | ||
| 257 | #address-cells = <1>; | ||
| 258 | #size-cells = <0>; | ||
| 259 | compatible = "fsl,gianfar-mdio"; | ||
| 260 | reg = <0x520 0x20>; | ||
| 261 | |||
| 262 | phy2: ethernet-phy@2 { | ||
| 263 | interrupt-parent = <&ipic>; | ||
| 264 | interrupts = <17 0x8>; | ||
| 265 | reg = <0x2>; | ||
| 266 | device_type = "ethernet-phy"; | ||
| 267 | }; | ||
| 268 | |||
| 269 | phy3: ethernet-phy@3 { | ||
| 270 | interrupt-parent = <&ipic>; | ||
| 271 | interrupts = <18 0x8>; | ||
| 272 | reg = <0x3>; | ||
| 273 | device_type = "ethernet-phy"; | ||
| 274 | }; | ||
| 275 | |||
| 276 | tbi0: tbi-phy@11 { | ||
| 277 | reg = <0x11>; | ||
| 278 | device_type = "tbi-phy"; | ||
| 279 | }; | ||
| 280 | }; | ||
| 268 | }; | 281 | }; |
| 269 | 282 | ||
| 270 | enet1: ethernet@25000 { | 283 | enet1: ethernet@25000 { |
| 284 | #address-cells = <1>; | ||
| 285 | #size-cells = <1>; | ||
| 271 | cell-index = <1>; | 286 | cell-index = <1>; |
| 272 | device_type = "network"; | 287 | device_type = "network"; |
| 273 | model = "eTSEC"; | 288 | model = "eTSEC"; |
| 274 | compatible = "gianfar"; | 289 | compatible = "gianfar"; |
| 275 | reg = <0x25000 0x1000>; | 290 | reg = <0x25000 0x1000>; |
| 291 | ranges = <0x0 0x25000 0x1000>; | ||
| 276 | local-mac-address = [ 00 00 00 00 00 00 ]; | 292 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 277 | interrupts = <35 0x8 36 0x8 37 0x8>; | 293 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 278 | phy-connection-type = "mii"; | 294 | phy-connection-type = "mii"; |
| 279 | interrupt-parent = <&ipic>; | 295 | interrupt-parent = <&ipic>; |
| 280 | tbi-handle = <&tbi1>; | 296 | tbi-handle = <&tbi1>; |
| 281 | phy-handle = <&phy3>; | 297 | phy-handle = <&phy3>; |
| 298 | sleep = <&pmc 0x30000000>; | ||
| 299 | fsl,magic-packet; | ||
| 300 | |||
| 301 | mdio@520 { | ||
| 302 | #address-cells = <1>; | ||
| 303 | #size-cells = <0>; | ||
| 304 | compatible = "fsl,gianfar-tbi"; | ||
| 305 | reg = <0x520 0x20>; | ||
| 306 | |||
| 307 | tbi1: tbi-phy@11 { | ||
| 308 | reg = <0x11>; | ||
| 309 | device_type = "tbi-phy"; | ||
| 310 | }; | ||
| 311 | }; | ||
| 282 | }; | 312 | }; |
| 283 | 313 | ||
| 284 | serial0: serial@4500 { | 314 | serial0: serial@4500 { |
| @@ -311,15 +341,7 @@ | |||
| 311 | fsl,channel-fifo-len = <24>; | 341 | fsl,channel-fifo-len = <24>; |
| 312 | fsl,exec-units-mask = <0x9fe>; | 342 | fsl,exec-units-mask = <0x9fe>; |
| 313 | fsl,descriptor-types-mask = <0x3ab0ebf>; | 343 | fsl,descriptor-types-mask = <0x3ab0ebf>; |
| 314 | }; | 344 | sleep = <&pmc 0x03000000>; |
| 315 | |||
| 316 | sdhci@2e000 { | ||
| 317 | compatible = "fsl,mpc8378-esdhc", "fsl,mpc8379-esdhc"; | ||
| 318 | reg = <0x2e000 0x1000>; | ||
| 319 | interrupts = <42 0x8>; | ||
| 320 | interrupt-parent = <&ipic>; | ||
| 321 | /* Filled in by U-Boot */ | ||
| 322 | clock-frequency = <0>; | ||
| 323 | }; | 345 | }; |
| 324 | 346 | ||
| 325 | /* IPIC | 347 | /* IPIC |
| @@ -335,6 +357,13 @@ | |||
| 335 | #interrupt-cells = <2>; | 357 | #interrupt-cells = <2>; |
| 336 | reg = <0x700 0x100>; | 358 | reg = <0x700 0x100>; |
| 337 | }; | 359 | }; |
| 360 | |||
| 361 | pmc: power@b00 { | ||
| 362 | compatible = "fsl,mpc8378-pmc", "fsl,mpc8349-pmc"; | ||
| 363 | reg = <0xb00 0x100 0xa00 0x100>; | ||
| 364 | interrupts = <80 0x8>; | ||
| 365 | interrupt-parent = <&ipic>; | ||
| 366 | }; | ||
| 338 | }; | 367 | }; |
| 339 | 368 | ||
| 340 | pci0: pci@e0008500 { | 369 | pci0: pci@e0008500 { |
| @@ -390,6 +419,7 @@ | |||
| 390 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 | 419 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 |
| 391 | 0x01000000 0x0 0x00000000 0xe0300000 0x0 0x00100000>; | 420 | 0x01000000 0x0 0x00000000 0xe0300000 0x0 0x00100000>; |
| 392 | clock-frequency = <0>; | 421 | clock-frequency = <0>; |
| 422 | sleep = <&pmc 0x00010000>; | ||
| 393 | #interrupt-cells = <1>; | 423 | #interrupt-cells = <1>; |
| 394 | #size-cells = <2>; | 424 | #size-cells = <2>; |
| 395 | #address-cells = <3>; | 425 | #address-cells = <3>; |
| @@ -414,6 +444,7 @@ | |||
| 414 | 0 0 0 2 &ipic 1 8 | 444 | 0 0 0 2 &ipic 1 8 |
| 415 | 0 0 0 3 &ipic 1 8 | 445 | 0 0 0 3 &ipic 1 8 |
| 416 | 0 0 0 4 &ipic 1 8>; | 446 | 0 0 0 4 &ipic 1 8>; |
| 447 | sleep = <&pmc 0x00300000>; | ||
| 417 | clock-frequency = <0>; | 448 | clock-frequency = <0>; |
| 418 | 449 | ||
| 419 | pcie@0 { | 450 | pcie@0 { |
| @@ -445,6 +476,7 @@ | |||
| 445 | 0 0 0 2 &ipic 2 8 | 476 | 0 0 0 2 &ipic 2 8 |
| 446 | 0 0 0 3 &ipic 2 8 | 477 | 0 0 0 3 &ipic 2 8 |
| 447 | 0 0 0 4 &ipic 2 8>; | 478 | 0 0 0 4 &ipic 2 8>; |
| 479 | sleep = <&pmc 0x000c0000>; | ||
| 448 | clock-frequency = <0>; | 480 | clock-frequency = <0>; |
| 449 | 481 | ||
| 450 | pcie@0 { | 482 | pcie@0 { |
diff --git a/arch/powerpc/boot/dts/mpc8378_rdb.dts b/arch/powerpc/boot/dts/mpc8378_rdb.dts index 37c8555cc8d4..5d90e85704c3 100644 --- a/arch/powerpc/boot/dts/mpc8378_rdb.dts +++ b/arch/powerpc/boot/dts/mpc8378_rdb.dts | |||
| @@ -127,37 +127,54 @@ | |||
| 127 | gpio-controller; | 127 | gpio-controller; |
| 128 | }; | 128 | }; |
| 129 | 129 | ||
| 130 | i2c@3000 { | 130 | sleep-nexus { |
| 131 | #address-cells = <1>; | 131 | #address-cells = <1>; |
| 132 | #size-cells = <0>; | 132 | #size-cells = <1>; |
| 133 | cell-index = <0>; | 133 | compatible = "simple-bus"; |
| 134 | compatible = "fsl-i2c"; | 134 | sleep = <&pmc 0x0c000000>; |
| 135 | reg = <0x3000 0x100>; | 135 | ranges; |
| 136 | interrupts = <14 0x8>; | ||
| 137 | interrupt-parent = <&ipic>; | ||
| 138 | dfsrr; | ||
| 139 | |||
| 140 | dtt@48 { | ||
| 141 | compatible = "national,lm75"; | ||
| 142 | reg = <0x48>; | ||
| 143 | }; | ||
| 144 | |||
| 145 | at24@50 { | ||
| 146 | compatible = "at24,24c256"; | ||
| 147 | reg = <0x50>; | ||
| 148 | }; | ||
| 149 | 136 | ||
| 150 | rtc@68 { | 137 | i2c@3000 { |
| 151 | compatible = "dallas,ds1339"; | 138 | #address-cells = <1>; |
| 152 | reg = <0x68>; | 139 | #size-cells = <0>; |
| 140 | cell-index = <0>; | ||
| 141 | compatible = "fsl-i2c"; | ||
| 142 | reg = <0x3000 0x100>; | ||
| 143 | interrupts = <14 0x8>; | ||
| 144 | interrupt-parent = <&ipic>; | ||
| 145 | dfsrr; | ||
| 146 | |||
| 147 | dtt@48 { | ||
| 148 | compatible = "national,lm75"; | ||
| 149 | reg = <0x48>; | ||
| 150 | }; | ||
| 151 | |||
| 152 | at24@50 { | ||
| 153 | compatible = "at24,24c256"; | ||
| 154 | reg = <0x50>; | ||
| 155 | }; | ||
| 156 | |||
| 157 | rtc@68 { | ||
| 158 | compatible = "dallas,ds1339"; | ||
| 159 | reg = <0x68>; | ||
| 160 | }; | ||
| 161 | |||
| 162 | mcu_pio: mcu@a { | ||
| 163 | #gpio-cells = <2>; | ||
| 164 | compatible = "fsl,mc9s08qg8-mpc8378erdb", | ||
| 165 | "fsl,mcu-mpc8349emitx"; | ||
| 166 | reg = <0x0a>; | ||
| 167 | gpio-controller; | ||
| 168 | }; | ||
| 153 | }; | 169 | }; |
| 154 | 170 | ||
| 155 | mcu_pio: mcu@a { | 171 | sdhci@2e000 { |
| 156 | #gpio-cells = <2>; | 172 | compatible = "fsl,mpc8378-esdhc", "fsl,mpc8379-esdhc"; |
| 157 | compatible = "fsl,mc9s08qg8-mpc8378erdb", | 173 | reg = <0x2e000 0x1000>; |
| 158 | "fsl,mcu-mpc8349emitx"; | 174 | interrupts = <42 0x8>; |
| 159 | reg = <0x0a>; | 175 | interrupt-parent = <&ipic>; |
| 160 | gpio-controller; | 176 | /* Filled in by U-Boot */ |
| 177 | clock-frequency = <0>; | ||
| 161 | }; | 178 | }; |
| 162 | }; | 179 | }; |
| 163 | 180 | ||
| @@ -228,62 +245,76 @@ | |||
| 228 | interrupt-parent = <&ipic>; | 245 | interrupt-parent = <&ipic>; |
| 229 | interrupts = <38 0x8>; | 246 | interrupts = <38 0x8>; |
| 230 | phy_type = "ulpi"; | 247 | phy_type = "ulpi"; |
| 248 | sleep = <&pmc 0x00c00000>; | ||
| 231 | }; | 249 | }; |
| 232 | 250 | ||
| 233 | mdio@24520 { | ||
| 234 | #address-cells = <1>; | ||
| 235 | #size-cells = <0>; | ||
| 236 | compatible = "fsl,gianfar-mdio"; | ||
| 237 | reg = <0x24520 0x20>; | ||
| 238 | phy2: ethernet-phy@2 { | ||
| 239 | interrupt-parent = <&ipic>; | ||
| 240 | interrupts = <17 0x8>; | ||
| 241 | reg = <0x2>; | ||
| 242 | device_type = "ethernet-phy"; | ||
| 243 | }; | ||
| 244 | tbi0: tbi-phy@11 { | ||
| 245 | reg = <0x11>; | ||
| 246 | device_type = "tbi-phy"; | ||
| 247 | }; | ||
| 248 | }; | ||
| 249 | |||
| 250 | mdio@25520 { | ||
| 251 | #address-cells = <1>; | ||
| 252 | #size-cells = <0>; | ||
| 253 | compatible = "fsl,gianfar-tbi"; | ||
| 254 | reg = <0x25520 0x20>; | ||
| 255 | |||
| 256 | tbi1: tbi-phy@11 { | ||
| 257 | reg = <0x11>; | ||
| 258 | device_type = "tbi-phy"; | ||
| 259 | }; | ||
| 260 | }; | ||
| 261 | |||
| 262 | |||
| 263 | enet0: ethernet@24000 { | 251 | enet0: ethernet@24000 { |
| 252 | #address-cells = <1>; | ||
| 253 | #size-cells = <1>; | ||
| 264 | cell-index = <0>; | 254 | cell-index = <0>; |
| 265 | device_type = "network"; | 255 | device_type = "network"; |
| 266 | model = "eTSEC"; | 256 | model = "eTSEC"; |
| 267 | compatible = "gianfar"; | 257 | compatible = "gianfar"; |
| 268 | reg = <0x24000 0x1000>; | 258 | reg = <0x24000 0x1000>; |
| 259 | ranges = <0x0 0x24000 0x1000>; | ||
| 269 | local-mac-address = [ 00 00 00 00 00 00 ]; | 260 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 270 | interrupts = <32 0x8 33 0x8 34 0x8>; | 261 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 271 | phy-connection-type = "mii"; | 262 | phy-connection-type = "mii"; |
| 272 | interrupt-parent = <&ipic>; | 263 | interrupt-parent = <&ipic>; |
| 264 | tbi-handle = <&tbi0>; | ||
| 273 | phy-handle = <&phy2>; | 265 | phy-handle = <&phy2>; |
| 266 | sleep = <&pmc 0xc0000000>; | ||
| 267 | fsl,magic-packet; | ||
| 268 | |||
| 269 | mdio@520 { | ||
| 270 | #address-cells = <1>; | ||
| 271 | #size-cells = <0>; | ||
| 272 | compatible = "fsl,gianfar-mdio"; | ||
| 273 | reg = <0x520 0x20>; | ||
| 274 | |||
| 275 | phy2: ethernet-phy@2 { | ||
| 276 | interrupt-parent = <&ipic>; | ||
| 277 | interrupts = <17 0x8>; | ||
| 278 | reg = <0x2>; | ||
| 279 | device_type = "ethernet-phy"; | ||
| 280 | }; | ||
| 281 | |||
| 282 | tbi0: tbi-phy@11 { | ||
| 283 | reg = <0x11>; | ||
| 284 | device_type = "tbi-phy"; | ||
| 285 | }; | ||
| 286 | }; | ||
| 274 | }; | 287 | }; |
| 275 | 288 | ||
| 276 | enet1: ethernet@25000 { | 289 | enet1: ethernet@25000 { |
| 290 | #address-cells = <1>; | ||
| 291 | #size-cells = <1>; | ||
| 277 | cell-index = <1>; | 292 | cell-index = <1>; |
| 278 | device_type = "network"; | 293 | device_type = "network"; |
| 279 | model = "eTSEC"; | 294 | model = "eTSEC"; |
| 280 | compatible = "gianfar"; | 295 | compatible = "gianfar"; |
| 281 | reg = <0x25000 0x1000>; | 296 | reg = <0x25000 0x1000>; |
| 297 | ranges = <0x0 0x25000 0x1000>; | ||
| 282 | local-mac-address = [ 00 00 00 00 00 00 ]; | 298 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 283 | interrupts = <35 0x8 36 0x8 37 0x8>; | 299 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 284 | phy-connection-type = "mii"; | 300 | phy-connection-type = "mii"; |
| 285 | interrupt-parent = <&ipic>; | 301 | interrupt-parent = <&ipic>; |
| 286 | fixed-link = <1 1 1000 0 0>; | 302 | fixed-link = <1 1 1000 0 0>; |
| 303 | tbi-handle = <&tbi1>; | ||
| 304 | sleep = <&pmc 0x30000000>; | ||
| 305 | fsl,magic-packet; | ||
| 306 | |||
| 307 | mdio@520 { | ||
| 308 | #address-cells = <1>; | ||
| 309 | #size-cells = <0>; | ||
| 310 | compatible = "fsl,gianfar-tbi"; | ||
| 311 | reg = <0x520 0x20>; | ||
| 312 | |||
| 313 | tbi1: tbi-phy@11 { | ||
| 314 | reg = <0x11>; | ||
| 315 | device_type = "tbi-phy"; | ||
| 316 | }; | ||
| 317 | }; | ||
| 287 | }; | 318 | }; |
| 288 | 319 | ||
| 289 | serial0: serial@4500 { | 320 | serial0: serial@4500 { |
| @@ -316,15 +347,7 @@ | |||
| 316 | fsl,channel-fifo-len = <24>; | 347 | fsl,channel-fifo-len = <24>; |
| 317 | fsl,exec-units-mask = <0x9fe>; | 348 | fsl,exec-units-mask = <0x9fe>; |
| 318 | fsl,descriptor-types-mask = <0x3ab0ebf>; | 349 | fsl,descriptor-types-mask = <0x3ab0ebf>; |
| 319 | }; | 350 | sleep = <&pmc 0x03000000>; |
| 320 | |||
| 321 | sdhci@2e000 { | ||
| 322 | compatible = "fsl,mpc8378-esdhc", "fsl,mpc8379-esdhc"; | ||
| 323 | reg = <0x2e000 0x1000>; | ||
| 324 | interrupts = <42 0x8>; | ||
| 325 | interrupt-parent = <&ipic>; | ||
| 326 | /* Filled in by U-Boot */ | ||
| 327 | clock-frequency = <0>; | ||
| 328 | }; | 351 | }; |
| 329 | 352 | ||
| 330 | /* IPIC | 353 | /* IPIC |
| @@ -340,6 +363,13 @@ | |||
| 340 | #interrupt-cells = <2>; | 363 | #interrupt-cells = <2>; |
| 341 | reg = <0x700 0x100>; | 364 | reg = <0x700 0x100>; |
| 342 | }; | 365 | }; |
| 366 | |||
| 367 | pmc: power@b00 { | ||
| 368 | compatible = "fsl,mpc8378-pmc", "fsl,mpc8349-pmc"; | ||
| 369 | reg = <0xb00 0x100 0xa00 0x100>; | ||
| 370 | interrupts = <80 0x8>; | ||
| 371 | interrupt-parent = <&ipic>; | ||
| 372 | }; | ||
| 343 | }; | 373 | }; |
| 344 | 374 | ||
| 345 | pci0: pci@e0008500 { | 375 | pci0: pci@e0008500 { |
| @@ -365,6 +395,7 @@ | |||
| 365 | ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000 | 395 | ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000 |
| 366 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 | 396 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 |
| 367 | 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>; | 397 | 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>; |
| 398 | sleep = <&pmc 0x00010000>; | ||
| 368 | clock-frequency = <66666666>; | 399 | clock-frequency = <66666666>; |
| 369 | #interrupt-cells = <1>; | 400 | #interrupt-cells = <1>; |
| 370 | #size-cells = <2>; | 401 | #size-cells = <2>; |
| @@ -390,6 +421,7 @@ | |||
| 390 | 0 0 0 2 &ipic 1 8 | 421 | 0 0 0 2 &ipic 1 8 |
| 391 | 0 0 0 3 &ipic 1 8 | 422 | 0 0 0 3 &ipic 1 8 |
| 392 | 0 0 0 4 &ipic 1 8>; | 423 | 0 0 0 4 &ipic 1 8>; |
| 424 | sleep = <&pmc 0x00300000>; | ||
| 393 | clock-frequency = <0>; | 425 | clock-frequency = <0>; |
| 394 | 426 | ||
| 395 | pcie@0 { | 427 | pcie@0 { |
| @@ -421,6 +453,7 @@ | |||
| 421 | 0 0 0 2 &ipic 2 8 | 453 | 0 0 0 2 &ipic 2 8 |
| 422 | 0 0 0 3 &ipic 2 8 | 454 | 0 0 0 3 &ipic 2 8 |
| 423 | 0 0 0 4 &ipic 2 8>; | 455 | 0 0 0 4 &ipic 2 8>; |
| 456 | sleep = <&pmc 0x000c0000>; | ||
| 424 | clock-frequency = <0>; | 457 | clock-frequency = <0>; |
| 425 | 458 | ||
| 426 | pcie@0 { | 459 | pcie@0 { |
diff --git a/arch/powerpc/boot/dts/mpc8379_mds.dts b/arch/powerpc/boot/dts/mpc8379_mds.dts index 1b61cda1eb47..d6f208b8297a 100644 --- a/arch/powerpc/boot/dts/mpc8379_mds.dts +++ b/arch/powerpc/boot/dts/mpc8379_mds.dts | |||
| @@ -127,21 +127,38 @@ | |||
| 127 | reg = <0x200 0x100>; | 127 | reg = <0x200 0x100>; |
| 128 | }; | 128 | }; |
| 129 | 129 | ||
| 130 | i2c@3000 { | 130 | sleep-nexus { |
| 131 | #address-cells = <1>; | 131 | #address-cells = <1>; |
| 132 | #size-cells = <0>; | 132 | #size-cells = <1>; |
| 133 | cell-index = <0>; | 133 | compatible = "simple-bus"; |
| 134 | compatible = "fsl-i2c"; | 134 | sleep = <&pmc 0x0c000000>; |
| 135 | reg = <0x3000 0x100>; | 135 | ranges; |
| 136 | interrupts = <14 0x8>; | 136 | |
| 137 | interrupt-parent = <&ipic>; | 137 | i2c@3000 { |
| 138 | dfsrr; | 138 | #address-cells = <1>; |
| 139 | #size-cells = <0>; | ||
| 140 | cell-index = <0>; | ||
| 141 | compatible = "fsl-i2c"; | ||
| 142 | reg = <0x3000 0x100>; | ||
| 143 | interrupts = <14 0x8>; | ||
| 144 | interrupt-parent = <&ipic>; | ||
| 145 | dfsrr; | ||
| 146 | |||
| 147 | rtc@68 { | ||
| 148 | compatible = "dallas,ds1374"; | ||
| 149 | reg = <0x68>; | ||
| 150 | interrupts = <19 0x8>; | ||
| 151 | interrupt-parent = <&ipic>; | ||
| 152 | }; | ||
| 153 | }; | ||
| 139 | 154 | ||
| 140 | rtc@68 { | 155 | sdhci@2e000 { |
| 141 | compatible = "dallas,ds1374"; | 156 | compatible = "fsl,mpc8379-esdhc"; |
| 142 | reg = <0x68>; | 157 | reg = <0x2e000 0x1000>; |
| 143 | interrupts = <19 0x8>; | 158 | interrupts = <42 0x8>; |
| 144 | interrupt-parent = <&ipic>; | 159 | interrupt-parent = <&ipic>; |
| 160 | /* Filled in by U-Boot */ | ||
| 161 | clock-frequency = <0>; | ||
| 145 | }; | 162 | }; |
| 146 | }; | 163 | }; |
| 147 | 164 | ||
| @@ -213,69 +230,83 @@ | |||
| 213 | interrupts = <38 0x8>; | 230 | interrupts = <38 0x8>; |
| 214 | dr_mode = "host"; | 231 | dr_mode = "host"; |
| 215 | phy_type = "ulpi"; | 232 | phy_type = "ulpi"; |
| 216 | }; | 233 | sleep = <&pmc 0x00c00000>; |
| 217 | |||
| 218 | mdio@24520 { | ||
| 219 | #address-cells = <1>; | ||
| 220 | #size-cells = <0>; | ||
| 221 | compatible = "fsl,gianfar-mdio"; | ||
| 222 | reg = <0x24520 0x20>; | ||
| 223 | phy2: ethernet-phy@2 { | ||
| 224 | interrupt-parent = <&ipic>; | ||
| 225 | interrupts = <17 0x8>; | ||
| 226 | reg = <0x2>; | ||
| 227 | device_type = "ethernet-phy"; | ||
| 228 | }; | ||
| 229 | phy3: ethernet-phy@3 { | ||
| 230 | interrupt-parent = <&ipic>; | ||
| 231 | interrupts = <18 0x8>; | ||
| 232 | reg = <0x3>; | ||
| 233 | device_type = "ethernet-phy"; | ||
| 234 | }; | ||
| 235 | tbi0: tbi-phy@11 { | ||
| 236 | reg = <0x11>; | ||
| 237 | device_type = "tbi-phy"; | ||
| 238 | }; | ||
| 239 | }; | ||
| 240 | |||
| 241 | mdio@25520 { | ||
| 242 | #address-cells = <1>; | ||
| 243 | #size-cells = <0>; | ||
| 244 | compatible = "fsl,gianfar-tbi"; | ||
| 245 | reg = <0x25520 0x20>; | ||
| 246 | |||
| 247 | tbi1: tbi-phy@11 { | ||
| 248 | reg = <0x11>; | ||
| 249 | device_type = "tbi-phy"; | ||
| 250 | }; | ||
| 251 | }; | 234 | }; |
| 252 | 235 | ||
| 253 | enet0: ethernet@24000 { | 236 | enet0: ethernet@24000 { |
| 237 | #address-cells = <1>; | ||
| 238 | #size-cells = <1>; | ||
| 254 | cell-index = <0>; | 239 | cell-index = <0>; |
| 255 | device_type = "network"; | 240 | device_type = "network"; |
| 256 | model = "eTSEC"; | 241 | model = "eTSEC"; |
| 257 | compatible = "gianfar"; | 242 | compatible = "gianfar"; |
| 258 | reg = <0x24000 0x1000>; | 243 | reg = <0x24000 0x1000>; |
| 244 | ranges = <0x0 0x24000 0x1000>; | ||
| 259 | local-mac-address = [ 00 00 00 00 00 00 ]; | 245 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 260 | interrupts = <32 0x8 33 0x8 34 0x8>; | 246 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 261 | phy-connection-type = "mii"; | 247 | phy-connection-type = "mii"; |
| 262 | interrupt-parent = <&ipic>; | 248 | interrupt-parent = <&ipic>; |
| 263 | tbi-handle = <&tbi0>; | 249 | tbi-handle = <&tbi0>; |
| 264 | phy-handle = <&phy2>; | 250 | phy-handle = <&phy2>; |
| 251 | sleep = <&pmc 0xc0000000>; | ||
| 252 | fsl,magic-packet; | ||
| 253 | |||
| 254 | mdio@520 { | ||
| 255 | #address-cells = <1>; | ||
| 256 | #size-cells = <0>; | ||
| 257 | compatible = "fsl,gianfar-mdio"; | ||
| 258 | reg = <0x520 0x20>; | ||
| 259 | |||
| 260 | phy2: ethernet-phy@2 { | ||
| 261 | interrupt-parent = <&ipic>; | ||
| 262 | interrupts = <17 0x8>; | ||
| 263 | reg = <0x2>; | ||
| 264 | device_type = "ethernet-phy"; | ||
| 265 | }; | ||
| 266 | |||
| 267 | phy3: ethernet-phy@3 { | ||
| 268 | interrupt-parent = <&ipic>; | ||
| 269 | interrupts = <18 0x8>; | ||
| 270 | reg = <0x3>; | ||
| 271 | device_type = "ethernet-phy"; | ||
| 272 | }; | ||
| 273 | |||
| 274 | tbi0: tbi-phy@11 { | ||
| 275 | reg = <0x11>; | ||
| 276 | device_type = "tbi-phy"; | ||
| 277 | }; | ||
| 278 | }; | ||
| 265 | }; | 279 | }; |
| 266 | 280 | ||
| 267 | enet1: ethernet@25000 { | 281 | enet1: ethernet@25000 { |
| 282 | #address-cells = <1>; | ||
| 283 | #size-cells = <1>; | ||
| 268 | cell-index = <1>; | 284 | cell-index = <1>; |
| 269 | device_type = "network"; | 285 | device_type = "network"; |
| 270 | model = "eTSEC"; | 286 | model = "eTSEC"; |
| 271 | compatible = "gianfar"; | 287 | compatible = "gianfar"; |
| 272 | reg = <0x25000 0x1000>; | 288 | reg = <0x25000 0x1000>; |
| 289 | ranges = <0x0 0x25000 0x1000>; | ||
| 273 | local-mac-address = [ 00 00 00 00 00 00 ]; | 290 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 274 | interrupts = <35 0x8 36 0x8 37 0x8>; | 291 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 275 | phy-connection-type = "mii"; | 292 | phy-connection-type = "mii"; |
| 276 | interrupt-parent = <&ipic>; | 293 | interrupt-parent = <&ipic>; |
| 277 | tbi-handle = <&tbi1>; | 294 | tbi-handle = <&tbi1>; |
| 278 | phy-handle = <&phy3>; | 295 | phy-handle = <&phy3>; |
| 296 | sleep = <&pmc 0x30000000>; | ||
| 297 | fsl,magic-packet; | ||
| 298 | |||
| 299 | mdio@520 { | ||
| 300 | #address-cells = <1>; | ||
| 301 | #size-cells = <0>; | ||
| 302 | compatible = "fsl,gianfar-tbi"; | ||
| 303 | reg = <0x520 0x20>; | ||
| 304 | |||
| 305 | tbi1: tbi-phy@11 { | ||
| 306 | reg = <0x11>; | ||
| 307 | device_type = "tbi-phy"; | ||
| 308 | }; | ||
| 309 | }; | ||
| 279 | }; | 310 | }; |
| 280 | 311 | ||
| 281 | serial0: serial@4500 { | 312 | serial0: serial@4500 { |
| @@ -308,15 +339,7 @@ | |||
| 308 | fsl,channel-fifo-len = <24>; | 339 | fsl,channel-fifo-len = <24>; |
| 309 | fsl,exec-units-mask = <0x9fe>; | 340 | fsl,exec-units-mask = <0x9fe>; |
| 310 | fsl,descriptor-types-mask = <0x3ab0ebf>; | 341 | fsl,descriptor-types-mask = <0x3ab0ebf>; |
| 311 | }; | 342 | sleep = <&pmc 0x03000000>; |
| 312 | |||
| 313 | sdhci@2e000 { | ||
| 314 | compatible = "fsl,mpc8379-esdhc"; | ||
| 315 | reg = <0x2e000 0x1000>; | ||
| 316 | interrupts = <42 0x8>; | ||
| 317 | interrupt-parent = <&ipic>; | ||
| 318 | /* Filled in by U-Boot */ | ||
| 319 | clock-frequency = <0>; | ||
| 320 | }; | 343 | }; |
| 321 | 344 | ||
| 322 | sata@18000 { | 345 | sata@18000 { |
| @@ -324,6 +347,7 @@ | |||
| 324 | reg = <0x18000 0x1000>; | 347 | reg = <0x18000 0x1000>; |
| 325 | interrupts = <44 0x8>; | 348 | interrupts = <44 0x8>; |
| 326 | interrupt-parent = <&ipic>; | 349 | interrupt-parent = <&ipic>; |
| 350 | sleep = <&pmc 0x000000c0>; | ||
| 327 | }; | 351 | }; |
| 328 | 352 | ||
| 329 | sata@19000 { | 353 | sata@19000 { |
| @@ -331,6 +355,7 @@ | |||
| 331 | reg = <0x19000 0x1000>; | 355 | reg = <0x19000 0x1000>; |
| 332 | interrupts = <45 0x8>; | 356 | interrupts = <45 0x8>; |
| 333 | interrupt-parent = <&ipic>; | 357 | interrupt-parent = <&ipic>; |
| 358 | sleep = <&pmc 0x00000030>; | ||
| 334 | }; | 359 | }; |
| 335 | 360 | ||
| 336 | sata@1a000 { | 361 | sata@1a000 { |
| @@ -338,6 +363,7 @@ | |||
| 338 | reg = <0x1a000 0x1000>; | 363 | reg = <0x1a000 0x1000>; |
| 339 | interrupts = <46 0x8>; | 364 | interrupts = <46 0x8>; |
| 340 | interrupt-parent = <&ipic>; | 365 | interrupt-parent = <&ipic>; |
| 366 | sleep = <&pmc 0x0000000c>; | ||
| 341 | }; | 367 | }; |
| 342 | 368 | ||
| 343 | sata@1b000 { | 369 | sata@1b000 { |
| @@ -345,6 +371,7 @@ | |||
| 345 | reg = <0x1b000 0x1000>; | 371 | reg = <0x1b000 0x1000>; |
| 346 | interrupts = <47 0x8>; | 372 | interrupts = <47 0x8>; |
| 347 | interrupt-parent = <&ipic>; | 373 | interrupt-parent = <&ipic>; |
| 374 | sleep = <&pmc 0x00000003>; | ||
| 348 | }; | 375 | }; |
| 349 | 376 | ||
| 350 | /* IPIC | 377 | /* IPIC |
| @@ -360,6 +387,13 @@ | |||
| 360 | #interrupt-cells = <2>; | 387 | #interrupt-cells = <2>; |
| 361 | reg = <0x700 0x100>; | 388 | reg = <0x700 0x100>; |
| 362 | }; | 389 | }; |
| 390 | |||
| 391 | pmc: power@b00 { | ||
| 392 | compatible = "fsl,mpc8379-pmc", "fsl,mpc8349-pmc"; | ||
| 393 | reg = <0xb00 0x100 0xa00 0x100>; | ||
| 394 | interrupts = <80 0x8>; | ||
| 395 | interrupt-parent = <&ipic>; | ||
| 396 | }; | ||
| 363 | }; | 397 | }; |
| 364 | 398 | ||
| 365 | pci0: pci@e0008500 { | 399 | pci0: pci@e0008500 { |
| @@ -414,6 +448,7 @@ | |||
| 414 | ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000 | 448 | ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000 |
| 415 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 | 449 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 |
| 416 | 0x01000000 0x0 0x00000000 0xe0300000 0x0 0x00100000>; | 450 | 0x01000000 0x0 0x00000000 0xe0300000 0x0 0x00100000>; |
| 451 | sleep = <&pmc 0x00010000>; | ||
| 417 | clock-frequency = <0>; | 452 | clock-frequency = <0>; |
| 418 | #interrupt-cells = <1>; | 453 | #interrupt-cells = <1>; |
| 419 | #size-cells = <2>; | 454 | #size-cells = <2>; |
diff --git a/arch/powerpc/boot/dts/mpc8379_rdb.dts b/arch/powerpc/boot/dts/mpc8379_rdb.dts index e2f98e6a51a2..98ae95bd18f4 100644 --- a/arch/powerpc/boot/dts/mpc8379_rdb.dts +++ b/arch/powerpc/boot/dts/mpc8379_rdb.dts | |||
| @@ -125,37 +125,54 @@ | |||
| 125 | gpio-controller; | 125 | gpio-controller; |
| 126 | }; | 126 | }; |
| 127 | 127 | ||
| 128 | i2c@3000 { | 128 | sleep-nexus { |
| 129 | #address-cells = <1>; | 129 | #address-cells = <1>; |
| 130 | #size-cells = <0>; | 130 | #size-cells = <1>; |
| 131 | cell-index = <0>; | 131 | compatible = "simple-bus"; |
| 132 | compatible = "fsl-i2c"; | 132 | sleep = <&pmc 0x0c000000>; |
| 133 | reg = <0x3000 0x100>; | 133 | ranges; |
| 134 | interrupts = <14 0x8>; | ||
| 135 | interrupt-parent = <&ipic>; | ||
| 136 | dfsrr; | ||
| 137 | |||
| 138 | dtt@48 { | ||
| 139 | compatible = "national,lm75"; | ||
| 140 | reg = <0x48>; | ||
| 141 | }; | ||
| 142 | |||
| 143 | at24@50 { | ||
| 144 | compatible = "at24,24c256"; | ||
| 145 | reg = <0x50>; | ||
| 146 | }; | ||
| 147 | 134 | ||
| 148 | rtc@68 { | 135 | i2c@3000 { |
| 149 | compatible = "dallas,ds1339"; | 136 | #address-cells = <1>; |
| 150 | reg = <0x68>; | 137 | #size-cells = <0>; |
| 138 | cell-index = <0>; | ||
| 139 | compatible = "fsl-i2c"; | ||
| 140 | reg = <0x3000 0x100>; | ||
| 141 | interrupts = <14 0x8>; | ||
| 142 | interrupt-parent = <&ipic>; | ||
| 143 | dfsrr; | ||
| 144 | |||
| 145 | dtt@48 { | ||
| 146 | compatible = "national,lm75"; | ||
| 147 | reg = <0x48>; | ||
| 148 | }; | ||
| 149 | |||
| 150 | at24@50 { | ||
| 151 | compatible = "at24,24c256"; | ||
| 152 | reg = <0x50>; | ||
| 153 | }; | ||
| 154 | |||
| 155 | rtc@68 { | ||
| 156 | compatible = "dallas,ds1339"; | ||
| 157 | reg = <0x68>; | ||
| 158 | }; | ||
| 159 | |||
| 160 | mcu_pio: mcu@a { | ||
| 161 | #gpio-cells = <2>; | ||
| 162 | compatible = "fsl,mc9s08qg8-mpc8379erdb", | ||
| 163 | "fsl,mcu-mpc8349emitx"; | ||
| 164 | reg = <0x0a>; | ||
| 165 | gpio-controller; | ||
| 166 | }; | ||
| 151 | }; | 167 | }; |
| 152 | 168 | ||
| 153 | mcu_pio: mcu@a { | 169 | sdhci@2e000 { |
| 154 | #gpio-cells = <2>; | 170 | compatible = "fsl,mpc8379-esdhc"; |
| 155 | compatible = "fsl,mc9s08qg8-mpc8379erdb", | 171 | reg = <0x2e000 0x1000>; |
| 156 | "fsl,mcu-mpc8349emitx"; | 172 | interrupts = <42 0x8>; |
| 157 | reg = <0x0a>; | 173 | interrupt-parent = <&ipic>; |
| 158 | gpio-controller; | 174 | /* Filled in by U-Boot */ |
| 175 | clock-frequency = <0>; | ||
| 159 | }; | 176 | }; |
| 160 | }; | 177 | }; |
| 161 | 178 | ||
| @@ -226,63 +243,76 @@ | |||
| 226 | interrupt-parent = <&ipic>; | 243 | interrupt-parent = <&ipic>; |
| 227 | interrupts = <38 0x8>; | 244 | interrupts = <38 0x8>; |
| 228 | phy_type = "ulpi"; | 245 | phy_type = "ulpi"; |
| 229 | }; | 246 | sleep = <&pmc 0x00c00000>; |
| 230 | |||
| 231 | mdio@24520 { | ||
| 232 | #address-cells = <1>; | ||
| 233 | #size-cells = <0>; | ||
| 234 | compatible = "fsl,gianfar-mdio"; | ||
| 235 | reg = <0x24520 0x20>; | ||
| 236 | phy2: ethernet-phy@2 { | ||
| 237 | interrupt-parent = <&ipic>; | ||
| 238 | interrupts = <17 0x8>; | ||
| 239 | reg = <0x2>; | ||
| 240 | device_type = "ethernet-phy"; | ||
| 241 | }; | ||
| 242 | tbi0: tbi-phy@11 { | ||
| 243 | reg = <0x11>; | ||
| 244 | device_type = "tbi-phy"; | ||
| 245 | }; | ||
| 246 | }; | ||
| 247 | |||
| 248 | mdio@25520 { | ||
| 249 | #address-cells = <1>; | ||
| 250 | #size-cells = <0>; | ||
| 251 | compatible = "fsl,gianfar-tbi"; | ||
| 252 | reg = <0x25520 0x20>; | ||
| 253 | |||
| 254 | tbi1: tbi-phy@11 { | ||
| 255 | reg = <0x11>; | ||
| 256 | device_type = "tbi-phy"; | ||
| 257 | }; | ||
| 258 | }; | 247 | }; |
| 259 | 248 | ||
| 260 | enet0: ethernet@24000 { | 249 | enet0: ethernet@24000 { |
| 250 | #address-cells = <1>; | ||
| 251 | #size-cells = <1>; | ||
| 261 | cell-index = <0>; | 252 | cell-index = <0>; |
| 262 | device_type = "network"; | 253 | device_type = "network"; |
| 263 | model = "eTSEC"; | 254 | model = "eTSEC"; |
| 264 | compatible = "gianfar"; | 255 | compatible = "gianfar"; |
| 265 | reg = <0x24000 0x1000>; | 256 | reg = <0x24000 0x1000>; |
| 257 | ranges = <0x0 0x24000 0x1000>; | ||
| 266 | local-mac-address = [ 00 00 00 00 00 00 ]; | 258 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 267 | interrupts = <32 0x8 33 0x8 34 0x8>; | 259 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 268 | phy-connection-type = "mii"; | 260 | phy-connection-type = "mii"; |
| 269 | interrupt-parent = <&ipic>; | 261 | interrupt-parent = <&ipic>; |
| 270 | tbi-handle = <&tbi0>; | 262 | tbi-handle = <&tbi0>; |
| 271 | phy-handle = <&phy2>; | 263 | phy-handle = <&phy2>; |
| 264 | sleep = <&pmc 0xc0000000>; | ||
| 265 | fsl,magic-packet; | ||
| 266 | |||
| 267 | mdio@520 { | ||
| 268 | #address-cells = <1>; | ||
| 269 | #size-cells = <0>; | ||
| 270 | compatible = "fsl,gianfar-mdio"; | ||
| 271 | reg = <0x520 0x20>; | ||
| 272 | |||
| 273 | phy2: ethernet-phy@2 { | ||
| 274 | interrupt-parent = <&ipic>; | ||
| 275 | interrupts = <17 0x8>; | ||
| 276 | reg = <0x2>; | ||
| 277 | device_type = "ethernet-phy"; | ||
| 278 | }; | ||
| 279 | |||
| 280 | tbi0: tbi-phy@11 { | ||
| 281 | reg = <0x11>; | ||
| 282 | device_type = "tbi-phy"; | ||
| 283 | }; | ||
| 284 | }; | ||
| 272 | }; | 285 | }; |
| 273 | 286 | ||
| 274 | enet1: ethernet@25000 { | 287 | enet1: ethernet@25000 { |
| 288 | #address-cells = <1>; | ||
| 289 | #size-cells = <1>; | ||
| 275 | cell-index = <1>; | 290 | cell-index = <1>; |
| 276 | device_type = "network"; | 291 | device_type = "network"; |
| 277 | model = "eTSEC"; | 292 | model = "eTSEC"; |
| 278 | compatible = "gianfar"; | 293 | compatible = "gianfar"; |
| 279 | reg = <0x25000 0x1000>; | 294 | reg = <0x25000 0x1000>; |
| 295 | ranges = <0x0 0x25000 0x1000>; | ||
| 280 | local-mac-address = [ 00 00 00 00 00 00 ]; | 296 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 281 | interrupts = <35 0x8 36 0x8 37 0x8>; | 297 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 282 | phy-connection-type = "mii"; | 298 | phy-connection-type = "mii"; |
| 283 | interrupt-parent = <&ipic>; | 299 | interrupt-parent = <&ipic>; |
| 284 | fixed-link = <1 1 1000 0 0>; | 300 | fixed-link = <1 1 1000 0 0>; |
| 285 | tbi-handle = <&tbi1>; | 301 | tbi-handle = <&tbi1>; |
| 302 | sleep = <&pmc 0x30000000>; | ||
| 303 | fsl,magic-packet; | ||
| 304 | |||
| 305 | mdio@520 { | ||
| 306 | #address-cells = <1>; | ||
| 307 | #size-cells = <0>; | ||
| 308 | compatible = "fsl,gianfar-tbi"; | ||
| 309 | reg = <0x520 0x20>; | ||
| 310 | |||
| 311 | tbi1: tbi-phy@11 { | ||
| 312 | reg = <0x11>; | ||
| 313 | device_type = "tbi-phy"; | ||
| 314 | }; | ||
| 315 | }; | ||
| 286 | }; | 316 | }; |
| 287 | 317 | ||
| 288 | serial0: serial@4500 { | 318 | serial0: serial@4500 { |
| @@ -315,15 +345,7 @@ | |||
| 315 | fsl,channel-fifo-len = <24>; | 345 | fsl,channel-fifo-len = <24>; |
| 316 | fsl,exec-units-mask = <0x9fe>; | 346 | fsl,exec-units-mask = <0x9fe>; |
| 317 | fsl,descriptor-types-mask = <0x3ab0ebf>; | 347 | fsl,descriptor-types-mask = <0x3ab0ebf>; |
| 318 | }; | 348 | sleep = <&pmc 0x03000000>; |
| 319 | |||
| 320 | sdhci@2e000 { | ||
| 321 | compatible = "fsl,mpc8379-esdhc"; | ||
| 322 | reg = <0x2e000 0x1000>; | ||
| 323 | interrupts = <42 0x8>; | ||
| 324 | interrupt-parent = <&ipic>; | ||
| 325 | /* Filled in by U-Boot */ | ||
| 326 | clock-frequency = <0>; | ||
| 327 | }; | 349 | }; |
| 328 | 350 | ||
| 329 | sata@18000 { | 351 | sata@18000 { |
| @@ -331,6 +353,7 @@ | |||
| 331 | reg = <0x18000 0x1000>; | 353 | reg = <0x18000 0x1000>; |
| 332 | interrupts = <44 0x8>; | 354 | interrupts = <44 0x8>; |
| 333 | interrupt-parent = <&ipic>; | 355 | interrupt-parent = <&ipic>; |
| 356 | sleep = <&pmc 0x000000c0>; | ||
| 334 | }; | 357 | }; |
| 335 | 358 | ||
| 336 | sata@19000 { | 359 | sata@19000 { |
| @@ -338,6 +361,7 @@ | |||
| 338 | reg = <0x19000 0x1000>; | 361 | reg = <0x19000 0x1000>; |
| 339 | interrupts = <45 0x8>; | 362 | interrupts = <45 0x8>; |
| 340 | interrupt-parent = <&ipic>; | 363 | interrupt-parent = <&ipic>; |
| 364 | sleep = <&pmc 0x00000030>; | ||
| 341 | }; | 365 | }; |
| 342 | 366 | ||
| 343 | sata@1a000 { | 367 | sata@1a000 { |
| @@ -345,6 +369,7 @@ | |||
| 345 | reg = <0x1a000 0x1000>; | 369 | reg = <0x1a000 0x1000>; |
| 346 | interrupts = <46 0x8>; | 370 | interrupts = <46 0x8>; |
| 347 | interrupt-parent = <&ipic>; | 371 | interrupt-parent = <&ipic>; |
| 372 | sleep = <&pmc 0x0000000c>; | ||
| 348 | }; | 373 | }; |
| 349 | 374 | ||
| 350 | sata@1b000 { | 375 | sata@1b000 { |
| @@ -352,6 +377,7 @@ | |||
| 352 | reg = <0x1b000 0x1000>; | 377 | reg = <0x1b000 0x1000>; |
| 353 | interrupts = <47 0x8>; | 378 | interrupts = <47 0x8>; |
| 354 | interrupt-parent = <&ipic>; | 379 | interrupt-parent = <&ipic>; |
| 380 | sleep = <&pmc 0x00000003>; | ||
| 355 | }; | 381 | }; |
| 356 | 382 | ||
| 357 | /* IPIC | 383 | /* IPIC |
| @@ -367,6 +393,13 @@ | |||
| 367 | #interrupt-cells = <2>; | 393 | #interrupt-cells = <2>; |
| 368 | reg = <0x700 0x100>; | 394 | reg = <0x700 0x100>; |
| 369 | }; | 395 | }; |
| 396 | |||
| 397 | pmc: power@b00 { | ||
| 398 | compatible = "fsl,mpc8379-pmc", "fsl,mpc8349-pmc"; | ||
| 399 | reg = <0xb00 0x100 0xa00 0x100>; | ||
| 400 | interrupts = <80 0x8>; | ||
| 401 | interrupt-parent = <&ipic>; | ||
| 402 | }; | ||
| 370 | }; | 403 | }; |
| 371 | 404 | ||
| 372 | pci0: pci@e0008500 { | 405 | pci0: pci@e0008500 { |
| @@ -392,6 +425,7 @@ | |||
| 392 | ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000 | 425 | ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000 |
| 393 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 | 426 | 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000 |
| 394 | 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>; | 427 | 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>; |
| 428 | sleep = <&pmc 0x00010000>; | ||
| 395 | clock-frequency = <66666666>; | 429 | clock-frequency = <66666666>; |
| 396 | #interrupt-cells = <1>; | 430 | #interrupt-cells = <1>; |
| 397 | #size-cells = <2>; | 431 | #size-cells = <2>; |
diff --git a/arch/powerpc/boot/dts/mpc8536ds.dts b/arch/powerpc/boot/dts/mpc8536ds.dts index 3c905df1812c..b31c5041350b 100644 --- a/arch/powerpc/boot/dts/mpc8536ds.dts +++ b/arch/powerpc/boot/dts/mpc8536ds.dts | |||
| @@ -137,42 +137,6 @@ | |||
| 137 | }; | 137 | }; |
| 138 | }; | 138 | }; |
| 139 | 139 | ||
| 140 | mdio@24520 { | ||
| 141 | #address-cells = <1>; | ||
| 142 | #size-cells = <0>; | ||
| 143 | compatible = "fsl,gianfar-mdio"; | ||
| 144 | reg = <0x24520 0x20>; | ||
| 145 | |||
| 146 | phy0: ethernet-phy@0 { | ||
| 147 | interrupt-parent = <&mpic>; | ||
| 148 | interrupts = <10 0x1>; | ||
| 149 | reg = <0>; | ||
| 150 | device_type = "ethernet-phy"; | ||
| 151 | }; | ||
| 152 | phy1: ethernet-phy@1 { | ||
| 153 | interrupt-parent = <&mpic>; | ||
| 154 | interrupts = <10 0x1>; | ||
| 155 | reg = <1>; | ||
| 156 | device_type = "ethernet-phy"; | ||
| 157 | }; | ||
| 158 | tbi0: tbi-phy@11 { | ||
| 159 | reg = <0x11>; | ||
| 160 | device_type = "tbi-phy"; | ||
| 161 | }; | ||
| 162 | }; | ||
| 163 | |||
| 164 | mdio@26520 { | ||
| 165 | #address-cells = <1>; | ||
| 166 | #size-cells = <0>; | ||
| 167 | compatible = "fsl,gianfar-tbi"; | ||
| 168 | reg = <0x26520 0x20>; | ||
| 169 | |||
| 170 | tbi1: tbi-phy@11 { | ||
| 171 | reg = <0x11>; | ||
| 172 | device_type = "tbi-phy"; | ||
| 173 | }; | ||
| 174 | }; | ||
| 175 | |||
| 176 | usb@22000 { | 140 | usb@22000 { |
| 177 | compatible = "fsl,mpc8536-usb2-mph", "fsl-usb2-mph"; | 141 | compatible = "fsl,mpc8536-usb2-mph", "fsl-usb2-mph"; |
| 178 | reg = <0x22000 0x1000>; | 142 | reg = <0x22000 0x1000>; |
| @@ -194,31 +158,73 @@ | |||
| 194 | }; | 158 | }; |
| 195 | 159 | ||
| 196 | enet0: ethernet@24000 { | 160 | enet0: ethernet@24000 { |
| 161 | #address-cells = <1>; | ||
| 162 | #size-cells = <1>; | ||
| 197 | cell-index = <0>; | 163 | cell-index = <0>; |
| 198 | device_type = "network"; | 164 | device_type = "network"; |
| 199 | model = "eTSEC"; | 165 | model = "eTSEC"; |
| 200 | compatible = "gianfar"; | 166 | compatible = "gianfar"; |
| 201 | reg = <0x24000 0x1000>; | 167 | reg = <0x24000 0x1000>; |
| 168 | ranges = <0x0 0x24000 0x1000>; | ||
| 202 | local-mac-address = [ 00 00 00 00 00 00 ]; | 169 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 203 | interrupts = <29 2 30 2 34 2>; | 170 | interrupts = <29 2 30 2 34 2>; |
| 204 | interrupt-parent = <&mpic>; | 171 | interrupt-parent = <&mpic>; |
| 205 | tbi-handle = <&tbi0>; | 172 | tbi-handle = <&tbi0>; |
| 206 | phy-handle = <&phy1>; | 173 | phy-handle = <&phy1>; |
| 207 | phy-connection-type = "rgmii-id"; | 174 | phy-connection-type = "rgmii-id"; |
| 175 | |||
| 176 | mdio@520 { | ||
| 177 | #address-cells = <1>; | ||
| 178 | #size-cells = <0>; | ||
| 179 | compatible = "fsl,gianfar-mdio"; | ||
| 180 | reg = <0x520 0x20>; | ||
| 181 | |||
| 182 | phy0: ethernet-phy@0 { | ||
| 183 | interrupt-parent = <&mpic>; | ||
| 184 | interrupts = <10 0x1>; | ||
| 185 | reg = <0>; | ||
| 186 | device_type = "ethernet-phy"; | ||
| 187 | }; | ||
| 188 | phy1: ethernet-phy@1 { | ||
| 189 | interrupt-parent = <&mpic>; | ||
| 190 | interrupts = <10 0x1>; | ||
| 191 | reg = <1>; | ||
| 192 | device_type = "ethernet-phy"; | ||
| 193 | }; | ||
| 194 | tbi0: tbi-phy@11 { | ||
| 195 | reg = <0x11>; | ||
| 196 | device_type = "tbi-phy"; | ||
| 197 | }; | ||
| 198 | }; | ||
| 208 | }; | 199 | }; |
| 209 | 200 | ||
| 210 | enet1: ethernet@26000 { | 201 | enet1: ethernet@26000 { |
| 202 | #address-cells = <1>; | ||
| 203 | #size-cells = <1>; | ||
| 211 | cell-index = <1>; | 204 | cell-index = <1>; |
| 212 | device_type = "network"; | 205 | device_type = "network"; |
| 213 | model = "eTSEC"; | 206 | model = "eTSEC"; |
| 214 | compatible = "gianfar"; | 207 | compatible = "gianfar"; |
| 215 | reg = <0x26000 0x1000>; | 208 | reg = <0x26000 0x1000>; |
| 209 | ranges = <0x0 0x26000 0x1000>; | ||
| 216 | local-mac-address = [ 00 00 00 00 00 00 ]; | 210 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 217 | interrupts = <31 2 32 2 33 2>; | 211 | interrupts = <31 2 32 2 33 2>; |
| 218 | interrupt-parent = <&mpic>; | 212 | interrupt-parent = <&mpic>; |
| 219 | tbi-handle = <&tbi1>; | 213 | tbi-handle = <&tbi1>; |
| 220 | phy-handle = <&phy0>; | 214 | phy-handle = <&phy0>; |
| 221 | phy-connection-type = "rgmii-id"; | 215 | phy-connection-type = "rgmii-id"; |
| 216 | |||
| 217 | mdio@520 { | ||
| 218 | #address-cells = <1>; | ||
| 219 | #size-cells = <0>; | ||
| 220 | compatible = "fsl,gianfar-tbi"; | ||
| 221 | reg = <0x520 0x20>; | ||
| 222 | |||
| 223 | tbi1: tbi-phy@11 { | ||
| 224 | reg = <0x11>; | ||
| 225 | device_type = "tbi-phy"; | ||
| 226 | }; | ||
| 227 | }; | ||
| 222 | }; | 228 | }; |
| 223 | 229 | ||
| 224 | usb@2b000 { | 230 | usb@2b000 { |
diff --git a/arch/powerpc/boot/dts/mpc8540ads.dts b/arch/powerpc/boot/dts/mpc8540ads.dts index 79570ffe41b9..ddd67be10b03 100644 --- a/arch/powerpc/boot/dts/mpc8540ads.dts +++ b/arch/powerpc/boot/dts/mpc8540ads.dts | |||
| @@ -126,97 +126,106 @@ | |||
| 126 | }; | 126 | }; |
| 127 | }; | 127 | }; |
| 128 | 128 | ||
| 129 | mdio@24520 { | ||
| 130 | #address-cells = <1>; | ||
| 131 | #size-cells = <0>; | ||
| 132 | compatible = "fsl,gianfar-mdio"; | ||
| 133 | reg = <0x24520 0x20>; | ||
| 134 | |||
| 135 | phy0: ethernet-phy@0 { | ||
| 136 | interrupt-parent = <&mpic>; | ||
| 137 | interrupts = <5 1>; | ||
| 138 | reg = <0x0>; | ||
| 139 | device_type = "ethernet-phy"; | ||
| 140 | }; | ||
| 141 | phy1: ethernet-phy@1 { | ||
| 142 | interrupt-parent = <&mpic>; | ||
| 143 | interrupts = <5 1>; | ||
| 144 | reg = <0x1>; | ||
| 145 | device_type = "ethernet-phy"; | ||
| 146 | }; | ||
| 147 | phy3: ethernet-phy@3 { | ||
| 148 | interrupt-parent = <&mpic>; | ||
| 149 | interrupts = <7 1>; | ||
| 150 | reg = <0x3>; | ||
| 151 | device_type = "ethernet-phy"; | ||
| 152 | }; | ||
| 153 | tbi0: tbi-phy@11 { | ||
| 154 | reg = <0x11>; | ||
| 155 | device_type = "tbi-phy"; | ||
| 156 | }; | ||
| 157 | }; | ||
| 158 | |||
| 159 | mdio@25520 { | ||
| 160 | #address-cells = <1>; | ||
| 161 | #size-cells = <0>; | ||
| 162 | compatible = "fsl,gianfar-tbi"; | ||
| 163 | reg = <0x25520 0x20>; | ||
| 164 | |||
| 165 | tbi1: tbi-phy@11 { | ||
| 166 | reg = <0x11>; | ||
| 167 | device_type = "tbi-phy"; | ||
| 168 | }; | ||
| 169 | }; | ||
| 170 | |||
| 171 | mdio@26520 { | ||
| 172 | #address-cells = <1>; | ||
| 173 | #size-cells = <0>; | ||
| 174 | compatible = "fsl,gianfar-tbi"; | ||
| 175 | reg = <0x26520 0x20>; | ||
| 176 | |||
| 177 | tbi2: tbi-phy@11 { | ||
| 178 | reg = <0x11>; | ||
| 179 | device_type = "tbi-phy"; | ||
| 180 | }; | ||
| 181 | }; | ||
| 182 | |||
| 183 | enet0: ethernet@24000 { | 129 | enet0: ethernet@24000 { |
| 130 | #address-cells = <1>; | ||
| 131 | #size-cells = <1>; | ||
| 184 | cell-index = <0>; | 132 | cell-index = <0>; |
| 185 | device_type = "network"; | 133 | device_type = "network"; |
| 186 | model = "TSEC"; | 134 | model = "TSEC"; |
| 187 | compatible = "gianfar"; | 135 | compatible = "gianfar"; |
| 188 | reg = <0x24000 0x1000>; | 136 | reg = <0x24000 0x1000>; |
| 137 | ranges = <0x0 0x24000 0x1000>; | ||
| 189 | local-mac-address = [ 00 00 00 00 00 00 ]; | 138 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 190 | interrupts = <29 2 30 2 34 2>; | 139 | interrupts = <29 2 30 2 34 2>; |
| 191 | interrupt-parent = <&mpic>; | 140 | interrupt-parent = <&mpic>; |
| 192 | tbi-handle = <&tbi0>; | 141 | tbi-handle = <&tbi0>; |
| 193 | phy-handle = <&phy0>; | 142 | phy-handle = <&phy0>; |
| 143 | |||
| 144 | mdio@520 { | ||
| 145 | #address-cells = <1>; | ||
| 146 | #size-cells = <0>; | ||
| 147 | compatible = "fsl,gianfar-mdio"; | ||
| 148 | reg = <0x520 0x20>; | ||
| 149 | |||
| 150 | phy0: ethernet-phy@0 { | ||
| 151 | interrupt-parent = <&mpic>; | ||
| 152 | interrupts = <5 1>; | ||
| 153 | reg = <0x0>; | ||
| 154 | device_type = "ethernet-phy"; | ||
| 155 | }; | ||
| 156 | phy1: ethernet-phy@1 { | ||
| 157 | interrupt-parent = <&mpic>; | ||
| 158 | interrupts = <5 1>; | ||
| 159 | reg = <0x1>; | ||
| 160 | device_type = "ethernet-phy"; | ||
| 161 | }; | ||
| 162 | phy3: ethernet-phy@3 { | ||
| 163 | interrupt-parent = <&mpic>; | ||
| 164 | interrupts = <7 1>; | ||
| 165 | reg = <0x3>; | ||
| 166 | device_type = "ethernet-phy"; | ||
| 167 | }; | ||
| 168 | tbi0: tbi-phy@11 { | ||
| 169 | reg = <0x11>; | ||
| 170 | device_type = "tbi-phy"; | ||
| 171 | }; | ||
| 172 | }; | ||
| 194 | }; | 173 | }; |
| 195 | 174 | ||
| 196 | enet1: ethernet@25000 { | 175 | enet1: ethernet@25000 { |
| 176 | #address-cells = <1>; | ||
| 177 | #size-cells = <1>; | ||
| 197 | cell-index = <1>; | 178 | cell-index = <1>; |
| 198 | device_type = "network"; | 179 | device_type = "network"; |
| 199 | model = "TSEC"; | 180 | model = "TSEC"; |
| 200 | compatible = "gianfar"; | 181 | compatible = "gianfar"; |
| 201 | reg = <0x25000 0x1000>; | 182 | reg = <0x25000 0x1000>; |
| 183 | ranges = <0x0 0x25000 0x1000>; | ||
| 202 | local-mac-address = [ 00 00 00 00 00 00 ]; | 184 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 203 | interrupts = <35 2 36 2 40 2>; | 185 | interrupts = <35 2 36 2 40 2>; |
| 204 | interrupt-parent = <&mpic>; | 186 | interrupt-parent = <&mpic>; |
| 205 | tbi-handle = <&tbi1>; | 187 | tbi-handle = <&tbi1>; |
| 206 | phy-handle = <&phy1>; | 188 | phy-handle = <&phy1>; |
| 189 | |||
| 190 | mdio@520 { | ||
| 191 | #address-cells = <1>; | ||
| 192 | #size-cells = <0>; | ||
| 193 | compatible = "fsl,gianfar-tbi"; | ||
| 194 | reg = <0x520 0x20>; | ||
| 195 | |||
| 196 | tbi1: tbi-phy@11 { | ||
| 197 | reg = <0x11>; | ||
| 198 | device_type = "tbi-phy"; | ||
| 199 | }; | ||
| 200 | }; | ||
| 207 | }; | 201 | }; |
| 208 | 202 | ||
| 209 | enet2: ethernet@26000 { | 203 | enet2: ethernet@26000 { |
| 204 | #address-cells = <1>; | ||
| 205 | #size-cells = <1>; | ||
| 210 | cell-index = <2>; | 206 | cell-index = <2>; |
| 211 | device_type = "network"; | 207 | device_type = "network"; |
| 212 | model = "FEC"; | 208 | model = "FEC"; |
| 213 | compatible = "gianfar"; | 209 | compatible = "gianfar"; |
| 214 | reg = <0x26000 0x1000>; | 210 | reg = <0x26000 0x1000>; |
| 211 | ranges = <0x0 0x26000 0x1000>; | ||
| 215 | local-mac-address = [ 00 00 00 00 00 00 ]; | 212 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 216 | interrupts = <41 2>; | 213 | interrupts = <41 2>; |
| 217 | interrupt-parent = <&mpic>; | 214 | interrupt-parent = <&mpic>; |
| 218 | tbi-handle = <&tbi2>; | 215 | tbi-handle = <&tbi2>; |
| 219 | phy-handle = <&phy3>; | 216 | phy-handle = <&phy3>; |
| 217 | |||
| 218 | mdio@520 { | ||
| 219 | #address-cells = <1>; | ||
| 220 | #size-cells = <0>; | ||
| 221 | compatible = "fsl,gianfar-tbi"; | ||
| 222 | reg = <0x520 0x20>; | ||
| 223 | |||
| 224 | tbi2: tbi-phy@11 { | ||
| 225 | reg = <0x11>; | ||
| 226 | device_type = "tbi-phy"; | ||
| 227 | }; | ||
| 228 | }; | ||
| 220 | }; | 229 | }; |
| 221 | 230 | ||
| 222 | serial0: serial@4500 { | 231 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8541cds.dts b/arch/powerpc/boot/dts/mpc8541cds.dts index 221036a8ce23..e45097f44fbd 100644 --- a/arch/powerpc/boot/dts/mpc8541cds.dts +++ b/arch/powerpc/boot/dts/mpc8541cds.dts | |||
| @@ -126,66 +126,72 @@ | |||
| 126 | }; | 126 | }; |
| 127 | }; | 127 | }; |
| 128 | 128 | ||
| 129 | mdio@24520 { | ||
| 130 | #address-cells = <1>; | ||
| 131 | #size-cells = <0>; | ||
| 132 | compatible = "fsl,gianfar-mdio"; | ||
| 133 | reg = <0x24520 0x20>; | ||
| 134 | |||
| 135 | phy0: ethernet-phy@0 { | ||
| 136 | interrupt-parent = <&mpic>; | ||
| 137 | interrupts = <5 1>; | ||
| 138 | reg = <0x0>; | ||
| 139 | device_type = "ethernet-phy"; | ||
| 140 | }; | ||
| 141 | phy1: ethernet-phy@1 { | ||
| 142 | interrupt-parent = <&mpic>; | ||
| 143 | interrupts = <5 1>; | ||
| 144 | reg = <0x1>; | ||
| 145 | device_type = "ethernet-phy"; | ||
| 146 | }; | ||
| 147 | tbi0: tbi-phy@11 { | ||
| 148 | reg = <0x11>; | ||
| 149 | device_type = "tbi-phy"; | ||
| 150 | }; | ||
| 151 | }; | ||
| 152 | |||
| 153 | mdio@25520 { | ||
| 154 | #address-cells = <1>; | ||
| 155 | #size-cells = <0>; | ||
| 156 | compatible = "fsl,gianfar-tbi"; | ||
| 157 | reg = <0x25520 0x20>; | ||
| 158 | |||
| 159 | tbi1: tbi-phy@11 { | ||
| 160 | reg = <0x11>; | ||
| 161 | device_type = "tbi-phy"; | ||
| 162 | }; | ||
| 163 | }; | ||
| 164 | |||
| 165 | enet0: ethernet@24000 { | 129 | enet0: ethernet@24000 { |
| 130 | #address-cells = <1>; | ||
| 131 | #size-cells = <1>; | ||
| 166 | cell-index = <0>; | 132 | cell-index = <0>; |
| 167 | device_type = "network"; | 133 | device_type = "network"; |
| 168 | model = "TSEC"; | 134 | model = "TSEC"; |
| 169 | compatible = "gianfar"; | 135 | compatible = "gianfar"; |
| 170 | reg = <0x24000 0x1000>; | 136 | reg = <0x24000 0x1000>; |
| 137 | ranges = <0x0 0x24000 0x1000>; | ||
| 171 | local-mac-address = [ 00 00 00 00 00 00 ]; | 138 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 172 | interrupts = <29 2 30 2 34 2>; | 139 | interrupts = <29 2 30 2 34 2>; |
| 173 | interrupt-parent = <&mpic>; | 140 | interrupt-parent = <&mpic>; |
| 174 | tbi-handle = <&tbi0>; | 141 | tbi-handle = <&tbi0>; |
| 175 | phy-handle = <&phy0>; | 142 | phy-handle = <&phy0>; |
| 143 | |||
| 144 | mdio@520 { | ||
| 145 | #address-cells = <1>; | ||
| 146 | #size-cells = <0>; | ||
| 147 | compatible = "fsl,gianfar-mdio"; | ||
| 148 | reg = <0x520 0x20>; | ||
| 149 | |||
| 150 | phy0: ethernet-phy@0 { | ||
| 151 | interrupt-parent = <&mpic>; | ||
| 152 | interrupts = <5 1>; | ||
| 153 | reg = <0x0>; | ||
| 154 | device_type = "ethernet-phy"; | ||
| 155 | }; | ||
| 156 | phy1: ethernet-phy@1 { | ||
| 157 | interrupt-parent = <&mpic>; | ||
| 158 | interrupts = <5 1>; | ||
| 159 | reg = <0x1>; | ||
| 160 | device_type = "ethernet-phy"; | ||
| 161 | }; | ||
| 162 | tbi0: tbi-phy@11 { | ||
| 163 | reg = <0x11>; | ||
| 164 | device_type = "tbi-phy"; | ||
| 165 | }; | ||
| 166 | }; | ||
| 176 | }; | 167 | }; |
| 177 | 168 | ||
| 178 | enet1: ethernet@25000 { | 169 | enet1: ethernet@25000 { |
| 170 | #address-cells = <1>; | ||
| 171 | #size-cells = <1>; | ||
| 179 | cell-index = <1>; | 172 | cell-index = <1>; |
| 180 | device_type = "network"; | 173 | device_type = "network"; |
| 181 | model = "TSEC"; | 174 | model = "TSEC"; |
| 182 | compatible = "gianfar"; | 175 | compatible = "gianfar"; |
| 183 | reg = <0x25000 0x1000>; | 176 | reg = <0x25000 0x1000>; |
| 177 | ranges = <0x0 0x25000 0x1000>; | ||
| 184 | local-mac-address = [ 00 00 00 00 00 00 ]; | 178 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 185 | interrupts = <35 2 36 2 40 2>; | 179 | interrupts = <35 2 36 2 40 2>; |
| 186 | interrupt-parent = <&mpic>; | 180 | interrupt-parent = <&mpic>; |
| 187 | tbi-handle = <&tbi1>; | 181 | tbi-handle = <&tbi1>; |
| 188 | phy-handle = <&phy1>; | 182 | phy-handle = <&phy1>; |
| 183 | |||
| 184 | mdio@520 { | ||
| 185 | #address-cells = <1>; | ||
| 186 | #size-cells = <0>; | ||
| 187 | compatible = "fsl,gianfar-tbi"; | ||
| 188 | reg = <0x520 0x20>; | ||
| 189 | |||
| 190 | tbi1: tbi-phy@11 { | ||
| 191 | reg = <0x11>; | ||
| 192 | device_type = "tbi-phy"; | ||
| 193 | }; | ||
| 194 | }; | ||
| 189 | }; | 195 | }; |
| 190 | 196 | ||
| 191 | serial0: serial@4500 { | 197 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8544ds.dts b/arch/powerpc/boot/dts/mpc8544ds.dts index 0668d1048779..7c6932be0197 100644 --- a/arch/powerpc/boot/dts/mpc8544ds.dts +++ b/arch/powerpc/boot/dts/mpc8544ds.dts | |||
| @@ -98,44 +98,6 @@ | |||
| 98 | dfsrr; | 98 | dfsrr; |
| 99 | }; | 99 | }; |
| 100 | 100 | ||
| 101 | mdio@24520 { | ||
| 102 | #address-cells = <1>; | ||
| 103 | #size-cells = <0>; | ||
| 104 | compatible = "fsl,gianfar-mdio"; | ||
| 105 | reg = <0x24520 0x20>; | ||
| 106 | |||
| 107 | phy0: ethernet-phy@0 { | ||
| 108 | interrupt-parent = <&mpic>; | ||
| 109 | interrupts = <10 1>; | ||
| 110 | reg = <0x0>; | ||
| 111 | device_type = "ethernet-phy"; | ||
| 112 | }; | ||
| 113 | phy1: ethernet-phy@1 { | ||
| 114 | interrupt-parent = <&mpic>; | ||
| 115 | interrupts = <10 1>; | ||
| 116 | reg = <0x1>; | ||
| 117 | device_type = "ethernet-phy"; | ||
| 118 | }; | ||
| 119 | |||
| 120 | tbi0: tbi-phy@11 { | ||
| 121 | reg = <0x11>; | ||
| 122 | device_type = "tbi-phy"; | ||
| 123 | }; | ||
| 124 | }; | ||
| 125 | |||
| 126 | mdio@26520 { | ||
| 127 | #address-cells = <1>; | ||
| 128 | #size-cells = <0>; | ||
| 129 | compatible = "fsl,gianfar-tbi"; | ||
| 130 | reg = <0x26520 0x20>; | ||
| 131 | |||
| 132 | tbi1: tbi-phy@11 { | ||
| 133 | reg = <0x11>; | ||
| 134 | device_type = "tbi-phy"; | ||
| 135 | }; | ||
| 136 | }; | ||
| 137 | |||
| 138 | |||
| 139 | dma@21300 { | 101 | dma@21300 { |
| 140 | #address-cells = <1>; | 102 | #address-cells = <1>; |
| 141 | #size-cells = <1>; | 103 | #size-cells = <1>; |
| @@ -178,31 +140,74 @@ | |||
| 178 | }; | 140 | }; |
| 179 | 141 | ||
| 180 | enet0: ethernet@24000 { | 142 | enet0: ethernet@24000 { |
| 143 | #address-cells = <1>; | ||
| 144 | #size-cells = <1>; | ||
| 181 | cell-index = <0>; | 145 | cell-index = <0>; |
| 182 | device_type = "network"; | 146 | device_type = "network"; |
| 183 | model = "TSEC"; | 147 | model = "TSEC"; |
| 184 | compatible = "gianfar"; | 148 | compatible = "gianfar"; |
| 185 | reg = <0x24000 0x1000>; | 149 | reg = <0x24000 0x1000>; |
| 150 | ranges = <0x0 0x24000 0x1000>; | ||
| 186 | local-mac-address = [ 00 00 00 00 00 00 ]; | 151 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 187 | interrupts = <29 2 30 2 34 2>; | 152 | interrupts = <29 2 30 2 34 2>; |
| 188 | interrupt-parent = <&mpic>; | 153 | interrupt-parent = <&mpic>; |
| 189 | phy-handle = <&phy0>; | 154 | phy-handle = <&phy0>; |
| 190 | tbi-handle = <&tbi0>; | 155 | tbi-handle = <&tbi0>; |
| 191 | phy-connection-type = "rgmii-id"; | 156 | phy-connection-type = "rgmii-id"; |
| 157 | |||
| 158 | mdio@520 { | ||
| 159 | #address-cells = <1>; | ||
| 160 | #size-cells = <0>; | ||
| 161 | compatible = "fsl,gianfar-mdio"; | ||
| 162 | reg = <0x520 0x20>; | ||
| 163 | |||
| 164 | phy0: ethernet-phy@0 { | ||
| 165 | interrupt-parent = <&mpic>; | ||
| 166 | interrupts = <10 1>; | ||
| 167 | reg = <0x0>; | ||
| 168 | device_type = "ethernet-phy"; | ||
| 169 | }; | ||
| 170 | phy1: ethernet-phy@1 { | ||
| 171 | interrupt-parent = <&mpic>; | ||
| 172 | interrupts = <10 1>; | ||
| 173 | reg = <0x1>; | ||
| 174 | device_type = "ethernet-phy"; | ||
| 175 | }; | ||
| 176 | |||
| 177 | tbi0: tbi-phy@11 { | ||
| 178 | reg = <0x11>; | ||
| 179 | device_type = "tbi-phy"; | ||
| 180 | }; | ||
| 181 | }; | ||
| 192 | }; | 182 | }; |
| 193 | 183 | ||
| 194 | enet1: ethernet@26000 { | 184 | enet1: ethernet@26000 { |
| 185 | #address-cells = <1>; | ||
| 186 | #size-cells = <1>; | ||
| 195 | cell-index = <1>; | 187 | cell-index = <1>; |
| 196 | device_type = "network"; | 188 | device_type = "network"; |
| 197 | model = "TSEC"; | 189 | model = "TSEC"; |
| 198 | compatible = "gianfar"; | 190 | compatible = "gianfar"; |
| 199 | reg = <0x26000 0x1000>; | 191 | reg = <0x26000 0x1000>; |
| 192 | ranges = <0x0 0x26000 0x1000>; | ||
| 200 | local-mac-address = [ 00 00 00 00 00 00 ]; | 193 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 201 | interrupts = <31 2 32 2 33 2>; | 194 | interrupts = <31 2 32 2 33 2>; |
| 202 | interrupt-parent = <&mpic>; | 195 | interrupt-parent = <&mpic>; |
| 203 | phy-handle = <&phy1>; | 196 | phy-handle = <&phy1>; |
| 204 | tbi-handle = <&tbi1>; | 197 | tbi-handle = <&tbi1>; |
| 205 | phy-connection-type = "rgmii-id"; | 198 | phy-connection-type = "rgmii-id"; |
| 199 | |||
| 200 | mdio@520 { | ||
| 201 | #address-cells = <1>; | ||
| 202 | #size-cells = <0>; | ||
| 203 | compatible = "fsl,gianfar-tbi"; | ||
| 204 | reg = <0x520 0x20>; | ||
| 205 | |||
| 206 | tbi1: tbi-phy@11 { | ||
| 207 | reg = <0x11>; | ||
| 208 | device_type = "tbi-phy"; | ||
| 209 | }; | ||
| 210 | }; | ||
| 206 | }; | 211 | }; |
| 207 | 212 | ||
| 208 | serial0: serial@4500 { | 213 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8548cds.dts b/arch/powerpc/boot/dts/mpc8548cds.dts index df774a7088ff..804e90353293 100644 --- a/arch/powerpc/boot/dts/mpc8548cds.dts +++ b/arch/powerpc/boot/dts/mpc8548cds.dts | |||
| @@ -142,129 +142,141 @@ | |||
| 142 | }; | 142 | }; |
| 143 | }; | 143 | }; |
| 144 | 144 | ||
| 145 | mdio@24520 { | ||
| 146 | #address-cells = <1>; | ||
| 147 | #size-cells = <0>; | ||
| 148 | compatible = "fsl,gianfar-mdio"; | ||
| 149 | reg = <0x24520 0x20>; | ||
| 150 | |||
| 151 | phy0: ethernet-phy@0 { | ||
| 152 | interrupt-parent = <&mpic>; | ||
| 153 | interrupts = <5 1>; | ||
| 154 | reg = <0x0>; | ||
| 155 | device_type = "ethernet-phy"; | ||
| 156 | }; | ||
| 157 | phy1: ethernet-phy@1 { | ||
| 158 | interrupt-parent = <&mpic>; | ||
| 159 | interrupts = <5 1>; | ||
| 160 | reg = <0x1>; | ||
| 161 | device_type = "ethernet-phy"; | ||
| 162 | }; | ||
| 163 | phy2: ethernet-phy@2 { | ||
| 164 | interrupt-parent = <&mpic>; | ||
| 165 | interrupts = <5 1>; | ||
| 166 | reg = <0x2>; | ||
| 167 | device_type = "ethernet-phy"; | ||
| 168 | }; | ||
| 169 | phy3: ethernet-phy@3 { | ||
| 170 | interrupt-parent = <&mpic>; | ||
| 171 | interrupts = <5 1>; | ||
| 172 | reg = <0x3>; | ||
| 173 | device_type = "ethernet-phy"; | ||
| 174 | }; | ||
| 175 | tbi0: tbi-phy@11 { | ||
| 176 | reg = <0x11>; | ||
| 177 | device_type = "tbi-phy"; | ||
| 178 | }; | ||
| 179 | }; | ||
| 180 | |||
| 181 | mdio@25520 { | ||
| 182 | #address-cells = <1>; | ||
| 183 | #size-cells = <0>; | ||
| 184 | compatible = "fsl,gianfar-tbi"; | ||
| 185 | reg = <0x25520 0x20>; | ||
| 186 | |||
| 187 | tbi1: tbi-phy@11 { | ||
| 188 | reg = <0x11>; | ||
| 189 | device_type = "tbi-phy"; | ||
| 190 | }; | ||
| 191 | }; | ||
| 192 | |||
| 193 | mdio@26520 { | ||
| 194 | #address-cells = <1>; | ||
| 195 | #size-cells = <0>; | ||
| 196 | compatible = "fsl,gianfar-tbi"; | ||
| 197 | reg = <0x26520 0x20>; | ||
| 198 | |||
| 199 | tbi2: tbi-phy@11 { | ||
| 200 | reg = <0x11>; | ||
| 201 | device_type = "tbi-phy"; | ||
| 202 | }; | ||
| 203 | }; | ||
| 204 | |||
| 205 | mdio@27520 { | ||
| 206 | #address-cells = <1>; | ||
| 207 | #size-cells = <0>; | ||
| 208 | compatible = "fsl,gianfar-tbi"; | ||
| 209 | reg = <0x27520 0x20>; | ||
| 210 | |||
| 211 | tbi3: tbi-phy@11 { | ||
| 212 | reg = <0x11>; | ||
| 213 | device_type = "tbi-phy"; | ||
| 214 | }; | ||
| 215 | }; | ||
| 216 | |||
| 217 | enet0: ethernet@24000 { | 145 | enet0: ethernet@24000 { |
| 146 | #address-cells = <1>; | ||
| 147 | #size-cells = <1>; | ||
| 218 | cell-index = <0>; | 148 | cell-index = <0>; |
| 219 | device_type = "network"; | 149 | device_type = "network"; |
| 220 | model = "eTSEC"; | 150 | model = "eTSEC"; |
| 221 | compatible = "gianfar"; | 151 | compatible = "gianfar"; |
| 222 | reg = <0x24000 0x1000>; | 152 | reg = <0x24000 0x1000>; |
| 153 | ranges = <0x0 0x24000 0x1000>; | ||
| 223 | local-mac-address = [ 00 00 00 00 00 00 ]; | 154 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 224 | interrupts = <29 2 30 2 34 2>; | 155 | interrupts = <29 2 30 2 34 2>; |
| 225 | interrupt-parent = <&mpic>; | 156 | interrupt-parent = <&mpic>; |
| 226 | tbi-handle = <&tbi0>; | 157 | tbi-handle = <&tbi0>; |
| 227 | phy-handle = <&phy0>; | 158 | phy-handle = <&phy0>; |
| 159 | |||
| 160 | mdio@520 { | ||
| 161 | #address-cells = <1>; | ||
| 162 | #size-cells = <0>; | ||
| 163 | compatible = "fsl,gianfar-mdio"; | ||
| 164 | reg = <0x520 0x20>; | ||
| 165 | |||
| 166 | phy0: ethernet-phy@0 { | ||
| 167 | interrupt-parent = <&mpic>; | ||
| 168 | interrupts = <5 1>; | ||
| 169 | reg = <0x0>; | ||
| 170 | device_type = "ethernet-phy"; | ||
| 171 | }; | ||
| 172 | phy1: ethernet-phy@1 { | ||
| 173 | interrupt-parent = <&mpic>; | ||
| 174 | interrupts = <5 1>; | ||
| 175 | reg = <0x1>; | ||
| 176 | device_type = "ethernet-phy"; | ||
| 177 | }; | ||
| 178 | phy2: ethernet-phy@2 { | ||
| 179 | interrupt-parent = <&mpic>; | ||
| 180 | interrupts = <5 1>; | ||
| 181 | reg = <0x2>; | ||
| 182 | device_type = "ethernet-phy"; | ||
| 183 | }; | ||
| 184 | phy3: ethernet-phy@3 { | ||
| 185 | interrupt-parent = <&mpic>; | ||
| 186 | interrupts = <5 1>; | ||
| 187 | reg = <0x3>; | ||
| 188 | device_type = "ethernet-phy"; | ||
| 189 | }; | ||
| 190 | tbi0: tbi-phy@11 { | ||
| 191 | reg = <0x11>; | ||
| 192 | device_type = "tbi-phy"; | ||
| 193 | }; | ||
| 194 | }; | ||
| 228 | }; | 195 | }; |
| 229 | 196 | ||
| 230 | enet1: ethernet@25000 { | 197 | enet1: ethernet@25000 { |
| 198 | #address-cells = <1>; | ||
| 199 | #size-cells = <1>; | ||
| 231 | cell-index = <1>; | 200 | cell-index = <1>; |
| 232 | device_type = "network"; | 201 | device_type = "network"; |
| 233 | model = "eTSEC"; | 202 | model = "eTSEC"; |
| 234 | compatible = "gianfar"; | 203 | compatible = "gianfar"; |
| 235 | reg = <0x25000 0x1000>; | 204 | reg = <0x25000 0x1000>; |
| 205 | ranges = <0x0 0x25000 0x1000>; | ||
| 236 | local-mac-address = [ 00 00 00 00 00 00 ]; | 206 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 237 | interrupts = <35 2 36 2 40 2>; | 207 | interrupts = <35 2 36 2 40 2>; |
| 238 | interrupt-parent = <&mpic>; | 208 | interrupt-parent = <&mpic>; |
| 239 | tbi-handle = <&tbi1>; | 209 | tbi-handle = <&tbi1>; |
| 240 | phy-handle = <&phy1>; | 210 | phy-handle = <&phy1>; |
| 211 | |||
| 212 | mdio@520 { | ||
| 213 | #address-cells = <1>; | ||
| 214 | #size-cells = <0>; | ||
| 215 | compatible = "fsl,gianfar-tbi"; | ||
| 216 | reg = <0x520 0x20>; | ||
| 217 | |||
| 218 | tbi1: tbi-phy@11 { | ||
| 219 | reg = <0x11>; | ||
| 220 | device_type = "tbi-phy"; | ||
| 221 | }; | ||
| 222 | }; | ||
| 241 | }; | 223 | }; |
| 242 | 224 | ||
| 243 | /* eTSEC 3/4 are currently broken | 225 | /* eTSEC 3/4 are currently broken |
| 244 | enet2: ethernet@26000 { | 226 | enet2: ethernet@26000 { |
| 227 | #address-cells = <1>; | ||
| 228 | #size-cells = <1>; | ||
| 245 | cell-index = <2>; | 229 | cell-index = <2>; |
| 246 | device_type = "network"; | 230 | device_type = "network"; |
| 247 | model = "eTSEC"; | 231 | model = "eTSEC"; |
| 248 | compatible = "gianfar"; | 232 | compatible = "gianfar"; |
| 249 | reg = <0x26000 0x1000>; | 233 | reg = <0x26000 0x1000>; |
| 234 | ranges = <0x0 0x26000 0x1000>; | ||
| 250 | local-mac-address = [ 00 00 00 00 00 00 ]; | 235 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 251 | interrupts = <31 2 32 2 33 2>; | 236 | interrupts = <31 2 32 2 33 2>; |
| 252 | interrupt-parent = <&mpic>; | 237 | interrupt-parent = <&mpic>; |
| 253 | tbi-handle = <&tbi2>; | 238 | tbi-handle = <&tbi2>; |
| 254 | phy-handle = <&phy2>; | 239 | phy-handle = <&phy2>; |
| 240 | |||
| 241 | mdio@520 { | ||
| 242 | #address-cells = <1>; | ||
| 243 | #size-cells = <0>; | ||
| 244 | compatible = "fsl,gianfar-tbi"; | ||
| 245 | reg = <0x520 0x20>; | ||
| 246 | |||
| 247 | tbi2: tbi-phy@11 { | ||
| 248 | reg = <0x11>; | ||
| 249 | device_type = "tbi-phy"; | ||
| 250 | }; | ||
| 251 | }; | ||
| 255 | }; | 252 | }; |
| 256 | 253 | ||
| 257 | enet3: ethernet@27000 { | 254 | enet3: ethernet@27000 { |
| 255 | #address-cells = <1>; | ||
| 256 | #size-cells = <1>; | ||
| 258 | cell-index = <3>; | 257 | cell-index = <3>; |
| 259 | device_type = "network"; | 258 | device_type = "network"; |
| 260 | model = "eTSEC"; | 259 | model = "eTSEC"; |
| 261 | compatible = "gianfar"; | 260 | compatible = "gianfar"; |
| 262 | reg = <0x27000 0x1000>; | 261 | reg = <0x27000 0x1000>; |
| 262 | ranges = <0x0 0x27000 0x1000>; | ||
| 263 | local-mac-address = [ 00 00 00 00 00 00 ]; | 263 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 264 | interrupts = <37 2 38 2 39 2>; | 264 | interrupts = <37 2 38 2 39 2>; |
| 265 | interrupt-parent = <&mpic>; | 265 | interrupt-parent = <&mpic>; |
| 266 | tbi-handle = <&tbi3>; | 266 | tbi-handle = <&tbi3>; |
| 267 | phy-handle = <&phy3>; | 267 | phy-handle = <&phy3>; |
| 268 | |||
| 269 | mdio@520 { | ||
| 270 | #address-cells = <1>; | ||
| 271 | #size-cells = <0>; | ||
| 272 | compatible = "fsl,gianfar-tbi"; | ||
| 273 | reg = <0x520 0x20>; | ||
| 274 | |||
| 275 | tbi3: tbi-phy@11 { | ||
| 276 | reg = <0x11>; | ||
| 277 | device_type = "tbi-phy"; | ||
| 278 | }; | ||
| 279 | }; | ||
| 268 | }; | 280 | }; |
| 269 | */ | 281 | */ |
| 270 | 282 | ||
diff --git a/arch/powerpc/boot/dts/mpc8555cds.dts b/arch/powerpc/boot/dts/mpc8555cds.dts index 053b01e1c93b..9484f0729b10 100644 --- a/arch/powerpc/boot/dts/mpc8555cds.dts +++ b/arch/powerpc/boot/dts/mpc8555cds.dts | |||
| @@ -126,66 +126,72 @@ | |||
| 126 | }; | 126 | }; |
| 127 | }; | 127 | }; |
| 128 | 128 | ||
| 129 | mdio@24520 { | ||
| 130 | #address-cells = <1>; | ||
| 131 | #size-cells = <0>; | ||
| 132 | compatible = "fsl,gianfar-mdio"; | ||
| 133 | reg = <0x24520 0x20>; | ||
| 134 | |||
| 135 | phy0: ethernet-phy@0 { | ||
| 136 | interrupt-parent = <&mpic>; | ||
| 137 | interrupts = <5 1>; | ||
| 138 | reg = <0x0>; | ||
| 139 | device_type = "ethernet-phy"; | ||
| 140 | }; | ||
| 141 | phy1: ethernet-phy@1 { | ||
| 142 | interrupt-parent = <&mpic>; | ||
| 143 | interrupts = <5 1>; | ||
| 144 | reg = <0x1>; | ||
| 145 | device_type = "ethernet-phy"; | ||
| 146 | }; | ||
| 147 | tbi0: tbi-phy@11 { | ||
| 148 | reg = <0x11>; | ||
| 149 | device_type = "tbi-phy"; | ||
| 150 | }; | ||
| 151 | }; | ||
| 152 | |||
| 153 | mdio@25520 { | ||
| 154 | #address-cells = <1>; | ||
| 155 | #size-cells = <0>; | ||
| 156 | compatible = "fsl,gianfar-tbi"; | ||
| 157 | reg = <0x25520 0x20>; | ||
| 158 | |||
| 159 | tbi1: tbi-phy@11 { | ||
| 160 | reg = <0x11>; | ||
| 161 | device_type = "tbi-phy"; | ||
| 162 | }; | ||
| 163 | }; | ||
| 164 | |||
| 165 | enet0: ethernet@24000 { | 129 | enet0: ethernet@24000 { |
| 130 | #address-cells = <1>; | ||
| 131 | #size-cells = <1>; | ||
| 166 | cell-index = <0>; | 132 | cell-index = <0>; |
| 167 | device_type = "network"; | 133 | device_type = "network"; |
| 168 | model = "TSEC"; | 134 | model = "TSEC"; |
| 169 | compatible = "gianfar"; | 135 | compatible = "gianfar"; |
| 170 | reg = <0x24000 0x1000>; | 136 | reg = <0x24000 0x1000>; |
| 137 | ranges = <0x0 0x24000 0x1000>; | ||
| 171 | local-mac-address = [ 00 00 00 00 00 00 ]; | 138 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 172 | interrupts = <29 2 30 2 34 2>; | 139 | interrupts = <29 2 30 2 34 2>; |
| 173 | interrupt-parent = <&mpic>; | 140 | interrupt-parent = <&mpic>; |
| 174 | tbi-handle = <&tbi0>; | 141 | tbi-handle = <&tbi0>; |
| 175 | phy-handle = <&phy0>; | 142 | phy-handle = <&phy0>; |
| 143 | |||
| 144 | mdio@520 { | ||
| 145 | #address-cells = <1>; | ||
| 146 | #size-cells = <0>; | ||
| 147 | compatible = "fsl,gianfar-mdio"; | ||
| 148 | reg = <0x520 0x20>; | ||
| 149 | |||
| 150 | phy0: ethernet-phy@0 { | ||
| 151 | interrupt-parent = <&mpic>; | ||
| 152 | interrupts = <5 1>; | ||
| 153 | reg = <0x0>; | ||
| 154 | device_type = "ethernet-phy"; | ||
| 155 | }; | ||
| 156 | phy1: ethernet-phy@1 { | ||
| 157 | interrupt-parent = <&mpic>; | ||
| 158 | interrupts = <5 1>; | ||
| 159 | reg = <0x1>; | ||
| 160 | device_type = "ethernet-phy"; | ||
| 161 | }; | ||
| 162 | tbi0: tbi-phy@11 { | ||
| 163 | reg = <0x11>; | ||
| 164 | device_type = "tbi-phy"; | ||
| 165 | }; | ||
| 166 | }; | ||
| 176 | }; | 167 | }; |
| 177 | 168 | ||
| 178 | enet1: ethernet@25000 { | 169 | enet1: ethernet@25000 { |
| 170 | #address-cells = <1>; | ||
| 171 | #size-cells = <1>; | ||
| 179 | cell-index = <1>; | 172 | cell-index = <1>; |
| 180 | device_type = "network"; | 173 | device_type = "network"; |
| 181 | model = "TSEC"; | 174 | model = "TSEC"; |
| 182 | compatible = "gianfar"; | 175 | compatible = "gianfar"; |
| 183 | reg = <0x25000 0x1000>; | 176 | reg = <0x25000 0x1000>; |
| 177 | ranges = <0x0 0x25000 0x1000>; | ||
| 184 | local-mac-address = [ 00 00 00 00 00 00 ]; | 178 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 185 | interrupts = <35 2 36 2 40 2>; | 179 | interrupts = <35 2 36 2 40 2>; |
| 186 | interrupt-parent = <&mpic>; | 180 | interrupt-parent = <&mpic>; |
| 187 | tbi-handle = <&tbi1>; | 181 | tbi-handle = <&tbi1>; |
| 188 | phy-handle = <&phy1>; | 182 | phy-handle = <&phy1>; |
| 183 | |||
| 184 | mdio@520 { | ||
| 185 | #address-cells = <1>; | ||
| 186 | #size-cells = <0>; | ||
| 187 | compatible = "fsl,gianfar-tbi"; | ||
| 188 | reg = <0x520 0x20>; | ||
| 189 | |||
| 190 | tbi1: tbi-phy@11 { | ||
| 191 | reg = <0x11>; | ||
| 192 | device_type = "tbi-phy"; | ||
| 193 | }; | ||
| 194 | }; | ||
| 189 | }; | 195 | }; |
| 190 | 196 | ||
| 191 | serial0: serial@4500 { | 197 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8560ads.dts b/arch/powerpc/boot/dts/mpc8560ads.dts index 11b1bcbe14ce..cc2acf87d02f 100644 --- a/arch/powerpc/boot/dts/mpc8560ads.dts +++ b/arch/powerpc/boot/dts/mpc8560ads.dts | |||
| @@ -115,78 +115,84 @@ | |||
| 115 | }; | 115 | }; |
| 116 | }; | 116 | }; |
| 117 | 117 | ||
| 118 | mdio@24520 { | ||
| 119 | #address-cells = <1>; | ||
| 120 | #size-cells = <0>; | ||
| 121 | compatible = "fsl,gianfar-mdio"; | ||
| 122 | reg = <0x24520 0x20>; | ||
| 123 | |||
| 124 | phy0: ethernet-phy@0 { | ||
| 125 | interrupt-parent = <&mpic>; | ||
| 126 | interrupts = <5 1>; | ||
| 127 | reg = <0x0>; | ||
| 128 | device_type = "ethernet-phy"; | ||
| 129 | }; | ||
| 130 | phy1: ethernet-phy@1 { | ||
| 131 | interrupt-parent = <&mpic>; | ||
| 132 | interrupts = <5 1>; | ||
| 133 | reg = <0x1>; | ||
| 134 | device_type = "ethernet-phy"; | ||
| 135 | }; | ||
| 136 | phy2: ethernet-phy@2 { | ||
| 137 | interrupt-parent = <&mpic>; | ||
| 138 | interrupts = <7 1>; | ||
| 139 | reg = <0x2>; | ||
| 140 | device_type = "ethernet-phy"; | ||
| 141 | }; | ||
| 142 | phy3: ethernet-phy@3 { | ||
| 143 | interrupt-parent = <&mpic>; | ||
| 144 | interrupts = <7 1>; | ||
| 145 | reg = <0x3>; | ||
| 146 | device_type = "ethernet-phy"; | ||
| 147 | }; | ||
| 148 | tbi0: tbi-phy@11 { | ||
| 149 | reg = <0x11>; | ||
| 150 | device_type = "tbi-phy"; | ||
| 151 | }; | ||
| 152 | }; | ||
| 153 | |||
| 154 | mdio@25520 { | ||
| 155 | #address-cells = <1>; | ||
| 156 | #size-cells = <0>; | ||
| 157 | compatible = "fsl,gianfar-tbi"; | ||
| 158 | reg = <0x25520 0x20>; | ||
| 159 | |||
| 160 | tbi1: tbi-phy@11 { | ||
| 161 | reg = <0x11>; | ||
| 162 | device_type = "tbi-phy"; | ||
| 163 | }; | ||
| 164 | }; | ||
| 165 | |||
| 166 | enet0: ethernet@24000 { | 118 | enet0: ethernet@24000 { |
| 119 | #address-cells = <1>; | ||
| 120 | #size-cells = <1>; | ||
| 167 | cell-index = <0>; | 121 | cell-index = <0>; |
| 168 | device_type = "network"; | 122 | device_type = "network"; |
| 169 | model = "TSEC"; | 123 | model = "TSEC"; |
| 170 | compatible = "gianfar"; | 124 | compatible = "gianfar"; |
| 171 | reg = <0x24000 0x1000>; | 125 | reg = <0x24000 0x1000>; |
| 126 | ranges = <0x0 0x24000 0x1000>; | ||
| 172 | local-mac-address = [ 00 00 00 00 00 00 ]; | 127 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 173 | interrupts = <29 2 30 2 34 2>; | 128 | interrupts = <29 2 30 2 34 2>; |
| 174 | interrupt-parent = <&mpic>; | 129 | interrupt-parent = <&mpic>; |
| 175 | tbi-handle = <&tbi0>; | 130 | tbi-handle = <&tbi0>; |
| 176 | phy-handle = <&phy0>; | 131 | phy-handle = <&phy0>; |
| 132 | |||
| 133 | mdio@520 { | ||
| 134 | #address-cells = <1>; | ||
| 135 | #size-cells = <0>; | ||
| 136 | compatible = "fsl,gianfar-mdio"; | ||
| 137 | reg = <0x520 0x20>; | ||
| 138 | |||
| 139 | phy0: ethernet-phy@0 { | ||
| 140 | interrupt-parent = <&mpic>; | ||
| 141 | interrupts = <5 1>; | ||
| 142 | reg = <0x0>; | ||
| 143 | device_type = "ethernet-phy"; | ||
| 144 | }; | ||
| 145 | phy1: ethernet-phy@1 { | ||
| 146 | interrupt-parent = <&mpic>; | ||
| 147 | interrupts = <5 1>; | ||
| 148 | reg = <0x1>; | ||
| 149 | device_type = "ethernet-phy"; | ||
| 150 | }; | ||
| 151 | phy2: ethernet-phy@2 { | ||
| 152 | interrupt-parent = <&mpic>; | ||
| 153 | interrupts = <7 1>; | ||
| 154 | reg = <0x2>; | ||
| 155 | device_type = "ethernet-phy"; | ||
| 156 | }; | ||
| 157 | phy3: ethernet-phy@3 { | ||
| 158 | interrupt-parent = <&mpic>; | ||
| 159 | interrupts = <7 1>; | ||
| 160 | reg = <0x3>; | ||
| 161 | device_type = "ethernet-phy"; | ||
| 162 | }; | ||
| 163 | tbi0: tbi-phy@11 { | ||
| 164 | reg = <0x11>; | ||
| 165 | device_type = "tbi-phy"; | ||
| 166 | }; | ||
| 167 | }; | ||
| 177 | }; | 168 | }; |
| 178 | 169 | ||
| 179 | enet1: ethernet@25000 { | 170 | enet1: ethernet@25000 { |
| 171 | #address-cells = <1>; | ||
| 172 | #size-cells = <1>; | ||
| 180 | cell-index = <1>; | 173 | cell-index = <1>; |
| 181 | device_type = "network"; | 174 | device_type = "network"; |
| 182 | model = "TSEC"; | 175 | model = "TSEC"; |
| 183 | compatible = "gianfar"; | 176 | compatible = "gianfar"; |
| 184 | reg = <0x25000 0x1000>; | 177 | reg = <0x25000 0x1000>; |
| 178 | ranges = <0x0 0x25000 0x1000>; | ||
| 185 | local-mac-address = [ 00 00 00 00 00 00 ]; | 179 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 186 | interrupts = <35 2 36 2 40 2>; | 180 | interrupts = <35 2 36 2 40 2>; |
| 187 | interrupt-parent = <&mpic>; | 181 | interrupt-parent = <&mpic>; |
| 188 | tbi-handle = <&tbi1>; | 182 | tbi-handle = <&tbi1>; |
| 189 | phy-handle = <&phy1>; | 183 | phy-handle = <&phy1>; |
| 184 | |||
| 185 | mdio@520 { | ||
| 186 | #address-cells = <1>; | ||
| 187 | #size-cells = <0>; | ||
| 188 | compatible = "fsl,gianfar-tbi"; | ||
| 189 | reg = <0x520 0x20>; | ||
| 190 | |||
| 191 | tbi1: tbi-phy@11 { | ||
| 192 | reg = <0x11>; | ||
| 193 | device_type = "tbi-phy"; | ||
| 194 | }; | ||
| 195 | }; | ||
| 190 | }; | 196 | }; |
| 191 | 197 | ||
| 192 | mpic: pic@40000 { | 198 | mpic: pic@40000 { |
diff --git a/arch/powerpc/boot/dts/mpc8568mds.dts b/arch/powerpc/boot/dts/mpc8568mds.dts index 1955bd9e113d..9d52e3b25047 100644 --- a/arch/powerpc/boot/dts/mpc8568mds.dts +++ b/arch/powerpc/boot/dts/mpc8568mds.dts | |||
| @@ -149,78 +149,84 @@ | |||
| 149 | }; | 149 | }; |
| 150 | }; | 150 | }; |
| 151 | 151 | ||
| 152 | mdio@24520 { | ||
| 153 | #address-cells = <1>; | ||
| 154 | #size-cells = <0>; | ||
| 155 | compatible = "fsl,gianfar-mdio"; | ||
| 156 | reg = <0x24520 0x20>; | ||
| 157 | |||
| 158 | phy0: ethernet-phy@7 { | ||
| 159 | interrupt-parent = <&mpic>; | ||
| 160 | interrupts = <1 1>; | ||
| 161 | reg = <0x7>; | ||
| 162 | device_type = "ethernet-phy"; | ||
| 163 | }; | ||
| 164 | phy1: ethernet-phy@1 { | ||
| 165 | interrupt-parent = <&mpic>; | ||
| 166 | interrupts = <2 1>; | ||
| 167 | reg = <0x1>; | ||
| 168 | device_type = "ethernet-phy"; | ||
| 169 | }; | ||
| 170 | phy2: ethernet-phy@2 { | ||
| 171 | interrupt-parent = <&mpic>; | ||
| 172 | interrupts = <1 1>; | ||
| 173 | reg = <0x2>; | ||
| 174 | device_type = "ethernet-phy"; | ||
| 175 | }; | ||
| 176 | phy3: ethernet-phy@3 { | ||
| 177 | interrupt-parent = <&mpic>; | ||
| 178 | interrupts = <2 1>; | ||
| 179 | reg = <0x3>; | ||
| 180 | device_type = "ethernet-phy"; | ||
| 181 | }; | ||
| 182 | tbi0: tbi-phy@11 { | ||
| 183 | reg = <0x11>; | ||
| 184 | device_type = "tbi-phy"; | ||
| 185 | }; | ||
| 186 | }; | ||
| 187 | |||
| 188 | mdio@25520 { | ||
| 189 | #address-cells = <1>; | ||
| 190 | #size-cells = <0>; | ||
| 191 | compatible = "fsl,gianfar-tbi"; | ||
| 192 | reg = <0x25520 0x20>; | ||
| 193 | |||
| 194 | tbi1: tbi-phy@11 { | ||
| 195 | reg = <0x11>; | ||
| 196 | device_type = "tbi-phy"; | ||
| 197 | }; | ||
| 198 | }; | ||
| 199 | |||
| 200 | enet0: ethernet@24000 { | 152 | enet0: ethernet@24000 { |
| 153 | #address-cells = <1>; | ||
| 154 | #size-cells = <1>; | ||
| 201 | cell-index = <0>; | 155 | cell-index = <0>; |
| 202 | device_type = "network"; | 156 | device_type = "network"; |
| 203 | model = "eTSEC"; | 157 | model = "eTSEC"; |
| 204 | compatible = "gianfar"; | 158 | compatible = "gianfar"; |
| 205 | reg = <0x24000 0x1000>; | 159 | reg = <0x24000 0x1000>; |
| 160 | ranges = <0x0 0x24000 0x1000>; | ||
| 206 | local-mac-address = [ 00 00 00 00 00 00 ]; | 161 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 207 | interrupts = <29 2 30 2 34 2>; | 162 | interrupts = <29 2 30 2 34 2>; |
| 208 | interrupt-parent = <&mpic>; | 163 | interrupt-parent = <&mpic>; |
| 209 | tbi-handle = <&tbi0>; | 164 | tbi-handle = <&tbi0>; |
| 210 | phy-handle = <&phy2>; | 165 | phy-handle = <&phy2>; |
| 166 | |||
| 167 | mdio@520 { | ||
| 168 | #address-cells = <1>; | ||
| 169 | #size-cells = <0>; | ||
| 170 | compatible = "fsl,gianfar-mdio"; | ||
| 171 | reg = <0x520 0x20>; | ||
| 172 | |||
| 173 | phy0: ethernet-phy@7 { | ||
| 174 | interrupt-parent = <&mpic>; | ||
| 175 | interrupts = <1 1>; | ||
| 176 | reg = <0x7>; | ||
| 177 | device_type = "ethernet-phy"; | ||
| 178 | }; | ||
| 179 | phy1: ethernet-phy@1 { | ||
| 180 | interrupt-parent = <&mpic>; | ||
| 181 | interrupts = <2 1>; | ||
| 182 | reg = <0x1>; | ||
| 183 | device_type = "ethernet-phy"; | ||
| 184 | }; | ||
| 185 | phy2: ethernet-phy@2 { | ||
| 186 | interrupt-parent = <&mpic>; | ||
| 187 | interrupts = <1 1>; | ||
| 188 | reg = <0x2>; | ||
| 189 | device_type = "ethernet-phy"; | ||
| 190 | }; | ||
| 191 | phy3: ethernet-phy@3 { | ||
| 192 | interrupt-parent = <&mpic>; | ||
| 193 | interrupts = <2 1>; | ||
| 194 | reg = <0x3>; | ||
| 195 | device_type = "ethernet-phy"; | ||
| 196 | }; | ||
| 197 | tbi0: tbi-phy@11 { | ||
| 198 | reg = <0x11>; | ||
| 199 | device_type = "tbi-phy"; | ||
| 200 | }; | ||
| 201 | }; | ||
| 211 | }; | 202 | }; |
| 212 | 203 | ||
| 213 | enet1: ethernet@25000 { | 204 | enet1: ethernet@25000 { |
| 205 | #address-cells = <1>; | ||
| 206 | #size-cells = <1>; | ||
| 214 | cell-index = <1>; | 207 | cell-index = <1>; |
| 215 | device_type = "network"; | 208 | device_type = "network"; |
| 216 | model = "eTSEC"; | 209 | model = "eTSEC"; |
| 217 | compatible = "gianfar"; | 210 | compatible = "gianfar"; |
| 218 | reg = <0x25000 0x1000>; | 211 | reg = <0x25000 0x1000>; |
| 212 | ranges = <0x0 0x25000 0x1000>; | ||
| 219 | local-mac-address = [ 00 00 00 00 00 00 ]; | 213 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 220 | interrupts = <35 2 36 2 40 2>; | 214 | interrupts = <35 2 36 2 40 2>; |
| 221 | interrupt-parent = <&mpic>; | 215 | interrupt-parent = <&mpic>; |
| 222 | tbi-handle = <&tbi1>; | 216 | tbi-handle = <&tbi1>; |
| 223 | phy-handle = <&phy3>; | 217 | phy-handle = <&phy3>; |
| 218 | |||
| 219 | mdio@520 { | ||
| 220 | #address-cells = <1>; | ||
| 221 | #size-cells = <0>; | ||
| 222 | compatible = "fsl,gianfar-tbi"; | ||
| 223 | reg = <0x520 0x20>; | ||
| 224 | |||
| 225 | tbi1: tbi-phy@11 { | ||
| 226 | reg = <0x11>; | ||
| 227 | device_type = "tbi-phy"; | ||
| 228 | }; | ||
| 229 | }; | ||
| 224 | }; | 230 | }; |
| 225 | 231 | ||
| 226 | serial0: serial@4500 { | 232 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8572ds.dts b/arch/powerpc/boot/dts/mpc8572ds.dts index 6c9354b2d7b7..6e79a4169088 100644 --- a/arch/powerpc/boot/dts/mpc8572ds.dts +++ b/arch/powerpc/boot/dts/mpc8572ds.dts | |||
| @@ -312,129 +312,141 @@ | |||
| 312 | }; | 312 | }; |
| 313 | }; | 313 | }; |
| 314 | 314 | ||
| 315 | mdio@24520 { | ||
| 316 | #address-cells = <1>; | ||
| 317 | #size-cells = <0>; | ||
| 318 | compatible = "fsl,gianfar-mdio"; | ||
| 319 | reg = <0x24520 0x20>; | ||
| 320 | |||
| 321 | phy0: ethernet-phy@0 { | ||
| 322 | interrupt-parent = <&mpic>; | ||
| 323 | interrupts = <10 1>; | ||
| 324 | reg = <0x0>; | ||
| 325 | }; | ||
| 326 | phy1: ethernet-phy@1 { | ||
| 327 | interrupt-parent = <&mpic>; | ||
| 328 | interrupts = <10 1>; | ||
| 329 | reg = <0x1>; | ||
| 330 | }; | ||
| 331 | phy2: ethernet-phy@2 { | ||
| 332 | interrupt-parent = <&mpic>; | ||
| 333 | interrupts = <10 1>; | ||
| 334 | reg = <0x2>; | ||
| 335 | }; | ||
| 336 | phy3: ethernet-phy@3 { | ||
| 337 | interrupt-parent = <&mpic>; | ||
| 338 | interrupts = <10 1>; | ||
| 339 | reg = <0x3>; | ||
| 340 | }; | ||
| 341 | |||
| 342 | tbi0: tbi-phy@11 { | ||
| 343 | reg = <0x11>; | ||
| 344 | device_type = "tbi-phy"; | ||
| 345 | }; | ||
| 346 | }; | ||
| 347 | |||
| 348 | mdio@25520 { | ||
| 349 | #address-cells = <1>; | ||
| 350 | #size-cells = <0>; | ||
| 351 | compatible = "fsl,gianfar-tbi"; | ||
| 352 | reg = <0x25520 0x20>; | ||
| 353 | |||
| 354 | tbi1: tbi-phy@11 { | ||
| 355 | reg = <0x11>; | ||
| 356 | device_type = "tbi-phy"; | ||
| 357 | }; | ||
| 358 | }; | ||
| 359 | |||
| 360 | mdio@26520 { | ||
| 361 | #address-cells = <1>; | ||
| 362 | #size-cells = <0>; | ||
| 363 | compatible = "fsl,gianfar-tbi"; | ||
| 364 | reg = <0x26520 0x20>; | ||
| 365 | |||
| 366 | tbi2: tbi-phy@11 { | ||
| 367 | reg = <0x11>; | ||
| 368 | device_type = "tbi-phy"; | ||
| 369 | }; | ||
| 370 | }; | ||
| 371 | |||
| 372 | mdio@27520 { | ||
| 373 | #address-cells = <1>; | ||
| 374 | #size-cells = <0>; | ||
| 375 | compatible = "fsl,gianfar-tbi"; | ||
| 376 | reg = <0x27520 0x20>; | ||
| 377 | |||
| 378 | tbi3: tbi-phy@11 { | ||
| 379 | reg = <0x11>; | ||
| 380 | device_type = "tbi-phy"; | ||
| 381 | }; | ||
| 382 | }; | ||
| 383 | |||
| 384 | enet0: ethernet@24000 { | 315 | enet0: ethernet@24000 { |
| 316 | #address-cells = <1>; | ||
| 317 | #size-cells = <1>; | ||
| 385 | cell-index = <0>; | 318 | cell-index = <0>; |
| 386 | device_type = "network"; | 319 | device_type = "network"; |
| 387 | model = "eTSEC"; | 320 | model = "eTSEC"; |
| 388 | compatible = "gianfar"; | 321 | compatible = "gianfar"; |
| 389 | reg = <0x24000 0x1000>; | 322 | reg = <0x24000 0x1000>; |
| 323 | ranges = <0x0 0x24000 0x1000>; | ||
| 390 | local-mac-address = [ 00 00 00 00 00 00 ]; | 324 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 391 | interrupts = <29 2 30 2 34 2>; | 325 | interrupts = <29 2 30 2 34 2>; |
| 392 | interrupt-parent = <&mpic>; | 326 | interrupt-parent = <&mpic>; |
| 393 | tbi-handle = <&tbi0>; | 327 | tbi-handle = <&tbi0>; |
| 394 | phy-handle = <&phy0>; | 328 | phy-handle = <&phy0>; |
| 395 | phy-connection-type = "rgmii-id"; | 329 | phy-connection-type = "rgmii-id"; |
| 330 | |||
| 331 | mdio@520 { | ||
| 332 | #address-cells = <1>; | ||
| 333 | #size-cells = <0>; | ||
| 334 | compatible = "fsl,gianfar-mdio"; | ||
| 335 | reg = <0x520 0x20>; | ||
| 336 | |||
| 337 | phy0: ethernet-phy@0 { | ||
| 338 | interrupt-parent = <&mpic>; | ||
| 339 | interrupts = <10 1>; | ||
| 340 | reg = <0x0>; | ||
| 341 | }; | ||
| 342 | phy1: ethernet-phy@1 { | ||
| 343 | interrupt-parent = <&mpic>; | ||
| 344 | interrupts = <10 1>; | ||
| 345 | reg = <0x1>; | ||
| 346 | }; | ||
| 347 | phy2: ethernet-phy@2 { | ||
| 348 | interrupt-parent = <&mpic>; | ||
| 349 | interrupts = <10 1>; | ||
| 350 | reg = <0x2>; | ||
| 351 | }; | ||
| 352 | phy3: ethernet-phy@3 { | ||
| 353 | interrupt-parent = <&mpic>; | ||
| 354 | interrupts = <10 1>; | ||
| 355 | reg = <0x3>; | ||
| 356 | }; | ||
| 357 | |||
| 358 | tbi0: tbi-phy@11 { | ||
| 359 | reg = <0x11>; | ||
| 360 | device_type = "tbi-phy"; | ||
| 361 | }; | ||
| 362 | }; | ||
| 396 | }; | 363 | }; |
| 397 | 364 | ||
| 398 | enet1: ethernet@25000 { | 365 | enet1: ethernet@25000 { |
| 366 | #address-cells = <1>; | ||
| 367 | #size-cells = <1>; | ||
| 399 | cell-index = <1>; | 368 | cell-index = <1>; |
| 400 | device_type = "network"; | 369 | device_type = "network"; |
| 401 | model = "eTSEC"; | 370 | model = "eTSEC"; |
| 402 | compatible = "gianfar"; | 371 | compatible = "gianfar"; |
| 403 | reg = <0x25000 0x1000>; | 372 | reg = <0x25000 0x1000>; |
| 373 | ranges = <0x0 0x25000 0x1000>; | ||
| 404 | local-mac-address = [ 00 00 00 00 00 00 ]; | 374 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 405 | interrupts = <35 2 36 2 40 2>; | 375 | interrupts = <35 2 36 2 40 2>; |
| 406 | interrupt-parent = <&mpic>; | 376 | interrupt-parent = <&mpic>; |
| 407 | tbi-handle = <&tbi1>; | 377 | tbi-handle = <&tbi1>; |
| 408 | phy-handle = <&phy1>; | 378 | phy-handle = <&phy1>; |
| 409 | phy-connection-type = "rgmii-id"; | 379 | phy-connection-type = "rgmii-id"; |
| 380 | |||
| 381 | mdio@520 { | ||
| 382 | #address-cells = <1>; | ||
| 383 | #size-cells = <0>; | ||
| 384 | compatible = "fsl,gianfar-tbi"; | ||
| 385 | reg = <0x520 0x20>; | ||
| 386 | |||
| 387 | tbi1: tbi-phy@11 { | ||
| 388 | reg = <0x11>; | ||
| 389 | device_type = "tbi-phy"; | ||
| 390 | }; | ||
| 391 | }; | ||
| 410 | }; | 392 | }; |
| 411 | 393 | ||
| 412 | enet2: ethernet@26000 { | 394 | enet2: ethernet@26000 { |
| 395 | #address-cells = <1>; | ||
| 396 | #size-cells = <1>; | ||
| 413 | cell-index = <2>; | 397 | cell-index = <2>; |
| 414 | device_type = "network"; | 398 | device_type = "network"; |
| 415 | model = "eTSEC"; | 399 | model = "eTSEC"; |
| 416 | compatible = "gianfar"; | 400 | compatible = "gianfar"; |
| 417 | reg = <0x26000 0x1000>; | 401 | reg = <0x26000 0x1000>; |
| 402 | ranges = <0x0 0x26000 0x1000>; | ||
| 418 | local-mac-address = [ 00 00 00 00 00 00 ]; | 403 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 419 | interrupts = <31 2 32 2 33 2>; | 404 | interrupts = <31 2 32 2 33 2>; |
| 420 | interrupt-parent = <&mpic>; | 405 | interrupt-parent = <&mpic>; |
| 421 | tbi-handle = <&tbi2>; | 406 | tbi-handle = <&tbi2>; |
| 422 | phy-handle = <&phy2>; | 407 | phy-handle = <&phy2>; |
| 423 | phy-connection-type = "rgmii-id"; | 408 | phy-connection-type = "rgmii-id"; |
| 409 | |||
| 410 | mdio@520 { | ||
| 411 | #address-cells = <1>; | ||
| 412 | #size-cells = <0>; | ||
| 413 | compatible = "fsl,gianfar-tbi"; | ||
| 414 | reg = <0x520 0x20>; | ||
| 415 | |||
| 416 | tbi2: tbi-phy@11 { | ||
| 417 | reg = <0x11>; | ||
| 418 | device_type = "tbi-phy"; | ||
| 419 | }; | ||
| 420 | }; | ||
| 424 | }; | 421 | }; |
| 425 | 422 | ||
| 426 | enet3: ethernet@27000 { | 423 | enet3: ethernet@27000 { |
| 424 | #address-cells = <1>; | ||
| 425 | #size-cells = <1>; | ||
| 427 | cell-index = <3>; | 426 | cell-index = <3>; |
| 428 | device_type = "network"; | 427 | device_type = "network"; |
| 429 | model = "eTSEC"; | 428 | model = "eTSEC"; |
| 430 | compatible = "gianfar"; | 429 | compatible = "gianfar"; |
| 431 | reg = <0x27000 0x1000>; | 430 | reg = <0x27000 0x1000>; |
| 431 | ranges = <0x0 0x27000 0x1000>; | ||
| 432 | local-mac-address = [ 00 00 00 00 00 00 ]; | 432 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 433 | interrupts = <37 2 38 2 39 2>; | 433 | interrupts = <37 2 38 2 39 2>; |
| 434 | interrupt-parent = <&mpic>; | 434 | interrupt-parent = <&mpic>; |
| 435 | tbi-handle = <&tbi3>; | 435 | tbi-handle = <&tbi3>; |
| 436 | phy-handle = <&phy3>; | 436 | phy-handle = <&phy3>; |
| 437 | phy-connection-type = "rgmii-id"; | 437 | phy-connection-type = "rgmii-id"; |
| 438 | |||
| 439 | mdio@520 { | ||
| 440 | #address-cells = <1>; | ||
| 441 | #size-cells = <0>; | ||
| 442 | compatible = "fsl,gianfar-tbi"; | ||
| 443 | reg = <0x520 0x20>; | ||
| 444 | |||
| 445 | tbi3: tbi-phy@11 { | ||
| 446 | reg = <0x11>; | ||
| 447 | device_type = "tbi-phy"; | ||
| 448 | }; | ||
| 449 | }; | ||
| 438 | }; | 450 | }; |
| 439 | 451 | ||
| 440 | serial0: serial@4500 { | 452 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8572ds_36b.dts b/arch/powerpc/boot/dts/mpc8572ds_36b.dts index fc7dbf49f4cc..dbd81a764742 100644 --- a/arch/powerpc/boot/dts/mpc8572ds_36b.dts +++ b/arch/powerpc/boot/dts/mpc8572ds_36b.dts | |||
| @@ -312,129 +312,141 @@ | |||
| 312 | }; | 312 | }; |
| 313 | }; | 313 | }; |
| 314 | 314 | ||
| 315 | mdio@24520 { | ||
| 316 | #address-cells = <1>; | ||
| 317 | #size-cells = <0>; | ||
| 318 | compatible = "fsl,gianfar-mdio"; | ||
| 319 | reg = <0x24520 0x20>; | ||
| 320 | |||
| 321 | phy0: ethernet-phy@0 { | ||
| 322 | interrupt-parent = <&mpic>; | ||
| 323 | interrupts = <10 1>; | ||
| 324 | reg = <0x0>; | ||
| 325 | }; | ||
| 326 | phy1: ethernet-phy@1 { | ||
| 327 | interrupt-parent = <&mpic>; | ||
| 328 | interrupts = <10 1>; | ||
| 329 | reg = <0x1>; | ||
| 330 | }; | ||
| 331 | phy2: ethernet-phy@2 { | ||
| 332 | interrupt-parent = <&mpic>; | ||
| 333 | interrupts = <10 1>; | ||
| 334 | reg = <0x2>; | ||
| 335 | }; | ||
| 336 | phy3: ethernet-phy@3 { | ||
| 337 | interrupt-parent = <&mpic>; | ||
| 338 | interrupts = <10 1>; | ||
| 339 | reg = <0x3>; | ||
| 340 | }; | ||
| 341 | |||
| 342 | tbi0: tbi-phy@11 { | ||
| 343 | reg = <0x11>; | ||
| 344 | device_type = "tbi-phy"; | ||
| 345 | }; | ||
| 346 | }; | ||
| 347 | |||
| 348 | mdio@25520 { | ||
| 349 | #address-cells = <1>; | ||
| 350 | #size-cells = <0>; | ||
| 351 | compatible = "fsl,gianfar-tbi"; | ||
| 352 | reg = <0x25520 0x20>; | ||
| 353 | |||
| 354 | tbi1: tbi-phy@11 { | ||
| 355 | reg = <0x11>; | ||
| 356 | device_type = "tbi-phy"; | ||
| 357 | }; | ||
| 358 | }; | ||
| 359 | |||
| 360 | mdio@26520 { | ||
| 361 | #address-cells = <1>; | ||
| 362 | #size-cells = <0>; | ||
| 363 | compatible = "fsl,gianfar-tbi"; | ||
| 364 | reg = <0x26520 0x20>; | ||
| 365 | |||
| 366 | tbi2: tbi-phy@11 { | ||
| 367 | reg = <0x11>; | ||
| 368 | device_type = "tbi-phy"; | ||
| 369 | }; | ||
| 370 | }; | ||
| 371 | |||
| 372 | mdio@27520 { | ||
| 373 | #address-cells = <1>; | ||
| 374 | #size-cells = <0>; | ||
| 375 | compatible = "fsl,gianfar-tbi"; | ||
| 376 | reg = <0x27520 0x20>; | ||
| 377 | |||
| 378 | tbi3: tbi-phy@11 { | ||
| 379 | reg = <0x11>; | ||
| 380 | device_type = "tbi-phy"; | ||
| 381 | }; | ||
| 382 | }; | ||
| 383 | |||
| 384 | enet0: ethernet@24000 { | 315 | enet0: ethernet@24000 { |
| 316 | #address-cells = <1>; | ||
| 317 | #size-cells = <1>; | ||
| 385 | cell-index = <0>; | 318 | cell-index = <0>; |
| 386 | device_type = "network"; | 319 | device_type = "network"; |
| 387 | model = "eTSEC"; | 320 | model = "eTSEC"; |
| 388 | compatible = "gianfar"; | 321 | compatible = "gianfar"; |
| 389 | reg = <0x24000 0x1000>; | 322 | reg = <0x24000 0x1000>; |
| 323 | ranges = <0x0 0x24000 0x1000>; | ||
| 390 | local-mac-address = [ 00 00 00 00 00 00 ]; | 324 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 391 | interrupts = <29 2 30 2 34 2>; | 325 | interrupts = <29 2 30 2 34 2>; |
| 392 | interrupt-parent = <&mpic>; | 326 | interrupt-parent = <&mpic>; |
| 393 | tbi-handle = <&tbi0>; | 327 | tbi-handle = <&tbi0>; |
| 394 | phy-handle = <&phy0>; | 328 | phy-handle = <&phy0>; |
| 395 | phy-connection-type = "rgmii-id"; | 329 | phy-connection-type = "rgmii-id"; |
| 330 | |||
| 331 | mdio@520 { | ||
| 332 | #address-cells = <1>; | ||
| 333 | #size-cells = <0>; | ||
| 334 | compatible = "fsl,gianfar-mdio"; | ||
| 335 | reg = <0x520 0x20>; | ||
| 336 | |||
| 337 | phy0: ethernet-phy@0 { | ||
| 338 | interrupt-parent = <&mpic>; | ||
| 339 | interrupts = <10 1>; | ||
| 340 | reg = <0x0>; | ||
| 341 | }; | ||
| 342 | phy1: ethernet-phy@1 { | ||
| 343 | interrupt-parent = <&mpic>; | ||
| 344 | interrupts = <10 1>; | ||
| 345 | reg = <0x1>; | ||
| 346 | }; | ||
| 347 | phy2: ethernet-phy@2 { | ||
| 348 | interrupt-parent = <&mpic>; | ||
| 349 | interrupts = <10 1>; | ||
| 350 | reg = <0x2>; | ||
| 351 | }; | ||
| 352 | phy3: ethernet-phy@3 { | ||
| 353 | interrupt-parent = <&mpic>; | ||
| 354 | interrupts = <10 1>; | ||
| 355 | reg = <0x3>; | ||
| 356 | }; | ||
| 357 | |||
| 358 | tbi0: tbi-phy@11 { | ||
| 359 | reg = <0x11>; | ||
| 360 | device_type = "tbi-phy"; | ||
| 361 | }; | ||
| 362 | }; | ||
| 396 | }; | 363 | }; |
| 397 | 364 | ||
| 398 | enet1: ethernet@25000 { | 365 | enet1: ethernet@25000 { |
| 366 | #address-cells = <1>; | ||
| 367 | #size-cells = <1>; | ||
| 399 | cell-index = <1>; | 368 | cell-index = <1>; |
| 400 | device_type = "network"; | 369 | device_type = "network"; |
| 401 | model = "eTSEC"; | 370 | model = "eTSEC"; |
| 402 | compatible = "gianfar"; | 371 | compatible = "gianfar"; |
| 403 | reg = <0x25000 0x1000>; | 372 | reg = <0x25000 0x1000>; |
| 373 | ranges = <0x0 0x25000 0x1000>; | ||
| 404 | local-mac-address = [ 00 00 00 00 00 00 ]; | 374 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 405 | interrupts = <35 2 36 2 40 2>; | 375 | interrupts = <35 2 36 2 40 2>; |
| 406 | interrupt-parent = <&mpic>; | 376 | interrupt-parent = <&mpic>; |
| 407 | tbi-handle = <&tbi1>; | 377 | tbi-handle = <&tbi1>; |
| 408 | phy-handle = <&phy1>; | 378 | phy-handle = <&phy1>; |
| 409 | phy-connection-type = "rgmii-id"; | 379 | phy-connection-type = "rgmii-id"; |
| 380 | |||
| 381 | mdio@520 { | ||
| 382 | #address-cells = <1>; | ||
| 383 | #size-cells = <0>; | ||
| 384 | compatible = "fsl,gianfar-tbi"; | ||
| 385 | reg = <0x520 0x20>; | ||
| 386 | |||
| 387 | tbi1: tbi-phy@11 { | ||
| 388 | reg = <0x11>; | ||
| 389 | device_type = "tbi-phy"; | ||
| 390 | }; | ||
| 391 | }; | ||
| 410 | }; | 392 | }; |
| 411 | 393 | ||
| 412 | enet2: ethernet@26000 { | 394 | enet2: ethernet@26000 { |
| 395 | #address-cells = <1>; | ||
| 396 | #size-cells = <1>; | ||
| 413 | cell-index = <2>; | 397 | cell-index = <2>; |
| 414 | device_type = "network"; | 398 | device_type = "network"; |
| 415 | model = "eTSEC"; | 399 | model = "eTSEC"; |
| 416 | compatible = "gianfar"; | 400 | compatible = "gianfar"; |
| 417 | reg = <0x26000 0x1000>; | 401 | reg = <0x26000 0x1000>; |
| 402 | ranges = <0x0 0x26000 0x1000>; | ||
| 418 | local-mac-address = [ 00 00 00 00 00 00 ]; | 403 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 419 | interrupts = <31 2 32 2 33 2>; | 404 | interrupts = <31 2 32 2 33 2>; |
| 420 | interrupt-parent = <&mpic>; | 405 | interrupt-parent = <&mpic>; |
| 421 | tbi-handle = <&tbi2>; | 406 | tbi-handle = <&tbi2>; |
| 422 | phy-handle = <&phy2>; | 407 | phy-handle = <&phy2>; |
| 423 | phy-connection-type = "rgmii-id"; | 408 | phy-connection-type = "rgmii-id"; |
| 409 | |||
| 410 | mdio@520 { | ||
| 411 | #address-cells = <1>; | ||
| 412 | #size-cells = <0>; | ||
| 413 | compatible = "fsl,gianfar-tbi"; | ||
| 414 | reg = <0x520 0x20>; | ||
| 415 | |||
| 416 | tbi2: tbi-phy@11 { | ||
| 417 | reg = <0x11>; | ||
| 418 | device_type = "tbi-phy"; | ||
| 419 | }; | ||
| 420 | }; | ||
| 424 | }; | 421 | }; |
| 425 | 422 | ||
| 426 | enet3: ethernet@27000 { | 423 | enet3: ethernet@27000 { |
| 424 | #address-cells = <1>; | ||
| 425 | #size-cells = <1>; | ||
| 427 | cell-index = <3>; | 426 | cell-index = <3>; |
| 428 | device_type = "network"; | 427 | device_type = "network"; |
| 429 | model = "eTSEC"; | 428 | model = "eTSEC"; |
| 430 | compatible = "gianfar"; | 429 | compatible = "gianfar"; |
| 431 | reg = <0x27000 0x1000>; | 430 | reg = <0x27000 0x1000>; |
| 431 | ranges = <0x0 0x27000 0x1000>; | ||
| 432 | local-mac-address = [ 00 00 00 00 00 00 ]; | 432 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 433 | interrupts = <37 2 38 2 39 2>; | 433 | interrupts = <37 2 38 2 39 2>; |
| 434 | interrupt-parent = <&mpic>; | 434 | interrupt-parent = <&mpic>; |
| 435 | tbi-handle = <&tbi3>; | 435 | tbi-handle = <&tbi3>; |
| 436 | phy-handle = <&phy3>; | 436 | phy-handle = <&phy3>; |
| 437 | phy-connection-type = "rgmii-id"; | 437 | phy-connection-type = "rgmii-id"; |
| 438 | |||
| 439 | mdio@520 { | ||
| 440 | #address-cells = <1>; | ||
| 441 | #size-cells = <0>; | ||
| 442 | compatible = "fsl,gianfar-tbi"; | ||
| 443 | reg = <0x520 0x20>; | ||
| 444 | |||
| 445 | tbi3: tbi-phy@11 { | ||
| 446 | reg = <0x11>; | ||
| 447 | device_type = "tbi-phy"; | ||
| 448 | }; | ||
| 449 | }; | ||
| 438 | }; | 450 | }; |
| 439 | 451 | ||
| 440 | serial0: serial@4500 { | 452 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8572ds_camp_core0.dts b/arch/powerpc/boot/dts/mpc8572ds_camp_core0.dts index 32178bfa77d0..2bc0c7189653 100644 --- a/arch/powerpc/boot/dts/mpc8572ds_camp_core0.dts +++ b/arch/powerpc/boot/dts/mpc8572ds_camp_core0.dts | |||
| @@ -148,35 +148,38 @@ | |||
| 148 | }; | 148 | }; |
| 149 | }; | 149 | }; |
| 150 | 150 | ||
| 151 | mdio@24520 { | ||
| 152 | #address-cells = <1>; | ||
| 153 | #size-cells = <0>; | ||
| 154 | compatible = "fsl,gianfar-mdio"; | ||
| 155 | reg = <0x24520 0x20>; | ||
| 156 | |||
| 157 | phy0: ethernet-phy@0 { | ||
| 158 | interrupt-parent = <&mpic>; | ||
| 159 | interrupts = <10 1>; | ||
| 160 | reg = <0x0>; | ||
| 161 | }; | ||
| 162 | phy1: ethernet-phy@1 { | ||
| 163 | interrupt-parent = <&mpic>; | ||
| 164 | interrupts = <10 1>; | ||
| 165 | reg = <0x1>; | ||
| 166 | }; | ||
| 167 | }; | ||
| 168 | |||
| 169 | enet0: ethernet@24000 { | 151 | enet0: ethernet@24000 { |
| 152 | #address-cells = <1>; | ||
| 153 | #size-cells = <1>; | ||
| 170 | cell-index = <0>; | 154 | cell-index = <0>; |
| 171 | device_type = "network"; | 155 | device_type = "network"; |
| 172 | model = "eTSEC"; | 156 | model = "eTSEC"; |
| 173 | compatible = "gianfar"; | 157 | compatible = "gianfar"; |
| 174 | reg = <0x24000 0x1000>; | 158 | reg = <0x24000 0x1000>; |
| 159 | ranges = <0x0 0x24000 0x1000>; | ||
| 175 | local-mac-address = [ 00 00 00 00 00 00 ]; | 160 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 176 | interrupts = <29 2 30 2 34 2>; | 161 | interrupts = <29 2 30 2 34 2>; |
| 177 | interrupt-parent = <&mpic>; | 162 | interrupt-parent = <&mpic>; |
| 178 | phy-handle = <&phy0>; | 163 | phy-handle = <&phy0>; |
| 179 | phy-connection-type = "rgmii-id"; | 164 | phy-connection-type = "rgmii-id"; |
| 165 | |||
| 166 | mdio@520 { | ||
| 167 | #address-cells = <1>; | ||
| 168 | #size-cells = <0>; | ||
| 169 | compatible = "fsl,gianfar-mdio"; | ||
| 170 | reg = <0x520 0x20>; | ||
| 171 | |||
| 172 | phy0: ethernet-phy@0 { | ||
| 173 | interrupt-parent = <&mpic>; | ||
| 174 | interrupts = <10 1>; | ||
| 175 | reg = <0x0>; | ||
| 176 | }; | ||
| 177 | phy1: ethernet-phy@1 { | ||
| 178 | interrupt-parent = <&mpic>; | ||
| 179 | interrupts = <10 1>; | ||
| 180 | reg = <0x1>; | ||
| 181 | }; | ||
| 182 | }; | ||
| 180 | }; | 183 | }; |
| 181 | 184 | ||
| 182 | enet1: ethernet@25000 { | 185 | enet1: ethernet@25000 { |
diff --git a/arch/powerpc/boot/dts/mpc8641_hpcn.dts b/arch/powerpc/boot/dts/mpc8641_hpcn.dts index 4481532cbe77..d72beb192460 100644 --- a/arch/powerpc/boot/dts/mpc8641_hpcn.dts +++ b/arch/powerpc/boot/dts/mpc8641_hpcn.dts | |||
| @@ -180,133 +180,144 @@ | |||
| 180 | }; | 180 | }; |
| 181 | }; | 181 | }; |
| 182 | 182 | ||
| 183 | mdio@24520 { | ||
| 184 | #address-cells = <1>; | ||
| 185 | #size-cells = <0>; | ||
| 186 | compatible = "fsl,gianfar-mdio"; | ||
| 187 | reg = <0x24520 0x20>; | ||
| 188 | |||
| 189 | phy0: ethernet-phy@0 { | ||
| 190 | interrupt-parent = <&mpic>; | ||
| 191 | interrupts = <10 1>; | ||
| 192 | reg = <0>; | ||
| 193 | device_type = "ethernet-phy"; | ||
| 194 | }; | ||
| 195 | phy1: ethernet-phy@1 { | ||
| 196 | interrupt-parent = <&mpic>; | ||
| 197 | interrupts = <10 1>; | ||
| 198 | reg = <1>; | ||
| 199 | device_type = "ethernet-phy"; | ||
| 200 | }; | ||
| 201 | phy2: ethernet-phy@2 { | ||
| 202 | interrupt-parent = <&mpic>; | ||
| 203 | interrupts = <10 1>; | ||
| 204 | reg = <2>; | ||
| 205 | device_type = "ethernet-phy"; | ||
| 206 | }; | ||
| 207 | phy3: ethernet-phy@3 { | ||
| 208 | interrupt-parent = <&mpic>; | ||
| 209 | interrupts = <10 1>; | ||
| 210 | reg = <3>; | ||
| 211 | device_type = "ethernet-phy"; | ||
| 212 | }; | ||
| 213 | tbi0: tbi-phy@11 { | ||
| 214 | reg = <0x11>; | ||
| 215 | device_type = "tbi-phy"; | ||
| 216 | }; | ||
| 217 | }; | ||
| 218 | |||
| 219 | mdio@25520 { | ||
| 220 | #address-cells = <1>; | ||
| 221 | #size-cells = <0>; | ||
| 222 | compatible = "fsl,gianfar-tbi"; | ||
| 223 | reg = <0x25520 0x20>; | ||
| 224 | |||
| 225 | tbi1: tbi-phy@11 { | ||
| 226 | reg = <0x11>; | ||
| 227 | device_type = "tbi-phy"; | ||
| 228 | }; | ||
| 229 | }; | ||
| 230 | |||
| 231 | mdio@26520 { | ||
| 232 | #address-cells = <1>; | ||
| 233 | #size-cells = <0>; | ||
| 234 | compatible = "fsl,gianfar-tbi"; | ||
| 235 | reg = <0x26520 0x20>; | ||
| 236 | |||
| 237 | tbi2: tbi-phy@11 { | ||
| 238 | reg = <0x11>; | ||
| 239 | device_type = "tbi-phy"; | ||
| 240 | }; | ||
| 241 | }; | ||
| 242 | |||
| 243 | mdio@27520 { | ||
| 244 | #address-cells = <1>; | ||
| 245 | #size-cells = <0>; | ||
| 246 | compatible = "fsl,gianfar-tbi"; | ||
| 247 | reg = <0x27520 0x20>; | ||
| 248 | |||
| 249 | tbi3: tbi-phy@11 { | ||
| 250 | reg = <0x11>; | ||
| 251 | device_type = "tbi-phy"; | ||
| 252 | }; | ||
| 253 | }; | ||
| 254 | |||
| 255 | |||
| 256 | enet0: ethernet@24000 { | 183 | enet0: ethernet@24000 { |
| 184 | #address-cells = <1>; | ||
| 185 | #size-cells = <1>; | ||
| 257 | cell-index = <0>; | 186 | cell-index = <0>; |
| 258 | device_type = "network"; | 187 | device_type = "network"; |
| 259 | model = "TSEC"; | 188 | model = "TSEC"; |
| 260 | compatible = "gianfar"; | 189 | compatible = "gianfar"; |
| 261 | reg = <0x24000 0x1000>; | 190 | reg = <0x24000 0x1000>; |
| 191 | ranges = <0x0 0x24000 0x1000>; | ||
| 262 | local-mac-address = [ 00 00 00 00 00 00 ]; | 192 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 263 | interrupts = <29 2 30 2 34 2>; | 193 | interrupts = <29 2 30 2 34 2>; |
| 264 | interrupt-parent = <&mpic>; | 194 | interrupt-parent = <&mpic>; |
| 265 | tbi-handle = <&tbi0>; | 195 | tbi-handle = <&tbi0>; |
| 266 | phy-handle = <&phy0>; | 196 | phy-handle = <&phy0>; |
| 267 | phy-connection-type = "rgmii-id"; | 197 | phy-connection-type = "rgmii-id"; |
| 198 | |||
| 199 | mdio@520 { | ||
| 200 | #address-cells = <1>; | ||
| 201 | #size-cells = <0>; | ||
| 202 | compatible = "fsl,gianfar-mdio"; | ||
| 203 | reg = <0x520 0x20>; | ||
| 204 | |||
| 205 | phy0: ethernet-phy@0 { | ||
| 206 | interrupt-parent = <&mpic>; | ||
| 207 | interrupts = <10 1>; | ||
| 208 | reg = <0>; | ||
| 209 | device_type = "ethernet-phy"; | ||
| 210 | }; | ||
| 211 | phy1: ethernet-phy@1 { | ||
| 212 | interrupt-parent = <&mpic>; | ||
| 213 | interrupts = <10 1>; | ||
| 214 | reg = <1>; | ||
| 215 | device_type = "ethernet-phy"; | ||
| 216 | }; | ||
| 217 | phy2: ethernet-phy@2 { | ||
| 218 | interrupt-parent = <&mpic>; | ||
| 219 | interrupts = <10 1>; | ||
| 220 | reg = <2>; | ||
| 221 | device_type = "ethernet-phy"; | ||
| 222 | }; | ||
| 223 | phy3: ethernet-phy@3 { | ||
| 224 | interrupt-parent = <&mpic>; | ||
| 225 | interrupts = <10 1>; | ||
| 226 | reg = <3>; | ||
| 227 | device_type = "ethernet-phy"; | ||
| 228 | }; | ||
| 229 | tbi0: tbi-phy@11 { | ||
| 230 | reg = <0x11>; | ||
| 231 | device_type = "tbi-phy"; | ||
| 232 | }; | ||
| 233 | }; | ||
| 268 | }; | 234 | }; |
| 269 | 235 | ||
| 270 | enet1: ethernet@25000 { | 236 | enet1: ethernet@25000 { |
| 237 | #address-cells = <1>; | ||
| 238 | #size-cells = <1>; | ||
| 271 | cell-index = <1>; | 239 | cell-index = <1>; |
| 272 | device_type = "network"; | 240 | device_type = "network"; |
| 273 | model = "TSEC"; | 241 | model = "TSEC"; |
| 274 | compatible = "gianfar"; | 242 | compatible = "gianfar"; |
| 275 | reg = <0x25000 0x1000>; | 243 | reg = <0x25000 0x1000>; |
| 244 | ranges = <0x0 0x25000 0x1000>; | ||
| 276 | local-mac-address = [ 00 00 00 00 00 00 ]; | 245 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 277 | interrupts = <35 2 36 2 40 2>; | 246 | interrupts = <35 2 36 2 40 2>; |
| 278 | interrupt-parent = <&mpic>; | 247 | interrupt-parent = <&mpic>; |
| 279 | tbi-handle = <&tbi1>; | 248 | tbi-handle = <&tbi1>; |
| 280 | phy-handle = <&phy1>; | 249 | phy-handle = <&phy1>; |
| 281 | phy-connection-type = "rgmii-id"; | 250 | phy-connection-type = "rgmii-id"; |
| 251 | |||
| 252 | mdio@520 { | ||
| 253 | #address-cells = <1>; | ||
| 254 | #size-cells = <0>; | ||
| 255 | compatible = "fsl,gianfar-tbi"; | ||
| 256 | reg = <0x520 0x20>; | ||
| 257 | |||
| 258 | tbi1: tbi-phy@11 { | ||
| 259 | reg = <0x11>; | ||
| 260 | device_type = "tbi-phy"; | ||
| 261 | }; | ||
| 262 | }; | ||
| 282 | }; | 263 | }; |
| 283 | 264 | ||
| 284 | enet2: ethernet@26000 { | 265 | enet2: ethernet@26000 { |
| 266 | #address-cells = <1>; | ||
| 267 | #size-cells = <1>; | ||
| 285 | cell-index = <2>; | 268 | cell-index = <2>; |
| 286 | device_type = "network"; | 269 | device_type = "network"; |
| 287 | model = "TSEC"; | 270 | model = "TSEC"; |
| 288 | compatible = "gianfar"; | 271 | compatible = "gianfar"; |
| 289 | reg = <0x26000 0x1000>; | 272 | reg = <0x26000 0x1000>; |
| 273 | ranges = <0x0 0x26000 0x1000>; | ||
| 290 | local-mac-address = [ 00 00 00 00 00 00 ]; | 274 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 291 | interrupts = <31 2 32 2 33 2>; | 275 | interrupts = <31 2 32 2 33 2>; |
| 292 | interrupt-parent = <&mpic>; | 276 | interrupt-parent = <&mpic>; |
| 293 | tbi-handle = <&tbi2>; | 277 | tbi-handle = <&tbi2>; |
| 294 | phy-handle = <&phy2>; | 278 | phy-handle = <&phy2>; |
| 295 | phy-connection-type = "rgmii-id"; | 279 | phy-connection-type = "rgmii-id"; |
| 280 | |||
| 281 | mdio@520 { | ||
| 282 | #address-cells = <1>; | ||
| 283 | #size-cells = <0>; | ||
| 284 | compatible = "fsl,gianfar-tbi"; | ||
| 285 | reg = <0x520 0x20>; | ||
| 286 | |||
| 287 | tbi2: tbi-phy@11 { | ||
| 288 | reg = <0x11>; | ||
| 289 | device_type = "tbi-phy"; | ||
| 290 | }; | ||
| 291 | }; | ||
| 296 | }; | 292 | }; |
| 297 | 293 | ||
| 298 | enet3: ethernet@27000 { | 294 | enet3: ethernet@27000 { |
| 295 | #address-cells = <1>; | ||
| 296 | #size-cells = <1>; | ||
| 299 | cell-index = <3>; | 297 | cell-index = <3>; |
| 300 | device_type = "network"; | 298 | device_type = "network"; |
| 301 | model = "TSEC"; | 299 | model = "TSEC"; |
| 302 | compatible = "gianfar"; | 300 | compatible = "gianfar"; |
| 303 | reg = <0x27000 0x1000>; | 301 | reg = <0x27000 0x1000>; |
| 302 | ranges = <0x0 0x27000 0x1000>; | ||
| 304 | local-mac-address = [ 00 00 00 00 00 00 ]; | 303 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 305 | interrupts = <37 2 38 2 39 2>; | 304 | interrupts = <37 2 38 2 39 2>; |
| 306 | interrupt-parent = <&mpic>; | 305 | interrupt-parent = <&mpic>; |
| 307 | tbi-handle = <&tbi3>; | 306 | tbi-handle = <&tbi3>; |
| 308 | phy-handle = <&phy3>; | 307 | phy-handle = <&phy3>; |
| 309 | phy-connection-type = "rgmii-id"; | 308 | phy-connection-type = "rgmii-id"; |
| 309 | |||
| 310 | mdio@520 { | ||
| 311 | #address-cells = <1>; | ||
| 312 | #size-cells = <0>; | ||
| 313 | compatible = "fsl,gianfar-tbi"; | ||
| 314 | reg = <0x520 0x20>; | ||
| 315 | |||
| 316 | tbi3: tbi-phy@11 { | ||
| 317 | reg = <0x11>; | ||
| 318 | device_type = "tbi-phy"; | ||
| 319 | }; | ||
| 320 | }; | ||
| 310 | }; | 321 | }; |
| 311 | 322 | ||
| 312 | serial0: serial@4500 { | 323 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/sbc8349.dts b/arch/powerpc/boot/dts/sbc8349.dts index 8d365a57ebc1..a36dbbc48694 100644 --- a/arch/powerpc/boot/dts/sbc8349.dts +++ b/arch/powerpc/boot/dts/sbc8349.dts | |||
| @@ -159,68 +159,76 @@ | |||
| 159 | phy_type = "ulpi"; | 159 | phy_type = "ulpi"; |
| 160 | }; | 160 | }; |
| 161 | 161 | ||
| 162 | mdio@24520 { | ||
| 163 | #address-cells = <1>; | ||
| 164 | #size-cells = <0>; | ||
| 165 | compatible = "fsl,gianfar-mdio"; | ||
| 166 | reg = <0x24520 0x20>; | ||
| 167 | |||
| 168 | phy0: ethernet-phy@19 { | ||
| 169 | interrupt-parent = <&ipic>; | ||
| 170 | interrupts = <20 0x8>; | ||
| 171 | reg = <0x19>; | ||
| 172 | device_type = "ethernet-phy"; | ||
| 173 | }; | ||
| 174 | phy1: ethernet-phy@1a { | ||
| 175 | interrupt-parent = <&ipic>; | ||
| 176 | interrupts = <21 0x8>; | ||
| 177 | reg = <0x1a>; | ||
| 178 | device_type = "ethernet-phy"; | ||
| 179 | }; | ||
| 180 | tbi0: tbi-phy@11 { | ||
| 181 | reg = <0x11>; | ||
| 182 | device_type = "tbi-phy"; | ||
| 183 | }; | ||
| 184 | }; | ||
| 185 | |||
| 186 | mdio@25520 { | ||
| 187 | #address-cells = <1>; | ||
| 188 | #size-cells = <0>; | ||
| 189 | compatible = "fsl,gianfar-tbi"; | ||
| 190 | reg = <0x25520 0x20>; | ||
| 191 | |||
| 192 | tbi1: tbi-phy@11 { | ||
| 193 | reg = <0x11>; | ||
| 194 | device_type = "tbi-phy"; | ||
| 195 | }; | ||
| 196 | }; | ||
| 197 | |||
| 198 | enet0: ethernet@24000 { | 162 | enet0: ethernet@24000 { |
| 163 | #address-cells = <1>; | ||
| 164 | #size-cells = <1>; | ||
| 199 | cell-index = <0>; | 165 | cell-index = <0>; |
| 200 | device_type = "network"; | 166 | device_type = "network"; |
| 201 | model = "TSEC"; | 167 | model = "TSEC"; |
| 202 | compatible = "gianfar"; | 168 | compatible = "gianfar"; |
| 203 | reg = <0x24000 0x1000>; | 169 | reg = <0x24000 0x1000>; |
| 170 | ranges = <0x0 0x24000 0x1000>; | ||
| 204 | local-mac-address = [ 00 00 00 00 00 00 ]; | 171 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 205 | interrupts = <32 0x8 33 0x8 34 0x8>; | 172 | interrupts = <32 0x8 33 0x8 34 0x8>; |
| 206 | interrupt-parent = <&ipic>; | 173 | interrupt-parent = <&ipic>; |
| 207 | tbi-handle = <&tbi0>; | 174 | tbi-handle = <&tbi0>; |
| 208 | phy-handle = <&phy0>; | 175 | phy-handle = <&phy0>; |
| 209 | linux,network-index = <0>; | 176 | linux,network-index = <0>; |
| 177 | |||
| 178 | mdio@520 { | ||
| 179 | #address-cells = <1>; | ||
| 180 | #size-cells = <0>; | ||
| 181 | compatible = "fsl,gianfar-mdio"; | ||
| 182 | reg = <0x520 0x20>; | ||
| 183 | |||
| 184 | phy0: ethernet-phy@19 { | ||
| 185 | interrupt-parent = <&ipic>; | ||
| 186 | interrupts = <20 0x8>; | ||
| 187 | reg = <0x19>; | ||
| 188 | device_type = "ethernet-phy"; | ||
| 189 | }; | ||
| 190 | |||
| 191 | phy1: ethernet-phy@1a { | ||
| 192 | interrupt-parent = <&ipic>; | ||
| 193 | interrupts = <21 0x8>; | ||
| 194 | reg = <0x1a>; | ||
| 195 | device_type = "ethernet-phy"; | ||
| 196 | }; | ||
| 197 | |||
| 198 | tbi0: tbi-phy@11 { | ||
| 199 | reg = <0x11>; | ||
| 200 | device_type = "tbi-phy"; | ||
| 201 | }; | ||
| 202 | }; | ||
| 210 | }; | 203 | }; |
| 211 | 204 | ||
| 212 | enet1: ethernet@25000 { | 205 | enet1: ethernet@25000 { |
| 206 | #address-cells = <1>; | ||
| 207 | #size-cells = <1>; | ||
| 213 | cell-index = <1>; | 208 | cell-index = <1>; |
| 214 | device_type = "network"; | 209 | device_type = "network"; |
| 215 | model = "TSEC"; | 210 | model = "TSEC"; |
| 216 | compatible = "gianfar"; | 211 | compatible = "gianfar"; |
| 217 | reg = <0x25000 0x1000>; | 212 | reg = <0x25000 0x1000>; |
| 213 | ranges = <0x0 0x25000 0x1000>; | ||
| 218 | local-mac-address = [ 00 00 00 00 00 00 ]; | 214 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 219 | interrupts = <35 0x8 36 0x8 37 0x8>; | 215 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 220 | interrupt-parent = <&ipic>; | 216 | interrupt-parent = <&ipic>; |
| 221 | tbi-handle = <&tbi1>; | 217 | tbi-handle = <&tbi1>; |
| 222 | phy-handle = <&phy1>; | 218 | phy-handle = <&phy1>; |
| 223 | linux,network-index = <1>; | 219 | linux,network-index = <1>; |
| 220 | |||
| 221 | mdio@520 { | ||
| 222 | #address-cells = <1>; | ||
| 223 | #size-cells = <0>; | ||
| 224 | compatible = "fsl,gianfar-tbi"; | ||
| 225 | reg = <0x520 0x20>; | ||
| 226 | |||
| 227 | tbi1: tbi-phy@11 { | ||
| 228 | reg = <0x11>; | ||
| 229 | device_type = "tbi-phy"; | ||
| 230 | }; | ||
| 231 | }; | ||
| 224 | }; | 232 | }; |
| 225 | 233 | ||
| 226 | serial0: serial@4500 { | 234 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/sbc8548.dts b/arch/powerpc/boot/dts/sbc8548.dts index 2baf4a51f224..9c5079fec4f2 100644 --- a/arch/powerpc/boot/dts/sbc8548.dts +++ b/arch/powerpc/boot/dts/sbc8548.dts | |||
| @@ -234,66 +234,72 @@ | |||
| 234 | }; | 234 | }; |
| 235 | }; | 235 | }; |
| 236 | 236 | ||
| 237 | mdio@24520 { | ||
| 238 | #address-cells = <1>; | ||
| 239 | #size-cells = <0>; | ||
| 240 | compatible = "fsl,gianfar-mdio"; | ||
| 241 | reg = <0x24520 0x20>; | ||
| 242 | |||
| 243 | phy0: ethernet-phy@19 { | ||
| 244 | interrupt-parent = <&mpic>; | ||
| 245 | interrupts = <0x6 0x1>; | ||
| 246 | reg = <0x19>; | ||
| 247 | device_type = "ethernet-phy"; | ||
| 248 | }; | ||
| 249 | phy1: ethernet-phy@1a { | ||
| 250 | interrupt-parent = <&mpic>; | ||
| 251 | interrupts = <0x7 0x1>; | ||
| 252 | reg = <0x1a>; | ||
| 253 | device_type = "ethernet-phy"; | ||
| 254 | }; | ||
| 255 | tbi0: tbi-phy@11 { | ||
| 256 | reg = <0x11>; | ||
| 257 | device_type = "tbi-phy"; | ||
| 258 | }; | ||
| 259 | }; | ||
| 260 | |||
| 261 | mdio@25520 { | ||
| 262 | #address-cells = <1>; | ||
| 263 | #size-cells = <0>; | ||
| 264 | compatible = "fsl,gianfar-tbi"; | ||
| 265 | reg = <0x25520 0x20>; | ||
| 266 | |||
| 267 | tbi1: tbi-phy@11 { | ||
| 268 | reg = <0x11>; | ||
| 269 | device_type = "tbi-phy"; | ||
| 270 | }; | ||
| 271 | }; | ||
| 272 | |||
| 273 | enet0: ethernet@24000 { | 237 | enet0: ethernet@24000 { |
| 238 | #address-cells = <1>; | ||
| 239 | #size-cells = <1>; | ||
| 274 | cell-index = <0>; | 240 | cell-index = <0>; |
| 275 | device_type = "network"; | 241 | device_type = "network"; |
| 276 | model = "eTSEC"; | 242 | model = "eTSEC"; |
| 277 | compatible = "gianfar"; | 243 | compatible = "gianfar"; |
| 278 | reg = <0x24000 0x1000>; | 244 | reg = <0x24000 0x1000>; |
| 245 | ranges = <0x0 0x24000 0x1000>; | ||
| 279 | local-mac-address = [ 00 00 00 00 00 00 ]; | 246 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 280 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; | 247 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; |
| 281 | interrupt-parent = <&mpic>; | 248 | interrupt-parent = <&mpic>; |
| 282 | tbi-handle = <&tbi0>; | 249 | tbi-handle = <&tbi0>; |
| 283 | phy-handle = <&phy0>; | 250 | phy-handle = <&phy0>; |
| 251 | |||
| 252 | mdio@520 { | ||
| 253 | #address-cells = <1>; | ||
| 254 | #size-cells = <0>; | ||
| 255 | compatible = "fsl,gianfar-mdio"; | ||
| 256 | reg = <0x520 0x20>; | ||
| 257 | |||
| 258 | phy0: ethernet-phy@19 { | ||
| 259 | interrupt-parent = <&mpic>; | ||
| 260 | interrupts = <0x6 0x1>; | ||
| 261 | reg = <0x19>; | ||
| 262 | device_type = "ethernet-phy"; | ||
| 263 | }; | ||
| 264 | phy1: ethernet-phy@1a { | ||
| 265 | interrupt-parent = <&mpic>; | ||
| 266 | interrupts = <0x7 0x1>; | ||
| 267 | reg = <0x1a>; | ||
| 268 | device_type = "ethernet-phy"; | ||
| 269 | }; | ||
| 270 | tbi0: tbi-phy@11 { | ||
| 271 | reg = <0x11>; | ||
| 272 | device_type = "tbi-phy"; | ||
| 273 | }; | ||
| 274 | }; | ||
| 284 | }; | 275 | }; |
| 285 | 276 | ||
| 286 | enet1: ethernet@25000 { | 277 | enet1: ethernet@25000 { |
| 278 | #address-cells = <1>; | ||
| 279 | #size-cells = <1>; | ||
| 287 | cell-index = <1>; | 280 | cell-index = <1>; |
| 288 | device_type = "network"; | 281 | device_type = "network"; |
| 289 | model = "eTSEC"; | 282 | model = "eTSEC"; |
| 290 | compatible = "gianfar"; | 283 | compatible = "gianfar"; |
| 291 | reg = <0x25000 0x1000>; | 284 | reg = <0x25000 0x1000>; |
| 285 | ranges = <0x0 0x25000 0x1000>; | ||
| 292 | local-mac-address = [ 00 00 00 00 00 00 ]; | 286 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 293 | interrupts = <0x23 0x2 0x24 0x2 0x28 0x2>; | 287 | interrupts = <0x23 0x2 0x24 0x2 0x28 0x2>; |
| 294 | interrupt-parent = <&mpic>; | 288 | interrupt-parent = <&mpic>; |
| 295 | tbi-handle = <&tbi1>; | 289 | tbi-handle = <&tbi1>; |
| 296 | phy-handle = <&phy1>; | 290 | phy-handle = <&phy1>; |
| 291 | |||
| 292 | mdio@520 { | ||
| 293 | #address-cells = <1>; | ||
| 294 | #size-cells = <0>; | ||
| 295 | compatible = "fsl,gianfar-tbi"; | ||
| 296 | reg = <0x520 0x20>; | ||
| 297 | |||
| 298 | tbi1: tbi-phy@11 { | ||
| 299 | reg = <0x11>; | ||
| 300 | device_type = "tbi-phy"; | ||
| 301 | }; | ||
| 302 | }; | ||
| 297 | }; | 303 | }; |
| 298 | 304 | ||
| 299 | serial0: serial@4500 { | 305 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/sbc8560.dts b/arch/powerpc/boot/dts/sbc8560.dts index 01542f7062ab..b772405a9a0a 100644 --- a/arch/powerpc/boot/dts/sbc8560.dts +++ b/arch/powerpc/boot/dts/sbc8560.dts | |||
| @@ -139,77 +139,83 @@ | |||
| 139 | }; | 139 | }; |
| 140 | }; | 140 | }; |
| 141 | 141 | ||
| 142 | mdio@24520 { | ||
| 143 | #address-cells = <1>; | ||
| 144 | #size-cells = <0>; | ||
| 145 | compatible = "fsl,gianfar-mdio"; | ||
| 146 | reg = <0x24520 0x20>; | ||
| 147 | phy0: ethernet-phy@19 { | ||
| 148 | interrupt-parent = <&mpic>; | ||
| 149 | interrupts = <0x6 0x1>; | ||
| 150 | reg = <0x19>; | ||
| 151 | device_type = "ethernet-phy"; | ||
| 152 | }; | ||
| 153 | phy1: ethernet-phy@1a { | ||
| 154 | interrupt-parent = <&mpic>; | ||
| 155 | interrupts = <0x7 0x1>; | ||
| 156 | reg = <0x1a>; | ||
| 157 | device_type = "ethernet-phy"; | ||
| 158 | }; | ||
| 159 | phy2: ethernet-phy@1b { | ||
| 160 | interrupt-parent = <&mpic>; | ||
| 161 | interrupts = <0x8 0x1>; | ||
| 162 | reg = <0x1b>; | ||
| 163 | device_type = "ethernet-phy"; | ||
| 164 | }; | ||
| 165 | phy3: ethernet-phy@1c { | ||
| 166 | interrupt-parent = <&mpic>; | ||
| 167 | interrupts = <0x8 0x1>; | ||
| 168 | reg = <0x1c>; | ||
| 169 | device_type = "ethernet-phy"; | ||
| 170 | }; | ||
| 171 | tbi0: tbi-phy@11 { | ||
| 172 | reg = <0x11>; | ||
| 173 | device_type = "tbi-phy"; | ||
| 174 | }; | ||
| 175 | }; | ||
| 176 | |||
| 177 | mdio@25520 { | ||
| 178 | #address-cells = <1>; | ||
| 179 | #size-cells = <0>; | ||
| 180 | compatible = "fsl,gianfar-tbi"; | ||
| 181 | reg = <0x25520 0x20>; | ||
| 182 | |||
| 183 | tbi1: tbi-phy@11 { | ||
| 184 | reg = <0x11>; | ||
| 185 | device_type = "tbi-phy"; | ||
| 186 | }; | ||
| 187 | }; | ||
| 188 | |||
| 189 | enet0: ethernet@24000 { | 142 | enet0: ethernet@24000 { |
| 143 | #address-cells = <1>; | ||
| 144 | #size-cells = <1>; | ||
| 190 | cell-index = <0>; | 145 | cell-index = <0>; |
| 191 | device_type = "network"; | 146 | device_type = "network"; |
| 192 | model = "TSEC"; | 147 | model = "TSEC"; |
| 193 | compatible = "gianfar"; | 148 | compatible = "gianfar"; |
| 194 | reg = <0x24000 0x1000>; | 149 | reg = <0x24000 0x1000>; |
| 150 | ranges = <0x0 0x24000 0x1000>; | ||
| 195 | local-mac-address = [ 00 00 00 00 00 00 ]; | 151 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 196 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; | 152 | interrupts = <0x1d 0x2 0x1e 0x2 0x22 0x2>; |
| 197 | interrupt-parent = <&mpic>; | 153 | interrupt-parent = <&mpic>; |
| 198 | tbi-handle = <&tbi0>; | 154 | tbi-handle = <&tbi0>; |
| 199 | phy-handle = <&phy0>; | 155 | phy-handle = <&phy0>; |
| 156 | |||
| 157 | mdio@520 { | ||
| 158 | #address-cells = <1>; | ||
| 159 | #size-cells = <0>; | ||
| 160 | compatible = "fsl,gianfar-mdio"; | ||
| 161 | reg = <0x520 0x20>; | ||
| 162 | phy0: ethernet-phy@19 { | ||
| 163 | interrupt-parent = <&mpic>; | ||
| 164 | interrupts = <0x6 0x1>; | ||
| 165 | reg = <0x19>; | ||
| 166 | device_type = "ethernet-phy"; | ||
| 167 | }; | ||
| 168 | phy1: ethernet-phy@1a { | ||
| 169 | interrupt-parent = <&mpic>; | ||
| 170 | interrupts = <0x7 0x1>; | ||
| 171 | reg = <0x1a>; | ||
| 172 | device_type = "ethernet-phy"; | ||
| 173 | }; | ||
| 174 | phy2: ethernet-phy@1b { | ||
| 175 | interrupt-parent = <&mpic>; | ||
| 176 | interrupts = <0x8 0x1>; | ||
| 177 | reg = <0x1b>; | ||
| 178 | device_type = "ethernet-phy"; | ||
| 179 | }; | ||
| 180 | phy3: ethernet-phy@1c { | ||
| 181 | interrupt-parent = <&mpic>; | ||
| 182 | interrupts = <0x8 0x1>; | ||
| 183 | reg = <0x1c>; | ||
| 184 | device_type = "ethernet-phy"; | ||
| 185 | }; | ||
| 186 | tbi0: tbi-phy@11 { | ||
| 187 | reg = <0x11>; | ||
| 188 | device_type = "tbi-phy"; | ||
| 189 | }; | ||
| 190 | }; | ||
| 200 | }; | 191 | }; |
| 201 | 192 | ||
| 202 | enet1: ethernet@25000 { | 193 | enet1: ethernet@25000 { |
| 194 | #address-cells = <1>; | ||
| 195 | #size-cells = <1>; | ||
| 203 | cell-index = <1>; | 196 | cell-index = <1>; |
| 204 | device_type = "network"; | 197 | device_type = "network"; |
| 205 | model = "TSEC"; | 198 | model = "TSEC"; |
| 206 | compatible = "gianfar"; | 199 | compatible = "gianfar"; |
| 207 | reg = <0x25000 0x1000>; | 200 | reg = <0x25000 0x1000>; |
| 201 | ranges = <0x0 0x25000 0x1000>; | ||
| 208 | local-mac-address = [ 00 00 00 00 00 00 ]; | 202 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 209 | interrupts = <0x23 0x2 0x24 0x2 0x28 0x2>; | 203 | interrupts = <0x23 0x2 0x24 0x2 0x28 0x2>; |
| 210 | interrupt-parent = <&mpic>; | 204 | interrupt-parent = <&mpic>; |
| 211 | tbi-handle = <&tbi1>; | 205 | tbi-handle = <&tbi1>; |
| 212 | phy-handle = <&phy1>; | 206 | phy-handle = <&phy1>; |
| 207 | |||
| 208 | mdio@520 { | ||
| 209 | #address-cells = <1>; | ||
| 210 | #size-cells = <0>; | ||
| 211 | compatible = "fsl,gianfar-tbi"; | ||
| 212 | reg = <0x520 0x20>; | ||
| 213 | |||
| 214 | tbi1: tbi-phy@11 { | ||
| 215 | reg = <0x11>; | ||
| 216 | device_type = "tbi-phy"; | ||
| 217 | }; | ||
| 218 | }; | ||
| 213 | }; | 219 | }; |
| 214 | 220 | ||
| 215 | mpic: pic@40000 { | 221 | mpic: pic@40000 { |
diff --git a/arch/powerpc/boot/dts/sbc8641d.dts b/arch/powerpc/boot/dts/sbc8641d.dts index 36db981548e4..e3e914e78caa 100644 --- a/arch/powerpc/boot/dts/sbc8641d.dts +++ b/arch/powerpc/boot/dts/sbc8641d.dts | |||
| @@ -192,132 +192,144 @@ | |||
| 192 | }; | 192 | }; |
| 193 | }; | 193 | }; |
| 194 | 194 | ||
| 195 | mdio@24520 { | ||
| 196 | #address-cells = <1>; | ||
| 197 | #size-cells = <0>; | ||
| 198 | compatible = "fsl,gianfar-mdio"; | ||
| 199 | reg = <0x24520 0x20>; | ||
| 200 | |||
| 201 | phy0: ethernet-phy@1f { | ||
| 202 | interrupt-parent = <&mpic>; | ||
| 203 | interrupts = <10 1>; | ||
| 204 | reg = <0x1f>; | ||
| 205 | device_type = "ethernet-phy"; | ||
| 206 | }; | ||
| 207 | phy1: ethernet-phy@0 { | ||
| 208 | interrupt-parent = <&mpic>; | ||
| 209 | interrupts = <10 1>; | ||
| 210 | reg = <0>; | ||
| 211 | device_type = "ethernet-phy"; | ||
| 212 | }; | ||
| 213 | phy2: ethernet-phy@1 { | ||
| 214 | interrupt-parent = <&mpic>; | ||
| 215 | interrupts = <10 1>; | ||
| 216 | reg = <1>; | ||
| 217 | device_type = "ethernet-phy"; | ||
| 218 | }; | ||
| 219 | phy3: ethernet-phy@2 { | ||
| 220 | interrupt-parent = <&mpic>; | ||
| 221 | interrupts = <10 1>; | ||
| 222 | reg = <2>; | ||
| 223 | device_type = "ethernet-phy"; | ||
| 224 | }; | ||
| 225 | tbi0: tbi-phy@11 { | ||
| 226 | reg = <0x11>; | ||
| 227 | device_type = "tbi-phy"; | ||
| 228 | }; | ||
| 229 | }; | ||
| 230 | |||
| 231 | mdio@25520 { | ||
| 232 | #address-cells = <1>; | ||
| 233 | #size-cells = <0>; | ||
| 234 | compatible = "fsl,gianfar-tbi"; | ||
| 235 | reg = <0x25520 0x20>; | ||
| 236 | |||
| 237 | tbi1: tbi-phy@11 { | ||
| 238 | reg = <0x11>; | ||
| 239 | device_type = "tbi-phy"; | ||
| 240 | }; | ||
| 241 | }; | ||
| 242 | |||
| 243 | mdio@26520 { | ||
| 244 | #address-cells = <1>; | ||
| 245 | #size-cells = <0>; | ||
| 246 | compatible = "fsl,gianfar-tbi"; | ||
| 247 | reg = <0x26520 0x20>; | ||
| 248 | |||
| 249 | tbi2: tbi-phy@11 { | ||
| 250 | reg = <0x11>; | ||
| 251 | device_type = "tbi-phy"; | ||
| 252 | }; | ||
| 253 | }; | ||
| 254 | |||
| 255 | mdio@27520 { | ||
| 256 | #address-cells = <1>; | ||
| 257 | #size-cells = <0>; | ||
| 258 | compatible = "fsl,gianfar-tbi"; | ||
| 259 | reg = <0x27520 0x20>; | ||
| 260 | |||
| 261 | tbi3: tbi-phy@11 { | ||
| 262 | reg = <0x11>; | ||
| 263 | device_type = "tbi-phy"; | ||
| 264 | }; | ||
| 265 | }; | ||
| 266 | |||
| 267 | enet0: ethernet@24000 { | 195 | enet0: ethernet@24000 { |
| 196 | #address-cells = <1>; | ||
| 197 | #size-cells = <1>; | ||
| 268 | cell-index = <0>; | 198 | cell-index = <0>; |
| 269 | device_type = "network"; | 199 | device_type = "network"; |
| 270 | model = "TSEC"; | 200 | model = "TSEC"; |
| 271 | compatible = "gianfar"; | 201 | compatible = "gianfar"; |
| 272 | reg = <0x24000 0x1000>; | 202 | reg = <0x24000 0x1000>; |
| 203 | ranges = <0x0 0x24000 0x1000>; | ||
| 273 | local-mac-address = [ 00 00 00 00 00 00 ]; | 204 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 274 | interrupts = <29 2 30 2 34 2>; | 205 | interrupts = <29 2 30 2 34 2>; |
| 275 | interrupt-parent = <&mpic>; | 206 | interrupt-parent = <&mpic>; |
| 276 | tbi-handle = <&tbi0>; | 207 | tbi-handle = <&tbi0>; |
| 277 | phy-handle = <&phy0>; | 208 | phy-handle = <&phy0>; |
| 278 | phy-connection-type = "rgmii-id"; | 209 | phy-connection-type = "rgmii-id"; |
| 210 | |||
| 211 | mdio@520 { | ||
| 212 | #address-cells = <1>; | ||
| 213 | #size-cells = <0>; | ||
| 214 | compatible = "fsl,gianfar-mdio"; | ||
| 215 | reg = <0x520 0x20>; | ||
| 216 | |||
| 217 | phy0: ethernet-phy@1f { | ||
| 218 | interrupt-parent = <&mpic>; | ||
| 219 | interrupts = <10 1>; | ||
| 220 | reg = <0x1f>; | ||
| 221 | device_type = "ethernet-phy"; | ||
| 222 | }; | ||
| 223 | phy1: ethernet-phy@0 { | ||
| 224 | interrupt-parent = <&mpic>; | ||
| 225 | interrupts = <10 1>; | ||
| 226 | reg = <0>; | ||
| 227 | device_type = "ethernet-phy"; | ||
| 228 | }; | ||
| 229 | phy2: ethernet-phy@1 { | ||
| 230 | interrupt-parent = <&mpic>; | ||
| 231 | interrupts = <10 1>; | ||
| 232 | reg = <1>; | ||
| 233 | device_type = "ethernet-phy"; | ||
| 234 | }; | ||
| 235 | phy3: ethernet-phy@2 { | ||
| 236 | interrupt-parent = <&mpic>; | ||
| 237 | interrupts = <10 1>; | ||
| 238 | reg = <2>; | ||
| 239 | device_type = "ethernet-phy"; | ||
| 240 | }; | ||
| 241 | tbi0: tbi-phy@11 { | ||
| 242 | reg = <0x11>; | ||
| 243 | device_type = "tbi-phy"; | ||
| 244 | }; | ||
| 245 | }; | ||
| 279 | }; | 246 | }; |
| 280 | 247 | ||
| 281 | enet1: ethernet@25000 { | 248 | enet1: ethernet@25000 { |
| 249 | #address-cells = <1>; | ||
| 250 | #size-cells = <1>; | ||
| 282 | cell-index = <1>; | 251 | cell-index = <1>; |
| 283 | device_type = "network"; | 252 | device_type = "network"; |
| 284 | model = "TSEC"; | 253 | model = "TSEC"; |
| 285 | compatible = "gianfar"; | 254 | compatible = "gianfar"; |
| 286 | reg = <0x25000 0x1000>; | 255 | reg = <0x25000 0x1000>; |
| 256 | ranges = <0x0 0x25000 0x1000>; | ||
| 287 | local-mac-address = [ 00 00 00 00 00 00 ]; | 257 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 288 | interrupts = <35 2 36 2 40 2>; | 258 | interrupts = <35 2 36 2 40 2>; |
| 289 | interrupt-parent = <&mpic>; | 259 | interrupt-parent = <&mpic>; |
| 290 | tbi-handle = <&tbi1>; | 260 | tbi-handle = <&tbi1>; |
| 291 | phy-handle = <&phy1>; | 261 | phy-handle = <&phy1>; |
| 292 | phy-connection-type = "rgmii-id"; | 262 | phy-connection-type = "rgmii-id"; |
| 263 | |||
| 264 | mdio@520 { | ||
| 265 | #address-cells = <1>; | ||
| 266 | #size-cells = <0>; | ||
| 267 | compatible = "fsl,gianfar-tbi"; | ||
| 268 | reg = <0x520 0x20>; | ||
| 269 | |||
| 270 | tbi1: tbi-phy@11 { | ||
| 271 | reg = <0x11>; | ||
| 272 | device_type = "tbi-phy"; | ||
| 273 | }; | ||
| 274 | }; | ||
| 293 | }; | 275 | }; |
| 294 | 276 | ||
| 295 | enet2: ethernet@26000 { | 277 | enet2: ethernet@26000 { |
| 278 | #address-cells = <1>; | ||
| 279 | #size-cells = <1>; | ||
| 296 | cell-index = <2>; | 280 | cell-index = <2>; |
| 297 | device_type = "network"; | 281 | device_type = "network"; |
| 298 | model = "TSEC"; | 282 | model = "TSEC"; |
| 299 | compatible = "gianfar"; | 283 | compatible = "gianfar"; |
| 300 | reg = <0x26000 0x1000>; | 284 | reg = <0x26000 0x1000>; |
| 285 | ranges = <0x0 0x26000 0x1000>; | ||
| 301 | local-mac-address = [ 00 00 00 00 00 00 ]; | 286 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 302 | interrupts = <31 2 32 2 33 2>; | 287 | interrupts = <31 2 32 2 33 2>; |
| 303 | interrupt-parent = <&mpic>; | 288 | interrupt-parent = <&mpic>; |
| 304 | tbi-handle = <&tbi2>; | 289 | tbi-handle = <&tbi2>; |
| 305 | phy-handle = <&phy2>; | 290 | phy-handle = <&phy2>; |
| 306 | phy-connection-type = "rgmii-id"; | 291 | phy-connection-type = "rgmii-id"; |
| 292 | |||
| 293 | mdio@520 { | ||
| 294 | #address-cells = <1>; | ||
| 295 | #size-cells = <0>; | ||
| 296 | compatible = "fsl,gianfar-tbi"; | ||
| 297 | reg = <0x520 0x20>; | ||
| 298 | |||
| 299 | tbi2: tbi-phy@11 { | ||
| 300 | reg = <0x11>; | ||
| 301 | device_type = "tbi-phy"; | ||
| 302 | }; | ||
| 303 | }; | ||
| 307 | }; | 304 | }; |
| 308 | 305 | ||
| 309 | enet3: ethernet@27000 { | 306 | enet3: ethernet@27000 { |
| 307 | #address-cells = <1>; | ||
| 308 | #size-cells = <1>; | ||
| 310 | cell-index = <3>; | 309 | cell-index = <3>; |
| 311 | device_type = "network"; | 310 | device_type = "network"; |
| 312 | model = "TSEC"; | 311 | model = "TSEC"; |
| 313 | compatible = "gianfar"; | 312 | compatible = "gianfar"; |
| 314 | reg = <0x27000 0x1000>; | 313 | reg = <0x27000 0x1000>; |
| 314 | ranges = <0x0 0x27000 0x1000>; | ||
| 315 | local-mac-address = [ 00 00 00 00 00 00 ]; | 315 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 316 | interrupts = <37 2 38 2 39 2>; | 316 | interrupts = <37 2 38 2 39 2>; |
| 317 | interrupt-parent = <&mpic>; | 317 | interrupt-parent = <&mpic>; |
| 318 | tbi-handle = <&tbi3>; | 318 | tbi-handle = <&tbi3>; |
| 319 | phy-handle = <&phy3>; | 319 | phy-handle = <&phy3>; |
| 320 | phy-connection-type = "rgmii-id"; | 320 | phy-connection-type = "rgmii-id"; |
| 321 | |||
| 322 | mdio@520 { | ||
| 323 | #address-cells = <1>; | ||
| 324 | #size-cells = <0>; | ||
| 325 | compatible = "fsl,gianfar-tbi"; | ||
| 326 | reg = <0x520 0x20>; | ||
| 327 | |||
| 328 | tbi3: tbi-phy@11 { | ||
| 329 | reg = <0x11>; | ||
| 330 | device_type = "tbi-phy"; | ||
| 331 | }; | ||
| 332 | }; | ||
| 321 | }; | 333 | }; |
| 322 | 334 | ||
| 323 | serial0: serial@4500 { | 335 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/socrates.dts b/arch/powerpc/boot/dts/socrates.dts new file mode 100644 index 000000000000..b8d0fc6f0042 --- /dev/null +++ b/arch/powerpc/boot/dts/socrates.dts | |||
| @@ -0,0 +1,338 @@ | |||
| 1 | /* | ||
| 2 | * Device Tree Source for the Socrates board (MPC8544). | ||
| 3 | * | ||
| 4 | * Copyright (c) 2008 Emcraft Systems. | ||
| 5 | * Sergei Poselenov, <sposelenov@emcraft.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU General Public License as published by the | ||
| 9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 10 | * option) any later version. | ||
| 11 | */ | ||
| 12 | |||
| 13 | /dts-v1/; | ||
| 14 | |||
| 15 | / { | ||
| 16 | model = "abb,socrates"; | ||
| 17 | compatible = "abb,socrates"; | ||
| 18 | #address-cells = <1>; | ||
| 19 | #size-cells = <1>; | ||
| 20 | |||
| 21 | aliases { | ||
| 22 | ethernet0 = &enet0; | ||
| 23 | ethernet1 = &enet1; | ||
| 24 | serial0 = &serial0; | ||
| 25 | serial1 = &serial1; | ||
| 26 | pci0 = &pci0; | ||
| 27 | }; | ||
| 28 | |||
| 29 | cpus { | ||
| 30 | #address-cells = <1>; | ||
| 31 | #size-cells = <0>; | ||
| 32 | |||
| 33 | PowerPC,8544@0 { | ||
| 34 | device_type = "cpu"; | ||
| 35 | reg = <0>; | ||
| 36 | d-cache-line-size = <32>; | ||
| 37 | i-cache-line-size = <32>; | ||
| 38 | d-cache-size = <0x8000>; // L1, 32K | ||
| 39 | i-cache-size = <0x8000>; // L1, 32K | ||
| 40 | timebase-frequency = <0>; | ||
| 41 | bus-frequency = <0>; | ||
| 42 | clock-frequency = <0>; | ||
| 43 | next-level-cache = <&L2>; | ||
| 44 | }; | ||
| 45 | }; | ||
| 46 | |||
| 47 | memory { | ||
| 48 | device_type = "memory"; | ||
| 49 | reg = <0x00000000 0x00000000>; // Filled in by U-Boot | ||
| 50 | }; | ||
| 51 | |||
| 52 | soc8544@e0000000 { | ||
| 53 | #address-cells = <1>; | ||
| 54 | #size-cells = <1>; | ||
| 55 | |||
| 56 | ranges = <0x00000000 0xe0000000 0x00100000>; | ||
| 57 | reg = <0xe0000000 0x00001000>; // CCSRBAR 1M | ||
| 58 | bus-frequency = <0>; // Filled in by U-Boot | ||
| 59 | compatible = "fsl,mpc8544-immr", "simple-bus"; | ||
| 60 | |||
| 61 | memory-controller@2000 { | ||
| 62 | compatible = "fsl,mpc8544-memory-controller"; | ||
| 63 | reg = <0x2000 0x1000>; | ||
| 64 | interrupt-parent = <&mpic>; | ||
| 65 | interrupts = <18 2>; | ||
| 66 | }; | ||
| 67 | |||
| 68 | L2: l2-cache-controller@20000 { | ||
| 69 | compatible = "fsl,mpc8544-l2-cache-controller"; | ||
| 70 | reg = <0x20000 0x1000>; | ||
| 71 | cache-line-size = <32>; | ||
| 72 | cache-size = <0x40000>; // L2, 256K | ||
| 73 | interrupt-parent = <&mpic>; | ||
| 74 | interrupts = <16 2>; | ||
| 75 | }; | ||
| 76 | |||
| 77 | i2c@3000 { | ||
| 78 | #address-cells = <1>; | ||
| 79 | #size-cells = <0>; | ||
| 80 | cell-index = <0>; | ||
| 81 | compatible = "fsl-i2c"; | ||
| 82 | reg = <0x3000 0x100>; | ||
| 83 | interrupts = <43 2>; | ||
| 84 | interrupt-parent = <&mpic>; | ||
| 85 | dfsrr; | ||
| 86 | |||
| 87 | dtt@28 { | ||
| 88 | compatible = "winbond,w83782d"; | ||
| 89 | reg = <0x28>; | ||
| 90 | }; | ||
| 91 | rtc@32 { | ||
| 92 | compatible = "epson,rx8025"; | ||
| 93 | reg = <0x32>; | ||
| 94 | interrupts = <7 1>; | ||
| 95 | interrupt-parent = <&mpic>; | ||
| 96 | }; | ||
| 97 | dtt@4c { | ||
| 98 | compatible = "dallas,ds75"; | ||
| 99 | reg = <0x4c>; | ||
| 100 | }; | ||
| 101 | ts@4a { | ||
| 102 | compatible = "ti,tsc2003"; | ||
| 103 | reg = <0x4a>; | ||
| 104 | interrupt-parent = <&mpic>; | ||
| 105 | interrupts = <8 1>; | ||
| 106 | }; | ||
| 107 | }; | ||
| 108 | |||
| 109 | i2c@3100 { | ||
| 110 | #address-cells = <1>; | ||
| 111 | #size-cells = <0>; | ||
| 112 | cell-index = <1>; | ||
| 113 | compatible = "fsl-i2c"; | ||
| 114 | reg = <0x3100 0x100>; | ||
| 115 | interrupts = <43 2>; | ||
| 116 | interrupt-parent = <&mpic>; | ||
| 117 | dfsrr; | ||
| 118 | }; | ||
| 119 | |||
| 120 | enet0: ethernet@24000 { | ||
| 121 | #address-cells = <1>; | ||
| 122 | #size-cells = <1>; | ||
| 123 | cell-index = <0>; | ||
| 124 | device_type = "network"; | ||
| 125 | model = "eTSEC"; | ||
| 126 | compatible = "gianfar"; | ||
| 127 | reg = <0x24000 0x1000>; | ||
| 128 | ranges = <0x0 0x24000 0x1000>; | ||
| 129 | local-mac-address = [ 00 00 00 00 00 00 ]; | ||
| 130 | interrupts = <29 2 30 2 34 2>; | ||
| 131 | interrupt-parent = <&mpic>; | ||
| 132 | phy-handle = <&phy0>; | ||
| 133 | tbi-handle = <&tbi0>; | ||
| 134 | phy-connection-type = "rgmii-id"; | ||
| 135 | |||
| 136 | mdio@520 { | ||
| 137 | #address-cells = <1>; | ||
| 138 | #size-cells = <0>; | ||
| 139 | compatible = "fsl,gianfar-mdio"; | ||
| 140 | reg = <0x520 0x20>; | ||
| 141 | |||
| 142 | phy0: ethernet-phy@0 { | ||
| 143 | interrupt-parent = <&mpic>; | ||
| 144 | interrupts = <0 1>; | ||
| 145 | reg = <0>; | ||
| 146 | }; | ||
| 147 | phy1: ethernet-phy@1 { | ||
| 148 | interrupt-parent = <&mpic>; | ||
| 149 | interrupts = <0 1>; | ||
| 150 | reg = <1>; | ||
| 151 | }; | ||
| 152 | tbi0: tbi-phy@11 { | ||
| 153 | reg = <0x11>; | ||
| 154 | }; | ||
| 155 | }; | ||
| 156 | }; | ||
| 157 | |||
| 158 | enet1: ethernet@26000 { | ||
| 159 | #address-cells = <1>; | ||
| 160 | #size-cells = <1>; | ||
| 161 | cell-index = <1>; | ||
| 162 | device_type = "network"; | ||
| 163 | model = "eTSEC"; | ||
| 164 | compatible = "gianfar"; | ||
| 165 | reg = <0x26000 0x1000>; | ||
| 166 | ranges = <0x0 0x26000 0x1000>; | ||
| 167 | local-mac-address = [ 00 00 00 00 00 00 ]; | ||
| 168 | interrupts = <31 2 32 2 33 2>; | ||
| 169 | interrupt-parent = <&mpic>; | ||
| 170 | phy-handle = <&phy1>; | ||
| 171 | tbi-handle = <&tbi1>; | ||
| 172 | phy-connection-type = "rgmii-id"; | ||
| 173 | |||
| 174 | mdio@520 { | ||
| 175 | #address-cells = <1>; | ||
| 176 | #size-cells = <0>; | ||
| 177 | compatible = "fsl,gianfar-tbi"; | ||
| 178 | reg = <0x520 0x20>; | ||
| 179 | |||
| 180 | tbi1: tbi-phy@11 { | ||
| 181 | reg = <0x11>; | ||
| 182 | }; | ||
| 183 | }; | ||
| 184 | }; | ||
| 185 | |||
| 186 | serial0: serial@4500 { | ||
| 187 | cell-index = <0>; | ||
| 188 | device_type = "serial"; | ||
| 189 | compatible = "ns16550"; | ||
| 190 | reg = <0x4500 0x100>; | ||
| 191 | clock-frequency = <0>; | ||
| 192 | interrupts = <42 2>; | ||
| 193 | interrupt-parent = <&mpic>; | ||
| 194 | }; | ||
| 195 | |||
| 196 | serial1: serial@4600 { | ||
| 197 | cell-index = <1>; | ||
| 198 | device_type = "serial"; | ||
| 199 | compatible = "ns16550"; | ||
| 200 | reg = <0x4600 0x100>; | ||
| 201 | clock-frequency = <0>; | ||
| 202 | interrupts = <42 2>; | ||
| 203 | interrupt-parent = <&mpic>; | ||
| 204 | }; | ||
| 205 | |||
| 206 | global-utilities@e0000 { //global utilities block | ||
| 207 | compatible = "fsl,mpc8548-guts"; | ||
| 208 | reg = <0xe0000 0x1000>; | ||
| 209 | fsl,has-rstcr; | ||
| 210 | }; | ||
| 211 | |||
| 212 | mpic: pic@40000 { | ||
| 213 | interrupt-controller; | ||
| 214 | #address-cells = <0>; | ||
| 215 | #interrupt-cells = <2>; | ||
| 216 | reg = <0x40000 0x40000>; | ||
| 217 | compatible = "chrp,open-pic"; | ||
| 218 | device_type = "open-pic"; | ||
| 219 | }; | ||
| 220 | }; | ||
| 221 | |||
| 222 | |||
| 223 | localbus { | ||
| 224 | compatible = "fsl,mpc8544-localbus", | ||
| 225 | "fsl,pq3-localbus", | ||
| 226 | "simple-bus"; | ||
| 227 | #address-cells = <2>; | ||
| 228 | #size-cells = <1>; | ||
| 229 | reg = <0xe0005000 0x40>; | ||
| 230 | |||
| 231 | ranges = <0 0 0xfc000000 0x04000000 | ||
| 232 | 2 0 0xc8000000 0x04000000 | ||
| 233 | 3 0 0xc0000000 0x00100000 | ||
| 234 | >; /* Overwritten by U-Boot */ | ||
| 235 | |||
| 236 | nor_flash@0,0 { | ||
| 237 | compatible = "amd,s29gl256n", "cfi-flash"; | ||
| 238 | bank-width = <2>; | ||
| 239 | reg = <0x0 0x000000 0x4000000>; | ||
| 240 | #address-cells = <1>; | ||
| 241 | #size-cells = <1>; | ||
| 242 | partition@0 { | ||
| 243 | label = "kernel"; | ||
| 244 | reg = <0x0 0x1e0000>; | ||
| 245 | read-only; | ||
| 246 | }; | ||
| 247 | partition@1e0000 { | ||
| 248 | label = "dtb"; | ||
| 249 | reg = <0x1e0000 0x20000>; | ||
| 250 | }; | ||
| 251 | partition@200000 { | ||
| 252 | label = "root"; | ||
| 253 | reg = <0x200000 0x200000>; | ||
| 254 | }; | ||
| 255 | partition@400000 { | ||
| 256 | label = "user"; | ||
| 257 | reg = <0x400000 0x3b80000>; | ||
| 258 | }; | ||
| 259 | partition@3f80000 { | ||
| 260 | label = "env"; | ||
| 261 | reg = <0x3f80000 0x40000>; | ||
| 262 | read-only; | ||
| 263 | }; | ||
| 264 | partition@3fc0000 { | ||
| 265 | label = "u-boot"; | ||
| 266 | reg = <0x3fc0000 0x40000>; | ||
| 267 | read-only; | ||
| 268 | }; | ||
| 269 | }; | ||
| 270 | |||
| 271 | display@2,0 { | ||
| 272 | compatible = "fujitsu,lime"; | ||
| 273 | reg = <2 0x0 0x4000000>; | ||
| 274 | interrupt-parent = <&mpic>; | ||
| 275 | interrupts = <6 1>; | ||
| 276 | }; | ||
| 277 | |||
| 278 | fpga_pic: fpga-pic@3,10 { | ||
| 279 | compatible = "abb,socrates-fpga-pic"; | ||
| 280 | reg = <3 0x10 0x10>; | ||
| 281 | interrupt-controller; | ||
| 282 | /* IRQs 2, 10, 11, active low, level-sensitive */ | ||
| 283 | interrupts = <2 1 10 1 11 1>; | ||
| 284 | interrupt-parent = <&mpic>; | ||
| 285 | #interrupt-cells = <3>; | ||
| 286 | }; | ||
| 287 | |||
| 288 | spi@3,60 { | ||
| 289 | compatible = "abb,socrates-spi"; | ||
| 290 | reg = <3 0x60 0x10>; | ||
| 291 | interrupts = <8 4 0>; // number, type, routing | ||
| 292 | interrupt-parent = <&fpga_pic>; | ||
| 293 | }; | ||
| 294 | |||
| 295 | nand@3,70 { | ||
| 296 | compatible = "abb,socrates-nand"; | ||
| 297 | reg = <3 0x70 0x04>; | ||
| 298 | bank-width = <1>; | ||
| 299 | #address-cells = <1>; | ||
| 300 | #size-cells = <1>; | ||
| 301 | data@0 { | ||
| 302 | label = "data"; | ||
| 303 | reg = <0x0 0x40000000>; | ||
| 304 | }; | ||
| 305 | }; | ||
| 306 | |||
| 307 | can@3,100 { | ||
| 308 | compatible = "philips,sja1000"; | ||
| 309 | reg = <3 0x100 0x80>; | ||
| 310 | interrupts = <2 8 1>; // number, type, routing | ||
| 311 | interrupt-parent = <&fpga_pic>; | ||
| 312 | }; | ||
| 313 | }; | ||
| 314 | |||
| 315 | pci0: pci@e0008000 { | ||
| 316 | cell-index = <0>; | ||
| 317 | #interrupt-cells = <1>; | ||
| 318 | #size-cells = <2>; | ||
| 319 | #address-cells = <3>; | ||
| 320 | compatible = "fsl,mpc8540-pci"; | ||
| 321 | device_type = "pci"; | ||
| 322 | reg = <0xe0008000 0x1000>; | ||
| 323 | clock-frequency = <66666666>; | ||
| 324 | |||
| 325 | interrupt-map-mask = <0xf800 0x0 0x0 0x7>; | ||
| 326 | interrupt-map = < | ||
| 327 | /* IDSEL 0x11 */ | ||
| 328 | 0x8800 0x0 0x0 1 &mpic 5 1 | ||
| 329 | /* IDSEL 0x12 */ | ||
| 330 | 0x9000 0x0 0x0 1 &mpic 4 1>; | ||
| 331 | interrupt-parent = <&mpic>; | ||
| 332 | interrupts = <24 2>; | ||
| 333 | bus-range = <0x0 0x0>; | ||
| 334 | ranges = <0x02000000 0x0 0x80000000 0x80000000 0x0 0x20000000 | ||
| 335 | 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x01000000>; | ||
| 336 | }; | ||
| 337 | |||
| 338 | }; | ||
diff --git a/arch/powerpc/boot/dts/stx_gp3_8560.dts b/arch/powerpc/boot/dts/stx_gp3_8560.dts index fff33fe6efc6..8b173957fb5f 100644 --- a/arch/powerpc/boot/dts/stx_gp3_8560.dts +++ b/arch/powerpc/boot/dts/stx_gp3_8560.dts | |||
| @@ -124,66 +124,72 @@ | |||
| 124 | }; | 124 | }; |
| 125 | }; | 125 | }; |
| 126 | 126 | ||
| 127 | mdio@24520 { | ||
| 128 | #address-cells = <1>; | ||
| 129 | #size-cells = <0>; | ||
| 130 | compatible = "fsl,gianfar-mdio"; | ||
| 131 | reg = <0x24520 0x20>; | ||
| 132 | |||
| 133 | phy2: ethernet-phy@2 { | ||
| 134 | interrupt-parent = <&mpic>; | ||
| 135 | interrupts = <5 4>; | ||
| 136 | reg = <2>; | ||
| 137 | device_type = "ethernet-phy"; | ||
| 138 | }; | ||
| 139 | phy4: ethernet-phy@4 { | ||
| 140 | interrupt-parent = <&mpic>; | ||
| 141 | interrupts = <5 4>; | ||
| 142 | reg = <4>; | ||
| 143 | device_type = "ethernet-phy"; | ||
| 144 | }; | ||
| 145 | tbi0: tbi-phy@11 { | ||
| 146 | reg = <0x11>; | ||
| 147 | device_type = "tbi-phy"; | ||
| 148 | }; | ||
| 149 | }; | ||
| 150 | |||
| 151 | mdio@25520 { | ||
| 152 | #address-cells = <1>; | ||
| 153 | #size-cells = <0>; | ||
| 154 | compatible = "fsl,gianfar-tbi"; | ||
| 155 | reg = <0x25520 0x20>; | ||
| 156 | |||
| 157 | tbi1: tbi-phy@11 { | ||
| 158 | reg = <0x11>; | ||
| 159 | device_type = "tbi-phy"; | ||
| 160 | }; | ||
| 161 | }; | ||
| 162 | |||
| 163 | enet0: ethernet@24000 { | 127 | enet0: ethernet@24000 { |
| 128 | #address-cells = <1>; | ||
| 129 | #size-cells = <1>; | ||
| 164 | cell-index = <0>; | 130 | cell-index = <0>; |
| 165 | device_type = "network"; | 131 | device_type = "network"; |
| 166 | model = "TSEC"; | 132 | model = "TSEC"; |
| 167 | compatible = "gianfar"; | 133 | compatible = "gianfar"; |
| 168 | reg = <0x24000 0x1000>; | 134 | reg = <0x24000 0x1000>; |
| 135 | ranges = <0x0 0x24000 0x1000>; | ||
| 169 | local-mac-address = [ 00 00 00 00 00 00 ]; | 136 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 170 | interrupts = <29 2 30 2 34 2>; | 137 | interrupts = <29 2 30 2 34 2>; |
| 171 | interrupt-parent = <&mpic>; | 138 | interrupt-parent = <&mpic>; |
| 172 | tbi-handle = <&tbi0>; | 139 | tbi-handle = <&tbi0>; |
| 173 | phy-handle = <&phy2>; | 140 | phy-handle = <&phy2>; |
| 141 | |||
| 142 | mdio@520 { | ||
| 143 | #address-cells = <1>; | ||
| 144 | #size-cells = <0>; | ||
| 145 | compatible = "fsl,gianfar-mdio"; | ||
| 146 | reg = <0x520 0x20>; | ||
| 147 | |||
| 148 | phy2: ethernet-phy@2 { | ||
| 149 | interrupt-parent = <&mpic>; | ||
| 150 | interrupts = <5 4>; | ||
| 151 | reg = <2>; | ||
| 152 | device_type = "ethernet-phy"; | ||
| 153 | }; | ||
| 154 | phy4: ethernet-phy@4 { | ||
| 155 | interrupt-parent = <&mpic>; | ||
| 156 | interrupts = <5 4>; | ||
| 157 | reg = <4>; | ||
| 158 | device_type = "ethernet-phy"; | ||
| 159 | }; | ||
| 160 | tbi0: tbi-phy@11 { | ||
| 161 | reg = <0x11>; | ||
| 162 | device_type = "tbi-phy"; | ||
| 163 | }; | ||
| 164 | }; | ||
| 174 | }; | 165 | }; |
| 175 | 166 | ||
| 176 | enet1: ethernet@25000 { | 167 | enet1: ethernet@25000 { |
| 168 | #address-cells = <1>; | ||
| 169 | #size-cells = <1>; | ||
| 177 | cell-index = <1>; | 170 | cell-index = <1>; |
| 178 | device_type = "network"; | 171 | device_type = "network"; |
| 179 | model = "TSEC"; | 172 | model = "TSEC"; |
| 180 | compatible = "gianfar"; | 173 | compatible = "gianfar"; |
| 181 | reg = <0x25000 0x1000>; | 174 | reg = <0x25000 0x1000>; |
| 175 | ranges = <0x0 0x25000 0x1000>; | ||
| 182 | local-mac-address = [ 00 00 00 00 00 00 ]; | 176 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 183 | interrupts = <35 2 36 2 40 2>; | 177 | interrupts = <35 2 36 2 40 2>; |
| 184 | interrupt-parent = <&mpic>; | 178 | interrupt-parent = <&mpic>; |
| 185 | tbi-handle = <&tbi1>; | 179 | tbi-handle = <&tbi1>; |
| 186 | phy-handle = <&phy4>; | 180 | phy-handle = <&phy4>; |
| 181 | |||
| 182 | mdio@520 { | ||
| 183 | #address-cells = <1>; | ||
| 184 | #size-cells = <0>; | ||
| 185 | compatible = "fsl,gianfar-tbi"; | ||
| 186 | reg = <0x520 0x20>; | ||
| 187 | |||
| 188 | tbi1: tbi-phy@11 { | ||
| 189 | reg = <0x11>; | ||
| 190 | device_type = "tbi-phy"; | ||
| 191 | }; | ||
| 192 | }; | ||
| 187 | }; | 193 | }; |
| 188 | 194 | ||
| 189 | mpic: pic@40000 { | 195 | mpic: pic@40000 { |
diff --git a/arch/powerpc/boot/dts/tqm8540.dts b/arch/powerpc/boot/dts/tqm8540.dts index 39e55ab82b89..ac9413a29f9f 100644 --- a/arch/powerpc/boot/dts/tqm8540.dts +++ b/arch/powerpc/boot/dts/tqm8540.dts | |||
| @@ -136,94 +136,103 @@ | |||
| 136 | }; | 136 | }; |
| 137 | }; | 137 | }; |
| 138 | 138 | ||
| 139 | mdio@24520 { | ||
| 140 | #address-cells = <1>; | ||
| 141 | #size-cells = <0>; | ||
| 142 | compatible = "fsl,gianfar-mdio"; | ||
| 143 | reg = <0x24520 0x20>; | ||
| 144 | |||
| 145 | phy1: ethernet-phy@1 { | ||
| 146 | interrupt-parent = <&mpic>; | ||
| 147 | interrupts = <8 1>; | ||
| 148 | reg = <1>; | ||
| 149 | device_type = "ethernet-phy"; | ||
| 150 | }; | ||
| 151 | phy2: ethernet-phy@2 { | ||
| 152 | interrupt-parent = <&mpic>; | ||
| 153 | interrupts = <8 1>; | ||
| 154 | reg = <2>; | ||
| 155 | device_type = "ethernet-phy"; | ||
| 156 | }; | ||
| 157 | phy3: ethernet-phy@3 { | ||
| 158 | interrupt-parent = <&mpic>; | ||
| 159 | interrupts = <8 1>; | ||
| 160 | reg = <3>; | ||
| 161 | device_type = "ethernet-phy"; | ||
| 162 | }; | ||
| 163 | tbi0: tbi-phy@11 { | ||
| 164 | reg = <0x11>; | ||
| 165 | device_type = "tbi-phy"; | ||
| 166 | }; | ||
| 167 | }; | ||
| 168 | |||
| 169 | mdio@25520 { | ||
| 170 | #address-cells = <1>; | ||
| 171 | #size-cells = <0>; | ||
| 172 | compatible = "fsl,gianfar-tbi"; | ||
| 173 | reg = <0x25520 0x20>; | ||
| 174 | |||
| 175 | tbi1: tbi-phy@11 { | ||
| 176 | reg = <0x11>; | ||
| 177 | device_type = "tbi-phy"; | ||
| 178 | }; | ||
| 179 | }; | ||
| 180 | |||
| 181 | mdio@26520 { | ||
| 182 | #address-cells = <1>; | ||
| 183 | #size-cells = <0>; | ||
| 184 | compatible = "fsl,gianfar-tbi"; | ||
| 185 | reg = <0x26520 0x20>; | ||
| 186 | |||
| 187 | tbi2: tbi-phy@11 { | ||
| 188 | reg = <0x11>; | ||
| 189 | device_type = "tbi-phy"; | ||
| 190 | }; | ||
| 191 | }; | ||
| 192 | |||
| 193 | enet0: ethernet@24000 { | 139 | enet0: ethernet@24000 { |
| 140 | #address-cells = <1>; | ||
| 141 | #size-cells = <1>; | ||
| 194 | cell-index = <0>; | 142 | cell-index = <0>; |
| 195 | device_type = "network"; | 143 | device_type = "network"; |
| 196 | model = "TSEC"; | 144 | model = "TSEC"; |
| 197 | compatible = "gianfar"; | 145 | compatible = "gianfar"; |
| 198 | reg = <0x24000 0x1000>; | 146 | reg = <0x24000 0x1000>; |
| 147 | ranges = <0x0 0x24000 0x1000>; | ||
| 199 | local-mac-address = [ 00 00 00 00 00 00 ]; | 148 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 200 | interrupts = <29 2 30 2 34 2>; | 149 | interrupts = <29 2 30 2 34 2>; |
| 201 | interrupt-parent = <&mpic>; | 150 | interrupt-parent = <&mpic>; |
| 202 | phy-handle = <&phy2>; | 151 | phy-handle = <&phy2>; |
| 152 | |||
| 153 | mdio@520 { | ||
| 154 | #address-cells = <1>; | ||
| 155 | #size-cells = <0>; | ||
| 156 | compatible = "fsl,gianfar-mdio"; | ||
| 157 | reg = <0x520 0x20>; | ||
| 158 | |||
| 159 | phy1: ethernet-phy@1 { | ||
| 160 | interrupt-parent = <&mpic>; | ||
| 161 | interrupts = <8 1>; | ||
| 162 | reg = <1>; | ||
| 163 | device_type = "ethernet-phy"; | ||
| 164 | }; | ||
| 165 | phy2: ethernet-phy@2 { | ||
| 166 | interrupt-parent = <&mpic>; | ||
| 167 | interrupts = <8 1>; | ||
| 168 | reg = <2>; | ||
| 169 | device_type = "ethernet-phy"; | ||
| 170 | }; | ||
| 171 | phy3: ethernet-phy@3 { | ||
| 172 | interrupt-parent = <&mpic>; | ||
| 173 | interrupts = <8 1>; | ||
| 174 | reg = <3>; | ||
| 175 | device_type = "ethernet-phy"; | ||
| 176 | }; | ||
| 177 | tbi0: tbi-phy@11 { | ||
| 178 | reg = <0x11>; | ||
| 179 | device_type = "tbi-phy"; | ||
| 180 | }; | ||
| 181 | }; | ||
| 203 | }; | 182 | }; |
| 204 | 183 | ||
| 205 | enet1: ethernet@25000 { | 184 | enet1: ethernet@25000 { |
| 185 | #address-cells = <1>; | ||
| 186 | #size-cells = <1>; | ||
| 206 | cell-index = <1>; | 187 | cell-index = <1>; |
| 207 | device_type = "network"; | 188 | device_type = "network"; |
| 208 | model = "TSEC"; | 189 | model = "TSEC"; |
| 209 | compatible = "gianfar"; | 190 | compatible = "gianfar"; |
| 210 | reg = <0x25000 0x1000>; | 191 | reg = <0x25000 0x1000>; |
| 192 | ranges = <0x0 0x25000 0x1000>; | ||
| 211 | local-mac-address = [ 00 00 00 00 00 00 ]; | 193 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 212 | interrupts = <35 2 36 2 40 2>; | 194 | interrupts = <35 2 36 2 40 2>; |
| 213 | interrupt-parent = <&mpic>; | 195 | interrupt-parent = <&mpic>; |
| 214 | phy-handle = <&phy1>; | 196 | phy-handle = <&phy1>; |
| 197 | |||
| 198 | mdio@520 { | ||
| 199 | #address-cells = <1>; | ||
| 200 | #size-cells = <0>; | ||
| 201 | compatible = "fsl,gianfar-tbi"; | ||
| 202 | reg = <0x520 0x20>; | ||
| 203 | |||
| 204 | tbi1: tbi-phy@11 { | ||
| 205 | reg = <0x11>; | ||
| 206 | device_type = "tbi-phy"; | ||
| 207 | }; | ||
| 208 | }; | ||
| 215 | }; | 209 | }; |
| 216 | 210 | ||
| 217 | enet2: ethernet@26000 { | 211 | enet2: ethernet@26000 { |
| 212 | #address-cells = <1>; | ||
| 213 | #size-cells = <1>; | ||
| 218 | cell-index = <2>; | 214 | cell-index = <2>; |
| 219 | device_type = "network"; | 215 | device_type = "network"; |
| 220 | model = "FEC"; | 216 | model = "FEC"; |
| 221 | compatible = "gianfar"; | 217 | compatible = "gianfar"; |
| 222 | reg = <0x26000 0x1000>; | 218 | reg = <0x26000 0x1000>; |
| 219 | ranges = <0x0 0x26000 0x1000>; | ||
| 223 | local-mac-address = [ 00 00 00 00 00 00 ]; | 220 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 224 | interrupts = <41 2>; | 221 | interrupts = <41 2>; |
| 225 | interrupt-parent = <&mpic>; | 222 | interrupt-parent = <&mpic>; |
| 226 | phy-handle = <&phy3>; | 223 | phy-handle = <&phy3>; |
| 224 | |||
| 225 | mdio@520 { | ||
| 226 | #address-cells = <1>; | ||
| 227 | #size-cells = <0>; | ||
| 228 | compatible = "fsl,gianfar-tbi"; | ||
| 229 | reg = <0x520 0x20>; | ||
| 230 | |||
| 231 | tbi2: tbi-phy@11 { | ||
| 232 | reg = <0x11>; | ||
| 233 | device_type = "tbi-phy"; | ||
| 234 | }; | ||
| 235 | }; | ||
| 227 | }; | 236 | }; |
| 228 | 237 | ||
| 229 | serial0: serial@4500 { | 238 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/tqm8541.dts b/arch/powerpc/boot/dts/tqm8541.dts index 58ae8bc58817..c71bb5dd5e5e 100644 --- a/arch/powerpc/boot/dts/tqm8541.dts +++ b/arch/powerpc/boot/dts/tqm8541.dts | |||
| @@ -135,72 +135,78 @@ | |||
| 135 | }; | 135 | }; |
| 136 | }; | 136 | }; |
| 137 | 137 | ||
| 138 | mdio@24520 { | ||
| 139 | #address-cells = <1>; | ||
| 140 | #size-cells = <0>; | ||
| 141 | compatible = "fsl,gianfar-mdio"; | ||
| 142 | reg = <0x24520 0x20>; | ||
| 143 | |||
| 144 | phy1: ethernet-phy@1 { | ||
| 145 | interrupt-parent = <&mpic>; | ||
| 146 | interrupts = <8 1>; | ||
| 147 | reg = <1>; | ||
| 148 | device_type = "ethernet-phy"; | ||
| 149 | }; | ||
| 150 | phy2: ethernet-phy@2 { | ||
| 151 | interrupt-parent = <&mpic>; | ||
| 152 | interrupts = <8 1>; | ||
| 153 | reg = <2>; | ||
| 154 | device_type = "ethernet-phy"; | ||
| 155 | }; | ||
| 156 | phy3: ethernet-phy@3 { | ||
| 157 | interrupt-parent = <&mpic>; | ||
| 158 | interrupts = <8 1>; | ||
| 159 | reg = <3>; | ||
| 160 | device_type = "ethernet-phy"; | ||
| 161 | }; | ||
| 162 | tbi0: tbi-phy@11 { | ||
| 163 | reg = <0x11>; | ||
| 164 | device_type = "tbi-phy"; | ||
| 165 | }; | ||
| 166 | }; | ||
| 167 | |||
| 168 | mdio@25520 { | ||
| 169 | #address-cells = <1>; | ||
| 170 | #size-cells = <0>; | ||
| 171 | compatible = "fsl,gianfar-tbi"; | ||
| 172 | reg = <0x25520 0x20>; | ||
| 173 | |||
| 174 | tbi1: tbi-phy@11 { | ||
| 175 | reg = <0x11>; | ||
| 176 | device_type = "tbi-phy"; | ||
| 177 | }; | ||
| 178 | }; | ||
| 179 | |||
| 180 | enet0: ethernet@24000 { | 138 | enet0: ethernet@24000 { |
| 139 | #address-cells = <1>; | ||
| 140 | #size-cells = <1>; | ||
| 181 | cell-index = <0>; | 141 | cell-index = <0>; |
| 182 | device_type = "network"; | 142 | device_type = "network"; |
| 183 | model = "TSEC"; | 143 | model = "TSEC"; |
| 184 | compatible = "gianfar"; | 144 | compatible = "gianfar"; |
| 185 | reg = <0x24000 0x1000>; | 145 | reg = <0x24000 0x1000>; |
| 146 | ranges = <0x0 0x24000 0x1000>; | ||
| 186 | local-mac-address = [ 00 00 00 00 00 00 ]; | 147 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 187 | interrupts = <29 2 30 2 34 2>; | 148 | interrupts = <29 2 30 2 34 2>; |
| 188 | interrupt-parent = <&mpic>; | 149 | interrupt-parent = <&mpic>; |
| 189 | tbi-handle = <&tbi0>; | 150 | tbi-handle = <&tbi0>; |
| 190 | phy-handle = <&phy2>; | 151 | phy-handle = <&phy2>; |
| 152 | |||
| 153 | mdio@520 { | ||
| 154 | #address-cells = <1>; | ||
| 155 | #size-cells = <0>; | ||
| 156 | compatible = "fsl,gianfar-mdio"; | ||
| 157 | reg = <0x520 0x20>; | ||
| 158 | |||
| 159 | phy1: ethernet-phy@1 { | ||
| 160 | interrupt-parent = <&mpic>; | ||
| 161 | interrupts = <8 1>; | ||
| 162 | reg = <1>; | ||
| 163 | device_type = "ethernet-phy"; | ||
| 164 | }; | ||
| 165 | phy2: ethernet-phy@2 { | ||
| 166 | interrupt-parent = <&mpic>; | ||
| 167 | interrupts = <8 1>; | ||
| 168 | reg = <2>; | ||
| 169 | device_type = "ethernet-phy"; | ||
| 170 | }; | ||
| 171 | phy3: ethernet-phy@3 { | ||
| 172 | interrupt-parent = <&mpic>; | ||
| 173 | interrupts = <8 1>; | ||
| 174 | reg = <3>; | ||
| 175 | device_type = "ethernet-phy"; | ||
| 176 | }; | ||
| 177 | tbi0: tbi-phy@11 { | ||
| 178 | reg = <0x11>; | ||
| 179 | device_type = "tbi-phy"; | ||
| 180 | }; | ||
| 181 | }; | ||
| 191 | }; | 182 | }; |
| 192 | 183 | ||
| 193 | enet1: ethernet@25000 { | 184 | enet1: ethernet@25000 { |
| 185 | #address-cells = <1>; | ||
| 186 | #size-cells = <1>; | ||
| 194 | cell-index = <1>; | 187 | cell-index = <1>; |
| 195 | device_type = "network"; | 188 | device_type = "network"; |
| 196 | model = "TSEC"; | 189 | model = "TSEC"; |
| 197 | compatible = "gianfar"; | 190 | compatible = "gianfar"; |
| 198 | reg = <0x25000 0x1000>; | 191 | reg = <0x25000 0x1000>; |
| 192 | ranges = <0x0 0x25000 0x1000>; | ||
| 199 | local-mac-address = [ 00 00 00 00 00 00 ]; | 193 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 200 | interrupts = <35 2 36 2 40 2>; | 194 | interrupts = <35 2 36 2 40 2>; |
| 201 | interrupt-parent = <&mpic>; | 195 | interrupt-parent = <&mpic>; |
| 202 | tbi-handle = <&tbi1>; | 196 | tbi-handle = <&tbi1>; |
| 203 | phy-handle = <&phy1>; | 197 | phy-handle = <&phy1>; |
| 198 | |||
| 199 | mdio@520 { | ||
| 200 | #address-cells = <1>; | ||
| 201 | #size-cells = <0>; | ||
| 202 | compatible = "fsl,gianfar-tbi"; | ||
| 203 | reg = <0x520 0x20>; | ||
| 204 | |||
| 205 | tbi1: tbi-phy@11 { | ||
| 206 | reg = <0x11>; | ||
| 207 | device_type = "tbi-phy"; | ||
| 208 | }; | ||
| 209 | }; | ||
| 204 | }; | 210 | }; |
| 205 | 211 | ||
| 206 | serial0: serial@4500 { | 212 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/tqm8548-bigflash.dts b/arch/powerpc/boot/dts/tqm8548-bigflash.dts index bff380a25aa6..28b1a95257cd 100644 --- a/arch/powerpc/boot/dts/tqm8548-bigflash.dts +++ b/arch/powerpc/boot/dts/tqm8548-bigflash.dts | |||
| @@ -148,134 +148,146 @@ | |||
| 148 | }; | 148 | }; |
| 149 | }; | 149 | }; |
| 150 | 150 | ||
| 151 | mdio@24520 { | ||
| 152 | #address-cells = <1>; | ||
| 153 | #size-cells = <0>; | ||
| 154 | compatible = "fsl,gianfar-mdio"; | ||
| 155 | reg = <0x24520 0x20>; | ||
| 156 | |||
| 157 | phy1: ethernet-phy@0 { | ||
| 158 | interrupt-parent = <&mpic>; | ||
| 159 | interrupts = <8 1>; | ||
| 160 | reg = <1>; | ||
| 161 | device_type = "ethernet-phy"; | ||
| 162 | }; | ||
| 163 | phy2: ethernet-phy@1 { | ||
| 164 | interrupt-parent = <&mpic>; | ||
| 165 | interrupts = <8 1>; | ||
| 166 | reg = <2>; | ||
| 167 | device_type = "ethernet-phy"; | ||
| 168 | }; | ||
| 169 | phy3: ethernet-phy@3 { | ||
| 170 | interrupt-parent = <&mpic>; | ||
| 171 | interrupts = <8 1>; | ||
| 172 | reg = <3>; | ||
| 173 | device_type = "ethernet-phy"; | ||
| 174 | }; | ||
| 175 | phy4: ethernet-phy@4 { | ||
| 176 | interrupt-parent = <&mpic>; | ||
| 177 | interrupts = <8 1>; | ||
| 178 | reg = <4>; | ||
| 179 | device_type = "ethernet-phy"; | ||
| 180 | }; | ||
| 181 | phy5: ethernet-phy@5 { | ||
| 182 | interrupt-parent = <&mpic>; | ||
| 183 | interrupts = <8 1>; | ||
| 184 | reg = <5>; | ||
| 185 | device_type = "ethernet-phy"; | ||
| 186 | }; | ||
| 187 | tbi0: tbi-phy@11 { | ||
| 188 | reg = <0x11>; | ||
| 189 | device_type = "tbi-phy"; | ||
| 190 | }; | ||
| 191 | }; | ||
| 192 | |||
| 193 | mdio@25520 { | ||
| 194 | #address-cells = <1>; | ||
| 195 | #size-cells = <0>; | ||
| 196 | compatible = "fsl,gianfar-tbi"; | ||
| 197 | reg = <0x25520 0x20>; | ||
| 198 | |||
| 199 | tbi1: tbi-phy@11 { | ||
| 200 | reg = <0x11>; | ||
| 201 | device_type = "tbi-phy"; | ||
| 202 | }; | ||
| 203 | }; | ||
| 204 | |||
| 205 | mdio@26520 { | ||
| 206 | #address-cells = <1>; | ||
| 207 | #size-cells = <0>; | ||
| 208 | compatible = "fsl,gianfar-tbi"; | ||
| 209 | reg = <0x26520 0x20>; | ||
| 210 | |||
| 211 | tbi2: tbi-phy@11 { | ||
| 212 | reg = <0x11>; | ||
| 213 | device_type = "tbi-phy"; | ||
| 214 | }; | ||
| 215 | }; | ||
| 216 | |||
| 217 | mdio@27520 { | ||
| 218 | #address-cells = <1>; | ||
| 219 | #size-cells = <0>; | ||
| 220 | compatible = "fsl,gianfar-tbi"; | ||
| 221 | reg = <0x27520 0x20>; | ||
| 222 | |||
| 223 | tbi3: tbi-phy@11 { | ||
| 224 | reg = <0x11>; | ||
| 225 | device_type = "tbi-phy"; | ||
| 226 | }; | ||
| 227 | }; | ||
| 228 | |||
| 229 | enet0: ethernet@24000 { | 151 | enet0: ethernet@24000 { |
| 152 | #address-cells = <1>; | ||
| 153 | #size-cells = <1>; | ||
| 230 | cell-index = <0>; | 154 | cell-index = <0>; |
| 231 | device_type = "network"; | 155 | device_type = "network"; |
| 232 | model = "eTSEC"; | 156 | model = "eTSEC"; |
| 233 | compatible = "gianfar"; | 157 | compatible = "gianfar"; |
| 234 | reg = <0x24000 0x1000>; | 158 | reg = <0x24000 0x1000>; |
| 159 | ranges = <0x0 0x24000 0x1000>; | ||
| 235 | local-mac-address = [ 00 00 00 00 00 00 ]; | 160 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 236 | interrupts = <29 2 30 2 34 2>; | 161 | interrupts = <29 2 30 2 34 2>; |
| 237 | interrupt-parent = <&mpic>; | 162 | interrupt-parent = <&mpic>; |
| 238 | tbi-handle = <&tbi0>; | 163 | tbi-handle = <&tbi0>; |
| 239 | phy-handle = <&phy2>; | 164 | phy-handle = <&phy2>; |
| 165 | |||
| 166 | mdio@520 { | ||
| 167 | #address-cells = <1>; | ||
| 168 | #size-cells = <0>; | ||
| 169 | compatible = "fsl,gianfar-mdio"; | ||
| 170 | reg = <0x520 0x20>; | ||
| 171 | |||
| 172 | phy1: ethernet-phy@0 { | ||
| 173 | interrupt-parent = <&mpic>; | ||
| 174 | interrupts = <8 1>; | ||
| 175 | reg = <1>; | ||
| 176 | device_type = "ethernet-phy"; | ||
| 177 | }; | ||
| 178 | phy2: ethernet-phy@1 { | ||
| 179 | interrupt-parent = <&mpic>; | ||
| 180 | interrupts = <8 1>; | ||
| 181 | reg = <2>; | ||
| 182 | device_type = "ethernet-phy"; | ||
| 183 | }; | ||
| 184 | phy3: ethernet-phy@3 { | ||
| 185 | interrupt-parent = <&mpic>; | ||
| 186 | interrupts = <8 1>; | ||
| 187 | reg = <3>; | ||
| 188 | device_type = "ethernet-phy"; | ||
| 189 | }; | ||
| 190 | phy4: ethernet-phy@4 { | ||
| 191 | interrupt-parent = <&mpic>; | ||
| 192 | interrupts = <8 1>; | ||
| 193 | reg = <4>; | ||
| 194 | device_type = "ethernet-phy"; | ||
| 195 | }; | ||
| 196 | phy5: ethernet-phy@5 { | ||
| 197 | interrupt-parent = <&mpic>; | ||
| 198 | interrupts = <8 1>; | ||
| 199 | reg = <5>; | ||
| 200 | device_type = "ethernet-phy"; | ||
| 201 | }; | ||
| 202 | tbi0: tbi-phy@11 { | ||
| 203 | reg = <0x11>; | ||
| 204 | device_type = "tbi-phy"; | ||
| 205 | }; | ||
| 206 | }; | ||
| 240 | }; | 207 | }; |
| 241 | 208 | ||
| 242 | enet1: ethernet@25000 { | 209 | enet1: ethernet@25000 { |
| 210 | #address-cells = <1>; | ||
| 211 | #size-cells = <1>; | ||
| 243 | cell-index = <1>; | 212 | cell-index = <1>; |
| 244 | device_type = "network"; | 213 | device_type = "network"; |
| 245 | model = "eTSEC"; | 214 | model = "eTSEC"; |
| 246 | compatible = "gianfar"; | 215 | compatible = "gianfar"; |
| 247 | reg = <0x25000 0x1000>; | 216 | reg = <0x25000 0x1000>; |
| 217 | ranges = <0x0 0x25000 0x1000>; | ||
| 248 | local-mac-address = [ 00 00 00 00 00 00 ]; | 218 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 249 | interrupts = <35 2 36 2 40 2>; | 219 | interrupts = <35 2 36 2 40 2>; |
| 250 | interrupt-parent = <&mpic>; | 220 | interrupt-parent = <&mpic>; |
| 251 | tbi-handle = <&tbi1>; | 221 | tbi-handle = <&tbi1>; |
| 252 | phy-handle = <&phy1>; | 222 | phy-handle = <&phy1>; |
| 223 | |||
| 224 | mdio@520 { | ||
| 225 | #address-cells = <1>; | ||
| 226 | #size-cells = <0>; | ||
| 227 | compatible = "fsl,gianfar-tbi"; | ||
| 228 | reg = <0x520 0x20>; | ||
| 229 | |||
| 230 | tbi1: tbi-phy@11 { | ||
| 231 | reg = <0x11>; | ||
| 232 | device_type = "tbi-phy"; | ||
| 233 | }; | ||
| 234 | }; | ||
| 253 | }; | 235 | }; |
| 254 | 236 | ||
| 255 | enet2: ethernet@26000 { | 237 | enet2: ethernet@26000 { |
| 238 | #address-cells = <1>; | ||
| 239 | #size-cells = <1>; | ||
| 256 | cell-index = <2>; | 240 | cell-index = <2>; |
| 257 | device_type = "network"; | 241 | device_type = "network"; |
| 258 | model = "eTSEC"; | 242 | model = "eTSEC"; |
| 259 | compatible = "gianfar"; | 243 | compatible = "gianfar"; |
| 260 | reg = <0x26000 0x1000>; | 244 | reg = <0x26000 0x1000>; |
| 245 | ranges = <0x0 0x26000 0x1000>; | ||
| 261 | local-mac-address = [ 00 00 00 00 00 00 ]; | 246 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 262 | interrupts = <31 2 32 2 33 2>; | 247 | interrupts = <31 2 32 2 33 2>; |
| 263 | interrupt-parent = <&mpic>; | 248 | interrupt-parent = <&mpic>; |
| 264 | tbi-handle = <&tbi2>; | 249 | tbi-handle = <&tbi2>; |
| 265 | phy-handle = <&phy3>; | 250 | phy-handle = <&phy3>; |
| 251 | |||
| 252 | mdio@520 { | ||
| 253 | #address-cells = <1>; | ||
| 254 | #size-cells = <0>; | ||
| 255 | compatible = "fsl,gianfar-tbi"; | ||
| 256 | reg = <0x520 0x20>; | ||
| 257 | |||
| 258 | tbi2: tbi-phy@11 { | ||
| 259 | reg = <0x11>; | ||
| 260 | device_type = "tbi-phy"; | ||
| 261 | }; | ||
| 262 | }; | ||
| 266 | }; | 263 | }; |
| 267 | 264 | ||
| 268 | enet3: ethernet@27000 { | 265 | enet3: ethernet@27000 { |
| 266 | #address-cells = <1>; | ||
| 267 | #size-cells = <1>; | ||
| 269 | cell-index = <3>; | 268 | cell-index = <3>; |
| 270 | device_type = "network"; | 269 | device_type = "network"; |
| 271 | model = "eTSEC"; | 270 | model = "eTSEC"; |
| 272 | compatible = "gianfar"; | 271 | compatible = "gianfar"; |
| 273 | reg = <0x27000 0x1000>; | 272 | reg = <0x27000 0x1000>; |
| 273 | ranges = <0x0 0x27000 0x1000>; | ||
| 274 | local-mac-address = [ 00 00 00 00 00 00 ]; | 274 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 275 | interrupts = <37 2 38 2 39 2>; | 275 | interrupts = <37 2 38 2 39 2>; |
| 276 | interrupt-parent = <&mpic>; | 276 | interrupt-parent = <&mpic>; |
| 277 | tbi-handle = <&tbi3>; | 277 | tbi-handle = <&tbi3>; |
| 278 | phy-handle = <&phy4>; | 278 | phy-handle = <&phy4>; |
| 279 | |||
| 280 | mdio@520 { | ||
| 281 | #address-cells = <1>; | ||
| 282 | #size-cells = <0>; | ||
| 283 | compatible = "fsl,gianfar-tbi"; | ||
| 284 | reg = <0x520 0x20>; | ||
| 285 | |||
| 286 | tbi3: tbi-phy@11 { | ||
| 287 | reg = <0x11>; | ||
| 288 | device_type = "tbi-phy"; | ||
| 289 | }; | ||
| 290 | }; | ||
| 279 | }; | 291 | }; |
| 280 | 292 | ||
| 281 | serial0: serial@4500 { | 293 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/tqm8548.dts b/arch/powerpc/boot/dts/tqm8548.dts index 112ac90f2ea7..826fb622cd3c 100644 --- a/arch/powerpc/boot/dts/tqm8548.dts +++ b/arch/powerpc/boot/dts/tqm8548.dts | |||
| @@ -148,134 +148,146 @@ | |||
| 148 | }; | 148 | }; |
| 149 | }; | 149 | }; |
| 150 | 150 | ||
| 151 | mdio@24520 { | ||
| 152 | #address-cells = <1>; | ||
| 153 | #size-cells = <0>; | ||
| 154 | compatible = "fsl,gianfar-mdio"; | ||
| 155 | reg = <0x24520 0x20>; | ||
| 156 | |||
| 157 | phy1: ethernet-phy@0 { | ||
| 158 | interrupt-parent = <&mpic>; | ||
| 159 | interrupts = <8 1>; | ||
| 160 | reg = <1>; | ||
| 161 | device_type = "ethernet-phy"; | ||
| 162 | }; | ||
| 163 | phy2: ethernet-phy@1 { | ||
| 164 | interrupt-parent = <&mpic>; | ||
| 165 | interrupts = <8 1>; | ||
| 166 | reg = <2>; | ||
| 167 | device_type = "ethernet-phy"; | ||
| 168 | }; | ||
| 169 | phy3: ethernet-phy@3 { | ||
| 170 | interrupt-parent = <&mpic>; | ||
| 171 | interrupts = <8 1>; | ||
| 172 | reg = <3>; | ||
| 173 | device_type = "ethernet-phy"; | ||
| 174 | }; | ||
| 175 | phy4: ethernet-phy@4 { | ||
| 176 | interrupt-parent = <&mpic>; | ||
| 177 | interrupts = <8 1>; | ||
| 178 | reg = <4>; | ||
| 179 | device_type = "ethernet-phy"; | ||
| 180 | }; | ||
| 181 | phy5: ethernet-phy@5 { | ||
| 182 | interrupt-parent = <&mpic>; | ||
| 183 | interrupts = <8 1>; | ||
| 184 | reg = <5>; | ||
| 185 | device_type = "ethernet-phy"; | ||
| 186 | }; | ||
| 187 | tbi0: tbi-phy@11 { | ||
| 188 | reg = <0x11>; | ||
| 189 | device_type = "tbi-phy"; | ||
| 190 | }; | ||
| 191 | }; | ||
| 192 | |||
| 193 | mdio@25520 { | ||
| 194 | #address-cells = <1>; | ||
| 195 | #size-cells = <0>; | ||
| 196 | compatible = "fsl,gianfar-tbi"; | ||
| 197 | reg = <0x25520 0x20>; | ||
| 198 | |||
| 199 | tbi1: tbi-phy@11 { | ||
| 200 | reg = <0x11>; | ||
| 201 | device_type = "tbi-phy"; | ||
| 202 | }; | ||
| 203 | }; | ||
| 204 | |||
| 205 | mdio@26520 { | ||
| 206 | #address-cells = <1>; | ||
| 207 | #size-cells = <0>; | ||
| 208 | compatible = "fsl,gianfar-tbi"; | ||
| 209 | reg = <0x26520 0x20>; | ||
| 210 | |||
| 211 | tbi2: tbi-phy@11 { | ||
| 212 | reg = <0x11>; | ||
| 213 | device_type = "tbi-phy"; | ||
| 214 | }; | ||
| 215 | }; | ||
| 216 | |||
| 217 | mdio@27520 { | ||
| 218 | #address-cells = <1>; | ||
| 219 | #size-cells = <0>; | ||
| 220 | compatible = "fsl,gianfar-tbi"; | ||
| 221 | reg = <0x27520 0x20>; | ||
| 222 | |||
| 223 | tbi3: tbi-phy@11 { | ||
| 224 | reg = <0x11>; | ||
| 225 | device_type = "tbi-phy"; | ||
| 226 | }; | ||
| 227 | }; | ||
| 228 | |||
| 229 | enet0: ethernet@24000 { | 151 | enet0: ethernet@24000 { |
| 152 | #address-cells = <1>; | ||
| 153 | #size-cells = <1>; | ||
| 230 | cell-index = <0>; | 154 | cell-index = <0>; |
| 231 | device_type = "network"; | 155 | device_type = "network"; |
| 232 | model = "eTSEC"; | 156 | model = "eTSEC"; |
| 233 | compatible = "gianfar"; | 157 | compatible = "gianfar"; |
| 234 | reg = <0x24000 0x1000>; | 158 | reg = <0x24000 0x1000>; |
| 159 | ranges = <0x0 0x24000 0x1000>; | ||
| 235 | local-mac-address = [ 00 00 00 00 00 00 ]; | 160 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 236 | interrupts = <29 2 30 2 34 2>; | 161 | interrupts = <29 2 30 2 34 2>; |
| 237 | interrupt-parent = <&mpic>; | 162 | interrupt-parent = <&mpic>; |
| 238 | tbi-handle = <&tbi0>; | 163 | tbi-handle = <&tbi0>; |
| 239 | phy-handle = <&phy2>; | 164 | phy-handle = <&phy2>; |
| 165 | |||
| 166 | mdio@520 { | ||
| 167 | #address-cells = <1>; | ||
| 168 | #size-cells = <0>; | ||
| 169 | compatible = "fsl,gianfar-mdio"; | ||
| 170 | reg = <0x520 0x20>; | ||
| 171 | |||
| 172 | phy1: ethernet-phy@0 { | ||
| 173 | interrupt-parent = <&mpic>; | ||
| 174 | interrupts = <8 1>; | ||
| 175 | reg = <1>; | ||
| 176 | device_type = "ethernet-phy"; | ||
| 177 | }; | ||
| 178 | phy2: ethernet-phy@1 { | ||
| 179 | interrupt-parent = <&mpic>; | ||
| 180 | interrupts = <8 1>; | ||
| 181 | reg = <2>; | ||
| 182 | device_type = "ethernet-phy"; | ||
| 183 | }; | ||
| 184 | phy3: ethernet-phy@3 { | ||
| 185 | interrupt-parent = <&mpic>; | ||
| 186 | interrupts = <8 1>; | ||
| 187 | reg = <3>; | ||
| 188 | device_type = "ethernet-phy"; | ||
| 189 | }; | ||
| 190 | phy4: ethernet-phy@4 { | ||
| 191 | interrupt-parent = <&mpic>; | ||
| 192 | interrupts = <8 1>; | ||
| 193 | reg = <4>; | ||
| 194 | device_type = "ethernet-phy"; | ||
| 195 | }; | ||
| 196 | phy5: ethernet-phy@5 { | ||
| 197 | interrupt-parent = <&mpic>; | ||
| 198 | interrupts = <8 1>; | ||
| 199 | reg = <5>; | ||
| 200 | device_type = "ethernet-phy"; | ||
| 201 | }; | ||
| 202 | tbi0: tbi-phy@11 { | ||
| 203 | reg = <0x11>; | ||
| 204 | device_type = "tbi-phy"; | ||
| 205 | }; | ||
| 206 | }; | ||
| 240 | }; | 207 | }; |
| 241 | 208 | ||
| 242 | enet1: ethernet@25000 { | 209 | enet1: ethernet@25000 { |
| 210 | #address-cells = <1>; | ||
| 211 | #size-cells = <1>; | ||
| 243 | cell-index = <1>; | 212 | cell-index = <1>; |
| 244 | device_type = "network"; | 213 | device_type = "network"; |
| 245 | model = "eTSEC"; | 214 | model = "eTSEC"; |
| 246 | compatible = "gianfar"; | 215 | compatible = "gianfar"; |
| 247 | reg = <0x25000 0x1000>; | 216 | reg = <0x25000 0x1000>; |
| 217 | ranges = <0x0 0x25000 0x1000>; | ||
| 248 | local-mac-address = [ 00 00 00 00 00 00 ]; | 218 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 249 | interrupts = <35 2 36 2 40 2>; | 219 | interrupts = <35 2 36 2 40 2>; |
| 250 | interrupt-parent = <&mpic>; | 220 | interrupt-parent = <&mpic>; |
| 251 | tbi-handle = <&tbi1>; | 221 | tbi-handle = <&tbi1>; |
| 252 | phy-handle = <&phy1>; | 222 | phy-handle = <&phy1>; |
| 223 | |||
| 224 | mdio@520 { | ||
| 225 | #address-cells = <1>; | ||
| 226 | #size-cells = <0>; | ||
| 227 | compatible = "fsl,gianfar-tbi"; | ||
| 228 | reg = <0x520 0x20>; | ||
| 229 | |||
| 230 | tbi1: tbi-phy@11 { | ||
| 231 | reg = <0x11>; | ||
| 232 | device_type = "tbi-phy"; | ||
| 233 | }; | ||
| 234 | }; | ||
| 253 | }; | 235 | }; |
| 254 | 236 | ||
| 255 | enet2: ethernet@26000 { | 237 | enet2: ethernet@26000 { |
| 238 | #address-cells = <1>; | ||
| 239 | #size-cells = <1>; | ||
| 256 | cell-index = <2>; | 240 | cell-index = <2>; |
| 257 | device_type = "network"; | 241 | device_type = "network"; |
| 258 | model = "eTSEC"; | 242 | model = "eTSEC"; |
| 259 | compatible = "gianfar"; | 243 | compatible = "gianfar"; |
| 260 | reg = <0x26000 0x1000>; | 244 | reg = <0x26000 0x1000>; |
| 245 | ranges = <0x0 0x26000 0x1000>; | ||
| 261 | local-mac-address = [ 00 00 00 00 00 00 ]; | 246 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 262 | interrupts = <31 2 32 2 33 2>; | 247 | interrupts = <31 2 32 2 33 2>; |
| 263 | interrupt-parent = <&mpic>; | 248 | interrupt-parent = <&mpic>; |
| 264 | tbi-handle = <&tbi2>; | 249 | tbi-handle = <&tbi2>; |
| 265 | phy-handle = <&phy3>; | 250 | phy-handle = <&phy3>; |
| 251 | |||
| 252 | mdio@520 { | ||
| 253 | #address-cells = <1>; | ||
| 254 | #size-cells = <0>; | ||
| 255 | compatible = "fsl,gianfar-tbi"; | ||
| 256 | reg = <0x520 0x20>; | ||
| 257 | |||
| 258 | tbi2: tbi-phy@11 { | ||
| 259 | reg = <0x11>; | ||
| 260 | device_type = "tbi-phy"; | ||
| 261 | }; | ||
| 262 | }; | ||
| 266 | }; | 263 | }; |
| 267 | 264 | ||
| 268 | enet3: ethernet@27000 { | 265 | enet3: ethernet@27000 { |
| 266 | #address-cells = <1>; | ||
| 267 | #size-cells = <1>; | ||
| 269 | cell-index = <3>; | 268 | cell-index = <3>; |
| 270 | device_type = "network"; | 269 | device_type = "network"; |
| 271 | model = "eTSEC"; | 270 | model = "eTSEC"; |
| 272 | compatible = "gianfar"; | 271 | compatible = "gianfar"; |
| 273 | reg = <0x27000 0x1000>; | 272 | reg = <0x27000 0x1000>; |
| 273 | ranges = <0x0 0x27000 0x1000>; | ||
| 274 | local-mac-address = [ 00 00 00 00 00 00 ]; | 274 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 275 | interrupts = <37 2 38 2 39 2>; | 275 | interrupts = <37 2 38 2 39 2>; |
| 276 | interrupt-parent = <&mpic>; | 276 | interrupt-parent = <&mpic>; |
| 277 | tbi-handle = <&tbi3>; | 277 | tbi-handle = <&tbi3>; |
| 278 | phy-handle = <&phy4>; | 278 | phy-handle = <&phy4>; |
| 279 | |||
| 280 | mdio@520 { | ||
| 281 | #address-cells = <1>; | ||
| 282 | #size-cells = <0>; | ||
| 283 | compatible = "fsl,gianfar-tbi"; | ||
| 284 | reg = <0x520 0x20>; | ||
| 285 | |||
| 286 | tbi3: tbi-phy@11 { | ||
| 287 | reg = <0x11>; | ||
| 288 | device_type = "tbi-phy"; | ||
| 289 | }; | ||
| 290 | }; | ||
| 279 | }; | 291 | }; |
| 280 | 292 | ||
| 281 | serial0: serial@4500 { | 293 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/tqm8555.dts b/arch/powerpc/boot/dts/tqm8555.dts index 4b7da890c03b..a133ded6dddb 100644 --- a/arch/powerpc/boot/dts/tqm8555.dts +++ b/arch/powerpc/boot/dts/tqm8555.dts | |||
| @@ -135,72 +135,78 @@ | |||
| 135 | }; | 135 | }; |
| 136 | }; | 136 | }; |
| 137 | 137 | ||
| 138 | mdio@24520 { | ||
| 139 | #address-cells = <1>; | ||
| 140 | #size-cells = <0>; | ||
| 141 | compatible = "fsl,gianfar-mdio"; | ||
| 142 | reg = <0x24520 0x20>; | ||
| 143 | |||
| 144 | phy1: ethernet-phy@1 { | ||
| 145 | interrupt-parent = <&mpic>; | ||
| 146 | interrupts = <8 1>; | ||
| 147 | reg = <1>; | ||
| 148 | device_type = "ethernet-phy"; | ||
| 149 | }; | ||
| 150 | phy2: ethernet-phy@2 { | ||
| 151 | interrupt-parent = <&mpic>; | ||
| 152 | interrupts = <8 1>; | ||
| 153 | reg = <2>; | ||
| 154 | device_type = "ethernet-phy"; | ||
| 155 | }; | ||
| 156 | phy3: ethernet-phy@3 { | ||
| 157 | interrupt-parent = <&mpic>; | ||
| 158 | interrupts = <8 1>; | ||
| 159 | reg = <3>; | ||
| 160 | device_type = "ethernet-phy"; | ||
| 161 | }; | ||
| 162 | tbi0: tbi-phy@11 { | ||
| 163 | reg = <0x11>; | ||
| 164 | device_type = "tbi-phy"; | ||
| 165 | }; | ||
| 166 | }; | ||
| 167 | |||
| 168 | mdio@25520 { | ||
| 169 | #address-cells = <1>; | ||
| 170 | #size-cells = <0>; | ||
| 171 | compatible = "fsl,gianfar-tbi"; | ||
| 172 | reg = <0x25520 0x20>; | ||
| 173 | |||
| 174 | tbi1: tbi-phy@11 { | ||
| 175 | reg = <0x11>; | ||
| 176 | device_type = "tbi-phy"; | ||
| 177 | }; | ||
| 178 | }; | ||
| 179 | |||
| 180 | enet0: ethernet@24000 { | 138 | enet0: ethernet@24000 { |
| 139 | #address-cells = <1>; | ||
| 140 | #size-cells = <1>; | ||
| 181 | cell-index = <0>; | 141 | cell-index = <0>; |
| 182 | device_type = "network"; | 142 | device_type = "network"; |
| 183 | model = "TSEC"; | 143 | model = "TSEC"; |
| 184 | compatible = "gianfar"; | 144 | compatible = "gianfar"; |
| 185 | reg = <0x24000 0x1000>; | 145 | reg = <0x24000 0x1000>; |
| 146 | ranges = <0x0 0x24000 0x1000>; | ||
| 186 | local-mac-address = [ 00 00 00 00 00 00 ]; | 147 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 187 | interrupts = <29 2 30 2 34 2>; | 148 | interrupts = <29 2 30 2 34 2>; |
| 188 | interrupt-parent = <&mpic>; | 149 | interrupt-parent = <&mpic>; |
| 189 | tbi-handle = <&tbi0>; | 150 | tbi-handle = <&tbi0>; |
| 190 | phy-handle = <&phy2>; | 151 | phy-handle = <&phy2>; |
| 152 | |||
| 153 | mdio@520 { | ||
| 154 | #address-cells = <1>; | ||
| 155 | #size-cells = <0>; | ||
| 156 | compatible = "fsl,gianfar-mdio"; | ||
| 157 | reg = <0x520 0x20>; | ||
| 158 | |||
| 159 | phy1: ethernet-phy@1 { | ||
| 160 | interrupt-parent = <&mpic>; | ||
| 161 | interrupts = <8 1>; | ||
| 162 | reg = <1>; | ||
| 163 | device_type = "ethernet-phy"; | ||
| 164 | }; | ||
| 165 | phy2: ethernet-phy@2 { | ||
| 166 | interrupt-parent = <&mpic>; | ||
| 167 | interrupts = <8 1>; | ||
| 168 | reg = <2>; | ||
| 169 | device_type = "ethernet-phy"; | ||
| 170 | }; | ||
| 171 | phy3: ethernet-phy@3 { | ||
| 172 | interrupt-parent = <&mpic>; | ||
| 173 | interrupts = <8 1>; | ||
| 174 | reg = <3>; | ||
| 175 | device_type = "ethernet-phy"; | ||
| 176 | }; | ||
| 177 | tbi0: tbi-phy@11 { | ||
| 178 | reg = <0x11>; | ||
| 179 | device_type = "tbi-phy"; | ||
| 180 | }; | ||
| 181 | }; | ||
| 191 | }; | 182 | }; |
| 192 | 183 | ||
| 193 | enet1: ethernet@25000 { | 184 | enet1: ethernet@25000 { |
| 185 | #address-cells = <1>; | ||
| 186 | #size-cells = <1>; | ||
| 194 | cell-index = <1>; | 187 | cell-index = <1>; |
| 195 | device_type = "network"; | 188 | device_type = "network"; |
| 196 | model = "TSEC"; | 189 | model = "TSEC"; |
| 197 | compatible = "gianfar"; | 190 | compatible = "gianfar"; |
| 198 | reg = <0x25000 0x1000>; | 191 | reg = <0x25000 0x1000>; |
| 192 | ranges = <0x0 0x25000 0x1000>; | ||
| 199 | local-mac-address = [ 00 00 00 00 00 00 ]; | 193 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 200 | interrupts = <35 2 36 2 40 2>; | 194 | interrupts = <35 2 36 2 40 2>; |
| 201 | interrupt-parent = <&mpic>; | 195 | interrupt-parent = <&mpic>; |
| 202 | tbi-handle = <&tbi1>; | 196 | tbi-handle = <&tbi1>; |
| 203 | phy-handle = <&phy1>; | 197 | phy-handle = <&phy1>; |
| 198 | |||
| 199 | mdio@520 { | ||
| 200 | #address-cells = <1>; | ||
| 201 | #size-cells = <0>; | ||
| 202 | compatible = "fsl,gianfar-tbi"; | ||
| 203 | reg = <0x520 0x20>; | ||
| 204 | |||
| 205 | tbi1: tbi-phy@11 { | ||
| 206 | reg = <0x11>; | ||
| 207 | device_type = "tbi-phy"; | ||
| 208 | }; | ||
| 209 | }; | ||
| 204 | }; | 210 | }; |
| 205 | 211 | ||
| 206 | serial0: serial@4500 { | 212 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/tqm8560.dts b/arch/powerpc/boot/dts/tqm8560.dts index 3fa552f31edb..649e2e576267 100644 --- a/arch/powerpc/boot/dts/tqm8560.dts +++ b/arch/powerpc/boot/dts/tqm8560.dts | |||
| @@ -137,72 +137,78 @@ | |||
| 137 | }; | 137 | }; |
| 138 | }; | 138 | }; |
| 139 | 139 | ||
| 140 | mdio@24520 { | ||
| 141 | #address-cells = <1>; | ||
| 142 | #size-cells = <0>; | ||
| 143 | compatible = "fsl,gianfar-mdio"; | ||
| 144 | reg = <0x24520 0x20>; | ||
| 145 | |||
| 146 | phy1: ethernet-phy@1 { | ||
| 147 | interrupt-parent = <&mpic>; | ||
| 148 | interrupts = <8 1>; | ||
| 149 | reg = <1>; | ||
| 150 | device_type = "ethernet-phy"; | ||
| 151 | }; | ||
| 152 | phy2: ethernet-phy@2 { | ||
| 153 | interrupt-parent = <&mpic>; | ||
| 154 | interrupts = <8 1>; | ||
| 155 | reg = <2>; | ||
| 156 | device_type = "ethernet-phy"; | ||
| 157 | }; | ||
| 158 | phy3: ethernet-phy@3 { | ||
| 159 | interrupt-parent = <&mpic>; | ||
| 160 | interrupts = <8 1>; | ||
| 161 | reg = <3>; | ||
| 162 | device_type = "ethernet-phy"; | ||
| 163 | }; | ||
| 164 | tbi0: tbi-phy@11 { | ||
| 165 | reg = <0x11>; | ||
| 166 | device_type = "tbi-phy"; | ||
| 167 | }; | ||
| 168 | }; | ||
| 169 | |||
| 170 | mdio@25520 { | ||
| 171 | #address-cells = <1>; | ||
| 172 | #size-cells = <0>; | ||
| 173 | compatible = "fsl,gianfar-tbi"; | ||
| 174 | reg = <0x25520 0x20>; | ||
| 175 | |||
| 176 | tbi1: tbi-phy@11 { | ||
| 177 | reg = <0x11>; | ||
| 178 | device_type = "tbi-phy"; | ||
| 179 | }; | ||
| 180 | }; | ||
| 181 | |||
| 182 | enet0: ethernet@24000 { | 140 | enet0: ethernet@24000 { |
| 141 | #address-cells = <1>; | ||
| 142 | #size-cells = <1>; | ||
| 183 | cell-index = <0>; | 143 | cell-index = <0>; |
| 184 | device_type = "network"; | 144 | device_type = "network"; |
| 185 | model = "TSEC"; | 145 | model = "TSEC"; |
| 186 | compatible = "gianfar"; | 146 | compatible = "gianfar"; |
| 187 | reg = <0x24000 0x1000>; | 147 | reg = <0x24000 0x1000>; |
| 148 | ranges = <0x0 0x24000 0x1000>; | ||
| 188 | local-mac-address = [ 00 00 00 00 00 00 ]; | 149 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 189 | interrupts = <29 2 30 2 34 2>; | 150 | interrupts = <29 2 30 2 34 2>; |
| 190 | interrupt-parent = <&mpic>; | 151 | interrupt-parent = <&mpic>; |
| 191 | tbi-handle = <&tbi0>; | 152 | tbi-handle = <&tbi0>; |
| 192 | phy-handle = <&phy2>; | 153 | phy-handle = <&phy2>; |
| 154 | |||
| 155 | mdio@520 { | ||
| 156 | #address-cells = <1>; | ||
| 157 | #size-cells = <0>; | ||
| 158 | compatible = "fsl,gianfar-mdio"; | ||
| 159 | reg = <0x520 0x20>; | ||
| 160 | |||
| 161 | phy1: ethernet-phy@1 { | ||
| 162 | interrupt-parent = <&mpic>; | ||
| 163 | interrupts = <8 1>; | ||
| 164 | reg = <1>; | ||
| 165 | device_type = "ethernet-phy"; | ||
| 166 | }; | ||
| 167 | phy2: ethernet-phy@2 { | ||
| 168 | interrupt-parent = <&mpic>; | ||
| 169 | interrupts = <8 1>; | ||
| 170 | reg = <2>; | ||
| 171 | device_type = "ethernet-phy"; | ||
| 172 | }; | ||
| 173 | phy3: ethernet-phy@3 { | ||
| 174 | interrupt-parent = <&mpic>; | ||
| 175 | interrupts = <8 1>; | ||
| 176 | reg = <3>; | ||
| 177 | device_type = "ethernet-phy"; | ||
| 178 | }; | ||
| 179 | tbi0: tbi-phy@11 { | ||
| 180 | reg = <0x11>; | ||
| 181 | device_type = "tbi-phy"; | ||
| 182 | }; | ||
| 183 | }; | ||
| 193 | }; | 184 | }; |
| 194 | 185 | ||
| 195 | enet1: ethernet@25000 { | 186 | enet1: ethernet@25000 { |
| 187 | #address-cells = <1>; | ||
| 188 | #size-cells = <1>; | ||
| 196 | cell-index = <1>; | 189 | cell-index = <1>; |
| 197 | device_type = "network"; | 190 | device_type = "network"; |
| 198 | model = "TSEC"; | 191 | model = "TSEC"; |
| 199 | compatible = "gianfar"; | 192 | compatible = "gianfar"; |
| 200 | reg = <0x25000 0x1000>; | 193 | reg = <0x25000 0x1000>; |
| 194 | ranges = <0x0 0x25000 0x1000>; | ||
| 201 | local-mac-address = [ 00 00 00 00 00 00 ]; | 195 | local-mac-address = [ 00 00 00 00 00 00 ]; |
| 202 | interrupts = <35 2 36 2 40 2>; | 196 | interrupts = <35 2 36 2 40 2>; |
| 203 | interrupt-parent = <&mpic>; | 197 | interrupt-parent = <&mpic>; |
| 204 | tbi-handle = <&tbi1>; | 198 | tbi-handle = <&tbi1>; |
| 205 | phy-handle = <&phy1>; | 199 | phy-handle = <&phy1>; |
| 200 | |||
| 201 | mdio@520 { | ||
| 202 | #address-cells = <1>; | ||
| 203 | #size-cells = <0>; | ||
| 204 | compatible = "fsl,gianfar-tbi"; | ||
| 205 | reg = <0x520 0x20>; | ||
| 206 | |||
| 207 | tbi1: tbi-phy@11 { | ||
| 208 | reg = <0x11>; | ||
| 209 | device_type = "tbi-phy"; | ||
| 210 | }; | ||
| 211 | }; | ||
| 206 | }; | 212 | }; |
| 207 | 213 | ||
| 208 | mpic: pic@40000 { | 214 | mpic: pic@40000 { |
diff --git a/arch/powerpc/configs/85xx/socrates_defconfig b/arch/powerpc/configs/85xx/socrates_defconfig new file mode 100644 index 000000000000..0cc9048290a8 --- /dev/null +++ b/arch/powerpc/configs/85xx/socrates_defconfig | |||
| @@ -0,0 +1,1410 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.26.2 | ||
| 4 | # Sat Oct 18 11:06:13 2008 | ||
| 5 | # | ||
| 6 | # CONFIG_PPC64 is not set | ||
| 7 | |||
| 8 | # | ||
| 9 | # Processor support | ||
| 10 | # | ||
| 11 | # CONFIG_6xx is not set | ||
| 12 | CONFIG_PPC_85xx=y | ||
| 13 | # CONFIG_PPC_8xx is not set | ||
| 14 | # CONFIG_40x is not set | ||
| 15 | # CONFIG_44x is not set | ||
| 16 | # CONFIG_E200 is not set | ||
| 17 | CONFIG_E500=y | ||
| 18 | CONFIG_BOOKE=y | ||
| 19 | CONFIG_FSL_BOOKE=y | ||
| 20 | CONFIG_FSL_EMB_PERFMON=y | ||
| 21 | # CONFIG_PHYS_64BIT is not set | ||
| 22 | CONFIG_SPE=y | ||
| 23 | # CONFIG_PPC_MM_SLICES is not set | ||
| 24 | CONFIG_PPC32=y | ||
| 25 | CONFIG_WORD_SIZE=32 | ||
| 26 | CONFIG_PPC_MERGE=y | ||
| 27 | CONFIG_MMU=y | ||
| 28 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
| 29 | CONFIG_GENERIC_TIME=y | ||
| 30 | CONFIG_GENERIC_TIME_VSYSCALL=y | ||
| 31 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 32 | CONFIG_GENERIC_HARDIRQS=y | ||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
| 34 | CONFIG_IRQ_PER_CPU=y | ||
| 35 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | ||
| 39 | CONFIG_GENERIC_HWEIGHT=y | ||
| 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
| 42 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | ||
| 43 | CONFIG_PPC=y | ||
| 44 | CONFIG_EARLY_PRINTK=y | ||
| 45 | CONFIG_GENERIC_NVRAM=y | ||
| 46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | ||
| 47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
| 48 | CONFIG_PPC_OF=y | ||
| 49 | CONFIG_OF=y | ||
| 50 | CONFIG_PPC_UDBG_16550=y | ||
| 51 | # CONFIG_GENERIC_TBSYNC is not set | ||
| 52 | CONFIG_AUDIT_ARCH=y | ||
| 53 | CONFIG_GENERIC_BUG=y | ||
| 54 | CONFIG_DEFAULT_UIMAGE=y | ||
| 55 | # CONFIG_PPC_DCR_NATIVE is not set | ||
| 56 | # CONFIG_PPC_DCR_MMIO is not set | ||
| 57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 58 | |||
| 59 | # | ||
| 60 | # General setup | ||
| 61 | # | ||
| 62 | CONFIG_EXPERIMENTAL=y | ||
| 63 | CONFIG_BROKEN_ON_SMP=y | ||
| 64 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 65 | CONFIG_LOCALVERSION="" | ||
| 66 | CONFIG_LOCALVERSION_AUTO=y | ||
| 67 | CONFIG_SWAP=y | ||
| 68 | CONFIG_SYSVIPC=y | ||
| 69 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 70 | # CONFIG_POSIX_MQUEUE is not set | ||
| 71 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 72 | # CONFIG_TASKSTATS is not set | ||
| 73 | # CONFIG_AUDIT is not set | ||
| 74 | # CONFIG_IKCONFIG is not set | ||
| 75 | CONFIG_LOG_BUF_SHIFT=16 | ||
| 76 | # CONFIG_CGROUPS is not set | ||
| 77 | CONFIG_GROUP_SCHED=y | ||
| 78 | CONFIG_FAIR_GROUP_SCHED=y | ||
| 79 | # CONFIG_RT_GROUP_SCHED is not set | ||
| 80 | CONFIG_USER_SCHED=y | ||
| 81 | # CONFIG_CGROUP_SCHED is not set | ||
| 82 | CONFIG_SYSFS_DEPRECATED=y | ||
| 83 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 84 | # CONFIG_RELAY is not set | ||
| 85 | # CONFIG_NAMESPACES is not set | ||
| 86 | CONFIG_BLK_DEV_INITRD=y | ||
| 87 | CONFIG_INITRAMFS_SOURCE="" | ||
| 88 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
| 89 | CONFIG_SYSCTL=y | ||
| 90 | CONFIG_EMBEDDED=y | ||
| 91 | CONFIG_SYSCTL_SYSCALL=y | ||
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | # CONFIG_KALLSYMS is not set | ||
| 94 | # CONFIG_HOTPLUG is not set | ||
| 95 | CONFIG_PRINTK=y | ||
| 96 | CONFIG_BUG=y | ||
| 97 | CONFIG_ELF_CORE=y | ||
| 98 | CONFIG_COMPAT_BRK=y | ||
| 99 | CONFIG_BASE_FULL=y | ||
| 100 | CONFIG_FUTEX=y | ||
| 101 | CONFIG_ANON_INODES=y | ||
| 102 | # CONFIG_EPOLL is not set | ||
| 103 | CONFIG_SIGNALFD=y | ||
| 104 | CONFIG_TIMERFD=y | ||
| 105 | CONFIG_EVENTFD=y | ||
| 106 | CONFIG_SHMEM=y | ||
| 107 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 108 | CONFIG_SLUB_DEBUG=y | ||
| 109 | # CONFIG_SLAB is not set | ||
| 110 | CONFIG_SLUB=y | ||
| 111 | # CONFIG_SLOB is not set | ||
| 112 | # CONFIG_PROFILING is not set | ||
| 113 | # CONFIG_MARKERS is not set | ||
| 114 | CONFIG_HAVE_OPROFILE=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | ||
| 116 | CONFIG_HAVE_KRETPROBES=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 119 | CONFIG_SLABINFO=y | ||
| 120 | CONFIG_RT_MUTEXES=y | ||
| 121 | # CONFIG_TINY_SHMEM is not set | ||
| 122 | CONFIG_BASE_SMALL=0 | ||
| 123 | CONFIG_MODULES=y | ||
| 124 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 125 | CONFIG_MODULE_UNLOAD=y | ||
| 126 | CONFIG_MODULE_FORCE_UNLOAD=y | ||
| 127 | # CONFIG_MODVERSIONS is not set | ||
| 128 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 129 | # CONFIG_KMOD is not set | ||
| 130 | CONFIG_BLOCK=y | ||
| 131 | # CONFIG_LBD is not set | ||
| 132 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 133 | # CONFIG_LSF is not set | ||
| 134 | # CONFIG_BLK_DEV_BSG is not set | ||
| 135 | |||
| 136 | # | ||
| 137 | # IO Schedulers | ||
| 138 | # | ||
| 139 | CONFIG_IOSCHED_NOOP=y | ||
| 140 | CONFIG_IOSCHED_AS=y | ||
| 141 | CONFIG_IOSCHED_DEADLINE=y | ||
| 142 | CONFIG_IOSCHED_CFQ=y | ||
| 143 | CONFIG_DEFAULT_AS=y | ||
| 144 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 145 | # CONFIG_DEFAULT_CFQ is not set | ||
| 146 | # CONFIG_DEFAULT_NOOP is not set | ||
| 147 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
| 148 | CONFIG_CLASSIC_RCU=y | ||
| 149 | |||
| 150 | # | ||
| 151 | # Platform support | ||
| 152 | # | ||
| 153 | # CONFIG_PPC_MPC512x is not set | ||
| 154 | # CONFIG_PPC_MPC5121 is not set | ||
| 155 | # CONFIG_PPC_CELL is not set | ||
| 156 | # CONFIG_PPC_CELL_NATIVE is not set | ||
| 157 | # CONFIG_PQ2ADS is not set | ||
| 158 | CONFIG_MPC85xx=y | ||
| 159 | # CONFIG_MPC8540_ADS is not set | ||
| 160 | # CONFIG_MPC8560_ADS is not set | ||
| 161 | # CONFIG_MPC85xx_CDS is not set | ||
| 162 | # CONFIG_MPC85xx_MDS is not set | ||
| 163 | # CONFIG_MPC85xx_DS is not set | ||
| 164 | CONFIG_SOCRATES=y | ||
| 165 | # CONFIG_KSI8560 is not set | ||
| 166 | # CONFIG_STX_GP3 is not set | ||
| 167 | # CONFIG_TQM8540 is not set | ||
| 168 | # CONFIG_TQM8541 is not set | ||
| 169 | # CONFIG_TQM8555 is not set | ||
| 170 | # CONFIG_TQM8560 is not set | ||
| 171 | # CONFIG_SBC8548 is not set | ||
| 172 | # CONFIG_SBC8560 is not set | ||
| 173 | # CONFIG_IPIC is not set | ||
| 174 | CONFIG_MPIC=y | ||
| 175 | # CONFIG_MPIC_WEIRD is not set | ||
| 176 | # CONFIG_PPC_I8259 is not set | ||
| 177 | # CONFIG_PPC_RTAS is not set | ||
| 178 | # CONFIG_MMIO_NVRAM is not set | ||
| 179 | # CONFIG_PPC_MPC106 is not set | ||
| 180 | # CONFIG_PPC_970_NAP is not set | ||
| 181 | # CONFIG_PPC_INDIRECT_IO is not set | ||
| 182 | # CONFIG_GENERIC_IOMAP is not set | ||
| 183 | # CONFIG_CPU_FREQ is not set | ||
| 184 | # CONFIG_CPM2 is not set | ||
| 185 | # CONFIG_FSL_ULI1575 is not set | ||
| 186 | |||
| 187 | # | ||
| 188 | # Kernel options | ||
| 189 | # | ||
| 190 | # CONFIG_HIGHMEM is not set | ||
| 191 | # CONFIG_TICK_ONESHOT is not set | ||
| 192 | # CONFIG_NO_HZ is not set | ||
| 193 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 194 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 195 | # CONFIG_HZ_100 is not set | ||
| 196 | CONFIG_HZ_250=y | ||
| 197 | # CONFIG_HZ_300 is not set | ||
| 198 | # CONFIG_HZ_1000 is not set | ||
| 199 | CONFIG_HZ=250 | ||
| 200 | # CONFIG_SCHED_HRTICK is not set | ||
| 201 | CONFIG_PREEMPT_NONE=y | ||
| 202 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
| 203 | # CONFIG_PREEMPT is not set | ||
| 204 | CONFIG_BINFMT_ELF=y | ||
| 205 | # CONFIG_BINFMT_MISC is not set | ||
| 206 | CONFIG_MATH_EMULATION=y | ||
| 207 | # CONFIG_IOMMU_HELPER is not set | ||
| 208 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
| 209 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
| 210 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
| 211 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 212 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 213 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 214 | CONFIG_FLATMEM_MANUAL=y | ||
| 215 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 216 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 217 | CONFIG_FLATMEM=y | ||
| 218 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 219 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 220 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
| 221 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 222 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 223 | # CONFIG_RESOURCES_64BIT is not set | ||
| 224 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 225 | CONFIG_BOUNCE=y | ||
| 226 | CONFIG_VIRT_TO_BUS=y | ||
| 227 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 228 | # CONFIG_PROC_DEVICETREE is not set | ||
| 229 | # CONFIG_CMDLINE_BOOL is not set | ||
| 230 | # CONFIG_PM is not set | ||
| 231 | CONFIG_SECCOMP=y | ||
| 232 | CONFIG_ISA_DMA_API=y | ||
| 233 | |||
| 234 | # | ||
| 235 | # Bus options | ||
| 236 | # | ||
| 237 | CONFIG_ZONE_DMA=y | ||
| 238 | CONFIG_PPC_INDIRECT_PCI=y | ||
| 239 | CONFIG_FSL_SOC=y | ||
| 240 | CONFIG_FSL_PCI=y | ||
| 241 | CONFIG_PCI=y | ||
| 242 | CONFIG_PCI_DOMAINS=y | ||
| 243 | CONFIG_PCI_SYSCALL=y | ||
| 244 | # CONFIG_PCIEPORTBUS is not set | ||
| 245 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
| 246 | # CONFIG_PCI_MSI is not set | ||
| 247 | CONFIG_PCI_LEGACY=y | ||
| 248 | # CONFIG_HAS_RAPIDIO is not set | ||
| 249 | |||
| 250 | # | ||
| 251 | # Advanced setup | ||
| 252 | # | ||
| 253 | # CONFIG_ADVANCED_OPTIONS is not set | ||
| 254 | |||
| 255 | # | ||
| 256 | # Default settings for advanced configuration options are used | ||
| 257 | # | ||
| 258 | CONFIG_LOWMEM_SIZE=0x30000000 | ||
| 259 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 260 | CONFIG_KERNEL_START=0xc0000000 | ||
| 261 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 262 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 263 | CONFIG_TASK_SIZE=0xc0000000 | ||
| 264 | |||
| 265 | # | ||
| 266 | # Networking | ||
| 267 | # | ||
| 268 | CONFIG_NET=y | ||
| 269 | |||
| 270 | # | ||
| 271 | # Networking options | ||
| 272 | # | ||
| 273 | CONFIG_PACKET=y | ||
| 274 | # CONFIG_PACKET_MMAP is not set | ||
| 275 | CONFIG_UNIX=y | ||
| 276 | CONFIG_XFRM=y | ||
| 277 | # CONFIG_XFRM_USER is not set | ||
| 278 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 279 | # CONFIG_XFRM_MIGRATE is not set | ||
| 280 | # CONFIG_XFRM_STATISTICS is not set | ||
| 281 | # CONFIG_NET_KEY is not set | ||
| 282 | CONFIG_INET=y | ||
| 283 | CONFIG_IP_MULTICAST=y | ||
| 284 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 285 | CONFIG_IP_FIB_HASH=y | ||
| 286 | CONFIG_IP_PNP=y | ||
| 287 | CONFIG_IP_PNP_DHCP=y | ||
| 288 | CONFIG_IP_PNP_BOOTP=y | ||
| 289 | # CONFIG_IP_PNP_RARP is not set | ||
| 290 | # CONFIG_NET_IPIP is not set | ||
| 291 | # CONFIG_NET_IPGRE is not set | ||
| 292 | # CONFIG_IP_MROUTE is not set | ||
| 293 | # CONFIG_ARPD is not set | ||
| 294 | CONFIG_SYN_COOKIES=y | ||
| 295 | # CONFIG_INET_AH is not set | ||
| 296 | # CONFIG_INET_ESP is not set | ||
| 297 | # CONFIG_INET_IPCOMP is not set | ||
| 298 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 299 | # CONFIG_INET_TUNNEL is not set | ||
| 300 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 301 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 302 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 303 | # CONFIG_INET_LRO is not set | ||
| 304 | CONFIG_INET_DIAG=y | ||
| 305 | CONFIG_INET_TCP_DIAG=y | ||
| 306 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 307 | CONFIG_TCP_CONG_CUBIC=y | ||
| 308 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 309 | # CONFIG_TCP_MD5SIG is not set | ||
| 310 | # CONFIG_IPV6 is not set | ||
| 311 | # CONFIG_NETWORK_SECMARK is not set | ||
| 312 | # CONFIG_NETFILTER is not set | ||
| 313 | # CONFIG_IP_DCCP is not set | ||
| 314 | # CONFIG_IP_SCTP is not set | ||
| 315 | # CONFIG_TIPC is not set | ||
| 316 | # CONFIG_ATM is not set | ||
| 317 | # CONFIG_BRIDGE is not set | ||
| 318 | # CONFIG_VLAN_8021Q is not set | ||
| 319 | # CONFIG_DECNET is not set | ||
| 320 | # CONFIG_LLC2 is not set | ||
| 321 | # CONFIG_IPX is not set | ||
| 322 | # CONFIG_ATALK is not set | ||
| 323 | # CONFIG_X25 is not set | ||
| 324 | # CONFIG_LAPB is not set | ||
| 325 | # CONFIG_ECONET is not set | ||
| 326 | # CONFIG_WAN_ROUTER is not set | ||
| 327 | # CONFIG_NET_SCHED is not set | ||
| 328 | |||
| 329 | # | ||
| 330 | # Network testing | ||
| 331 | # | ||
| 332 | # CONFIG_NET_PKTGEN is not set | ||
| 333 | # CONFIG_HAMRADIO is not set | ||
| 334 | CONFIG_CAN=y | ||
| 335 | CONFIG_CAN_RAW=y | ||
| 336 | CONFIG_CAN_BCM=y | ||
| 337 | |||
| 338 | # | ||
| 339 | # CAN Device Drivers | ||
| 340 | # | ||
| 341 | # CONFIG_CAN_VCAN is not set | ||
| 342 | # CONFIG_CAN_OLD_DRIVERS is not set | ||
| 343 | # CONFIG_CAN_SLCAN is not set | ||
| 344 | CONFIG_CAN_SJA1000=y | ||
| 345 | CONFIG_CAN_SJA1000_MEM_OF=y | ||
| 346 | # CONFIG_CAN_EMS_PCI is not set | ||
| 347 | # CONFIG_CAN_IXXAT_PCI is not set | ||
| 348 | # CONFIG_CAN_PEAK_PCI is not set | ||
| 349 | # CONFIG_CAN_KVASER_PCI is not set | ||
| 350 | # CONFIG_CAN_MSCAN is not set | ||
| 351 | # CONFIG_CAN_DEBUG_DEVICES is not set | ||
| 352 | # CONFIG_IRDA is not set | ||
| 353 | # CONFIG_BT is not set | ||
| 354 | # CONFIG_AF_RXRPC is not set | ||
| 355 | |||
| 356 | # | ||
| 357 | # Wireless | ||
| 358 | # | ||
| 359 | # CONFIG_CFG80211 is not set | ||
| 360 | # CONFIG_WIRELESS_EXT is not set | ||
| 361 | # CONFIG_MAC80211 is not set | ||
| 362 | # CONFIG_IEEE80211 is not set | ||
| 363 | # CONFIG_RFKILL is not set | ||
| 364 | # CONFIG_NET_9P is not set | ||
| 365 | |||
| 366 | # | ||
| 367 | # Device Drivers | ||
| 368 | # | ||
| 369 | |||
| 370 | # | ||
| 371 | # Generic Driver Options | ||
| 372 | # | ||
| 373 | CONFIG_STANDALONE=y | ||
| 374 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 375 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 376 | # CONFIG_CONNECTOR is not set | ||
| 377 | CONFIG_MTD=y | ||
| 378 | # CONFIG_MTD_DEBUG is not set | ||
| 379 | CONFIG_MTD_CONCAT=y | ||
| 380 | CONFIG_MTD_PARTITIONS=y | ||
| 381 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 382 | CONFIG_MTD_CMDLINE_PARTS=y | ||
| 383 | CONFIG_MTD_OF_PARTS=y | ||
| 384 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 385 | |||
| 386 | # | ||
| 387 | # User Modules And Translation Layers | ||
| 388 | # | ||
| 389 | CONFIG_MTD_CHAR=y | ||
| 390 | CONFIG_MTD_BLKDEVS=y | ||
| 391 | CONFIG_MTD_BLOCK=y | ||
| 392 | # CONFIG_FTL is not set | ||
| 393 | # CONFIG_NFTL is not set | ||
| 394 | # CONFIG_INFTL is not set | ||
| 395 | # CONFIG_RFD_FTL is not set | ||
| 396 | # CONFIG_SSFDC is not set | ||
| 397 | # CONFIG_MTD_OOPS is not set | ||
| 398 | |||
| 399 | # | ||
| 400 | # RAM/ROM/Flash chip drivers | ||
| 401 | # | ||
| 402 | CONFIG_MTD_CFI=y | ||
| 403 | CONFIG_MTD_JEDECPROBE=y | ||
| 404 | CONFIG_MTD_GEN_PROBE=y | ||
| 405 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
| 406 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 407 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 408 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 409 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 410 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 411 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 412 | CONFIG_MTD_CFI_I1=y | ||
| 413 | CONFIG_MTD_CFI_I2=y | ||
| 414 | # CONFIG_MTD_CFI_I4 is not set | ||
| 415 | # CONFIG_MTD_CFI_I8 is not set | ||
| 416 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
| 417 | CONFIG_MTD_CFI_AMDSTD=y | ||
| 418 | # CONFIG_MTD_CFI_STAA is not set | ||
| 419 | CONFIG_MTD_CFI_UTIL=y | ||
| 420 | # CONFIG_MTD_RAM is not set | ||
| 421 | # CONFIG_MTD_ROM is not set | ||
| 422 | # CONFIG_MTD_ABSENT is not set | ||
| 423 | |||
| 424 | # | ||
| 425 | # Mapping drivers for chip access | ||
| 426 | # | ||
| 427 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 428 | # CONFIG_MTD_PHYSMAP is not set | ||
| 429 | CONFIG_MTD_PHYSMAP_OF=y | ||
| 430 | # CONFIG_MTD_INTEL_VR_NOR is not set | ||
| 431 | # CONFIG_MTD_PLATRAM is not set | ||
| 432 | |||
| 433 | # | ||
| 434 | # Self-contained MTD device drivers | ||
| 435 | # | ||
| 436 | # CONFIG_MTD_PMC551 is not set | ||
| 437 | # CONFIG_MTD_DATAFLASH is not set | ||
| 438 | # CONFIG_MTD_M25P80 is not set | ||
| 439 | # CONFIG_MTD_SLRAM is not set | ||
| 440 | # CONFIG_MTD_PHRAM is not set | ||
| 441 | # CONFIG_MTD_MTDRAM is not set | ||
| 442 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 443 | |||
| 444 | # | ||
| 445 | # Disk-On-Chip Device Drivers | ||
| 446 | # | ||
| 447 | # CONFIG_MTD_DOC2000 is not set | ||
| 448 | # CONFIG_MTD_DOC2001 is not set | ||
| 449 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 450 | CONFIG_MTD_NAND=y | ||
| 451 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set | ||
| 452 | # CONFIG_MTD_NAND_ECC_SMC is not set | ||
| 453 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set | ||
| 454 | CONFIG_MTD_NAND_IDS=y | ||
| 455 | # CONFIG_MTD_NAND_DISKONCHIP is not set | ||
| 456 | # CONFIG_MTD_NAND_CAFE is not set | ||
| 457 | # CONFIG_MTD_NAND_NANDSIM is not set | ||
| 458 | # CONFIG_MTD_NAND_PLATFORM is not set | ||
| 459 | # CONFIG_MTD_ALAUDA is not set | ||
| 460 | # CONFIG_MTD_NAND_FSL_ELBC is not set | ||
| 461 | CONFIG_MTD_NAND_SOCRATES=y | ||
| 462 | # CONFIG_MTD_ONENAND is not set | ||
| 463 | |||
| 464 | # | ||
| 465 | # UBI - Unsorted block images | ||
| 466 | # | ||
| 467 | # CONFIG_MTD_UBI is not set | ||
| 468 | CONFIG_OF_DEVICE=y | ||
| 469 | CONFIG_OF_I2C=y | ||
| 470 | # CONFIG_PARPORT is not set | ||
| 471 | CONFIG_BLK_DEV=y | ||
| 472 | # CONFIG_BLK_DEV_FD is not set | ||
| 473 | # CONFIG_BLK_CPQ_DA is not set | ||
| 474 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
| 475 | # CONFIG_BLK_DEV_DAC960 is not set | ||
| 476 | # CONFIG_BLK_DEV_UMEM is not set | ||
| 477 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 478 | CONFIG_BLK_DEV_LOOP=y | ||
| 479 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 480 | # CONFIG_BLK_DEV_NBD is not set | ||
| 481 | # CONFIG_BLK_DEV_SX8 is not set | ||
| 482 | # CONFIG_BLK_DEV_UB is not set | ||
| 483 | CONFIG_BLK_DEV_RAM=y | ||
| 484 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 485 | CONFIG_BLK_DEV_RAM_SIZE=32768 | ||
| 486 | # CONFIG_BLK_DEV_XIP is not set | ||
| 487 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 488 | # CONFIG_ATA_OVER_ETH is not set | ||
| 489 | CONFIG_MISC_DEVICES=y | ||
| 490 | # CONFIG_PHANTOM is not set | ||
| 491 | # CONFIG_EEPROM_93CX6 is not set | ||
| 492 | # CONFIG_SGI_IOC4 is not set | ||
| 493 | # CONFIG_TIFM_CORE is not set | ||
| 494 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
| 495 | CONFIG_HAVE_IDE=y | ||
| 496 | # CONFIG_IDE is not set | ||
| 497 | |||
| 498 | # | ||
| 499 | # SCSI device support | ||
| 500 | # | ||
| 501 | # CONFIG_RAID_ATTRS is not set | ||
| 502 | CONFIG_SCSI=y | ||
| 503 | CONFIG_SCSI_DMA=y | ||
| 504 | # CONFIG_SCSI_TGT is not set | ||
| 505 | # CONFIG_SCSI_NETLINK is not set | ||
| 506 | CONFIG_SCSI_PROC_FS=y | ||
| 507 | |||
| 508 | # | ||
| 509 | # SCSI support type (disk, tape, CD-ROM) | ||
| 510 | # | ||
| 511 | CONFIG_BLK_DEV_SD=y | ||
| 512 | # CONFIG_CHR_DEV_ST is not set | ||
| 513 | # CONFIG_CHR_DEV_OSST is not set | ||
| 514 | # CONFIG_BLK_DEV_SR is not set | ||
| 515 | # CONFIG_CHR_DEV_SG is not set | ||
| 516 | # CONFIG_CHR_DEV_SCH is not set | ||
| 517 | |||
| 518 | # | ||
| 519 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 520 | # | ||
| 521 | # CONFIG_SCSI_MULTI_LUN is not set | ||
| 522 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 523 | # CONFIG_SCSI_LOGGING is not set | ||
| 524 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
| 525 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 526 | |||
| 527 | # | ||
| 528 | # SCSI Transports | ||
| 529 | # | ||
| 530 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 531 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 532 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 533 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
| 534 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
| 535 | # CONFIG_SCSI_LOWLEVEL is not set | ||
| 536 | # CONFIG_ATA is not set | ||
| 537 | # CONFIG_MD is not set | ||
| 538 | # CONFIG_FUSION is not set | ||
| 539 | |||
| 540 | # | ||
| 541 | # IEEE 1394 (FireWire) support | ||
| 542 | # | ||
| 543 | |||
| 544 | # | ||
| 545 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 546 | # | ||
| 547 | # CONFIG_FIREWIRE is not set | ||
| 548 | # CONFIG_IEEE1394 is not set | ||
| 549 | # CONFIG_I2O is not set | ||
| 550 | # CONFIG_MACINTOSH_DRIVERS is not set | ||
| 551 | CONFIG_NETDEVICES=y | ||
| 552 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 553 | # CONFIG_DUMMY is not set | ||
| 554 | # CONFIG_BONDING is not set | ||
| 555 | # CONFIG_MACVLAN is not set | ||
| 556 | # CONFIG_EQUALIZER is not set | ||
| 557 | # CONFIG_TUN is not set | ||
| 558 | # CONFIG_VETH is not set | ||
| 559 | # CONFIG_ARCNET is not set | ||
| 560 | CONFIG_PHYLIB=y | ||
| 561 | |||
| 562 | # | ||
| 563 | # MII PHY device drivers | ||
| 564 | # | ||
| 565 | CONFIG_MARVELL_PHY=y | ||
| 566 | # CONFIG_DAVICOM_PHY is not set | ||
| 567 | # CONFIG_QSEMI_PHY is not set | ||
| 568 | # CONFIG_LXT_PHY is not set | ||
| 569 | # CONFIG_CICADA_PHY is not set | ||
| 570 | # CONFIG_VITESSE_PHY is not set | ||
| 571 | # CONFIG_SMSC_PHY is not set | ||
| 572 | # CONFIG_BROADCOM_PHY is not set | ||
| 573 | # CONFIG_ICPLUS_PHY is not set | ||
| 574 | # CONFIG_REALTEK_PHY is not set | ||
| 575 | # CONFIG_FIXED_PHY is not set | ||
| 576 | # CONFIG_MDIO_BITBANG is not set | ||
| 577 | CONFIG_NET_ETHERNET=y | ||
| 578 | CONFIG_MII=y | ||
| 579 | # CONFIG_HAPPYMEAL is not set | ||
| 580 | # CONFIG_SUNGEM is not set | ||
| 581 | # CONFIG_CASSINI is not set | ||
| 582 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 583 | # CONFIG_ENC28J60 is not set | ||
| 584 | # CONFIG_NET_TULIP is not set | ||
| 585 | # CONFIG_HP100 is not set | ||
| 586 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
| 587 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
| 588 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
| 589 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
| 590 | # CONFIG_NET_PCI is not set | ||
| 591 | # CONFIG_B44 is not set | ||
| 592 | CONFIG_NETDEV_1000=y | ||
| 593 | # CONFIG_ACENIC is not set | ||
| 594 | # CONFIG_DL2K is not set | ||
| 595 | # CONFIG_E1000 is not set | ||
| 596 | # CONFIG_E1000E is not set | ||
| 597 | # CONFIG_E1000E_ENABLED is not set | ||
| 598 | # CONFIG_IP1000 is not set | ||
| 599 | # CONFIG_IGB is not set | ||
| 600 | # CONFIG_NS83820 is not set | ||
| 601 | # CONFIG_HAMACHI is not set | ||
| 602 | # CONFIG_YELLOWFIN is not set | ||
| 603 | # CONFIG_R8169 is not set | ||
| 604 | # CONFIG_SIS190 is not set | ||
| 605 | # CONFIG_SKGE is not set | ||
| 606 | # CONFIG_SKY2 is not set | ||
| 607 | # CONFIG_VIA_VELOCITY is not set | ||
| 608 | # CONFIG_TIGON3 is not set | ||
| 609 | # CONFIG_BNX2 is not set | ||
| 610 | CONFIG_GIANFAR=y | ||
| 611 | CONFIG_GFAR_NAPI=y | ||
| 612 | # CONFIG_QLA3XXX is not set | ||
| 613 | # CONFIG_ATL1 is not set | ||
| 614 | # CONFIG_NETDEV_10000 is not set | ||
| 615 | # CONFIG_TR is not set | ||
| 616 | |||
| 617 | # | ||
| 618 | # Wireless LAN | ||
| 619 | # | ||
| 620 | # CONFIG_WLAN_PRE80211 is not set | ||
| 621 | # CONFIG_WLAN_80211 is not set | ||
| 622 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 623 | |||
| 624 | # | ||
| 625 | # USB Network Adapters | ||
| 626 | # | ||
| 627 | # CONFIG_USB_CATC is not set | ||
| 628 | # CONFIG_USB_KAWETH is not set | ||
| 629 | # CONFIG_USB_PEGASUS is not set | ||
| 630 | # CONFIG_USB_RTL8150 is not set | ||
| 631 | # CONFIG_USB_USBNET is not set | ||
| 632 | # CONFIG_WAN is not set | ||
| 633 | # CONFIG_FDDI is not set | ||
| 634 | # CONFIG_HIPPI is not set | ||
| 635 | # CONFIG_PPP is not set | ||
| 636 | # CONFIG_SLIP is not set | ||
| 637 | # CONFIG_NET_FC is not set | ||
| 638 | # CONFIG_NETCONSOLE is not set | ||
| 639 | # CONFIG_NETPOLL is not set | ||
| 640 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 641 | # CONFIG_ISDN is not set | ||
| 642 | # CONFIG_PHONE is not set | ||
| 643 | |||
| 644 | # | ||
| 645 | # Input device support | ||
| 646 | # | ||
| 647 | CONFIG_INPUT=y | ||
| 648 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
| 649 | # CONFIG_INPUT_POLLDEV is not set | ||
| 650 | |||
| 651 | # | ||
| 652 | # Userland interfaces | ||
| 653 | # | ||
| 654 | CONFIG_INPUT_MOUSEDEV=y | ||
| 655 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
| 656 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=800 | ||
| 657 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=480 | ||
| 658 | # CONFIG_INPUT_JOYDEV is not set | ||
| 659 | CONFIG_INPUT_EVDEV=y | ||
| 660 | # CONFIG_INPUT_EVBUG is not set | ||
| 661 | |||
| 662 | # | ||
| 663 | # Input Device Drivers | ||
| 664 | # | ||
| 665 | # CONFIG_INPUT_KEYBOARD is not set | ||
| 666 | # CONFIG_INPUT_MOUSE is not set | ||
| 667 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 668 | # CONFIG_INPUT_TABLET is not set | ||
| 669 | CONFIG_INPUT_TOUCHSCREEN=y | ||
| 670 | # CONFIG_TOUCHSCREEN_ADS7846 is not set | ||
| 671 | # CONFIG_TOUCHSCREEN_FUJITSU is not set | ||
| 672 | # CONFIG_TOUCHSCREEN_GUNZE is not set | ||
| 673 | # CONFIG_TOUCHSCREEN_ELO is not set | ||
| 674 | # CONFIG_TOUCHSCREEN_MTOUCH is not set | ||
| 675 | # CONFIG_TOUCHSCREEN_MK712 is not set | ||
| 676 | # CONFIG_TOUCHSCREEN_PENMOUNT is not set | ||
| 677 | # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set | ||
| 678 | # CONFIG_TOUCHSCREEN_TOUCHWIN is not set | ||
| 679 | # CONFIG_TOUCHSCREEN_UCB1400 is not set | ||
| 680 | CONFIG_TOUCHSCREEN_TSC2003=y | ||
| 681 | # CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set | ||
| 682 | # CONFIG_INPUT_MISC is not set | ||
| 683 | |||
| 684 | # | ||
| 685 | # Hardware I/O ports | ||
| 686 | # | ||
| 687 | # CONFIG_SERIO is not set | ||
| 688 | # CONFIG_GAMEPORT is not set | ||
| 689 | |||
| 690 | # | ||
| 691 | # Character devices | ||
| 692 | # | ||
| 693 | CONFIG_VT=y | ||
| 694 | CONFIG_VT_CONSOLE=y | ||
| 695 | CONFIG_HW_CONSOLE=y | ||
| 696 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
| 697 | CONFIG_DEVKMEM=y | ||
| 698 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 699 | # CONFIG_NOZOMI is not set | ||
| 700 | |||
| 701 | # | ||
| 702 | # Serial drivers | ||
| 703 | # | ||
| 704 | CONFIG_SERIAL_8250=y | ||
| 705 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 706 | CONFIG_SERIAL_8250_PCI=y | ||
| 707 | CONFIG_SERIAL_8250_NR_UARTS=2 | ||
| 708 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | ||
| 709 | CONFIG_SERIAL_8250_EXTENDED=y | ||
| 710 | CONFIG_SERIAL_8250_MANY_PORTS=y | ||
| 711 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
| 712 | CONFIG_SERIAL_8250_DETECT_IRQ=y | ||
| 713 | CONFIG_SERIAL_8250_RSA=y | ||
| 714 | |||
| 715 | # | ||
| 716 | # Non-8250 serial port support | ||
| 717 | # | ||
| 718 | # CONFIG_SERIAL_UARTLITE is not set | ||
| 719 | CONFIG_SERIAL_CORE=y | ||
| 720 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 721 | # CONFIG_SERIAL_JSM is not set | ||
| 722 | # CONFIG_SERIAL_OF_PLATFORM is not set | ||
| 723 | CONFIG_UNIX98_PTYS=y | ||
| 724 | CONFIG_LEGACY_PTYS=y | ||
| 725 | CONFIG_LEGACY_PTY_COUNT=256 | ||
| 726 | # CONFIG_IPMI_HANDLER is not set | ||
| 727 | CONFIG_HW_RANDOM=y | ||
| 728 | # CONFIG_NVRAM is not set | ||
| 729 | # CONFIG_R3964 is not set | ||
| 730 | # CONFIG_APPLICOM is not set | ||
| 731 | # CONFIG_RAW_DRIVER is not set | ||
| 732 | # CONFIG_TCG_TPM is not set | ||
| 733 | CONFIG_DEVPORT=y | ||
| 734 | CONFIG_I2C=y | ||
| 735 | CONFIG_I2C_BOARDINFO=y | ||
| 736 | CONFIG_I2C_CHARDEV=y | ||
| 737 | |||
| 738 | # | ||
| 739 | # I2C Hardware Bus support | ||
| 740 | # | ||
| 741 | # CONFIG_I2C_ALI1535 is not set | ||
| 742 | # CONFIG_I2C_ALI1563 is not set | ||
| 743 | # CONFIG_I2C_ALI15X3 is not set | ||
| 744 | # CONFIG_I2C_AMD756 is not set | ||
| 745 | # CONFIG_I2C_AMD8111 is not set | ||
| 746 | # CONFIG_I2C_I801 is not set | ||
| 747 | # CONFIG_I2C_I810 is not set | ||
| 748 | # CONFIG_I2C_PIIX4 is not set | ||
| 749 | CONFIG_I2C_MPC=y | ||
| 750 | # CONFIG_I2C_NFORCE2 is not set | ||
| 751 | # CONFIG_I2C_OCORES is not set | ||
| 752 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 753 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 754 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 755 | # CONFIG_I2C_SIMTEC is not set | ||
| 756 | # CONFIG_I2C_SIS5595 is not set | ||
| 757 | # CONFIG_I2C_SIS630 is not set | ||
| 758 | # CONFIG_I2C_SIS96X is not set | ||
| 759 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 760 | # CONFIG_I2C_STUB is not set | ||
| 761 | # CONFIG_I2C_TINY_USB is not set | ||
| 762 | # CONFIG_I2C_VIA is not set | ||
| 763 | # CONFIG_I2C_VIAPRO is not set | ||
| 764 | # CONFIG_I2C_VOODOO3 is not set | ||
| 765 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 766 | |||
| 767 | # | ||
| 768 | # Miscellaneous I2C Chip support | ||
| 769 | # | ||
| 770 | # CONFIG_DS1682 is not set | ||
| 771 | # CONFIG_SENSORS_EEPROM is not set | ||
| 772 | # CONFIG_SENSORS_PCF8574 is not set | ||
| 773 | # CONFIG_PCF8575 is not set | ||
| 774 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 775 | # CONFIG_SENSORS_MAX6875 is not set | ||
| 776 | # CONFIG_SENSORS_TSL2550 is not set | ||
| 777 | # CONFIG_I2C_DEBUG_CORE is not set | ||
| 778 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
| 779 | # CONFIG_I2C_DEBUG_BUS is not set | ||
| 780 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
| 781 | CONFIG_SPI=y | ||
| 782 | CONFIG_SPI_MASTER=y | ||
| 783 | |||
| 784 | # | ||
| 785 | # SPI Master Controller Drivers | ||
| 786 | # | ||
| 787 | # CONFIG_SPI_BITBANG is not set | ||
| 788 | CONFIG_SPI_SOCRATES=y | ||
| 789 | |||
| 790 | # | ||
| 791 | # SPI Protocol Masters | ||
| 792 | # | ||
| 793 | # CONFIG_SPI_AT25 is not set | ||
| 794 | # CONFIG_SPI_SPIDEV is not set | ||
| 795 | # CONFIG_SPI_TLE62X0 is not set | ||
| 796 | # CONFIG_W1 is not set | ||
| 797 | # CONFIG_POWER_SUPPLY is not set | ||
| 798 | CONFIG_HWMON=y | ||
| 799 | CONFIG_HWMON_VID=y | ||
| 800 | # CONFIG_SENSORS_AD7418 is not set | ||
| 801 | # CONFIG_SENSORS_ADM1021 is not set | ||
| 802 | # CONFIG_SENSORS_ADM1025 is not set | ||
| 803 | # CONFIG_SENSORS_ADM1026 is not set | ||
| 804 | # CONFIG_SENSORS_ADM1029 is not set | ||
| 805 | # CONFIG_SENSORS_ADM1031 is not set | ||
| 806 | # CONFIG_SENSORS_ADM9240 is not set | ||
| 807 | # CONFIG_SENSORS_ADT7470 is not set | ||
| 808 | # CONFIG_SENSORS_ADT7473 is not set | ||
| 809 | # CONFIG_SENSORS_ATXP1 is not set | ||
| 810 | # CONFIG_SENSORS_DS1621 is not set | ||
| 811 | # CONFIG_SENSORS_I5K_AMB is not set | ||
| 812 | # CONFIG_SENSORS_F71805F is not set | ||
| 813 | # CONFIG_SENSORS_F71882FG is not set | ||
| 814 | # CONFIG_SENSORS_F75375S is not set | ||
| 815 | # CONFIG_SENSORS_GL518SM is not set | ||
| 816 | # CONFIG_SENSORS_GL520SM is not set | ||
| 817 | # CONFIG_SENSORS_IT87 is not set | ||
| 818 | # CONFIG_SENSORS_LM63 is not set | ||
| 819 | # CONFIG_SENSORS_LM70 is not set | ||
| 820 | CONFIG_SENSORS_LM75=y | ||
| 821 | # CONFIG_SENSORS_LM77 is not set | ||
| 822 | # CONFIG_SENSORS_LM78 is not set | ||
| 823 | # CONFIG_SENSORS_LM80 is not set | ||
| 824 | # CONFIG_SENSORS_LM83 is not set | ||
| 825 | # CONFIG_SENSORS_LM85 is not set | ||
| 826 | # CONFIG_SENSORS_LM87 is not set | ||
| 827 | # CONFIG_SENSORS_LM90 is not set | ||
| 828 | # CONFIG_SENSORS_LM92 is not set | ||
| 829 | # CONFIG_SENSORS_LM93 is not set | ||
| 830 | # CONFIG_SENSORS_MAX1619 is not set | ||
| 831 | # CONFIG_SENSORS_MAX6650 is not set | ||
| 832 | # CONFIG_SENSORS_PC87360 is not set | ||
| 833 | # CONFIG_SENSORS_PC87427 is not set | ||
| 834 | # CONFIG_SENSORS_SIS5595 is not set | ||
| 835 | # CONFIG_SENSORS_DME1737 is not set | ||
| 836 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
| 837 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
| 838 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
| 839 | # CONFIG_SENSORS_ADS7828 is not set | ||
| 840 | # CONFIG_SENSORS_THMC50 is not set | ||
| 841 | # CONFIG_SENSORS_VIA686A is not set | ||
| 842 | # CONFIG_SENSORS_VT1211 is not set | ||
| 843 | # CONFIG_SENSORS_VT8231 is not set | ||
| 844 | CONFIG_SENSORS_W83781D=y | ||
| 845 | # CONFIG_SENSORS_W83791D is not set | ||
| 846 | # CONFIG_SENSORS_W83792D is not set | ||
| 847 | # CONFIG_SENSORS_W83793 is not set | ||
| 848 | # CONFIG_SENSORS_W83L785TS is not set | ||
| 849 | # CONFIG_SENSORS_W83L786NG is not set | ||
| 850 | # CONFIG_SENSORS_W83627HF is not set | ||
| 851 | # CONFIG_SENSORS_W83627EHF is not set | ||
| 852 | CONFIG_HWMON_DEBUG_CHIP=y | ||
| 853 | # CONFIG_THERMAL is not set | ||
| 854 | # CONFIG_THERMAL_HWMON is not set | ||
| 855 | # CONFIG_WATCHDOG is not set | ||
| 856 | |||
| 857 | # | ||
| 858 | # Sonics Silicon Backplane | ||
| 859 | # | ||
| 860 | CONFIG_SSB_POSSIBLE=y | ||
| 861 | # CONFIG_SSB is not set | ||
| 862 | |||
| 863 | # | ||
| 864 | # Multifunction device drivers | ||
| 865 | # | ||
| 866 | # CONFIG_MFD_SM501 is not set | ||
| 867 | # CONFIG_HTC_PASIC3 is not set | ||
| 868 | |||
| 869 | # | ||
| 870 | # Multimedia devices | ||
| 871 | # | ||
| 872 | |||
| 873 | # | ||
| 874 | # Multimedia core support | ||
| 875 | # | ||
| 876 | # CONFIG_VIDEO_DEV is not set | ||
| 877 | # CONFIG_DVB_CORE is not set | ||
| 878 | # CONFIG_VIDEO_MEDIA is not set | ||
| 879 | |||
| 880 | # | ||
| 881 | # Multimedia drivers | ||
| 882 | # | ||
| 883 | CONFIG_DAB=y | ||
| 884 | # CONFIG_USB_DABUSB is not set | ||
| 885 | |||
| 886 | # | ||
| 887 | # Graphics support | ||
| 888 | # | ||
| 889 | # CONFIG_AGP is not set | ||
| 890 | # CONFIG_DRM is not set | ||
| 891 | # CONFIG_VGASTATE is not set | ||
| 892 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 893 | CONFIG_FB=y | ||
| 894 | # CONFIG_FIRMWARE_EDID is not set | ||
| 895 | # CONFIG_FB_DDC is not set | ||
| 896 | CONFIG_FB_CFB_FILLRECT=y | ||
| 897 | CONFIG_FB_CFB_COPYAREA=y | ||
| 898 | CONFIG_FB_CFB_IMAGEBLIT=y | ||
| 899 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | ||
| 900 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 901 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 902 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 903 | CONFIG_FB_FOREIGN_ENDIAN=y | ||
| 904 | CONFIG_FB_BOTH_ENDIAN=y | ||
| 905 | # CONFIG_FB_BIG_ENDIAN is not set | ||
| 906 | # CONFIG_FB_LITTLE_ENDIAN is not set | ||
| 907 | # CONFIG_FB_SYS_FOPS is not set | ||
| 908 | # CONFIG_FB_SVGALIB is not set | ||
| 909 | # CONFIG_FB_MACMODES is not set | ||
| 910 | # CONFIG_FB_BACKLIGHT is not set | ||
| 911 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 912 | # CONFIG_FB_TILEBLITTING is not set | ||
| 913 | |||
| 914 | # | ||
| 915 | # Frame buffer hardware drivers | ||
| 916 | # | ||
| 917 | CONFIG_FB_MB862XX=y | ||
| 918 | # CONFIG_FB_MB862XX_PCI_GDC is not set | ||
| 919 | CONFIG_FB_MB862XX_LIME=y | ||
| 920 | # CONFIG_FB_PRE_INIT_FB is not set | ||
| 921 | # CONFIG_FB_CIRRUS is not set | ||
| 922 | # CONFIG_FB_PM2 is not set | ||
| 923 | # CONFIG_FB_CYBER2000 is not set | ||
| 924 | # CONFIG_FB_OF is not set | ||
| 925 | # CONFIG_FB_CT65550 is not set | ||
| 926 | # CONFIG_FB_ASILIANT is not set | ||
| 927 | # CONFIG_FB_IMSTT is not set | ||
| 928 | # CONFIG_FB_VGA16 is not set | ||
| 929 | # CONFIG_FB_S1D13XXX is not set | ||
| 930 | # CONFIG_FB_NVIDIA is not set | ||
| 931 | # CONFIG_FB_RIVA is not set | ||
| 932 | # CONFIG_FB_MATROX is not set | ||
| 933 | # CONFIG_FB_RADEON is not set | ||
| 934 | # CONFIG_FB_ATY128 is not set | ||
| 935 | # CONFIG_FB_ATY is not set | ||
| 936 | # CONFIG_FB_S3 is not set | ||
| 937 | # CONFIG_FB_SAVAGE is not set | ||
| 938 | # CONFIG_FB_SIS is not set | ||
| 939 | # CONFIG_FB_NEOMAGIC is not set | ||
| 940 | # CONFIG_FB_KYRO is not set | ||
| 941 | # CONFIG_FB_3DFX is not set | ||
| 942 | # CONFIG_FB_VOODOO1 is not set | ||
| 943 | # CONFIG_FB_VT8623 is not set | ||
| 944 | # CONFIG_FB_TRIDENT is not set | ||
| 945 | # CONFIG_FB_ARK is not set | ||
| 946 | # CONFIG_FB_PM3 is not set | ||
| 947 | # CONFIG_FB_FSL_DIU is not set | ||
| 948 | # CONFIG_FB_IBM_GXT4500 is not set | ||
| 949 | # CONFIG_FB_VIRTUAL is not set | ||
| 950 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 951 | |||
| 952 | # | ||
| 953 | # Display device support | ||
| 954 | # | ||
| 955 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 956 | |||
| 957 | # | ||
| 958 | # Console display driver support | ||
| 959 | # | ||
| 960 | # CONFIG_VGA_CONSOLE is not set | ||
| 961 | CONFIG_DUMMY_CONSOLE=y | ||
| 962 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 963 | # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set | ||
| 964 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
| 965 | CONFIG_FONTS=y | ||
| 966 | # CONFIG_FONT_8x8 is not set | ||
| 967 | CONFIG_FONT_8x16=y | ||
| 968 | # CONFIG_FONT_6x11 is not set | ||
| 969 | # CONFIG_FONT_7x14 is not set | ||
| 970 | # CONFIG_FONT_PEARL_8x8 is not set | ||
| 971 | # CONFIG_FONT_ACORN_8x8 is not set | ||
| 972 | # CONFIG_FONT_MINI_4x6 is not set | ||
| 973 | # CONFIG_FONT_SUN8x16 is not set | ||
| 974 | # CONFIG_FONT_SUN12x22 is not set | ||
| 975 | # CONFIG_FONT_10x18 is not set | ||
| 976 | # CONFIG_LOGO is not set | ||
| 977 | |||
| 978 | # | ||
| 979 | # Sound | ||
| 980 | # | ||
| 981 | # CONFIG_SOUND is not set | ||
| 982 | CONFIG_HID_SUPPORT=y | ||
| 983 | CONFIG_HID=y | ||
| 984 | # CONFIG_HID_DEBUG is not set | ||
| 985 | # CONFIG_HIDRAW is not set | ||
| 986 | |||
| 987 | # | ||
| 988 | # USB Input Devices | ||
| 989 | # | ||
| 990 | CONFIG_USB_HID=y | ||
| 991 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 992 | # CONFIG_HID_FF is not set | ||
| 993 | # CONFIG_USB_HIDDEV is not set | ||
| 994 | CONFIG_USB_SUPPORT=y | ||
| 995 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 996 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 997 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
| 998 | CONFIG_USB=y | ||
| 999 | # CONFIG_USB_DEBUG is not set | ||
| 1000 | CONFIG_USB_ANNOUNCE_NEW_DEVICES=y | ||
| 1001 | |||
| 1002 | # | ||
| 1003 | # Miscellaneous USB options | ||
| 1004 | # | ||
| 1005 | CONFIG_USB_DEVICEFS=y | ||
| 1006 | CONFIG_USB_DEVICE_CLASS=y | ||
| 1007 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 1008 | # CONFIG_USB_OTG is not set | ||
| 1009 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 1010 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 1011 | |||
| 1012 | # | ||
| 1013 | # USB Host Controller Drivers | ||
| 1014 | # | ||
| 1015 | # CONFIG_USB_C67X00_HCD is not set | ||
| 1016 | CONFIG_USB_EHCI_HCD=y | ||
| 1017 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | ||
| 1018 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | ||
| 1019 | # CONFIG_USB_EHCI_FSL is not set | ||
| 1020 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
| 1021 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 1022 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 1023 | CONFIG_USB_OHCI_HCD=y | ||
| 1024 | CONFIG_USB_OHCI_HCD_PPC_OF=y | ||
| 1025 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | ||
| 1026 | # CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set | ||
| 1027 | CONFIG_USB_OHCI_HCD_PCI=y | ||
| 1028 | CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y | ||
| 1029 | CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y | ||
| 1030 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 1031 | # CONFIG_USB_UHCI_HCD is not set | ||
| 1032 | # CONFIG_USB_SL811_HCD is not set | ||
| 1033 | # CONFIG_USB_R8A66597_HCD is not set | ||
| 1034 | |||
| 1035 | # | ||
| 1036 | # USB Device Class drivers | ||
| 1037 | # | ||
| 1038 | # CONFIG_USB_ACM is not set | ||
| 1039 | # CONFIG_USB_PRINTER is not set | ||
| 1040 | # CONFIG_USB_WDM is not set | ||
| 1041 | |||
| 1042 | # | ||
| 1043 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 1044 | # | ||
| 1045 | |||
| 1046 | # | ||
| 1047 | # may also be needed; see USB_STORAGE Help for more information | ||
| 1048 | # | ||
| 1049 | CONFIG_USB_STORAGE=y | ||
| 1050 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 1051 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
| 1052 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
| 1053 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
| 1054 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 1055 | # CONFIG_USB_STORAGE_USBAT is not set | ||
| 1056 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
| 1057 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
| 1058 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
| 1059 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
| 1060 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
| 1061 | # CONFIG_USB_STORAGE_KARMA is not set | ||
| 1062 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 1063 | # CONFIG_USB_LIBUSUAL is not set | ||
| 1064 | |||
| 1065 | # | ||
| 1066 | # USB Imaging devices | ||
| 1067 | # | ||
| 1068 | # CONFIG_USB_MDC800 is not set | ||
| 1069 | # CONFIG_USB_MICROTEK is not set | ||
| 1070 | CONFIG_USB_MON=y | ||
| 1071 | |||
| 1072 | # | ||
| 1073 | # USB port drivers | ||
| 1074 | # | ||
| 1075 | # CONFIG_USB_SERIAL is not set | ||
| 1076 | |||
| 1077 | # | ||
| 1078 | # USB Miscellaneous drivers | ||
| 1079 | # | ||
| 1080 | # CONFIG_USB_EMI62 is not set | ||
| 1081 | # CONFIG_USB_EMI26 is not set | ||
| 1082 | # CONFIG_USB_ADUTUX is not set | ||
| 1083 | # CONFIG_USB_AUERSWALD is not set | ||
| 1084 | # CONFIG_USB_RIO500 is not set | ||
| 1085 | # CONFIG_USB_LEGOTOWER is not set | ||
| 1086 | # CONFIG_USB_LCD is not set | ||
| 1087 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 1088 | # CONFIG_USB_LED is not set | ||
| 1089 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 1090 | # CONFIG_USB_CYTHERM is not set | ||
| 1091 | # CONFIG_USB_PHIDGET is not set | ||
| 1092 | # CONFIG_USB_IDMOUSE is not set | ||
| 1093 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 1094 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 1095 | # CONFIG_USB_SISUSBVGA is not set | ||
| 1096 | # CONFIG_USB_LD is not set | ||
| 1097 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 1098 | # CONFIG_USB_IOWARRIOR is not set | ||
| 1099 | # CONFIG_USB_TEST is not set | ||
| 1100 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1101 | # CONFIG_USB_GADGET is not set | ||
| 1102 | # CONFIG_MMC is not set | ||
| 1103 | # CONFIG_MEMSTICK is not set | ||
| 1104 | # CONFIG_NEW_LEDS is not set | ||
| 1105 | # CONFIG_ACCESSIBILITY is not set | ||
| 1106 | # CONFIG_INFINIBAND is not set | ||
| 1107 | # CONFIG_EDAC is not set | ||
| 1108 | CONFIG_RTC_LIB=y | ||
| 1109 | CONFIG_RTC_CLASS=y | ||
| 1110 | CONFIG_RTC_HCTOSYS=y | ||
| 1111 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 1112 | # CONFIG_RTC_DEBUG is not set | ||
| 1113 | |||
| 1114 | # | ||
| 1115 | # RTC interfaces | ||
| 1116 | # | ||
| 1117 | CONFIG_RTC_INTF_SYSFS=y | ||
| 1118 | CONFIG_RTC_INTF_PROC=y | ||
| 1119 | CONFIG_RTC_INTF_DEV=y | ||
| 1120 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 1121 | # CONFIG_RTC_DRV_TEST is not set | ||
| 1122 | |||
| 1123 | # | ||
| 1124 | # I2C RTC drivers | ||
| 1125 | # | ||
| 1126 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 1127 | # CONFIG_RTC_DRV_DS1374 is not set | ||
| 1128 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 1129 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 1130 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 1131 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 1132 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 1133 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
| 1134 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 1135 | # CONFIG_RTC_DRV_M41T80 is not set | ||
| 1136 | # CONFIG_RTC_DRV_S35390A is not set | ||
| 1137 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1138 | CONFIG_RTC_DRV_RX8025=y | ||
| 1139 | |||
| 1140 | # | ||
| 1141 | # SPI RTC drivers | ||
| 1142 | # | ||
| 1143 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
| 1144 | # CONFIG_RTC_DRV_R9701 is not set | ||
| 1145 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
| 1146 | |||
| 1147 | # | ||
| 1148 | # Platform RTC drivers | ||
| 1149 | # | ||
| 1150 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 1151 | # CONFIG_RTC_DRV_DS1511 is not set | ||
| 1152 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 1153 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 1154 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 1155 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 1156 | # CONFIG_RTC_DRV_M48T59 is not set | ||
| 1157 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 1158 | |||
| 1159 | # | ||
| 1160 | # on-CPU RTC drivers | ||
| 1161 | # | ||
| 1162 | CONFIG_RTC_DRV_PPC=y | ||
| 1163 | # CONFIG_DMADEVICES is not set | ||
| 1164 | # CONFIG_UIO is not set | ||
| 1165 | |||
| 1166 | # | ||
| 1167 | # File systems | ||
| 1168 | # | ||
| 1169 | CONFIG_EXT2_FS=y | ||
| 1170 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 1171 | # CONFIG_EXT2_FS_XIP is not set | ||
| 1172 | CONFIG_EXT3_FS=y | ||
| 1173 | CONFIG_EXT3_FS_XATTR=y | ||
| 1174 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
| 1175 | # CONFIG_EXT3_FS_SECURITY is not set | ||
| 1176 | # CONFIG_EXT4DEV_FS is not set | ||
| 1177 | CONFIG_JBD=y | ||
| 1178 | CONFIG_FS_MBCACHE=y | ||
| 1179 | # CONFIG_REISERFS_FS is not set | ||
| 1180 | # CONFIG_JFS_FS is not set | ||
| 1181 | # CONFIG_FS_POSIX_ACL is not set | ||
| 1182 | # CONFIG_XFS_FS is not set | ||
| 1183 | # CONFIG_OCFS2_FS is not set | ||
| 1184 | CONFIG_DNOTIFY=y | ||
| 1185 | CONFIG_INOTIFY=y | ||
| 1186 | CONFIG_INOTIFY_USER=y | ||
| 1187 | # CONFIG_QUOTA is not set | ||
| 1188 | # CONFIG_AUTOFS_FS is not set | ||
| 1189 | # CONFIG_AUTOFS4_FS is not set | ||
| 1190 | # CONFIG_FUSE_FS is not set | ||
| 1191 | |||
| 1192 | # | ||
| 1193 | # CD-ROM/DVD Filesystems | ||
| 1194 | # | ||
| 1195 | # CONFIG_ISO9660_FS is not set | ||
| 1196 | # CONFIG_UDF_FS is not set | ||
| 1197 | |||
| 1198 | # | ||
| 1199 | # DOS/FAT/NT Filesystems | ||
| 1200 | # | ||
| 1201 | # CONFIG_MSDOS_FS is not set | ||
| 1202 | # CONFIG_VFAT_FS is not set | ||
| 1203 | # CONFIG_NTFS_FS is not set | ||
| 1204 | |||
| 1205 | # | ||
| 1206 | # Pseudo filesystems | ||
| 1207 | # | ||
| 1208 | CONFIG_PROC_FS=y | ||
| 1209 | CONFIG_PROC_KCORE=y | ||
| 1210 | CONFIG_PROC_SYSCTL=y | ||
| 1211 | CONFIG_SYSFS=y | ||
| 1212 | CONFIG_TMPFS=y | ||
| 1213 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 1214 | # CONFIG_HUGETLB_PAGE is not set | ||
| 1215 | # CONFIG_CONFIGFS_FS is not set | ||
| 1216 | |||
| 1217 | # | ||
| 1218 | # Miscellaneous filesystems | ||
| 1219 | # | ||
| 1220 | # CONFIG_ADFS_FS is not set | ||
| 1221 | # CONFIG_AFFS_FS is not set | ||
| 1222 | # CONFIG_HFS_FS is not set | ||
| 1223 | # CONFIG_HFSPLUS_FS is not set | ||
| 1224 | # CONFIG_BEFS_FS is not set | ||
| 1225 | # CONFIG_BFS_FS is not set | ||
| 1226 | # CONFIG_EFS_FS is not set | ||
| 1227 | CONFIG_JFFS2_FS=y | ||
| 1228 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 1229 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 1230 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
| 1231 | # CONFIG_JFFS2_SUMMARY is not set | ||
| 1232 | # CONFIG_JFFS2_FS_XATTR is not set | ||
| 1233 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
| 1234 | CONFIG_JFFS2_ZLIB=y | ||
| 1235 | # CONFIG_JFFS2_LZO is not set | ||
| 1236 | CONFIG_JFFS2_RTIME=y | ||
| 1237 | # CONFIG_JFFS2_RUBIN is not set | ||
| 1238 | CONFIG_CRAMFS=y | ||
| 1239 | # CONFIG_VXFS_FS is not set | ||
| 1240 | # CONFIG_MINIX_FS is not set | ||
| 1241 | # CONFIG_HPFS_FS is not set | ||
| 1242 | # CONFIG_QNX4FS_FS is not set | ||
| 1243 | # CONFIG_ROMFS_FS is not set | ||
| 1244 | # CONFIG_SYSV_FS is not set | ||
| 1245 | # CONFIG_UFS_FS is not set | ||
| 1246 | CONFIG_NETWORK_FILESYSTEMS=y | ||
| 1247 | CONFIG_NFS_FS=y | ||
| 1248 | CONFIG_NFS_V3=y | ||
| 1249 | # CONFIG_NFS_V3_ACL is not set | ||
| 1250 | # CONFIG_NFS_V4 is not set | ||
| 1251 | # CONFIG_NFSD is not set | ||
| 1252 | CONFIG_ROOT_NFS=y | ||
| 1253 | CONFIG_LOCKD=y | ||
| 1254 | CONFIG_LOCKD_V4=y | ||
| 1255 | CONFIG_NFS_COMMON=y | ||
| 1256 | CONFIG_SUNRPC=y | ||
| 1257 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1258 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 1259 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 1260 | # CONFIG_SMB_FS is not set | ||
| 1261 | # CONFIG_CIFS is not set | ||
| 1262 | # CONFIG_NCP_FS is not set | ||
| 1263 | # CONFIG_CODA_FS is not set | ||
| 1264 | # CONFIG_AFS_FS is not set | ||
| 1265 | |||
| 1266 | # | ||
| 1267 | # Partition Types | ||
| 1268 | # | ||
| 1269 | CONFIG_PARTITION_ADVANCED=y | ||
| 1270 | # CONFIG_ACORN_PARTITION is not set | ||
| 1271 | # CONFIG_OSF_PARTITION is not set | ||
| 1272 | # CONFIG_AMIGA_PARTITION is not set | ||
| 1273 | # CONFIG_ATARI_PARTITION is not set | ||
| 1274 | # CONFIG_MAC_PARTITION is not set | ||
| 1275 | CONFIG_MSDOS_PARTITION=y | ||
| 1276 | # CONFIG_BSD_DISKLABEL is not set | ||
| 1277 | # CONFIG_MINIX_SUBPARTITION is not set | ||
| 1278 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
| 1279 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
| 1280 | # CONFIG_LDM_PARTITION is not set | ||
| 1281 | # CONFIG_SGI_PARTITION is not set | ||
| 1282 | # CONFIG_ULTRIX_PARTITION is not set | ||
| 1283 | # CONFIG_SUN_PARTITION is not set | ||
| 1284 | # CONFIG_KARMA_PARTITION is not set | ||
| 1285 | # CONFIG_EFI_PARTITION is not set | ||
| 1286 | # CONFIG_SYSV68_PARTITION is not set | ||
| 1287 | # CONFIG_NLS is not set | ||
| 1288 | # CONFIG_DLM is not set | ||
| 1289 | |||
| 1290 | # | ||
| 1291 | # Library routines | ||
| 1292 | # | ||
| 1293 | CONFIG_BITREVERSE=y | ||
| 1294 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1295 | # CONFIG_CRC_CCITT is not set | ||
| 1296 | # CONFIG_CRC16 is not set | ||
| 1297 | # CONFIG_CRC_ITU_T is not set | ||
| 1298 | CONFIG_CRC32=y | ||
| 1299 | # CONFIG_CRC7 is not set | ||
| 1300 | # CONFIG_LIBCRC32C is not set | ||
| 1301 | CONFIG_ZLIB_INFLATE=y | ||
| 1302 | CONFIG_ZLIB_DEFLATE=y | ||
| 1303 | CONFIG_PLIST=y | ||
| 1304 | CONFIG_HAS_IOMEM=y | ||
| 1305 | CONFIG_HAS_IOPORT=y | ||
| 1306 | CONFIG_HAS_DMA=y | ||
| 1307 | CONFIG_HAVE_LMB=y | ||
| 1308 | |||
| 1309 | # | ||
| 1310 | # Kernel hacking | ||
| 1311 | # | ||
| 1312 | # CONFIG_PRINTK_TIME is not set | ||
| 1313 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 1314 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 1315 | CONFIG_FRAME_WARN=1024 | ||
| 1316 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 1317 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 1318 | # CONFIG_DEBUG_FS is not set | ||
| 1319 | # CONFIG_HEADERS_CHECK is not set | ||
| 1320 | # CONFIG_DEBUG_KERNEL is not set | ||
| 1321 | # CONFIG_SLUB_DEBUG_ON is not set | ||
| 1322 | # CONFIG_SLUB_STATS is not set | ||
| 1323 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
| 1324 | # CONFIG_SAMPLES is not set | ||
| 1325 | # CONFIG_IRQSTACKS is not set | ||
| 1326 | # CONFIG_PPC_EARLY_DEBUG is not set | ||
| 1327 | |||
| 1328 | # | ||
| 1329 | # Security options | ||
| 1330 | # | ||
| 1331 | # CONFIG_KEYS is not set | ||
| 1332 | # CONFIG_SECURITY is not set | ||
| 1333 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 1334 | CONFIG_CRYPTO=y | ||
| 1335 | |||
| 1336 | # | ||
| 1337 | # Crypto core or helper | ||
| 1338 | # | ||
| 1339 | # CONFIG_CRYPTO_MANAGER is not set | ||
| 1340 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1341 | # CONFIG_CRYPTO_NULL is not set | ||
| 1342 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1343 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1344 | # CONFIG_CRYPTO_TEST is not set | ||
| 1345 | |||
| 1346 | # | ||
| 1347 | # Authenticated Encryption with Associated Data | ||
| 1348 | # | ||
| 1349 | # CONFIG_CRYPTO_CCM is not set | ||
| 1350 | # CONFIG_CRYPTO_GCM is not set | ||
| 1351 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1352 | |||
| 1353 | # | ||
| 1354 | # Block modes | ||
| 1355 | # | ||
| 1356 | # CONFIG_CRYPTO_CBC is not set | ||
| 1357 | # CONFIG_CRYPTO_CTR is not set | ||
| 1358 | # CONFIG_CRYPTO_CTS is not set | ||
| 1359 | # CONFIG_CRYPTO_ECB is not set | ||
| 1360 | # CONFIG_CRYPTO_LRW is not set | ||
| 1361 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1362 | # CONFIG_CRYPTO_XTS is not set | ||
| 1363 | |||
| 1364 | # | ||
| 1365 | # Hash modes | ||
| 1366 | # | ||
| 1367 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1368 | # CONFIG_CRYPTO_XCBC is not set | ||
| 1369 | |||
| 1370 | # | ||
| 1371 | # Digest | ||
| 1372 | # | ||
| 1373 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1374 | # CONFIG_CRYPTO_MD4 is not set | ||
| 1375 | # CONFIG_CRYPTO_MD5 is not set | ||
| 1376 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1377 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 1378 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 1379 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 1380 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1381 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1382 | |||
| 1383 | # | ||
| 1384 | # Ciphers | ||
| 1385 | # | ||
| 1386 | # CONFIG_CRYPTO_AES is not set | ||
| 1387 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1388 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1389 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1390 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1391 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1392 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1393 | # CONFIG_CRYPTO_DES is not set | ||
| 1394 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1395 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1396 | # CONFIG_CRYPTO_SALSA20 is not set | ||
| 1397 | # CONFIG_CRYPTO_SEED is not set | ||
| 1398 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1399 | # CONFIG_CRYPTO_TEA is not set | ||
| 1400 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1401 | |||
| 1402 | # | ||
| 1403 | # Compression | ||
| 1404 | # | ||
| 1405 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1406 | # CONFIG_CRYPTO_LZO is not set | ||
| 1407 | CONFIG_CRYPTO_HW=y | ||
| 1408 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
| 1409 | # CONFIG_PPC_CLOCK is not set | ||
| 1410 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/platforms/83xx/asp834x.c b/arch/powerpc/platforms/83xx/asp834x.c index bb30d67ad0a2..aa0d84d22585 100644 --- a/arch/powerpc/platforms/83xx/asp834x.c +++ b/arch/powerpc/platforms/83xx/asp834x.c | |||
| @@ -58,6 +58,7 @@ static struct __initdata of_device_id asp8347_ids[] = { | |||
| 58 | { .type = "soc", }, | 58 | { .type = "soc", }, |
| 59 | { .compatible = "soc", }, | 59 | { .compatible = "soc", }, |
| 60 | { .compatible = "simple-bus", }, | 60 | { .compatible = "simple-bus", }, |
| 61 | { .compatible = "gianfar", }, | ||
| 61 | {}, | 62 | {}, |
| 62 | }; | 63 | }; |
| 63 | 64 | ||
diff --git a/arch/powerpc/platforms/83xx/mpc834x_itx.c b/arch/powerpc/platforms/83xx/mpc834x_itx.c index 76092d37c7d9..81e44fa1c644 100644 --- a/arch/powerpc/platforms/83xx/mpc834x_itx.c +++ b/arch/powerpc/platforms/83xx/mpc834x_itx.c | |||
| @@ -42,6 +42,7 @@ | |||
| 42 | static struct of_device_id __initdata mpc834x_itx_ids[] = { | 42 | static struct of_device_id __initdata mpc834x_itx_ids[] = { |
| 43 | { .compatible = "fsl,pq2pro-localbus", }, | 43 | { .compatible = "fsl,pq2pro-localbus", }, |
| 44 | { .compatible = "simple-bus", }, | 44 | { .compatible = "simple-bus", }, |
| 45 | { .compatible = "gianfar", }, | ||
| 45 | {}, | 46 | {}, |
| 46 | }; | 47 | }; |
| 47 | 48 | ||
diff --git a/arch/powerpc/platforms/83xx/mpc834x_mds.c b/arch/powerpc/platforms/83xx/mpc834x_mds.c index fc3f2ed1f3e9..d0a634b056ca 100644 --- a/arch/powerpc/platforms/83xx/mpc834x_mds.c +++ b/arch/powerpc/platforms/83xx/mpc834x_mds.c | |||
| @@ -112,6 +112,7 @@ static struct of_device_id mpc834x_ids[] = { | |||
| 112 | { .type = "soc", }, | 112 | { .type = "soc", }, |
| 113 | { .compatible = "soc", }, | 113 | { .compatible = "soc", }, |
| 114 | { .compatible = "simple-bus", }, | 114 | { .compatible = "simple-bus", }, |
| 115 | { .compatible = "gianfar", }, | ||
| 115 | {}, | 116 | {}, |
| 116 | }; | 117 | }; |
| 117 | 118 | ||
diff --git a/arch/powerpc/platforms/83xx/mpc837x_mds.c b/arch/powerpc/platforms/83xx/mpc837x_mds.c index 634785cc4523..51df7e754698 100644 --- a/arch/powerpc/platforms/83xx/mpc837x_mds.c +++ b/arch/powerpc/platforms/83xx/mpc837x_mds.c | |||
| @@ -96,6 +96,7 @@ static struct of_device_id mpc837x_ids[] = { | |||
| 96 | { .type = "soc", }, | 96 | { .type = "soc", }, |
| 97 | { .compatible = "soc", }, | 97 | { .compatible = "soc", }, |
| 98 | { .compatible = "simple-bus", }, | 98 | { .compatible = "simple-bus", }, |
| 99 | { .compatible = "gianfar", }, | ||
| 99 | {}, | 100 | {}, |
| 100 | }; | 101 | }; |
| 101 | 102 | ||
diff --git a/arch/powerpc/platforms/83xx/mpc837x_rdb.c b/arch/powerpc/platforms/83xx/mpc837x_rdb.c index 3d7b953d40e1..76f3b32a155e 100644 --- a/arch/powerpc/platforms/83xx/mpc837x_rdb.c +++ b/arch/powerpc/platforms/83xx/mpc837x_rdb.c | |||
| @@ -48,6 +48,7 @@ static struct of_device_id mpc837x_ids[] = { | |||
| 48 | { .type = "soc", }, | 48 | { .type = "soc", }, |
| 49 | { .compatible = "soc", }, | 49 | { .compatible = "soc", }, |
| 50 | { .compatible = "simple-bus", }, | 50 | { .compatible = "simple-bus", }, |
| 51 | { .compatible = "gianfar", }, | ||
| 51 | {}, | 52 | {}, |
| 52 | }; | 53 | }; |
| 53 | 54 | ||
diff --git a/arch/powerpc/platforms/83xx/sbc834x.c b/arch/powerpc/platforms/83xx/sbc834x.c index 156c4e218009..49023dbe1576 100644 --- a/arch/powerpc/platforms/83xx/sbc834x.c +++ b/arch/powerpc/platforms/83xx/sbc834x.c | |||
| @@ -84,6 +84,7 @@ static struct __initdata of_device_id sbc834x_ids[] = { | |||
| 84 | { .type = "soc", }, | 84 | { .type = "soc", }, |
| 85 | { .compatible = "soc", }, | 85 | { .compatible = "soc", }, |
| 86 | { .compatible = "simple-bus", }, | 86 | { .compatible = "simple-bus", }, |
| 87 | { .compatible = "gianfar", }, | ||
| 87 | {}, | 88 | {}, |
| 88 | }; | 89 | }; |
| 89 | 90 | ||
diff --git a/arch/powerpc/platforms/85xx/Kconfig b/arch/powerpc/platforms/85xx/Kconfig index b79dc710ed34..7f066adc068c 100644 --- a/arch/powerpc/platforms/85xx/Kconfig +++ b/arch/powerpc/platforms/85xx/Kconfig | |||
| @@ -51,6 +51,12 @@ config MPC85xx_DS | |||
| 51 | help | 51 | help |
| 52 | This option enables support for the MPC85xx DS (MPC8544 DS) board | 52 | This option enables support for the MPC85xx DS (MPC8544 DS) board |
| 53 | 53 | ||
| 54 | config SOCRATES | ||
| 55 | bool "Socrates" | ||
| 56 | select DEFAULT_UIMAGE | ||
| 57 | help | ||
| 58 | This option enables support for the Socrates board. | ||
| 59 | |||
| 54 | config KSI8560 | 60 | config KSI8560 |
| 55 | bool "Emerson KSI8560" | 61 | bool "Emerson KSI8560" |
| 56 | select DEFAULT_UIMAGE | 62 | select DEFAULT_UIMAGE |
diff --git a/arch/powerpc/platforms/85xx/Makefile b/arch/powerpc/platforms/85xx/Makefile index f0798c09980f..a857b35b9828 100644 --- a/arch/powerpc/platforms/85xx/Makefile +++ b/arch/powerpc/platforms/85xx/Makefile | |||
| @@ -13,4 +13,5 @@ obj-$(CONFIG_STX_GP3) += stx_gp3.o | |||
| 13 | obj-$(CONFIG_TQM85xx) += tqm85xx.o | 13 | obj-$(CONFIG_TQM85xx) += tqm85xx.o |
| 14 | obj-$(CONFIG_SBC8560) += sbc8560.o | 14 | obj-$(CONFIG_SBC8560) += sbc8560.o |
| 15 | obj-$(CONFIG_SBC8548) += sbc8548.o | 15 | obj-$(CONFIG_SBC8548) += sbc8548.o |
| 16 | obj-$(CONFIG_SOCRATES) += socrates.o socrates_fpga_pic.o | ||
| 16 | obj-$(CONFIG_KSI8560) += ksi8560.o | 17 | obj-$(CONFIG_KSI8560) += ksi8560.o |
diff --git a/arch/powerpc/platforms/85xx/ksi8560.c b/arch/powerpc/platforms/85xx/ksi8560.c index 66f29235ff09..f4d36b5a2e00 100644 --- a/arch/powerpc/platforms/85xx/ksi8560.c +++ b/arch/powerpc/platforms/85xx/ksi8560.c | |||
| @@ -219,6 +219,7 @@ static struct of_device_id __initdata of_bus_ids[] = { | |||
| 219 | { .type = "simple-bus", }, | 219 | { .type = "simple-bus", }, |
| 220 | { .name = "cpm", }, | 220 | { .name = "cpm", }, |
| 221 | { .name = "localbus", }, | 221 | { .name = "localbus", }, |
| 222 | { .compatible = "gianfar", }, | ||
| 222 | {}, | 223 | {}, |
| 223 | }; | 224 | }; |
| 224 | 225 | ||
diff --git a/arch/powerpc/platforms/85xx/mpc8536_ds.c b/arch/powerpc/platforms/85xx/mpc8536_ds.c index 1bf5aefdfeb1..63efca20d7bd 100644 --- a/arch/powerpc/platforms/85xx/mpc8536_ds.c +++ b/arch/powerpc/platforms/85xx/mpc8536_ds.c | |||
| @@ -92,6 +92,7 @@ static struct of_device_id __initdata mpc8536_ds_ids[] = { | |||
| 92 | { .type = "soc", }, | 92 | { .type = "soc", }, |
| 93 | { .compatible = "soc", }, | 93 | { .compatible = "soc", }, |
| 94 | { .compatible = "simple-bus", }, | 94 | { .compatible = "simple-bus", }, |
| 95 | { .compatible = "gianfar", }, | ||
| 95 | {}, | 96 | {}, |
| 96 | }; | 97 | }; |
| 97 | 98 | ||
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_ads.c b/arch/powerpc/platforms/85xx/mpc85xx_ads.c index 21f009023e26..9438a892afc4 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_ads.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_ads.c | |||
| @@ -226,6 +226,7 @@ static struct of_device_id __initdata of_bus_ids[] = { | |||
| 226 | { .name = "cpm", }, | 226 | { .name = "cpm", }, |
| 227 | { .name = "localbus", }, | 227 | { .name = "localbus", }, |
| 228 | { .compatible = "simple-bus", }, | 228 | { .compatible = "simple-bus", }, |
| 229 | { .compatible = "gianfar", }, | ||
| 229 | {}, | 230 | {}, |
| 230 | }; | 231 | }; |
| 231 | 232 | ||
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_cds.c b/arch/powerpc/platforms/85xx/mpc85xx_cds.c index aeb6a5bc5522..0a9e49104bdc 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_cds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_cds.c | |||
| @@ -336,6 +336,7 @@ static struct of_device_id __initdata of_bus_ids[] = { | |||
| 336 | { .type = "soc", }, | 336 | { .type = "soc", }, |
| 337 | { .compatible = "soc", }, | 337 | { .compatible = "soc", }, |
| 338 | { .compatible = "simple-bus", }, | 338 | { .compatible = "simple-bus", }, |
| 339 | { .compatible = "gianfar", }, | ||
| 339 | {}, | 340 | {}, |
| 340 | }; | 341 | }; |
| 341 | 342 | ||
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_ds.c b/arch/powerpc/platforms/85xx/mpc85xx_ds.c index 7326d904202c..de66de7a9ca2 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_ds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_ds.c | |||
| @@ -204,6 +204,7 @@ static struct of_device_id __initdata mpc85xxds_ids[] = { | |||
| 204 | { .type = "soc", }, | 204 | { .type = "soc", }, |
| 205 | { .compatible = "soc", }, | 205 | { .compatible = "soc", }, |
| 206 | { .compatible = "simple-bus", }, | 206 | { .compatible = "simple-bus", }, |
| 207 | { .compatible = "gianfar", }, | ||
| 207 | {}, | 208 | {}, |
| 208 | }; | 209 | }; |
| 209 | 210 | ||
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_mds.c b/arch/powerpc/platforms/85xx/mpc85xx_mds.c index 658a36fab3ab..7dd029034aec 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_mds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_mds.c | |||
| @@ -265,6 +265,7 @@ static struct of_device_id mpc85xx_ids[] = { | |||
| 265 | { .compatible = "simple-bus", }, | 265 | { .compatible = "simple-bus", }, |
| 266 | { .type = "qe", }, | 266 | { .type = "qe", }, |
| 267 | { .compatible = "fsl,qe", }, | 267 | { .compatible = "fsl,qe", }, |
| 268 | { .compatible = "gianfar", }, | ||
| 268 | {}, | 269 | {}, |
| 269 | }; | 270 | }; |
| 270 | 271 | ||
diff --git a/arch/powerpc/platforms/85xx/sbc8548.c b/arch/powerpc/platforms/85xx/sbc8548.c index 7ec77ce12dad..ecdd8c09e4ed 100644 --- a/arch/powerpc/platforms/85xx/sbc8548.c +++ b/arch/powerpc/platforms/85xx/sbc8548.c | |||
| @@ -154,6 +154,7 @@ static struct of_device_id __initdata of_bus_ids[] = { | |||
| 154 | { .name = "soc", }, | 154 | { .name = "soc", }, |
| 155 | { .type = "soc", }, | 155 | { .type = "soc", }, |
| 156 | { .compatible = "simple-bus", }, | 156 | { .compatible = "simple-bus", }, |
| 157 | { .compatible = "gianfar", }, | ||
| 157 | {}, | 158 | {}, |
| 158 | }; | 159 | }; |
| 159 | 160 | ||
diff --git a/arch/powerpc/platforms/85xx/sbc8560.c b/arch/powerpc/platforms/85xx/sbc8560.c index 472f254a19d2..cc27807a8b64 100644 --- a/arch/powerpc/platforms/85xx/sbc8560.c +++ b/arch/powerpc/platforms/85xx/sbc8560.c | |||
| @@ -213,6 +213,7 @@ static struct of_device_id __initdata of_bus_ids[] = { | |||
| 213 | { .name = "cpm", }, | 213 | { .name = "cpm", }, |
| 214 | { .name = "localbus", }, | 214 | { .name = "localbus", }, |
| 215 | { .compatible = "simple-bus", }, | 215 | { .compatible = "simple-bus", }, |
| 216 | { .compatible = "gianfar", }, | ||
| 216 | {}, | 217 | {}, |
| 217 | }; | 218 | }; |
| 218 | 219 | ||
diff --git a/arch/powerpc/platforms/85xx/socrates.c b/arch/powerpc/platforms/85xx/socrates.c new file mode 100644 index 000000000000..d0e8443b12c6 --- /dev/null +++ b/arch/powerpc/platforms/85xx/socrates.c | |||
| @@ -0,0 +1,133 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2008 Emcraft Systems | ||
| 3 | * Sergei Poselenov <sposelenov@emcraft.com> | ||
| 4 | * | ||
| 5 | * Based on MPC8560 ADS and arch/ppc tqm85xx ports | ||
| 6 | * | ||
| 7 | * Maintained by Kumar Gala (see MAINTAINERS for contact information) | ||
| 8 | * | ||
| 9 | * Copyright 2008 Freescale Semiconductor Inc. | ||
| 10 | * | ||
| 11 | * Copyright (c) 2005-2006 DENX Software Engineering | ||
| 12 | * Stefan Roese <sr@denx.de> | ||
| 13 | * | ||
| 14 | * Based on original work by | ||
| 15 | * Kumar Gala <kumar.gala@freescale.com> | ||
| 16 | * Copyright 2004 Freescale Semiconductor Inc. | ||
| 17 | * | ||
| 18 | * This program is free software; you can redistribute it and/or modify it | ||
| 19 | * under the terms of the GNU General Public License as published by the | ||
| 20 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 21 | * option) any later version. | ||
| 22 | */ | ||
| 23 | |||
| 24 | #include <linux/stddef.h> | ||
| 25 | #include <linux/kernel.h> | ||
| 26 | #include <linux/pci.h> | ||
| 27 | #include <linux/kdev_t.h> | ||
| 28 | #include <linux/delay.h> | ||
| 29 | #include <linux/seq_file.h> | ||
| 30 | #include <linux/of_platform.h> | ||
| 31 | |||
| 32 | #include <asm/system.h> | ||
| 33 | #include <asm/time.h> | ||
| 34 | #include <asm/machdep.h> | ||
| 35 | #include <asm/pci-bridge.h> | ||
| 36 | #include <asm/mpic.h> | ||
| 37 | #include <asm/prom.h> | ||
| 38 | #include <mm/mmu_decl.h> | ||
| 39 | #include <asm/udbg.h> | ||
| 40 | |||
| 41 | #include <sysdev/fsl_soc.h> | ||
| 42 | #include <sysdev/fsl_pci.h> | ||
| 43 | |||
| 44 | #include "socrates_fpga_pic.h" | ||
| 45 | |||
| 46 | static void __init socrates_pic_init(void) | ||
| 47 | { | ||
| 48 | struct mpic *mpic; | ||
| 49 | struct resource r; | ||
| 50 | struct device_node *np; | ||
| 51 | |||
| 52 | np = of_find_node_by_type(NULL, "open-pic"); | ||
| 53 | if (!np) { | ||
| 54 | printk(KERN_ERR "Could not find open-pic node\n"); | ||
| 55 | return; | ||
| 56 | } | ||
| 57 | |||
| 58 | if (of_address_to_resource(np, 0, &r)) { | ||
| 59 | printk(KERN_ERR "Could not map mpic register space\n"); | ||
| 60 | of_node_put(np); | ||
| 61 | return; | ||
| 62 | } | ||
| 63 | |||
| 64 | mpic = mpic_alloc(np, r.start, | ||
| 65 | MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN, | ||
| 66 | 0, 256, " OpenPIC "); | ||
| 67 | BUG_ON(mpic == NULL); | ||
| 68 | of_node_put(np); | ||
| 69 | |||
| 70 | mpic_init(mpic); | ||
| 71 | |||
| 72 | np = of_find_compatible_node(NULL, NULL, "abb,socrates-fpga-pic"); | ||
| 73 | if (!np) { | ||
| 74 | printk(KERN_ERR "Could not find socrates-fpga-pic node\n"); | ||
| 75 | return; | ||
| 76 | } | ||
| 77 | socrates_fpga_pic_init(np); | ||
| 78 | of_node_put(np); | ||
| 79 | } | ||
| 80 | |||
| 81 | /* | ||
| 82 | * Setup the architecture | ||
| 83 | */ | ||
| 84 | static void __init socrates_setup_arch(void) | ||
| 85 | { | ||
| 86 | #ifdef CONFIG_PCI | ||
| 87 | struct device_node *np; | ||
| 88 | #endif | ||
| 89 | |||
| 90 | if (ppc_md.progress) | ||
| 91 | ppc_md.progress("socrates_setup_arch()", 0); | ||
| 92 | |||
| 93 | #ifdef CONFIG_PCI | ||
| 94 | for_each_compatible_node(np, "pci", "fsl,mpc8540-pci") | ||
| 95 | fsl_add_bridge(np, 1); | ||
| 96 | #endif | ||
| 97 | } | ||
| 98 | |||
| 99 | static struct of_device_id __initdata socrates_of_bus_ids[] = { | ||
| 100 | { .compatible = "simple-bus", }, | ||
| 101 | { .compatible = "gianfar", }, | ||
| 102 | {}, | ||
| 103 | }; | ||
| 104 | |||
| 105 | static void __init socrates_init(void) | ||
| 106 | { | ||
| 107 | of_platform_bus_probe(NULL, socrates_of_bus_ids, NULL); | ||
| 108 | } | ||
| 109 | |||
| 110 | /* | ||
| 111 | * Called very early, device-tree isn't unflattened | ||
| 112 | */ | ||
| 113 | static int __init socrates_probe(void) | ||
| 114 | { | ||
| 115 | unsigned long root = of_get_flat_dt_root(); | ||
| 116 | |||
| 117 | if (of_flat_dt_is_compatible(root, "abb,socrates")) | ||
| 118 | return 1; | ||
| 119 | |||
| 120 | return 0; | ||
| 121 | } | ||
| 122 | |||
| 123 | define_machine(socrates) { | ||
| 124 | .name = "Socrates", | ||
| 125 | .probe = socrates_probe, | ||
| 126 | .setup_arch = socrates_setup_arch, | ||
| 127 | .init = socrates_init, | ||
| 128 | .init_IRQ = socrates_pic_init, | ||
| 129 | .get_irq = mpic_get_irq, | ||
| 130 | .restart = fsl_rstcr_restart, | ||
| 131 | .calibrate_decr = generic_calibrate_decr, | ||
| 132 | .progress = udbg_progress, | ||
| 133 | }; | ||
diff --git a/arch/powerpc/platforms/85xx/socrates_fpga_pic.c b/arch/powerpc/platforms/85xx/socrates_fpga_pic.c new file mode 100644 index 000000000000..60edf63d0157 --- /dev/null +++ b/arch/powerpc/platforms/85xx/socrates_fpga_pic.c | |||
| @@ -0,0 +1,327 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2008 Ilya Yanok, Emcraft Systems | ||
| 3 | * | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License version 2 as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | */ | ||
| 10 | |||
| 11 | #include <linux/irq.h> | ||
| 12 | #include <linux/of_platform.h> | ||
| 13 | #include <linux/io.h> | ||
| 14 | |||
| 15 | /* | ||
| 16 | * The FPGA supports 9 interrupt sources, which can be routed to 3 | ||
| 17 | * interrupt request lines of the MPIC. The line to be used can be | ||
| 18 | * specified through the third cell of FDT property "interrupts". | ||
| 19 | */ | ||
| 20 | |||
| 21 | #define SOCRATES_FPGA_NUM_IRQS 9 | ||
| 22 | |||
| 23 | #define FPGA_PIC_IRQCFG (0x0) | ||
| 24 | #define FPGA_PIC_IRQMASK(n) (0x4 + 0x4 * (n)) | ||
| 25 | |||
| 26 | #define SOCRATES_FPGA_IRQ_MASK ((1 << SOCRATES_FPGA_NUM_IRQS) - 1) | ||
| 27 | |||
| 28 | struct socrates_fpga_irq_info { | ||
| 29 | unsigned int irq_line; | ||
| 30 | int type; | ||
| 31 | }; | ||
| 32 | |||
| 33 | /* | ||
| 34 | * Interrupt routing and type table | ||
| 35 | * | ||
| 36 | * IRQ_TYPE_NONE means the interrupt type is configurable, | ||
| 37 | * otherwise it's fixed to the specified value. | ||
| 38 | */ | ||
| 39 | static struct socrates_fpga_irq_info fpga_irqs[SOCRATES_FPGA_NUM_IRQS] = { | ||
| 40 | [0] = {0, IRQ_TYPE_NONE}, | ||
| 41 | [1] = {0, IRQ_TYPE_LEVEL_HIGH}, | ||
| 42 | [2] = {0, IRQ_TYPE_LEVEL_LOW}, | ||
| 43 | [3] = {0, IRQ_TYPE_NONE}, | ||
| 44 | [4] = {0, IRQ_TYPE_NONE}, | ||
| 45 | [5] = {0, IRQ_TYPE_NONE}, | ||
| 46 | [6] = {0, IRQ_TYPE_NONE}, | ||
| 47 | [7] = {0, IRQ_TYPE_NONE}, | ||
| 48 | [8] = {0, IRQ_TYPE_LEVEL_HIGH}, | ||
| 49 | }; | ||
| 50 | |||
| 51 | #define socrates_fpga_irq_to_hw(virq) ((unsigned int)irq_map[virq].hwirq) | ||
| 52 | |||
| 53 | static DEFINE_SPINLOCK(socrates_fpga_pic_lock); | ||
| 54 | |||
| 55 | static void __iomem *socrates_fpga_pic_iobase; | ||
| 56 | static struct irq_host *socrates_fpga_pic_irq_host; | ||
| 57 | static unsigned int socrates_fpga_irqs[3]; | ||
| 58 | |||
| 59 | static inline uint32_t socrates_fpga_pic_read(int reg) | ||
| 60 | { | ||
| 61 | return in_be32(socrates_fpga_pic_iobase + reg); | ||
| 62 | } | ||
| 63 | |||
| 64 | static inline void socrates_fpga_pic_write(int reg, uint32_t val) | ||
| 65 | { | ||
| 66 | out_be32(socrates_fpga_pic_iobase + reg, val); | ||
| 67 | } | ||
| 68 | |||
| 69 | static inline unsigned int socrates_fpga_pic_get_irq(unsigned int irq) | ||
| 70 | { | ||
| 71 | uint32_t cause; | ||
| 72 | unsigned long flags; | ||
| 73 | int i; | ||
| 74 | |||
| 75 | /* Check irq line routed to the MPIC */ | ||
| 76 | for (i = 0; i < 3; i++) { | ||
| 77 | if (irq == socrates_fpga_irqs[i]) | ||
| 78 | break; | ||
| 79 | } | ||
| 80 | if (i == 3) | ||
| 81 | return NO_IRQ; | ||
| 82 | |||
| 83 | spin_lock_irqsave(&socrates_fpga_pic_lock, flags); | ||
| 84 | cause = socrates_fpga_pic_read(FPGA_PIC_IRQMASK(i)); | ||
| 85 | spin_unlock_irqrestore(&socrates_fpga_pic_lock, flags); | ||
| 86 | for (i = SOCRATES_FPGA_NUM_IRQS - 1; i >= 0; i--) { | ||
| 87 | if (cause >> (i + 16)) | ||
| 88 | break; | ||
| 89 | } | ||
| 90 | return irq_linear_revmap(socrates_fpga_pic_irq_host, | ||
| 91 | (irq_hw_number_t)i); | ||
| 92 | } | ||
| 93 | |||
| 94 | void socrates_fpga_pic_cascade(unsigned int irq, struct irq_desc *desc) | ||
| 95 | { | ||
| 96 | unsigned int cascade_irq; | ||
| 97 | |||
| 98 | /* | ||
| 99 | * See if we actually have an interrupt, call generic handling code if | ||
| 100 | * we do. | ||
| 101 | */ | ||
| 102 | cascade_irq = socrates_fpga_pic_get_irq(irq); | ||
| 103 | |||
| 104 | if (cascade_irq != NO_IRQ) | ||
| 105 | generic_handle_irq(cascade_irq); | ||
| 106 | desc->chip->eoi(irq); | ||
| 107 | |||
| 108 | } | ||
| 109 | |||
| 110 | static void socrates_fpga_pic_ack(unsigned int virq) | ||
| 111 | { | ||
| 112 | unsigned long flags; | ||
| 113 | unsigned int hwirq, irq_line; | ||
| 114 | uint32_t mask; | ||
| 115 | |||
| 116 | hwirq = socrates_fpga_irq_to_hw(virq); | ||
| 117 | |||
| 118 | irq_line = fpga_irqs[hwirq].irq_line; | ||
| 119 | spin_lock_irqsave(&socrates_fpga_pic_lock, flags); | ||
| 120 | mask = socrates_fpga_pic_read(FPGA_PIC_IRQMASK(irq_line)) | ||
| 121 | & SOCRATES_FPGA_IRQ_MASK; | ||
| 122 | mask |= (1 << (hwirq + 16)); | ||
| 123 | socrates_fpga_pic_write(FPGA_PIC_IRQMASK(irq_line), mask); | ||
| 124 | spin_unlock_irqrestore(&socrates_fpga_pic_lock, flags); | ||
| 125 | } | ||
| 126 | |||
| 127 | static void socrates_fpga_pic_mask(unsigned int virq) | ||
| 128 | { | ||
| 129 | unsigned long flags; | ||
| 130 | unsigned int hwirq; | ||
| 131 | int irq_line; | ||
| 132 | u32 mask; | ||
| 133 | |||
| 134 | hwirq = socrates_fpga_irq_to_hw(virq); | ||
| 135 | |||
| 136 | irq_line = fpga_irqs[hwirq].irq_line; | ||
| 137 | spin_lock_irqsave(&socrates_fpga_pic_lock, flags); | ||
| 138 | mask = socrates_fpga_pic_read(FPGA_PIC_IRQMASK(irq_line)) | ||
| 139 | & SOCRATES_FPGA_IRQ_MASK; | ||
| 140 | mask &= ~(1 << hwirq); | ||
| 141 | socrates_fpga_pic_write(FPGA_PIC_IRQMASK(irq_line), mask); | ||
| 142 | spin_unlock_irqrestore(&socrates_fpga_pic_lock, flags); | ||
| 143 | } | ||
| 144 | |||
| 145 | static void socrates_fpga_pic_mask_ack(unsigned int virq) | ||
| 146 | { | ||
| 147 | unsigned long flags; | ||
| 148 | unsigned int hwirq; | ||
| 149 | int irq_line; | ||
| 150 | u32 mask; | ||
| 151 | |||
| 152 | hwirq = socrates_fpga_irq_to_hw(virq); | ||
| 153 | |||
| 154 | irq_line = fpga_irqs[hwirq].irq_line; | ||
| 155 | spin_lock_irqsave(&socrates_fpga_pic_lock, flags); | ||
| 156 | mask = socrates_fpga_pic_read(FPGA_PIC_IRQMASK(irq_line)) | ||
| 157 | & SOCRATES_FPGA_IRQ_MASK; | ||
| 158 | mask &= ~(1 << hwirq); | ||
| 159 | mask |= (1 << (hwirq + 16)); | ||
| 160 | socrates_fpga_pic_write(FPGA_PIC_IRQMASK(irq_line), mask); | ||
| 161 | spin_unlock_irqrestore(&socrates_fpga_pic_lock, flags); | ||
| 162 | } | ||
| 163 | |||
| 164 | static void socrates_fpga_pic_unmask(unsigned int virq) | ||
| 165 | { | ||
| 166 | unsigned long flags; | ||
| 167 | unsigned int hwirq; | ||
| 168 | int irq_line; | ||
| 169 | u32 mask; | ||
| 170 | |||
| 171 | hwirq = socrates_fpga_irq_to_hw(virq); | ||
| 172 | |||
| 173 | irq_line = fpga_irqs[hwirq].irq_line; | ||
| 174 | spin_lock_irqsave(&socrates_fpga_pic_lock, flags); | ||
| 175 | mask = socrates_fpga_pic_read(FPGA_PIC_IRQMASK(irq_line)) | ||
| 176 | & SOCRATES_FPGA_IRQ_MASK; | ||
| 177 | mask |= (1 << hwirq); | ||
| 178 | socrates_fpga_pic_write(FPGA_PIC_IRQMASK(irq_line), mask); | ||
| 179 | spin_unlock_irqrestore(&socrates_fpga_pic_lock, flags); | ||
| 180 | } | ||
| 181 | |||
| 182 | static void socrates_fpga_pic_eoi(unsigned int virq) | ||
| 183 | { | ||
| 184 | unsigned long flags; | ||
| 185 | unsigned int hwirq; | ||
| 186 | int irq_line; | ||
| 187 | u32 mask; | ||
| 188 | |||
| 189 | hwirq = socrates_fpga_irq_to_hw(virq); | ||
| 190 | |||
| 191 | irq_line = fpga_irqs[hwirq].irq_line; | ||
| 192 | spin_lock_irqsave(&socrates_fpga_pic_lock, flags); | ||
| 193 | mask = socrates_fpga_pic_read(FPGA_PIC_IRQMASK(irq_line)) | ||
| 194 | & SOCRATES_FPGA_IRQ_MASK; | ||
| 195 | mask |= (1 << (hwirq + 16)); | ||
| 196 | socrates_fpga_pic_write(FPGA_PIC_IRQMASK(irq_line), mask); | ||
| 197 | spin_unlock_irqrestore(&socrates_fpga_pic_lock, flags); | ||
| 198 | } | ||
| 199 | |||
| 200 | static int socrates_fpga_pic_set_type(unsigned int virq, | ||
| 201 | unsigned int flow_type) | ||
| 202 | { | ||
| 203 | unsigned long flags; | ||
| 204 | unsigned int hwirq; | ||
| 205 | int polarity; | ||
| 206 | u32 mask; | ||
| 207 | |||
| 208 | hwirq = socrates_fpga_irq_to_hw(virq); | ||
| 209 | |||
| 210 | if (fpga_irqs[hwirq].type != IRQ_TYPE_NONE) | ||
| 211 | return -EINVAL; | ||
| 212 | |||
| 213 | switch (flow_type & IRQ_TYPE_SENSE_MASK) { | ||
| 214 | case IRQ_TYPE_LEVEL_HIGH: | ||
| 215 | polarity = 1; | ||
| 216 | break; | ||
| 217 | case IRQ_TYPE_LEVEL_LOW: | ||
| 218 | polarity = 0; | ||
| 219 | break; | ||
| 220 | default: | ||
| 221 | return -EINVAL; | ||
| 222 | } | ||
| 223 | spin_lock_irqsave(&socrates_fpga_pic_lock, flags); | ||
| 224 | mask = socrates_fpga_pic_read(FPGA_PIC_IRQCFG); | ||
| 225 | if (polarity) | ||
| 226 | mask |= (1 << hwirq); | ||
| 227 | else | ||
| 228 | mask &= ~(1 << hwirq); | ||
| 229 | socrates_fpga_pic_write(FPGA_PIC_IRQCFG, mask); | ||
| 230 | spin_unlock_irqrestore(&socrates_fpga_pic_lock, flags); | ||
| 231 | return 0; | ||
| 232 | } | ||
| 233 | |||
| 234 | static struct irq_chip socrates_fpga_pic_chip = { | ||
| 235 | .typename = " FPGA-PIC ", | ||
| 236 | .ack = socrates_fpga_pic_ack, | ||
| 237 | .mask = socrates_fpga_pic_mask, | ||
| 238 | .mask_ack = socrates_fpga_pic_mask_ack, | ||
| 239 | .unmask = socrates_fpga_pic_unmask, | ||
| 240 | .eoi = socrates_fpga_pic_eoi, | ||
| 241 | .set_type = socrates_fpga_pic_set_type, | ||
| 242 | }; | ||
| 243 | |||
| 244 | static int socrates_fpga_pic_host_map(struct irq_host *h, unsigned int virq, | ||
| 245 | irq_hw_number_t hwirq) | ||
| 246 | { | ||
| 247 | /* All interrupts are LEVEL sensitive */ | ||
| 248 | get_irq_desc(virq)->status |= IRQ_LEVEL; | ||
| 249 | set_irq_chip_and_handler(virq, &socrates_fpga_pic_chip, | ||
| 250 | handle_fasteoi_irq); | ||
| 251 | |||
| 252 | return 0; | ||
| 253 | } | ||
| 254 | |||
| 255 | static int socrates_fpga_pic_host_xlate(struct irq_host *h, | ||
| 256 | struct device_node *ct, u32 *intspec, unsigned int intsize, | ||
| 257 | irq_hw_number_t *out_hwirq, unsigned int *out_flags) | ||
| 258 | { | ||
| 259 | struct socrates_fpga_irq_info *fpga_irq = &fpga_irqs[intspec[0]]; | ||
| 260 | |||
| 261 | *out_hwirq = intspec[0]; | ||
| 262 | if (fpga_irq->type == IRQ_TYPE_NONE) { | ||
| 263 | /* type is configurable */ | ||
| 264 | if (intspec[1] != IRQ_TYPE_LEVEL_LOW && | ||
| 265 | intspec[1] != IRQ_TYPE_LEVEL_HIGH) { | ||
| 266 | pr_warning("FPGA PIC: invalid irq type, " | ||
| 267 | "setting default active low\n"); | ||
| 268 | *out_flags = IRQ_TYPE_LEVEL_LOW; | ||
| 269 | } else { | ||
| 270 | *out_flags = intspec[1]; | ||
| 271 | } | ||
| 272 | } else { | ||
| 273 | /* type is fixed */ | ||
| 274 | *out_flags = fpga_irq->type; | ||
| 275 | } | ||
| 276 | |||
| 277 | /* Use specified interrupt routing */ | ||
| 278 | if (intspec[2] <= 2) | ||
| 279 | fpga_irq->irq_line = intspec[2]; | ||
| 280 | else | ||
| 281 | pr_warning("FPGA PIC: invalid irq routing\n"); | ||
| 282 | |||
| 283 | return 0; | ||
| 284 | } | ||
| 285 | |||
| 286 | static struct irq_host_ops socrates_fpga_pic_host_ops = { | ||
| 287 | .map = socrates_fpga_pic_host_map, | ||
| 288 | .xlate = socrates_fpga_pic_host_xlate, | ||
| 289 | }; | ||
| 290 | |||
| 291 | void socrates_fpga_pic_init(struct device_node *pic) | ||
| 292 | { | ||
| 293 | unsigned long flags; | ||
| 294 | int i; | ||
| 295 | |||
| 296 | /* Setup an irq_host structure */ | ||
| 297 | socrates_fpga_pic_irq_host = irq_alloc_host(pic, IRQ_HOST_MAP_LINEAR, | ||
| 298 | SOCRATES_FPGA_NUM_IRQS, &socrates_fpga_pic_host_ops, | ||
| 299 | SOCRATES_FPGA_NUM_IRQS); | ||
| 300 | if (socrates_fpga_pic_irq_host == NULL) { | ||
| 301 | pr_err("FPGA PIC: Unable to allocate host\n"); | ||
| 302 | return; | ||
| 303 | } | ||
| 304 | |||
| 305 | for (i = 0; i < 3; i++) { | ||
| 306 | socrates_fpga_irqs[i] = irq_of_parse_and_map(pic, i); | ||
| 307 | if (socrates_fpga_irqs[i] == NO_IRQ) { | ||
| 308 | pr_warning("FPGA PIC: can't get irq%d.\n", i); | ||
| 309 | continue; | ||
| 310 | } | ||
| 311 | set_irq_chained_handler(socrates_fpga_irqs[i], | ||
| 312 | socrates_fpga_pic_cascade); | ||
| 313 | } | ||
| 314 | |||
| 315 | socrates_fpga_pic_iobase = of_iomap(pic, 0); | ||
| 316 | |||
| 317 | spin_lock_irqsave(&socrates_fpga_pic_lock, flags); | ||
| 318 | socrates_fpga_pic_write(FPGA_PIC_IRQMASK(0), | ||
| 319 | SOCRATES_FPGA_IRQ_MASK << 16); | ||
| 320 | socrates_fpga_pic_write(FPGA_PIC_IRQMASK(1), | ||
| 321 | SOCRATES_FPGA_IRQ_MASK << 16); | ||
| 322 | socrates_fpga_pic_write(FPGA_PIC_IRQMASK(2), | ||
| 323 | SOCRATES_FPGA_IRQ_MASK << 16); | ||
| 324 | spin_unlock_irqrestore(&socrates_fpga_pic_lock, flags); | ||
| 325 | |||
| 326 | pr_info("FPGA PIC: Setting up Socrates FPGA PIC\n"); | ||
| 327 | } | ||
diff --git a/arch/powerpc/platforms/85xx/socrates_fpga_pic.h b/arch/powerpc/platforms/85xx/socrates_fpga_pic.h new file mode 100644 index 000000000000..21d7d8e42199 --- /dev/null +++ b/arch/powerpc/platforms/85xx/socrates_fpga_pic.h | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2008 Ilya Yanok, Emcraft Systems | ||
| 3 | * | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License version 2 as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef SOCRATES_FPGA_PIC_H | ||
| 12 | #define SOCRATES_FPGA_PIC_H | ||
| 13 | |||
| 14 | void socrates_fpga_pic_init(struct device_node *pic); | ||
| 15 | |||
| 16 | #endif | ||
diff --git a/arch/powerpc/platforms/85xx/stx_gp3.c b/arch/powerpc/platforms/85xx/stx_gp3.c index 0cca8f5cb272..f559918f3c6f 100644 --- a/arch/powerpc/platforms/85xx/stx_gp3.c +++ b/arch/powerpc/platforms/85xx/stx_gp3.c | |||
| @@ -145,6 +145,7 @@ static void stx_gp3_show_cpuinfo(struct seq_file *m) | |||
| 145 | 145 | ||
| 146 | static struct of_device_id __initdata of_bus_ids[] = { | 146 | static struct of_device_id __initdata of_bus_ids[] = { |
| 147 | { .compatible = "simple-bus", }, | 147 | { .compatible = "simple-bus", }, |
| 148 | { .compatible = "gianfar", }, | ||
| 148 | {}, | 149 | {}, |
| 149 | }; | 150 | }; |
| 150 | 151 | ||
diff --git a/arch/powerpc/platforms/85xx/tqm85xx.c b/arch/powerpc/platforms/85xx/tqm85xx.c index 2933a8e827d9..5b0ab9966e90 100644 --- a/arch/powerpc/platforms/85xx/tqm85xx.c +++ b/arch/powerpc/platforms/85xx/tqm85xx.c | |||
| @@ -153,6 +153,7 @@ static void tqm85xx_show_cpuinfo(struct seq_file *m) | |||
| 153 | 153 | ||
| 154 | static struct of_device_id __initdata of_bus_ids[] = { | 154 | static struct of_device_id __initdata of_bus_ids[] = { |
| 155 | { .compatible = "simple-bus", }, | 155 | { .compatible = "simple-bus", }, |
| 156 | { .compatible = "gianfar", }, | ||
| 156 | {}, | 157 | {}, |
| 157 | }; | 158 | }; |
| 158 | 159 | ||
diff --git a/arch/powerpc/platforms/86xx/gef_ppc9a.c b/arch/powerpc/platforms/86xx/gef_ppc9a.c index 830fd9a23b5a..d79104669cdc 100644 --- a/arch/powerpc/platforms/86xx/gef_ppc9a.c +++ b/arch/powerpc/platforms/86xx/gef_ppc9a.c | |||
| @@ -194,6 +194,7 @@ static long __init mpc86xx_time_init(void) | |||
| 194 | 194 | ||
| 195 | static __initdata struct of_device_id of_bus_ids[] = { | 195 | static __initdata struct of_device_id of_bus_ids[] = { |
| 196 | { .compatible = "simple-bus", }, | 196 | { .compatible = "simple-bus", }, |
| 197 | { .compatible = "gianfar", }, | ||
| 197 | {}, | 198 | {}, |
| 198 | }; | 199 | }; |
| 199 | 200 | ||
diff --git a/arch/powerpc/platforms/86xx/gef_sbc310.c b/arch/powerpc/platforms/86xx/gef_sbc310.c index ba3ce4381611..af14f852d747 100644 --- a/arch/powerpc/platforms/86xx/gef_sbc310.c +++ b/arch/powerpc/platforms/86xx/gef_sbc310.c | |||
| @@ -205,6 +205,7 @@ static long __init mpc86xx_time_init(void) | |||
| 205 | 205 | ||
| 206 | static __initdata struct of_device_id of_bus_ids[] = { | 206 | static __initdata struct of_device_id of_bus_ids[] = { |
| 207 | { .compatible = "simple-bus", }, | 207 | { .compatible = "simple-bus", }, |
| 208 | { .compatible = "gianfar", }, | ||
| 208 | {}, | 209 | {}, |
| 209 | }; | 210 | }; |
| 210 | 211 | ||
diff --git a/arch/powerpc/platforms/86xx/gef_sbc610.c b/arch/powerpc/platforms/86xx/gef_sbc610.c index d6b772ba3b8f..ea2360639652 100644 --- a/arch/powerpc/platforms/86xx/gef_sbc610.c +++ b/arch/powerpc/platforms/86xx/gef_sbc610.c | |||
| @@ -194,6 +194,7 @@ static long __init mpc86xx_time_init(void) | |||
| 194 | 194 | ||
| 195 | static __initdata struct of_device_id of_bus_ids[] = { | 195 | static __initdata struct of_device_id of_bus_ids[] = { |
| 196 | { .compatible = "simple-bus", }, | 196 | { .compatible = "simple-bus", }, |
| 197 | { .compatible = "gianfar", }, | ||
| 197 | {}, | 198 | {}, |
| 198 | }; | 199 | }; |
| 199 | 200 | ||
diff --git a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c index e8d54ac5292c..3f49a6f893a3 100644 --- a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c +++ b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c | |||
| @@ -46,6 +46,7 @@ static unsigned char *pixis_bdcfg0, *pixis_arch; | |||
| 46 | static struct of_device_id __initdata mpc8610_ids[] = { | 46 | static struct of_device_id __initdata mpc8610_ids[] = { |
| 47 | { .compatible = "fsl,mpc8610-immr", }, | 47 | { .compatible = "fsl,mpc8610-immr", }, |
| 48 | { .compatible = "simple-bus", }, | 48 | { .compatible = "simple-bus", }, |
| 49 | { .compatible = "gianfar", }, | ||
| 49 | {} | 50 | {} |
| 50 | }; | 51 | }; |
| 51 | 52 | ||
diff --git a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c index 27e0e682d8e1..c4ec49b5f7f8 100644 --- a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c +++ b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c | |||
| @@ -148,6 +148,7 @@ mpc86xx_time_init(void) | |||
| 148 | static __initdata struct of_device_id of_bus_ids[] = { | 148 | static __initdata struct of_device_id of_bus_ids[] = { |
| 149 | { .compatible = "simple-bus", }, | 149 | { .compatible = "simple-bus", }, |
| 150 | { .compatible = "fsl,rapidio-delta", }, | 150 | { .compatible = "fsl,rapidio-delta", }, |
| 151 | { .compatible = "gianfar", }, | ||
| 151 | {}, | 152 | {}, |
| 152 | }; | 153 | }; |
| 153 | 154 | ||
diff --git a/arch/powerpc/platforms/86xx/sbc8641d.c b/arch/powerpc/platforms/86xx/sbc8641d.c index 5fd7ed40986f..2886a36fc085 100644 --- a/arch/powerpc/platforms/86xx/sbc8641d.c +++ b/arch/powerpc/platforms/86xx/sbc8641d.c | |||
| @@ -103,6 +103,7 @@ mpc86xx_time_init(void) | |||
| 103 | 103 | ||
| 104 | static __initdata struct of_device_id of_bus_ids[] = { | 104 | static __initdata struct of_device_id of_bus_ids[] = { |
| 105 | { .compatible = "simple-bus", }, | 105 | { .compatible = "simple-bus", }, |
| 106 | { .compatible = "gianfar", }, | ||
| 106 | {}, | 107 | {}, |
| 107 | }; | 108 | }; |
| 108 | 109 | ||
