Commit 66d2f99d authored by Imre Deak's avatar Imre Deak Committed by Linus Torvalds
parent 28ff0c12
...@@ -16,7 +16,12 @@ enum mipid_test_result { ...@@ -16,7 +16,12 @@ enum mipid_test_result {
struct mipid_platform_data { struct mipid_platform_data {
int nreset_gpio; int nreset_gpio;
int data_lines; int data_lines;
void (*shutdown)(struct mipid_platform_data *pdata); void (*shutdown)(struct mipid_platform_data *pdata);
void (*set_bklight_level)(struct mipid_platform_data *pdata,
int level);
int (*get_bklight_level)(struct mipid_platform_data *pdata);
int (*get_bklight_max)(struct mipid_platform_data *pdata);
}; };
#endif #endif
......
...@@ -7,6 +7,14 @@ config FB_OMAP ...@@ -7,6 +7,14 @@ config FB_OMAP
help help
Frame buffer driver for OMAP based boards. Frame buffer driver for OMAP based boards.
config FB_OMAP_LCD_MIPID
bool "MIPI DBI-C/DCS compatible LCD support"
depends on FB_OMAP && SPI_MASTER
help
Say Y here if you want to have support for LCDs compatible with
the Mobile Industry Processor Interface DBI-C/DCS
specification. (Supported LCDs: Philips LPH8923, Sharp LS041Y3)
config FB_OMAP_BOOTLOADER_INIT config FB_OMAP_BOOTLOADER_INIT
bool "Check bootloader initialization" bool "Check bootloader initialization"
depends on FB_OMAP depends on FB_OMAP
......
...@@ -25,6 +25,7 @@ objs-$(CONFIG_ARCH_OMAP15XX)$(CONFIG_MACH_OMAP_INNOVATOR) += lcd_inn1510.o ...@@ -25,6 +25,7 @@ objs-$(CONFIG_ARCH_OMAP15XX)$(CONFIG_MACH_OMAP_INNOVATOR) += lcd_inn1510.o
objs-y$(CONFIG_MACH_OMAP_OSK) += lcd_osk.o objs-y$(CONFIG_MACH_OMAP_OSK) += lcd_osk.o
objs-y$(CONFIG_MACH_OMAP_APOLLON) += lcd_apollon.o objs-y$(CONFIG_MACH_OMAP_APOLLON) += lcd_apollon.o
objs-y$(CONFIG_FB_OMAP_LCD_MIPID) += lcd_mipid.o
omapfb-objs := $(objs-yy) omapfb-objs := $(objs-yy)
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment