diff options
author | Domen Puncer <domen.puncer@telargo.com> | 2007-10-14 03:57:11 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2007-10-16 19:10:32 -0400 |
commit | b147d93d62d161559a49e0108767122caa4d2576 (patch) | |
tree | f31bf24df1e452cf008261293b8957db8f897255 /arch/powerpc | |
parent | 7acb939130ff054f195f827ed1cb389232dd8560 (diff) |
[POWERPC] mpc52xx: device tree changes for FEC and MDIO
Add device tree entries for lite5200b's FEC's PHY.
Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/boot/dts/lite5200b.dts | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/arch/powerpc/boot/dts/lite5200b.dts b/arch/powerpc/boot/dts/lite5200b.dts index a6bb1d0558ef..6582c9a39b27 100644 --- a/arch/powerpc/boot/dts/lite5200b.dts +++ b/arch/powerpc/boot/dts/lite5200b.dts | |||
@@ -277,10 +277,26 @@ | |||
277 | ethernet@3000 { | 277 | ethernet@3000 { |
278 | device_type = "network"; | 278 | device_type = "network"; |
279 | compatible = "mpc5200b-fec","mpc5200-fec"; | 279 | compatible = "mpc5200b-fec","mpc5200-fec"; |
280 | reg = <3000 800>; | 280 | reg = <3000 400>; |
281 | mac-address = [ 02 03 04 05 06 07 ]; // Bad! | 281 | mac-address = [ 02 03 04 05 06 07 ]; // Bad! |
282 | interrupts = <2 5 0>; | 282 | interrupts = <2 5 0>; |
283 | interrupt-parent = <&mpc5200_pic>; | 283 | interrupt-parent = <&mpc5200_pic>; |
284 | phy-handle = <&phy0>; | ||
285 | }; | ||
286 | |||
287 | mdio@3000 { | ||
288 | #address-cells = <1>; | ||
289 | #size-cells = <0>; | ||
290 | device_type = "mdio"; | ||
291 | compatible = "mpc5200b-fec-phy"; | ||
292 | reg = <3000 400>; // fec range, since we need to setup fec interrupts | ||
293 | interrupts = <2 5 0>; // these are for "mii command finished", not link changes & co. | ||
294 | interrupt-parent = <&mpc5200_pic>; | ||
295 | |||
296 | phy0:ethernet-phy@0 { | ||
297 | device_type = "ethernet-phy"; | ||
298 | reg = <0>; | ||
299 | }; | ||
284 | }; | 300 | }; |
285 | 301 | ||
286 | ata@3a00 { | 302 | ata@3a00 { |