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.
9 * Contributions after 2012-01-13 are licensed under the terms of the
10 * GNU GPL, version 2 or (at your option) any later version.
14 #include "ui/console.h"
15 #include "hw/arm/pxa.h"
16 #include "ui/pixel_ops.h"
17 /* FIXME: For graphic_rotate. Should probably be done in common code. */
18 #include "sysemu/sysemu.h"
19 #include "framebuffer.h"
24 uint8_t palette
[1024];
25 uint8_t pbuffer
[1024];
26 void (*redraw
)(PXA2xxLCDState
*s
, hwaddr addr
,
27 int *miny
, int *maxy
);
35 struct PXA2xxLCDState
{
72 struct DMAChannel dma_ch
[7];
78 typedef struct QEMU_PACKED
{
85 #define LCCR0 0x000 /* LCD Controller Control register 0 */
86 #define LCCR1 0x004 /* LCD Controller Control register 1 */
87 #define LCCR2 0x008 /* LCD Controller Control register 2 */
88 #define LCCR3 0x00c /* LCD Controller Control register 3 */
89 #define LCCR4 0x010 /* LCD Controller Control register 4 */
90 #define LCCR5 0x014 /* LCD Controller Control register 5 */
92 #define FBR0 0x020 /* DMA Channel 0 Frame Branch register */
93 #define FBR1 0x024 /* DMA Channel 1 Frame Branch register */
94 #define FBR2 0x028 /* DMA Channel 2 Frame Branch register */
95 #define FBR3 0x02c /* DMA Channel 3 Frame Branch register */
96 #define FBR4 0x030 /* DMA Channel 4 Frame Branch register */
97 #define FBR5 0x110 /* DMA Channel 5 Frame Branch register */
98 #define FBR6 0x114 /* DMA Channel 6 Frame Branch register */
100 #define LCSR1 0x034 /* LCD Controller Status register 1 */
101 #define LCSR0 0x038 /* LCD Controller Status register 0 */
102 #define LIIDR 0x03c /* LCD Controller Interrupt ID register */
104 #define TRGBR 0x040 /* TMED RGB Seed register */
105 #define TCR 0x044 /* TMED Control register */
107 #define OVL1C1 0x050 /* Overlay 1 Control register 1 */
108 #define OVL1C2 0x060 /* Overlay 1 Control register 2 */
109 #define OVL2C1 0x070 /* Overlay 2 Control register 1 */
110 #define OVL2C2 0x080 /* Overlay 2 Control register 2 */
111 #define CCR 0x090 /* Cursor Control register */
113 #define CMDCR 0x100 /* Command Control register */
114 #define PRSR 0x104 /* Panel Read Status register */
116 #define PXA_LCDDMA_CHANS 7
117 #define DMA_FDADR 0x00 /* Frame Descriptor Address register */
118 #define DMA_FSADR 0x04 /* Frame Source Address register */
119 #define DMA_FIDR 0x08 /* Frame ID register */
120 #define DMA_LDCMD 0x0c /* Command register */
122 /* LCD Buffer Strength Control register */
123 #define BSCNTR 0x04000054
126 #define LCCR0_ENB (1 << 0)
127 #define LCCR0_CMS (1 << 1)
128 #define LCCR0_SDS (1 << 2)
129 #define LCCR0_LDM (1 << 3)
130 #define LCCR0_SOFM0 (1 << 4)
131 #define LCCR0_IUM (1 << 5)
132 #define LCCR0_EOFM0 (1 << 6)
133 #define LCCR0_PAS (1 << 7)
134 #define LCCR0_DPD (1 << 9)
135 #define LCCR0_DIS (1 << 10)
136 #define LCCR0_QDM (1 << 11)
137 #define LCCR0_PDD (0xff << 12)
138 #define LCCR0_BSM0 (1 << 20)
139 #define LCCR0_OUM (1 << 21)
140 #define LCCR0_LCDT (1 << 22)
141 #define LCCR0_RDSTM (1 << 23)
142 #define LCCR0_CMDIM (1 << 24)
143 #define LCCR0_OUC (1 << 25)
144 #define LCCR0_LDDALT (1 << 26)
145 #define LCCR1_PPL(x) ((x) & 0x3ff)
146 #define LCCR2_LPP(x) ((x) & 0x3ff)
147 #define LCCR3_API (15 << 16)
148 #define LCCR3_BPP(x) ((((x) >> 24) & 7) | (((x) >> 26) & 8))
149 #define LCCR3_PDFOR(x) (((x) >> 30) & 3)
150 #define LCCR4_K1(x) (((x) >> 0) & 7)
151 #define LCCR4_K2(x) (((x) >> 3) & 7)
152 #define LCCR4_K3(x) (((x) >> 6) & 7)
153 #define LCCR4_PALFOR(x) (((x) >> 15) & 3)
154 #define LCCR5_SOFM(ch) (1 << (ch - 1))
155 #define LCCR5_EOFM(ch) (1 << (ch + 7))
156 #define LCCR5_BSM(ch) (1 << (ch + 15))
157 #define LCCR5_IUM(ch) (1 << (ch + 23))
158 #define OVLC1_EN (1 << 31)
159 #define CCR_CEN (1 << 31)
160 #define FBR_BRA (1 << 0)
161 #define FBR_BINT (1 << 1)
162 #define FBR_SRCADDR (0xfffffff << 4)
163 #define LCSR0_LDD (1 << 0)
164 #define LCSR0_SOF0 (1 << 1)
165 #define LCSR0_BER (1 << 2)
166 #define LCSR0_ABC (1 << 3)
167 #define LCSR0_IU0 (1 << 4)
168 #define LCSR0_IU1 (1 << 5)
169 #define LCSR0_OU (1 << 6)
170 #define LCSR0_QD (1 << 7)
171 #define LCSR0_EOF0 (1 << 8)
172 #define LCSR0_BS0 (1 << 9)
173 #define LCSR0_SINT (1 << 10)
174 #define LCSR0_RDST (1 << 11)
175 #define LCSR0_CMDINT (1 << 12)
176 #define LCSR0_BERCH(x) (((x) & 7) << 28)
177 #define LCSR1_SOF(ch) (1 << (ch - 1))
178 #define LCSR1_EOF(ch) (1 << (ch + 7))
179 #define LCSR1_BS(ch) (1 << (ch + 15))
180 #define LCSR1_IU(ch) (1 << (ch + 23))
181 #define LDCMD_LENGTH(x) ((x) & 0x001ffffc)
182 #define LDCMD_EOFINT (1 << 21)
183 #define LDCMD_SOFINT (1 << 22)
184 #define LDCMD_PAL (1 << 26)
186 /* Route internal interrupt lines to the global IC */
187 static void pxa2xx_lcdc_int_update(PXA2xxLCDState
*s
)
190 level
|= (s
->status
[0] & LCSR0_LDD
) && !(s
->control
[0] & LCCR0_LDM
);
191 level
|= (s
->status
[0] & LCSR0_SOF0
) && !(s
->control
[0] & LCCR0_SOFM0
);
192 level
|= (s
->status
[0] & LCSR0_IU0
) && !(s
->control
[0] & LCCR0_IUM
);
193 level
|= (s
->status
[0] & LCSR0_IU1
) && !(s
->control
[5] & LCCR5_IUM(1));
194 level
|= (s
->status
[0] & LCSR0_OU
) && !(s
->control
[0] & LCCR0_OUM
);
195 level
|= (s
->status
[0] & LCSR0_QD
) && !(s
->control
[0] & LCCR0_QDM
);
196 level
|= (s
->status
[0] & LCSR0_EOF0
) && !(s
->control
[0] & LCCR0_EOFM0
);
197 level
|= (s
->status
[0] & LCSR0_BS0
) && !(s
->control
[0] & LCCR0_BSM0
);
198 level
|= (s
->status
[0] & LCSR0_RDST
) && !(s
->control
[0] & LCCR0_RDSTM
);
199 level
|= (s
->status
[0] & LCSR0_CMDINT
) && !(s
->control
[0] & LCCR0_CMDIM
);
200 level
|= (s
->status
[1] & ~s
->control
[5]);
202 qemu_set_irq(s
->irq
, !!level
);
206 /* Set Branch Status interrupt high and poke associated registers */
207 static inline void pxa2xx_dma_bs_set(PXA2xxLCDState
*s
, int ch
)
211 s
->status
[0] |= LCSR0_BS0
;
212 unmasked
= !(s
->control
[0] & LCCR0_BSM0
);
214 s
->status
[1] |= LCSR1_BS(ch
);
215 unmasked
= !(s
->control
[5] & LCCR5_BSM(ch
));
220 s
->status
[0] |= LCSR0_SINT
;
222 s
->liidr
= s
->dma_ch
[ch
].id
;
226 /* Set Start Of Frame Status interrupt high and poke associated registers */
227 static inline void pxa2xx_dma_sof_set(PXA2xxLCDState
*s
, int ch
)
230 if (!(s
->dma_ch
[ch
].command
& LDCMD_SOFINT
))
234 s
->status
[0] |= LCSR0_SOF0
;
235 unmasked
= !(s
->control
[0] & LCCR0_SOFM0
);
237 s
->status
[1] |= LCSR1_SOF(ch
);
238 unmasked
= !(s
->control
[5] & LCCR5_SOFM(ch
));
243 s
->status
[0] |= LCSR0_SINT
;
245 s
->liidr
= s
->dma_ch
[ch
].id
;
249 /* Set End Of Frame Status interrupt high and poke associated registers */
250 static inline void pxa2xx_dma_eof_set(PXA2xxLCDState
*s
, int ch
)
253 if (!(s
->dma_ch
[ch
].command
& LDCMD_EOFINT
))
257 s
->status
[0] |= LCSR0_EOF0
;
258 unmasked
= !(s
->control
[0] & LCCR0_EOFM0
);
260 s
->status
[1] |= LCSR1_EOF(ch
);
261 unmasked
= !(s
->control
[5] & LCCR5_EOFM(ch
));
266 s
->status
[0] |= LCSR0_SINT
;
268 s
->liidr
= s
->dma_ch
[ch
].id
;
272 /* Set Bus Error Status interrupt high and poke associated registers */
273 static inline void pxa2xx_dma_ber_set(PXA2xxLCDState
*s
, int ch
)
275 s
->status
[0] |= LCSR0_BERCH(ch
) | LCSR0_BER
;
277 s
->status
[0] |= LCSR0_SINT
;
279 s
->liidr
= s
->dma_ch
[ch
].id
;
282 /* Set Read Status interrupt high and poke associated registers */
283 static inline void pxa2xx_dma_rdst_set(PXA2xxLCDState
*s
)
285 s
->status
[0] |= LCSR0_RDST
;
286 if (s
->irqlevel
&& !(s
->control
[0] & LCCR0_RDSTM
))
287 s
->status
[0] |= LCSR0_SINT
;
290 /* Load new Frame Descriptors from DMA */
291 static void pxa2xx_descriptor_load(PXA2xxLCDState
*s
)
293 PXAFrameDescriptor desc
;
297 for (i
= 0; i
< PXA_LCDDMA_CHANS
; i
++) {
298 s
->dma_ch
[i
].source
= 0;
300 if (!s
->dma_ch
[i
].up
)
303 if (s
->dma_ch
[i
].branch
& FBR_BRA
) {
304 descptr
= s
->dma_ch
[i
].branch
& FBR_SRCADDR
;
305 if (s
->dma_ch
[i
].branch
& FBR_BINT
)
306 pxa2xx_dma_bs_set(s
, i
);
307 s
->dma_ch
[i
].branch
&= ~FBR_BRA
;
309 descptr
= s
->dma_ch
[i
].descriptor
;
311 if (!((descptr
>= PXA2XX_SDRAM_BASE
&& descptr
+
312 sizeof(desc
) <= PXA2XX_SDRAM_BASE
+ ram_size
) ||
313 (descptr
>= PXA2XX_INTERNAL_BASE
&& descptr
+ sizeof(desc
) <=
314 PXA2XX_INTERNAL_BASE
+ PXA2XX_INTERNAL_SIZE
))) {
318 cpu_physical_memory_read(descptr
, &desc
, sizeof(desc
));
319 s
->dma_ch
[i
].descriptor
= tswap32(desc
.fdaddr
);
320 s
->dma_ch
[i
].source
= tswap32(desc
.fsaddr
);
321 s
->dma_ch
[i
].id
= tswap32(desc
.fidr
);
322 s
->dma_ch
[i
].command
= tswap32(desc
.ldcmd
);
326 static uint64_t pxa2xx_lcdc_read(void *opaque
, hwaddr offset
,
329 PXA2xxLCDState
*s
= (PXA2xxLCDState
*) opaque
;
334 return s
->control
[0];
336 return s
->control
[1];
338 return s
->control
[2];
340 return s
->control
[3];
342 return s
->control
[4];
344 return s
->control
[5];
366 case 0x200 ... 0x1000: /* DMA per-channel registers */
367 ch
= (offset
- 0x200) >> 4;
368 if (!(ch
>= 0 && ch
< PXA_LCDDMA_CHANS
))
371 switch (offset
& 0xf) {
373 return s
->dma_ch
[ch
].descriptor
;
375 return s
->dma_ch
[ch
].source
;
377 return s
->dma_ch
[ch
].id
;
379 return s
->dma_ch
[ch
].command
;
385 return s
->dma_ch
[0].branch
;
387 return s
->dma_ch
[1].branch
;
389 return s
->dma_ch
[2].branch
;
391 return s
->dma_ch
[3].branch
;
393 return s
->dma_ch
[4].branch
;
395 return s
->dma_ch
[5].branch
;
397 return s
->dma_ch
[6].branch
;
414 hw_error("%s: Bad offset " REG_FMT
"\n", __FUNCTION__
, offset
);
420 static void pxa2xx_lcdc_write(void *opaque
, hwaddr offset
,
421 uint64_t value
, unsigned size
)
423 PXA2xxLCDState
*s
= (PXA2xxLCDState
*) opaque
;
428 /* ACK Quick Disable done */
429 if ((s
->control
[0] & LCCR0_ENB
) && !(value
& LCCR0_ENB
))
430 s
->status
[0] |= LCSR0_QD
;
432 if (!(s
->control
[0] & LCCR0_LCDT
) && (value
& LCCR0_LCDT
))
433 printf("%s: internal frame buffer unsupported\n", __FUNCTION__
);
435 if ((s
->control
[3] & LCCR3_API
) &&
436 (value
& LCCR0_ENB
) && !(value
& LCCR0_LCDT
))
437 s
->status
[0] |= LCSR0_ABC
;
439 s
->control
[0] = value
& 0x07ffffff;
440 pxa2xx_lcdc_int_update(s
);
442 s
->dma_ch
[0].up
= !!(value
& LCCR0_ENB
);
443 s
->dma_ch
[1].up
= (s
->ovl1c
[0] & OVLC1_EN
) || (value
& LCCR0_SDS
);
447 s
->control
[1] = value
;
451 s
->control
[2] = value
;
455 s
->control
[3] = value
& 0xefffffff;
456 s
->bpp
= LCCR3_BPP(value
);
460 s
->control
[4] = value
& 0x83ff81ff;
464 s
->control
[5] = value
& 0x3f3f3f3f;
468 if (!(s
->ovl1c
[0] & OVLC1_EN
) && (value
& OVLC1_EN
))
469 printf("%s: Overlay 1 not supported\n", __FUNCTION__
);
471 s
->ovl1c
[0] = value
& 0x80ffffff;
472 s
->dma_ch
[1].up
= (value
& OVLC1_EN
) || (s
->control
[0] & LCCR0_SDS
);
476 s
->ovl1c
[1] = value
& 0x000fffff;
480 if (!(s
->ovl2c
[0] & OVLC1_EN
) && (value
& OVLC1_EN
))
481 printf("%s: Overlay 2 not supported\n", __FUNCTION__
);
483 s
->ovl2c
[0] = value
& 0x80ffffff;
484 s
->dma_ch
[2].up
= !!(value
& OVLC1_EN
);
485 s
->dma_ch
[3].up
= !!(value
& OVLC1_EN
);
486 s
->dma_ch
[4].up
= !!(value
& OVLC1_EN
);
490 s
->ovl2c
[1] = value
& 0x007fffff;
494 if (!(s
->ccr
& CCR_CEN
) && (value
& CCR_CEN
))
495 printf("%s: Hardware cursor unimplemented\n", __FUNCTION__
);
497 s
->ccr
= value
& 0x81ffffe7;
498 s
->dma_ch
[5].up
= !!(value
& CCR_CEN
);
502 s
->cmdcr
= value
& 0xff;
506 s
->trgbr
= value
& 0x00ffffff;
510 s
->tcr
= value
& 0x7fff;
513 case 0x200 ... 0x1000: /* DMA per-channel registers */
514 ch
= (offset
- 0x200) >> 4;
515 if (!(ch
>= 0 && ch
< PXA_LCDDMA_CHANS
))
518 switch (offset
& 0xf) {
520 s
->dma_ch
[ch
].descriptor
= value
& 0xfffffff0;
529 s
->dma_ch
[0].branch
= value
& 0xfffffff3;
532 s
->dma_ch
[1].branch
= value
& 0xfffffff3;
535 s
->dma_ch
[2].branch
= value
& 0xfffffff3;
538 s
->dma_ch
[3].branch
= value
& 0xfffffff3;
541 s
->dma_ch
[4].branch
= value
& 0xfffffff3;
544 s
->dma_ch
[5].branch
= value
& 0xfffffff3;
547 s
->dma_ch
[6].branch
= value
& 0xfffffff3;
551 s
->bscntr
= value
& 0xf;
558 s
->status
[0] &= ~(value
& 0xfff);
559 if (value
& LCSR0_BER
)
560 s
->status
[0] &= ~LCSR0_BERCH(7);
564 s
->status
[1] &= ~(value
& 0x3e3f3f);
569 hw_error("%s: Bad offset " REG_FMT
"\n", __FUNCTION__
, offset
);
573 static const MemoryRegionOps pxa2xx_lcdc_ops
= {
574 .read
= pxa2xx_lcdc_read
,
575 .write
= pxa2xx_lcdc_write
,
576 .endianness
= DEVICE_NATIVE_ENDIAN
,
579 /* Load new palette for a given DMA channel, convert to internal format */
580 static void pxa2xx_palette_parse(PXA2xxLCDState
*s
, int ch
, int bpp
)
582 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
583 int i
, n
, format
, r
, g
, b
, alpha
;
586 s
->pal_for
= LCCR4_PALFOR(s
->control
[4]);
604 src
= (uint8_t *) s
->dma_ch
[ch
].pbuffer
;
605 dest
= (uint32_t *) s
->dma_ch
[ch
].palette
;
606 alpha
= r
= g
= b
= 0;
608 for (i
= 0; i
< n
; i
++) {
610 case 0: /* 16 bpp, no transparency */
612 if (s
->control
[0] & LCCR0_CMS
) {
613 r
= g
= b
= *(uint16_t *) src
& 0xff;
616 r
= (*(uint16_t *) src
& 0xf800) >> 8;
617 g
= (*(uint16_t *) src
& 0x07e0) >> 3;
618 b
= (*(uint16_t *) src
& 0x001f) << 3;
622 case 1: /* 16 bpp plus transparency */
623 alpha
= *(uint32_t *) src
& (1 << 24);
624 if (s
->control
[0] & LCCR0_CMS
)
625 r
= g
= b
= *(uint32_t *) src
& 0xff;
627 r
= (*(uint32_t *) src
& 0xf80000) >> 16;
628 g
= (*(uint32_t *) src
& 0x00fc00) >> 8;
629 b
= (*(uint32_t *) src
& 0x0000f8);
633 case 2: /* 18 bpp plus transparency */
634 alpha
= *(uint32_t *) src
& (1 << 24);
635 if (s
->control
[0] & LCCR0_CMS
)
636 r
= g
= b
= *(uint32_t *) src
& 0xff;
638 r
= (*(uint32_t *) src
& 0xfc0000) >> 16;
639 g
= (*(uint32_t *) src
& 0x00fc00) >> 8;
640 b
= (*(uint32_t *) src
& 0x0000fc);
644 case 3: /* 24 bpp plus transparency */
645 alpha
= *(uint32_t *) src
& (1 << 24);
646 if (s
->control
[0] & LCCR0_CMS
)
647 r
= g
= b
= *(uint32_t *) src
& 0xff;
649 r
= (*(uint32_t *) src
& 0xff0000) >> 16;
650 g
= (*(uint32_t *) src
& 0x00ff00) >> 8;
651 b
= (*(uint32_t *) src
& 0x0000ff);
656 switch (surface_bits_per_pixel(surface
)) {
658 *dest
= rgb_to_pixel8(r
, g
, b
) | alpha
;
661 *dest
= rgb_to_pixel15(r
, g
, b
) | alpha
;
664 *dest
= rgb_to_pixel16(r
, g
, b
) | alpha
;
667 *dest
= rgb_to_pixel24(r
, g
, b
) | alpha
;
670 *dest
= rgb_to_pixel32(r
, g
, b
) | alpha
;
677 static void pxa2xx_lcdc_dma0_redraw_rot0(PXA2xxLCDState
*s
,
678 hwaddr addr
, int *miny
, int *maxy
)
680 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
681 int src_width
, dest_width
;
684 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
688 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
689 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
)
691 else if (s
->bpp
> pxa_lcdc_16bpp
)
693 else if (s
->bpp
> pxa_lcdc_8bpp
)
696 dest_width
= s
->xres
* s
->dest_width
;
698 framebuffer_update_display(surface
, s
->sysmem
,
699 addr
, s
->xres
, s
->yres
,
700 src_width
, dest_width
, s
->dest_width
,
702 fn
, s
->dma_ch
[0].palette
, miny
, maxy
);
705 static void pxa2xx_lcdc_dma0_redraw_rot90(PXA2xxLCDState
*s
,
706 hwaddr addr
, int *miny
, int *maxy
)
708 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
709 int src_width
, dest_width
;
712 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
716 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
717 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
)
719 else if (s
->bpp
> pxa_lcdc_16bpp
)
721 else if (s
->bpp
> pxa_lcdc_8bpp
)
724 dest_width
= s
->yres
* s
->dest_width
;
726 framebuffer_update_display(surface
, s
->sysmem
,
727 addr
, s
->xres
, s
->yres
,
728 src_width
, s
->dest_width
, -dest_width
,
730 fn
, s
->dma_ch
[0].palette
,
734 static void pxa2xx_lcdc_dma0_redraw_rot180(PXA2xxLCDState
*s
,
735 hwaddr addr
, int *miny
, int *maxy
)
737 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
738 int src_width
, dest_width
;
741 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
747 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
748 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
) {
750 } else if (s
->bpp
> pxa_lcdc_16bpp
) {
752 } else if (s
->bpp
> pxa_lcdc_8bpp
) {
756 dest_width
= s
->xres
* s
->dest_width
;
758 framebuffer_update_display(surface
, s
->sysmem
,
759 addr
, s
->xres
, s
->yres
,
760 src_width
, -dest_width
, -s
->dest_width
,
762 fn
, s
->dma_ch
[0].palette
, miny
, maxy
);
765 static void pxa2xx_lcdc_dma0_redraw_rot270(PXA2xxLCDState
*s
,
766 hwaddr addr
, int *miny
, int *maxy
)
768 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
769 int src_width
, dest_width
;
772 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
778 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
779 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
) {
781 } else if (s
->bpp
> pxa_lcdc_16bpp
) {
783 } else if (s
->bpp
> pxa_lcdc_8bpp
) {
787 dest_width
= s
->yres
* s
->dest_width
;
789 framebuffer_update_display(surface
, s
->sysmem
,
790 addr
, s
->xres
, s
->yres
,
791 src_width
, -s
->dest_width
, dest_width
,
793 fn
, s
->dma_ch
[0].palette
,
797 static void pxa2xx_lcdc_resize(PXA2xxLCDState
*s
)
800 if (!(s
->control
[0] & LCCR0_ENB
))
803 width
= LCCR1_PPL(s
->control
[1]) + 1;
804 height
= LCCR2_LPP(s
->control
[2]) + 1;
806 if (width
!= s
->xres
|| height
!= s
->yres
) {
807 if (s
->orientation
== 90 || s
->orientation
== 270) {
808 qemu_console_resize(s
->con
, height
, width
);
810 qemu_console_resize(s
->con
, width
, height
);
818 static void pxa2xx_update_display(void *opaque
)
820 PXA2xxLCDState
*s
= (PXA2xxLCDState
*) opaque
;
824 if (!(s
->control
[0] & LCCR0_ENB
))
827 pxa2xx_descriptor_load(s
);
829 pxa2xx_lcdc_resize(s
);
832 s
->transp
= s
->dma_ch
[2].up
|| s
->dma_ch
[3].up
;
833 /* Note: With overlay planes the order depends on LCCR0 bit 25. */
834 for (ch
= 0; ch
< PXA_LCDDMA_CHANS
; ch
++)
835 if (s
->dma_ch
[ch
].up
) {
836 if (!s
->dma_ch
[ch
].source
) {
837 pxa2xx_dma_ber_set(s
, ch
);
840 fbptr
= s
->dma_ch
[ch
].source
;
841 if (!((fbptr
>= PXA2XX_SDRAM_BASE
&&
842 fbptr
<= PXA2XX_SDRAM_BASE
+ ram_size
) ||
843 (fbptr
>= PXA2XX_INTERNAL_BASE
&&
844 fbptr
<= PXA2XX_INTERNAL_BASE
+ PXA2XX_INTERNAL_SIZE
))) {
845 pxa2xx_dma_ber_set(s
, ch
);
849 if (s
->dma_ch
[ch
].command
& LDCMD_PAL
) {
850 cpu_physical_memory_read(fbptr
, s
->dma_ch
[ch
].pbuffer
,
851 MAX(LDCMD_LENGTH(s
->dma_ch
[ch
].command
),
852 sizeof(s
->dma_ch
[ch
].pbuffer
)));
853 pxa2xx_palette_parse(s
, ch
, s
->bpp
);
855 /* Do we need to reparse palette */
856 if (LCCR4_PALFOR(s
->control
[4]) != s
->pal_for
)
857 pxa2xx_palette_parse(s
, ch
, s
->bpp
);
859 /* ACK frame start */
860 pxa2xx_dma_sof_set(s
, ch
);
862 s
->dma_ch
[ch
].redraw(s
, fbptr
, &miny
, &maxy
);
865 /* ACK frame completed */
866 pxa2xx_dma_eof_set(s
, ch
);
870 if (s
->control
[0] & LCCR0_DIS
) {
871 /* ACK last frame completed */
872 s
->control
[0] &= ~LCCR0_ENB
;
873 s
->status
[0] |= LCSR0_LDD
;
877 switch (s
->orientation
) {
879 dpy_gfx_update(s
->con
, 0, miny
, s
->xres
, maxy
- miny
+ 1);
882 dpy_gfx_update(s
->con
, miny
, 0, maxy
- miny
+ 1, s
->xres
);
885 maxy
= s
->yres
- maxy
- 1;
886 miny
= s
->yres
- miny
- 1;
887 dpy_gfx_update(s
->con
, 0, maxy
, s
->xres
, miny
- maxy
+ 1);
890 maxy
= s
->yres
- maxy
- 1;
891 miny
= s
->yres
- miny
- 1;
892 dpy_gfx_update(s
->con
, maxy
, 0, miny
- maxy
+ 1, s
->xres
);
896 pxa2xx_lcdc_int_update(s
);
898 qemu_irq_raise(s
->vsync_cb
);
901 static void pxa2xx_invalidate_display(void *opaque
)
903 PXA2xxLCDState
*s
= (PXA2xxLCDState
*) opaque
;
907 static void pxa2xx_lcdc_orientation(void *opaque
, int angle
)
909 PXA2xxLCDState
*s
= (PXA2xxLCDState
*) opaque
;
913 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_rot0
;
916 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_rot90
;
919 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_rot180
;
922 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_rot270
;
926 s
->orientation
= angle
;
927 s
->xres
= s
->yres
= -1;
928 pxa2xx_lcdc_resize(s
);
931 static const VMStateDescription vmstate_dma_channel
= {
932 .name
= "dma_channel",
934 .minimum_version_id
= 0,
935 .fields
= (VMStateField
[]) {
936 VMSTATE_UINT32(branch
, struct DMAChannel
),
937 VMSTATE_UINT8(up
, struct DMAChannel
),
938 VMSTATE_BUFFER(pbuffer
, struct DMAChannel
),
939 VMSTATE_UINT32(descriptor
, struct DMAChannel
),
940 VMSTATE_UINT32(source
, struct DMAChannel
),
941 VMSTATE_UINT32(id
, struct DMAChannel
),
942 VMSTATE_UINT32(command
, struct DMAChannel
),
943 VMSTATE_END_OF_LIST()
947 static int pxa2xx_lcdc_post_load(void *opaque
, int version_id
)
949 PXA2xxLCDState
*s
= opaque
;
951 s
->bpp
= LCCR3_BPP(s
->control
[3]);
952 s
->xres
= s
->yres
= s
->pal_for
= -1;
957 static const VMStateDescription vmstate_pxa2xx_lcdc
= {
958 .name
= "pxa2xx_lcdc",
960 .minimum_version_id
= 0,
961 .post_load
= pxa2xx_lcdc_post_load
,
962 .fields
= (VMStateField
[]) {
963 VMSTATE_INT32(irqlevel
, PXA2xxLCDState
),
964 VMSTATE_INT32(transp
, PXA2xxLCDState
),
965 VMSTATE_UINT32_ARRAY(control
, PXA2xxLCDState
, 6),
966 VMSTATE_UINT32_ARRAY(status
, PXA2xxLCDState
, 2),
967 VMSTATE_UINT32_ARRAY(ovl1c
, PXA2xxLCDState
, 2),
968 VMSTATE_UINT32_ARRAY(ovl2c
, PXA2xxLCDState
, 2),
969 VMSTATE_UINT32(ccr
, PXA2xxLCDState
),
970 VMSTATE_UINT32(cmdcr
, PXA2xxLCDState
),
971 VMSTATE_UINT32(trgbr
, PXA2xxLCDState
),
972 VMSTATE_UINT32(tcr
, PXA2xxLCDState
),
973 VMSTATE_UINT32(liidr
, PXA2xxLCDState
),
974 VMSTATE_UINT8(bscntr
, PXA2xxLCDState
),
975 VMSTATE_STRUCT_ARRAY(dma_ch
, PXA2xxLCDState
, 7, 0,
976 vmstate_dma_channel
, struct DMAChannel
),
977 VMSTATE_END_OF_LIST()
982 #include "pxa2xx_template.h"
984 #include "pxa2xx_template.h"
986 #include "pxa2xx_template.h"
988 #include "pxa2xx_template.h"
990 #include "pxa2xx_template.h"
992 static const GraphicHwOps pxa2xx_ops
= {
993 .invalidate
= pxa2xx_invalidate_display
,
994 .gfx_update
= pxa2xx_update_display
,
997 PXA2xxLCDState
*pxa2xx_lcdc_init(MemoryRegion
*sysmem
,
998 hwaddr base
, qemu_irq irq
)
1001 DisplaySurface
*surface
;
1003 s
= (PXA2xxLCDState
*) g_malloc0(sizeof(PXA2xxLCDState
));
1008 pxa2xx_lcdc_orientation(s
, graphic_rotate
);
1010 memory_region_init_io(&s
->iomem
, NULL
, &pxa2xx_lcdc_ops
, s
,
1011 "pxa2xx-lcd-controller", 0x00100000);
1012 memory_region_add_subregion(sysmem
, base
, &s
->iomem
);
1014 s
->con
= graphic_console_init(NULL
, 0, &pxa2xx_ops
, s
);
1015 surface
= qemu_console_surface(s
->con
);
1017 switch (surface_bits_per_pixel(surface
)) {
1022 s
->line_fn
[0] = pxa2xx_draw_fn_8
;
1023 s
->line_fn
[1] = pxa2xx_draw_fn_8t
;
1027 s
->line_fn
[0] = pxa2xx_draw_fn_15
;
1028 s
->line_fn
[1] = pxa2xx_draw_fn_15t
;
1032 s
->line_fn
[0] = pxa2xx_draw_fn_16
;
1033 s
->line_fn
[1] = pxa2xx_draw_fn_16t
;
1037 s
->line_fn
[0] = pxa2xx_draw_fn_24
;
1038 s
->line_fn
[1] = pxa2xx_draw_fn_24t
;
1042 s
->line_fn
[0] = pxa2xx_draw_fn_32
;
1043 s
->line_fn
[1] = pxa2xx_draw_fn_32t
;
1047 fprintf(stderr
, "%s: Bad color depth\n", __FUNCTION__
);
1051 vmstate_register(NULL
, 0, &vmstate_pxa2xx_lcdc
, s
);
1056 void pxa2xx_lcd_vsync_notifier(PXA2xxLCDState
*s
, qemu_irq handler
)
1058 s
->vsync_cb
= handler
;