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
[PXA_LCDDMA_CHANS
];
287 target_phys_addr_t descptr
;
290 for (i
= 0; i
< PXA_LCDDMA_CHANS
; i
++) {
292 s
->dma_ch
[i
].source
= 0;
294 if (!s
->dma_ch
[i
].up
)
297 if (s
->dma_ch
[i
].branch
& FBR_BRA
) {
298 descptr
= s
->dma_ch
[i
].branch
& FBR_SRCADDR
;
299 if (s
->dma_ch
[i
].branch
& FBR_BINT
)
300 pxa2xx_dma_bs_set(s
, i
);
301 s
->dma_ch
[i
].branch
&= ~FBR_BRA
;
303 descptr
= s
->dma_ch
[i
].descriptor
;
305 if (!(descptr
>= PXA2XX_SDRAM_BASE
&& descptr
+
306 sizeof(*desc
[i
]) <= PXA2XX_SDRAM_BASE
+ phys_ram_size
))
309 descptr
-= PXA2XX_SDRAM_BASE
;
310 desc
[i
] = (struct pxa_frame_descriptor_s
*) (phys_ram_base
+ descptr
);
311 s
->dma_ch
[i
].descriptor
= desc
[i
]->fdaddr
;
312 s
->dma_ch
[i
].source
= desc
[i
]->fsaddr
;
313 s
->dma_ch
[i
].id
= desc
[i
]->fidr
;
314 s
->dma_ch
[i
].command
= desc
[i
]->ldcmd
;
318 static uint32_t pxa2xx_lcdc_read(void *opaque
, target_phys_addr_t offset
)
320 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
325 return s
->control
[0];
327 return s
->control
[1];
329 return s
->control
[2];
331 return s
->control
[3];
333 return s
->control
[4];
335 return s
->control
[5];
357 case 0x200 ... 0x1000: /* DMA per-channel registers */
358 ch
= (offset
- 0x200) >> 4;
359 if (!(ch
>= 0 && ch
< PXA_LCDDMA_CHANS
))
362 switch (offset
& 0xf) {
364 return s
->dma_ch
[ch
].descriptor
;
366 return s
->dma_ch
[ch
].source
;
368 return s
->dma_ch
[ch
].id
;
370 return s
->dma_ch
[ch
].command
;
376 return s
->dma_ch
[0].branch
;
378 return s
->dma_ch
[1].branch
;
380 return s
->dma_ch
[2].branch
;
382 return s
->dma_ch
[3].branch
;
384 return s
->dma_ch
[4].branch
;
386 return s
->dma_ch
[5].branch
;
388 return s
->dma_ch
[6].branch
;
405 cpu_abort(cpu_single_env
,
406 "%s: Bad offset " REG_FMT
"\n", __FUNCTION__
, offset
);
412 static void pxa2xx_lcdc_write(void *opaque
,
413 target_phys_addr_t offset
, uint32_t value
)
415 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
420 /* ACK Quick Disable done */
421 if ((s
->control
[0] & LCCR0_ENB
) && !(value
& LCCR0_ENB
))
422 s
->status
[0] |= LCSR0_QD
;
424 if (!(s
->control
[0] & LCCR0_LCDT
) && (value
& LCCR0_LCDT
))
425 printf("%s: internal frame buffer unsupported\n", __FUNCTION__
);
427 if ((s
->control
[3] & LCCR3_API
) &&
428 (value
& LCCR0_ENB
) && !(value
& LCCR0_LCDT
))
429 s
->status
[0] |= LCSR0_ABC
;
431 s
->control
[0] = value
& 0x07ffffff;
432 pxa2xx_lcdc_int_update(s
);
434 s
->dma_ch
[0].up
= !!(value
& LCCR0_ENB
);
435 s
->dma_ch
[1].up
= (s
->ovl1c
[0] & OVLC1_EN
) || (value
& LCCR0_SDS
);
439 s
->control
[1] = value
;
443 s
->control
[2] = value
;
447 s
->control
[3] = value
& 0xefffffff;
448 s
->bpp
= LCCR3_BPP(value
);
452 s
->control
[4] = value
& 0x83ff81ff;
456 s
->control
[5] = value
& 0x3f3f3f3f;
460 if (!(s
->ovl1c
[0] & OVLC1_EN
) && (value
& OVLC1_EN
))
461 printf("%s: Overlay 1 not supported\n", __FUNCTION__
);
463 s
->ovl1c
[0] = value
& 0x80ffffff;
464 s
->dma_ch
[1].up
= (value
& OVLC1_EN
) || (s
->control
[0] & LCCR0_SDS
);
468 s
->ovl1c
[1] = value
& 0x000fffff;
472 if (!(s
->ovl2c
[0] & OVLC1_EN
) && (value
& OVLC1_EN
))
473 printf("%s: Overlay 2 not supported\n", __FUNCTION__
);
475 s
->ovl2c
[0] = value
& 0x80ffffff;
476 s
->dma_ch
[2].up
= !!(value
& OVLC1_EN
);
477 s
->dma_ch
[3].up
= !!(value
& OVLC1_EN
);
478 s
->dma_ch
[4].up
= !!(value
& OVLC1_EN
);
482 s
->ovl2c
[1] = value
& 0x007fffff;
486 if (!(s
->ccr
& CCR_CEN
) && (value
& CCR_CEN
))
487 printf("%s: Hardware cursor unimplemented\n", __FUNCTION__
);
489 s
->ccr
= value
& 0x81ffffe7;
490 s
->dma_ch
[5].up
= !!(value
& CCR_CEN
);
494 s
->cmdcr
= value
& 0xff;
498 s
->trgbr
= value
& 0x00ffffff;
502 s
->tcr
= value
& 0x7fff;
505 case 0x200 ... 0x1000: /* DMA per-channel registers */
506 ch
= (offset
- 0x200) >> 4;
507 if (!(ch
>= 0 && ch
< PXA_LCDDMA_CHANS
))
510 switch (offset
& 0xf) {
512 s
->dma_ch
[ch
].descriptor
= value
& 0xfffffff0;
521 s
->dma_ch
[0].branch
= value
& 0xfffffff3;
524 s
->dma_ch
[1].branch
= value
& 0xfffffff3;
527 s
->dma_ch
[2].branch
= value
& 0xfffffff3;
530 s
->dma_ch
[3].branch
= value
& 0xfffffff3;
533 s
->dma_ch
[4].branch
= value
& 0xfffffff3;
536 s
->dma_ch
[5].branch
= value
& 0xfffffff3;
539 s
->dma_ch
[6].branch
= value
& 0xfffffff3;
543 s
->bscntr
= value
& 0xf;
550 s
->status
[0] &= ~(value
& 0xfff);
551 if (value
& LCSR0_BER
)
552 s
->status
[0] &= ~LCSR0_BERCH(7);
556 s
->status
[1] &= ~(value
& 0x3e3f3f);
561 cpu_abort(cpu_single_env
,
562 "%s: Bad offset " REG_FMT
"\n", __FUNCTION__
, offset
);
566 static CPUReadMemoryFunc
*pxa2xx_lcdc_readfn
[] = {
572 static CPUWriteMemoryFunc
*pxa2xx_lcdc_writefn
[] = {
578 /* Load new palette for a given DMA channel, convert to internal format */
579 static void pxa2xx_palette_parse(struct pxa2xx_lcdc_s
*s
, int ch
, int bpp
)
581 int i
, n
, format
, r
, g
, b
, alpha
;
582 uint32_t *dest
, *src
;
583 s
->pal_for
= LCCR4_PALFOR(s
->control
[4]);
601 src
= (uint32_t *) s
->dma_ch
[ch
].pbuffer
;
602 dest
= (uint32_t *) s
->dma_ch
[ch
].palette
;
603 alpha
= r
= g
= b
= 0;
605 for (i
= 0; i
< n
; i
++) {
607 case 0: /* 16 bpp, no transparency */
609 if (s
->control
[0] & LCCR0_CMS
)
610 r
= g
= b
= *src
& 0xff;
612 r
= (*src
& 0xf800) >> 8;
613 g
= (*src
& 0x07e0) >> 3;
614 b
= (*src
& 0x001f) << 3;
617 case 1: /* 16 bpp plus transparency */
618 alpha
= *src
& (1 << 24);
619 if (s
->control
[0] & LCCR0_CMS
)
620 r
= g
= b
= *src
& 0xff;
622 r
= (*src
& 0xf800) >> 8;
623 g
= (*src
& 0x07e0) >> 3;
624 b
= (*src
& 0x001f) << 3;
627 case 2: /* 18 bpp plus transparency */
628 alpha
= *src
& (1 << 24);
629 if (s
->control
[0] & LCCR0_CMS
)
630 r
= g
= b
= *src
& 0xff;
632 r
= (*src
& 0xf80000) >> 16;
633 g
= (*src
& 0x00fc00) >> 8;
634 b
= (*src
& 0x0000f8);
637 case 3: /* 24 bpp plus transparency */
638 alpha
= *src
& (1 << 24);
639 if (s
->control
[0] & LCCR0_CMS
)
640 r
= g
= b
= *src
& 0xff;
642 r
= (*src
& 0xff0000) >> 16;
643 g
= (*src
& 0x00ff00) >> 8;
644 b
= (*src
& 0x0000ff);
648 switch (ds_get_bits_per_pixel(s
->ds
)) {
650 *dest
= rgb_to_pixel8(r
, g
, b
) | alpha
;
653 *dest
= rgb_to_pixel15(r
, g
, b
) | alpha
;
656 *dest
= rgb_to_pixel16(r
, g
, b
) | alpha
;
659 *dest
= rgb_to_pixel24(r
, g
, b
) | alpha
;
662 *dest
= rgb_to_pixel32(r
, g
, b
) | alpha
;
670 static void pxa2xx_lcdc_dma0_redraw_horiz(struct pxa2xx_lcdc_s
*s
,
671 target_phys_addr_t addr
, int *miny
, int *maxy
)
673 int src_width
, dest_width
;
676 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
680 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
681 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
)
683 else if (s
->bpp
> pxa_lcdc_16bpp
)
685 else if (s
->bpp
> pxa_lcdc_8bpp
)
688 dest_width
= s
->xres
* s
->dest_width
;
690 framebuffer_update_display(s
->ds
,
691 addr
, s
->xres
, s
->yres
,
692 src_width
, dest_width
, s
->dest_width
,
694 fn
, s
->dma_ch
[0].palette
, miny
, maxy
);
697 static void pxa2xx_lcdc_dma0_redraw_vert(struct pxa2xx_lcdc_s
*s
,
698 target_phys_addr_t addr
, int *miny
, int *maxy
)
700 int src_width
, dest_width
;
703 fn
= s
->line_fn
[s
->transp
][s
->bpp
];
707 src_width
= (s
->xres
+ 3) & ~3; /* Pad to a 4 pixels multiple */
708 if (s
->bpp
== pxa_lcdc_19pbpp
|| s
->bpp
== pxa_lcdc_18pbpp
)
710 else if (s
->bpp
> pxa_lcdc_16bpp
)
712 else if (s
->bpp
> pxa_lcdc_8bpp
)
715 dest_width
= s
->yres
* s
->dest_width
;
717 framebuffer_update_display(s
->ds
,
718 addr
, s
->xres
, s
->yres
,
719 src_width
, s
->dest_width
, -dest_width
,
721 fn
, s
->dma_ch
[0].palette
,
725 static void pxa2xx_lcdc_resize(struct pxa2xx_lcdc_s
*s
)
728 if (!(s
->control
[0] & LCCR0_ENB
))
731 width
= LCCR1_PPL(s
->control
[1]) + 1;
732 height
= LCCR2_LPP(s
->control
[2]) + 1;
734 if (width
!= s
->xres
|| height
!= s
->yres
) {
736 qemu_console_resize(s
->ds
, height
, width
);
738 qemu_console_resize(s
->ds
, width
, height
);
745 static void pxa2xx_update_display(void *opaque
)
747 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
748 target_phys_addr_t fbptr
;
751 if (!(s
->control
[0] & LCCR0_ENB
))
754 pxa2xx_descriptor_load(s
);
756 pxa2xx_lcdc_resize(s
);
759 s
->transp
= s
->dma_ch
[2].up
|| s
->dma_ch
[3].up
;
760 /* Note: With overlay planes the order depends on LCCR0 bit 25. */
761 for (ch
= 0; ch
< PXA_LCDDMA_CHANS
; ch
++)
762 if (s
->dma_ch
[ch
].up
) {
763 if (!s
->dma_ch
[ch
].source
) {
764 pxa2xx_dma_ber_set(s
, ch
);
767 fbptr
= s
->dma_ch
[ch
].source
;
768 if (!(fbptr
>= PXA2XX_SDRAM_BASE
&&
769 fbptr
<= PXA2XX_SDRAM_BASE
+ phys_ram_size
)) {
770 pxa2xx_dma_ber_set(s
, ch
);
774 if (s
->dma_ch
[ch
].command
& LDCMD_PAL
) {
775 cpu_physical_memory_read(fbptr
, s
->dma_ch
[ch
].pbuffer
,
776 MAX(LDCMD_LENGTH(s
->dma_ch
[ch
].command
),
777 sizeof(s
->dma_ch
[ch
].pbuffer
)));
778 pxa2xx_palette_parse(s
, ch
, s
->bpp
);
780 /* Do we need to reparse palette */
781 if (LCCR4_PALFOR(s
->control
[4]) != s
->pal_for
)
782 pxa2xx_palette_parse(s
, ch
, s
->bpp
);
784 /* ACK frame start */
785 pxa2xx_dma_sof_set(s
, ch
);
787 s
->dma_ch
[ch
].redraw(s
, fbptr
, &miny
, &maxy
);
790 /* ACK frame completed */
791 pxa2xx_dma_eof_set(s
, ch
);
795 if (s
->control
[0] & LCCR0_DIS
) {
796 /* ACK last frame completed */
797 s
->control
[0] &= ~LCCR0_ENB
;
798 s
->status
[0] |= LCSR0_LDD
;
803 dpy_update(s
->ds
, miny
, 0, maxy
, s
->xres
);
805 dpy_update(s
->ds
, 0, miny
, s
->xres
, maxy
);
807 pxa2xx_lcdc_int_update(s
);
809 qemu_irq_raise(s
->vsync_cb
);
812 static void pxa2xx_invalidate_display(void *opaque
)
814 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
818 static void pxa2xx_screen_dump(void *opaque
, const char *filename
)
823 static void pxa2xx_lcdc_orientation(void *opaque
, int angle
)
825 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
828 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_vert
;
830 s
->dma_ch
[0].redraw
= pxa2xx_lcdc_dma0_redraw_horiz
;
833 s
->orientation
= angle
;
834 s
->xres
= s
->yres
= -1;
835 pxa2xx_lcdc_resize(s
);
838 static void pxa2xx_lcdc_save(QEMUFile
*f
, void *opaque
)
840 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
843 qemu_put_be32(f
, s
->irqlevel
);
844 qemu_put_be32(f
, s
->transp
);
846 for (i
= 0; i
< 6; i
++)
847 qemu_put_be32s(f
, &s
->control
[i
]);
848 for (i
= 0; i
< 2; i
++)
849 qemu_put_be32s(f
, &s
->status
[i
]);
850 for (i
= 0; i
< 2; i
++)
851 qemu_put_be32s(f
, &s
->ovl1c
[i
]);
852 for (i
= 0; i
< 2; i
++)
853 qemu_put_be32s(f
, &s
->ovl2c
[i
]);
854 qemu_put_be32s(f
, &s
->ccr
);
855 qemu_put_be32s(f
, &s
->cmdcr
);
856 qemu_put_be32s(f
, &s
->trgbr
);
857 qemu_put_be32s(f
, &s
->tcr
);
858 qemu_put_be32s(f
, &s
->liidr
);
859 qemu_put_8s(f
, &s
->bscntr
);
861 for (i
= 0; i
< 7; i
++) {
862 qemu_put_betl(f
, s
->dma_ch
[i
].branch
);
863 qemu_put_byte(f
, s
->dma_ch
[i
].up
);
864 qemu_put_buffer(f
, s
->dma_ch
[i
].pbuffer
, sizeof(s
->dma_ch
[i
].pbuffer
));
866 qemu_put_betl(f
, s
->dma_ch
[i
].descriptor
);
867 qemu_put_betl(f
, s
->dma_ch
[i
].source
);
868 qemu_put_be32s(f
, &s
->dma_ch
[i
].id
);
869 qemu_put_be32s(f
, &s
->dma_ch
[i
].command
);
873 static int pxa2xx_lcdc_load(QEMUFile
*f
, void *opaque
, int version_id
)
875 struct pxa2xx_lcdc_s
*s
= (struct pxa2xx_lcdc_s
*) opaque
;
878 s
->irqlevel
= qemu_get_be32(f
);
879 s
->transp
= qemu_get_be32(f
);
881 for (i
= 0; i
< 6; i
++)
882 qemu_get_be32s(f
, &s
->control
[i
]);
883 for (i
= 0; i
< 2; i
++)
884 qemu_get_be32s(f
, &s
->status
[i
]);
885 for (i
= 0; i
< 2; i
++)
886 qemu_get_be32s(f
, &s
->ovl1c
[i
]);
887 for (i
= 0; i
< 2; i
++)
888 qemu_get_be32s(f
, &s
->ovl2c
[i
]);
889 qemu_get_be32s(f
, &s
->ccr
);
890 qemu_get_be32s(f
, &s
->cmdcr
);
891 qemu_get_be32s(f
, &s
->trgbr
);
892 qemu_get_be32s(f
, &s
->tcr
);
893 qemu_get_be32s(f
, &s
->liidr
);
894 qemu_get_8s(f
, &s
->bscntr
);
896 for (i
= 0; i
< 7; i
++) {
897 s
->dma_ch
[i
].branch
= qemu_get_betl(f
);
898 s
->dma_ch
[i
].up
= qemu_get_byte(f
);
899 qemu_get_buffer(f
, s
->dma_ch
[i
].pbuffer
, sizeof(s
->dma_ch
[i
].pbuffer
));
901 s
->dma_ch
[i
].descriptor
= qemu_get_betl(f
);
902 s
->dma_ch
[i
].source
= qemu_get_betl(f
);
903 qemu_get_be32s(f
, &s
->dma_ch
[i
].id
);
904 qemu_get_be32s(f
, &s
->dma_ch
[i
].command
);
907 s
->bpp
= LCCR3_BPP(s
->control
[3]);
908 s
->xres
= s
->yres
= s
->pal_for
= -1;
914 #include "pxa2xx_template.h"
916 #include "pxa2xx_template.h"
918 #include "pxa2xx_template.h"
920 #include "pxa2xx_template.h"
922 #include "pxa2xx_template.h"
924 struct pxa2xx_lcdc_s
*pxa2xx_lcdc_init(target_phys_addr_t base
, qemu_irq irq
)
927 struct pxa2xx_lcdc_s
*s
;
929 s
= (struct pxa2xx_lcdc_s
*) qemu_mallocz(sizeof(struct pxa2xx_lcdc_s
));
933 pxa2xx_lcdc_orientation(s
, graphic_rotate
);
935 iomemtype
= cpu_register_io_memory(0, pxa2xx_lcdc_readfn
,
936 pxa2xx_lcdc_writefn
, s
);
937 cpu_register_physical_memory(base
, 0x00100000, iomemtype
);
939 s
->ds
= graphic_console_init(pxa2xx_update_display
,
940 pxa2xx_invalidate_display
,
941 pxa2xx_screen_dump
, NULL
, s
);
943 switch (ds_get_bits_per_pixel(s
->ds
)) {
948 s
->line_fn
[0] = pxa2xx_draw_fn_8
;
949 s
->line_fn
[1] = pxa2xx_draw_fn_8t
;
953 s
->line_fn
[0] = pxa2xx_draw_fn_15
;
954 s
->line_fn
[1] = pxa2xx_draw_fn_15t
;
958 s
->line_fn
[0] = pxa2xx_draw_fn_16
;
959 s
->line_fn
[1] = pxa2xx_draw_fn_16t
;
963 s
->line_fn
[0] = pxa2xx_draw_fn_24
;
964 s
->line_fn
[1] = pxa2xx_draw_fn_24t
;
968 s
->line_fn
[0] = pxa2xx_draw_fn_32
;
969 s
->line_fn
[1] = pxa2xx_draw_fn_32t
;
973 fprintf(stderr
, "%s: Bad color depth\n", __FUNCTION__
);
977 register_savevm("pxa2xx_lcdc", 0, 0,
978 pxa2xx_lcdc_save
, pxa2xx_lcdc_load
, s
);
983 void pxa2xx_lcd_vsync_notifier(struct pxa2xx_lcdc_s
*s
, qemu_irq handler
)
985 s
->vsync_cb
= handler
;