diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2012-12-07 15:30:38 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-12-10 04:33:53 -0500 |
commit | a2ed00da5047806233e288b991d9be997a5eb214 (patch) | |
tree | 5d6052c4318c2ff0435ac6b3d606085b0bea227c /drivers/video/Kconfig | |
parent | 8f22e8eaba8aea1596a86d5eba19ef346f8de0d5 (diff) |
drivers/video: add support for the Solomon SSD1307 OLED Controller
Add support for the Solomon SSD1307 OLED controller found on the
Crystalfontz CFA10036 board.
This controller can drive a display with a resolution up to 128x39 and can
operate over I2C or SPI.
The current driver has only been tested on the CFA-10036, that is using
this controller over I2C to driver a 96x16 OLED screen.
[akpm@linux-foundation.org: checkpatch fixes]
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Brian Lilly <brian@crystalfontz.com>
Cc: Greg KH <gregkh@linux-foundation.org>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Cc: Thomas Petazzoni <thomas@free-electrons.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 9018a90b4588..9c31277b3a81 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
@@ -2442,4 +2442,19 @@ config FB_SH_MOBILE_MERAM | |||
2442 | Up to 4 memory channels can be configured, allowing 4 RGB or | 2442 | Up to 4 memory channels can be configured, allowing 4 RGB or |
2443 | 2 YCbCr framebuffers to be configured. | 2443 | 2 YCbCr framebuffers to be configured. |
2444 | 2444 | ||
2445 | config FB_SSD1307 | ||
2446 | tristate "Solomon SSD1307 framebuffer support" | ||
2447 | depends on FB && I2C | ||
2448 | depends on OF | ||
2449 | depends on GENERIC_GPIO | ||
2450 | select FB_SYS_FOPS | ||
2451 | select FB_SYS_FILLRECT | ||
2452 | select FB_SYS_COPYAREA | ||
2453 | select FB_SYS_IMAGEBLIT | ||
2454 | select FB_DEFERRED_IO | ||
2455 | select PWM | ||
2456 | help | ||
2457 | This driver implements support for the Solomon SSD1307 | ||
2458 | OLED controller over I2C. | ||
2459 | |||
2445 | endmenu | 2460 | endmenu |