Statistics
| Branch: | Revision:

root / hw / sm501.c @ d5aea6f3

History | View | Annotate | Download (41.4 kB)

1 ffd39257 blueswir1
/*
2 ffd39257 blueswir1
 * QEMU SM501 Device
3 ffd39257 blueswir1
 *
4 ffd39257 blueswir1
 * Copyright (c) 2008 Shin-ichiro KAWASAKI
5 ffd39257 blueswir1
 *
6 ffd39257 blueswir1
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 ffd39257 blueswir1
 * of this software and associated documentation files (the "Software"), to deal
8 ffd39257 blueswir1
 * in the Software without restriction, including without limitation the rights
9 ffd39257 blueswir1
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 ffd39257 blueswir1
 * copies of the Software, and to permit persons to whom the Software is
11 ffd39257 blueswir1
 * furnished to do so, subject to the following conditions:
12 ffd39257 blueswir1
 *
13 ffd39257 blueswir1
 * The above copyright notice and this permission notice shall be included in
14 ffd39257 blueswir1
 * all copies or substantial portions of the Software.
15 ffd39257 blueswir1
 *
16 ffd39257 blueswir1
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 ffd39257 blueswir1
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 ffd39257 blueswir1
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 ffd39257 blueswir1
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 ffd39257 blueswir1
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 ffd39257 blueswir1
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 ffd39257 blueswir1
 * THE SOFTWARE.
23 ffd39257 blueswir1
 */
24 ffd39257 blueswir1
25 ffd39257 blueswir1
#include <stdio.h>
26 83c9f4ca Paolo Bonzini
#include "hw/hw.h"
27 83c9f4ca Paolo Bonzini
#include "hw/serial.h"
28 28ecbaee Paolo Bonzini
#include "ui/console.h"
29 83c9f4ca Paolo Bonzini
#include "hw/devices.h"
30 83c9f4ca Paolo Bonzini
#include "hw/sysbus.h"
31 83c9f4ca Paolo Bonzini
#include "hw/qdev-addr.h"
32 1de7afc9 Paolo Bonzini
#include "qemu/range.h"
33 28ecbaee Paolo Bonzini
#include "ui/pixel_ops.h"
34 ffd39257 blueswir1
35 ffd39257 blueswir1
/*
36 604be200 Shin-ichiro KAWASAKI
 * Status: 2010/05/07
37 ffd39257 blueswir1
 *   - Minimum implementation for Linux console : mmio regs and CRT layer.
38 604be200 Shin-ichiro KAWASAKI
 *   - 2D grapihcs acceleration partially supported : only fill rectangle.
39 ffd39257 blueswir1
 *
40 ffd39257 blueswir1
 * TODO:
41 ffd39257 blueswir1
 *   - Panel support
42 ffd39257 blueswir1
 *   - Touch panel support
43 ffd39257 blueswir1
 *   - USB support
44 ffd39257 blueswir1
 *   - UART support
45 604be200 Shin-ichiro KAWASAKI
 *   - More 2D graphics engine support
46 ffd39257 blueswir1
 *   - Performance tuning
47 ffd39257 blueswir1
 */
