Message ID | 20180628042424.12664-3-andrew.smirnov@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Wed, Jun 27, 2018 at 9:24 PM Andrey Smirnov <andrew.smirnov@gmail.com> wrote: > > ZII's RDU1s come with two EEPROMs attached to RAVE SP. Add Ugh, the description should read RDU2, not RDU1. Will fix in v2, tomorrow. Sorry about that. Thanks, Andrey Smirnov > corresponding nodes to make them availible. > > Cc: Fabio Estevam <fabio.estevam@nxp.com> > Cc: Nikita Yushchenko <nikita.yoush@cogentembedded.com> > Cc: Lucas Stach <l.stach@pengutronix.de> > Cc: cphealy@gmail.com > Cc: Shawn Guo <shawnguo@kernel.org> > Cc: Rob Herring <robh+dt@kernel.org> > Cc: Mark Rutland <mark.rutland@arm.com> > Cc: linux-arm-kernel@lists.infradead.org > Cc: devicetree@vger.kernel.org > Cc: linux-kernel@vger.kernel.org > Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> > --- > arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi | 18 ++++++++++++++++++ > 1 file changed, 18 insertions(+) > > diff --git a/arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi b/arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi > index 19a075aee19e..e4630481d951 100644 > --- a/arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi > +++ b/arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi > @@ -320,10 +320,28 @@ > rave-sp { > compatible = "zii,rave-sp-rdu2"; > current-speed = <1000000>; > + #address-cells = <1>; > + #size-cells = <1>; > > watchdog { > compatible = "zii,rave-sp-watchdog"; > }; > + > + eeprom@a3 { > + compatible = "zii,rave-sp-eeprom"; > + reg = <0xa3 0x4000>; > + #address-cells = <1>; > + #size-cells = <1>; > + zii,eeprom-name = "dds-eeprom"; > + }; > + > + eeprom@a4 { > + compatible = "zii,rave-sp-eeprom"; > + reg = <0xa4 0x4000>; > + #address-cells = <1>; > + #size-cells = <1>; > + zii,eeprom-name = "main-eeprom"; > + }; > }; > }; > > -- > 2.17.1 >
On Wed, Jun 27, 2018 at 09:39:37PM -0700, Andrey Smirnov wrote: > On Wed, Jun 27, 2018 at 9:24 PM Andrey Smirnov <andrew.smirnov@gmail.com> wrote: > > > > ZII's RDU1s come with two EEPROMs attached to RAVE SP. Add > > Ugh, the description should read RDU2, not RDU1. Will fix in v2, > tomorrow. Sorry about that. I fixed it up and applied the series. Shawn
diff --git a/arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi b/arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi index 19a075aee19e..e4630481d951 100644 --- a/arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi +++ b/arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi @@ -320,10 +320,28 @@ rave-sp { compatible = "zii,rave-sp-rdu2"; current-speed = <1000000>; + #address-cells = <1>; + #size-cells = <1>; watchdog { compatible = "zii,rave-sp-watchdog"; }; + + eeprom@a3 { + compatible = "zii,rave-sp-eeprom"; + reg = <0xa3 0x4000>; + #address-cells = <1>; + #size-cells = <1>; + zii,eeprom-name = "dds-eeprom"; + }; + + eeprom@a4 { + compatible = "zii,rave-sp-eeprom"; + reg = <0xa4 0x4000>; + #address-cells = <1>; + #size-cells = <1>; + zii,eeprom-name = "main-eeprom"; + }; }; };
ZII's RDU1s come with two EEPROMs attached to RAVE SP. Add corresponding nodes to make them availible. Cc: Fabio Estevam <fabio.estevam@nxp.com> Cc: Nikita Yushchenko <nikita.yoush@cogentembedded.com> Cc: Lucas Stach <l.stach@pengutronix.de> Cc: cphealy@gmail.com Cc: Shawn Guo <shawnguo@kernel.org> Cc: Rob Herring <robh+dt@kernel.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: linux-arm-kernel@lists.infradead.org Cc: devicetree@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> --- arch/arm/boot/dts/imx6qdl-zii-rdu2.dtsi | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+)