aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2014-03-07 05:44:24 -0500
committerTomi Valkeinen <tomi.valkeinen@ti.com>2014-05-09 08:11:28 -0400
commitbd3ad6a4fcc9090fc7a493d5864d331d63d5c27a (patch)
tree63367b5a1322c3af212cd1dfb20ec9afcb3b7010 /drivers/video
parent35fd32d600a1d760af66e6daebfda6fa7fc4fc28 (diff)
OMAPDSS: DSI: Add OMAP5 DSI module IDs
Add OMAP5 DSI module ID support to the OMAP DSI driver. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/fbdev/omap2/dss/dsi.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/video/fbdev/omap2/dss/dsi.c b/drivers/video/fbdev/omap2/dss/dsi.c
index 90e0eff84867..4755a34a5422 100644
--- a/drivers/video/fbdev/omap2/dss/dsi.c
+++ b/drivers/video/fbdev/omap2/dss/dsi.c
@@ -5734,9 +5734,16 @@ static const struct dsi_module_id_data dsi_of_data_omap4[] = {
5734 { }, 5734 { },
5735}; 5735};
5736 5736
5737static const struct dsi_module_id_data dsi_of_data_omap5[] = {
5738 { .address = 0x58004000, .id = 0, },
5739 { .address = 0x58009000, .id = 1, },
5740 { },
5741};
5742
5737static const struct of_device_id dsi_of_match[] = { 5743static const struct of_device_id dsi_of_match[] = {
5738 { .compatible = "ti,omap3-dsi", .data = dsi_of_data_omap3, }, 5744 { .compatible = "ti,omap3-dsi", .data = dsi_of_data_omap3, },
5739 { .compatible = "ti,omap4-dsi", .data = dsi_of_data_omap4, }, 5745 { .compatible = "ti,omap4-dsi", .data = dsi_of_data_omap4, },
5746 { .compatible = "ti,omap5-dsi", .data = dsi_of_data_omap5, },
5740 {}, 5747 {},
5741}; 5748};
5742 5749