48 ffd39257 blueswir1
49 ffd39257 blueswir1
//#define DEBUG_SM501
50 ffd39257 blueswir1
//#define DEBUG_BITBLT
51 ffd39257 blueswir1
52 ffd39257 blueswir1
#ifdef DEBUG_SM501
53 001faf32 Blue Swirl
#define SM501_DPRINTF(fmt, ...) printf(fmt, ## __VA_ARGS__)
54 ffd39257 blueswir1
#else
55 001faf32 Blue Swirl
#define SM501_DPRINTF(fmt, ...) do {} while(0)
56 ffd39257 blueswir1
#endif
57 ffd39257 blueswir1
58 ffd39257 blueswir1
59 ffd39257 blueswir1
#define MMIO_BASE_OFFSET 0x3e00000
60 ffd39257 blueswir1
61 ffd39257 blueswir1
/* SM501 register definitions taken from "linux/include/linux/sm501-regs.h" */
62 ffd39257 blueswir1
63 ffd39257 blueswir1
/* System Configuration area */
64 ffd39257 blueswir1
/* System config base */
65 ffd39257 blueswir1
#define SM501_SYS_CONFIG                (0x000000)
66 ffd39257 blueswir1
67 ffd39257 blueswir1
/* config 1 */
68 ffd39257 blueswir1
#define SM501_SYSTEM_CONTROL                 (0x000000)
69 ffd39257 blueswir1
70 ffd39257 blueswir1
#define SM501_SYSCTRL_PANEL_TRISTATE        (1<<0)
71 ffd39257 blueswir1
#define SM501_SYSCTRL_MEM_TRISTATE        (1<<1)
72 ffd39257 blueswir1
#define SM501_SYSCTRL_CRT_TRISTATE        (1<<2)
73 ffd39257 blueswir1
74 ffd39257 blueswir1
#define SM501_SYSCTRL_PCI_SLAVE_BURST_MASK (3<<4)
75 ffd39257 blueswir1
#define SM501_SYSCTRL_PCI_SLAVE_BURST_1        (0<<4)
76 ffd39257 blueswir1
#define SM501_SYSCTRL_PCI_SLAVE_BURST_2        (1<<4)
77 ffd39257 blueswir1
#define SM501_SYSCTRL_PCI_SLAVE_BURST_4        (2<<4)
78 ffd39257 blueswir1
#define SM501_SYSCTRL_PCI_SLAVE_BURST_8        (3<<4)
79 ffd39257 blueswir1
80 ffd39257 blueswir1
#define SM501_SYSCTRL_PCI_CLOCK_RUN_EN        (1<<6)
81 ffd39257 blueswir1
#define SM501_SYSCTRL_PCI_RETRY_DISABLE        (1<<7)
82 ffd39257 blueswir1
#define SM501_SYSCTRL_PCI_SUBSYS_LOCK        (1<<11)
83 ffd39257 blueswir1
#define SM501_SYSCTRL_PCI_BURST_READ_EN        (1<<15)
84 ffd39257 blueswir1
85 ffd39257 blueswir1
/* miscellaneous control */
86 ffd39257 blueswir1
87 ffd39257 blueswir1
#define SM501_MISC_CONTROL                (0x000004)
88 ffd39257 blueswir1
89 ffd39257 blueswir1
#define SM501_MISC_BUS_SH                (0x0)
90 ffd39257 blueswir1
#define SM501_MISC_BUS_PCI                (0x1)
91 ffd39257 blueswir1
#define SM501_MISC_BUS_XSCALE                (0x2)
92 ffd39257 blueswir1
#define SM501_MISC_BUS_NEC                (0x6)
93 ffd39257 blueswir1
#define SM501_MISC_BUS_MASK                (0x7)
94 ffd39257 blueswir1
95 ffd39257 blueswir1
#define SM501_MISC_VR_62MB                (1<<3)
96 ffd39257 blueswir1
#define SM501_MISC_CDR_RESET                (1<<7)
97 ffd39257 blueswir1
#define SM501_MISC_USB_LB                (1<<8)
98 ffd39257 blueswir1
#define SM501_MISC_USB_SLAVE                (1<<9)
99 ffd39257 blueswir1
#define SM501_MISC_BL_1                        (1<<10)
100 ffd39257 blueswir1
#define SM501_MISC_MC                        (1<<11)
101 ffd39257 blueswir1
#define SM501_MISC_DAC_POWER                (1<<12)
102 ffd39257 blueswir1
#define SM501_MISC_IRQ_INVERT                (1<<16)
103 ffd39257 blueswir1
#define SM501_MISC_SH                        (1<<17)
104 ffd39257 blueswir1
105 ffd39257 blueswir1
#define SM501_MISC_HOLD_EMPTY                (0<<18)
106 ffd39257 blueswir1
#define SM501_MISC_HOLD_8                (1<<18)
107 ffd39257 blueswir1
#define SM501_MISC_HOLD_16                (2<<18)
108 ffd39257 blueswir1
#define SM501_MISC_HOLD_24                (3<<18)
109 ffd39257 blueswir1
#define SM501_MISC_HOLD_32                (4<<18)
110 ffd39257 blueswir1
#define SM501_MISC_HOLD_MASK                (7<<18)
111 ffd39257 blueswir1
112 ffd39257 blueswir1
#define SM501_MISC_FREQ_12                (1<<24)
113 ffd39257 blueswir1
#define SM501_MISC_PNL_24BIT                (1<<25)
114 ffd39257 blueswir1
#define SM501_MISC_8051_LE                (1<<26)
115 ffd39257 blueswir1
116 ffd39257 blueswir1
117 ffd39257 blueswir1
118 ffd39257 blueswir1
#define SM501_GPIO31_0_CONTROL                (0x000008)
119 ffd39257 blueswir1
#define SM501_GPIO63_32_CONTROL                (0x00000C)
120 ffd39257 blueswir1
#define SM501_DRAM_CONTROL                (0x000010)
121 ffd39257 blueswir1
122 ffd39257 blueswir1
/* command list */
123 ffd39257 blueswir1
#define SM501_ARBTRTN_CONTROL                (0x000014)
124 ffd39257 blueswir1
125 ffd39257 blueswir1
/* command list */
126 ffd39257 blueswir1
#define SM501_COMMAND_LIST_STATUS        (0x000024)
127 ffd39257 blueswir1
128 ffd39257 blueswir1
/* interrupt debug */
129 ffd39257 blueswir1
#define SM501_RAW_IRQ_STATUS                (0x000028)
130 ffd39257 blueswir1
#define SM501_RAW_IRQ_CLEAR                (0x000028)
131 ffd39257 blueswir1
#define SM501_IRQ_STATUS                (0x00002C)
132 ffd39257 blueswir1
#define SM501_IRQ_MASK                        (0x000030)
133 ffd39257 blueswir1
#define SM501_DEBUG_CONTROL                (0x000034)
134 ffd39257 blueswir1
135 ffd39257 blueswir1
/* power management */
136 ffd39257 blueswir1
#define SM501_POWERMODE_P2X_SRC                (1<<29)
137 ffd39257 blueswir1
#define SM501_POWERMODE_V2X_SRC                (1<<20)
138 ffd39257 blueswir1
#define SM501_POWERMODE_M_SRC                (1<<12)
139 ffd39257 blueswir1
#define SM501_POWERMODE_M1_SRC                (1<<4)
140 ffd39257 blueswir1
141 ffd39257 blueswir1
#define SM501_CURRENT_GATE                (0x000038)
142 ffd39257 blueswir1
#define SM501_CURRENT_CLOCK                (0x00003C)
143 ffd39257 blueswir1
#define SM501_POWER_MODE_0_GATE                (0x000040)
144 ffd39257 blueswir1
#define SM501_POWER_MODE_0_CLOCK        (0x000044)
145 ffd39257 blueswir1
#define SM501_POWER_MODE_1_GATE                (0x000048)
146 ffd39257 blueswir1
#define SM501_POWER_MODE_1_CLOCK        (0x00004C)
147 ffd39257 blueswir1
#define SM501_SLEEP_MODE_GATE                (0x000050)
148 ffd39257 blueswir1
#define SM501_POWER_MODE_CONTROL        (0x000054)
149 ffd39257 blueswir1
150 ffd39257 blueswir1
/* power gates for units within the 501 */
151 ffd39257 blueswir1
#define SM501_GATE_HOST                        (0)
152 ffd39257 blueswir1
#define SM501_GATE_MEMORY                (1)
153 ffd39257 blueswir1
#define SM501_GATE_DISPLAY                (2)
154 ffd39257 blueswir1
#define SM501_GATE_2D_ENGINE                (3)
155 ffd39257 blueswir1
#define SM501_GATE_CSC                        (4)
156 ffd39257 blueswir1
#define SM501_GATE_ZVPORT                (5)
157 ffd39257 blueswir1
#define SM501_GATE_GPIO                        (6)
158 ffd39257 blueswir1
#define SM501_GATE_UART0                (7)
159 ffd39257 blueswir1
#define SM501_GATE_UART1                (8)
160 ffd39257 blueswir1
#define SM501_GATE_SSP                        (10)
161 ffd39257 blueswir1
#define SM501_GATE_USB_HOST                (11)
162 ffd39257 blueswir1
#define SM501_GATE_USB_GADGET                (12)
163 ffd39257 blueswir1
#define SM501_GATE_UCONTROLLER                (17)
164 ffd39257 blueswir1
#define SM501_GATE_AC97                        (18)
165 ffd39257 blueswir1
166 ffd39257 blueswir1
/* panel clock */
167 ffd39257 blueswir1
#define SM501_CLOCK_P2XCLK                (24)
168 ffd39257 blueswir1
/* crt clock */
169 ffd39257 blueswir1
#define SM501_CLOCK_V2XCLK                (16)
170 ffd39257 blueswir1
/* main clock */
171 ffd39257 blueswir1
#define SM501_CLOCK_MCLK                (8)
172 ffd39257 blueswir1
/* SDRAM controller clock */
173 ffd39257 blueswir1
#define SM501_CLOCK_M1XCLK                (0)
174 ffd39257 blueswir1
175 ffd39257 blueswir1
/* config 2 */
176 ffd39257 blueswir1
#define SM501_PCI_MASTER_BASE                (0x000058)
177 ffd39257 blueswir1
#define SM501_ENDIAN_CONTROL                (0x00005C)
178 ffd39257 blueswir1
#define SM501_DEVICEID                        (0x000060)
179 ffd39257 blueswir1
/* 0x050100A0 */
180 ffd39257 blueswir1
181 ffd39257 blueswir1
#define SM501_DEVICEID_SM501                (0x05010000)
182 ffd39257 blueswir1
#define SM501_DEVICEID_IDMASK                (0xffff0000)
183 ffd39257 blueswir1
#define SM501_DEVICEID_REVMASK                (0x000000ff)
184 ffd39257 blueswir1
185 ffd39257 blueswir1
#define SM501_PLLCLOCK_COUNT                (0x000064)
186 ffd39257 blueswir1
#define SM501_MISC_TIMING                (0x000068)
187 ffd39257 blueswir1
#define SM501_CURRENT_SDRAM_CLOCK        (0x00006C)
188 ffd39257 blueswir1
189 ffd39257 blueswir1
#define SM501_PROGRAMMABLE_PLL_CONTROL        (0x000074)
190 ffd39257 blueswir1
191 ffd39257 blueswir1
/* GPIO base */
192 ffd39257 blueswir1
#define SM501_GPIO                        (0x010000)
193 ffd39257 blueswir1
#define SM501_GPIO_DATA_LOW                (0x00)
194 ffd39257 blueswir1
#define SM501_GPIO_DATA_HIGH                (0x04)
195 ffd39257 blueswir1
#define SM501_GPIO_DDR_LOW                (0x08)
196 ffd39257 blueswir1
#define SM501_GPIO_DDR_HIGH                (0x0C)
197 ffd39257 blueswir1
#define SM501_GPIO_IRQ_SETUP                (0x10)
198 ffd39257 blueswir1
#define SM501_GPIO_IRQ_STATUS                (0x14)
199 ffd39257 blueswir1
#define SM501_GPIO_IRQ_RESET                (0x14)
200 ffd39257 blueswir1
201 ffd39257 blueswir1
/* I2C controller base */
202 ffd39257 blueswir1
#define SM501_I2C                        (0x010040)
203 ffd39257 blueswir1
#define SM501_I2C_BYTE_COUNT                (0x00)
204 ffd39257 blueswir1
#define SM501_I2C_CONTROL                (0x01)
205 ffd39257 blueswir1
#define SM501_I2C_STATUS                (0x02)
206 ffd39257 blueswir1
#define SM501_I2C_RESET                        (0x02)
207 ffd39257 blueswir1
#define SM501_I2C_SLAVE_ADDRESS                (0x03)
208 ffd39257 blueswir1
#define SM501_I2C_DATA                        (0x04)
209 ffd39257 blueswir1
210 ffd39257 blueswir1
/* SSP base */
211 ffd39257 blueswir1
#define SM501_SSP                        (0x020000)
212 ffd39257 blueswir1
213 ffd39257 blueswir1
/* Uart 0 base */
214 ffd39257 blueswir1
#define SM501_UART0                        (0x030000)
215 ffd39257 blueswir1
216 ffd39257 blueswir1
/* Uart 1 base */
217 ffd39257 blueswir1
#define SM501_UART1                        (0x030020)
218 ffd39257 blueswir1
219 ffd39257 blueswir1
/* USB host port base */
220 ffd39257 blueswir1
#define SM501_USB_HOST                        (0x040000)
221 ffd39257 blueswir1
222 ffd39257 blueswir1
/* USB slave/gadget base */
223 ffd39257 blueswir1
#define SM501_USB_GADGET                (0x060000)
224 ffd39257 blueswir1
225 ffd39257 blueswir1
/* USB slave/gadget data port base */
226 ffd39257 blueswir1
#define SM501_USB_GADGET_DATA                (0x070000)
227 ffd39257 blueswir1
228 ffd39257 blueswir1
/* Display controller/video engine base */
229 ffd39257 blueswir1
#define SM501_DC                        (0x080000)
230 ffd39257 blueswir1
231 ffd39257 blueswir1
/* common defines for the SM501 address registers */
232 ffd39257 blueswir1
#define SM501_ADDR_FLIP                        (1<<31)
233 ffd39257 blueswir1
#define SM501_ADDR_EXT                        (1<<27)
234 ffd39257 blueswir1
#define SM501_ADDR_CS1                        (1<<26)
235 ffd39257 blueswir1
#define SM501_ADDR_MASK                        (0x3f << 26)
236 ffd39257 blueswir1
237 ffd39257 blueswir1
#define SM501_FIFO_MASK                        (0x3 << 16)
238 ffd39257 blueswir1
#define SM501_FIFO_1                        (0x0 << 16)
239 ffd39257 blueswir1
#define SM501_FIFO_3                        (0x1 << 16)
240 ffd39257 blueswir1
#define SM501_FIFO_7                        (0x2 << 16)
241 ffd39257 blueswir1
#define SM501_FIFO_11                        (0x3 << 16)
242 ffd39257 blueswir1
243 ffd39257 blueswir1
/* common registers for panel and the crt */
244 ffd39257 blueswir1
#define SM501_OFF_DC_H_TOT                (0x000)
245 ffd39257 blueswir1
#define SM501_OFF_DC_V_TOT                (0x008)
246 ffd39257 blueswir1
#define SM501_OFF_DC_H_SYNC                (0x004)
247 ffd39257 blueswir1
#define SM501_OFF_DC_V_SYNC                (0x00C)
248 ffd39257 blueswir1
249 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL                (0x000)
250 ffd39257 blueswir1
251 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_FPEN        (1<<27)
252 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_BIAS        (1<<26)
253 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_DATA        (1<<25)
254 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_VDD        (1<<24)
255 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_DP        (1<<23)
256 ffd39257 blueswir1
257 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_TFT_888        (0<<21)
258 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_TFT_333        (1<<21)
259 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_TFT_444        (2<<21)
260 ffd39257 blueswir1
261 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_DE        (1<<20)
262 ffd39257 blueswir1
263 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_LCD_TFT        (0<<18)
264 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_LCD_STN8        (1<<18)
265 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_LCD_STN12 (2<<18)
266 ffd39257 blueswir1
267 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_CP        (1<<14)
268 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_VSP        (1<<13)
269 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_HSP        (1<<12)
270 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_CK        (1<<9)
271 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_TE        (1<<8)
272 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_VPD        (1<<7)
273 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_VP        (1<<6)
274 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_HPD        (1<<5)
275 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_HP        (1<<4)
276 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_GAMMA        (1<<3)
277 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_EN        (1<<2)
278 ffd39257 blueswir1
279 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_8BPP        (0<<0)
280 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_16BPP        (1<<0)
281 ffd39257 blueswir1
#define SM501_DC_PANEL_CONTROL_32BPP        (2<<0)
282 ffd39257 blueswir1
283 ffd39257 blueswir1
284 ffd39257 blueswir1
#define SM501_DC_PANEL_PANNING_CONTROL        (0x004)
285 ffd39257 blueswir1
#define SM501_DC_PANEL_COLOR_KEY        (0x008)
286 ffd39257 blueswir1
#define SM501_DC_PANEL_FB_ADDR                (0x00C)
287 ffd39257 blueswir1
#define SM501_DC_PANEL_FB_OFFSET        (0x010)
288 ffd39257 blueswir1
#define SM501_DC_PANEL_FB_WIDTH                (0x014)
289 ffd39257 blueswir1
#define SM501_DC_PANEL_FB_HEIGHT        (0x018)
290 ffd39257 blueswir1
#define SM501_DC_PANEL_TL_LOC                (0x01C)
291 ffd39257 blueswir1
#define SM501_DC_PANEL_BR_LOC                (0x020)
292 ffd39257 blueswir1
#define SM501_DC_PANEL_H_TOT                (0x024)
293 ffd39257 blueswir1
#define SM501_DC_PANEL_H_SYNC                (0x028)
294 ffd39257 blueswir1
#define SM501_DC_PANEL_V_TOT                (0x02C)
295 ffd39257 blueswir1
#define SM501_DC_PANEL_V_SYNC                (0x030)
296 ffd39257 blueswir1
#define SM501_DC_PANEL_CUR_LINE                (0x034)
297 ffd39257 blueswir1
298 ffd39257 blueswir1
#define SM501_DC_VIDEO_CONTROL                (0x040)
299 ffd39257 blueswir1
#define SM501_DC_VIDEO_FB0_ADDR                (0x044)
300 ffd39257 blueswir1
#define SM501_DC_VIDEO_FB_WIDTH                (0x048)
301 ffd39257 blueswir1
#define SM501_DC_VIDEO_FB0_LAST_ADDR        (0x04C)
302 ffd39257 blueswir1
#define SM501_DC_VIDEO_TL_LOC                (0x050)
303 ffd39257 blueswir1
#define SM501_DC_VIDEO_BR_LOC                (0x054)
304 ffd39257 blueswir1
#define SM501_DC_VIDEO_SCALE                (0x058)
305 ffd39257 blueswir1
#define SM501_DC_VIDEO_INIT_SCALE        (0x05C)
306 ffd39257 blueswir1
#define SM501_DC_VIDEO_YUV_CONSTANTS        (0x060)
307 ffd39257 blueswir1
#define SM501_DC_VIDEO_FB1_ADDR                (0x064)
308 ffd39257 blueswir1
#define SM501_DC_VIDEO_FB1_LAST_ADDR        (0x068)
309 ffd39257 blueswir1
310 ffd39257 blueswir1
#define SM501_DC_VIDEO_ALPHA_CONTROL        (0x080)
311 ffd39257 blueswir1
#define SM501_DC_VIDEO_ALPHA_FB_ADDR        (0x084)
312 ffd39257 blueswir1
#define SM501_DC_VIDEO_ALPHA_FB_OFFSET        (0x088)
313 ffd39257 blueswir1
#define SM501_DC_VIDEO_ALPHA_FB_LAST_ADDR        (0x08C)
314 ffd39257 blueswir1
#define SM501_DC_VIDEO_ALPHA_TL_LOC        (0x090)
315 ffd39257 blueswir1
#define SM501_DC_VIDEO_ALPHA_BR_LOC        (0x094)
316 ffd39257 blueswir1
#define SM501_DC_VIDEO_ALPHA_SCALE        (0x098)
317 ffd39257 blueswir1
#define SM501_DC_VIDEO_ALPHA_INIT_SCALE        (0x09C)
318 ffd39257 blueswir1
#define SM501_DC_VIDEO_ALPHA_CHROMA_KEY        (0x0A0)
319 ffd39257 blueswir1
#define SM501_DC_VIDEO_ALPHA_COLOR_LOOKUP        (0x0A4)
320 ffd39257 blueswir1
321 ffd39257 blueswir1
#define SM501_DC_PANEL_HWC_BASE                (0x0F0)
322 ffd39257 blueswir1
#define SM501_DC_PANEL_HWC_ADDR                (0x0F0)
323 ffd39257 blueswir1
#define SM501_DC_PANEL_HWC_LOC                (0x0F4)
324 ffd39257 blueswir1
#define SM501_DC_PANEL_HWC_COLOR_1_2        (0x0F8)
325 ffd39257 blueswir1
#define SM501_DC_PANEL_HWC_COLOR_3        (0x0FC)
326 ffd39257 blueswir1
327 ffd39257 blueswir1
#define SM501_HWC_EN                        (1<<31)
328 ffd39257 blueswir1
329 ffd39257 blueswir1
#define SM501_OFF_HWC_ADDR                (0x00)
330 ffd39257 blueswir1
#define SM501_OFF_HWC_LOC                (0x04)
331 ffd39257 blueswir1
#define SM501_OFF_HWC_COLOR_1_2                (0x08)
332 ffd39257 blueswir1
#define SM501_OFF_HWC_COLOR_3                (0x0C)
333 ffd39257 blueswir1
334 ffd39257 blueswir1
#define SM501_DC_ALPHA_CONTROL                (0x100)
335 ffd39257 blueswir1
#define SM501_DC_ALPHA_FB_ADDR                (0x104)
336 ffd39257 blueswir1
#define SM501_DC_ALPHA_FB_OFFSET        (0x108)
337 ffd39257 blueswir1
#define SM501_DC_ALPHA_TL_LOC                (0x10C)
338 ffd39257 blueswir1
#define SM501_DC_ALPHA_BR_LOC                (0x110)
339 ffd39257 blueswir1
#define SM501_DC_ALPHA_CHROMA_KEY        (0x114)
340 ffd39257 blueswir1
#define SM501_DC_ALPHA_COLOR_LOOKUP        (0x118)
341 ffd39257 blueswir1
342 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL                (0x200)
343 ffd39257 blueswir1
344 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_TVP        (1<<15)
345 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_CP                (1<<14)
346 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_VSP        (1<<13)
347 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_HSP        (1<<12)
348 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_VS                (1<<11)
349 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_BLANK        (1<<10)
350 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_SEL        (1<<9)
351 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_TE                (1<<8)
352 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_PIXEL_MASK (0xF << 4)
353 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_GAMMA        (1<<3)
354 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_ENABLE        (1<<2)
355 ffd39257 blueswir1
356 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_8BPP        (0<<0)
357 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_16BPP        (1<<0)
358 ffd39257 blueswir1
#define SM501_DC_CRT_CONTROL_32BPP        (2<<0)
359 ffd39257 blueswir1
360 ffd39257 blueswir1
#define SM501_DC_CRT_FB_ADDR                (0x204)
361 ffd39257 blueswir1
#define SM501_DC_CRT_FB_OFFSET                (0x208)
362 ffd39257 blueswir1
#define SM501_DC_CRT_H_TOT                (0x20C)
363 ffd39257 blueswir1
#define SM501_DC_CRT_H_SYNC                (0x210)
364 ffd39257 blueswir1
#define SM501_DC_CRT_V_TOT                (0x214)
365 ffd39257 blueswir1
#define SM501_DC_CRT_V_SYNC                (0x218)
366 ffd39257 blueswir1
#define SM501_DC_CRT_SIGNATURE_ANALYZER        (0x21C)
367 ffd39257 blueswir1
#define SM501_DC_CRT_CUR_LINE                (0x220)
368 ffd39257 blueswir1
#define SM501_DC_CRT_MONITOR_DETECT        (0x224)
369 ffd39257 blueswir1
370 ffd39257 blueswir1
#define SM501_DC_CRT_HWC_BASE                (0x230)
371 ffd39257 blueswir1
#define SM501_DC_CRT_HWC_ADDR                (0x230)
372 ffd39257 blueswir1
#define SM501_DC_CRT_HWC_LOC                (0x234)
373 ffd39257 blueswir1
#define SM501_DC_CRT_HWC_COLOR_1_2        (0x238)
374 ffd39257 blueswir1
#define SM501_DC_CRT_HWC_COLOR_3        (0x23C)
375 ffd39257 blueswir1
376 ffd39257 blueswir1
#define SM501_DC_PANEL_PALETTE                (0x400)
377 ffd39257 blueswir1
378 ffd39257 blueswir1
#define SM501_DC_VIDEO_PALETTE                (0x800)
379 ffd39257 blueswir1
380 ffd39257 blueswir1
#define SM501_DC_CRT_PALETTE                (0xC00)
381 ffd39257 blueswir1
382 ffd39257 blueswir1
/* Zoom Video port base */
383 ffd39257 blueswir1
#define SM501_ZVPORT                        (0x090000)
384 ffd39257 blueswir1
385 ffd39257 blueswir1
/* AC97/I2S base */
386 ffd39257 blueswir1
#define SM501_AC97                        (0x0A0000)
387 ffd39257 blueswir1
388 ffd39257 blueswir1
/* 8051 micro controller base */
389 ffd39257 blueswir1
#define SM501_UCONTROLLER                (0x0B0000)
390 ffd39257 blueswir1
391 ffd39257 blueswir1
/* 8051 micro controller SRAM base */
392 ffd39257 blueswir1
#define SM501_UCONTROLLER_SRAM                (0x0C0000)
393 ffd39257 blueswir1
394 ffd39257 blueswir1
/* DMA base */
395 ffd39257 blueswir1
#define SM501_DMA                        (0x0D0000)
396 ffd39257 blueswir1
397 ffd39257 blueswir1
/* 2d engine base */
398 ffd39257 blueswir1
#define SM501_2D_ENGINE                        (0x100000)
399 ffd39257 blueswir1
#define SM501_2D_SOURCE                        (0x00)
400 ffd39257 blueswir1
#define SM501_2D_DESTINATION                (0x04)
401 ffd39257 blueswir1
#define SM501_2D_DIMENSION                (0x08)
402 ffd39257 blueswir1
#define SM501_2D_CONTROL                (0x0C)
403 ffd39257 blueswir1
#define SM501_2D_PITCH                        (0x10)
404 ffd39257 blueswir1
#define SM501_2D_FOREGROUND                (0x14)
405 ffd39257 blueswir1
#define SM501_2D_BACKGROUND                (0x18)
406 ffd39257 blueswir1
#define SM501_2D_STRETCH                (0x1C)
407 ffd39257 blueswir1
#define SM501_2D_COLOR_COMPARE                (0x20)
408 ffd39257 blueswir1
#define SM501_2D_COLOR_COMPARE_MASK         (0x24)
409 ffd39257 blueswir1
#define SM501_2D_MASK                        (0x28)
410 ffd39257 blueswir1
#define SM501_2D_CLIP_TL                (0x2C)
411 ffd39257 blueswir1
#define SM501_2D_CLIP_BR                (0x30)
412 ffd39257 blueswir1
#define SM501_2D_MONO_PATTERN_LOW        (0x34)
413 ffd39257 blueswir1
#define SM501_2D_MONO_PATTERN_HIGH        (0x38)
414 ffd39257 blueswir1
#define SM501_2D_WINDOW_WIDTH                (0x3C)
415 ffd39257 blueswir1
#define SM501_2D_SOURCE_BASE                (0x40)
416 ffd39257 blueswir1
#define SM501_2D_DESTINATION_BASE        (0x44)
417 ffd39257 blueswir1
#define SM501_2D_ALPHA                        (0x48)
418 ffd39257 blueswir1
#define SM501_2D_WRAP                        (0x4C)
419 ffd39257 blueswir1
#define SM501_2D_STATUS                        (0x50)
420 ffd39257 blueswir1
421 ffd39257 blueswir1
#define SM501_CSC_Y_SOURCE_BASE                (0xC8)
422 ffd39257 blueswir1
#define SM501_CSC_CONSTANTS                (0xCC)
423 ffd39257 blueswir1
#define SM501_CSC_Y_SOURCE_X                (0xD0)
424 ffd39257 blueswir1
#define SM501_CSC_Y_SOURCE_Y                (0xD4)
425 ffd39257 blueswir1
#define SM501_CSC_U_SOURCE_BASE                (0xD8)
426 ffd39257 blueswir1
#define SM501_CSC_V_SOURCE_BASE                (0xDC)
427 ffd39257 blueswir1
#define SM501_CSC_SOURCE_DIMENSION        (0xE0)
428 ffd39257 blueswir1
#define SM501_CSC_SOURCE_PITCH                (0xE4)
429 ffd39257 blueswir1
#define SM501_CSC_DESTINATION                (0xE8)
430 ffd39257 blueswir1
#define SM501_CSC_DESTINATION_DIMENSION        (0xEC)
431 ffd39257 blueswir1
#define SM501_CSC_DESTINATION_PITCH        (0xF0)
432 ffd39257 blueswir1
#define SM501_CSC_SCALE_FACTOR                (0xF4)
433 ffd39257 blueswir1
#define SM501_CSC_DESTINATION_BASE        (0xF8)
434 ffd39257 blueswir1
#define SM501_CSC_CONTROL                (0xFC)
435 ffd39257 blueswir1
436 ffd39257 blueswir1
/* 2d engine data port base */
437 ffd39257 blueswir1
#define SM501_2D_ENGINE_DATA                (0x110000)
438 ffd39257 blueswir1
439 ffd39257 blueswir1
/* end of register definitions */
440 ffd39257 blueswir1
441 0a4e7cd2 Shin-ichiro KAWASAKI
#define SM501_HWC_WIDTH                       (64)
442 0a4e7cd2 Shin-ichiro KAWASAKI
#define SM501_HWC_HEIGHT                      (64)
443 ffd39257 blueswir1
444 ffd39257 blueswir1
/* SM501 local memory size taken from "linux/drivers/mfd/sm501.c" */
445 ffd39257 blueswir1
static const uint32_t sm501_mem_local_size[] = {
446 ffd39257 blueswir1
        [0]        = 4*1024*1024,
447 ffd39257 blueswir1
        [1]        = 8*1024*1024,
448 ffd39257 blueswir1
        [2]        = 16*1024*1024,
449 ffd39257 blueswir1
        [3]        = 32*1024*1024,
450 ffd39257 blueswir1
        [4]        = 64*1024*1024,
451 ffd39257 blueswir1
        [5]        = 2*1024*1024,
452 ffd39257 blueswir1
};
453 ffd39257 blueswir1
#define get_local_mem_size(s) sm501_mem_local_size[(s)->local_mem_size_index]
454 ffd39257 blueswir1
455 ffd39257 blueswir1
typedef struct SM501State {
456 ffd39257 blueswir1
    /* graphic console status */
457 c78f7137 Gerd Hoffmann
    QemuConsole *con;
458 ffd39257 blueswir1
459 ffd39257 blueswir1
    /* status & internal resources */
460 a8170e5e Avi Kivity
    hwaddr base;
461 ffd39257 blueswir1
    uint32_t local_mem_size_index;
462 ffd39257 blueswir1
    uint8_t * local_mem;
463 25793bfa Avi Kivity
    MemoryRegion local_mem_region;
464 ffd39257 blueswir1
    uint32_t last_width;
465 ffd39257 blueswir1
    uint32_t last_height;
466 ffd39257 blueswir1
467 ffd39257 blueswir1
    /* mmio registers */
468 ffd39257 blueswir1
    uint32_t system_control;
469 ffd39257 blueswir1
    uint32_t misc_control;
470 ffd39257 blueswir1
    uint32_t gpio_31_0_control;
471 ffd39257 blueswir1
    uint32_t gpio_63_32_control;
472 ffd39257 blueswir1
    uint32_t dram_control;
473 ffd39257 blueswir1
    uint32_t irq_mask;
474 ffd39257 blueswir1
    uint32_t misc_timing;
475 ffd39257 blueswir1
    uint32_t power_mode_control;
476 ffd39257 blueswir1
477 ffd39257 blueswir1
    uint32_t uart0_ier;
478 ffd39257 blueswir1
    uint32_t uart0_lcr;
479 ffd39257 blueswir1
    uint32_t uart0_mcr;
480 ffd39257 blueswir1
    uint32_t uart0_scr;
481 ffd39257 blueswir1
482 ffd39257 blueswir1
    uint8_t dc_palette[0x400 * 3];
483 ffd39257 blueswir1
484 ffd39257 blueswir1
    uint32_t dc_panel_control;
485 ffd39257 blueswir1
    uint32_t dc_panel_panning_control;
486 ffd39257 blueswir1
    uint32_t dc_panel_fb_addr;
487 ffd39257 blueswir1
    uint32_t dc_panel_fb_offset;
488 ffd39257 blueswir1
    uint32_t dc_panel_fb_width;
489 ffd39257 blueswir1
    uint32_t dc_panel_fb_height;
490 ffd39257 blueswir1
    uint32_t dc_panel_tl_location;
491 ffd39257 blueswir1
    uint32_t dc_panel_br_location;
492 ffd39257 blueswir1
    uint32_t dc_panel_h_total;
493 ffd39257 blueswir1
    uint32_t dc_panel_h_sync;
494 ffd39257 blueswir1
    uint32_t dc_panel_v_total;
495 ffd39257 blueswir1
    uint32_t dc_panel_v_sync;
496 ffd39257 blueswir1
497 ffd39257 blueswir1
    uint32_t dc_panel_hwc_addr;
498 ffd39257 blueswir1
    uint32_t dc_panel_hwc_location;
499 ffd39257 blueswir1
    uint32_t dc_panel_hwc_color_1_2;
500 ffd39257 blueswir1
    uint32_t dc_panel_hwc_color_3;
501 ffd39257 blueswir1
502 ffd39257 blueswir1
    uint32_t dc_crt_control;
503 ffd39257 blueswir1
    uint32_t dc_crt_fb_addr;
504 ffd39257 blueswir1
    uint32_t dc_crt_fb_offset;
505 ffd39257 blueswir1
    uint32_t dc_crt_h_total;
506 ffd39257 blueswir1
    uint32_t dc_crt_h_sync;
507 ffd39257 blueswir1
    uint32_t dc_crt_v_total;
508 ffd39257 blueswir1
    uint32_t dc_crt_v_sync;
509 ffd39257 blueswir1
510 ffd39257 blueswir1
    uint32_t dc_crt_hwc_addr;
511 ffd39257 blueswir1
    uint32_t dc_crt_hwc_location;
512 ffd39257 blueswir1
    uint32_t dc_crt_hwc_color_1_2;
513 ffd39257 blueswir1
    uint32_t dc_crt_hwc_color_3;
514 ffd39257 blueswir1
515 07d8a50c Aurelien Jarno
    uint32_t twoD_source;
516 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_destination;
517 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_dimension;
518 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_control;
519 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_pitch;
520 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_foreground;
521 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_stretch;
522 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_color_compare_mask;
523 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_mask;
524 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_window_width;
525 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_source_base;
526 604be200 Shin-ichiro KAWASAKI
    uint32_t twoD_destination_base;
527 604be200 Shin-ichiro KAWASAKI
528 ffd39257 blueswir1
} SM501State;
529 ffd39257 blueswir1
530 ffd39257 blueswir1
static uint32_t get_local_mem_size_index(uint32_t size)
531 ffd39257 blueswir1
{
532 ffd39257 blueswir1
    uint32_t norm_size = 0;
533 ffd39257 blueswir1
    int i, index = 0;
534 ffd39257 blueswir1
535 b1503cda malc
    for (i = 0; i < ARRAY_SIZE(sm501_mem_local_size); i++) {
536 ffd39257 blueswir1
        uint32_t new_size = sm501_mem_local_size[i];
537 ffd39257 blueswir1
        if (new_size >= size) {
538 ffd39257 blueswir1
            if (norm_size == 0 || norm_size > new_size) {
539 ffd39257 blueswir1
                norm_size = new_size;
540 ffd39257 blueswir1
                index = i;
541 ffd39257 blueswir1
            }
542 ffd39257 blueswir1
        }
543 ffd39257 blueswir1
    }
544 ffd39257 blueswir1
545 ffd39257 blueswir1
    return index;
546 ffd39257 blueswir1
}
547 ffd39257 blueswir1
548 0a4e7cd2 Shin-ichiro KAWASAKI
/**
549 0a4e7cd2 Shin-ichiro KAWASAKI
 * Check the availability of hardware cursor.
550 0a4e7cd2 Shin-ichiro KAWASAKI
 * @param crt  0 for PANEL, 1 for CRT.
551 0a4e7cd2 Shin-ichiro KAWASAKI
 */
