Message ID | 1345711351-16367-5-git-send-email-maxime.ripard@free-electrons.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thu, Aug 23, 2012 at 10:42:31AM +0200, Maxime Ripard wrote: > Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> > Cc: Brian Lilly <brian@crystalfontz.com> > --- > arch/arm/boot/dts/imx28-cfa10036.dts | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > Looks mostly good, but I have to postpone it until driver part gets accepted. Some minor comments below. > diff --git a/arch/arm/boot/dts/imx28-cfa10036.dts b/arch/arm/boot/dts/imx28-cfa10036.dts > index c03a577..92784a9 100644 > --- a/arch/arm/boot/dts/imx28-cfa10036.dts > +++ b/arch/arm/boot/dts/imx28-cfa10036.dts > @@ -33,11 +33,31 @@ > }; > > apbx@80040000 { > + pwm: pwm@80064000 { > + pinctrl-names = "default"; > + pinctrl-0 = <&pwm4_pins_a>; > + status = "okay"; > + }; > + > duart: serial@80074000 { > pinctrl-names = "default"; > pinctrl-0 = <&duart_pins_b>; > status = "okay"; > }; > + > + i2c0: i2c@80058000 { > + pinctrl-names = "default"; > + pinctrl-0 = <&i2c0_pins_b>; > + status = "okay"; > + > + ssd1307: oled@3c { > + compatible = "solomon,ssd1307fb-i2c"; > + reg = <0x3c>; > + pwms = <&pwm 4 3000>; > + oled-reset-gpio = <&gpio2 7 1>; The idiom of naming gpio in DT is *-gpios, even though most of times there is only one pin. > + oled-reset-active-low; I would drop oled- prefix for above two properties. Regards, Shawn > + }; > + }; > }; > }; > > -- > 1.7.9.5 >
Hi, Le 23/08/2012 16:45, Shawn Guo a écrit : > On Thu, Aug 23, 2012 at 10:42:31AM +0200, Maxime Ripard wrote: >> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> >> Cc: Brian Lilly <brian@crystalfontz.com> >> --- >> arch/arm/boot/dts/imx28-cfa10036.dts | 20 ++++++++++++++++++++ >> 1 file changed, 20 insertions(+) >> > Looks mostly good, but I have to postpone it until driver part gets > accepted. Yes, I totally understand that. Florian, are you ok with merging the fb driver in the first patch? > Some minor comments below. Ok, I'll send an update with the next version of the patchset if there is comments on the driver, or alone if the driver is merged as is. Maxime
diff --git a/arch/arm/boot/dts/imx28-cfa10036.dts b/arch/arm/boot/dts/imx28-cfa10036.dts index c03a577..92784a9 100644 --- a/arch/arm/boot/dts/imx28-cfa10036.dts +++ b/arch/arm/boot/dts/imx28-cfa10036.dts @@ -33,11 +33,31 @@ }; apbx@80040000 { + pwm: pwm@80064000 { + pinctrl-names = "default"; + pinctrl-0 = <&pwm4_pins_a>; + status = "okay"; + }; + duart: serial@80074000 { pinctrl-names = "default"; pinctrl-0 = <&duart_pins_b>; status = "okay"; }; + + i2c0: i2c@80058000 { + pinctrl-names = "default"; + pinctrl-0 = <&i2c0_pins_b>; + status = "okay"; + + ssd1307: oled@3c { + compatible = "solomon,ssd1307fb-i2c"; + reg = <0x3c>; + pwms = <&pwm 4 3000>; + oled-reset-gpio = <&gpio2 7 1>; + oled-reset-active-low; + }; + }; }; };
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Cc: Brian Lilly <brian@crystalfontz.com> --- arch/arm/boot/dts/imx28-cfa10036.dts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+)