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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 struct omap_lcd_panel_s {
26 target_phys_addr_t base;
31 ram_addr_t emiff_base;
44 struct omap_dma_lcd_channel_s *dma;
45 uint16_t palette[256];
52 static void omap_lcd_interrupts(struct omap_lcd_panel_s *s)
54 if (s->frame_done && (s->interrupts & 1)) {
55 qemu_irq_raise(s->irq);
59 if (s->palette_done && (s->interrupts & 2)) {
60 qemu_irq_raise(s->irq);
65 qemu_irq_raise(s->irq);
69 qemu_irq_lower(s->irq);
72 #include "pixel_ops.h"
74 typedef void draw_line_func(
75 uint8_t *d, const uint8_t *s, int width, const uint16_t *pal);
78 #include "omap_lcd_template.h"
80 #include "omap_lcd_template.h"
82 #include "omap_lcd_template.h"
84 #include "omap_lcd_template.h"
86 static draw_line_func *draw_line_table2[33] = {
92 }, *draw_line_table4[33] = {
98 }, *draw_line_table8[33] = {
101 [15] = draw_line8_15,
102 [16] = draw_line8_16,
103 [32] = draw_line8_32,
104 }, *draw_line_table12[33] = {
107 [15] = draw_line12_15,
108 [16] = draw_line12_16,
109 [32] = draw_line12_32,
110 }, *draw_line_table16[33] = {
113 [15] = draw_line16_15,
114 [16] = draw_line16_16,
115 [32] = draw_line16_32,
118 static void omap_update_display(void *opaque)
120 struct omap_lcd_panel_s *omap_lcd = (struct omap_lcd_panel_s *) opaque;
121 draw_line_func *draw_line;
122 int size, dirty[2], minline, maxline, height;
123 int line, width, linesize, step, bpp, frame_offset;
124 ram_addr_t frame_base, scanline, newline, x;
127 if (!omap_lcd || omap_lcd->plm == 1 ||
128 !omap_lcd->enable || !omap_lcd->state->depth)
132 if (omap_lcd->plm != 2) {
133 memcpy(omap_lcd->palette, phys_ram_base +
134 omap_lcd->dma->phys_framebuffer[
135 omap_lcd->dma->current_frame], 0x200);
136 switch (omap_lcd->palette[0] >> 12 & 7) {
138 frame_offset += 0x200;
141 frame_offset += 0x20;
146 switch ((omap_lcd->palette[0] >> 12) & 7) {
148 draw_line = draw_line_table2[omap_lcd->state->depth];
153 draw_line = draw_line_table4[omap_lcd->state->depth];
158 draw_line = draw_line_table8[omap_lcd->state->depth];
164 draw_line = draw_line_table12[omap_lcd->state->depth];
166 draw_line = draw_line_table16[omap_lcd->state->depth];
171 /* Unsupported at the moment. */
176 width = omap_lcd->width;
177 if (width != omap_lcd->state->width ||
178 omap_lcd->height != omap_lcd->state->height) {
179 qemu_console_resize(omap_lcd->console,
180 omap_lcd->width, omap_lcd->height);
181 omap_lcd->invalidate = 1;
184 if (omap_lcd->dma->current_frame == 0)
185 size = omap_lcd->dma->src_f1_bottom - omap_lcd->dma->src_f1_top;
187 size = omap_lcd->dma->src_f2_bottom - omap_lcd->dma->src_f2_top;
189 if (frame_offset + ((width * omap_lcd->height * bpp) >> 3) > size + 2) {
190 omap_lcd->sync_error = 1;
191 omap_lcd_interrupts(omap_lcd);
192 omap_lcd->enable = 0;
197 frame_base = omap_lcd->dma->phys_framebuffer[
198 omap_lcd->dma->current_frame] + frame_offset;
199 omap_lcd->dma->condition |= 1 << omap_lcd->dma->current_frame;
200 if (omap_lcd->dma->interrupts & 1)
201 qemu_irq_raise(omap_lcd->dma->irq);
202 if (omap_lcd->dma->dual)
203 omap_lcd->dma->current_frame ^= 1;
205 if (!omap_lcd->state->depth)
209 height = omap_lcd->height;
210 if (omap_lcd->subpanel & (1 << 31)) {
211 if (omap_lcd->subpanel & (1 << 29))
212 line = (omap_lcd->subpanel >> 16) & 0x3ff;
214 height = (omap_lcd->subpanel >> 16) & 0x3ff;
215 /* TODO: fill the rest of the panel with DPD */
217 step = width * bpp >> 3;
218 scanline = frame_base + step * line;
219 s = (uint8_t *) (phys_ram_base + scanline);
220 d = omap_lcd->state->data;
221 linesize = omap_lcd->state->linesize;
223 dirty[0] = dirty[1] =
224 cpu_physical_memory_get_dirty(scanline, VGA_DIRTY_FLAG);
227 for (; line < height; line ++) {
228 newline = scanline + step;
229 for (x = scanline + TARGET_PAGE_SIZE; x < newline;
230 x += TARGET_PAGE_SIZE) {
231 dirty[1] = cpu_physical_memory_get_dirty(x, VGA_DIRTY_FLAG);
232 dirty[0] |= dirty[1];
234 if (dirty[0] || omap_lcd->invalidate) {
235 draw_line(d, s, width, omap_lcd->palette);
246 if (maxline >= minline) {
247 dpy_update(omap_lcd->state, 0, minline, width, maxline);
248 cpu_physical_memory_reset_dirty(frame_base + step * minline,
249 frame_base + step * maxline, VGA_DIRTY_FLAG);
253 static int ppm_save(const char *filename, uint8_t *data,
254 int w, int h, int linesize)
261 f = fopen(filename, "wb");
264 fprintf(f, "P6\n%d %d\n%d\n", w, h, 255);
267 for (y = 0; y < h; y ++) {
269 for (x = 0; x < w; x ++) {
273 fputc((v >> 8) & 0xf8, f);
274 fputc((v >> 3) & 0xfc, f);
275 fputc((v << 3) & 0xf8, f);
280 fputc((v >> 16) & 0xff, f);
281 fputc((v >> 8) & 0xff, f);
282 fputc((v) & 0xff, f);
293 static void omap_screen_dump(void *opaque, const char *filename) {
294 struct omap_lcd_panel_s *omap_lcd = opaque;
295 omap_update_display(opaque);
296 if (omap_lcd && omap_lcd->state->data)
297 ppm_save(filename, omap_lcd->state->data,
298 omap_lcd->width, omap_lcd->height,
299 omap_lcd->state->linesize);
302 static void omap_invalidate_display(void *opaque) {
303 struct omap_lcd_panel_s *omap_lcd = opaque;
304 omap_lcd->invalidate = 1;
307 static void omap_lcd_update(struct omap_lcd_panel_s *s) {
309 s->dma->current_frame = -1;
313 omap_lcd_interrupts(s);
317 if (s->dma->current_frame == -1) {
320 s->dma->current_frame = 0;
323 if (!s->dma->mpu->port[s->dma->src].addr_valid(s->dma->mpu,
324 s->dma->src_f1_top) ||
326 s->dma->src].addr_valid(s->dma->mpu,
327 s->dma->src_f1_bottom) ||
330 s->dma->src].addr_valid(s->dma->mpu,
331 s->dma->src_f2_top) ||
333 s->dma->src].addr_valid(s->dma->mpu,
334 s->dma->src_f2_bottom)))) {
335 s->dma->condition |= 1 << 2;
336 if (s->dma->interrupts & (1 << 1))
337 qemu_irq_raise(s->dma->irq);
342 if (s->dma->src == imif) {
343 /* Framebuffers are in SRAM */
344 s->dma->phys_framebuffer[0] = s->imif_base +
345 s->dma->src_f1_top - OMAP_IMIF_BASE;
347 s->dma->phys_framebuffer[1] = s->imif_base +
348 s->dma->src_f2_top - OMAP_IMIF_BASE;
350 /* Framebuffers are in RAM */
351 s->dma->phys_framebuffer[0] = s->emiff_base +
352 s->dma->src_f1_top - OMAP_EMIFF_BASE;
354 s->dma->phys_framebuffer[1] = s->emiff_base +
355 s->dma->src_f2_top - OMAP_EMIFF_BASE;
358 if (s->plm != 2 && !s->palette_done) {
359 memcpy(s->palette, phys_ram_base +
360 s->dma->phys_framebuffer[s->dma->current_frame], 0x200);
362 omap_lcd_interrupts(s);
366 static uint32_t omap_lcdc_read(void *opaque, target_phys_addr_t addr)
368 struct omap_lcd_panel_s *s = (struct omap_lcd_panel_s *) opaque;
369 int offset = addr - s->base;
372 case 0x00: /* LCD_CONTROL */
373 return (s->tft << 23) | (s->plm << 20) |
374 (s->tft << 7) | (s->interrupts << 3) |
375 (s->mono << 1) | s->enable | s->ctrl | 0xfe000c34;
377 case 0x04: /* LCD_TIMING0 */
378 return (s->timing[0] << 10) | (s->width - 1) | 0x0000000f;
380 case 0x08: /* LCD_TIMING1 */
381 return (s->timing[1] << 10) | (s->height - 1);
383 case 0x0c: /* LCD_TIMING2 */
384 return s->timing[2] | 0xfc000000;
386 case 0x10: /* LCD_STATUS */
387 return (s->palette_done << 6) | (s->sync_error << 2) | s->frame_done;
389 case 0x14: /* LCD_SUBPANEL */
399 static void omap_lcdc_write(void *opaque, target_phys_addr_t addr,
402 struct omap_lcd_panel_s *s = (struct omap_lcd_panel_s *) opaque;
403 int offset = addr - s->base;
406 case 0x00: /* LCD_CONTROL */
407 s->plm = (value >> 20) & 3;
408 s->tft = (value >> 7) & 1;
409 s->interrupts = (value >> 3) & 3;
410 s->mono = (value >> 1) & 1;
411 s->ctrl = value & 0x01cff300;
412 if (s->enable != (value & 1)) {
413 s->enable = value & 1;
418 case 0x04: /* LCD_TIMING0 */
419 s->timing[0] = value >> 10;
420 s->width = (value & 0x3ff) + 1;
423 case 0x08: /* LCD_TIMING1 */
424 s->timing[1] = value >> 10;
425 s->height = (value & 0x3ff) + 1;
428 case 0x0c: /* LCD_TIMING2 */
429 s->timing[2] = value;
432 case 0x10: /* LCD_STATUS */
435 case 0x14: /* LCD_SUBPANEL */
436 s->subpanel = value & 0xa1ffffff;
444 static CPUReadMemoryFunc *omap_lcdc_readfn[] = {
450 static CPUWriteMemoryFunc *omap_lcdc_writefn[] = {
456 void omap_lcdc_reset(struct omap_lcd_panel_s *s)
458 s->dma->current_frame = -1;
478 struct omap_lcd_panel_s *omap_lcdc_init(target_phys_addr_t base, qemu_irq irq,
479 struct omap_dma_lcd_channel_s *dma, DisplayState *ds,
480 ram_addr_t imif_base, ram_addr_t emiff_base, omap_clk clk)
483 struct omap_lcd_panel_s *s = (struct omap_lcd_panel_s *)
484 qemu_mallocz(sizeof(struct omap_lcd_panel_s));
490 s->imif_base = imif_base;
491 s->emiff_base = emiff_base;
494 iomemtype = cpu_register_io_memory(0, omap_lcdc_readfn,
495 omap_lcdc_writefn, s);
496 cpu_register_physical_memory(s->base, 0x100, iomemtype);
498 s->console = graphic_console_init(ds, omap_update_display,
499 omap_invalidate_display,
500 omap_screen_dump, NULL, s);