552 0a4e7cd2 Shin-ichiro KAWASAKI
static inline int is_hwc_enabled(SM501State *state, int crt)
553 0a4e7cd2 Shin-ichiro KAWASAKI
{
554 0a4e7cd2 Shin-ichiro KAWASAKI
    uint32_t addr = crt ? state->dc_crt_hwc_addr : state->dc_panel_hwc_addr;
555 0a4e7cd2 Shin-ichiro KAWASAKI
    return addr & 0x80000000;
556 0a4e7cd2 Shin-ichiro KAWASAKI
}
557 0a4e7cd2 Shin-ichiro KAWASAKI
558 0a4e7cd2 Shin-ichiro KAWASAKI
/**
559 0a4e7cd2 Shin-ichiro KAWASAKI
 * Get the address which holds cursor pattern data.
560 0a4e7cd2 Shin-ichiro KAWASAKI
 * @param crt  0 for PANEL, 1 for CRT.
561 0a4e7cd2 Shin-ichiro KAWASAKI
 */
562 0a4e7cd2 Shin-ichiro KAWASAKI
static inline uint32_t get_hwc_address(SM501State *state, int crt)
563 0a4e7cd2 Shin-ichiro KAWASAKI
{
564 0a4e7cd2 Shin-ichiro KAWASAKI
    uint32_t addr = crt ? state->dc_crt_hwc_addr : state->dc_panel_hwc_addr;
565 0a4e7cd2 Shin-ichiro KAWASAKI
    return (addr & 0x03FFFFF0)/* >> 4*/;
566 0a4e7cd2 Shin-ichiro KAWASAKI
}
567 0a4e7cd2 Shin-ichiro KAWASAKI
568 0a4e7cd2 Shin-ichiro KAWASAKI
/**
569 0a4e7cd2 Shin-ichiro KAWASAKI
 * Get the cursor position in y coordinate.
570 0a4e7cd2 Shin-ichiro KAWASAKI
 * @param crt  0 for PANEL, 1 for CRT.
571 0a4e7cd2 Shin-ichiro KAWASAKI
 */
