Message ID | 1410274534-22826-6-git-send-email-rogerq@ti.com |
---|---|
State | New |
Headers | show |
On 09/09/2014 04:55 PM, Roger Quadros wrote: > From: Afzal Mohammed <afzal@ti.com> > > Add dcan nodes. > > Signed-off-by: Afzal Mohammed <afzal@ti.com> > Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com> > Signed-off-by: George Cherian <george.cherian@ti.com> > Signed-off-by: Sekhar Nori <nsekhar@ti.com> > Signed-off-by: Roger Quadros <rogerq@ti.com> > --- > arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++ > 1 file changed, 22 insertions(+) > > diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi > index 8689949..3514d0a 100644 > --- a/arch/arm/boot/dts/am4372.dtsi > +++ b/arch/arm/boot/dts/am4372.dtsi > @@ -885,6 +885,28 @@ > clock-names = "fck"; > }; > }; > + > + dcan0: can@481cc000 { > + compatible = "bosch,d_can"; > + ti,hwmods = "d_can0"; > + clocks = <&dcan0_fck>; > + clock-names = "fck"; > + reg = <0x481cc000 0x2000 > + 0x44e10644 0x4>; > + interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; Where are the syscon phandles? > + status = "disabled"; > + }; > + > + dcan1: can@481d0000 { > + compatible = "bosch,d_can"; > + ti,hwmods = "d_can1"; > + clocks = <&dcan1_fck>; > + clock-names = "fck"; > + reg = <0x481d0000 0x2000 > + 0x44e10644 0x4>; > + interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; > + status = "disabled"; > + }; > }; > }; > > Marc
On 09/09/2014 06:09 PM, Marc Kleine-Budde wrote: > On 09/09/2014 04:55 PM, Roger Quadros wrote: >> From: Afzal Mohammed <afzal@ti.com> >> >> Add dcan nodes. >> >> Signed-off-by: Afzal Mohammed <afzal@ti.com> >> Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com> >> Signed-off-by: George Cherian <george.cherian@ti.com> >> Signed-off-by: Sekhar Nori <nsekhar@ti.com> >> Signed-off-by: Roger Quadros <rogerq@ti.com> >> --- >> arch/arm/boot/dts/am4372.dtsi | 22 ++++++++++++++++++++++ >> 1 file changed, 22 insertions(+) >> >> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi >> index 8689949..3514d0a 100644 >> --- a/arch/arm/boot/dts/am4372.dtsi >> +++ b/arch/arm/boot/dts/am4372.dtsi >> @@ -885,6 +885,28 @@ >> clock-names = "fck"; >> }; >> }; >> + >> + dcan0: can@481cc000 { >> + compatible = "bosch,d_can"; >> + ti,hwmods = "d_can0"; >> + clocks = <&dcan0_fck>; >> + clock-names = "fck"; >> + reg = <0x481cc000 0x2000 >> + 0x44e10644 0x4>; >> + interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; > > Where are the syscon phandles? They are added in patch 10. As that doesn't look nice, I'll squash it to this patch. > >> + status = "disabled"; >> + }; >> + >> + dcan1: can@481d0000 { >> + compatible = "bosch,d_can"; >> + ti,hwmods = "d_can1"; >> + clocks = <&dcan1_fck>; >> + clock-names = "fck"; >> + reg = <0x481d0000 0x2000 >> + 0x44e10644 0x4>; >> + interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; >> + status = "disabled"; >> + }; >> }; >> }; >> >> cheers, -roger -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi index 8689949..3514d0a 100644 --- a/arch/arm/boot/dts/am4372.dtsi +++ b/arch/arm/boot/dts/am4372.dtsi @@ -885,6 +885,28 @@ clock-names = "fck"; }; }; + + dcan0: can@481cc000 { + compatible = "bosch,d_can"; + ti,hwmods = "d_can0"; + clocks = <&dcan0_fck>; + clock-names = "fck"; + reg = <0x481cc000 0x2000 + 0x44e10644 0x4>; + interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; + status = "disabled"; + }; + + dcan1: can@481d0000 { + compatible = "bosch,d_can"; + ti,hwmods = "d_can1"; + clocks = <&dcan1_fck>; + clock-names = "fck"; + reg = <0x481d0000 0x2000 + 0x44e10644 0x4>; + interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; + status = "disabled"; + }; }; };