2 * linux/arch/arm/mach-omap1/lcd_dma.c
4 * Extracted from arch/arm/plat-omap/dma.c
5 * Copyright (C) 2003 - 2008 Nokia Corporation
6 * Author: Juha Yrjölä <juha.yrjola@nokia.com>
7 * DMA channel linking for 1610 by Samuel Ortiz <samuel.ortiz@nokia.com>
8 * Graphics DMA and LCD DMA graphics tranformations
9 * by Imre Deak <imre.deak@nokia.com>
10 * OMAP2/3 support Copyright (C) 2004-2007 Texas Instruments, Inc.
11 * Merged to support both OMAP1 and OMAP2 by Tony Lindgren <tony@atomide.com>
12 * Some functions based on earlier dma-omap.c Copyright (C) 2001 RidgeRun, Inc.
14 * Copyright (C) 2009 Texas Instruments
15 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
17 * Support functions for the OMAP internal DMA channels.
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License version 2 as
21 * published by the Free Software Foundation.
25 #include <linux/module.h>
26 #include <linux/spinlock.h>
27 #include <linux/interrupt.h>
30 #include <mach/hardware.h>
31 #include <mach/lcdc.h>
34 int omap_lcd_dma_running(void)
37 * On OMAP1510, internal LCD controller will start the transfer
38 * when it gets enabled, so assume DMA running if LCD enabled.
40 if (cpu_is_omap15xx())
41 if (omap_readw(OMAP_LCDC_CONTROL
) & OMAP_LCDC_CTRL_LCD_EN
)
44 /* Check if LCD DMA is running */
45 if (cpu_is_omap16xx())
46 if (omap_readw(OMAP1610_DMA_LCD_CCR
) & OMAP_DMA_CCR_EN
)
52 static struct lcd_dma_info
{
55 void (*callback
)(u16 status
, void *data
);
59 unsigned long addr
, size
;
60 int rotate
, data_type
, xres
, yres
;
69 void omap_set_lcd_dma_b1(unsigned long addr
, u16 fb_xres
, u16 fb_yres
,
73 lcd_dma
.data_type
= data_type
;
74 lcd_dma
.xres
= fb_xres
;
75 lcd_dma
.yres
= fb_yres
;
77 EXPORT_SYMBOL(omap_set_lcd_dma_b1
);
79 void omap_set_lcd_dma_src_port(int port
)
81 lcd_dma
.src_port
= port
;
84 void omap_set_lcd_dma_ext_controller(int external
)
86 lcd_dma
.ext_ctrl
= external
;
88 EXPORT_SYMBOL(omap_set_lcd_dma_ext_controller
);
90 void omap_set_lcd_dma_single_transfer(int single
)
92 lcd_dma
.single_transfer
= single
;
94 EXPORT_SYMBOL(omap_set_lcd_dma_single_transfer
);
96 void omap_set_lcd_dma_b1_rotation(int rotate
)
98 if (cpu_is_omap15xx()) {
99 printk(KERN_ERR
"DMA rotation is not supported in 1510 mode\n");
103 lcd_dma
.rotate
= rotate
;
105 EXPORT_SYMBOL(omap_set_lcd_dma_b1_rotation
);
107 void omap_set_lcd_dma_b1_mirror(int mirror
)
109 if (cpu_is_omap15xx()) {
110 printk(KERN_ERR
"DMA mirror is not supported in 1510 mode\n");
113 lcd_dma
.mirror
= mirror
;
115 EXPORT_SYMBOL(omap_set_lcd_dma_b1_mirror
);
117 void omap_set_lcd_dma_b1_vxres(unsigned long vxres
)
119 if (cpu_is_omap15xx()) {
120 printk(KERN_ERR
"DMA virtual resulotion is not supported "
124 lcd_dma
.vxres
= vxres
;
126 EXPORT_SYMBOL(omap_set_lcd_dma_b1_vxres
);
128 void omap_set_lcd_dma_b1_scale(unsigned int xscale
, unsigned int yscale
)
130 if (cpu_is_omap15xx()) {
131 printk(KERN_ERR
"DMA scale is not supported in 1510 mode\n");
134 lcd_dma
.xscale
= xscale
;
135 lcd_dma
.yscale
= yscale
;
137 EXPORT_SYMBOL(omap_set_lcd_dma_b1_scale
);
139 static void set_b1_regs(void)
141 unsigned long top
, bottom
;
144 unsigned long en
, fn
;
147 unsigned int xscale
, yscale
;
149 switch (lcd_dma
.data_type
) {
150 case OMAP_DMA_DATA_TYPE_S8
:
153 case OMAP_DMA_DATA_TYPE_S16
:
156 case OMAP_DMA_DATA_TYPE_S32
:
164 vxres
= lcd_dma
.vxres
? lcd_dma
.vxres
: lcd_dma
.xres
;
165 xscale
= lcd_dma
.xscale
? lcd_dma
.xscale
: 1;
166 yscale
= lcd_dma
.yscale
? lcd_dma
.yscale
: 1;
167 BUG_ON(vxres
< lcd_dma
.xres
);
169 #define PIXADDR(x, y) (lcd_dma.addr + \
170 ((y) * vxres * yscale + (x) * xscale) * es)
171 #define PIXSTEP(sx, sy, dx, dy) (PIXADDR(dx, dy) - PIXADDR(sx, sy) - es + 1)
173 switch (lcd_dma
.rotate
) {
175 if (!lcd_dma
.mirror
) {
177 bottom
= PIXADDR(lcd_dma
.xres
- 1, lcd_dma
.yres
- 1);
178 /* 1510 DMA requires the bottom address to be 2 more
179 * than the actual last memory access location. */
180 if (cpu_is_omap15xx() &&
181 lcd_dma
.data_type
== OMAP_DMA_DATA_TYPE_S32
)
183 ei
= PIXSTEP(0, 0, 1, 0);
184 fi
= PIXSTEP(lcd_dma
.xres
- 1, 0, 0, 1);
186 top
= PIXADDR(lcd_dma
.xres
- 1, 0);
187 bottom
= PIXADDR(0, lcd_dma
.yres
- 1);
188 ei
= PIXSTEP(1, 0, 0, 0);
189 fi
= PIXSTEP(0, 0, lcd_dma
.xres
- 1, 1);
195 if (!lcd_dma
.mirror
) {
196 top
= PIXADDR(0, lcd_dma
.yres
- 1);
197 bottom
= PIXADDR(lcd_dma
.xres
- 1, 0);
198 ei
= PIXSTEP(0, 1, 0, 0);
199 fi
= PIXSTEP(0, 0, 1, lcd_dma
.yres
- 1);
201 top
= PIXADDR(lcd_dma
.xres
- 1, lcd_dma
.yres
- 1);
202 bottom
= PIXADDR(0, 0);
203 ei
= PIXSTEP(0, 1, 0, 0);
204 fi
= PIXSTEP(1, 0, 0, lcd_dma
.yres
- 1);
210 if (!lcd_dma
.mirror
) {
211 top
= PIXADDR(lcd_dma
.xres
- 1, lcd_dma
.yres
- 1);
212 bottom
= PIXADDR(0, 0);
213 ei
= PIXSTEP(1, 0, 0, 0);
214 fi
= PIXSTEP(0, 1, lcd_dma
.xres
- 1, 0);
216 top
= PIXADDR(0, lcd_dma
.yres
- 1);
217 bottom
= PIXADDR(lcd_dma
.xres
- 1, 0);
218 ei
= PIXSTEP(0, 0, 1, 0);
219 fi
= PIXSTEP(lcd_dma
.xres
- 1, 1, 0, 0);
225 if (!lcd_dma
.mirror
) {
226 top
= PIXADDR(lcd_dma
.xres
- 1, 0);
227 bottom
= PIXADDR(0, lcd_dma
.yres
- 1);
228 ei
= PIXSTEP(0, 0, 0, 1);
229 fi
= PIXSTEP(1, lcd_dma
.yres
- 1, 0, 0);
232 bottom
= PIXADDR(lcd_dma
.xres
- 1, lcd_dma
.yres
- 1);
233 ei
= PIXSTEP(0, 0, 0, 1);
234 fi
= PIXSTEP(0, lcd_dma
.yres
- 1, 1, 0);
241 return; /* Suppress warning about uninitialized vars */
244 if (cpu_is_omap15xx()) {
245 omap_writew(top
>> 16, OMAP1510_DMA_LCD_TOP_F1_U
);
246 omap_writew(top
, OMAP1510_DMA_LCD_TOP_F1_L
);
247 omap_writew(bottom
>> 16, OMAP1510_DMA_LCD_BOT_F1_U
);
248 omap_writew(bottom
, OMAP1510_DMA_LCD_BOT_F1_L
);
254 omap_writew(top
>> 16, OMAP1610_DMA_LCD_TOP_B1_U
);
255 omap_writew(top
, OMAP1610_DMA_LCD_TOP_B1_L
);
256 omap_writew(bottom
>> 16, OMAP1610_DMA_LCD_BOT_B1_U
);
257 omap_writew(bottom
, OMAP1610_DMA_LCD_BOT_B1_L
);
259 omap_writew(en
, OMAP1610_DMA_LCD_SRC_EN_B1
);
260 omap_writew(fn
, OMAP1610_DMA_LCD_SRC_FN_B1
);
262 w
= omap_readw(OMAP1610_DMA_LCD_CSDP
);
264 w
|= lcd_dma
.data_type
;
265 omap_writew(w
, OMAP1610_DMA_LCD_CSDP
);
267 w
= omap_readw(OMAP1610_DMA_LCD_CTRL
);
268 /* Always set the source port as SDRAM for now*/
270 if (lcd_dma
.callback
!= NULL
)
271 w
|= 1 << 1; /* Block interrupt enable */
274 omap_writew(w
, OMAP1610_DMA_LCD_CTRL
);
276 if (!(lcd_dma
.rotate
|| lcd_dma
.mirror
||
277 lcd_dma
.vxres
|| lcd_dma
.xscale
|| lcd_dma
.yscale
))
280 w
= omap_readw(OMAP1610_DMA_LCD_CCR
);
281 /* Set the double-indexed addressing mode */
283 omap_writew(w
, OMAP1610_DMA_LCD_CCR
);
285 omap_writew(ei
, OMAP1610_DMA_LCD_SRC_EI_B1
);
286 omap_writew(fi
>> 16, OMAP1610_DMA_LCD_SRC_FI_B1_U
);
287 omap_writew(fi
, OMAP1610_DMA_LCD_SRC_FI_B1_L
);
290 static irqreturn_t
lcd_dma_irq_handler(int irq
, void *dev_id
)
294 w
= omap_readw(OMAP1610_DMA_LCD_CTRL
);
295 if (unlikely(!(w
& (1 << 3)))) {
296 printk(KERN_WARNING
"Spurious LCD DMA IRQ\n");
301 omap_writew(w
, OMAP1610_DMA_LCD_CTRL
);
303 if (lcd_dma
.callback
!= NULL
)
304 lcd_dma
.callback(w
, lcd_dma
.cb_data
);
309 int omap_request_lcd_dma(void (*callback
)(u16 status
, void *data
),
312 spin_lock_irq(&lcd_dma
.lock
);
313 if (lcd_dma
.reserved
) {
314 spin_unlock_irq(&lcd_dma
.lock
);
315 printk(KERN_ERR
"LCD DMA channel already reserved\n");
319 lcd_dma
.reserved
= 1;
320 spin_unlock_irq(&lcd_dma
.lock
);
321 lcd_dma
.callback
= callback
;
322 lcd_dma
.cb_data
= data
;
324 lcd_dma
.single_transfer
= 0;
330 lcd_dma
.ext_ctrl
= 0;
331 lcd_dma
.src_port
= 0;
335 EXPORT_SYMBOL(omap_request_lcd_dma
);
337 void omap_free_lcd_dma(void)
339 spin_lock(&lcd_dma
.lock
);
340 if (!lcd_dma
.reserved
) {
341 spin_unlock(&lcd_dma
.lock
);
342 printk(KERN_ERR
"LCD DMA is not reserved\n");
346 if (!cpu_is_omap15xx())
347 omap_writew(omap_readw(OMAP1610_DMA_LCD_CCR
) & ~1,
348 OMAP1610_DMA_LCD_CCR
);
349 lcd_dma
.reserved
= 0;
350 spin_unlock(&lcd_dma
.lock
);
352 EXPORT_SYMBOL(omap_free_lcd_dma
);
354 void omap_enable_lcd_dma(void)
359 * Set the Enable bit only if an external controller is
360 * connected. Otherwise the OMAP internal controller will
361 * start the transfer when it gets enabled.
363 if (cpu_is_omap15xx() || !lcd_dma
.ext_ctrl
)
366 w
= omap_readw(OMAP1610_DMA_LCD_CTRL
);
368 omap_writew(w
, OMAP1610_DMA_LCD_CTRL
);
372 w
= omap_readw(OMAP1610_DMA_LCD_CCR
);
374 omap_writew(w
, OMAP1610_DMA_LCD_CCR
);
376 EXPORT_SYMBOL(omap_enable_lcd_dma
);
378 void omap_setup_lcd_dma(void)
380 BUG_ON(lcd_dma
.active
);
381 if (!cpu_is_omap15xx()) {
382 /* Set some reasonable defaults */
383 omap_writew(0x5440, OMAP1610_DMA_LCD_CCR
);
384 omap_writew(0x9102, OMAP1610_DMA_LCD_CSDP
);
385 omap_writew(0x0004, OMAP1610_DMA_LCD_LCH_CTRL
);
388 if (!cpu_is_omap15xx()) {
391 w
= omap_readw(OMAP1610_DMA_LCD_CCR
);
393 * If DMA was already active set the end_prog bit to have
394 * the programmed register set loaded into the active
397 w
|= 1 << 11; /* End_prog */
398 if (!lcd_dma
.single_transfer
)
399 w
|= (3 << 8); /* Auto_init, repeat */
400 omap_writew(w
, OMAP1610_DMA_LCD_CCR
);
403 EXPORT_SYMBOL(omap_setup_lcd_dma
);
405 void omap_stop_lcd_dma(void)
410 if (cpu_is_omap15xx() || !lcd_dma
.ext_ctrl
)
413 w
= omap_readw(OMAP1610_DMA_LCD_CCR
);
415 omap_writew(w
, OMAP1610_DMA_LCD_CCR
);
417 w
= omap_readw(OMAP1610_DMA_LCD_CTRL
);
419 omap_writew(w
, OMAP1610_DMA_LCD_CTRL
);
421 EXPORT_SYMBOL(omap_stop_lcd_dma
);
423 static int __init
omap_init_lcd_dma(void)
427 if (!cpu_class_is_omap1())
430 if (cpu_is_omap16xx()) {
433 /* this would prevent OMAP sleep */
434 w
= omap_readw(OMAP1610_DMA_LCD_CTRL
);
436 omap_writew(w
, OMAP1610_DMA_LCD_CTRL
);
439 spin_lock_init(&lcd_dma
.lock
);
441 r
= request_irq(INT_DMA_LCD
, lcd_dma_irq_handler
, 0,
444 printk(KERN_ERR
"unable to request IRQ for LCD DMA "
450 arch_initcall(omap_init_lcd_dma
);