| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * OMAP LCD controller. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2006-2007 Andrzej Zaborowski  <balrog@zabor.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU General Public License as | 
					
						
							|  |  |  |  * published by the Free Software Foundation; either version 2 of | 
					
						
							|  |  |  |  * the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-01-04 22:05:52 +00:00
										 |  |  |  * You should have received a copy of the GNU General Public License along | 
					
						
							| 
									
										
										
										
											2009-07-16 20:47:01 +00:00
										 |  |  |  * with this program; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:13 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/hw.h"
 | 
					
						
							| 
									
										
										
										
											2012-11-28 12:06:30 +01:00
										 |  |  | #include "ui/console.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/arm/omap.h"
 | 
					
						
							| 
									
										
										
										
											2013-03-18 17:36:02 +01:00
										 |  |  | #include "framebuffer.h"
 | 
					
						
							| 
									
										
										
										
											2012-11-28 12:06:30 +01:00
										 |  |  | #include "ui/pixel_ops.h"
 | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct omap_lcd_panel_s { | 
					
						
							| 
									
										
										
										
											2011-12-08 16:00:54 +02:00
										 |  |  |     MemoryRegion *sysmem; | 
					
						
							| 
									
										
										
										
											2011-11-28 13:53:36 +01:00
										 |  |  |     MemoryRegion iomem; | 
					
						
							| 
									
										
										
										
											2015-07-13 12:00:29 +02:00
										 |  |  |     MemoryRegionSection fbsection; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |     qemu_irq irq; | 
					
						
							| 
									
										
										
										
											2013-03-05 15:24:14 +01:00
										 |  |  |     QemuConsole *con; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int plm; | 
					
						
							|  |  |  |     int tft; | 
					
						
							|  |  |  |     int mono; | 
					
						
							|  |  |  |     int enable; | 
					
						
							|  |  |  |     int width; | 
					
						
							|  |  |  |     int height; | 
					
						
							|  |  |  |     int interrupts; | 
					
						
							|  |  |  |     uint32_t timing[3]; | 
					
						
							|  |  |  |     uint32_t subpanel; | 
					
						
							|  |  |  |     uint32_t ctrl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     struct omap_dma_lcd_channel_s *dma; | 
					
						
							|  |  |  |     uint16_t palette[256]; | 
					
						
							|  |  |  |     int palette_done; | 
					
						
							|  |  |  |     int frame_done; | 
					
						
							|  |  |  |     int invalidate; | 
					
						
							|  |  |  |     int sync_error; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void omap_lcd_interrupts(struct omap_lcd_panel_s *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (s->frame_done && (s->interrupts & 1)) { | 
					
						
							|  |  |  |         qemu_irq_raise(s->irq); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->palette_done && (s->interrupts & 2)) { | 
					
						
							|  |  |  |         qemu_irq_raise(s->irq); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->sync_error) { | 
					
						
							|  |  |  |         qemu_irq_raise(s->irq); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     qemu_irq_lower(s->irq); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  | #define draw_line_func drawfn
 | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define DEPTH 32
 | 
					
						
							| 
									
										
										
										
											2013-03-18 17:36:02 +01:00
										 |  |  | #include "omap_lcd_template.h"
 | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-18 01:44:38 +00:00
										 |  |  | static void omap_update_display(void *opaque) | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     struct omap_lcd_panel_s *omap_lcd = (struct omap_lcd_panel_s *) opaque; | 
					
						
							| 
									
										
										
										
											2013-03-05 15:24:14 +01:00
										 |  |  |     DisplaySurface *surface = qemu_console_surface(omap_lcd->con); | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  |     draw_line_func draw_line; | 
					
						
							|  |  |  |     int size, height, first, last; | 
					
						
							|  |  |  |     int width, linesize, step, bpp, frame_offset; | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |     hwaddr frame_base; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 15:24:14 +01:00
										 |  |  |     if (!omap_lcd || omap_lcd->plm == 1 || !omap_lcd->enable || | 
					
						
							|  |  |  |         !surface_bits_per_pixel(surface)) { | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2013-03-05 15:24:14 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     frame_offset = 0; | 
					
						
							|  |  |  |     if (omap_lcd->plm != 2) { | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  |         cpu_physical_memory_read(omap_lcd->dma->phys_framebuffer[ | 
					
						
							|  |  |  |                                   omap_lcd->dma->current_frame], | 
					
						
							|  |  |  |                                  (void *)omap_lcd->palette, 0x200); | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         switch (omap_lcd->palette[0] >> 12 & 7) { | 
					
						
							|  |  |  |         case 3 ... 7: | 
					
						
							|  |  |  |             frame_offset += 0x200; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             frame_offset += 0x20; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Colour depth */ | 
					
						
							|  |  |  |     switch ((omap_lcd->palette[0] >> 12) & 7) { | 
					
						
							|  |  |  |     case 1: | 
					
						
							| 
									
										
										
										
											2016-05-12 13:22:24 +01:00
										 |  |  |         draw_line = draw_line2_32; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         bpp = 2; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 2: | 
					
						
							| 
									
										
										
										
											2016-05-12 13:22:24 +01:00
										 |  |  |         draw_line = draw_line4_32; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         bpp = 4; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 3: | 
					
						
							| 
									
										
										
										
											2016-05-12 13:22:24 +01:00
										 |  |  |         draw_line = draw_line8_32; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         bpp = 8; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 4 ... 7: | 
					
						
							|  |  |  |         if (!omap_lcd->tft) | 
					
						
							| 
									
										
										
										
											2016-05-12 13:22:24 +01:00
										 |  |  |             draw_line = draw_line12_32; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2016-05-12 13:22:24 +01:00
										 |  |  |             draw_line = draw_line16_32; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         bpp = 16; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         /* Unsupported at the moment.  */ | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Resolution */ | 
					
						
							|  |  |  |     width = omap_lcd->width; | 
					
						
							| 
									
										
										
										
											2013-03-05 15:24:14 +01:00
										 |  |  |     if (width != surface_width(surface) || | 
					
						
							|  |  |  |         omap_lcd->height != surface_height(surface)) { | 
					
						
							|  |  |  |         qemu_console_resize(omap_lcd->con, | 
					
						
							| 
									
										
										
										
											2008-07-01 16:24:38 +00:00
										 |  |  |                             omap_lcd->width, omap_lcd->height); | 
					
						
							| 
									
										
										
										
											2013-03-05 15:24:14 +01:00
										 |  |  |         surface = qemu_console_surface(omap_lcd->con); | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         omap_lcd->invalidate = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (omap_lcd->dma->current_frame == 0) | 
					
						
							|  |  |  |         size = omap_lcd->dma->src_f1_bottom - omap_lcd->dma->src_f1_top; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         size = omap_lcd->dma->src_f2_bottom - omap_lcd->dma->src_f2_top; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (frame_offset + ((width * omap_lcd->height * bpp) >> 3) > size + 2) { | 
					
						
							|  |  |  |         omap_lcd->sync_error = 1; | 
					
						
							|  |  |  |         omap_lcd_interrupts(omap_lcd); | 
					
						
							|  |  |  |         omap_lcd->enable = 0; | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Content */ | 
					
						
							|  |  |  |     frame_base = omap_lcd->dma->phys_framebuffer[ | 
					
						
							|  |  |  |             omap_lcd->dma->current_frame] + frame_offset; | 
					
						
							|  |  |  |     omap_lcd->dma->condition |= 1 << omap_lcd->dma->current_frame; | 
					
						
							|  |  |  |     if (omap_lcd->dma->interrupts & 1) | 
					
						
							|  |  |  |         qemu_irq_raise(omap_lcd->dma->irq); | 
					
						
							|  |  |  |     if (omap_lcd->dma->dual) | 
					
						
							|  |  |  |         omap_lcd->dma->current_frame ^= 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-05 15:24:14 +01:00
										 |  |  |     if (!surface_bits_per_pixel(surface)) { | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2013-03-05 15:24:14 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  |     first = 0; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |     height = omap_lcd->height; | 
					
						
							|  |  |  |     if (omap_lcd->subpanel & (1 << 31)) { | 
					
						
							|  |  |  |         if (omap_lcd->subpanel & (1 << 29)) | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  |             first = (omap_lcd->subpanel >> 16) & 0x3ff; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         else | 
					
						
							|  |  |  |             height = (omap_lcd->subpanel >> 16) & 0x3ff; | 
					
						
							|  |  |  |         /* TODO: fill the rest of the panel with DPD */ | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |     step = width * bpp >> 3; | 
					
						
							| 
									
										
										
										
											2013-03-05 15:24:14 +01:00
										 |  |  |     linesize = surface_stride(surface); | 
					
						
							| 
									
										
										
										
											2015-07-13 12:00:29 +02:00
										 |  |  |     if (omap_lcd->invalidate) { | 
					
						
							|  |  |  |         framebuffer_update_memory_section(&omap_lcd->fbsection, | 
					
						
							|  |  |  |                                           omap_lcd->sysmem, frame_base, | 
					
						
							|  |  |  |                                           height, step); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     framebuffer_update_display(surface, &omap_lcd->fbsection, | 
					
						
							|  |  |  |                                width, height, | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  |                                step, linesize, 0, | 
					
						
							|  |  |  |                                omap_lcd->invalidate, | 
					
						
							|  |  |  |                                draw_line, omap_lcd->palette, | 
					
						
							|  |  |  |                                &first, &last); | 
					
						
							| 
									
										
										
										
											2015-07-13 12:00:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  |     if (first >= 0) { | 
					
						
							| 
									
										
										
										
											2013-03-05 15:24:14 +01:00
										 |  |  |         dpy_gfx_update(omap_lcd->con, 0, first, width, last - first + 1); | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  |     omap_lcd->invalidate = 0; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-18 01:44:38 +00:00
										 |  |  | static void omap_invalidate_display(void *opaque) { | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |     struct omap_lcd_panel_s *omap_lcd = opaque; | 
					
						
							|  |  |  |     omap_lcd->invalidate = 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-18 01:44:38 +00:00
										 |  |  | static void omap_lcd_update(struct omap_lcd_panel_s *s) { | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |     if (!s->enable) { | 
					
						
							|  |  |  |         s->dma->current_frame = -1; | 
					
						
							|  |  |  |         s->sync_error = 0; | 
					
						
							|  |  |  |         if (s->plm != 1) | 
					
						
							|  |  |  |             s->frame_done = 1; | 
					
						
							|  |  |  |         omap_lcd_interrupts(s); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->dma->current_frame == -1) { | 
					
						
							|  |  |  |         s->frame_done = 0; | 
					
						
							|  |  |  |         s->palette_done = 0; | 
					
						
							|  |  |  |         s->dma->current_frame = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!s->dma->mpu->port[s->dma->src].addr_valid(s->dma->mpu, | 
					
						
							|  |  |  |                             s->dma->src_f1_top) || | 
					
						
							|  |  |  |                     !s->dma->mpu->port[ | 
					
						
							|  |  |  |                     s->dma->src].addr_valid(s->dma->mpu, | 
					
						
							|  |  |  |                             s->dma->src_f1_bottom) || | 
					
						
							|  |  |  |                     (s->dma->dual && | 
					
						
							|  |  |  |                      (!s->dma->mpu->port[ | 
					
						
							|  |  |  |                       s->dma->src].addr_valid(s->dma->mpu, | 
					
						
							|  |  |  |                               s->dma->src_f2_top) || | 
					
						
							|  |  |  |                       !s->dma->mpu->port[ | 
					
						
							|  |  |  |                       s->dma->src].addr_valid(s->dma->mpu, | 
					
						
							|  |  |  |                               s->dma->src_f2_bottom)))) { | 
					
						
							|  |  |  |         s->dma->condition |= 1 << 2; | 
					
						
							|  |  |  |         if (s->dma->interrupts & (1 << 1)) | 
					
						
							|  |  |  |             qemu_irq_raise(s->dma->irq); | 
					
						
							|  |  |  |         s->enable = 0; | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  |     s->dma->phys_framebuffer[0] = s->dma->src_f1_top; | 
					
						
							|  |  |  |     s->dma->phys_framebuffer[1] = s->dma->src_f2_top; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (s->plm != 2 && !s->palette_done) { | 
					
						
							| 
									
										
										
										
											2009-04-01 12:27:59 +00:00
										 |  |  |         cpu_physical_memory_read( | 
					
						
							|  |  |  |             s->dma->phys_framebuffer[s->dma->current_frame], | 
					
						
							|  |  |  |             (void *)s->palette, 0x200); | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |         s->palette_done = 1; | 
					
						
							|  |  |  |         omap_lcd_interrupts(s); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static uint64_t omap_lcdc_read(void *opaque, hwaddr addr, | 
					
						
							| 
									
										
										
										
											2011-11-28 13:53:36 +01:00
										 |  |  |                                unsigned size) | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     struct omap_lcd_panel_s *s = (struct omap_lcd_panel_s *) opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-01 18:59:50 +00:00
										 |  |  |     switch (addr) { | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |     case 0x00:	/* LCD_CONTROL */ | 
					
						
							|  |  |  |         return (s->tft << 23) | (s->plm << 20) | | 
					
						
							|  |  |  |                 (s->tft << 7) | (s->interrupts << 3) | | 
					
						
							|  |  |  |                 (s->mono << 1) | s->enable | s->ctrl | 0xfe000c34; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x04:	/* LCD_TIMING0 */ | 
					
						
							|  |  |  |         return (s->timing[0] << 10) | (s->width - 1) | 0x0000000f; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x08:	/* LCD_TIMING1 */ | 
					
						
							|  |  |  |         return (s->timing[1] << 10) | (s->height - 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x0c:	/* LCD_TIMING2 */ | 
					
						
							|  |  |  |         return s->timing[2] | 0xfc000000; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x10:	/* LCD_STATUS */ | 
					
						
							|  |  |  |         return (s->palette_done << 6) | (s->sync_error << 2) | s->frame_done; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x14:	/* LCD_SUBPANEL */ | 
					
						
							|  |  |  |         return s->subpanel; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     OMAP_BAD_REG(addr); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static void omap_lcdc_write(void *opaque, hwaddr addr, | 
					
						
							| 
									
										
										
										
											2011-11-28 13:53:36 +01:00
										 |  |  |                             uint64_t value, unsigned size) | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     struct omap_lcd_panel_s *s = (struct omap_lcd_panel_s *) opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-01 18:59:50 +00:00
										 |  |  |     switch (addr) { | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |     case 0x00:	/* LCD_CONTROL */ | 
					
						
							|  |  |  |         s->plm = (value >> 20) & 3; | 
					
						
							|  |  |  |         s->tft = (value >> 7) & 1; | 
					
						
							|  |  |  |         s->interrupts = (value >> 3) & 3; | 
					
						
							|  |  |  |         s->mono = (value >> 1) & 1; | 
					
						
							|  |  |  |         s->ctrl = value & 0x01cff300; | 
					
						
							|  |  |  |         if (s->enable != (value & 1)) { | 
					
						
							|  |  |  |             s->enable = value & 1; | 
					
						
							|  |  |  |             omap_lcd_update(s); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x04:	/* LCD_TIMING0 */ | 
					
						
							|  |  |  |         s->timing[0] = value >> 10; | 
					
						
							|  |  |  |         s->width = (value & 0x3ff) + 1; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x08:	/* LCD_TIMING1 */ | 
					
						
							|  |  |  |         s->timing[1] = value >> 10; | 
					
						
							|  |  |  |         s->height = (value & 0x3ff) + 1; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x0c:	/* LCD_TIMING2 */ | 
					
						
							|  |  |  |         s->timing[2] = value; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x10:	/* LCD_STATUS */ | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x14:	/* LCD_SUBPANEL */ | 
					
						
							|  |  |  |         s->subpanel = value & 0xa1ffffff; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         OMAP_BAD_REG(addr); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-28 13:53:36 +01:00
										 |  |  | static const MemoryRegionOps omap_lcdc_ops = { | 
					
						
							|  |  |  |     .read = omap_lcdc_read, | 
					
						
							|  |  |  |     .write = omap_lcdc_write, | 
					
						
							|  |  |  |     .endianness = DEVICE_NATIVE_ENDIAN, | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void omap_lcdc_reset(struct omap_lcd_panel_s *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     s->dma->current_frame = -1; | 
					
						
							|  |  |  |     s->plm = 0; | 
					
						
							|  |  |  |     s->tft = 0; | 
					
						
							|  |  |  |     s->mono = 0; | 
					
						
							|  |  |  |     s->enable = 0; | 
					
						
							|  |  |  |     s->width = 0; | 
					
						
							|  |  |  |     s->height = 0; | 
					
						
							|  |  |  |     s->interrupts = 0; | 
					
						
							|  |  |  |     s->timing[0] = 0; | 
					
						
							|  |  |  |     s->timing[1] = 0; | 
					
						
							|  |  |  |     s->timing[2] = 0; | 
					
						
							|  |  |  |     s->subpanel = 0; | 
					
						
							|  |  |  |     s->palette_done = 0; | 
					
						
							|  |  |  |     s->frame_done = 0; | 
					
						
							|  |  |  |     s->sync_error = 0; | 
					
						
							|  |  |  |     s->invalidate = 1; | 
					
						
							|  |  |  |     s->subpanel = 0; | 
					
						
							|  |  |  |     s->ctrl = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 14:04:18 +01:00
										 |  |  | static const GraphicHwOps omap_ops = { | 
					
						
							|  |  |  |     .invalidate  = omap_invalidate_display, | 
					
						
							|  |  |  |     .gfx_update  = omap_update_display, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-28 13:53:36 +01:00
										 |  |  | struct omap_lcd_panel_s *omap_lcdc_init(MemoryRegion *sysmem, | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |                                         hwaddr base, | 
					
						
							| 
									
										
										
										
											2011-11-28 13:53:36 +01:00
										 |  |  |                                         qemu_irq irq, | 
					
						
							|  |  |  |                                         struct omap_dma_lcd_channel_s *dma, | 
					
						
							|  |  |  |                                         omap_clk clk) | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | { | 
					
						
							| 
									
										
											  
											
												arm: Use g_new() & friends where that makes obvious sense
g_new(T, n) is neater than g_malloc(sizeof(T) * n).  It's also safer,
for two reasons.  One, it catches multiplication overflowing size_t.
Two, it returns T * rather than void *, which lets the compiler catch
more type errors.
This commit only touches allocations with size arguments of the form
sizeof(T).
Coccinelle semantic patch:
    @@
    type T;
    @@
    -g_malloc(sizeof(T))
    +g_new(T, 1)
    @@
    type T;
    @@
    -g_try_malloc(sizeof(T))
    +g_try_new(T, 1)
    @@
    type T;
    @@
    -g_malloc0(sizeof(T))
    +g_new0(T, 1)
    @@
    type T;
    @@
    -g_try_malloc0(sizeof(T))
    +g_try_new0(T, 1)
    @@
    type T;
    expression n;
    @@
    -g_malloc(sizeof(T) * (n))
    +g_new(T, n)
    @@
    type T;
    expression n;
    @@
    -g_try_malloc(sizeof(T) * (n))
    +g_try_new(T, n)
    @@
    type T;
    expression n;
    @@
    -g_malloc0(sizeof(T) * (n))
    +g_new0(T, n)
    @@
    type T;
    expression n;
    @@
    -g_try_malloc0(sizeof(T) * (n))
    +g_try_new0(T, n)
    @@
    type T;
    expression p, n;
    @@
    -g_realloc(p, sizeof(T) * (n))
    +g_renew(T, p, n)
    @@
    type T;
    expression p, n;
    @@
    -g_try_realloc(p, sizeof(T) * (n))
    +g_try_renew(T, p, n)
    @@
    type T;
    expression n;
    @@
    -(T *)g_new(T, n)
    +g_new(T, n)
    @@
    type T;
    expression n;
    @@
    -(T *)g_new0(T, n)
    +g_new0(T, n)
    @@
    type T;
    expression p, n;
    @@
    -(T *)g_renew(T, p, n)
    +g_renew(T, p, n)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 1440524394-15640-1-git-send-email-armbru@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
											
										 
											2015-09-07 10:39:27 +01:00
										 |  |  |     struct omap_lcd_panel_s *s = g_new0(struct omap_lcd_panel_s, 1); | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->irq = irq; | 
					
						
							|  |  |  |     s->dma = dma; | 
					
						
							| 
									
										
										
										
											2011-12-08 16:00:54 +02:00
										 |  |  |     s->sysmem = sysmem; | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  |     omap_lcdc_reset(s); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-06 05:41:28 -04:00
										 |  |  |     memory_region_init_io(&s->iomem, NULL, &omap_lcdc_ops, s, "omap.lcdc", 0x100); | 
					
						
							| 
									
										
										
										
											2011-11-28 13:53:36 +01:00
										 |  |  |     memory_region_add_subregion(sysmem, base, &s->iomem); | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-24 15:35:21 +01:00
										 |  |  |     s->con = graphic_console_init(NULL, 0, &omap_ops, s); | 
					
						
							| 
									
										
										
										
											2007-07-29 17:57:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return s; | 
					
						
							|  |  |  | } |