Merge branch 'master' of git://git.qemu.org/qemu
[qemu.git] / hw / tc6393xb.c
blobc144dcf5ff37e790b4c922e0e06b9318ebce5122
1 /*
2 * Toshiba TC6393XB I/O Controller.
3 * Found in Sharp Zaurus SL-6000 (tosa) or some
4 * Toshiba e-Series PDAs.
6 * Most features are currently unsupported!!!
8 * This code is licensed under the GNU GPL v2.
9 */
10 #include "hw.h"
11 #include "devices.h"
12 #include "flash.h"
13 #include "console.h"
14 #include "pixel_ops.h"
15 #include "blockdev.h"
17 #define IRQ_TC6393_NAND 0
18 #define IRQ_TC6393_MMC 1
19 #define IRQ_TC6393_OHCI 2
20 #define IRQ_TC6393_SERIAL 3
21 #define IRQ_TC6393_FB 4
23 #define TC6393XB_NR_IRQS 8
25 #define TC6393XB_GPIOS 16
27 #define SCR_REVID 0x08 /* b Revision ID */
28 #define SCR_ISR 0x50 /* b Interrupt Status */
29 #define SCR_IMR 0x52 /* b Interrupt Mask */
30 #define SCR_IRR 0x54 /* b Interrupt Routing */
31 #define SCR_GPER 0x60 /* w GP Enable */
32 #define SCR_GPI_SR(i) (0x64 + (i)) /* b3 GPI Status */
33 #define SCR_GPI_IMR(i) (0x68 + (i)) /* b3 GPI INT Mask */
34 #define SCR_GPI_EDER(i) (0x6c + (i)) /* b3 GPI Edge Detect Enable */
35 #define SCR_GPI_LIR(i) (0x70 + (i)) /* b3 GPI Level Invert */
36 #define SCR_GPO_DSR(i) (0x78 + (i)) /* b3 GPO Data Set */
37 #define SCR_GPO_DOECR(i) (0x7c + (i)) /* b3 GPO Data OE Control */
38 #define SCR_GP_IARCR(i) (0x80 + (i)) /* b3 GP Internal Active Register Control */
39 #define SCR_GP_IARLCR(i) (0x84 + (i)) /* b3 GP INTERNAL Active Register Level Control */
40 #define SCR_GPI_BCR(i) (0x88 + (i)) /* b3 GPI Buffer Control */
41 #define SCR_GPA_IARCR 0x8c /* w GPa Internal Active Register Control */
42 #define SCR_GPA_IARLCR 0x90 /* w GPa Internal Active Register Level Control */
43 #define SCR_GPA_BCR 0x94 /* w GPa Buffer Control */
44 #define SCR_CCR 0x98 /* w Clock Control */
45 #define SCR_PLL2CR 0x9a /* w PLL2 Control */
46 #define SCR_PLL1CR 0x9c /* l PLL1 Control */
47 #define SCR_DIARCR 0xa0 /* b Device Internal Active Register Control */
48 #define SCR_DBOCR 0xa1 /* b Device Buffer Off Control */
49 #define SCR_FER 0xe0 /* b Function Enable */
50 #define SCR_MCR 0xe4 /* w Mode Control */
51 #define SCR_CONFIG 0xfc /* b Configuration Control */
52 #define SCR_DEBUG 0xff /* b Debug */
54 #define NAND_CFG_COMMAND 0x04 /* w Command */
55 #define NAND_CFG_BASE 0x10 /* l Control Base Address */
56 #define NAND_CFG_INTP 0x3d /* b Interrupt Pin */
57 #define NAND_CFG_INTE 0x48 /* b Int Enable */
58 #define NAND_CFG_EC 0x4a /* b Event Control */
59 #define NAND_CFG_ICC 0x4c /* b Internal Clock Control */
60 #define NAND_CFG_ECCC 0x5b /* b ECC Control */
61 #define NAND_CFG_NFTC 0x60 /* b NAND Flash Transaction Control */
62 #define NAND_CFG_NFM 0x61 /* b NAND Flash Monitor */
63 #define NAND_CFG_NFPSC 0x62 /* b NAND Flash Power Supply Control */
64 #define NAND_CFG_NFDC 0x63 /* b NAND Flash Detect Control */
66 #define NAND_DATA 0x00 /* l Data */
67 #define NAND_MODE 0x04 /* b Mode */
68 #define NAND_STATUS 0x05 /* b Status */
69 #define NAND_ISR 0x06 /* b Interrupt Status */
70 #define NAND_IMR 0x07 /* b Interrupt Mask */
72 #define NAND_MODE_WP 0x80
73 #define NAND_MODE_CE 0x10
74 #define NAND_MODE_ALE 0x02
75 #define NAND_MODE_CLE 0x01
76 #define NAND_MODE_ECC_MASK 0x60
77 #define NAND_MODE_ECC_EN 0x20
78 #define NAND_MODE_ECC_READ 0x40
79 #define NAND_MODE_ECC_RST 0x60
81 struct TC6393xbState {
82 MemoryRegion iomem;
83 qemu_irq irq;
84 qemu_irq *sub_irqs;
85 struct {
86 uint8_t ISR;
87 uint8_t IMR;
88 uint8_t IRR;
89 uint16_t GPER;
90 uint8_t GPI_SR[3];
91 uint8_t GPI_IMR[3];
92 uint8_t GPI_EDER[3];
93 uint8_t GPI_LIR[3];
94 uint8_t GP_IARCR[3];
95 uint8_t GP_IARLCR[3];
96 uint8_t GPI_BCR[3];
97 uint16_t GPA_IARCR;
98 uint16_t GPA_IARLCR;
99 uint16_t CCR;
100 uint16_t PLL2CR;
101 uint32_t PLL1CR;
102 uint8_t DIARCR;
103 uint8_t DBOCR;
104 uint8_t FER;
105 uint16_t MCR;
106 uint8_t CONFIG;
107 uint8_t DEBUG;
108 } scr;
109 uint32_t gpio_dir;
110 uint32_t gpio_level;
111 uint32_t prev_level;
112 qemu_irq handler[TC6393XB_GPIOS];
113 qemu_irq *gpio_in;
115 struct {
116 uint8_t mode;
117 uint8_t isr;
118 uint8_t imr;
119 } nand;
120 int nand_enable;
121 uint32_t nand_phys;
122 DeviceState *flash;
123 ECCState ecc;
125 DisplayState *ds;
126 MemoryRegion vram;
127 uint16_t *vram_ptr;
128 uint32_t scr_width, scr_height; /* in pixels */
129 qemu_irq l3v;
130 unsigned blank : 1,
131 blanked : 1;
134 qemu_irq *tc6393xb_gpio_in_get(TC6393xbState *s)
136 return s->gpio_in;
139 static void tc6393xb_gpio_set(void *opaque, int line, int level)
141 // TC6393xbState *s = opaque;
143 if (line > TC6393XB_GPIOS) {
144 printf("%s: No GPIO pin %i\n", __FUNCTION__, line);
145 return;
148 // FIXME: how does the chip reflect the GPIO input level change?
151 void tc6393xb_gpio_out_set(TC6393xbState *s, int line,
152 qemu_irq handler)
154 if (line >= TC6393XB_GPIOS) {
155 fprintf(stderr, "TC6393xb: no GPIO pin %d\n", line);
156 return;
159 s->handler[line] = handler;
162 static void tc6393xb_gpio_handler_update(TC6393xbState *s)
164 uint32_t level, diff;
165 int bit;
167 level = s->gpio_level & s->gpio_dir;
169 for (diff = s->prev_level ^ level; diff; diff ^= 1 << bit) {
170 bit = ffs(diff) - 1;
171 qemu_set_irq(s->handler[bit], (level >> bit) & 1);
174 s->prev_level = level;
177 qemu_irq tc6393xb_l3v_get(TC6393xbState *s)
179 return s->l3v;
182 static void tc6393xb_l3v(void *opaque, int line, int level)
184 TC6393xbState *s = opaque;
185 s->blank = !level;
186 fprintf(stderr, "L3V: %d\n", level);
189 static void tc6393xb_sub_irq(void *opaque, int line, int level) {
190 TC6393xbState *s = opaque;
191 uint8_t isr = s->scr.ISR;
192 if (level)
193 isr |= 1 << line;
194 else
195 isr &= ~(1 << line);
196 s->scr.ISR = isr;
197 qemu_set_irq(s->irq, isr & s->scr.IMR);
200 #define SCR_REG_B(N) \
201 case SCR_ ##N: return s->scr.N
202 #define SCR_REG_W(N) \
203 case SCR_ ##N: return s->scr.N; \
204 case SCR_ ##N + 1: return s->scr.N >> 8;
205 #define SCR_REG_L(N) \
206 case SCR_ ##N: return s->scr.N; \
207 case SCR_ ##N + 1: return s->scr.N >> 8; \
208 case SCR_ ##N + 2: return s->scr.N >> 16; \
209 case SCR_ ##N + 3: return s->scr.N >> 24;
210 #define SCR_REG_A(N) \
211 case SCR_ ##N(0): return s->scr.N[0]; \
212 case SCR_ ##N(1): return s->scr.N[1]; \
213 case SCR_ ##N(2): return s->scr.N[2]
215 static uint32_t tc6393xb_scr_readb(TC6393xbState *s, target_phys_addr_t addr)
217 switch (addr) {
218 case SCR_REVID:
219 return 3;
220 case SCR_REVID+1:
221 return 0;
222 SCR_REG_B(ISR);
223 SCR_REG_B(IMR);
224 SCR_REG_B(IRR);
225 SCR_REG_W(GPER);
226 SCR_REG_A(GPI_SR);
227 SCR_REG_A(GPI_IMR);
228 SCR_REG_A(GPI_EDER);
229 SCR_REG_A(GPI_LIR);
230 case SCR_GPO_DSR(0):
231 case SCR_GPO_DSR(1):
232 case SCR_GPO_DSR(2):
233 return (s->gpio_level >> ((addr - SCR_GPO_DSR(0)) * 8)) & 0xff;
234 case SCR_GPO_DOECR(0):
235 case SCR_GPO_DOECR(1):
236 case SCR_GPO_DOECR(2):
237 return (s->gpio_dir >> ((addr - SCR_GPO_DOECR(0)) * 8)) & 0xff;
238 SCR_REG_A(GP_IARCR);
239 SCR_REG_A(GP_IARLCR);
240 SCR_REG_A(GPI_BCR);
241 SCR_REG_W(GPA_IARCR);
242 SCR_REG_W(GPA_IARLCR);
243 SCR_REG_W(CCR);
244 SCR_REG_W(PLL2CR);
245 SCR_REG_L(PLL1CR);
246 SCR_REG_B(DIARCR);
247 SCR_REG_B(DBOCR);
248 SCR_REG_B(FER);
249 SCR_REG_W(MCR);
250 SCR_REG_B(CONFIG);
251 SCR_REG_B(DEBUG);
253 fprintf(stderr, "tc6393xb_scr: unhandled read at %08x\n", (uint32_t) addr);
254 return 0;
256 #undef SCR_REG_B
257 #undef SCR_REG_W
258 #undef SCR_REG_L
259 #undef SCR_REG_A
261 #define SCR_REG_B(N) \
262 case SCR_ ##N: s->scr.N = value; return;
263 #define SCR_REG_W(N) \
264 case SCR_ ##N: s->scr.N = (s->scr.N & ~0xff) | (value & 0xff); return; \
265 case SCR_ ##N + 1: s->scr.N = (s->scr.N & 0xff) | (value << 8); return
266 #define SCR_REG_L(N) \
267 case SCR_ ##N: s->scr.N = (s->scr.N & ~0xff) | (value & 0xff); return; \
268 case SCR_ ##N + 1: s->scr.N = (s->scr.N & ~(0xff << 8)) | (value & (0xff << 8)); return; \
269 case SCR_ ##N + 2: s->scr.N = (s->scr.N & ~(0xff << 16)) | (value & (0xff << 16)); return; \
270 case SCR_ ##N + 3: s->scr.N = (s->scr.N & ~(0xff << 24)) | (value & (0xff << 24)); return;
271 #define SCR_REG_A(N) \
272 case SCR_ ##N(0): s->scr.N[0] = value; return; \
273 case SCR_ ##N(1): s->scr.N[1] = value; return; \
274 case SCR_ ##N(2): s->scr.N[2] = value; return
276 static void tc6393xb_scr_writeb(TC6393xbState *s, target_phys_addr_t addr, uint32_t value)
278 switch (addr) {
279 SCR_REG_B(ISR);
280 SCR_REG_B(IMR);
281 SCR_REG_B(IRR);
282 SCR_REG_W(GPER);
283 SCR_REG_A(GPI_SR);
284 SCR_REG_A(GPI_IMR);
285 SCR_REG_A(GPI_EDER);
286 SCR_REG_A(GPI_LIR);
287 case SCR_GPO_DSR(0):
288 case SCR_GPO_DSR(1):
289 case SCR_GPO_DSR(2):
290 s->gpio_level = (s->gpio_level & ~(0xff << ((addr - SCR_GPO_DSR(0))*8))) | ((value & 0xff) << ((addr - SCR_GPO_DSR(0))*8));
291 tc6393xb_gpio_handler_update(s);
292 return;
293 case SCR_GPO_DOECR(0):
294 case SCR_GPO_DOECR(1):
295 case SCR_GPO_DOECR(2):
296 s->gpio_dir = (s->gpio_dir & ~(0xff << ((addr - SCR_GPO_DOECR(0))*8))) | ((value & 0xff) << ((addr - SCR_GPO_DOECR(0))*8));
297 tc6393xb_gpio_handler_update(s);
298 return;
299 SCR_REG_A(GP_IARCR);
300 SCR_REG_A(GP_IARLCR);
301 SCR_REG_A(GPI_BCR);
302 SCR_REG_W(GPA_IARCR);
303 SCR_REG_W(GPA_IARLCR);
304 SCR_REG_W(CCR);
305 SCR_REG_W(PLL2CR);
306 SCR_REG_L(PLL1CR);
307 SCR_REG_B(DIARCR);
308 SCR_REG_B(DBOCR);
309 SCR_REG_B(FER);
310 SCR_REG_W(MCR);
311 SCR_REG_B(CONFIG);
312 SCR_REG_B(DEBUG);
314 fprintf(stderr, "tc6393xb_scr: unhandled write at %08x: %02x\n",
315 (uint32_t) addr, value & 0xff);
317 #undef SCR_REG_B
318 #undef SCR_REG_W
319 #undef SCR_REG_L
320 #undef SCR_REG_A
322 static void tc6393xb_nand_irq(TC6393xbState *s) {
323 qemu_set_irq(s->sub_irqs[IRQ_TC6393_NAND],
324 (s->nand.imr & 0x80) && (s->nand.imr & s->nand.isr));
327 static uint32_t tc6393xb_nand_cfg_readb(TC6393xbState *s, target_phys_addr_t addr) {
328 switch (addr) {
329 case NAND_CFG_COMMAND:
330 return s->nand_enable ? 2 : 0;
331 case NAND_CFG_BASE:
332 case NAND_CFG_BASE + 1:
333 case NAND_CFG_BASE + 2:
334 case NAND_CFG_BASE + 3:
335 return s->nand_phys >> (addr - NAND_CFG_BASE);
337 fprintf(stderr, "tc6393xb_nand_cfg: unhandled read at %08x\n", (uint32_t) addr);
338 return 0;
340 static void tc6393xb_nand_cfg_writeb(TC6393xbState *s, target_phys_addr_t addr, uint32_t value) {
341 switch (addr) {
342 case NAND_CFG_COMMAND:
343 s->nand_enable = (value & 0x2);
344 return;
345 case NAND_CFG_BASE:
346 case NAND_CFG_BASE + 1:
347 case NAND_CFG_BASE + 2:
348 case NAND_CFG_BASE + 3:
349 s->nand_phys &= ~(0xff << ((addr - NAND_CFG_BASE) * 8));
350 s->nand_phys |= (value & 0xff) << ((addr - NAND_CFG_BASE) * 8);
351 return;
353 fprintf(stderr, "tc6393xb_nand_cfg: unhandled write at %08x: %02x\n",
354 (uint32_t) addr, value & 0xff);
357 static uint32_t tc6393xb_nand_readb(TC6393xbState *s, target_phys_addr_t addr) {
358 switch (addr) {
359 case NAND_DATA + 0:
360 case NAND_DATA + 1:
361 case NAND_DATA + 2:
362 case NAND_DATA + 3:
363 return nand_getio(s->flash);
364 case NAND_MODE:
365 return s->nand.mode;
366 case NAND_STATUS:
367 return 0x14;
368 case NAND_ISR:
369 return s->nand.isr;
370 case NAND_IMR:
371 return s->nand.imr;
373 fprintf(stderr, "tc6393xb_nand: unhandled read at %08x\n", (uint32_t) addr);
374 return 0;
376 static void tc6393xb_nand_writeb(TC6393xbState *s, target_phys_addr_t addr, uint32_t value) {
377 // fprintf(stderr, "tc6393xb_nand: write at %08x: %02x\n",
378 // (uint32_t) addr, value & 0xff);
379 switch (addr) {
380 case NAND_DATA + 0:
381 case NAND_DATA + 1:
382 case NAND_DATA + 2:
383 case NAND_DATA + 3:
384 nand_setio(s->flash, value);
385 s->nand.isr |= 1;
386 tc6393xb_nand_irq(s);
387 return;
388 case NAND_MODE:
389 s->nand.mode = value;
390 nand_setpins(s->flash,
391 value & NAND_MODE_CLE,
392 value & NAND_MODE_ALE,
393 !(value & NAND_MODE_CE),
394 value & NAND_MODE_WP,
395 0); // FIXME: gnd
396 switch (value & NAND_MODE_ECC_MASK) {
397 case NAND_MODE_ECC_RST:
398 ecc_reset(&s->ecc);
399 break;
400 case NAND_MODE_ECC_READ:
401 // FIXME
402 break;
403 case NAND_MODE_ECC_EN:
404 ecc_reset(&s->ecc);
406 return;
407 case NAND_ISR:
408 s->nand.isr = value;
409 tc6393xb_nand_irq(s);
410 return;
411 case NAND_IMR:
412 s->nand.imr = value;
413 tc6393xb_nand_irq(s);
414 return;
416 fprintf(stderr, "tc6393xb_nand: unhandled write at %08x: %02x\n",
417 (uint32_t) addr, value & 0xff);
420 #define BITS 8
421 #include "tc6393xb_template.h"
422 #define BITS 15
423 #include "tc6393xb_template.h"
424 #define BITS 16
425 #include "tc6393xb_template.h"
426 #define BITS 24
427 #include "tc6393xb_template.h"
428 #define BITS 32
429 #include "tc6393xb_template.h"
431 static void tc6393xb_draw_graphic(TC6393xbState *s, int full_update)
433 switch (ds_get_bits_per_pixel(s->ds)) {
434 case 8:
435 tc6393xb_draw_graphic8(s);
436 break;
437 case 15:
438 tc6393xb_draw_graphic15(s);
439 break;
440 case 16:
441 tc6393xb_draw_graphic16(s);
442 break;
443 case 24:
444 tc6393xb_draw_graphic24(s);
445 break;
446 case 32:
447 tc6393xb_draw_graphic32(s);
448 break;
449 default:
450 printf("tc6393xb: unknown depth %d\n", ds_get_bits_per_pixel(s->ds));
451 return;
454 dpy_update(s->ds, 0, 0, s->scr_width, s->scr_height);
457 static void tc6393xb_draw_blank(TC6393xbState *s, int full_update)
459 int i, w;
460 uint8_t *d;
462 if (!full_update)
463 return;
465 w = s->scr_width * ((ds_get_bits_per_pixel(s->ds) + 7) >> 3);
466 d = ds_get_data(s->ds);
467 for(i = 0; i < s->scr_height; i++) {
468 memset(d, 0, w);
469 d += ds_get_linesize(s->ds);
472 dpy_update(s->ds, 0, 0, s->scr_width, s->scr_height);
475 static void tc6393xb_update_display(void *opaque)
477 TC6393xbState *s = opaque;
478 int full_update;
480 if (s->scr_width == 0 || s->scr_height == 0)
481 return;
483 full_update = 0;
484 if (s->blanked != s->blank) {
485 s->blanked = s->blank;
486 full_update = 1;
488 if (s->scr_width != ds_get_width(s->ds) || s->scr_height != ds_get_height(s->ds)) {
489 qemu_console_resize(s->ds, s->scr_width, s->scr_height);
490 full_update = 1;
492 if (s->blanked)
493 tc6393xb_draw_blank(s, full_update);
494 else
495 tc6393xb_draw_graphic(s, full_update);
499 static uint64_t tc6393xb_readb(void *opaque, target_phys_addr_t addr,
500 unsigned size)
502 TC6393xbState *s = opaque;
504 switch (addr >> 8) {
505 case 0:
506 return tc6393xb_scr_readb(s, addr & 0xff);
507 case 1:
508 return tc6393xb_nand_cfg_readb(s, addr & 0xff);
511 if ((addr &~0xff) == s->nand_phys && s->nand_enable) {
512 // return tc6393xb_nand_readb(s, addr & 0xff);
513 uint8_t d = tc6393xb_nand_readb(s, addr & 0xff);
514 // fprintf(stderr, "tc6393xb_nand: read at %08x: %02hhx\n", (uint32_t) addr, d);
515 return d;
518 // fprintf(stderr, "tc6393xb: unhandled read at %08x\n", (uint32_t) addr);
519 return 0;
522 static void tc6393xb_writeb(void *opaque, target_phys_addr_t addr,
523 uint64_t value, unsigned size) {
524 TC6393xbState *s = opaque;
526 switch (addr >> 8) {
527 case 0:
528 tc6393xb_scr_writeb(s, addr & 0xff, value);
529 return;
530 case 1:
531 tc6393xb_nand_cfg_writeb(s, addr & 0xff, value);
532 return;
535 if ((addr &~0xff) == s->nand_phys && s->nand_enable)
536 tc6393xb_nand_writeb(s, addr & 0xff, value);
537 else
538 fprintf(stderr, "tc6393xb: unhandled write at %08x: %02x\n",
539 (uint32_t) addr, (int)value & 0xff);
542 TC6393xbState *tc6393xb_init(MemoryRegion *sysmem, uint32_t base, qemu_irq irq)
544 TC6393xbState *s;
545 DriveInfo *nand;
546 static const MemoryRegionOps tc6393xb_ops = {
547 .read = tc6393xb_readb,
548 .write = tc6393xb_writeb,
549 .endianness = DEVICE_NATIVE_ENDIAN,
550 .impl = {
551 .min_access_size = 1,
552 .max_access_size = 1,
556 s = (TC6393xbState *) g_malloc0(sizeof(TC6393xbState));
557 s->irq = irq;
558 s->gpio_in = qemu_allocate_irqs(tc6393xb_gpio_set, s, TC6393XB_GPIOS);
560 s->l3v = *qemu_allocate_irqs(tc6393xb_l3v, s, 1);
561 s->blanked = 1;
563 s->sub_irqs = qemu_allocate_irqs(tc6393xb_sub_irq, s, TC6393XB_NR_IRQS);
565 nand = drive_get(IF_MTD, 0, 0);
566 s->flash = nand_init(nand ? nand->bdrv : NULL, NAND_MFR_TOSHIBA, 0x76);
568 memory_region_init_io(&s->iomem, &tc6393xb_ops, s, "tc6393xb", 0x10000);
569 memory_region_add_subregion(sysmem, base, &s->iomem);
571 memory_region_init_ram(&s->vram, NULL, "tc6393xb.vram", 0x100000);
572 s->vram_ptr = memory_region_get_ram_ptr(&s->vram);
573 memory_region_add_subregion(sysmem, base + 0x100000, &s->vram);
574 s->scr_width = 480;
575 s->scr_height = 640;
576 s->ds = graphic_console_init(tc6393xb_update_display,
577 NULL, /* invalidate */
578 NULL, /* screen_dump */
579 NULL, /* text_update */
582 return s;