linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv5 0/2] Add support for the OLED in the CFA10036
@ 2012-09-20 16:33 Maxime Ripard
  2012-09-20 16:33 ` [PATCH 1/2] video: Add support for the Solomon SSD1307 OLED Controller Maxime Ripard
  2012-09-20 16:33 ` [PATCH 2/2] ARM: dts: mxs: add oled support for the cfa-10036 Maxime Ripard
  0 siblings, 2 replies; 9+ messages in thread
From: Maxime Ripard @ 2012-09-20 16:33 UTC (permalink / raw)
  To: linux-arm-kernel

Hi everyone,

This patchset adds support for the solomon SSD1307 OLED controller present
in the CFA-10036 board.

It first adds the framebuffer driver for this controller, and then the
needed bits to enable it in the cfa10036 dts.

Considering that the driver has been around since almost two months now, and
I have not received any comments on the framebuffer part, I'd very much like it
to be included in 3.7 if possible.

Thanks,
Maxime

Changes from v4:
  * Fix kernel crash when writing more data than the internal buffer space by
    adding boundary check for the fb_write function

Changes from v3:
  * Changed the dt property name to remove the leading oled- and changed the
    reset-gpio property to reset-gpios

Changes from v2:
  * Add the pin name as comment to the pwm4 pinctrl declaration
  * Change slightly the documentation of the dt bindings for the gpios to remove
    the mxs-specific cell.

Changes from v1:
  * Did some factorisation of the ssd1307fb_write* functions.
  * Filled the smem_start field of the fb_fix_screeninfo structure
  * Fixed the broken pwm declaration
  * Change the names of oled-reset-gpios and reset-active-low properties in the
    device tree to oled-reset-gpio and oled-reset-active-low for consistency

Maxime Ripard (2):
  video: Add support for the Solomon SSD1307 OLED Controller
  ARM: dts: mxs: add oled support for the cfa-10036

 .../devicetree/bindings/video/ssd1307fb.txt        |   24 ++
 arch/arm/boot/dts/imx28-cfa10036.dts               |   20 +
 drivers/video/Kconfig                              |   13 +
 drivers/video/Makefile                             |    1 +
 drivers/video/ssd1307fb.c                          |  407 ++++++++++++++++++++
 5 files changed, 465 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/video/ssd1307fb.txt
 create mode 100644 drivers/video/ssd1307fb.c

-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PATCHv6 0/2] Add support for the OLED in the CFA10036
@ 2012-10-31  9:12 Maxime Ripard
  2012-10-31  9:12 ` [PATCH 1/2] video: Add support for the Solomon SSD1307 OLED Controller Maxime Ripard
  0 siblings, 1 reply; 9+ messages in thread
From: Maxime Ripard @ 2012-10-31  9:12 UTC (permalink / raw)
  To: linux-arm-kernel

Hi everyone,

This patchset adds support for the solomon SSD1307 OLED controller present
in the CFA-10036 board.

It first adds the framebuffer driver for this controller, and then the
needed bits to enable it in the cfa10036 dts.

Considering that the driver has been around since almost three months now, and
I have not received any comments on the framebuffer part, I'd very much like it
to be included in 3.8 if possible.

Thanks,
Maxime

Changes from v5:
  * Fixed bogus reset code

Maxime Ripard (2):
  video: Add support for the Solomon SSD1307 OLED Controller
  ARM: dts: mxs: add oled support for the cfa-10036

 .../devicetree/bindings/video/ssd1307fb.txt        |   24 ++
 arch/arm/boot/dts/imx28-cfa10036.dts               |   19 +
 drivers/video/Kconfig                              |   13 +
 drivers/video/Makefile                             |    1 +
 drivers/video/ssd1307fb.c                          |  407 ++++++++++++++++++++
 5 files changed, 464 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/video/ssd1307fb.txt
 create mode 100644 drivers/video/ssd1307fb.c

-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PATCHv4] Add support for the OLED in the CFA10036
@ 2012-09-05  9:35 Maxime Ripard
  2012-09-05  9:35 ` [PATCH 1/2] video: Add support for the Solomon SSD1307 OLED Controller Maxime Ripard
  0 siblings, 1 reply; 9+ messages in thread
From: Maxime Ripard @ 2012-09-05  9:35 UTC (permalink / raw)
  To: linux-arm-kernel

Hi everyone,

This patchset adds support for the solomon SSD1307 OLED controller present
in the CFA-10036 board.

It first adds the framebuffer driver for this controller, and then the
needed bits to enable it in the cfa10036 dts.

Considering that the driver has been around since almost two months now, and
I have not received any comments on the framebuffer part, I'd very much like it
to be included in 3.7 if possible.

Thanks,
Maxime

Changes from v3:
  * Changed the dt property name to remove the leading oled- and changed the
    reset-gpio property to reset-gpios

Changes from v2:
  * Add the pin name as comment to the pwm4 pinctrl declaration
  * Change slightly the documentation of the dt bindings for the gpios to remove
    the mxs-specific cell.

Changes from v1:
  * Did some factorisation of the ssd1307fb_write* functions.
  * Filled the smem_start field of the fb_fix_screeninfo structure
  * Fixed the broken pwm declaration
  * Change the names of oled-reset-gpios and reset-active-low properties in the
    device tree to oled-reset-gpio and oled-reset-active-low for consistency


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2012-10-31  9:12 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-20 16:33 [PATCHv5 0/2] Add support for the OLED in the CFA10036 Maxime Ripard
2012-09-20 16:33 ` [PATCH 1/2] video: Add support for the Solomon SSD1307 OLED Controller Maxime Ripard
2012-09-21 14:04   ` Maxime Ripard
2012-09-25 10:06     ` Maxime Ripard
2012-10-11  1:06       ` Florian Tobias Schandinat
2012-10-18 15:11         ` Maxime Ripard
2012-09-20 16:33 ` [PATCH 2/2] ARM: dts: mxs: add oled support for the cfa-10036 Maxime Ripard
  -- strict thread matches above, loose matches on Subject: below --
2012-10-31  9:12 [PATCHv6 0/2] Add support for the OLED in the CFA10036 Maxime Ripard
2012-10-31  9:12 ` [PATCH 1/2] video: Add support for the Solomon SSD1307 OLED Controller Maxime Ripard
2012-09-05  9:35 [PATCHv4] Add support for the OLED in the CFA10036 Maxime Ripard
2012-09-05  9:35 ` [PATCH 1/2] video: Add support for the Solomon SSD1307 OLED Controller Maxime Ripard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).