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
{
38 MemoryRegionSection fbsection
;
73 struct DMAChannel dma_ch
[7];
79 typedef struct QEMU_PACKED
{
86 #define LCCR0 0x000 /* LCD Controller Control register 0 */
87 #define LCCR1 0x004 /* LCD Controller Control register 1 */
88 #define LCCR2 0x008 /* LCD Controller Control register 2 */
89 #define LCCR3 0x00c /* LCD Controller Control register 3 */
90 #define LCCR4 0x010 /* LCD Controller Control register 4 */
91 #define LCCR5 0x014 /* LCD Controller Control register 5 */
93 #define FBR0 0x020 /* DMA Channel 0 Frame Branch register */
94 #define FBR1 0x024 /* DMA Channel 1 Frame Branch register */
95 #define FBR2 0x028 /* DMA Channel 2 Frame Branch register */
96 #define FBR3 0x02c /* DMA Channel 3 Frame Branch register */
97 #define FBR4 0x030 /* DMA Channel 4 Frame Branch register */
98 #define FBR5 0x110 /* DMA Channel 5 Frame Branch register */
99 #define FBR6 0x114 /* DMA Channel 6 Frame Branch register */
101 #define LCSR1 0x034 /* LCD Controller Status register 1 */
102 #define LCSR0 0x038 /* LCD Controller Status register 0 */
103 #define LIIDR 0x03c /* LCD Controller Interrupt ID register */
105 #define TRGBR 0x040 /* TMED RGB Seed register */
106 #define TCR 0x044 /* TMED Control register */
108 #define OVL1C1 0x050 /* Overlay 1 Control register 1 */
109 #define OVL1C2 0x060 /* Overlay 1 Control register 2 */
110 #define OVL2C1 0x070 /* Overlay 2 Control register 1 */
111 #define OVL2C2 0x080 /* Overlay 2 Control register 2 */
112 #define CCR 0x090 /* Cursor Control register */
114 #define CMDCR 0x100 /* Command Control register */
115 #define PRSR 0x104 /* Panel Read Status register */
117 #define PXA_LCDDMA_CHANS 7
118 #define DMA_FDADR 0x00 /* Frame Descriptor Address register */
119 #define DMA_FSADR 0x04 /* Frame Source Address register */
120 #define DMA_FIDR 0x08 /* Frame ID register */
121 #define DMA_LDCMD 0x0c /* Command register */
123 /* LCD Buffer Strength Control register */
124 #define BSCNTR 0x04000054
127 #define LCCR0_ENB (1 << 0)
128 #define LCCR0_CMS (1 << 1)
129 #define LCCR0_SDS (1 << 2)
130 #define LCCR0_LDM (1 << 3)
131 #define LCCR0_SOFM0 (1 << 4)
132 #define LCCR0_IUM (1 << 5)
133 #define LCCR0_EOFM0 (1 << 6)
134 #define LCCR0_PAS (1 << 7)
135 #define LCCR0_DPD (1 << 9)
136 #define LCCR0_DIS (1 << 10)
137 #define LCCR0_QDM (1 << 11)
138 #define LCCR0_PDD (0xff << 12)
139 #define LCCR0_BSM0 (1 << 20)
140 #define LCCR0_OUM (1 << 21)
141 #define LCCR0_LCDT (1 << 22)
142 #define LCCR0_RDSTM (1 << 23)
143 #define LCCR0_CMDIM (1 << 24)
144 #define LCCR0_OUC (1 << 25)
145 #define LCCR0_LDDALT (1 << 26)
146 #define LCCR1_PPL(x) ((x) & 0x3ff)
147 #define LCCR2_LPP(x) ((x) & 0x3ff)
148 #define LCCR3_API (15 << 16)
149 #define LCCR3_BPP(x) ((((x) >> 24) & 7) | (((x) >> 26) & 8))
150 #define LCCR3_PDFOR(x) (((x) >> 30) & 3)
151 #define LCCR4_K1(x) (((x) >> 0) & 7)
152 #define LCCR4_K2(x) (((x) >> 3) & 7)
153 #define LCCR4_K3(x) (((x) >> 6) & 7)
154 #define LCCR4_PALFOR(x) (((x) >> 15) & 3)
155 #define LCCR5_SOFM(ch) (1 << (ch - 1))
156 #define LCCR5_EOFM(ch) (1 << (ch + 7))
157 #define LCCR5_BSM(ch) (1 << (ch + 15))
158 #define LCCR5_IUM(ch) (1 << (ch + 23))
159 #define OVLC1_EN (1 << 31)
160 #define CCR_CEN (1 << 31)
161 #define FBR_BRA (1 << 0)
162 #define FBR_BINT (1 << 1)
163 #define FBR_SRCADDR (0xfffffff << 4)
164 #define LCSR0_LDD (1 << 0)
165 #define LCSR0_SOF0 (1 << 1)
166 #define LCSR0_BER (1 << 2)
167 #define LCSR0_ABC (1 << 3)
168 #define LCSR0_IU0 (1 << 4)
169 #define LCSR0_IU1 (1 << 5)
170 #define LCSR0_OU (1 << 6)
171 #define LCSR0_QD (1 << 7)
172 #define LCSR0_EOF0 (1 << 8)
173 #define LCSR0_BS0 (1 << 9)
174 #define LCSR0_SINT (1 << 10)
175 #define LCSR0_RDST (1 << 11)
176 #define LCSR0_CMDINT (1 << 12)
177 #define LCSR0_BERCH(x) (((x) & 7) << 28)
178 #define LCSR1_SOF(ch) (1 << (ch - 1))
179 #define LCSR1_EOF(ch) (1 << (ch + 7))
180 #define LCSR1_BS(ch) (1 << (ch + 15))
181 #define LCSR1_IU(ch) (1 << (ch + 23))
182 #define LDCMD_LENGTH(x) ((x) & 0x001ffffc)
183 #define LDCMD_EOFINT (1 << 21)
184 #define LDCMD_SOFINT (1 << 22)
185 #define LDCMD_PAL (1 << 26)
187 /* Route internal interrupt lines to the global IC */
188 static void pxa2xx_lcdc_int_update(PXA2xxLCDState
*s
)
191 level
|= (s
->status
[0] & LCSR0_LDD
) && !(s
->control
[0] & LCCR0_LDM
);
192 level
|= (s
->status
[0] & LCSR0_SOF0
) && !(s
->control
[0] & LCCR0_SOFM0
);
193 level
|= (s
->status
[0] & LCSR0_IU0
) && !(s
->control
[0] & LCCR0_IUM
);
194 level
|= (s
->status
[0] & LCSR0_IU1
) && !(s
->control
[5] & LCCR5_IUM(1));
195 level
|= (s
->status
[0] & LCSR0_OU
) && !(s
->control
[0] & LCCR0_OUM
);
196 level
|= (s
->status
[0] & LCSR0_QD
) && !(s
->control
[0] & LCCR0_QDM
);
197 level
|= (s
->status
[0] & LCSR0_EOF0
) && !(s
->control
[0] & LCCR0_EOFM0
);
198 level
|= (s
->status
[0] & LCSR0_BS0
) && !(s
->control
[0] & LCCR0_BSM0
);
199 level
|= (s
->status
[0] & LCSR0_RDST
) && !(s
->control
[0] & LCCR0_RDSTM
);
200 level
|= (s
->status
[0] & LCSR0_CMDINT
) && !(s
->control
[0] & LCCR0_CMDIM
);
201 level
|= (s
->status
[1] & ~s
->control
[5]);
203 qemu_set_irq(s
->irq
, !!level
);
207 /* Set Branch Status interrupt high and poke associated registers */
208 static inline void pxa2xx_dma_bs_set(PXA2xxLCDState
*s
, int ch
)
212 s
->status
[0] |= LCSR0_BS0
;
213 unmasked
= !(s
->control
[0] & LCCR0_BSM0
);
215 s
->status
[1] |= LCSR1_BS(ch
);
216 unmasked
= !(s
->control
[5] & LCCR5_BSM(ch
));
221 s
->status
[0] |= LCSR0_SINT
;
223 s
->liidr
= s
->dma_ch
[ch
].id
;
227 /* Set Start Of Frame Status interrupt high and poke associated registers */
228 static inline void pxa2xx_dma_sof_set(PXA2xxLCDState
*s
, int ch
)
231 if (!(s
->dma_ch
[ch
].command
& LDCMD_SOFINT
))
235 s
->status
[0] |= LCSR0_SOF0
;
236 unmasked
= !(s
->control
[0] & LCCR0_SOFM0
);
238 s
->status
[1] |= LCSR1_SOF(ch
);
239 unmasked
= !(s
->control
[5] & LCCR5_SOFM(ch
));
244 s
->status
[0] |= LCSR0_SINT
;
246 s
->liidr
= s
->dma_ch
[ch
].id
;
250 /* Set End Of Frame Status interrupt high and poke associated registers */
251 static inline void pxa2xx_dma_eof_set(PXA2xxLCDState
*s
, int ch
)
254 if (!(s
->dma_ch
[ch
].command
& LDCMD_EOFINT
))
258 s
->status
[0] |= LCSR0_EOF0
;
259 unmasked
= !(s
->control
[0] & LCCR0_EOFM0
);
261 s
->status
[1] |= LCSR1_EOF(ch
);
262 unmasked
= !(s
->control
[5] & LCCR5_EOFM(ch
));
267 s
->status
[0] |= LCSR0_SINT
;
269 s
->liidr
= s
->dma_ch
[ch
].id
;
273 /* Set Bus Error Status interrupt high and poke associated registers */
274 static inline void pxa2xx_dma_ber_set(PXA2xxLCDState
*s
, int ch
)
276 s
->status
[0] |= LCSR0_BERCH(ch
) | LCSR0_BER
;
278 s
->status
[0] |= LCSR0_SINT
;
280 s
->liidr
= s
->dma_ch
[ch
].id
;
283 /* Load new Frame Descriptors from DMA */
284 static void pxa2xx_descriptor_load(PXA2xxLCDState
*s
)
286 PXAFrameDescriptor desc
;
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
) ||
306 (descptr
>= PXA2XX_INTERNAL_BASE
&& descptr
+ sizeof(desc
) <=
307 PXA2XX_INTERNAL_BASE
+ PXA2XX_INTERNAL_SIZE
))) {
311 cpu_physical_memory_read(descptr
, &desc
, sizeof(desc
));
312 s
->dma_ch
[i
].descriptor
= tswap32(desc
.fdaddr
);
313 s
->dma_ch
[i
].source
= tswap32(desc
.fsaddr
);
314 s
->dma_ch
[i
].id
= tswap32(desc
.fidr
);
315 s
->dma_ch
[i
].command
= tswap32(desc
.ldcmd
);
319 static uint64_t pxa2xx_lcdc_read(void *opaque
, hwaddr offset
,
322 PXA2xxLCDState
*s
= (PXA2xxLCDState
*) opaque
;
327 return s
->control
[0];
329 return s
->control
[1];
331 return s
->control
[2];
333 return s
->control
[3];
335 return s
->control
[4];
337 return s
->control
[5];
359 case 0x200 ... 0x1000: /* DMA per-channel registers */
360 ch
= (offset
- 0x200) >> 4;
361 if (!(ch
>= 0 && ch
< PXA_LCDDMA_CHANS
))
364 switch (offset
& 0xf) {
366 return s
->dma_ch
[ch
].descriptor
;
368 return s
->dma_ch
[ch
].source
;
370 return s
->dma_ch
[ch
].id
;
372 return s
->dma_ch
[ch
].command
;
378 return s
->dma_ch
[0].branch
;
380 return s
->dma_ch
[1].branch
;
382 return s
->dma_ch
[2].branch
;
384 return s
->dma_ch
[3].branch
;
386 return s
->dma_ch
[4].branch
;
388 return s
->dma_ch
[5].branch
;
390 return s
->dma_ch
[6].branch
;
407 hw_error("%s: Bad offset " REG_FMT
"\n", __FUNCTION__
, offset
);
413 static void pxa2xx_lcdc_write(void *opaque
, hwaddr offset
,
414 uint64_t value
, unsigned size
)
416 PXA2xxLCDState
*s
= (PXA2xxLCDState
*) opaque
;
421 /* ACK Quick Disable done */
422 if ((s
->control
[0] & LCCR0_ENB
) && !(value
& LCCR0_ENB
))
423 s
->status
[0] |= LCSR0_QD
;
425 if (!(s
->control
[0] & LCCR0_LCDT
) && (value
& LCCR0_LCDT
))
426 printf("%s: internal frame buffer unsupported\n", __FUNCTION__
);
428 if ((s
->control
[3] & LCCR3_API
) &&
429 (value
& LCCR0_ENB
) && !(value
& LCCR0_LCDT
))
430 s
->status
[0] |= LCSR0_ABC
;
432 s
->control
[0] = value
& 0x07ffffff;
433 pxa2xx_lcdc_int_update(s
);
435 s
->dma_ch
[0].up
= !!(value
& LCCR0_ENB
);
436 s
->dma_ch
[1].up
= (s
->ovl1c
[0] & OVLC1_EN
) || (value
& LCCR0_SDS
);
440 s
->control
[1] = value
;
444 s
->control
[2] = value
;
448 s
->control
[3] = value
& 0xefffffff;
449 s
->bpp
= LCCR3_BPP(value
);
453 s
->control
[4] = value
& 0x83ff81ff;
457 s
->control
[5] = value
& 0x3f3f3f3f;
461 if (!(s
->ovl1c
[0] & OVLC1_EN
) && (value
& OVLC1_EN
))
462 printf("%s: Overlay 1 not supported\n", __FUNCTION__
);
464 s
->ovl1c
[0] = value
& 0x80ffffff;
465 s
->dma_ch
[1].up
= (value
& OVLC1_EN
) || (s
->control
[0] & LCCR0_SDS
);
469 s
->ovl1c
[1] = value
& 0x000fffff;
473 if (!(s
->ovl2c
[0] & OVLC1_EN
) && (value
& OVLC1_EN
))
474 printf("%s: Overlay 2 not supported\n", __FUNCTION__
);
476 s
->ovl2c
[0] = value
& 0x80ffffff;
477 s
->dma_ch
[2].up
= !!(value
& OVLC1_EN
);
478 s
->dma_ch
[3].up
= !!(value
& OVLC1_EN
);
479 s
->dma_ch
[4].up
= !!(value
& OVLC1_EN
);
483 s
->ovl2c
[1] = value
& 0x007fffff;
487 if (!(s
->ccr
& CCR_CEN
) && (value
& CCR_CEN
))
488 printf("%s: Hardware cursor unimplemented\n", __FUNCTION__
);
490 s
->ccr
= value
& 0x81ffffe7;
491 s
->dma_ch
[5].up
= !!(value
& CCR_CEN
);
495 s
->cmdcr
= value
& 0xff;
499 s
->trgbr
= value
& 0x00ffffff;
503 s
->tcr
= value
& 0x7fff;
506 case 0x200 ... 0x1000: /* DMA per-channel registers */
507 ch
= (offset
- 0x200) >> 4;
508 if (!(ch
>= 0 && ch
< PXA_LCDDMA_CHANS
))
511 switch (offset
& 0xf) {
513 s
->dma_ch
[ch
].descriptor
= value
& 0xfffffff0;
522 s
->dma_ch
[0].branch
= value
& 0xfffffff3;
525 s
->dma_ch
[1].branch
= value
& 0xfffffff3;
528 s
->dma_ch
[2].branch
= value
& 0xfffffff3;
531 s
->dma_ch
[3].branch
= value
& 0xfffffff3;
534 s
->dma_ch
[4].branch
= value
& 0xfffffff3;
537 s
->dma_ch
[5].branch
= value
& 0xfffffff3;
540 s
->dma_ch
[6].branch
= value
& 0xfffffff3;
544 s
->bscntr
= value
& 0xf;
551 s
->status
[0] &= ~(value
& 0xfff);
552 if (value
& LCSR0_BER
)
553 s
->status
[0] &= ~LCSR0_BERCH(7);
557 s
->status
[1] &= ~(value
& 0x3e3f3f);
562 hw_error("%s: Bad offset " REG_FMT
"\n", __FUNCTION__
, offset
);
566 static const MemoryRegionOps pxa2xx_lcdc_ops
= {
567 .read
= pxa2xx_lcdc_read
,
568 .write
= pxa2xx_lcdc_write
,
569 .endianness
= DEVICE_NATIVE_ENDIAN
,
572 /* Load new palette for a given DMA channel, convert to internal format */
573 static void pxa2xx_palette_parse(PXA2xxLCDState
*s
, int ch
, int bpp
)
575 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
576 int i
, n
, format
, r
, g
, b
, alpha
;
579 s
->pal_for
= LCCR4_PALFOR(s
->control
[4]);
597 src
= (uint8_t *) s
->dma_ch
[ch
].pbuffer
;
598 dest
= (uint32_t *) s
->dma_ch
[ch
].palette
;
599 alpha
= r
= g
= b
= 0;
601 for (i
= 0; i
< n
; i
++) {
603 case 0: /* 16 bpp, no transparency */
605 if (s
->control
[0] & LCCR0_CMS
) {
606 r
= g
= b
= *(uint16_t *) src
& 0xff;
609 r
= (*(uint16_t *) src
& 0xf800) >> 8;
610 g
= (*(uint16_t *) src
& 0x07e0) >> 3;
611 b
= (*(uint16_t *) src
& 0x001f) << 3;
615 case 1: /* 16 bpp plus transparency */
616 alpha
= *(uint32_t *) src
& (1 << 24);
617 if (s
->control
[0] & LCCR0_CMS
)
618 r
= g
= b
= *(uint32_t *) src
& 0xff;
620 r
= (*(uint32_t *) src
& 0xf80000) >> 16;
621 g
= (*(uint32_t *) src
& 0x00fc00) >> 8;
622 b
= (*(uint32_t *) src
& 0x0000f8);
626 case 2: /* 18 bpp plus transparency */
627 alpha
= *(uint32_t *) src
& (1 << 24);
628 if (s
->control
[0] & LCCR0_CMS
)
629 r
= g
= b
= *(uint32_t *) src
& 0xff;
631 r
= (*(uint32_t *) src
& 0xfc0000) >> 16;
632 g
= (*(uint32_t *) src
& 0x00fc00) >> 8;
633 b
= (*(uint32_t *) src
& 0x0000fc);
637 case 3: /* 24 bpp plus transparency */
638 alpha
= *(uint32_t *) src
& (1 << 24);
639 if (s
->control
[0] & LCCR0_CMS
)
640 r
= g
= b
= *(uint32_t *) src
& 0xff;
642 r
= (*(uint32_t *) src
& 0xff0000) >> 16;
643 g
= (*(uint32_t *) src
& 0x00ff00) >> 8;
644 b
= (*(uint32_t *) src
& 0x0000ff);
649 switch (surface_bits_per_pixel(surface
)) {
651 *dest
= rgb_to_pixel8(r
, g
, b
) | alpha
;
654 *dest
= rgb_to_pixel15(r
, g
, b
) | alpha
;
657 *dest
= rgb_to_pixel16(r
, g
, b
) | alpha
;
660 *dest
= rgb_to_pixel24(r
, g
, b
) | alpha
;
663 *dest
= rgb_to_pixel32(r
, g
, b
) | alpha
;
670 static void pxa2xx_lcdc_dma0_redraw_rot0(PXA2xxLCDState
*s
,
671 hwaddr addr
, int *miny
, int *maxy
)
673 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
674 int src_width
, dest_width
;
677 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
681 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
682 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
)
684 else if (s
->bpp
> pxa_lcdc_16bpp
)
686 else if (s
->bpp
> pxa_lcdc_8bpp
)
689 dest_width
= s
->xres
* s
->dest_width
;
691 if (s
->invalidated
) {
692 framebuffer_update_memory_section(&s
->fbsection
, s
->sysmem
,
693 addr
, s
->yres
, src_width
);
695 framebuffer_update_display(surface
, &s
->fbsection
, s
->xres
, s
->yres
,
696 src_width
, dest_width
, s
->dest_width
,
698 fn
, s
->dma_ch
[0].palette
, miny
, maxy
);
701 static void pxa2xx_lcdc_dma0_redraw_rot90(PXA2xxLCDState
*s
,
702 hwaddr addr
, int *miny
, int *maxy
)
704 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
705 int src_width
, dest_width
;
708 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
712 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
713 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
)
715 else if (s
->bpp
> pxa_lcdc_16bpp
)
717 else if (s
->bpp
> pxa_lcdc_8bpp
)
720 dest_width
= s
->yres
* s
->dest_width
;
722 if (s
->invalidated
) {
723 framebuffer_update_memory_section(&s
->fbsection
, s
->sysmem
,
724 addr
, s
->yres
, src_width
);
726 framebuffer_update_display(surface
, &s
->fbsection
, s
->xres
, s
->yres
,
727 src_width
, s
->dest_width
, -dest_width
,
729 fn
, s
->dma_ch
[0].palette
,
733 static void pxa2xx_lcdc_dma0_redraw_rot180(PXA2xxLCDState
*s
,
734 hwaddr addr
, int *miny
, int *maxy
)
736 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
737 int src_width
, dest_width
;
740 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
746 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
747 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
) {
749 } else if (s
->bpp
> pxa_lcdc_16bpp
) {
751 } else if (s
->bpp
> pxa_lcdc_8bpp
) {
755 dest_width
= s
->xres
* s
->dest_width
;
757 if (s
->invalidated
) {
758 framebuffer_update_memory_section(&s
->fbsection
, s
->sysmem
,
759 addr
, s
->yres
, src_width
);
761 framebuffer_update_display(surface
, &s
->fbsection
, s
->xres
, s
->yres
,
762 src_width
, -dest_width
, -s
->dest_width
,
764 fn
, s
->dma_ch
[0].palette
, miny
, maxy
);
767 static void pxa2xx_lcdc_dma0_redraw_rot270(PXA2xxLCDState
*s
,
768 hwaddr addr
, int *miny
, int *maxy
)
770 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
771 int src_width
, dest_width
;
774 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
780 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
781 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
) {
783 } else if (s
->bpp
> pxa_lcdc_16bpp
) {
785 } else if (s
->bpp
> pxa_lcdc_8bpp
) {
789 dest_width
= s
->yres
* s
->dest_width
;
791 if (s
->invalidated
) {
792 framebuffer_update_memory_section(&s
->fbsection
, s
->sysmem
,
793 addr
, s
->yres
, src_width
);
795 framebuffer_update_display(surface
, &s
->fbsection
, s
->xres
, s
->yres
,
796 src_width
, -s
->dest_width
, dest_width
,
798 fn
, s
->dma_ch
[0].palette
,
802 static void pxa2xx_lcdc_resize(PXA2xxLCDState
*s
)
805 if (!(s
->control
[0] & LCCR0_ENB
))
808 width
= LCCR1_PPL(s
->control
[1]) + 1;
809 height
= LCCR2_LPP(s
->control
[2]) + 1;
811 if (width
!= s
->xres
|| height
!= s
->yres
) {
812 if (s
->orientation
== 90 || s
->orientation
== 270) {
813 qemu_console_resize(s
->con
, height
, width
);
815 qemu_console_resize(s
->con
, width
, height
);
823 static void pxa2xx_update_display(void *opaque
)
825 PXA2xxLCDState
*s
= (PXA2xxLCDState
*) opaque
;
829 if (!(s
->control
[0] & LCCR0_ENB
))
832 pxa2xx_descriptor_load(s
);
834 pxa2xx_lcdc_resize(s
);
837 s
->transp
= s
->dma_ch
[2].up
|| s
->dma_ch
[3].up
;
838 /* Note: With overlay planes the order depends on LCCR0 bit 25. */
839 for (ch
= 0; ch
< PXA_LCDDMA_CHANS
; ch
++)
840 if (s
->dma_ch
[ch
].up
) {
841 if (!s
->dma_ch
[ch
].source
) {
842 pxa2xx_dma_ber_set(s
, ch
);
845 fbptr
= s
->dma_ch
[ch
].source
;
846 if (!((fbptr
>= PXA2XX_SDRAM_BASE
&&
847 fbptr
<= PXA2XX_SDRAM_BASE
+ ram_size
) ||
848 (fbptr
>= PXA2XX_INTERNAL_BASE
&&
849 fbptr
<= PXA2XX_INTERNAL_BASE
+ PXA2XX_INTERNAL_SIZE
))) {
850 pxa2xx_dma_ber_set(s
, ch
);
854 if (s
->dma_ch
[ch
].command
& LDCMD_PAL
) {
855 cpu_physical_memory_read(fbptr
, s
->dma_ch
[ch
].pbuffer
,
856 MAX(LDCMD_LENGTH(s
->dma_ch
[ch
].command
),
857 sizeof(s
->dma_ch
[ch
].pbuffer
)));
858 pxa2xx_palette_parse(s
, ch
, s
->bpp
);
860 /* Do we need to reparse palette */
861 if (LCCR4_PALFOR(s
->control
[4]) != s
->pal_for
)
862 pxa2xx_palette_parse(s
, ch
, s
->bpp
);
864 /* ACK frame start */
865 pxa2xx_dma_sof_set(s
, ch
);
867 s
->dma_ch
[ch
].redraw(s
, fbptr
, &miny
, &maxy
);
870 /* ACK frame completed */
871 pxa2xx_dma_eof_set(s
, ch
);
875 if (s
->control
[0] & LCCR0_DIS
) {
876 /* ACK last frame completed */
877 s
->control
[0] &= ~LCCR0_ENB
;
878 s
->status
[0] |= LCSR0_LDD
;
882 switch (s
->orientation
) {
884 dpy_gfx_update(s
->con
, 0, miny
, s
->xres
, maxy
- miny
+ 1);
887 dpy_gfx_update(s
->con
, miny
, 0, maxy
- miny
+ 1, s
->xres
);
890 maxy
= s
->yres
- maxy
- 1;
891 miny
= s
->yres
- miny
- 1;
892 dpy_gfx_update(s
->con
, 0, maxy
, s
->xres
, miny
- maxy
+ 1);
895 maxy
= s
->yres
- maxy
- 1;
896 miny
= s
->yres
- miny
- 1;
897 dpy_gfx_update(s
->con
, maxy
, 0, miny
- maxy
+ 1, s
->xres
);
901 pxa2xx_lcdc_int_update(s
);
903 qemu_irq_raise(s
->vsync_cb
);
906 static void pxa2xx_invalidate_display(void *opaque
)
908 PXA2xxLCDState
*s
= (PXA2xxLCDState
*) opaque
;
912 static void pxa2xx_lcdc_orientation(void *opaque
, int angle
)
914 PXA2xxLCDState
*s
= (PXA2xxLCDState
*) opaque
;
918 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_rot0
;
921 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_rot90
;
924 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_rot180
;
927 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_rot270
;
931 s
->orientation
= angle
;
932 s
->xres
= s
->yres
= -1;
933 pxa2xx_lcdc_resize(s
);
936 static const VMStateDescription vmstate_dma_channel
= {
937 .name
= "dma_channel",
939 .minimum_version_id
= 0,
940 .fields
= (VMStateField
[]) {
941 VMSTATE_UINT32(branch
, struct DMAChannel
),
942 VMSTATE_UINT8(up
, struct DMAChannel
),
943 VMSTATE_BUFFER(pbuffer
, struct DMAChannel
),
944 VMSTATE_UINT32(descriptor
, struct DMAChannel
),
945 VMSTATE_UINT32(source
, struct DMAChannel
),
946 VMSTATE_UINT32(id
, struct DMAChannel
),
947 VMSTATE_UINT32(command
, struct DMAChannel
),
948 VMSTATE_END_OF_LIST()
952 static int pxa2xx_lcdc_post_load(void *opaque
, int version_id
)
954 PXA2xxLCDState
*s
= opaque
;
956 s
->bpp
= LCCR3_BPP(s
->control
[3]);
957 s
->xres
= s
->yres
= s
->pal_for
= -1;
962 static const VMStateDescription vmstate_pxa2xx_lcdc
= {
963 .name
= "pxa2xx_lcdc",
965 .minimum_version_id
= 0,
966 .post_load
= pxa2xx_lcdc_post_load
,
967 .fields
= (VMStateField
[]) {
968 VMSTATE_INT32(irqlevel
, PXA2xxLCDState
),
969 VMSTATE_INT32(transp
, PXA2xxLCDState
),
970 VMSTATE_UINT32_ARRAY(control
, PXA2xxLCDState
, 6),
971 VMSTATE_UINT32_ARRAY(status
, PXA2xxLCDState
, 2),
972 VMSTATE_UINT32_ARRAY(ovl1c
, PXA2xxLCDState
, 2),
973 VMSTATE_UINT32_ARRAY(ovl2c
, PXA2xxLCDState
, 2),
974 VMSTATE_UINT32(ccr
, PXA2xxLCDState
),
975 VMSTATE_UINT32(cmdcr
, PXA2xxLCDState
),
976 VMSTATE_UINT32(trgbr
, PXA2xxLCDState
),
977 VMSTATE_UINT32(tcr
, PXA2xxLCDState
),
978 VMSTATE_UINT32(liidr
, PXA2xxLCDState
),
979 VMSTATE_UINT8(bscntr
, PXA2xxLCDState
),
980 VMSTATE_STRUCT_ARRAY(dma_ch
, PXA2xxLCDState
, 7, 0,
981 vmstate_dma_channel
, struct DMAChannel
),
982 VMSTATE_END_OF_LIST()
987 #include "pxa2xx_template.h"
989 #include "pxa2xx_template.h"
991 #include "pxa2xx_template.h"
993 #include "pxa2xx_template.h"
995 #include "pxa2xx_template.h"
997 static const GraphicHwOps pxa2xx_ops
= {
998 .invalidate
= pxa2xx_invalidate_display
,
999 .gfx_update
= pxa2xx_update_display
,
1002 PXA2xxLCDState
*pxa2xx_lcdc_init(MemoryRegion
*sysmem
,
1003 hwaddr base
, qemu_irq irq
)
1006 DisplaySurface
*surface
;
1008 s
= (PXA2xxLCDState
*) g_malloc0(sizeof(PXA2xxLCDState
));
1013 pxa2xx_lcdc_orientation(s
, graphic_rotate
);
1015 memory_region_init_io(&s
->iomem
, NULL
, &pxa2xx_lcdc_ops
, s
,
1016 "pxa2xx-lcd-controller", 0x00100000);
1017 memory_region_add_subregion(sysmem
, base
, &s
->iomem
);
1019 s
->con
= graphic_console_init(NULL
, 0, &pxa2xx_ops
, s
);
1020 surface
= qemu_console_surface(s
->con
);
1022 switch (surface_bits_per_pixel(surface
)) {
1027 s
->line_fn
[0] = pxa2xx_draw_fn_8
;
1028 s
->line_fn
[1] = pxa2xx_draw_fn_8t
;
1032 s
->line_fn
[0] = pxa2xx_draw_fn_15
;
1033 s
->line_fn
[1] = pxa2xx_draw_fn_15t
;
1037 s
->line_fn
[0] = pxa2xx_draw_fn_16
;
1038 s
->line_fn
[1] = pxa2xx_draw_fn_16t
;
1042 s
->line_fn
[0] = pxa2xx_draw_fn_24
;
1043 s
->line_fn
[1] = pxa2xx_draw_fn_24t
;
1047 s
->line_fn
[0] = pxa2xx_draw_fn_32
;
1048 s
->line_fn
[1] = pxa2xx_draw_fn_32t
;
1052 fprintf(stderr
, "%s: Bad color depth\n", __FUNCTION__
);
1056 vmstate_register(NULL
, 0, &vmstate_pxa2xx_lcdc
, s
);
1061 void pxa2xx_lcd_vsync_notifier(PXA2xxLCDState
*s
, qemu_irq handler
)
1063 s
->vsync_cb
= handler
;