diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-03-07 12:44:24 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-05-09 15:11:28 +0300 |
commit | bd3ad6a4fcc9090fc7a493d5864d331d63d5c27a (patch) | |
tree | 63367b5a1322c3af212cd1dfb20ec9afcb3b7010 /drivers/video/fbdev | |
parent | 35fd32d600a1d760af66e6daebfda6fa7fc4fc28 (diff) | |
download | blackbird-obmc-linux-bd3ad6a4fcc9090fc7a493d5864d331d63d5c27a.tar.gz blackbird-obmc-linux-bd3ad6a4fcc9090fc7a493d5864d331d63d5c27a.zip |
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/fbdev')
-rw-r--r-- | drivers/video/fbdev/omap2/dss/dsi.c | 7 |
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[] = { { }, }; +static const struct dsi_module_id_data dsi_of_data_omap5[] = { + { .address = 0x58004000, .id = 0, }, + { .address = 0x58009000, .id = 1, }, + { }, +}; + static const struct of_device_id dsi_of_match[] = { { .compatible = "ti,omap3-dsi", .data = dsi_of_data_omap3, }, { .compatible = "ti,omap4-dsi", .data = dsi_of_data_omap4, }, + { .compatible = "ti,omap5-dsi", .data = dsi_of_data_omap5, }, {}, }; |