diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2013-10-02 04:34:07 -0400 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-10-07 20:25:22 -0400 |
commit | 1e918e00ea2aa2d23a3e0552e907c1da104cdc39 (patch) | |
tree | 9ca335325dbf7c5f058c7ef8f6414ec6bb66964f /arch/arm/boot/dts/r8a7778-bockw-reference.dts | |
parent | 87f1ba80179a75ae1e2e783b890adb39949c7c03 (diff) |
ARM: shmobile: bockw: add SMSC support on DTS
This patch enables INTC IRQ and SMSC on BockW board via DT.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/boot/dts/r8a7778-bockw-reference.dts')
-rw-r--r-- | arch/arm/boot/dts/r8a7778-bockw-reference.dts | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/r8a7778-bockw-reference.dts b/arch/arm/boot/dts/r8a7778-bockw-reference.dts index 9bb903a3230d..4425fd2e09f4 100644 --- a/arch/arm/boot/dts/r8a7778-bockw-reference.dts +++ b/arch/arm/boot/dts/r8a7778-bockw-reference.dts | |||
@@ -22,11 +22,36 @@ | |||
22 | compatible = "renesas,bockw-reference", "renesas,r8a7778"; | 22 | compatible = "renesas,bockw-reference", "renesas,r8a7778"; |
23 | 23 | ||
24 | chosen { | 24 | chosen { |
25 | bootargs = "console=ttySC0,115200 ignore_loglevel rw"; | 25 | bootargs = "console=ttySC0,115200 ignore_loglevel root=/dev/nfs ip=dhcp rw"; |
26 | }; | 26 | }; |
27 | 27 | ||
28 | memory { | 28 | memory { |
29 | device_type = "memory"; | 29 | device_type = "memory"; |
30 | reg = <0x60000000 0x10000000>; | 30 | reg = <0x60000000 0x10000000>; |
31 | }; | 31 | }; |
32 | |||
33 | fixedregulator3v3: fixedregulator@0 { | ||
34 | compatible = "regulator-fixed"; | ||
35 | regulator-name = "fixed-3.3V"; | ||
36 | regulator-min-microvolt = <3300000>; | ||
37 | regulator-max-microvolt = <3300000>; | ||
38 | regulator-boot-on; | ||
39 | regulator-always-on; | ||
40 | }; | ||
41 | |||
42 | lan0@18300000 { | ||
43 | compatible = "smsc,lan9220", "smsc,lan9115"; | ||
44 | reg = <0x18300000 0x1000>; | ||
45 | |||
46 | phy-mode = "mii"; | ||
47 | interrupt-parent = <&irqpin>; | ||
48 | interrupts = <0 0>; /* IRQ0: hwirq 0 on irqpin */ | ||
49 | reg-io-width = <4>; | ||
50 | vddvario-supply = <&fixedregulator3v3>; | ||
51 | vdd33a-supply = <&fixedregulator3v3>; | ||
52 | }; | ||
53 | }; | ||
54 | |||
55 | &irqpin { | ||
56 | status = "okay"; | ||
32 | }; | 57 | }; |