572 0a4e7cd2 Shin-ichiro KAWASAKI
static inline uint32_t get_hwc_y(SM501State *state, int crt)
573 0a4e7cd2 Shin-ichiro KAWASAKI
{
574 0a4e7cd2 Shin-ichiro KAWASAKI
    uint32_t location = crt ? state->dc_crt_hwc_location
575 0a4e7cd2 Shin-ichiro KAWASAKI
                            : state->dc_panel_hwc_location;
576 0a4e7cd2 Shin-ichiro KAWASAKI
    return (location & 0x07FF0000) >> 16;
577 0a4e7cd2 Shin-ichiro KAWASAKI
}
578 0a4e7cd2 Shin-ichiro KAWASAKI
579 0a4e7cd2 Shin-ichiro KAWASAKI
/**
580 0a4e7cd2 Shin-ichiro KAWASAKI
 * Get the cursor position in x coordinate.
581 0a4e7cd2 Shin-ichiro KAWASAKI
 * @param crt  0 for PANEL, 1 for CRT.
582 0a4e7cd2 Shin-ichiro KAWASAKI
 */
583 0a4e7cd2 Shin-ichiro KAWASAKI
static inline uint32_t get_hwc_x(SM501State *state, int crt)
584 0a4e7cd2 Shin-ichiro KAWASAKI
{
585 0a4e7cd2 Shin-ichiro KAWASAKI
    uint32_t location = crt ? state->dc_crt_hwc_location
586 0a4e7cd2 Shin-ichiro KAWASAKI
                            : state->dc_panel_hwc_location;
587 0a4e7cd2 Shin-ichiro KAWASAKI
    return location & 0x000007FF;
588 0a4e7cd2 Shin-ichiro KAWASAKI
}
589 0a4e7cd2 Shin-ichiro KAWASAKI
590 0a4e7cd2 Shin-ichiro KAWASAKI
/**
591 0a4e7cd2 Shin-ichiro KAWASAKI
 * Get the cursor position in x coordinate.
592 0a4e7cd2 Shin-ichiro KAWASAKI
 * @param crt  0 for PANEL, 1 for CRT.
593 0a4e7cd2 Shin-ichiro KAWASAKI
 * @param index  0, 1, 2 or 3 which specifies color of corsor dot.
594 0a4e7cd2 Shin-ichiro KAWASAKI
 */
595 0a4e7cd2 Shin-ichiro KAWASAKI
static inline uint16_t get_hwc_color(SM501State *state, int crt, int index)
596 0a4e7cd2 Shin-ichiro KAWASAKI
{
597 c2780865 Stefan Weil
    uint32_t color_reg = 0;
598 0a4e7cd2 Shin-ichiro KAWASAKI
    uint16_t color_565 = 0;
599 0a4e7cd2 Shin-ichiro KAWASAKI
600 0a4e7cd2 Shin-ichiro KAWASAKI
    if (index == 0) {
601 0a4e7cd2 Shin-ichiro KAWASAKI
        return 0;
602 0a4e7cd2 Shin-ichiro KAWASAKI
    }
603 0a4e7cd2 Shin-ichiro KAWASAKI
604 0a4e7cd2 Shin-ichiro KAWASAKI
    switch (index) {
605 0a4e7cd2 Shin-ichiro KAWASAKI
    case 1:
606 0a4e7cd2 Shin-ichiro KAWASAKI
    case 2:
607 0a4e7cd2 Shin-ichiro KAWASAKI
        color_reg = crt ? state->dc_crt_hwc_color_1_2
608 0a4e7cd2 Shin-ichiro KAWASAKI
                        : state->dc_panel_hwc_color_1_2;
609 0a4e7cd2 Shin-ichiro KAWASAKI
        break;
610 0a4e7cd2 Shin-ichiro KAWASAKI
    case 3:
611 0a4e7cd2 Shin-ichiro KAWASAKI
        color_reg = crt ? state->dc_crt_hwc_color_3
612 0a4e7cd2 Shin-ichiro KAWASAKI
                        : state->dc_panel_hwc_color_3;
613 0a4e7cd2 Shin-ichiro KAWASAKI
        break;
614 0a4e7cd2 Shin-ichiro KAWASAKI
    default:
615 0a4e7cd2 Shin-ichiro KAWASAKI
        printf("invalid hw cursor color.\n");
616 43dc2a64 Blue Swirl
        abort();
617 0a4e7cd2 Shin-ichiro KAWASAKI
    }
618 0a4e7cd2 Shin-ichiro KAWASAKI
619 0a4e7cd2 Shin-ichiro KAWASAKI
    switch (index) {
620 0a4e7cd2 Shin-ichiro KAWASAKI
    case 1:
621 0a4e7cd2 Shin-ichiro KAWASAKI
    case 3:
622 0a4e7cd2 Shin-ichiro KAWASAKI
        color_565 = (uint16_t)(color_reg & 0xFFFF);
623 0a4e7cd2 Shin-ichiro KAWASAKI
        break;
624 0a4e7cd2 Shin-ichiro KAWASAKI
    case 2:
625 0a4e7cd2 Shin-ichiro KAWASAKI
        color_565 = (uint16_t)((color_reg >> 16) & 0xFFFF);
626 0a4e7cd2 Shin-ichiro KAWASAKI
        break;
627 0a4e7cd2 Shin-ichiro KAWASAKI
    }
628 0a4e7cd2 Shin-ichiro KAWASAKI
    return color_565;
629 0a4e7cd2 Shin-ichiro KAWASAKI
}
630 0a4e7cd2 Shin-ichiro KAWASAKI
631 0a4e7cd2 Shin-ichiro KAWASAKI
static int within_hwc_y_range(SM501State *state, int y, int crt)
632 0a4e7cd2 Shin-ichiro KAWASAKI
{
633 0a4e7cd2 Shin-ichiro KAWASAKI
    int hwc_y = get_hwc_y(state, crt);
634 0a4e7cd2 Shin-ichiro KAWASAKI
    return (hwc_y <= y && y < hwc_y + SM501_HWC_HEIGHT);
635 0a4e7cd2 Shin-ichiro KAWASAKI
}
636 0a4e7cd2 Shin-ichiro KAWASAKI
637 604be200 Shin-ichiro KAWASAKI
static void sm501_2d_operation(SM501State * s)
638 604be200 Shin-ichiro KAWASAKI
{
639 604be200 Shin-ichiro KAWASAKI
    /* obtain operation parameters */
640 604be200 Shin-ichiro KAWASAKI
    int operation = (s->twoD_control >> 16) & 0x1f;
641 07d8a50c Aurelien Jarno
    int rtl = s->twoD_control & 0x8000000;
642 07d8a50c Aurelien Jarno
    int src_x = (s->twoD_source >> 16) & 0x01FFF;
643 07d8a50c Aurelien Jarno
    int src_y = s->twoD_source & 0xFFFF;
644 604be200 Shin-ichiro KAWASAKI
    int dst_x = (s->twoD_destination >> 16) & 0x01FFF;
645 604be200 Shin-ichiro KAWASAKI
    int dst_y = s->twoD_destination & 0xFFFF;
646 604be200 Shin-ichiro KAWASAKI
    int operation_width = (s->twoD_dimension >> 16) & 0x1FFF;
647 604be200 Shin-ichiro KAWASAKI
    int operation_height = s->twoD_dimension & 0xFFFF;
648 604be200 Shin-ichiro KAWASAKI
    uint32_t color = s->twoD_foreground;
649 604be200 Shin-ichiro KAWASAKI
    int format_flags = (s->twoD_stretch >> 20) & 0x3;
650 604be200 Shin-ichiro KAWASAKI
    int addressing = (s->twoD_stretch >> 16) & 0xF;
651 604be200 Shin-ichiro KAWASAKI
652 604be200 Shin-ichiro KAWASAKI
    /* get frame buffer info */
653 604be200 Shin-ichiro KAWASAKI
    uint8_t * src = s->local_mem + (s->twoD_source_base & 0x03FFFFFF);
654 604be200 Shin-ichiro KAWASAKI
    uint8_t * dst = s->local_mem + (s->twoD_destination_base & 0x03FFFFFF);
655 07d8a50c Aurelien Jarno
    int src_width = (s->dc_crt_h_total & 0x00000FFF) + 1;
656 604be200 Shin-ichiro KAWASAKI
    int dst_width = (s->dc_crt_h_total & 0x00000FFF) + 1;
657 604be200 Shin-ichiro KAWASAKI
658 604be200 Shin-ichiro KAWASAKI
    if (addressing != 0x0) {
659 604be200 Shin-ichiro KAWASAKI
        printf("%s: only XY addressing is supported.\n", __func__);
660 604be200 Shin-ichiro KAWASAKI
        abort();
661 604be200 Shin-ichiro KAWASAKI
    }
662 604be200 Shin-ichiro KAWASAKI
663 604be200 Shin-ichiro KAWASAKI
    if ((s->twoD_source_base & 0x08000000) ||
664 604be200 Shin-ichiro KAWASAKI
        (s->twoD_destination_base & 0x08000000)) {
665 604be200 Shin-ichiro KAWASAKI
        printf("%s: only local memory is supported.\n", __func__);
666 604be200 Shin-ichiro KAWASAKI
        abort();
667 604be200 Shin-ichiro KAWASAKI
    }
668 604be200 Shin-ichiro KAWASAKI
669 604be200 Shin-ichiro KAWASAKI
    switch (operation) {
670 07d8a50c Aurelien Jarno
    case 0x00: /* copy area */
671 07d8a50c Aurelien Jarno
#define COPY_AREA(_bpp, _pixel_type, rtl) {                                 \
672 07d8a50c Aurelien Jarno
        int y, x, index_d, index_s;                                         \
673 07d8a50c Aurelien Jarno
        for (y = 0; y < operation_height; y++) {                            \
674 07d8a50c Aurelien Jarno
            for (x = 0; x < operation_width; x++) {                         \
675 07d8a50c Aurelien Jarno
                if (rtl) {                                                  \
676 07d8a50c Aurelien Jarno
                    index_s = ((src_y - y) * src_width + src_x - x) * _bpp; \
677 07d8a50c Aurelien Jarno
                    index_d = ((dst_y - y) * dst_width + dst_x - x) * _bpp; \
678 07d8a50c Aurelien Jarno
                } else {                                                    \
679 07d8a50c Aurelien Jarno
                    index_s = ((src_y + y) * src_width + src_x + x) * _bpp; \
680 07d8a50c Aurelien Jarno
                    index_d = ((dst_y + y) * dst_width + dst_x + x) * _bpp; \
681 07d8a50c Aurelien Jarno
                }                                                           \
682 07d8a50c Aurelien Jarno
                *(_pixel_type*)&dst[index_d] = *(_pixel_type*)&src[index_s];\
683 07d8a50c Aurelien Jarno
            }                                                               \
684 07d8a50c Aurelien Jarno
        }                                                                   \
685 07d8a50c Aurelien Jarno
    }
686 07d8a50c Aurelien Jarno
        switch (format_flags) {
687 07d8a50c Aurelien Jarno
        case 0:
688 07d8a50c Aurelien Jarno
            COPY_AREA(1, uint8_t, rtl);
689 07d8a50c Aurelien Jarno
            break;
690 07d8a50c Aurelien Jarno
        case 1:
691 07d8a50c Aurelien Jarno
            COPY_AREA(2, uint16_t, rtl);
692 07d8a50c Aurelien Jarno
            break;
693 07d8a50c Aurelien Jarno
        case 2:
694 07d8a50c Aurelien Jarno
            COPY_AREA(4, uint32_t, rtl);
695 07d8a50c Aurelien Jarno
            break;
696 07d8a50c Aurelien Jarno
        }
697 07d8a50c Aurelien Jarno
        break;
698 604be200 Shin-ichiro KAWASAKI
699 07d8a50c Aurelien Jarno
    case 0x01: /* fill rectangle */
700 604be200 Shin-ichiro KAWASAKI
#define FILL_RECT(_bpp, _pixel_type) {                                      \
701 604be200 Shin-ichiro KAWASAKI
        int y, x;                                                           \
702 604be200 Shin-ichiro KAWASAKI
        for (y = 0; y < operation_height; y++) {                            \
703 604be200 Shin-ichiro KAWASAKI
            for (x = 0; x < operation_width; x++) {                         \
704 604be200 Shin-ichiro KAWASAKI
                int index = ((dst_y + y) * dst_width + dst_x + x) * _bpp;   \
705 604be200 Shin-ichiro KAWASAKI
                *(_pixel_type*)&dst[index] = (_pixel_type)color;            \
706 604be200 Shin-ichiro KAWASAKI
            }                                                               \
707 604be200 Shin-ichiro KAWASAKI
        }                                                                   \
708 604be200 Shin-ichiro KAWASAKI
    }
