2 * Samsung S3C24xx series LCD controller.
4 * Copyright (c) 2007 OpenMoko, Inc.
5 * Author: Andrzej Zaborowski <andrew@openedhand.com>
7 * This code is licenced under the GNU GPL v2.
14 typedef void (*s3c_drawfn_t
)(uint32_t *, uint8_t *, const uint8_t *, int, int);
16 struct s3c_lcd_state_s
{
17 target_phys_addr_t base
;
20 s3c_drawfn_t
*line_fn
;
34 uint16_t raw_pal
[0x100];
43 uint32_t palette
[0x100];
51 static void s3c_lcd_update(struct s3c_lcd_state_s
*s
)
53 s
->intpnd
|= s
->srcpnd
& ~s
->intmsk
;
54 qemu_set_irq(s
->irq
, !!s
->intpnd
);
57 void s3c_lcd_reset(struct s3c_lcd_state_s
*s
)
65 s
->con
[0] = 0x00000000;
66 s
->con
[1] = 0x00000000;
67 s
->con
[2] = 0x00000000;
68 s
->con
[3] = 0x00000000;
69 s
->con
[4] = 0x00000000;
70 s
->saddr
[0] = 0x00000000;
71 s
->saddr
[1] = 0x00000000;
72 s
->saddr
[2] = 0x00000000;
76 s
->dithmode
= 0x00000;
85 #define S3C_LCDCON1 0x00 /* LCD Control register 1 */
86 #define S3C_LCDCON2 0x04 /* LCD Control register 2 */
87 #define S3C_LCDCON3 0x08 /* LCD Control register 3 */
88 #define S3C_LCDCON4 0x0c /* LCD Control register 4 */
89 #define S3C_LCDCON5 0x10 /* LCD Control register 5 */
90 #define S3C_LCDSADDR1 0x14 /* Framebuffer Start Address 1 register */
91 #define S3C_LCDSADDR2 0x18 /* Framebuffer Start Address 2 register */
92 #define S3C_LCDSADDR3 0x1c /* Framebuffer Start Address 3 register */
93 #define S3C_REDLUT 0x20 /* Red Lookup Table register */
94 #define S3C_GREENLUT 0x24 /* Green Lookup Table register */
95 #define S3C_BLUELUT 0x28 /* Blue Lookup Table register */
96 #define S3C_DITHMODE 0x4c /* Dithering Mode register */
97 #define S3C_TPAL 0x50 /* Temporary Palette register */
98 #define S3C_LCDINTPND 0x54 /* LCD Interrupt Pending register */
99 #define S3C_LCDSRCPND 0x58 /* LCD Interrupt Source Pending register */
100 #define S3C_LCDINTMSK 0x5c /* LCD Interrupt Mask register */
101 #define S3C_LPCSEL 0x60 /* LPC3600 Control register */
103 #define S3C_PALETTE 0x400 /* Palette IO start offset */
104 #define S3C_PALETTEEND 0x5ff /* Palette IO end offset */
106 static uint32_t s3c_lcd_read(void *opaque
, target_phys_addr_t addr
)
108 struct s3c_lcd_state_s
*s
= (struct s3c_lcd_state_s
*) opaque
;
113 return s
->con
[0]; /* XXX Return random LINECNT? */
121 return s
->con
[4]; /* XXX Return random STATUS? */
146 case S3C_PALETTE
... S3C_PALETTEEND
:
147 /* XXX assuming 16bit access */
148 return s
->raw_pal
[(addr
- S3C_PALETTE
) >> 1];
150 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, addr
);
156 static void s3c_lcd_write(void *opaque
, target_phys_addr_t addr
,
159 struct s3c_lcd_state_s
*s
= (struct s3c_lcd_state_s
*) opaque
;
164 s
->con
[0] = value
& 0x0003ffff;
165 s
->enable
= value
& 1;
166 s
->bpp
= (value
>> 1) & 0xf;
179 s
->con
[3] = value
& 0xffff;
182 s
->con
[4] = value
& 0x1fff;
183 s
->frm565
= (value
>> 11) & 1;
184 s
->msb
= (value
>> 12) & 1;
190 s
->fb
= phys_ram_base
+
191 (((s
->saddr
[0] << 1) & 0x7ffffffe) - S3C_RAM_BASE
);
226 s
->intpnd
= value
& 3;
229 s
->srcpnd
= value
& 3;
232 s
->intmsk
= value
& 7;
236 s
->lpcsel
= (value
& 3) | 4;
238 printf("%s: attempt to enable LPC3600\n", __FUNCTION__
);
240 case S3C_PALETTE
... S3C_PALETTEEND
:
241 /* XXX assuming 16bit access */
242 s
->raw_pal
[(addr
- S3C_PALETTE
) >> 1] = value
;
245 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, addr
);
249 static CPUReadMemoryFunc
*s3c_lcd_readfn
[] = {
255 static CPUWriteMemoryFunc
*s3c_lcd_writefn
[] = {
261 static inline void s3c_lcd_resize(struct s3c_lcd_state_s
*s
)
263 int new_width
, new_height
;
264 new_height
= ((s
->con
[1] >> 14) & 0x3ff) + 1;
265 new_width
= ((s
->con
[2] >> 8) & 0x7ff) + 1;
266 if (s
->width
!= new_width
|| s
->height
!= new_height
) {
267 s
->width
= new_width
;
268 s
->height
= new_height
;
269 // dpy_resize(s->ds, s->width, s->height);
275 uint32_t s3c_rgb_to_pixel8(unsigned int r
, unsigned int g
, unsigned b
)
277 return ((r
>> 5) << 5) | ((g
>> 5) << 2) | (b
>> 6);
281 uint32_t s3c_rgb_to_pixel15(unsigned int r
, unsigned int g
, unsigned b
)
283 return ((r
>> 3) << 10) | ((g
>> 3) << 5) | (b
>> 3);
287 uint32_t s3c_rgb_to_pixel16(unsigned int r
, unsigned int g
, unsigned b
)
289 return ((r
>> 3) << 11) | ((g
>> 2) << 5) | (b
>> 3);
293 uint32_t s3c_rgb_to_pixel24(unsigned int r
, unsigned int g
, unsigned b
)
295 return (r
<< 16) | (g
<< 8) | b
;
299 uint32_t s3c_rgb_to_pixel32(unsigned int r
, unsigned int g
, unsigned b
)
301 return (r
<< 16) | (g
<< 8) | b
;
304 static inline uint32_t s3c_rgb(struct s3c_lcd_state_s
*s
,
305 unsigned int r
, unsigned int g
, unsigned b
)
307 switch (ds_get_bits_per_pixel(s
->ds
)) {
309 return s3c_rgb_to_pixel32(r
<< 2, g
<< 2, b
<< 2);
311 return s3c_rgb_to_pixel15(r
<< 2, g
<< 2, b
<< 2);
313 return s3c_rgb_to_pixel16(r
<< 2, g
<< 2, b
<< 2);
315 return s3c_rgb_to_pixel24(r
<< 2, g
<< 2, b
<< 2);
317 return s3c_rgb_to_pixel32(r
<< 2, g
<< 2, b
<< 2);
319 fprintf(stderr
, "%s: Bad color depth\n", __FUNCTION__
);
324 static void s3c_lcd_palette_load(struct s3c_lcd_state_s
*s
)
331 s
->src_width
= s
->width
>> 3;
332 s
->fn
= s
->line_fn
[0];
337 s
->src_width
= s
->width
>> 2;
338 s
->fn
= s
->line_fn
[1];
343 s
->src_width
= s
->width
>> 1;
344 s
->fn
= s
->line_fn
[2];
349 s
->src_width
= s
->width
>> 0;
350 s
->fn
= s
->line_fn
[3];
353 s
->src_width
= (s
->width
* 3) >> 1;
354 s
->fn
= s
->line_fn
[4];
357 s
->src_width
= s
->width
<< 1;
359 s
->fn
= s
->line_fn
[5];
361 s
->fn
= s
->line_fn
[6];
364 s
->src_width
= s
->width
<< 2;
365 s
->fn
= s
->line_fn
[7];
371 for (i
= 0; i
< n
; i
++)
373 s
->palette
[i
] = s3c_rgb(s
,
374 (s
->raw_pal
[i
] >> 10) & 0x3e,
375 (s
->raw_pal
[i
] >> 5) & 0x3f,
376 (s
->raw_pal
[i
] << 1) & 0x3e);
378 s
->palette
[i
] = s3c_rgb(s
,
379 ((s
->raw_pal
[i
] >> 10) & 0x3e) | (s
->raw_pal
[i
] & 1),
380 ((s
->raw_pal
[i
] >> 6) & 0x3e) | (s
->raw_pal
[i
] & 1),
381 s
->raw_pal
[i
] & 0x3f);
383 for (i
= 0; i
< n
; i
++)
385 s
->palette
[i
] = s3c_rgb(s
,
386 ((s
->r
>> (i
* 4)) & 0xf) << 2,
387 ((s
->g
>> (i
* 4)) & 0xf) << 2,
388 ((s
->b
>> (i
* 4)) & 0xf) << 2);
390 s
->palette
[i
] = s3c_rgb(s
,
391 ((s
->r
>> (((i
>> 5) & 7) * 4)) & 0xf) << 2,
392 ((s
->g
>> (((i
>> 2) & 7) * 4)) & 0xf) << 2,
393 ((s
->b
>> ((i
& 3) * 4)) & 0xf) << 2);
397 static void s3c_update_display(void *opaque
)
399 struct s3c_lcd_state_s
*s
= (struct s3c_lcd_state_s
*) opaque
;
400 int y
, src_width
, dest_width
, dirty
[2], miny
, maxy
;
401 ram_addr_t x
, addr
, new_addr
, start
, end
;
403 if (!s
->enable
|| !s
->dest_width
)
408 if (s
->invalidatep
) {
409 s3c_lcd_palette_load(s
);
414 src_width
= s
->src_width
;
416 dest
= ds_get_data(s
->ds
);
417 dest_width
= s
->width
* s
->dest_width
;
419 addr
= (ram_addr_t
) (s
->fb
- (void *) phys_ram_base
);
420 start
= addr
+ s
->height
* src_width
;
422 dirty
[0] = dirty
[1] = cpu_physical_memory_get_dirty(start
, VGA_DIRTY_FLAG
);
425 for (y
= 0; y
< s
->height
; y
++) {
426 new_addr
= addr
+ src_width
;
427 for (x
= addr
+ TARGET_PAGE_SIZE
; x
< new_addr
;
428 x
+= TARGET_PAGE_SIZE
) {
429 dirty
[1] = cpu_physical_memory_get_dirty(x
, VGA_DIRTY_FLAG
);
430 dirty
[0] |= dirty
[1];
432 if (dirty
[0] || s
->invalidate
) {
433 s
->fn(s
->palette
, dest
, src
, s
->width
, s
->dest_width
);
449 cpu_physical_memory_reset_dirty(start
, end
, VGA_DIRTY_FLAG
);
450 s
->srcpnd
|= (1 << 1); /* INT_FrSyn */
452 dpy_update(s
->ds
, 0, miny
, s
->width
, maxy
);
455 static void s3c_invalidate_display(void *opaque
)
457 struct s3c_lcd_state_s
*s
= (struct s3c_lcd_state_s
*) opaque
;
461 static void s3c_screen_dump(void *opaque
, const char *filename
)
467 #include "s3c24xx_template.h"
469 #include "s3c24xx_template.h"
471 #include "s3c24xx_template.h"
473 #include "s3c24xx_template.h"
475 #include "s3c24xx_template.h"
477 static void s3c_lcd_save(QEMUFile
*f
, void *opaque
)
479 struct s3c_lcd_state_s
*s
= (struct s3c_lcd_state_s
*) opaque
;
481 for (i
= 0; i
< 5; i
++)
482 qemu_put_be32s(f
, &s
->con
[i
]);
483 for (i
= 0; i
< 3; i
++)
484 qemu_put_be32s(f
, &s
->saddr
[i
]);
485 qemu_put_be32s(f
, &s
->r
);
486 qemu_put_be32s(f
, &s
->g
);
487 qemu_put_be16s(f
, &s
->b
);
488 qemu_put_be32s(f
, &s
->dithmode
);
489 qemu_put_be32s(f
, &s
->tpal
);
490 qemu_put_8s(f
, &s
->intpnd
);
491 qemu_put_8s(f
, &s
->srcpnd
);
492 qemu_put_8s(f
, &s
->intmsk
);
493 qemu_put_8s(f
, &s
->lpcsel
);
494 for (i
= 0; i
< 0x100; i
++)
495 qemu_put_be16s(f
, &s
->raw_pal
[i
]);
498 static int s3c_lcd_load(QEMUFile
*f
, void *opaque
, int version_id
)
500 struct s3c_lcd_state_s
*s
= (struct s3c_lcd_state_s
*) opaque
;
502 for (i
= 0; i
< 5; i
++)
503 qemu_get_be32s(f
, &s
->con
[i
]);
504 for (i
= 0; i
< 3; i
++)
505 qemu_get_be32s(f
, &s
->saddr
[i
]);
506 qemu_get_be32s(f
, &s
->r
);
507 qemu_get_be32s(f
, &s
->g
);
508 qemu_get_be16s(f
, &s
->b
);
509 qemu_get_be32s(f
, &s
->dithmode
);
510 qemu_get_be32s(f
, &s
->tpal
);
511 qemu_get_8s(f
, &s
->intpnd
);
512 qemu_get_8s(f
, &s
->srcpnd
);
513 qemu_get_8s(f
, &s
->intmsk
);
514 qemu_get_8s(f
, &s
->lpcsel
);
520 s
->bpp
= (s
->con
[0] >> 1) & 0xf;
521 s
->enable
= s
->con
[0] & 1;
522 s
->msb
= (s
->con
[4] >> 12) & 1;
523 s
->frm565
= (s
->con
[4] >> 11) & 1;
524 s
->fb
= phys_ram_base
+ (((s
->saddr
[0] << 1) & 0x7ffffffe) - S3C_RAM_BASE
);
526 for (i
= 0; i
< 0x100; i
++)
527 qemu_get_be16s(f
, &s
->raw_pal
[i
]);
532 struct s3c_lcd_state_s
*s3c_lcd_init(target_phys_addr_t base
, DisplayState
*ds
,
536 struct s3c_lcd_state_s
*s
= (struct s3c_lcd_state_s
*)
537 qemu_mallocz(sizeof(struct s3c_lcd_state_s
));
545 graphic_console_init(ds
, s3c_update_display
,
546 s3c_invalidate_display
, s3c_screen_dump
, s
);
548 iomemtype
= cpu_register_io_memory(0, s3c_lcd_readfn
,
550 cpu_register_physical_memory(s
->base
, 0xffffff, iomemtype
);
552 register_savevm("s3c24xx_lcd", 0, 0, s3c_lcd_save
, s3c_lcd_load
, s
);
554 switch (ds_get_bits_per_pixel(s
->ds
)) {
559 s
->line_fn
= s3c_draw_fn_8
;
563 s
->line_fn
= s3c_draw_fn_15
;
567 s
->line_fn
= s3c_draw_fn_16
;
571 s
->line_fn
= s3c_draw_fn_24
;
575 s
->line_fn
= s3c_draw_fn_32
;
579 fprintf(stderr
, "%s: Bad color depth\n", __FUNCTION__
);