4 * Copyright (C) 2006-2007 Andrzej Zaborowski <balrog@zabor.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "framebuffer.h"
24 struct omap_lcd_panel_s
{
39 struct omap_dma_lcd_channel_s
*dma
;
40 uint16_t palette
[256];
47 static void omap_lcd_interrupts(struct omap_lcd_panel_s
*s
)
49 if (s
->frame_done
&& (s
->interrupts
& 1)) {
50 qemu_irq_raise(s
->irq
);
54 if (s
->palette_done
&& (s
->interrupts
& 2)) {
55 qemu_irq_raise(s
->irq
);
60 qemu_irq_raise(s
->irq
);
64 qemu_irq_lower(s
->irq
);
67 #include "pixel_ops.h"
69 #define draw_line_func drawfn
72 #include "omap_lcd_template.h"
74 #include "omap_lcd_template.h"
76 #include "omap_lcd_template.h"
78 #include "omap_lcd_template.h"
80 static draw_line_func draw_line_table2
[33] = {
86 }, draw_line_table4
[33] = {
92 }, draw_line_table8
[33] = {
98 }, draw_line_table12
[33] = {
101 [15] = draw_line12_15
,
102 [16] = draw_line12_16
,
103 [32] = draw_line12_32
,
104 }, draw_line_table16
[33] = {
107 [15] = draw_line16_15
,
108 [16] = draw_line16_16
,
109 [32] = draw_line16_32
,
112 static void omap_update_display(void *opaque
)
114 struct omap_lcd_panel_s
*omap_lcd
= (struct omap_lcd_panel_s
*) opaque
;
115 draw_line_func draw_line
;
116 int size
, height
, first
, last
;
117 int width
, linesize
, step
, bpp
, frame_offset
;
118 target_phys_addr_t frame_base
;
120 if (!omap_lcd
|| omap_lcd
->plm
== 1 ||
121 !omap_lcd
->enable
|| !ds_get_bits_per_pixel(omap_lcd
->state
))
125 if (omap_lcd
->plm
!= 2) {
126 cpu_physical_memory_read(omap_lcd
->dma
->phys_framebuffer
[
127 omap_lcd
->dma
->current_frame
],
128 (void *)omap_lcd
->palette
, 0x200);
129 switch (omap_lcd
->palette
[0] >> 12 & 7) {
131 frame_offset
+= 0x200;
134 frame_offset
+= 0x20;
139 switch ((omap_lcd
->palette
[0] >> 12) & 7) {
141 draw_line
= draw_line_table2
[ds_get_bits_per_pixel(omap_lcd
->state
)];
146 draw_line
= draw_line_table4
[ds_get_bits_per_pixel(omap_lcd
->state
)];
151 draw_line
= draw_line_table8
[ds_get_bits_per_pixel(omap_lcd
->state
)];
157 draw_line
= draw_line_table12
[ds_get_bits_per_pixel(omap_lcd
->state
)];
159 draw_line
= draw_line_table16
[ds_get_bits_per_pixel(omap_lcd
->state
)];
164 /* Unsupported at the moment. */
169 width
= omap_lcd
->width
;
170 if (width
!= ds_get_width(omap_lcd
->state
) ||
171 omap_lcd
->height
!= ds_get_height(omap_lcd
->state
)) {
172 qemu_console_resize(omap_lcd
->state
,
173 omap_lcd
->width
, omap_lcd
->height
);
174 omap_lcd
->invalidate
= 1;
177 if (omap_lcd
->dma
->current_frame
== 0)
178 size
= omap_lcd
->dma
->src_f1_bottom
- omap_lcd
->dma
->src_f1_top
;
180 size
= omap_lcd
->dma
->src_f2_bottom
- omap_lcd
->dma
->src_f2_top
;
182 if (frame_offset
+ ((width
* omap_lcd
->height
* bpp
) >> 3) > size
+ 2) {
183 omap_lcd
->sync_error
= 1;
184 omap_lcd_interrupts(omap_lcd
);
185 omap_lcd
->enable
= 0;
190 frame_base
= omap_lcd
->dma
->phys_framebuffer
[
191 omap_lcd
->dma
->current_frame
] + frame_offset
;
192 omap_lcd
->dma
->condition
|= 1 << omap_lcd
->dma
->current_frame
;
193 if (omap_lcd
->dma
->interrupts
& 1)
194 qemu_irq_raise(omap_lcd
->dma
->irq
);
195 if (omap_lcd
->dma
->dual
)
196 omap_lcd
->dma
->current_frame
^= 1;
198 if (!ds_get_bits_per_pixel(omap_lcd
->state
))
202 height
= omap_lcd
->height
;
203 if (omap_lcd
->subpanel
& (1 << 31)) {
204 if (omap_lcd
->subpanel
& (1 << 29))
205 first
= (omap_lcd
->subpanel
>> 16) & 0x3ff;
207 height
= (omap_lcd
->subpanel
>> 16) & 0x3ff;
208 /* TODO: fill the rest of the panel with DPD */
211 step
= width
* bpp
>> 3;
212 linesize
= ds_get_linesize(omap_lcd
->state
);
213 framebuffer_update_display(omap_lcd
->state
,
214 frame_base
, width
, height
,
216 omap_lcd
->invalidate
,
217 draw_line
, omap_lcd
->palette
,
220 dpy_update(omap_lcd
->state
, 0, first
, width
, last
- first
+ 1);
222 omap_lcd
->invalidate
= 0;
225 static int ppm_save(const char *filename
, uint8_t *data
,
226 int w
, int h
, int linesize
)
233 f
= fopen(filename
, "wb");
236 fprintf(f
, "P6\n%d %d\n%d\n", w
, h
, 255);
239 for (y
= 0; y
< h
; y
++) {
241 for (x
= 0; x
< w
; x
++) {
245 fputc((v
>> 8) & 0xf8, f
);
246 fputc((v
>> 3) & 0xfc, f
);
247 fputc((v
<< 3) & 0xf8, f
);
252 fputc((v
>> 16) & 0xff, f
);
253 fputc((v
>> 8) & 0xff, f
);
254 fputc((v
) & 0xff, f
);
265 static void omap_screen_dump(void *opaque
, const char *filename
) {
266 struct omap_lcd_panel_s
*omap_lcd
= opaque
;
267 omap_update_display(opaque
);
268 if (omap_lcd
&& ds_get_data(omap_lcd
->state
))
269 ppm_save(filename
, ds_get_data(omap_lcd
->state
),
270 omap_lcd
->width
, omap_lcd
->height
,
271 ds_get_linesize(omap_lcd
->state
));
274 static void omap_invalidate_display(void *opaque
) {
275 struct omap_lcd_panel_s
*omap_lcd
= opaque
;
276 omap_lcd
->invalidate
= 1;
279 static void omap_lcd_update(struct omap_lcd_panel_s
*s
) {
281 s
->dma
->current_frame
= -1;
285 omap_lcd_interrupts(s
);
289 if (s
->dma
->current_frame
== -1) {
292 s
->dma
->current_frame
= 0;
295 if (!s
->dma
->mpu
->port
[s
->dma
->src
].addr_valid(s
->dma
->mpu
,
296 s
->dma
->src_f1_top
) ||
298 s
->dma
->src
].addr_valid(s
->dma
->mpu
,
299 s
->dma
->src_f1_bottom
) ||
302 s
->dma
->src
].addr_valid(s
->dma
->mpu
,
303 s
->dma
->src_f2_top
) ||
305 s
->dma
->src
].addr_valid(s
->dma
->mpu
,
306 s
->dma
->src_f2_bottom
)))) {
307 s
->dma
->condition
|= 1 << 2;
308 if (s
->dma
->interrupts
& (1 << 1))
309 qemu_irq_raise(s
->dma
->irq
);
314 s
->dma
->phys_framebuffer
[0] = s
->dma
->src_f1_top
;
315 s
->dma
->phys_framebuffer
[1] = s
->dma
->src_f2_top
;
317 if (s
->plm
!= 2 && !s
->palette_done
) {
318 cpu_physical_memory_read(
319 s
->dma
->phys_framebuffer
[s
->dma
->current_frame
],
320 (void *)s
->palette
, 0x200);
322 omap_lcd_interrupts(s
);
326 static uint32_t omap_lcdc_read(void *opaque
, target_phys_addr_t addr
)
328 struct omap_lcd_panel_s
*s
= (struct omap_lcd_panel_s
*) opaque
;
331 case 0x00: /* LCD_CONTROL */
332 return (s
->tft
<< 23) | (s
->plm
<< 20) |
333 (s
->tft
<< 7) | (s
->interrupts
<< 3) |
334 (s
->mono
<< 1) | s
->enable
| s
->ctrl
| 0xfe000c34;
336 case 0x04: /* LCD_TIMING0 */
337 return (s
->timing
[0] << 10) | (s
->width
- 1) | 0x0000000f;
339 case 0x08: /* LCD_TIMING1 */
340 return (s
->timing
[1] << 10) | (s
->height
- 1);
342 case 0x0c: /* LCD_TIMING2 */
343 return s
->timing
[2] | 0xfc000000;
345 case 0x10: /* LCD_STATUS */
346 return (s
->palette_done
<< 6) | (s
->sync_error
<< 2) | s
->frame_done
;
348 case 0x14: /* LCD_SUBPANEL */
358 static void omap_lcdc_write(void *opaque
, target_phys_addr_t addr
,
361 struct omap_lcd_panel_s
*s
= (struct omap_lcd_panel_s
*) opaque
;
364 case 0x00: /* LCD_CONTROL */
365 s
->plm
= (value
>> 20) & 3;
366 s
->tft
= (value
>> 7) & 1;
367 s
->interrupts
= (value
>> 3) & 3;
368 s
->mono
= (value
>> 1) & 1;
369 s
->ctrl
= value
& 0x01cff300;
370 if (s
->enable
!= (value
& 1)) {
371 s
->enable
= value
& 1;
376 case 0x04: /* LCD_TIMING0 */
377 s
->timing
[0] = value
>> 10;
378 s
->width
= (value
& 0x3ff) + 1;
381 case 0x08: /* LCD_TIMING1 */
382 s
->timing
[1] = value
>> 10;
383 s
->height
= (value
& 0x3ff) + 1;
386 case 0x0c: /* LCD_TIMING2 */
387 s
->timing
[2] = value
;
390 case 0x10: /* LCD_STATUS */
393 case 0x14: /* LCD_SUBPANEL */
394 s
->subpanel
= value
& 0xa1ffffff;
402 static CPUReadMemoryFunc
* const omap_lcdc_readfn
[] = {
408 static CPUWriteMemoryFunc
* const omap_lcdc_writefn
[] = {
414 void omap_lcdc_reset(struct omap_lcd_panel_s
*s
)
416 s
->dma
->current_frame
= -1;
436 struct omap_lcd_panel_s
*omap_lcdc_init(target_phys_addr_t base
, qemu_irq irq
,
437 struct omap_dma_lcd_channel_s
*dma
, omap_clk clk
)
440 struct omap_lcd_panel_s
*s
= (struct omap_lcd_panel_s
*)
441 g_malloc0(sizeof(struct omap_lcd_panel_s
));
447 iomemtype
= cpu_register_io_memory(omap_lcdc_readfn
,
448 omap_lcdc_writefn
, s
, DEVICE_NATIVE_ENDIAN
);
449 cpu_register_physical_memory(base
, 0x100, iomemtype
);
451 s
->state
= graphic_console_init(omap_update_display
,
452 omap_invalidate_display
,
453 omap_screen_dump
, NULL
, s
);