709 604be200 Shin-ichiro KAWASAKI
710 604be200 Shin-ichiro KAWASAKI
        switch (format_flags) {
711 604be200 Shin-ichiro KAWASAKI
        case 0:
712 604be200 Shin-ichiro KAWASAKI
            FILL_RECT(1, uint8_t);
713 604be200 Shin-ichiro KAWASAKI
            break;
714 604be200 Shin-ichiro KAWASAKI
        case 1:
715 604be200 Shin-ichiro KAWASAKI
            FILL_RECT(2, uint16_t);
716 604be200 Shin-ichiro KAWASAKI
            break;
717 604be200 Shin-ichiro KAWASAKI
        case 2:
718 604be200 Shin-ichiro KAWASAKI
            FILL_RECT(4, uint32_t);
719 604be200 Shin-ichiro KAWASAKI
            break;
720 604be200 Shin-ichiro KAWASAKI
        }
721 604be200 Shin-ichiro KAWASAKI
        break;
722 604be200 Shin-ichiro KAWASAKI
723 604be200 Shin-ichiro KAWASAKI
    default:
724 604be200 Shin-ichiro KAWASAKI
        printf("non-implemented SM501 2D operation. %d\n", operation);
725 604be200 Shin-ichiro KAWASAKI
        abort();
726 604be200 Shin-ichiro KAWASAKI
        break;
727 604be200 Shin-ichiro KAWASAKI
    }
728 604be200 Shin-ichiro KAWASAKI
}
729 604be200 Shin-ichiro KAWASAKI
730 a8170e5e Avi Kivity
static uint64_t sm501_system_config_read(void *opaque, hwaddr addr,
731 25793bfa Avi Kivity
                                         unsigned size)
732 ffd39257 blueswir1
{
733 ffd39257 blueswir1
    SM501State * s = (SM501State *)opaque;
734 ffd39257 blueswir1
    uint32_t ret = 0;
735 8da3ff18 pbrook
    SM501_DPRINTF("sm501 system config regs : read addr=%x\n", (int)addr);
736 ffd39257 blueswir1
737 8da3ff18 pbrook
    switch(addr) {
738 ffd39257 blueswir1
    case SM501_SYSTEM_CONTROL:
739 ffd39257 blueswir1
        ret = s->system_control;
740 ffd39257 blueswir1
        break;
741 ffd39257 blueswir1
    case SM501_MISC_CONTROL:
742 ffd39257 blueswir1
        ret = s->misc_control;
743 ffd39257 blueswir1
        break;
744 ffd39257 blueswir1
    case SM501_GPIO31_0_CONTROL:
745 ffd39257 blueswir1
        ret = s->gpio_31_0_control;
746 ffd39257 blueswir1
        break;
747 ffd39257 blueswir1
    case SM501_GPIO63_32_CONTROL:
748 ffd39257 blueswir1
        ret = s->gpio_63_32_control;
749 ffd39257 blueswir1
        break;
750 ffd39257 blueswir1
    case SM501_DEVICEID:
751 ffd39257 blueswir1
        ret = 0x050100A0;
752 ffd39257 blueswir1
        break;
753 ffd39257 blueswir1
    case SM501_DRAM_CONTROL:
754 ffd39257 blueswir1
        ret = (s->dram_control & 0x07F107C0) | s->local_mem_size_index << 13;
755 ffd39257 blueswir1
        break;
756 ffd39257 blueswir1
    case SM501_IRQ_MASK:
757 ffd39257 blueswir1
        ret = s->irq_mask;
758 ffd39257 blueswir1
        break;
759 ffd39257 blueswir1
    case SM501_MISC_TIMING:
760 ffd39257 blueswir1
        /* TODO : simulate gate control */
761 ffd39257 blueswir1
        ret = s->misc_timing;
762 ffd39257 blueswir1
        break;
763 ffd39257 blueswir1
    case SM501_CURRENT_GATE:
764 ffd39257 blueswir1
        /* TODO : simulate gate control */
765 ffd39257 blueswir1
        ret = 0x00021807;
766 ffd39257 blueswir1
        break;
767 ffd39257 blueswir1
    case SM501_CURRENT_CLOCK:
768 ffd39257 blueswir1
        ret = 0x2A1A0A09;
769 ffd39257 blueswir1
        break;
770 ffd39257 blueswir1
    case SM501_POWER_MODE_CONTROL:
771 ffd39257 blueswir1
        ret = s->power_mode_control;
772 ffd39257 blueswir1
        break;
773 ffd39257 blueswir1
774 ffd39257 blueswir1
    default:
775 ffd39257 blueswir1
        printf("sm501 system config : not implemented register read."
776 8da3ff18 pbrook
               " addr=%x\n", (int)addr);
777 43dc2a64 Blue Swirl
        abort();
778 ffd39257 blueswir1
    }
779 ffd39257 blueswir1
780 ffd39257 blueswir1
    return ret;
781 ffd39257 blueswir1
}
782 ffd39257 blueswir1
783 a8170e5e Avi Kivity
static void sm501_system_config_write(void *opaque, hwaddr addr,
784 25793bfa Avi Kivity
                                      uint64_t value, unsigned size)
785 ffd39257 blueswir1
{
786 ffd39257 blueswir1
    SM501State * s = (SM501State *)opaque;
787 8da3ff18 pbrook
    SM501_DPRINTF("sm501 system config regs : write addr=%x, val=%x\n",
788 25793bfa Avi Kivity
                  (uint32_t)addr, (uint32_t)value);
789 ffd39257 blueswir1
790 8da3ff18 pbrook
    switch(addr) {
791 ffd39257 blueswir1
    case SM501_SYSTEM_CONTROL:
792 ffd39257 blueswir1
        s->system_control = value & 0xE300B8F7;
793 ffd39257 blueswir1
        break;
794 ffd39257 blueswir1
    case SM501_MISC_CONTROL:
795 ffd39257 blueswir1
        s->misc_control = value & 0xFF7FFF20;
796 ffd39257 blueswir1
        break;
797 ffd39257 blueswir1
    case SM501_GPIO31_0_CONTROL:
798 ffd39257 blueswir1
        s->gpio_31_0_control = value;
799 ffd39257 blueswir1
        break;
800 ffd39257 blueswir1
    case SM501_GPIO63_32_CONTROL:
801 ffd39257 blueswir1
        s->gpio_63_32_control = value;
802 ffd39257 blueswir1
        break;
803 ffd39257 blueswir1
    case SM501_DRAM_CONTROL:
804 ffd39257 blueswir1
        s->local_mem_size_index = (value >> 13) & 0x7;
805 ffd39257 blueswir1
        /* rODO : check validity of size change */
806 ffd39257 blueswir1
        s->dram_control |=  value & 0x7FFFFFC3;
807 ffd39257 blueswir1
        break;
808 ffd39257 blueswir1
    case SM501_IRQ_MASK:
809 ffd39257 blueswir1
        s->irq_mask = value;
810 ffd39257 blueswir1
        break;
811 ffd39257 blueswir1
    case SM501_MISC_TIMING:
812 ffd39257 blueswir1
        s->misc_timing = value & 0xF31F1FFF;
813 ffd39257 blueswir1
        break;
814 ffd39257 blueswir1
    case SM501_POWER_MODE_0_GATE:
815 ffd39257 blueswir1
    case SM501_POWER_MODE_1_GATE:
816 ffd39257 blueswir1
    case SM501_POWER_MODE_0_CLOCK:
817 ffd39257 blueswir1
    case SM501_POWER_MODE_1_CLOCK:
818 ffd39257 blueswir1
        /* TODO : simulate gate & clock control */
819 ffd39257 blueswir1
        break;
820 ffd39257 blueswir1
    case SM501_POWER_MODE_CONTROL:
821 ffd39257 blueswir1
        s->power_mode_control = value & 0x00000003;
822 ffd39257 blueswir1
        break;
823 ffd39257 blueswir1
824 ffd39257 blueswir1
    default:
825 ffd39257 blueswir1
        printf("sm501 system config : not implemented register write."
826 25793bfa Avi Kivity
               " addr=%x, val=%x\n", (int)addr, (uint32_t)value);
827 43dc2a64 Blue Swirl
        abort();
828 ffd39257 blueswir1
    }
829 ffd39257 blueswir1
}
830 ffd39257 blueswir1
831 25793bfa Avi Kivity
static const MemoryRegionOps sm501_system_config_ops = {
832 25793bfa Avi Kivity
    .read = sm501_system_config_read,
833 25793bfa Avi Kivity
    .write = sm501_system_config_write,
834 25793bfa Avi Kivity
    .valid = {
835 25793bfa Avi Kivity
        .min_access_size = 4,
836 25793bfa Avi Kivity
        .max_access_size = 4,
837 25793bfa Avi Kivity
    },
838 25793bfa Avi Kivity
    .endianness = DEVICE_NATIVE_ENDIAN,
839 ffd39257 blueswir1
};
840 ffd39257 blueswir1
841 a8170e5e Avi Kivity
static uint32_t sm501_palette_read(void *opaque, hwaddr addr)
842 486579de balrog
{
843 486579de balrog
    SM501State * s = (SM501State *)opaque;
844 486579de balrog
    SM501_DPRINTF("sm501 palette read addr=%x\n", (int)addr);
845 486579de balrog
846 486579de balrog
    /* TODO : consider BYTE/WORD access */
847 486579de balrog
    /* TODO : consider endian */
848 486579de balrog
849 45416789 Blue Swirl
    assert(range_covers_byte(0, 0x400 * 3, addr));
850 486579de balrog
    return *(uint32_t*)&s->dc_palette[addr];
851 486579de balrog
}
852 486579de balrog
853 486579de balrog
static void sm501_palette_write(void *opaque,
854 a8170e5e Avi Kivity
                                hwaddr addr, uint32_t value)
855 486579de balrog
{
856 486579de balrog
    SM501State * s = (SM501State *)opaque;
857 486579de balrog
    SM501_DPRINTF("sm501 palette write addr=%x, val=%x\n",
858 486579de balrog
                  (int)addr, value);
859 486579de balrog
860 486579de balrog
    /* TODO : consider BYTE/WORD access */
861 486579de balrog
    /* TODO : consider endian */
862 486579de balrog
863 45416789 Blue Swirl
    assert(range_covers_byte(0, 0x400 * 3, addr));
864 486579de balrog
    *(uint32_t*)&s->dc_palette[addr] = value;
865 486579de balrog
}
866 486579de balrog
867 a8170e5e Avi Kivity
static uint64_t sm501_disp_ctrl_read(void *opaque, hwaddr addr,
868 25793bfa Avi Kivity
                                     unsigned size)
