4 * Copyright (C) 2006-2007 Andrzej Zaborowski <balrog@zabor.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "framebuffer.h"
24 struct omap_lcd_panel_s
{
28 ram_addr_t emiff_base
;
41 struct omap_dma_lcd_channel_s
*dma
;
42 uint16_t palette
[256];
49 static void omap_lcd_interrupts(struct omap_lcd_panel_s
*s
)
51 if (s
->frame_done
&& (s
->interrupts
& 1)) {
52 qemu_irq_raise(s
->irq
);
56 if (s
->palette_done
&& (s
->interrupts
& 2)) {
57 qemu_irq_raise(s
->irq
);
62 qemu_irq_raise(s
->irq
);
66 qemu_irq_lower(s
->irq
);
69 #include "pixel_ops.h"
71 #define draw_line_func drawfn
74 #include "omap_lcd_template.h"
76 #include "omap_lcd_template.h"
78 #include "omap_lcd_template.h"
80 #include "omap_lcd_template.h"
82 static draw_line_func draw_line_table2
[33] = {
88 }, draw_line_table4
[33] = {
94 }, draw_line_table8
[33] = {
100 }, draw_line_table12
[33] = {
103 [15] = draw_line12_15
,
104 [16] = draw_line12_16
,
105 [32] = draw_line12_32
,
106 }, draw_line_table16
[33] = {
109 [15] = draw_line16_15
,
110 [16] = draw_line16_16
,
111 [32] = draw_line16_32
,
114 static void omap_update_display(void *opaque
)
116 struct omap_lcd_panel_s
*omap_lcd
= (struct omap_lcd_panel_s
*) opaque
;
117 draw_line_func draw_line
;
118 int size
, height
, first
, last
;
119 int width
, linesize
, step
, bpp
, frame_offset
;
120 target_phys_addr_t frame_base
;
122 if (!omap_lcd
|| omap_lcd
->plm
== 1 ||
123 !omap_lcd
->enable
|| !ds_get_bits_per_pixel(omap_lcd
->state
))
127 if (omap_lcd
->plm
!= 2) {
128 cpu_physical_memory_read(omap_lcd
->dma
->phys_framebuffer
[
129 omap_lcd
->dma
->current_frame
],
130 (void *)omap_lcd
->palette
, 0x200);
131 switch (omap_lcd
->palette
[0] >> 12 & 7) {
133 frame_offset
+= 0x200;
136 frame_offset
+= 0x20;
141 switch ((omap_lcd
->palette
[0] >> 12) & 7) {
143 draw_line
= draw_line_table2
[ds_get_bits_per_pixel(omap_lcd
->state
)];
148 draw_line
= draw_line_table4
[ds_get_bits_per_pixel(omap_lcd
->state
)];
153 draw_line
= draw_line_table8
[ds_get_bits_per_pixel(omap_lcd
->state
)];
159 draw_line
= draw_line_table12
[ds_get_bits_per_pixel(omap_lcd
->state
)];
161 draw_line
= draw_line_table16
[ds_get_bits_per_pixel(omap_lcd
->state
)];
166 /* Unsupported at the moment. */
171 width
= omap_lcd
->width
;
172 if (width
!= ds_get_width(omap_lcd
->state
) ||
173 omap_lcd
->height
!= ds_get_height(omap_lcd
->state
)) {
174 qemu_console_resize(omap_lcd
->state
,
175 omap_lcd
->width
, omap_lcd
->height
);
176 omap_lcd
->invalidate
= 1;
179 if (omap_lcd
->dma
->current_frame
== 0)
180 size
= omap_lcd
->dma
->src_f1_bottom
- omap_lcd
->dma
->src_f1_top
;
182 size
= omap_lcd
->dma
->src_f2_bottom
- omap_lcd
->dma
->src_f2_top
;
184 if (frame_offset
+ ((width
* omap_lcd
->height
* bpp
) >> 3) > size
+ 2) {
185 omap_lcd
->sync_error
= 1;
186 omap_lcd_interrupts(omap_lcd
);
187 omap_lcd
->enable
= 0;
192 frame_base
= omap_lcd
->dma
->phys_framebuffer
[
193 omap_lcd
->dma
->current_frame
] + frame_offset
;
194 omap_lcd
->dma
->condition
|= 1 << omap_lcd
->dma
->current_frame
;
195 if (omap_lcd
->dma
->interrupts
& 1)
196 qemu_irq_raise(omap_lcd
->dma
->irq
);
197 if (omap_lcd
->dma
->dual
)
198 omap_lcd
->dma
->current_frame
^= 1;
200 if (!ds_get_bits_per_pixel(omap_lcd
->state
))
204 height
= omap_lcd
->height
;
205 if (omap_lcd
->subpanel
& (1 << 31)) {
206 if (omap_lcd
->subpanel
& (1 << 29))
207 first
= (omap_lcd
->subpanel
>> 16) & 0x3ff;
209 height
= (omap_lcd
->subpanel
>> 16) & 0x3ff;
210 /* TODO: fill the rest of the panel with DPD */
213 step
= width
* bpp
>> 3;
214 linesize
= ds_get_linesize(omap_lcd
->state
);
215 framebuffer_update_display(omap_lcd
->state
,
216 frame_base
, width
, height
,
218 omap_lcd
->invalidate
,
219 draw_line
, omap_lcd
->palette
,
222 dpy_update(omap_lcd
->state
, 0, first
, width
, last
- first
+ 1);
224 omap_lcd
->invalidate
= 0;
227 static int ppm_save(const char *filename
, uint8_t *data
,
228 int w
, int h
, int linesize
)
235 f
= fopen(filename
, "wb");
238 fprintf(f
, "P6\n%d %d\n%d\n", w
, h
, 255);
241 for (y
= 0; y
< h
; y
++) {
243 for (x
= 0; x
< w
; x
++) {
247 fputc((v
>> 8) & 0xf8, f
);
248 fputc((v
>> 3) & 0xfc, f
);
249 fputc((v
<< 3) & 0xf8, f
);
254 fputc((v
>> 16) & 0xff, f
);
255 fputc((v
>> 8) & 0xff, f
);
256 fputc((v
) & 0xff, f
);
267 static void omap_screen_dump(void *opaque
, const char *filename
) {
268 struct omap_lcd_panel_s
*omap_lcd
= opaque
;
269 omap_update_display(opaque
);
270 if (omap_lcd
&& ds_get_data(omap_lcd
->state
))
271 ppm_save(filename
, ds_get_data(omap_lcd
->state
),
272 omap_lcd
->width
, omap_lcd
->height
,
273 ds_get_linesize(omap_lcd
->state
));
276 static void omap_invalidate_display(void *opaque
) {
277 struct omap_lcd_panel_s
*omap_lcd
= opaque
;
278 omap_lcd
->invalidate
= 1;
281 static void omap_lcd_update(struct omap_lcd_panel_s
*s
) {
283 s
->dma
->current_frame
= -1;
287 omap_lcd_interrupts(s
);
291 if (s
->dma
->current_frame
== -1) {
294 s
->dma
->current_frame
= 0;
297 if (!s
->dma
->mpu
->port
[s
->dma
->src
].addr_valid(s
->dma
->mpu
,
298 s
->dma
->src_f1_top
) ||
300 s
->dma
->src
].addr_valid(s
->dma
->mpu
,
301 s
->dma
->src_f1_bottom
) ||
304 s
->dma
->src
].addr_valid(s
->dma
->mpu
,
305 s
->dma
->src_f2_top
) ||
307 s
->dma
->src
].addr_valid(s
->dma
->mpu
,
308 s
->dma
->src_f2_bottom
)))) {
309 s
->dma
->condition
|= 1 << 2;
310 if (s
->dma
->interrupts
& (1 << 1))
311 qemu_irq_raise(s
->dma
->irq
);
316 s
->dma
->phys_framebuffer
[0] = s
->dma
->src_f1_top
;
317 s
->dma
->phys_framebuffer
[1] = s
->dma
->src_f2_top
;
319 if (s
->plm
!= 2 && !s
->palette_done
) {
320 cpu_physical_memory_read(
321 s
->dma
->phys_framebuffer
[s
->dma
->current_frame
],
322 (void *)s
->palette
, 0x200);
324 omap_lcd_interrupts(s
);
328 static uint32_t omap_lcdc_read(void *opaque
, target_phys_addr_t addr
)
330 struct omap_lcd_panel_s
*s
= (struct omap_lcd_panel_s
*) opaque
;
333 case 0x00: /* LCD_CONTROL */
334 return (s
->tft
<< 23) | (s
->plm
<< 20) |
335 (s
->tft
<< 7) | (s
->interrupts
<< 3) |
336 (s
->mono
<< 1) | s
->enable
| s
->ctrl
| 0xfe000c34;
338 case 0x04: /* LCD_TIMING0 */
339 return (s
->timing
[0] << 10) | (s
->width
- 1) | 0x0000000f;
341 case 0x08: /* LCD_TIMING1 */
342 return (s
->timing
[1] << 10) | (s
->height
- 1);
344 case 0x0c: /* LCD_TIMING2 */
345 return s
->timing
[2] | 0xfc000000;
347 case 0x10: /* LCD_STATUS */
348 return (s
->palette_done
<< 6) | (s
->sync_error
<< 2) | s
->frame_done
;
350 case 0x14: /* LCD_SUBPANEL */
360 static void omap_lcdc_write(void *opaque
, target_phys_addr_t addr
,
363 struct omap_lcd_panel_s
*s
= (struct omap_lcd_panel_s
*) opaque
;
366 case 0x00: /* LCD_CONTROL */
367 s
->plm
= (value
>> 20) & 3;
368 s
->tft
= (value
>> 7) & 1;
369 s
->interrupts
= (value
>> 3) & 3;
370 s
->mono
= (value
>> 1) & 1;
371 s
->ctrl
= value
& 0x01cff300;
372 if (s
->enable
!= (value
& 1)) {
373 s
->enable
= value
& 1;
378 case 0x04: /* LCD_TIMING0 */
379 s
->timing
[0] = value
>> 10;
380 s
->width
= (value
& 0x3ff) + 1;
383 case 0x08: /* LCD_TIMING1 */
384 s
->timing
[1] = value
>> 10;
385 s
->height
= (value
& 0x3ff) + 1;
388 case 0x0c: /* LCD_TIMING2 */
389 s
->timing
[2] = value
;
392 case 0x10: /* LCD_STATUS */
395 case 0x14: /* LCD_SUBPANEL */
396 s
->subpanel
= value
& 0xa1ffffff;
404 static CPUReadMemoryFunc
* const omap_lcdc_readfn
[] = {
410 static CPUWriteMemoryFunc
* const omap_lcdc_writefn
[] = {
416 void omap_lcdc_reset(struct omap_lcd_panel_s
*s
)
418 s
->dma
->current_frame
= -1;
438 struct omap_lcd_panel_s
*omap_lcdc_init(target_phys_addr_t base
, qemu_irq irq
,
439 struct omap_dma_lcd_channel_s
*dma
,
440 ram_addr_t imif_base
, ram_addr_t emiff_base
, omap_clk clk
)
443 struct omap_lcd_panel_s
*s
= (struct omap_lcd_panel_s
*)
444 qemu_mallocz(sizeof(struct omap_lcd_panel_s
));
448 s
->imif_base
= imif_base
;
449 s
->emiff_base
= emiff_base
;
452 iomemtype
= cpu_register_io_memory(omap_lcdc_readfn
,
453 omap_lcdc_writefn
, s
, DEVICE_NATIVE_ENDIAN
);
454 cpu_register_physical_memory(base
, 0x100, iomemtype
);
456 s
->state
= graphic_console_init(omap_update_display
,
457 omap_invalidate_display
,
458 omap_screen_dump
, NULL
, s
);