Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 84192742 authored by Tomi Valkeinen's avatar Tomi Valkeinen
Browse files

OMAPDSS: Add Sony ACX565AKM panel driver



Add Sony ACX565AKM panel driver which uses the new DSS device model and
DSS ops.

Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
Tested-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
parent dbc23840
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -38,4 +38,10 @@ config DISPLAY_PANEL_DSI_CM
	help
	  Driver for generic DSI command mode panels.

config DISPLAY_PANEL_SONY_ACX565AKM
	tristate "ACX565AKM Panel"
	depends on SPI && BACKLIGHT_CLASS_DEVICE
	help
	  This is the LCD panel used on Nokia N900

endmenu
+1 −0
Original line number Diff line number Diff line
@@ -5,3 +5,4 @@ obj-$(CONFIG_DISPLAY_CONNECTOR_HDMI) += connector-hdmi.o
obj-$(CONFIG_DISPLAY_CONNECTOR_ANALOG_TV) += connector-analog-tv.o
obj-$(CONFIG_DISPLAY_PANEL_DPI) += panel-dpi.o
obj-$(CONFIG_DISPLAY_PANEL_DSI_CM) += panel-dsi-cm.o
obj-$(CONFIG_DISPLAY_PANEL_SONY_ACX565AKM) += panel-sony-acx565akm.o
+865 −0

File added.

Preview size limit exceeded, changes collapsed.

+16 −0
Original line number Diff line number Diff line
@@ -264,4 +264,20 @@ struct panel_dsicm_platform_data {
	struct omap_dsi_pin_config pin_config;
};

/**
 * panel_acx565akm platform data
 * @name: name for this display entity
 * @source: name of the display entity used as a video source
 * @reset_gpio: gpio to reset the panel (or -1)
 * @datapairs: number of SDI datapairs
 */
struct panel_acx565akm_platform_data {
	const char *name;
	const char *source;

	int reset_gpio;

	int datapairs;
};

#endif /* __OMAP_PANEL_DATA_H */