869 ffd39257 blueswir1
{
870 ffd39257 blueswir1
    SM501State * s = (SM501State *)opaque;
871 ffd39257 blueswir1
    uint32_t ret = 0;
872 8da3ff18 pbrook
    SM501_DPRINTF("sm501 disp ctrl regs : read addr=%x\n", (int)addr);
873 ffd39257 blueswir1
874 8da3ff18 pbrook
    switch(addr) {
875 ffd39257 blueswir1
876 ffd39257 blueswir1
    case SM501_DC_PANEL_CONTROL:
877 ffd39257 blueswir1
        ret = s->dc_panel_control;
878 ffd39257 blueswir1
        break;
879 ffd39257 blueswir1
    case SM501_DC_PANEL_PANNING_CONTROL:
880 ffd39257 blueswir1
        ret = s->dc_panel_panning_control;
881 ffd39257 blueswir1
        break;
882 ffd39257 blueswir1
    case SM501_DC_PANEL_FB_ADDR:
883 ffd39257 blueswir1
        ret = s->dc_panel_fb_addr;
884 ffd39257 blueswir1
        break;
885 ffd39257 blueswir1
    case SM501_DC_PANEL_FB_OFFSET:
886 ffd39257 blueswir1
        ret = s->dc_panel_fb_offset;
887 ffd39257 blueswir1
        break;
888 ffd39257 blueswir1
    case SM501_DC_PANEL_FB_WIDTH:
889 ffd39257 blueswir1
        ret = s->dc_panel_fb_width;
890 ffd39257 blueswir1
        break;
891 ffd39257 blueswir1
    case SM501_DC_PANEL_FB_HEIGHT:
892 ffd39257 blueswir1
        ret = s->dc_panel_fb_height;
893 ffd39257 blueswir1
        break;
894 ffd39257 blueswir1
    case SM501_DC_PANEL_TL_LOC:
895 ffd39257 blueswir1
        ret = s->dc_panel_tl_location;
896 ffd39257 blueswir1
        break;
897 ffd39257 blueswir1
    case SM501_DC_PANEL_BR_LOC:
898 ffd39257 blueswir1
        ret = s->dc_panel_br_location;
899 ffd39257 blueswir1
        break;
900 ffd39257 blueswir1
901 ffd39257 blueswir1
    case SM501_DC_PANEL_H_TOT:
902 ffd39257 blueswir1
        ret = s->dc_panel_h_total;
903 ffd39257 blueswir1
        break;
904 ffd39257 blueswir1
    case SM501_DC_PANEL_H_SYNC:
905 ffd39257 blueswir1
        ret = s->dc_panel_h_sync;
906 ffd39257 blueswir1
        break;
907 ffd39257 blueswir1
    case SM501_DC_PANEL_V_TOT:
908 ffd39257 blueswir1
        ret = s->dc_panel_v_total;
909 ffd39257 blueswir1
        break;
910 ffd39257 blueswir1
    case SM501_DC_PANEL_V_SYNC:
911 ffd39257 blueswir1
        ret = s->dc_panel_v_sync;
912 ffd39257 blueswir1
        break;
913 ffd39257 blueswir1
914 ffd39257 blueswir1
    case SM501_DC_CRT_CONTROL:
915 ffd39257 blueswir1
        ret = s->dc_crt_control;
916 ffd39257 blueswir1
        break;
917 ffd39257 blueswir1
    case SM501_DC_CRT_FB_ADDR:
918 ffd39257 blueswir1
        ret = s->dc_crt_fb_addr;
919 ffd39257 blueswir1
        break;
920 ffd39257 blueswir1
    case SM501_DC_CRT_FB_OFFSET:
921 ffd39257 blueswir1
        ret = s->dc_crt_fb_offset;
922 ffd39257 blueswir1
        break;
923 ffd39257 blueswir1
    case SM501_DC_CRT_H_TOT:
924 ffd39257 blueswir1
        ret = s->dc_crt_h_total;
925 ffd39257 blueswir1
        break;
926 ffd39257 blueswir1
    case SM501_DC_CRT_H_SYNC:
927 ffd39257 blueswir1
        ret = s->dc_crt_h_sync;
928 ffd39257 blueswir1
        break;
929 ffd39257 blueswir1
    case SM501_DC_CRT_V_TOT:
930 ffd39257 blueswir1
        ret = s->dc_crt_v_total;
931 ffd39257 blueswir1
        break;
932 ffd39257 blueswir1
    case SM501_DC_CRT_V_SYNC:
933 ffd39257 blueswir1
        ret = s->dc_crt_v_sync;
934 ffd39257 blueswir1
        break;
935 ffd39257 blueswir1
936 ffd39257 blueswir1
    case SM501_DC_CRT_HWC_ADDR:
937 ffd39257 blueswir1
        ret = s->dc_crt_hwc_addr;
938 ffd39257 blueswir1
        break;
939 ffd39257 blueswir1
    case SM501_DC_CRT_HWC_LOC:
940 0a4e7cd2 Shin-ichiro KAWASAKI
        ret = s->dc_crt_hwc_location;
941 ffd39257 blueswir1
        break;
942 ffd39257 blueswir1
    case SM501_DC_CRT_HWC_COLOR_1_2:
943 0a4e7cd2 Shin-ichiro KAWASAKI
        ret = s->dc_crt_hwc_color_1_2;
944 ffd39257 blueswir1
        break;
945 ffd39257 blueswir1
    case SM501_DC_CRT_HWC_COLOR_3:
946 0a4e7cd2 Shin-ichiro KAWASAKI
        ret = s->dc_crt_hwc_color_3;
947 ffd39257 blueswir1
        break;
948 ffd39257 blueswir1
949 486579de balrog
    case SM501_DC_PANEL_PALETTE ... SM501_DC_PANEL_PALETTE + 0x400*3 - 4:
950 486579de balrog
        ret = sm501_palette_read(opaque, addr - SM501_DC_PANEL_PALETTE);
951 486579de balrog
        break;
952 486579de balrog
953 ffd39257 blueswir1
    default:
954 ffd39257 blueswir1
        printf("sm501 disp ctrl : not implemented register read."
955 8da3ff18 pbrook
               " addr=%x\n", (int)addr);
956 43dc2a64 Blue Swirl
        abort();
957 ffd39257 blueswir1
    }
958 ffd39257 blueswir1
959 ffd39257 blueswir1
    return ret;
960 ffd39257 blueswir1
}
961 ffd39257 blueswir1
962 a8170e5e Avi Kivity
static void sm501_disp_ctrl_write(void *opaque, hwaddr addr,
963 25793bfa Avi Kivity
                                  uint64_t value, unsigned size)
964 ffd39257 blueswir1
{
965 ffd39257 blueswir1
    SM501State * s = (SM501State *)opaque;
966 8da3ff18 pbrook
    SM501_DPRINTF("sm501 disp ctrl regs : write addr=%x, val=%x\n",
967 25793bfa Avi Kivity
                  (unsigned)addr, (unsigned)value);
968 ffd39257 blueswir1
969 8da3ff18 pbrook
    switch(addr) {
970 ffd39257 blueswir1
    case SM501_DC_PANEL_CONTROL:
971 ffd39257 blueswir1
        s->dc_panel_control = value & 0x0FFF73FF;
972 ffd39257 blueswir1
        break;
973 ffd39257 blueswir1
    case SM501_DC_PANEL_PANNING_CONTROL:
974 ffd39257 blueswir1
        s->dc_panel_panning_control = value & 0xFF3FFF3F;
975 ffd39257 blueswir1
        break;
976 ffd39257 blueswir1
    case SM501_DC_PANEL_FB_ADDR:
977 ffd39257 blueswir1
        s->dc_panel_fb_addr = value & 0x8FFFFFF0;
978 ffd39257 blueswir1
        break;
979 ffd39257 blueswir1
    case SM501_DC_PANEL_FB_OFFSET:
980 ffd39257 blueswir1
        s->dc_panel_fb_offset = value & 0x3FF03FF0;
981 ffd39257 blueswir1
        break;
982 ffd39257 blueswir1
    case SM501_DC_PANEL_FB_WIDTH:
983 ffd39257 blueswir1
        s->dc_panel_fb_width = value & 0x0FFF0FFF;
984 ffd39257 blueswir1
        break;
985 ffd39257 blueswir1
    case SM501_DC_PANEL_FB_HEIGHT:
986 ffd39257 blueswir1
        s->dc_panel_fb_height = value & 0x0FFF0FFF;
987 ffd39257 blueswir1
        break;
988 ffd39257 blueswir1
    case SM501_DC_PANEL_TL_LOC:
989 ffd39257 blueswir1
        s->dc_panel_tl_location = value & 0x07FF07FF;
990 ffd39257 blueswir1
        break;
991 ffd39257 blueswir1
    case SM501_DC_PANEL_BR_LOC:
992 ffd39257 blueswir1
        s->dc_panel_br_location = value & 0x07FF07FF;
993 ffd39257 blueswir1
        break;
994 ffd39257 blueswir1
995 ffd39257 blueswir1
    case SM501_DC_PANEL_H_TOT:
996 ffd39257 blueswir1
        s->dc_panel_h_total = value & 0x0FFF0FFF;
997 ffd39257 blueswir1
        break;
998 ffd39257 blueswir1
    case SM501_DC_PANEL_H_SYNC:
999 ffd39257 blueswir1
        s->dc_panel_h_sync = value & 0x00FF0FFF;
1000 ffd39257 blueswir1
        break;
1001 ffd39257 blueswir1
    case SM501_DC_PANEL_V_TOT:
1002 ffd39257 blueswir1
        s->dc_panel_v_total = value & 0x0FFF0FFF;
1003 ffd39257 blueswir1
        break;
1004 ffd39257 blueswir1
    case SM501_DC_PANEL_V_SYNC:
1005 ffd39257 blueswir1
        s->dc_panel_v_sync = value & 0x003F0FFF;
1006 ffd39257 blueswir1
        break;
1007 ffd39257 blueswir1
1008 ffd39257 blueswir1
    case SM501_DC_PANEL_HWC_ADDR:
1009 ffd39257 blueswir1
        s->dc_panel_hwc_addr = value & 0x8FFFFFF0;
1010 ffd39257 blueswir1
        break;
1011 ffd39257 blueswir1
    case SM501_DC_PANEL_HWC_LOC:
1012 0a4e7cd2 Shin-ichiro KAWASAKI
        s->dc_panel_hwc_location = value & 0x0FFF0FFF;
1013 ffd39257 blueswir1
        break;
1014 ffd39257 blueswir1
    case SM501_DC_PANEL_HWC_COLOR_1_2:
1015 0a4e7cd2 Shin-ichiro KAWASAKI
        s->dc_panel_hwc_color_1_2 = value;
1016 ffd39257 blueswir1
        break;
1017 ffd39257 blueswir1
    case SM501_DC_PANEL_HWC_COLOR_3:
1018 0a4e7cd2 Shin-ichiro KAWASAKI
        s->dc_panel_hwc_color_3 = value & 0x0000FFFF;
1019 ffd39257 blueswir1
        break;
1020 ffd39257 blueswir1
1021 ffd39257 blueswir1
    case SM501_DC_CRT_CONTROL:
1022 ffd39257 blueswir1
        s->dc_crt_control = value & 0x0003FFFF;
1023 ffd39257 blueswir1
        break;
1024 ffd39257 blueswir1
    case SM501_DC_CRT_FB_ADDR:
1025 ffd39257 blueswir1
        s->dc_crt_fb_addr = value & 0x8FFFFFF0;
1026 ffd39257 blueswir1
        break;
1027 ffd39257 blueswir1
    case SM501_DC_CRT_FB_OFFSET:
1028 ffd39257 blueswir1
        s->dc_crt_fb_offset = value & 0x3FF03FF0;
1029 ffd39257 blueswir1
        break;
1030 ffd39257 blueswir1
    case SM501_DC_CRT_H_TOT:
1031 ffd39257 blueswir1
        s->dc_crt_h_total = value & 0x0FFF0FFF;
1032 ffd39257 blueswir1
        break;
1033 ffd39257 blueswir1
    case SM501_DC_CRT_H_SYNC:
1034 ffd39257 blueswir1
        s->dc_crt_h_sync = value & 0x00FF0FFF;
1035 ffd39257 blueswir1
        break;
1036 ffd39257 blueswir1
    case SM501_DC_CRT_V_TOT:
1037 ffd39257 blueswir1
        s->dc_crt_v_total = value & 0x0FFF0FFF;
1038 ffd39257 blueswir1
        break;
1039 ffd39257 blueswir1
    case SM501_DC_CRT_V_SYNC:
1040 ffd39257 blueswir1
        s->dc_crt_v_sync = value & 0x003F0FFF;
1041 ffd39257 blueswir1
        break;
1042 ffd39257 blueswir1
1043 ffd39257 blueswir1
    case SM501_DC_CRT_HWC_ADDR:
1044 ffd39257 blueswir1
        s->dc_crt_hwc_addr = value & 0x8FFFFFF0;
1045 ffd39257 blueswir1
        break;
1046 ffd39257 blueswir1
    case SM501_DC_CRT_HWC_LOC:
1047 0a4e7cd2 Shin-ichiro KAWASAKI
        s->dc_crt_hwc_location = value & 0x0FFF0FFF;
1048 ffd39257 blueswir1
        break;
1049 ffd39257 blueswir1
    case SM501_DC_CRT_HWC_COLOR_1_2:
1050 0a4e7cd2 Shin-ichiro KAWASAKI
        s->dc_crt_hwc_color_1_2 = value;
1051 ffd39257 blueswir1
        break;
1052 ffd39257 blueswir1
    case SM501_DC_CRT_HWC_COLOR_3:
1053 0a4e7cd2 Shin-ichiro KAWASAKI
        s->dc_crt_hwc_color_3 = value & 0x0000FFFF;
1054 ffd39257 blueswir1
        break;
1055 ffd39257 blueswir1
1056 486579de balrog
    case SM501_DC_PANEL_PALETTE ... SM501_DC_PANEL_PALETTE + 0x400*3 - 4:
1057 486579de balrog
        sm501_palette_write(opaque, addr - SM501_DC_PANEL_PALETTE, value);
1058 486579de balrog
        break;
1059 486579de balrog
1060 ffd39257 blueswir1
    default:
1061 ffd39257 blueswir1
        printf("sm501 disp ctrl : not implemented register write."
1062 25793bfa Avi Kivity
               " addr=%x, val=%x\n", (int)addr, (unsigned)value);
1063 43dc2a64 Blue Swirl
        abort();
1064 ffd39257 blueswir1
    }
1065 ffd39257 blueswir1
}
1066 ffd39257 blueswir1
1067 25793bfa Avi Kivity
static const MemoryRegionOps sm501_disp_ctrl_ops = {
1068 25793bfa Avi Kivity
    .read = sm501_disp_ctrl_read,
1069 25793bfa Avi Kivity
    .write = sm501_disp_ctrl_write,
1070 25793bfa Avi Kivity
    .valid = {
1071 25793bfa Avi Kivity
        .min_access_size = 4,
1072 25793bfa Avi Kivity
        .max_access_size = 4,
1073 25793bfa Avi Kivity
    },
1074 25793bfa Avi Kivity
    .endianness = DEVICE_NATIVE_ENDIAN,
1075 ffd39257 blueswir1
};
1076 ffd39257 blueswir1
1077 a8170e5e Avi Kivity
static uint64_t sm501_2d_engine_read(void *opaque, hwaddr addr,
1078 25793bfa Avi Kivity
                                     unsigned size)
1079 604be200 Shin-ichiro KAWASAKI
{
1080 604be200 Shin-ichiro KAWASAKI
    SM501State * s = (SM501State *)opaque;
1081 604be200 Shin-ichiro KAWASAKI
    uint32_t ret = 0;
1082 604be200 Shin-ichiro KAWASAKI
    SM501_DPRINTF("sm501 2d engine regs : read addr=%x\n", (int)addr);
1083 604be200 Shin-ichiro KAWASAKI
1084 604be200 Shin-ichiro KAWASAKI
    switch(addr) {
1085 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_SOURCE_BASE:
1086 604be200 Shin-ichiro KAWASAKI
        ret = s->twoD_source_base;
1087 604be200 Shin-ichiro KAWASAKI
        break;
1088 604be200 Shin-ichiro KAWASAKI
    default:
1089 604be200 Shin-ichiro KAWASAKI
        printf("sm501 disp ctrl : not implemented register read."
1090 604be200 Shin-ichiro KAWASAKI
               " addr=%x\n", (int)addr);
1091 604be200 Shin-ichiro KAWASAKI
        abort();
1092 604be200 Shin-ichiro KAWASAKI
    }
1093 604be200 Shin-ichiro KAWASAKI
1094 604be200 Shin-ichiro KAWASAKI
    return ret;
1095 604be200 Shin-ichiro KAWASAKI
}
1096 604be200 Shin-ichiro KAWASAKI
1097 a8170e5e Avi Kivity
static void sm501_2d_engine_write(void *opaque, hwaddr addr,
1098 25793bfa Avi Kivity
                                  uint64_t value, unsigned size)
