Skip to content

Commit

Permalink
ARM: shmobile: marzen: Initialise SCIF devices using DT
Browse files Browse the repository at this point in the history
Initialise SCIF devices using DT when booting marzen
using multiplatform.

Acked-by: Laurent Pinchart <[email protected]>
Signed-off-by: Simon Horman <[email protected]>
  • Loading branch information
horms committed Jun 17, 2014
1 parent 33b9966 commit 6d4abd7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
22 changes: 19 additions & 3 deletions arch/arm/boot/dts/r8a7779-marzen.dts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
model = "marzen";
compatible = "renesas,marzen", "renesas,r8a7779";

aliases {
serial2 = &scif2;
serial4 = &scif4;
};

chosen {
bootargs = "console=ttySC2,115200 ignore_loglevel root=/dev/nfs ip=on";
};
Expand Down Expand Up @@ -74,9 +79,6 @@
};

&pfc {
pinctrl-0 = <&scif2_pins &scif4_pins>;
pinctrl-names = "default";

lan0_pins: lan0 {
intc {
renesas,groups = "intc_irq1_b";
Expand Down Expand Up @@ -109,6 +111,20 @@
};
};

&scif2 {
pinctrl-0 = <&scif2_pins>;
pinctrl-names = "default";

status = "okay";
};

&scif4 {
pinctrl-0 = <&scif4_pins>;
pinctrl-names = "default";

status = "okay";
};

&sdhi0 {
pinctrl-0 = <&sdhi0_pins>;
pinctrl-names = "default";
Expand Down
8 changes: 4 additions & 4 deletions arch/arm/mach-shmobile/setup-r8a7779.c
Original file line number Diff line number Diff line change
Expand Up @@ -640,16 +640,16 @@ static void __init r8a7779_register_hpb_dmae(void)
}

static struct platform_device *r8a7779_devices_dt[] __initdata = {
&tmu0_device,
};

static struct platform_device *r8a7779_standard_devices[] __initdata = {
&scif0_device,
&scif1_device,
&scif2_device,
&scif3_device,
&scif4_device,
&scif5_device,
&tmu0_device,
};

static struct platform_device *r8a7779_standard_devices[] __initdata = {
&i2c0_device,
&i2c1_device,
&i2c2_device,
Expand Down

0 comments on commit 6d4abd7

Please sign in to comment.