diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-12-18 03:22:07 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-03-19 03:31:48 -0400 |
commit | 0f3b1e4415be85ba35a32d371cd05df44ba522e0 (patch) | |
tree | 1c97247894648e9161b7071be4687bf2d386516f /arch/arm/boot | |
parent | 1d3361f6229e210f9924f74510708f2e2c08c109 (diff) |
ARM: omap2.dtsi: add omapdss information
Add DT data for OMAP2 display subsystem, which contains the following
blocks:
dss - the wrapper/glue for the display modules
dispc - display controller
rfbi - MIPI DBI encoder
venc - analog TV encoder
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/dts/omap2.dtsi | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap2.dtsi b/arch/arm/boot/dts/omap2.dtsi index 5377ddf83bf8..22f35ea142c1 100644 --- a/arch/arm/boot/dts/omap2.dtsi +++ b/arch/arm/boot/dts/omap2.dtsi | |||
@@ -271,5 +271,36 @@ | |||
271 | ti,hwmods = "timer12"; | 271 | ti,hwmods = "timer12"; |
272 | ti,timer-pwm; | 272 | ti,timer-pwm; |
273 | }; | 273 | }; |
274 | |||
275 | dss: dss@48050000 { | ||
276 | compatible = "ti,omap2-dss"; | ||
277 | reg = <0x48050000 0x400>; | ||
278 | status = "disabled"; | ||
279 | ti,hwmods = "dss_core"; | ||
280 | #address-cells = <1>; | ||
281 | #size-cells = <1>; | ||
282 | ranges; | ||
283 | |||
284 | dispc@48050400 { | ||
285 | compatible = "ti,omap2-dispc"; | ||
286 | reg = <0x48050400 0x400>; | ||
287 | interrupts = <25>; | ||
288 | ti,hwmods = "dss_dispc"; | ||
289 | }; | ||
290 | |||
291 | rfbi: encoder@48050800 { | ||
292 | compatible = "ti,omap2-rfbi"; | ||
293 | reg = <0x48050800 0x400>; | ||
294 | status = "disabled"; | ||
295 | ti,hwmods = "dss_rfbi"; | ||
296 | }; | ||
297 | |||
298 | venc: encoder@48050c00 { | ||
299 | compatible = "ti,omap2-venc"; | ||
300 | reg = <0x48050c00 0x400>; | ||
301 | status = "disabled"; | ||
302 | ti,hwmods = "dss_venc"; | ||
303 | }; | ||
304 | }; | ||
274 | }; | 305 | }; |
275 | }; | 306 | }; |