1099 604be200 Shin-ichiro KAWASAKI
{
1100 604be200 Shin-ichiro KAWASAKI
    SM501State * s = (SM501State *)opaque;
1101 604be200 Shin-ichiro KAWASAKI
    SM501_DPRINTF("sm501 2d engine regs : write addr=%x, val=%x\n",
1102 25793bfa Avi Kivity
                  (unsigned)addr, (unsigned)value);
1103 604be200 Shin-ichiro KAWASAKI
1104 604be200 Shin-ichiro KAWASAKI
    switch(addr) {
1105 07d8a50c Aurelien Jarno
    case SM501_2D_SOURCE:
1106 07d8a50c Aurelien Jarno
        s->twoD_source = value;
1107 07d8a50c Aurelien Jarno
        break;
1108 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_DESTINATION:
1109 604be200 Shin-ichiro KAWASAKI
        s->twoD_destination = value;
1110 604be200 Shin-ichiro KAWASAKI
        break;
1111 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_DIMENSION:
1112 604be200 Shin-ichiro KAWASAKI
        s->twoD_dimension = value;
1113 604be200 Shin-ichiro KAWASAKI
        break;
1114 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_CONTROL:
1115 604be200 Shin-ichiro KAWASAKI
        s->twoD_control = value;
1116 604be200 Shin-ichiro KAWASAKI
1117 604be200 Shin-ichiro KAWASAKI
        /* do 2d operation if start flag is set. */
1118 604be200 Shin-ichiro KAWASAKI
        if (value & 0x80000000) {
1119 604be200 Shin-ichiro KAWASAKI
            sm501_2d_operation(s);
1120 604be200 Shin-ichiro KAWASAKI
            s->twoD_control &= ~0x80000000; /* start flag down */
1121 604be200 Shin-ichiro KAWASAKI
        }
1122 604be200 Shin-ichiro KAWASAKI
1123 604be200 Shin-ichiro KAWASAKI
        break;
1124 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_PITCH:
1125 604be200 Shin-ichiro KAWASAKI
        s->twoD_pitch = value;
1126 604be200 Shin-ichiro KAWASAKI
        break;
1127 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_FOREGROUND:
1128 604be200 Shin-ichiro KAWASAKI
        s->twoD_foreground = value;
1129 604be200 Shin-ichiro KAWASAKI
        break;
1130 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_STRETCH:
1131 604be200 Shin-ichiro KAWASAKI
        s->twoD_stretch = value;
1132 604be200 Shin-ichiro KAWASAKI
        break;
1133 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_COLOR_COMPARE_MASK:
1134 604be200 Shin-ichiro KAWASAKI
        s->twoD_color_compare_mask = value;
1135 604be200 Shin-ichiro KAWASAKI
        break;
1136 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_MASK:
1137 604be200 Shin-ichiro KAWASAKI
        s->twoD_mask = value;
1138 604be200 Shin-ichiro KAWASAKI
        break;
1139 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_WINDOW_WIDTH:
1140 604be200 Shin-ichiro KAWASAKI
        s->twoD_window_width = value;
1141 604be200 Shin-ichiro KAWASAKI
        break;
1142 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_SOURCE_BASE:
1143 604be200 Shin-ichiro KAWASAKI
        s->twoD_source_base = value;
1144 604be200 Shin-ichiro KAWASAKI
        break;
1145 604be200 Shin-ichiro KAWASAKI
    case SM501_2D_DESTINATION_BASE:
1146 604be200 Shin-ichiro KAWASAKI
        s->twoD_destination_base = value;
1147 604be200 Shin-ichiro KAWASAKI
        break;
1148 604be200 Shin-ichiro KAWASAKI
    default:
1149 604be200 Shin-ichiro KAWASAKI
        printf("sm501 2d engine : not implemented register write."
1150 25793bfa Avi Kivity
               " addr=%x, val=%x\n", (int)addr, (unsigned)value);
1151 604be200 Shin-ichiro KAWASAKI
        abort();
1152 604be200 Shin-ichiro KAWASAKI
    }
1153 604be200 Shin-ichiro KAWASAKI
}
1154 604be200 Shin-ichiro KAWASAKI
1155 25793bfa Avi Kivity
static const MemoryRegionOps sm501_2d_engine_ops = {
1156 25793bfa Avi Kivity
    .read = sm501_2d_engine_read,
1157 25793bfa Avi Kivity
    .write = sm501_2d_engine_write,
1158 25793bfa Avi Kivity
    .valid = {
1159 25793bfa Avi Kivity
        .min_access_size = 4,
1160 25793bfa Avi Kivity
        .max_access_size = 4,
1161 25793bfa Avi Kivity
    },
1162 25793bfa Avi Kivity
    .endianness = DEVICE_NATIVE_ENDIAN,
1163 604be200 Shin-ichiro KAWASAKI
};
1164 604be200 Shin-ichiro KAWASAKI
1165 ffd39257 blueswir1
/* draw line functions for all console modes */
1166 ffd39257 blueswir1
1167 ffd39257 blueswir1
typedef void draw_line_func(uint8_t *d, const uint8_t *s,
1168 ffd39257 blueswir1
                            int width, const uint32_t *pal);
1169 ffd39257 blueswir1
1170 0a4e7cd2 Shin-ichiro KAWASAKI
typedef void draw_hwc_line_func(SM501State * s, int crt, uint8_t * palette,
1171 0a4e7cd2 Shin-ichiro KAWASAKI
                                int c_y, uint8_t *d, int width);
