2 * Intel XScale PXA255/270 LCDC emulation.
4 * Copyright (c) 2006 Openedhand Ltd.
5 * Written by Andrzej Zaborowski <balrog@zabor.org>
7 * This code is licensed under the GPLv2.
13 #include "pixel_ops.h"
14 /* FIXME: For graphic_rotate. Should probably be done in common code. */
16 #include "framebuffer.h"
18 struct pxa2xx_lcdc_s
{
54 target_phys_addr_t branch
;
56 uint8_t palette
[1024];
57 uint8_t pbuffer
[1024];
58 void (*redraw
)(struct pxa2xx_lcdc_s
*s
, target_phys_addr_t addr
,
59 int *miny
, int *maxy
);
61 target_phys_addr_t descriptor
;
62 target_phys_addr_t source
;
71 struct __attribute__ ((__packed__
)) pxa_frame_descriptor_s
{
78 #define LCCR0 0x000 /* LCD Controller Control register 0 */
79 #define LCCR1 0x004 /* LCD Controller Control register 1 */
80 #define LCCR2 0x008 /* LCD Controller Control register 2 */
81 #define LCCR3 0x00c /* LCD Controller Control register 3 */
82 #define LCCR4 0x010 /* LCD Controller Control register 4 */
83 #define LCCR5 0x014 /* LCD Controller Control register 5 */
85 #define FBR0 0x020 /* DMA Channel 0 Frame Branch register */
86 #define FBR1 0x024 /* DMA Channel 1 Frame Branch register */
87 #define FBR2 0x028 /* DMA Channel 2 Frame Branch register */
88 #define FBR3 0x02c /* DMA Channel 3 Frame Branch register */
89 #define FBR4 0x030 /* DMA Channel 4 Frame Branch register */
90 #define FBR5 0x110 /* DMA Channel 5 Frame Branch register */
91 #define FBR6 0x114 /* DMA Channel 6 Frame Branch register */
93 #define LCSR1 0x034 /* LCD Controller Status register 1 */
94 #define LCSR0 0x038 /* LCD Controller Status register 0 */
95 #define LIIDR 0x03c /* LCD Controller Interrupt ID register */
97 #define TRGBR 0x040 /* TMED RGB Seed register */
98 #define TCR 0x044 /* TMED Control register */
100 #define OVL1C1 0x050 /* Overlay 1 Control register 1 */
101 #define OVL1C2 0x060 /* Overlay 1 Control register 2 */
102 #define OVL2C1 0x070 /* Overlay 2 Control register 1 */
103 #define OVL2C2 0x080 /* Overlay 2 Control register 2 */
104 #define CCR 0x090 /* Cursor Control register */
106 #define CMDCR 0x100 /* Command Control register */
107 #define PRSR 0x104 /* Panel Read Status register */
109 #define PXA_LCDDMA_CHANS 7
110 #define DMA_FDADR 0x00 /* Frame Descriptor Address register */
111 #define DMA_FSADR 0x04 /* Frame Source Address register */
112 #define DMA_FIDR 0x08 /* Frame ID register */
113 #define DMA_LDCMD 0x0c /* Command register */
115 /* LCD Buffer Strength Control register */
116 #define BSCNTR 0x04000054
119 #define LCCR0_ENB (1 << 0)
120 #define LCCR0_CMS (1 << 1)
121 #define LCCR0_SDS (1 << 2)
122 #define LCCR0_LDM (1 << 3)
123 #define LCCR0_SOFM0 (1 << 4)
124 #define LCCR0_IUM (1 << 5)
125 #define LCCR0_EOFM0 (1 << 6)
126 #define LCCR0_PAS (1 << 7)
127 #define LCCR0_DPD (1 << 9)
128 #define LCCR0_DIS (1 << 10)
129 #define LCCR0_QDM (1 << 11)
130 #define LCCR0_PDD (0xff << 12)
131 #define LCCR0_BSM0 (1 << 20)
132 #define LCCR0_OUM (1 << 21)
133 #define LCCR0_LCDT (1 << 22)
134 #define LCCR0_RDSTM (1 << 23)
135 #define LCCR0_CMDIM (1 << 24)
136 #define LCCR0_OUC (1 << 25)
137 #define LCCR0_LDDALT (1 << 26)
138 #define LCCR1_PPL(x) ((x) & 0x3ff)
139 #define LCCR2_LPP(x) ((x) & 0x3ff)
140 #define LCCR3_API (15 << 16)
141 #define LCCR3_BPP(x) ((((x) >> 24) & 7) | (((x) >> 26) & 8))
142 #define LCCR3_PDFOR(x) (((x) >> 30) & 3)
143 #define LCCR4_K1(x) (((x) >> 0) & 7)
144 #define LCCR4_K2(x) (((x) >> 3) & 7)
145 #define LCCR4_K3(x) (((x) >> 6) & 7)
146 #define LCCR4_PALFOR(x) (((x) >> 15) & 3)
147 #define LCCR5_SOFM(ch) (1 << (ch - 1))
148 #define LCCR5_EOFM(ch) (1 << (ch + 7))
149 #define LCCR5_BSM(ch) (1 << (ch + 15))
150 #define LCCR5_IUM(ch) (1 << (ch + 23))
151 #define OVLC1_EN (1 << 31)
152 #define CCR_CEN (1 << 31)
153 #define FBR_BRA (1 << 0)
154 #define FBR_BINT (1 << 1)
155 #define FBR_SRCADDR (0xfffffff << 4)
156 #define LCSR0_LDD (1 << 0)
157 #define LCSR0_SOF0 (1 << 1)
158 #define LCSR0_BER (1 << 2)
159 #define LCSR0_ABC (1 << 3)
160 #define LCSR0_IU0 (1 << 4)
161 #define LCSR0_IU1 (1 << 5)
162 #define LCSR0_OU (1 << 6)
163 #define LCSR0_QD (1 << 7)
164 #define LCSR0_EOF0 (1 << 8)
165 #define LCSR0_BS0 (1 << 9)
166 #define LCSR0_SINT (1 << 10)
167 #define LCSR0_RDST (1 << 11)
168 #define LCSR0_CMDINT (1 << 12)
169 #define LCSR0_BERCH(x) (((x) & 7) << 28)
170 #define LCSR1_SOF(ch) (1 << (ch - 1))
171 #define LCSR1_EOF(ch) (1 << (ch + 7))
172 #define LCSR1_BS(ch) (1 << (ch + 15))
173 #define LCSR1_IU(ch) (1 << (ch + 23))
174 #define LDCMD_LENGTH(x) ((x) & 0x001ffffc)
175 #define LDCMD_EOFINT (1 << 21)
176 #define LDCMD_SOFINT (1 << 22)
177 #define LDCMD_PAL (1 << 26)
179 /* Route internal interrupt lines to the global IC */
180 static void pxa2xx_lcdc_int_update(struct pxa2xx_lcdc_s
*s
)
183 level
|= (s
->status
[0] & LCSR0_LDD
) && !(s
->control
[0] & LCCR0_LDM
);
184 level
|= (s
->status
[0] & LCSR0_SOF0
) && !(s
->control
[0] & LCCR0_SOFM0
);
185 level
|= (s
->status
[0] & LCSR0_IU0
) && !(s
->control
[0] & LCCR0_IUM
);
186 level
|= (s
->status
[0] & LCSR0_IU1
) && !(s
->control
[5] & LCCR5_IUM(1));
187 level
|= (s
->status
[0] & LCSR0_OU
) && !(s
->control
[0] & LCCR0_OUM
);
188 level
|= (s
->status
[0] & LCSR0_QD
) && !(s
->control
[0] & LCCR0_QDM
);
189 level
|= (s
->status
[0] & LCSR0_EOF0
) && !(s
->control
[0] & LCCR0_EOFM0
);
190 level
|= (s
->status
[0] & LCSR0_BS0
) && !(s
->control
[0] & LCCR0_BSM0
);
191 level
|= (s
->status
[0] & LCSR0_RDST
) && !(s
->control
[0] & LCCR0_RDSTM
);
192 level
|= (s
->status
[0] & LCSR0_CMDINT
) && !(s
->control
[0] & LCCR0_CMDIM
);
193 level
|= (s
->status
[1] & ~s
->control
[5]);
195 qemu_set_irq(s
->irq
, !!level
);
199 /* Set Branch Status interrupt high and poke associated registers */
200 static inline void pxa2xx_dma_bs_set(struct pxa2xx_lcdc_s
*s
, int ch
)
204 s
->status
[0] |= LCSR0_BS0
;
205 unmasked
= !(s
->control
[0] & LCCR0_BSM0
);
207 s
->status
[1] |= LCSR1_BS(ch
);
208 unmasked
= !(s
->control
[5] & LCCR5_BSM(ch
));
213 s
->status
[0] |= LCSR0_SINT
;
215 s
->liidr
= s
->dma_ch
[ch
].id
;
219 /* Set Start Of Frame Status interrupt high and poke associated registers */
220 static inline void pxa2xx_dma_sof_set(struct pxa2xx_lcdc_s
*s
, int ch
)
223 if (!(s
->dma_ch
[ch
].command
& LDCMD_SOFINT
))
227 s
->status
[0] |= LCSR0_SOF0
;
228 unmasked
= !(s
->control
[0] & LCCR0_SOFM0
);
230 s
->status
[1] |= LCSR1_SOF(ch
);
231 unmasked
= !(s
->control
[5] & LCCR5_SOFM(ch
));
236 s
->status
[0] |= LCSR0_SINT
;
238 s
->liidr
= s
->dma_ch
[ch
].id
;
242 /* Set End Of Frame Status interrupt high and poke associated registers */
243 static inline void pxa2xx_dma_eof_set(struct pxa2xx_lcdc_s
*s
, int ch
)
246 if (!(s
->dma_ch
[ch
].command
& LDCMD_EOFINT
))
250 s
->status
[0] |= LCSR0_EOF0
;
251 unmasked
= !(s
->control
[0] & LCCR0_EOFM0
);
253 s
->status
[1] |= LCSR1_EOF(ch
);
254 unmasked
= !(s
->control
[5] & LCCR5_EOFM(ch
));
259 s
->status
[0] |= LCSR0_SINT
;
261 s
->liidr
= s
->dma_ch
[ch
].id
;
265 /* Set Bus Error Status interrupt high and poke associated registers */
266 static inline void pxa2xx_dma_ber_set(struct pxa2xx_lcdc_s
*s
, int ch
)
268 s
->status
[0] |= LCSR0_BERCH(ch
) | LCSR0_BER
;
270 s
->status
[0] |= LCSR0_SINT
;
272 s
->liidr
= s
->dma_ch
[ch
].id
;
275 /* Set Read Status interrupt high and poke associated registers */
276 static inline void pxa2xx_dma_rdst_set(struct pxa2xx_lcdc_s
*s
)
278 s
->status
[0] |= LCSR0_RDST
;
279 if (s
->irqlevel
&& !(s
->control
[0] & LCCR0_RDSTM
))
280 s
->status
[0] |= LCSR0_SINT
;
283 /* Load new Frame Descriptors from DMA */
284 static void pxa2xx_descriptor_load(struct pxa2xx_lcdc_s
*s
)
286 struct pxa_frame_descriptor_s desc
;
287 target_phys_addr_t descptr
;
290 for (i
= 0; i
< PXA_LCDDMA_CHANS
; i
++) {
291 s
->dma_ch
[i
].source
= 0;
293 if (!s
->dma_ch
[i
].up
)
296 if (s
->dma_ch
[i
].branch
& FBR_BRA
) {
297 descptr
= s
->dma_ch
[i
].branch
& FBR_SRCADDR
;
298 if (s
->dma_ch
[i
].branch
& FBR_BINT
)
299 pxa2xx_dma_bs_set(s
, i
);
300 s
->dma_ch
[i
].branch
&= ~FBR_BRA
;
302 descptr
= s
->dma_ch
[i
].descriptor
;
304 if (!(descptr
>= PXA2XX_SDRAM_BASE
&& descptr
+
305 sizeof(desc
) <= PXA2XX_SDRAM_BASE
+ ram_size
))
308 cpu_physical_memory_read(descptr
, (void *)&desc
, sizeof(desc
));
309 s
->dma_ch
[i
].descriptor
= tswap32(desc
.fdaddr
);
310 s
->dma_ch
[i
].source
= tswap32(desc
.fsaddr
);
311 s
->dma_ch
[i
].id
= tswap32(desc
.fidr
);
312 s
->dma_ch
[i
].command
= tswap32(desc
.ldcmd
);
316 static uint32_t pxa2xx_lcdc_read(void *opaque
, target_phys_addr_t offset
)
318 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
323 return s
->control
[0];
325 return s
->control
[1];
327 return s
->control
[2];
329 return s
->control
[3];
331 return s
->control
[4];
333 return s
->control
[5];
355 case 0x200 ... 0x1000: /* DMA per-channel registers */
356 ch
= (offset
- 0x200) >> 4;
357 if (!(ch
>= 0 && ch
< PXA_LCDDMA_CHANS
))
360 switch (offset
& 0xf) {
362 return s
->dma_ch
[ch
].descriptor
;
364 return s
->dma_ch
[ch
].source
;
366 return s
->dma_ch
[ch
].id
;
368 return s
->dma_ch
[ch
].command
;
374 return s
->dma_ch
[0].branch
;
376 return s
->dma_ch
[1].branch
;
378 return s
->dma_ch
[2].branch
;
380 return s
->dma_ch
[3].branch
;
382 return s
->dma_ch
[4].branch
;
384 return s
->dma_ch
[5].branch
;
386 return s
->dma_ch
[6].branch
;
403 cpu_abort(cpu_single_env
,
404 "%s: Bad offset " REG_FMT
"\n", __FUNCTION__
, offset
);
410 static void pxa2xx_lcdc_write(void *opaque
,
411 target_phys_addr_t offset
, uint32_t value
)
413 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
418 /* ACK Quick Disable done */
419 if ((s
->control
[0] & LCCR0_ENB
) && !(value
& LCCR0_ENB
))
420 s
->status
[0] |= LCSR0_QD
;
422 if (!(s
->control
[0] & LCCR0_LCDT
) && (value
& LCCR0_LCDT
))
423 printf("%s: internal frame buffer unsupported\n", __FUNCTION__
);
425 if ((s
->control
[3] & LCCR3_API
) &&
426 (value
& LCCR0_ENB
) && !(value
& LCCR0_LCDT
))
427 s
->status
[0] |= LCSR0_ABC
;
429 s
->control
[0] = value
& 0x07ffffff;
430 pxa2xx_lcdc_int_update(s
);
432 s
->dma_ch
[0].up
= !!(value
& LCCR0_ENB
);
433 s
->dma_ch
[1].up
= (s
->ovl1c
[0] & OVLC1_EN
) || (value
& LCCR0_SDS
);
437 s
->control
[1] = value
;
441 s
->control
[2] = value
;
445 s
->control
[3] = value
& 0xefffffff;
446 s
->bpp
= LCCR3_BPP(value
);
450 s
->control
[4] = value
& 0x83ff81ff;
454 s
->control
[5] = value
& 0x3f3f3f3f;
458 if (!(s
->ovl1c
[0] & OVLC1_EN
) && (value
& OVLC1_EN
))
459 printf("%s: Overlay 1 not supported\n", __FUNCTION__
);
461 s
->ovl1c
[0] = value
& 0x80ffffff;
462 s
->dma_ch
[1].up
= (value
& OVLC1_EN
) || (s
->control
[0] & LCCR0_SDS
);
466 s
->ovl1c
[1] = value
& 0x000fffff;
470 if (!(s
->ovl2c
[0] & OVLC1_EN
) && (value
& OVLC1_EN
))
471 printf("%s: Overlay 2 not supported\n", __FUNCTION__
);
473 s
->ovl2c
[0] = value
& 0x80ffffff;
474 s
->dma_ch
[2].up
= !!(value
& OVLC1_EN
);
475 s
->dma_ch
[3].up
= !!(value
& OVLC1_EN
);
476 s
->dma_ch
[4].up
= !!(value
& OVLC1_EN
);
480 s
->ovl2c
[1] = value
& 0x007fffff;
484 if (!(s
->ccr
& CCR_CEN
) && (value
& CCR_CEN
))
485 printf("%s: Hardware cursor unimplemented\n", __FUNCTION__
);
487 s
->ccr
= value
& 0x81ffffe7;
488 s
->dma_ch
[5].up
= !!(value
& CCR_CEN
);
492 s
->cmdcr
= value
& 0xff;
496 s
->trgbr
= value
& 0x00ffffff;
500 s
->tcr
= value
& 0x7fff;
503 case 0x200 ... 0x1000: /* DMA per-channel registers */
504 ch
= (offset
- 0x200) >> 4;
505 if (!(ch
>= 0 && ch
< PXA_LCDDMA_CHANS
))
508 switch (offset
& 0xf) {
510 s
->dma_ch
[ch
].descriptor
= value
& 0xfffffff0;
519 s
->dma_ch
[0].branch
= value
& 0xfffffff3;
522 s
->dma_ch
[1].branch
= value
& 0xfffffff3;
525 s
->dma_ch
[2].branch
= value
& 0xfffffff3;
528 s
->dma_ch
[3].branch
= value
& 0xfffffff3;
531 s
->dma_ch
[4].branch
= value
& 0xfffffff3;
534 s
->dma_ch
[5].branch
= value
& 0xfffffff3;
537 s
->dma_ch
[6].branch
= value
& 0xfffffff3;
541 s
->bscntr
= value
& 0xf;
548 s
->status
[0] &= ~(value
& 0xfff);
549 if (value
& LCSR0_BER
)
550 s
->status
[0] &= ~LCSR0_BERCH(7);
554 s
->status
[1] &= ~(value
& 0x3e3f3f);
559 cpu_abort(cpu_single_env
,
560 "%s: Bad offset " REG_FMT
"\n", __FUNCTION__
, offset
);
564 static CPUReadMemoryFunc
*pxa2xx_lcdc_readfn
[] = {
570 static CPUWriteMemoryFunc
*pxa2xx_lcdc_writefn
[] = {
576 /* Load new palette for a given DMA channel, convert to internal format */
577 static void pxa2xx_palette_parse(struct pxa2xx_lcdc_s
*s
, int ch
, int bpp
)
579 int i
, n
, format
, r
, g
, b
, alpha
;
580 uint32_t *dest
, *src
;
581 s
->pal_for
= LCCR4_PALFOR(s
->control
[4]);
599 src
= (uint32_t *) s
->dma_ch
[ch
].pbuffer
;
600 dest
= (uint32_t *) s
->dma_ch
[ch
].palette
;
601 alpha
= r
= g
= b
= 0;
603 for (i
= 0; i
< n
; i
++) {
605 case 0: /* 16 bpp, no transparency */
607 if (s
->control
[0] & LCCR0_CMS
)
608 r
= g
= b
= *src
& 0xff;
610 r
= (*src
& 0xf800) >> 8;
611 g
= (*src
& 0x07e0) >> 3;
612 b
= (*src
& 0x001f) << 3;
615 case 1: /* 16 bpp plus transparency */
616 alpha
= *src
& (1 << 24);
617 if (s
->control
[0] & LCCR0_CMS
)
618 r
= g
= b
= *src
& 0xff;
620 r
= (*src
& 0xf800) >> 8;
621 g
= (*src
& 0x07e0) >> 3;
622 b
= (*src
& 0x001f) << 3;
625 case 2: /* 18 bpp plus transparency */
626 alpha
= *src
& (1 << 24);
627 if (s
->control
[0] & LCCR0_CMS
)
628 r
= g
= b
= *src
& 0xff;
630 r
= (*src
& 0xf80000) >> 16;
631 g
= (*src
& 0x00fc00) >> 8;
632 b
= (*src
& 0x0000f8);
635 case 3: /* 24 bpp plus transparency */
636 alpha
= *src
& (1 << 24);
637 if (s
->control
[0] & LCCR0_CMS
)
638 r
= g
= b
= *src
& 0xff;
640 r
= (*src
& 0xff0000) >> 16;
641 g
= (*src
& 0x00ff00) >> 8;
642 b
= (*src
& 0x0000ff);
646 switch (ds_get_bits_per_pixel(s
->ds
)) {
648 *dest
= rgb_to_pixel8(r
, g
, b
) | alpha
;
651 *dest
= rgb_to_pixel15(r
, g
, b
) | alpha
;
654 *dest
= rgb_to_pixel16(r
, g
, b
) | alpha
;
657 *dest
= rgb_to_pixel24(r
, g
, b
) | alpha
;
660 *dest
= rgb_to_pixel32(r
, g
, b
) | alpha
;
668 static void pxa2xx_lcdc_dma0_redraw_horiz(struct pxa2xx_lcdc_s
*s
,
669 target_phys_addr_t addr
, int *miny
, int *maxy
)
671 int src_width
, dest_width
;
674 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
678 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
679 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
)
681 else if (s
->bpp
> pxa_lcdc_16bpp
)
683 else if (s
->bpp
> pxa_lcdc_8bpp
)
686 dest_width
= s
->xres
* s
->dest_width
;
688 framebuffer_update_display(s
->ds
,
689 addr
, s
->xres
, s
->yres
,
690 src_width
, dest_width
, s
->dest_width
,
692 fn
, s
->dma_ch
[0].palette
, miny
, maxy
);
695 static void pxa2xx_lcdc_dma0_redraw_vert(struct pxa2xx_lcdc_s
*s
,
696 target_phys_addr_t addr
, int *miny
, int *maxy
)
698 int src_width
, dest_width
;
701 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
705 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
706 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
)
708 else if (s
->bpp
> pxa_lcdc_16bpp
)
710 else if (s
->bpp
> pxa_lcdc_8bpp
)
713 dest_width
= s
->yres
* s
->dest_width
;
715 framebuffer_update_display(s
->ds
,
716 addr
, s
->xres
, s
->yres
,
717 src_width
, s
->dest_width
, -dest_width
,
719 fn
, s
->dma_ch
[0].palette
,
723 static void pxa2xx_lcdc_resize(struct pxa2xx_lcdc_s
*s
)
726 if (!(s
->control
[0] & LCCR0_ENB
))
729 width
= LCCR1_PPL(s
->control
[1]) + 1;
730 height
= LCCR2_LPP(s
->control
[2]) + 1;
732 if (width
!= s
->xres
|| height
!= s
->yres
) {
734 qemu_console_resize(s
->ds
, height
, width
);
736 qemu_console_resize(s
->ds
, width
, height
);
743 static void pxa2xx_update_display(void *opaque
)
745 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
746 target_phys_addr_t fbptr
;
749 if (!(s
->control
[0] & LCCR0_ENB
))
752 pxa2xx_descriptor_load(s
);
754 pxa2xx_lcdc_resize(s
);
757 s
->transp
= s
->dma_ch
[2].up
|| s
->dma_ch
[3].up
;
758 /* Note: With overlay planes the order depends on LCCR0 bit 25. */
759 for (ch
= 0; ch
< PXA_LCDDMA_CHANS
; ch
++)
760 if (s
->dma_ch
[ch
].up
) {
761 if (!s
->dma_ch
[ch
].source
) {
762 pxa2xx_dma_ber_set(s
, ch
);
765 fbptr
= s
->dma_ch
[ch
].source
;
766 if (!(fbptr
>= PXA2XX_SDRAM_BASE
&&
767 fbptr
<= PXA2XX_SDRAM_BASE
+ ram_size
)) {
768 pxa2xx_dma_ber_set(s
, ch
);
772 if (s
->dma_ch
[ch
].command
& LDCMD_PAL
) {
773 cpu_physical_memory_read(fbptr
, s
->dma_ch
[ch
].pbuffer
,
774 MAX(LDCMD_LENGTH(s
->dma_ch
[ch
].command
),
775 sizeof(s
->dma_ch
[ch
].pbuffer
)));
776 pxa2xx_palette_parse(s
, ch
, s
->bpp
);
778 /* Do we need to reparse palette */
779 if (LCCR4_PALFOR(s
->control
[4]) != s
->pal_for
)
780 pxa2xx_palette_parse(s
, ch
, s
->bpp
);
782 /* ACK frame start */
783 pxa2xx_dma_sof_set(s
, ch
);
785 s
->dma_ch
[ch
].redraw(s
, fbptr
, &miny
, &maxy
);
788 /* ACK frame completed */
789 pxa2xx_dma_eof_set(s
, ch
);
793 if (s
->control
[0] & LCCR0_DIS
) {
794 /* ACK last frame completed */
795 s
->control
[0] &= ~LCCR0_ENB
;
796 s
->status
[0] |= LCSR0_LDD
;
801 dpy_update(s
->ds
, miny
, 0, maxy
, s
->xres
);
803 dpy_update(s
->ds
, 0, miny
, s
->xres
, maxy
);
805 pxa2xx_lcdc_int_update(s
);
807 qemu_irq_raise(s
->vsync_cb
);
810 static void pxa2xx_invalidate_display(void *opaque
)
812 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
816 static void pxa2xx_screen_dump(void *opaque
, const char *filename
)
821 static void pxa2xx_lcdc_orientation(void *opaque
, int angle
)
823 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
826 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_vert
;
828 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_horiz
;
831 s
->orientation
= angle
;
832 s
->xres
= s
->yres
= -1;
833 pxa2xx_lcdc_resize(s
);
836 static void pxa2xx_lcdc_save(QEMUFile
*f
, void *opaque
)
838 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
841 qemu_put_be32(f
, s
->irqlevel
);
842 qemu_put_be32(f
, s
->transp
);
844 for (i
= 0; i
< 6; i
++)
845 qemu_put_be32s(f
, &s
->control
[i
]);
846 for (i
= 0; i
< 2; i
++)
847 qemu_put_be32s(f
, &s
->status
[i
]);
848 for (i
= 0; i
< 2; i
++)
849 qemu_put_be32s(f
, &s
->ovl1c
[i
]);
850 for (i
= 0; i
< 2; i
++)
851 qemu_put_be32s(f
, &s
->ovl2c
[i
]);
852 qemu_put_be32s(f
, &s
->ccr
);
853 qemu_put_be32s(f
, &s
->cmdcr
);
854 qemu_put_be32s(f
, &s
->trgbr
);
855 qemu_put_be32s(f
, &s
->tcr
);
856 qemu_put_be32s(f
, &s
->liidr
);
857 qemu_put_8s(f
, &s
->bscntr
);
859 for (i
= 0; i
< 7; i
++) {
860 qemu_put_betl(f
, s
->dma_ch
[i
].branch
);
861 qemu_put_byte(f
, s
->dma_ch
[i
].up
);
862 qemu_put_buffer(f
, s
->dma_ch
[i
].pbuffer
, sizeof(s
->dma_ch
[i
].pbuffer
));
864 qemu_put_betl(f
, s
->dma_ch
[i
].descriptor
);
865 qemu_put_betl(f
, s
->dma_ch
[i
].source
);
866 qemu_put_be32s(f
, &s
->dma_ch
[i
].id
);
867 qemu_put_be32s(f
, &s
->dma_ch
[i
].command
);
871 static int pxa2xx_lcdc_load(QEMUFile
*f
, void *opaque
, int version_id
)
873 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
876 s
->irqlevel
= qemu_get_be32(f
);
877 s
->transp
= qemu_get_be32(f
);
879 for (i
= 0; i
< 6; i
++)
880 qemu_get_be32s(f
, &s
->control
[i
]);
881 for (i
= 0; i
< 2; i
++)
882 qemu_get_be32s(f
, &s
->status
[i
]);
883 for (i
= 0; i
< 2; i
++)
884 qemu_get_be32s(f
, &s
->ovl1c
[i
]);
885 for (i
= 0; i
< 2; i
++)
886 qemu_get_be32s(f
, &s
->ovl2c
[i
]);
887 qemu_get_be32s(f
, &s
->ccr
);
888 qemu_get_be32s(f
, &s
->cmdcr
);
889 qemu_get_be32s(f
, &s
->trgbr
);
890 qemu_get_be32s(f
, &s
->tcr
);
891 qemu_get_be32s(f
, &s
->liidr
);
892 qemu_get_8s(f
, &s
->bscntr
);
894 for (i
= 0; i
< 7; i
++) {
895 s
->dma_ch
[i
].branch
= qemu_get_betl(f
);
896 s
->dma_ch
[i
].up
= qemu_get_byte(f
);
897 qemu_get_buffer(f
, s
->dma_ch
[i
].pbuffer
, sizeof(s
->dma_ch
[i
].pbuffer
));
899 s
->dma_ch
[i
].descriptor
= qemu_get_betl(f
);
900 s
->dma_ch
[i
].source
= qemu_get_betl(f
);
901 qemu_get_be32s(f
, &s
->dma_ch
[i
].id
);
902 qemu_get_be32s(f
, &s
->dma_ch
[i
].command
);
905 s
->bpp
= LCCR3_BPP(s
->control
[3]);
906 s
->xres
= s
->yres
= s
->pal_for
= -1;
912 #include "pxa2xx_template.h"
914 #include "pxa2xx_template.h"
916 #include "pxa2xx_template.h"
918 #include "pxa2xx_template.h"
920 #include "pxa2xx_template.h"
922 struct pxa2xx_lcdc_s
*pxa2xx_lcdc_init(target_phys_addr_t base
, qemu_irq irq
)
925 struct pxa2xx_lcdc_s
*s
;
927 s
= (struct pxa2xx_lcdc_s
*) qemu_mallocz(sizeof(struct pxa2xx_lcdc_s
));
931 pxa2xx_lcdc_orientation(s
, graphic_rotate
);
933 iomemtype
= cpu_register_io_memory(0, pxa2xx_lcdc_readfn
,
934 pxa2xx_lcdc_writefn
, s
);
935 cpu_register_physical_memory(base
, 0x00100000, iomemtype
);
937 s
->ds
= graphic_console_init(pxa2xx_update_display
,
938 pxa2xx_invalidate_display
,
939 pxa2xx_screen_dump
, NULL
, s
);
941 switch (ds_get_bits_per_pixel(s
->ds
)) {
946 s
->line_fn
[0] = pxa2xx_draw_fn_8
;
947 s
->line_fn
[1] = pxa2xx_draw_fn_8t
;
951 s
->line_fn
[0] = pxa2xx_draw_fn_15
;
952 s
->line_fn
[1] = pxa2xx_draw_fn_15t
;
956 s
->line_fn
[0] = pxa2xx_draw_fn_16
;
957 s
->line_fn
[1] = pxa2xx_draw_fn_16t
;
961 s
->line_fn
[0] = pxa2xx_draw_fn_24
;
962 s
->line_fn
[1] = pxa2xx_draw_fn_24t
;
966 s
->line_fn
[0] = pxa2xx_draw_fn_32
;
967 s
->line_fn
[1] = pxa2xx_draw_fn_32t
;
971 fprintf(stderr
, "%s: Bad color depth\n", __FUNCTION__
);
975 register_savevm("pxa2xx_lcdc", 0, 0,
976 pxa2xx_lcdc_save
, pxa2xx_lcdc_load
, s
);
981 void pxa2xx_lcd_vsync_notifier(struct pxa2xx_lcdc_s
*s
, qemu_irq handler
)
983 s
->vsync_cb
= handler
;