1172 0a4e7cd2 Shin-ichiro KAWASAKI
1173 ffd39257 blueswir1
#define DEPTH 8
1174 83c9f4ca Paolo Bonzini
#include "hw/sm501_template.h"
1175 ffd39257 blueswir1
1176 ffd39257 blueswir1
#define DEPTH 15
1177 83c9f4ca Paolo Bonzini
#include "hw/sm501_template.h"
1178 ffd39257 blueswir1
1179 ffd39257 blueswir1
#define BGR_FORMAT
1180 ffd39257 blueswir1
#define DEPTH 15
1181 83c9f4ca Paolo Bonzini
#include "hw/sm501_template.h"
1182 ffd39257 blueswir1
1183 ffd39257 blueswir1
#define DEPTH 16
1184 83c9f4ca Paolo Bonzini
#include "hw/sm501_template.h"
1185 ffd39257 blueswir1
1186 ffd39257 blueswir1
#define BGR_FORMAT
1187 ffd39257 blueswir1
#define DEPTH 16
1188 83c9f4ca Paolo Bonzini
#include "hw/sm501_template.h"
1189 ffd39257 blueswir1
1190 ffd39257 blueswir1
#define DEPTH 32
1191 83c9f4ca Paolo Bonzini
#include "hw/sm501_template.h"
1192 ffd39257 blueswir1
1193 ffd39257 blueswir1
#define BGR_FORMAT
1194 ffd39257 blueswir1
#define DEPTH 32
1195 83c9f4ca Paolo Bonzini
#include "hw/sm501_template.h"
1196 ffd39257 blueswir1
1197 ffd39257 blueswir1
static draw_line_func * draw_line8_funcs[] = {
1198 ffd39257 blueswir1
    draw_line8_8,
1199 ffd39257 blueswir1
    draw_line8_15,
1200 ffd39257 blueswir1
    draw_line8_16,
1201 ffd39257 blueswir1
    draw_line8_32,
1202 ffd39257 blueswir1
    draw_line8_32bgr,
1203 ffd39257 blueswir1
    draw_line8_15bgr,
1204 ffd39257 blueswir1
    draw_line8_16bgr,
1205 ffd39257 blueswir1
};
1206 ffd39257 blueswir1
1207 ffd39257 blueswir1
static draw_line_func * draw_line16_funcs[] = {
1208 ffd39257 blueswir1
    draw_line16_8,
1209 ffd39257 blueswir1
    draw_line16_15,
1210 ffd39257 blueswir1
    draw_line16_16,
1211 ffd39257 blueswir1
    draw_line16_32,
1212 ffd39257 blueswir1
    draw_line16_32bgr,
1213 ffd39257 blueswir1
    draw_line16_15bgr,
1214 ffd39257 blueswir1
    draw_line16_16bgr,
1215 ffd39257 blueswir1
};
1216 ffd39257 blueswir1
1217 ffd39257 blueswir1
static draw_line_func * draw_line32_funcs[] = {
1218 ffd39257 blueswir1
    draw_line32_8,
1219 ffd39257 blueswir1
    draw_line32_15,
1220 ffd39257 blueswir1
    draw_line32_16,
1221 ffd39257 blueswir1
    draw_line32_32,
1222 ffd39257 blueswir1
    draw_line32_32bgr,
1223 ffd39257 blueswir1
    draw_line32_15bgr,
1224 ffd39257 blueswir1
    draw_line32_16bgr,
1225 ffd39257 blueswir1
};
1226 ffd39257 blueswir1
1227 0a4e7cd2 Shin-ichiro KAWASAKI
static draw_hwc_line_func * draw_hwc_line_funcs[] = {
1228 0a4e7cd2 Shin-ichiro KAWASAKI
    draw_hwc_line_8,
1229 0a4e7cd2 Shin-ichiro KAWASAKI
    draw_hwc_line_15,
1230 0a4e7cd2 Shin-ichiro KAWASAKI
    draw_hwc_line_16,
1231 0a4e7cd2 Shin-ichiro KAWASAKI
    draw_hwc_line_32,
1232 0a4e7cd2 Shin-ichiro KAWASAKI
    draw_hwc_line_32bgr,
1233 0a4e7cd2 Shin-ichiro KAWASAKI
    draw_hwc_line_15bgr,
1234 0a4e7cd2 Shin-ichiro KAWASAKI
    draw_hwc_line_16bgr,
1235 0a4e7cd2 Shin-ichiro KAWASAKI
};
1236 0a4e7cd2 Shin-ichiro KAWASAKI
1237 c78f7137 Gerd Hoffmann
static inline int get_depth_index(DisplaySurface *surface)
1238 ffd39257 blueswir1
{
1239 c78f7137 Gerd Hoffmann
    switch (surface_bits_per_pixel(surface)) {
1240 ffd39257 blueswir1
    default:
1241 ffd39257 blueswir1
    case 8:
1242 ffd39257 blueswir1
        return 0;
1243 ffd39257 blueswir1
    case 15:
1244 8927bcfd aliguori
        return 1;
1245 ffd39257 blueswir1
    case 16:
1246 8927bcfd aliguori
        return 2;
1247 ffd39257 blueswir1
    case 32:
1248 c78f7137 Gerd Hoffmann
        if (is_surface_bgr(surface)) {
1249 c78f7137 Gerd Hoffmann
            return 4;
1250 c78f7137 Gerd Hoffmann
        } else {
1251 c78f7137 Gerd Hoffmann
            return 3;
1252 c78f7137 Gerd Hoffmann
        }
1253 ffd39257 blueswir1
    }
1254 ffd39257 blueswir1
}
1255 ffd39257 blueswir1
1256 ffd39257 blueswir1
static void sm501_draw_crt(SM501State * s)
1257 ffd39257 blueswir1
{
1258 c78f7137 Gerd Hoffmann
    DisplaySurface *surface = qemu_console_surface(s->con);
1259 ffd39257 blueswir1
    int y;
1260 ffd39257 blueswir1
    int width = (s->dc_crt_h_total & 0x00000FFF) + 1;
1261 ffd39257 blueswir1
    int height = (s->dc_crt_v_total & 0x00000FFF) + 1;
1262 ffd39257 blueswir1
1263 ffd39257 blueswir1
    uint8_t  * src = s->local_mem;
1264 ffd39257 blueswir1
    int src_bpp = 0;
1265 c78f7137 Gerd Hoffmann
    int dst_bpp = surface_bytes_per_pixel(surface);
1266 ffd39257 blueswir1
    uint32_t * palette = (uint32_t *)&s->dc_palette[SM501_DC_CRT_PALETTE
1267 ffd39257 blueswir1
                                                    - SM501_DC_PANEL_PALETTE];
1268 0a4e7cd2 Shin-ichiro KAWASAKI
    uint8_t hwc_palette[3 * 3];
1269 c78f7137 Gerd Hoffmann
    int ds_depth_index = get_depth_index(surface);
1270 ffd39257 blueswir1
    draw_line_func * draw_line = NULL;
1271 0a4e7cd2 Shin-ichiro KAWASAKI
    draw_hwc_line_func * draw_hwc_line = NULL;
1272 ffd39257 blueswir1
    int full_update = 0;
1273 ffd39257 blueswir1
    int y_start = -1;
1274 543c4c94 Aurelien Jarno
    ram_addr_t page_min = ~0l;
1275 543c4c94 Aurelien Jarno
    ram_addr_t page_max = 0l;
1276 25793bfa Avi Kivity
    ram_addr_t offset = 0;
1277 ffd39257 blueswir1
1278 ffd39257 blueswir1
    /* choose draw_line function */
1279 ffd39257 blueswir1
    switch (s->dc_crt_control & 3) {
1280 ffd39257 blueswir1
    case SM501_DC_CRT_CONTROL_8BPP:
1281 ffd39257 blueswir1
        src_bpp = 1;
1282 ffd39257 blueswir1
        draw_line = draw_line8_funcs[ds_depth_index];
1283 ffd39257 blueswir1
        break;
1284 ffd39257 blueswir1
    case SM501_DC_CRT_CONTROL_16BPP:
1285 ffd39257 blueswir1
        src_bpp = 2;
1286 ffd39257 blueswir1
        draw_line = draw_line16_funcs[ds_depth_index];
1287 ffd39257 blueswir1
        break;
1288 ffd39257 blueswir1
    case SM501_DC_CRT_CONTROL_32BPP:
1289 ffd39257 blueswir1
        src_bpp = 4;
1290 ffd39257 blueswir1
        draw_line = draw_line32_funcs[ds_depth_index];
1291 ffd39257 blueswir1
        break;
1292 ffd39257 blueswir1
    default:
1293 ffd39257 blueswir1
        printf("sm501 draw crt : invalid DC_CRT_CONTROL=%x.\n",
1294 ffd39257 blueswir1
               s->dc_crt_control);
1295 43dc2a64 Blue Swirl
        abort();
1296 ffd39257 blueswir1
        break;
1297 ffd39257 blueswir1
    }
1298 ffd39257 blueswir1
1299 0a4e7cd2 Shin-ichiro KAWASAKI
    /* set up to draw hardware cursor */
1300 0a4e7cd2 Shin-ichiro KAWASAKI
    if (is_hwc_enabled(s, 1)) {
1301 0a4e7cd2 Shin-ichiro KAWASAKI
        int i;
1302 0a4e7cd2 Shin-ichiro KAWASAKI
1303 0a4e7cd2 Shin-ichiro KAWASAKI
        /* get cursor palette */
1304 0a4e7cd2 Shin-ichiro KAWASAKI
        for (i = 0; i < 3; i++) {
1305 0a4e7cd2 Shin-ichiro KAWASAKI
            uint16_t rgb565 = get_hwc_color(s, 1, i + 1);
1306 0a4e7cd2 Shin-ichiro KAWASAKI
            hwc_palette[i * 3 + 0] = (rgb565 & 0xf800) >> 8; /* red */
1307 0a4e7cd2 Shin-ichiro KAWASAKI
            hwc_palette[i * 3 + 1] = (rgb565 & 0x07e0) >> 3; /* green */
1308 0a4e7cd2 Shin-ichiro KAWASAKI
            hwc_palette[i * 3 + 2] = (rgb565 & 0x001f) << 3; /* blue */
1309 0a4e7cd2 Shin-ichiro KAWASAKI
        }
1310 0a4e7cd2 Shin-ichiro KAWASAKI
1311 0a4e7cd2 Shin-ichiro KAWASAKI
        /* choose cursor draw line function */
1312 0a4e7cd2 Shin-ichiro KAWASAKI
        draw_hwc_line = draw_hwc_line_funcs[ds_depth_index];
1313 0a4e7cd2 Shin-ichiro KAWASAKI
    }
1314 0a4e7cd2 Shin-ichiro KAWASAKI
1315 ffd39257 blueswir1
    /* adjust console size */
1316 ffd39257 blueswir1
    if (s->last_width != width || s->last_height != height) {
1317 c78f7137 Gerd Hoffmann
        qemu_console_resize(s->con, width, height);
1318 c78f7137 Gerd Hoffmann
        surface = qemu_console_surface(s->con);
1319 ffd39257 blueswir1
        s->last_width = width;
1320 ffd39257 blueswir1
        s->last_height = height;
1321 ffd39257 blueswir1
        full_update = 1;
1322 ffd39257 blueswir1
    }
1323 ffd39257 blueswir1
1324 ffd39257 blueswir1
    /* draw each line according to conditions */
1325 ffd39257 blueswir1
    for (y = 0; y < height; y++) {
1326 0a4e7cd2 Shin-ichiro KAWASAKI
        int update_hwc = draw_hwc_line ? within_hwc_y_range(s, y, 1) : 0;
1327 0a4e7cd2 Shin-ichiro KAWASAKI
        int update = full_update || update_hwc;
1328 cd7a45c9 Blue Swirl
        ram_addr_t page0 = offset;
1329 cd7a45c9 Blue Swirl
        ram_addr_t page1 = offset + width * src_bpp - 1;
1330 ffd39257 blueswir1
1331 ffd39257 blueswir1
        /* check dirty flags for each line */
1332 d1f3dd34 Blue Swirl
        update = memory_region_get_dirty(&s->local_mem_region, page0,
1333 d1f3dd34 Blue Swirl
                                         page1 - page0, DIRTY_MEMORY_VGA);
1334 ffd39257 blueswir1
1335 ffd39257 blueswir1
        /* draw line and change status */
1336 ffd39257 blueswir1
        if (update) {
1337 c78f7137 Gerd Hoffmann
            uint8_t *d = surface_data(surface);
1338 c78f7137 Gerd Hoffmann
            d +=  y * width * dst_bpp;
1339 0a4e7cd2 Shin-ichiro KAWASAKI
1340 0a4e7cd2 Shin-ichiro KAWASAKI
            /* draw graphics layer */
1341 0a4e7cd2 Shin-ichiro KAWASAKI
            draw_line(d, src, width, palette);
1342 0a4e7cd2 Shin-ichiro KAWASAKI
1343 0a4e7cd2 Shin-ichiro KAWASAKI
            /* draw haredware cursor */
1344 0a4e7cd2 Shin-ichiro KAWASAKI
            if (update_hwc) {
1345 0a4e7cd2 Shin-ichiro KAWASAKI
                draw_hwc_line(s, 1, hwc_palette, y - get_hwc_y(s, 1), d, width);
1346 0a4e7cd2 Shin-ichiro KAWASAKI
            }
1347 0a4e7cd2 Shin-ichiro KAWASAKI
1348 ffd39257 blueswir1
            if (y_start < 0)
1349 ffd39257 blueswir1
                y_start = y;
1350 ffd39257 blueswir1
            if (page0 < page_min)
1351 ffd39257 blueswir1
                page_min = page0;
1352 ffd39257 blueswir1
            if (page1 > page_max)
1353 ffd39257 blueswir1
                page_max = page1;
1354 ffd39257 blueswir1
        } else {
1355 ffd39257 blueswir1
            if (y_start >= 0) {
1356 ffd39257 blueswir1
                /* flush to display */
1357 c78f7137 Gerd Hoffmann
                dpy_gfx_update(s->con, 0, y_start, width, y - y_start);
1358 ffd39257 blueswir1
                y_start = -1;
1359 ffd39257 blueswir1
            }
1360 ffd39257 blueswir1
        }
1361 ffd39257 blueswir1
1362 ffd39257 blueswir1
        src += width * src_bpp;
1363 44654490 pbrook
        offset += width * src_bpp;
1364 ffd39257 blueswir1
    }
1365 ffd39257 blueswir1
1366 ffd39257 blueswir1
    /* complete flush to display */
1367 ffd39257 blueswir1
    if (y_start >= 0)
1368 c78f7137 Gerd Hoffmann
        dpy_gfx_update(s->con, 0, y_start, width, y - y_start);
1369 ffd39257 blueswir1
1370 ffd39257 blueswir1
    /* clear dirty flags */
1371 543c4c94 Aurelien Jarno
    if (page_min != ~0l) {
1372 25793bfa Avi Kivity
        memory_region_reset_dirty(&s->local_mem_region,
1373 25793bfa Avi Kivity
                                  page_min, page_max + TARGET_PAGE_SIZE,
1374 25793bfa Avi Kivity
                                  DIRTY_MEMORY_VGA);
1375 543c4c94 Aurelien Jarno
    }
1376 ffd39257 blueswir1
}
1377 ffd39257 blueswir1
1378 ffd39257 blueswir1
static void sm501_update_display(void *opaque)
1379 ffd39257 blueswir1
{
1380 ffd39257 blueswir1
    SM501State * s = (SM501State *)opaque;
1381 ffd39257 blueswir1
1382 ffd39257 blueswir1
    if (s->dc_crt_control & SM501_DC_CRT_CONTROL_ENABLE)
1383 ffd39257 blueswir1
        sm501_draw_crt(s);
1384 ffd39257 blueswir1
}
1385 ffd39257 blueswir1
1386 27a9d2ea Richard Henderson
void sm501_init(MemoryRegion *address_space_mem, uint32_t base,
1387 27a9d2ea Richard Henderson
                uint32_t local_mem_bytes, qemu_irq irq, CharDriverState *chr)
1388 ffd39257 blueswir1
{
1389 ffd39257 blueswir1
    SM501State * s;
1390 61d3cf93 Paul Brook
    DeviceState *dev;
1391 25793bfa Avi Kivity
    MemoryRegion *sm501_system_config = g_new(MemoryRegion, 1);
1392 25793bfa Avi Kivity
    MemoryRegion *sm501_disp_ctrl = g_new(MemoryRegion, 1);
1393 25793bfa Avi Kivity
    MemoryRegion *sm501_2d_engine = g_new(MemoryRegion, 1);
1394 ffd39257 blueswir1
1395 ffd39257 blueswir1
    /* allocate management data region */
1396 7267c094 Anthony Liguori
    s = (SM501State *)g_malloc0(sizeof(SM501State));
1397 ffd39257 blueswir1
    s->base = base;
1398 ffd39257 blueswir1
    s->local_mem_size_index
1399 ffd39257 blueswir1
        = get_local_mem_size_index(local_mem_bytes);
1400 ffd39257 blueswir1
    SM501_DPRINTF("local mem size=%x. index=%d\n", get_local_mem_size(s),
1401 ffd39257 blueswir1
                  s->local_mem_size_index);
1402 ffd39257 blueswir1
    s->system_control = 0x00100000;
1403 ffd39257 blueswir1
    s->misc_control = 0x00001000; /* assumes SH, active=low */
1404 ffd39257 blueswir1
    s->dc_panel_control = 0x00010000;
1405 ffd39257 blueswir1
    s->dc_crt_control = 0x00010000;
1406 ffd39257 blueswir1
1407 ffd39257 blueswir1
    /* allocate local memory */
1408 c5705a77 Avi Kivity
    memory_region_init_ram(&s->local_mem_region, "sm501.local",
1409 25793bfa Avi Kivity
                           local_mem_bytes);
1410 c5705a77 Avi Kivity
    vmstate_register_ram_global(&s->local_mem_region);
1411 25793bfa Avi Kivity
    s->local_mem = memory_region_get_ram_ptr(&s->local_mem_region);
1412 25793bfa Avi Kivity
    memory_region_add_subregion(address_space_mem, base, &s->local_mem_region);
1413 ffd39257 blueswir1
1414 ffd39257 blueswir1
    /* map mmio */
1415 25793bfa Avi Kivity
    memory_region_init_io(sm501_system_config, &sm501_system_config_ops, s,
1416 25793bfa Avi Kivity
                          "sm501-system-config", 0x6c);
1417 25793bfa Avi Kivity
    memory_region_add_subregion(address_space_mem, base + MMIO_BASE_OFFSET,
1418 25793bfa Avi Kivity
                                sm501_system_config);
1419 25793bfa Avi Kivity
    memory_region_init_io(sm501_disp_ctrl, &sm501_disp_ctrl_ops, s,
1420 25793bfa Avi Kivity
                          "sm501-disp-ctrl", 0x1000);
1421 25793bfa Avi Kivity
    memory_region_add_subregion(address_space_mem,
1422 25793bfa Avi Kivity
                                base + MMIO_BASE_OFFSET + SM501_DC,
1423 25793bfa Avi Kivity
                                sm501_disp_ctrl);
1424 25793bfa Avi Kivity
    memory_region_init_io(sm501_2d_engine, &sm501_2d_engine_ops, s,
1425 25793bfa Avi Kivity
                          "sm501-2d-engine", 0x54);
1426 25793bfa Avi Kivity
    memory_region_add_subregion(address_space_mem,
1427 25793bfa Avi Kivity
                                base + MMIO_BASE_OFFSET + SM501_2D_ENGINE,
1428 25793bfa Avi Kivity
                                sm501_2d_engine);
1429 ffd39257 blueswir1
1430 ac611340 aurel32
    /* bridge to usb host emulation module */
1431 61d3cf93 Paul Brook
    dev = qdev_create(NULL, "sysbus-ohci");
1432 61d3cf93 Paul Brook
    qdev_prop_set_uint32(dev, "num-ports", 2);
1433 61d3cf93 Paul Brook
    qdev_prop_set_taddr(dev, "dma-offset", base);
1434 61d3cf93 Paul Brook
    qdev_init_nofail(dev);
1435 1356b98d Andreas Färber
    sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0,
1436 61d3cf93 Paul Brook
                    base + MMIO_BASE_OFFSET + SM501_USB_HOST);
1437 1356b98d Andreas Färber
    sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0, irq);
1438 ac611340 aurel32
1439 ffd39257 blueswir1
    /* bridge to serial emulation module */
1440 2d48377a Blue Swirl
    if (chr) {
1441 27a9d2ea Richard Henderson
        serial_mm_init(address_space_mem,
1442 39186d8a Richard Henderson
                       base + MMIO_BASE_OFFSET + SM501_UART0, 2,
1443 2d48377a Blue Swirl
                       NULL, /* TODO : chain irq to IRL */
1444 2ff0c7c3 Richard Henderson
                       115200, chr, DEVICE_NATIVE_ENDIAN);
1445 2d48377a Blue Swirl
    }
1446 ffd39257 blueswir1
1447 ffd39257 blueswir1
    /* create qemu graphic console */
1448 c78f7137 Gerd Hoffmann
    s->con = graphic_console_init(sm501_update_display, NULL,
1449 c78f7137 Gerd Hoffmann
                                  NULL, NULL, s);
1450 ffd39257 blueswir1
}