2 * Samsung S3C2410A RISC Microprocessor support (ARM920T based SoC).
4 * Copyright (c) 2007 OpenMoko, Inc.
5 * Author: Andrzej Zaborowski <andrew@openedhand.com>
7 * This code is licenced under the GNU GPL v2.
11 #include "qemu-timer.h"
12 #include "qemu-char.h"
21 /* Interrupt controller */
22 struct s3c_pic_state_s
{
23 target_phys_addr_t base
;
37 static void s3c_pic_update(struct s3c_pic_state_s
*s
)
39 qemu_set_irq(s
->parent_pic
[ARM_PIC_CPU_FIQ
],
40 s
->srcpnd
& s
->intmod
);
41 qemu_set_irq(s
->parent_pic
[ARM_PIC_CPU_IRQ
],
42 s
->intpnd
& ~s
->intmsk
& ~s
->intmod
);
46 * Performs interrupt arbitration and notifies the CPU.
48 * Since it's a complex logic which cannot be relied on by the OS
49 * anyway - first because real hardware doesn't do it accurately,
50 * second because it only matters when interrupts occur at the
51 * same time which normally can't be predicted - we use a simpler
52 * version for non-debug runs.
55 static const uint32_t s3c_arbmsk
[6] = {
64 # define S3C_ARB_SEL(i) ((s->priority >> (7 + (i << 1))) & 3)
65 # define S3C_ARB_MODE(i) ((s->priority >> i) & 1)
66 # define S3C_ARB_SEL_SET(i, v) \
67 s->priority &= ~(3 << (7 + (i << 1))); \
68 s->priority |= v << (7 + (i << 1));
70 static void s3c_pic_arbitrate(struct s3c_pic_state_s
*s
)
72 uint32_t pnd
= s
->srcpnd
& ~s
->intmsk
& ~s
->intmod
;
74 if (s
->intpnd
|| !pnd
) {
79 if (pnd
& s3c_arbmsk
[0]) {
82 } else if (pnd
& 0x0ffffff0) {
85 if (!(pnd
& s3c_arbmsk
[1 + (i
& 3)]))
86 if (!(pnd
& s3c_arbmsk
[1 + (++ i
& 3)]))
87 if (!(pnd
& s3c_arbmsk
[1 + (++ i
& 3)]))
91 S3C_ARB_SEL_SET(6, ((i
+ 1) & 3));
92 offset
= (i
& 3) * 6 + 4;
93 if (pnd
& (1 << offset
))
95 else if (!(pnd
& (0x1f << offset
))) {
107 i
= S3C_ARB_SEL(arb
);
109 if (!(pnd
& (1 << (i
& 3))))
110 if (!(pnd
& (1 << (++ i
& 3))))
111 if (!(pnd
& (1 << (++ i
& 3))))
114 if (S3C_ARB_MODE(arb
))
115 S3C_ARB_SEL_SET(arb
, ((i
+ 1) & 3));
118 s
->intoffset
= offset
;
119 s
->intpnd
= 1 << offset
;
123 inline static void s3c_pic_arbitrate(struct s3c_pic_state_s
*s
)
125 uint32_t pnd
= s
->srcpnd
& ~s
->intmsk
& ~s
->intmod
;
126 if (pnd
&& !s
->intpnd
)
127 s
->intpnd
= 1 << (s
->intoffset
= ffs(pnd
) - 1);
132 static const int s3c_sub_src_map
[] = {
133 [S3C_PICS_RXD0
& 31] = S3C_PIC_UART0
,
134 [S3C_PICS_TXD0
& 31] = S3C_PIC_UART0
,
135 [S3C_PICS_ERR0
& 31] = S3C_PIC_UART0
,
136 [S3C_PICS_RXD1
& 31] = S3C_PIC_UART1
,
137 [S3C_PICS_TXD1
& 31] = S3C_PIC_UART1
,
138 [S3C_PICS_ERR1
& 31] = S3C_PIC_UART1
,
139 [S3C_PICS_RXD2
& 31] = S3C_PIC_UART2
,
140 [S3C_PICS_TXD2
& 31] = S3C_PIC_UART2
,
141 [S3C_PICS_ERR2
& 31] = S3C_PIC_UART2
,
142 [S3C_PICS_TC
& 31] = S3C_PIC_ADC
,
143 [S3C_PICS_ADC
& 31] = S3C_PIC_ADC
,
146 static void s3c_pic_subupdate(struct s3c_pic_state_s
*s
)
149 const int *sub
= &s3c_sub_src_map
[-1];
150 uint32_t pnd
= s
->subsrcpnd
& ~s
->intsubmsk
;
151 while ((next
= ffs(pnd
))) {
154 s
->srcpnd
|= 1 << *sub
;
156 s3c_pic_arbitrate(s
);
159 static void s3c_pic_set_irq(void *opaque
, int irq
, int req
)
161 struct s3c_pic_state_s
*s
= (struct s3c_pic_state_s
*) opaque
;
163 /* This interrupt controller doesn't clear any request signals
164 * or register bits automatically. */
170 s
->subsrcpnd
|= 1 << irq
;
171 if (s
->intsubmsk
& (1 << irq
))
174 irq
= s3c_sub_src_map
[irq
];
176 s
->srcpnd
|= (mask
= 1 << irq
);
179 if (s
->intmod
& mask
)
180 qemu_irq_raise(s
->parent_pic
[ARM_PIC_CPU_FIQ
]);
181 else if (!s
->intpnd
&& !(s
->intmsk
& mask
)) {
183 s3c_pic_arbitrate(s
);
187 qemu_irq_raise(s
->parent_pic
[ARM_PIC_CPU_IRQ
]);
192 static void s3c_pic_reset(struct s3c_pic_state_s
*s
)
196 s
->intmsk
= 0xffffffff;
201 s
->intsubmsk
= 0x7ff;
205 #define S3C_SRCPND 0x00 /* Source Pending register */
206 #define S3C_INTMOD 0x04 /* Source Mode register */
207 #define S3C_INTMSK 0x08 /* Interrupt Mask register */
208 #define S3C_PRIORITY 0x0c /* Priority register */
209 #define S3C_INTPND 0x10 /* Interrupt Pending register */
210 #define S3C_INTOFFSET 0x14 /* Interrupt Offset register */
211 #define S3C_SUBSRCPND 0x18 /* Sub Source Pending register */
212 #define S3C_INTSUBMSK 0x1c /* Interrupt Sub Mask register */
214 static uint32_t s3c_pic_read(void *opaque
, target_phys_addr_t addr
)
216 struct s3c_pic_state_s
*s
= (struct s3c_pic_state_s
*) opaque
;
236 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
242 static void s3c_pic_write(void *opaque
, target_phys_addr_t addr
,
245 struct s3c_pic_state_s
*s
= (struct s3c_pic_state_s
*) opaque
;
250 if (value
& s
->intmod
)
254 if (s
->intpnd
& value
) {
257 s3c_pic_arbitrate(s
);
262 if (s
->intpnd
& value
) {
266 s3c_pic_arbitrate(s
);
275 s
->subsrcpnd
&= ~value
;
278 s
->intsubmsk
= value
;
279 s3c_pic_subupdate(s
);
282 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
286 static CPUReadMemoryFunc
*s3c_pic_readfn
[] = {
292 static CPUWriteMemoryFunc
*s3c_pic_writefn
[] = {
298 static void s3c_pic_save(QEMUFile
*f
, void *opaque
)
300 struct s3c_pic_state_s
*s
= (struct s3c_pic_state_s
*) opaque
;
301 qemu_put_be32s(f
, &s
->srcpnd
);
302 qemu_put_be32s(f
, &s
->intpnd
);
303 qemu_put_be32s(f
, &s
->intmsk
);
304 qemu_put_be32s(f
, &s
->intmod
);
305 qemu_put_be32s(f
, &s
->priority
);
306 qemu_put_be32s(f
, &s
->subsrcpnd
);
307 qemu_put_be32s(f
, &s
->intsubmsk
);
308 qemu_put_be32(f
, s
->intoffset
);
311 static int s3c_pic_load(QEMUFile
*f
, void *opaque
, int version_id
)
313 struct s3c_pic_state_s
*s
= (struct s3c_pic_state_s
*) opaque
;
314 qemu_get_be32s(f
, &s
->srcpnd
);
315 qemu_get_be32s(f
, &s
->intpnd
);
316 qemu_get_be32s(f
, &s
->intmsk
);
317 qemu_get_be32s(f
, &s
->intmod
);
318 qemu_get_be32s(f
, &s
->priority
);
319 qemu_get_be32s(f
, &s
->subsrcpnd
);
320 qemu_get_be32s(f
, &s
->intsubmsk
);
321 s
->intoffset
= qemu_get_be32(f
);
326 struct s3c_pic_state_s
*s3c_pic_init(target_phys_addr_t base
,
330 struct s3c_pic_state_s
*s
= (struct s3c_pic_state_s
*)
331 qemu_mallocz(sizeof(struct s3c_pic_state_s
));
334 s
->parent_pic
= arm_pic
;
335 s
->irqs
= qemu_allocate_irqs(s3c_pic_set_irq
, s
, S3C_PIC_MAX
);
339 iomemtype
= cpu_register_io_memory(0, s3c_pic_readfn
,
341 cpu_register_physical_memory(s
->base
, 0xffffff, iomemtype
);
343 register_savevm("s3c24xx_pic", 0, 0, s3c_pic_save
, s3c_pic_load
, s
);
348 qemu_irq
*s3c_pic_get(struct s3c_pic_state_s
*s
)
353 /* Memory controller */
354 #define S3C_BWSCON 0x00 /* Bus Width & Wait Control register */
355 #define S3C_BANKCON0 0x04 /* Bank 0 Control register */
356 #define S3C_BANKCON1 0x08 /* Bank 1 Control register */
357 #define S3C_BANKCON2 0x0c /* Bank 2 Control register */
358 #define S3C_BANKCON3 0x10 /* Bank 3 Control register */
359 #define S3C_BANKCON4 0x14 /* Bank 4 Control register */
360 #define S3C_BANKCON5 0x18 /* Bank 5 Control register */
361 #define S3C_BANKCON6 0x1c /* Bank 6 Control register */
362 #define S3C_BANKCON7 0x20 /* Bank 7 Control register */
363 #define S3C_REFRESH 0x24 /* SDRAM Refresh Control register */
364 #define S3C_BANKSIZE 0x28 /* Flexible Bank Size register */
365 #define S3C_MRSRB6 0x2c /* Bank 6 Mode Set register */
366 #define S3C_MRSRB7 0x30 /* Bank 6 Mode Set register */
368 static void s3c_mc_reset(struct s3c_state_s
*s
)
370 s
->mc_regs
[S3C_BWSCON
>> 2] = 0x0000000;
371 s
->mc_regs
[S3C_BANKCON0
>> 2] = 0x0700;
372 s
->mc_regs
[S3C_BANKCON1
>> 2] = 0x0700;
373 s
->mc_regs
[S3C_BANKCON2
>> 2] = 0x0700;
374 s
->mc_regs
[S3C_BANKCON3
>> 2] = 0x0700;
375 s
->mc_regs
[S3C_BANKCON4
>> 2] = 0x0700;
376 s
->mc_regs
[S3C_BANKCON5
>> 2] = 0x0700;
377 s
->mc_regs
[S3C_BANKCON6
>> 2] = 0x18008;
378 s
->mc_regs
[S3C_BANKCON7
>> 2] = 0x18008;
379 s
->mc_regs
[S3C_REFRESH
>> 2] = 0xac0000;
380 s
->mc_regs
[S3C_BANKSIZE
>> 2] = 0x2;
381 s
->mc_regs
[S3C_MRSRB6
>> 2] = 0x00;
382 s
->mc_regs
[S3C_MRSRB7
>> 2] = 0x00;
385 static uint32_t s3c_mc_read(void *opaque
, target_phys_addr_t addr
)
387 struct s3c_state_s
*s
= (struct s3c_state_s
*) opaque
;
390 case S3C_BWSCON
... S3C_MRSRB7
:
391 return s
->mc_regs
[addr
>> 2];
393 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
399 static void s3c_mc_write(void *opaque
, target_phys_addr_t addr
,
402 struct s3c_state_s
*s
= (struct s3c_state_s
*) opaque
;
405 case S3C_BWSCON
... S3C_MRSRB7
:
406 s
->mc_regs
[addr
>> 2] = value
;
409 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
413 static CPUReadMemoryFunc
*s3c_mc_readfn
[] = {
419 static CPUWriteMemoryFunc
*s3c_mc_writefn
[] = {
425 static void s3c_mc_save(QEMUFile
*f
, void *opaque
)
427 struct s3c_state_s
*s
= (struct s3c_state_s
*) opaque
;
429 for (i
= 0; i
< 13; i
++)
430 qemu_put_be32s(f
, &s
->mc_regs
[i
]);
433 static int s3c_mc_load(QEMUFile
*f
, void *opaque
, int version_id
)
435 struct s3c_state_s
*s
= (struct s3c_state_s
*) opaque
;
437 for (i
= 0; i
< 13; i
++)
438 qemu_get_be32s(f
, &s
->mc_regs
[i
]);
442 /* Clock & power management */
443 #define S3C_LOCKTIME 0x00 /* PLL Lock Time Count register */
444 #define S3C_MPLLCON 0x04 /* MPLL Configuration register */
445 #define S3C_UPLLCON 0x08 /* UPLL Configuration register */
446 #define S3C_CLKCON 0x0c /* Clock Generator Control register */
447 #define S3C_CLKSLOW 0x10 /* Slow Clock Control register */
448 #define S3C_CLKDIVN 0x14 /* Clock Divider Control register */
450 #define S3C2440_CAMDIVN 0x18 /* Camera Clock Divider register */
452 static void s3c_clkpwr_reset(struct s3c_state_s
*s
)
454 s
->clkpwr_regs
[S3C_LOCKTIME
>> 2] = 0x00ffffff;
455 s
->clkpwr_regs
[S3C_MPLLCON
>> 2] = 0x0005c080;
456 s
->clkpwr_regs
[S3C_UPLLCON
>> 2] = 0x00028080;
457 s
->clkpwr_regs
[S3C_CLKCON
>> 2] = 0x0007fff0;
458 s
->clkpwr_regs
[S3C_CLKSLOW
>> 2] = 0x00000004;
459 s
->clkpwr_regs
[S3C_CLKDIVN
>> 2] = 0x00000000;
460 s
->clkpwr_regs
[S3C2440_CAMDIVN
>> 2] = 0x00000000;
463 static uint32_t s3c_clkpwr_read(void *opaque
, target_phys_addr_t addr
)
465 struct s3c_state_s
*s
= (struct s3c_state_s
*) opaque
;
468 case S3C_LOCKTIME
... S3C_CLKDIVN
:
469 return s
->clkpwr_regs
[addr
>> 2];
470 case S3C2440_CAMDIVN
:
471 if (s
->cpu_id
== S3C_CPU_2440
)
472 return s
->clkpwr_regs
[addr
>> 2];
474 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
480 static void s3c_clkpwr_write(void *opaque
, target_phys_addr_t addr
,
483 struct s3c_state_s
*s
= (struct s3c_state_s
*) opaque
;
490 s
->clkpwr_regs
[addr
>> 2] = value
;
493 if (value
& (1 << 3)) {
494 cpu_interrupt(s
->env
, CPU_INTERRUPT_HALT
);
495 printf("%s: processor powered off\n", __FUNCTION__
);
496 s3c_gpio_setpwrstat(s
->io
, 2);
499 s
->env
->regs
[15] = 0; /* XXX */
502 if (value
& (1 << 2)) /* Normal IDLE mode */
503 cpu_interrupt(s
->env
, CPU_INTERRUPT_HALT
);
504 if ((s
->clkpwr_regs
[addr
>> 2] ^ value
) & 1)
505 printf("%s: SPECIAL mode %s\n", __FUNCTION__
,
506 (value
& 1) ? "on" : "off");
507 s
->clkpwr_regs
[addr
>> 2] = value
;
510 if ((s
->clkpwr_regs
[addr
>> 2] ^ value
) & (1 << 4))
511 printf("%s: SLOW mode %s\n", __FUNCTION__
,
512 (value
& (1 << 4)) ? "on" : "off");
513 s
->clkpwr_regs
[addr
>> 2] = value
;
515 case S3C2440_CAMDIVN
:
516 if (s
->cpu_id
== S3C_CPU_2440
) {
517 s
->clkpwr_regs
[addr
>> 2] = value
;
521 printf("%s: Bad register 0x%lx (cpu %08x)\n", __FUNCTION__
, /*(unsigned long)*/addr
, s
->cpu_id
);
525 static CPUReadMemoryFunc
*s3c_clkpwr_readfn
[] = {
531 static CPUWriteMemoryFunc
*s3c_clkpwr_writefn
[] = {
537 static void s3c_clkpwr_save(QEMUFile
*f
, void *opaque
)
539 struct s3c_state_s
*s
= (struct s3c_state_s
*) opaque
;
541 for (i
= 0; i
< 6; i
++)
542 qemu_put_be32s(f
, &s
->clkpwr_regs
[i
]);
545 static int s3c_clkpwr_load(QEMUFile
*f
, void *opaque
, int version_id
)
547 struct s3c_state_s
*s
= (struct s3c_state_s
*) opaque
;
549 for (i
= 0; i
< 6; i
++)
550 qemu_get_be32s(f
, &s
->clkpwr_regs
[i
]);
555 #define S3C_DMA_CH_N 4
557 struct s3c_dma_ch_state_s
;
558 struct s3c_dma_state_s
{ /* Modelled as an interrupt controller */
559 target_phys_addr_t base
;
561 struct s3c_dma_ch_state_s
{
577 static inline void s3c_dma_ch_run(struct s3c_dma_state_s
*s
,
578 struct s3c_dma_ch_state_s
*ch
)
582 width
= 1 << ((ch
->con
>> 20) & 3); /* DSZ */
583 burst
= (ch
->con
& (1 << 28)) ? 4 : 1; /* TSZ */
585 while (!ch
->running
&& ch
->curr_tc
> 0 && ch
->req
&&
586 (ch
->mask
& (1 << 1))) { /* ON_OFF */
587 if (width
> sizeof(buffer
)) {
588 printf("%s: wrong access width\n", __FUNCTION__
);
592 while (ch
->curr_tc
--) {
593 for (t
= 0; t
< burst
; t
++) {
594 cpu_physical_memory_read(ch
->csrc
, buffer
, width
);
595 cpu_physical_memory_write(ch
->cdst
, buffer
, width
);
597 if (!(ch
->isrcc
& 1)) /* INT */
599 if (!(ch
->idstc
& 1)) /* INT */
603 if (!(ch
->con
& (1 << 27)) && !ch
->req
) /* SERVMODE */
608 if (!(ch
->con
& (1 << 23))) { /* SWHW_SEL */
612 if (ch
->curr_tc
<= 0) {
613 if (ch
->con
& (1 << 22)) /* RELOAD */
614 ch
->mask
&= ~(1 << 1); /* ON_OFF */
616 if (!(ch
->con
& (1 << 23))) { /* SWHW_SEL */
617 printf("%s: auto-reload software controlled transfer\n",
621 ch
->csrc
= ch
->isrc
; /* S_ADDR */
622 ch
->cdst
= ch
->idst
; /* D_ADDR */
623 ch
->curr_tc
= ch
->con
& 0xfffff; /* TC */
624 ch
->con
|= 1 << 22; /* ON_OFF */
627 if (ch
->con
& (1 << 31)) /* DMD_HS */
630 if (ch
->con
& (1 << 29)) { /* INT */
631 qemu_irq_raise(ch
->intr
);
632 /* Give the system a chance to respond. */
639 static void s3c_dma_reset(struct s3c_dma_state_s
*s
)
642 for (i
= 0; i
< S3C_DMA_CH_N
; i
++) {
643 s
->ch
[i
].curr_tc
= 0;
657 static void s3c_dma_dreq(void *opaque
, int line
, int req
)
659 struct s3c_dma_state_s
*s
= (struct s3c_dma_state_s
*) opaque
;
660 struct s3c_dma_ch_state_s
*ch
= &s
->ch
[line
>> 4];
662 if (ch
->con
& (1 << 23)) /* SWHW_SEL */
663 if (((ch
->con
>> 24) & 7) == (line
& 7)) { /* HWSRCSEL */
665 s3c_dma_ch_run(s
, ch
);
669 #define S3C_DISRC 0x00 /* DMA Initial Source register */
670 #define S3C_DISRCC 0x04 /* DMA Initial Source Control register */
671 #define S3C_DIDST 0x08 /* DMA Initial Destination register */
672 #define S3C_DIDSTC 0x0c /* DMA Initial Destination Control register */
673 #define S3C_DCON 0x10 /* DMA Control register */
674 #define S3C_DSTAT 0x14 /* DMA Count register */
675 #define S3C_DCSRC 0x18 /* DMA Current Source register */
676 #define S3C_DCDST 0x1c /* DMA Current Destination register */
677 #define S3C_DMASKTRIG 0x20 /* DMA Mask Trigger register */
679 static uint32_t s3c_dma_read(void *opaque
, target_phys_addr_t addr
)
681 struct s3c_dma_state_s
*s
= (struct s3c_dma_state_s
*) opaque
;
682 struct s3c_dma_ch_state_s
*ch
= 0;
684 if (addr
>= 0 && addr
<= (S3C_DMA_CH_N
<< 6)) {
685 ch
= &s
->ch
[addr
>> 6];
709 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
715 static void s3c_dma_write(void *opaque
, target_phys_addr_t addr
,
718 struct s3c_dma_state_s
*s
= (struct s3c_dma_state_s
*) opaque
;
719 struct s3c_dma_ch_state_s
*ch
= 0;
721 if (addr
>= 0 && addr
<= (S3C_DMA_CH_N
<< 6)) {
722 ch
= &s
->ch
[addr
>> 6];
743 if (~ch
->mask
& value
& (1 << 1)) { /* ON_OFF */
744 ch
->curr_tc
= ch
->con
& 0xfffff; /* TC */
745 ch
->csrc
= ch
->isrc
; /* S_ADDR */
746 ch
->cdst
= ch
->idst
; /* D_ADDR */
750 if (value
& (1 << 2)) { /* STOP */
751 ch
->mask
&= ~(3 << 1); /* ON_OFF */
752 } else if (!(ch
->con
& (1 << 23))) { /* SWHW_SEL */
753 ch
->req
= value
& 1; /* SW_TRIG */
754 s3c_dma_ch_run(s
, ch
);
758 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
762 static CPUReadMemoryFunc
*s3c_dma_readfn
[] = {
768 static CPUWriteMemoryFunc
*s3c_dma_writefn
[] = {
774 static void s3c_dma_save(QEMUFile
*f
, void *opaque
)
776 struct s3c_dma_state_s
*s
= (struct s3c_dma_state_s
*) opaque
;
778 for (i
= 0; i
< S3C_DMA_CH_N
; i
++) {
779 qemu_put_be32(f
, s
->ch
[i
].curr_tc
);
780 qemu_put_be32(f
, s
->ch
[i
].req
);
781 qemu_put_be32s(f
, &s
->ch
[i
].con
);
782 qemu_put_be32s(f
, &s
->ch
[i
].isrc
);
783 qemu_put_be32s(f
, &s
->ch
[i
].isrcc
);
784 qemu_put_be32s(f
, &s
->ch
[i
].idst
);
785 qemu_put_be32s(f
, &s
->ch
[i
].idstc
);
786 qemu_put_be32s(f
, &s
->ch
[i
].csrc
);
787 qemu_put_be32s(f
, &s
->ch
[i
].cdst
);
788 qemu_put_be32s(f
, &s
->ch
[i
].mask
);
792 static int s3c_dma_load(QEMUFile
*f
, void *opaque
, int version_id
)
794 struct s3c_dma_state_s
*s
= (struct s3c_dma_state_s
*) opaque
;
796 for (i
= 0; i
< S3C_DMA_CH_N
; i
++) {
797 s
->ch
[i
].curr_tc
= qemu_get_be32(f
);
798 s
->ch
[i
].req
= qemu_get_be32(f
);
799 qemu_get_be32s(f
, &s
->ch
[i
].con
);
800 qemu_get_be32s(f
, &s
->ch
[i
].isrc
);
801 qemu_get_be32s(f
, &s
->ch
[i
].isrcc
);
802 qemu_get_be32s(f
, &s
->ch
[i
].idst
);
803 qemu_get_be32s(f
, &s
->ch
[i
].idstc
);
804 qemu_get_be32s(f
, &s
->ch
[i
].csrc
);
805 qemu_get_be32s(f
, &s
->ch
[i
].cdst
);
806 qemu_get_be32s(f
, &s
->ch
[i
].mask
);
811 struct s3c_dma_state_s
*s3c_dma_init(target_phys_addr_t base
, qemu_irq
*pic
)
814 struct s3c_dma_state_s
*s
= (struct s3c_dma_state_s
*)
815 qemu_mallocz(sizeof(struct s3c_dma_state_s
));
818 s
->ch
[0].intr
= pic
[0];
819 s
->ch
[1].intr
= pic
[1];
820 s
->ch
[2].intr
= pic
[2];
821 s
->ch
[3].intr
= pic
[3];
822 s
->drqs
= qemu_allocate_irqs(s3c_dma_dreq
, s
, S3C_RQ_MAX
);
826 iomemtype
= cpu_register_io_memory(0, s3c_dma_readfn
,
828 cpu_register_physical_memory(s
->base
, 0xffffff, iomemtype
);
830 register_savevm("s3c24xx_dma", 0, 0, s3c_dma_save
, s3c_dma_load
, s
);
835 qemu_irq
*s3c_dma_get(struct s3c_dma_state_s
*s
)
840 /* PWM timers controller */
841 struct s3c_timer_state_s
;
842 struct s3c_timers_state_s
{
843 target_phys_addr_t base
;
846 struct s3c_timer_state_s
{
848 struct s3c_timers_state_s
*s
;
855 gpio_handler_t cmp_cb
;
859 uint16_t compareb
[4];
865 static const int s3c_tm_bits
[] = { 0, 8, 12, 16, 20 };
867 static uint16_t s3c_timers_get(struct s3c_timers_state_s
*s
, int tm
)
870 if (!s
->timer
[tm
].running
)
871 return s
->timer
[tm
].count
;
873 elapsed
= muldiv64(qemu_get_clock(vm_clock
) - s
->timer
[tm
].reload
,
874 s
->timer
[tm
].divider
, ticks_per_sec
);
875 if (unlikely(elapsed
> s
->timer
[tm
].count
))
876 return s
->timer
[tm
].count
;
878 return s
->timer
[tm
].count
- elapsed
;
881 static void s3c_timers_stop(struct s3c_timers_state_s
*s
, int tm
)
883 s
->timer
[tm
].count
= s3c_timers_get(s
, tm
);
884 s
->timer
[tm
].running
= 0;
887 static void s3c_timers_start(struct s3c_timers_state_s
*s
, int tm
)
889 if (s
->timer
[tm
].running
)
892 s
->timer
[tm
].divider
= S3C_PCLK_FREQ
>>
893 (((s
->config
[1] >> (tm
* 4)) & 3) + 1);
895 s
->timer
[tm
].divider
/= ((s
->config
[0] >> 0) & 0xff) + 1;
897 s
->timer
[tm
].divider
/= ((s
->config
[0] >> 8) & 0xff) + 1;
898 s
->timer
[tm
].running
= 1;
899 s
->timer
[tm
].reload
= qemu_get_clock(vm_clock
);
900 qemu_mod_timer(s
->timer
[tm
].t
,
901 s
->timer
[tm
].reload
+ muldiv64(s
->timer
[tm
].count
,
902 ticks_per_sec
, s
->timer
[tm
].divider
));
905 static void s3c_timers_reset(struct s3c_timers_state_s
*s
)
908 s
->config
[0] = 0x00000000;
909 s
->config
[1] = 0x00000000;
910 s
->control
= 0x00000000;
912 for (i
= 0; i
< 5; i
++) {
913 if (s
->timer
[i
].running
)
914 s3c_timers_stop(s
, i
);
915 s
->countb
[i
] = 0x0000;
916 s
->timer
[i
].count
= 0;
918 for (i
= 0; i
< 4; i
++)
919 s
->compareb
[i
] = 0x0000;
922 static void s3c_timers_tick(void *opaque
)
924 struct s3c_timer_state_s
*t
= (struct s3c_timer_state_s
*) opaque
;
925 struct s3c_timers_state_s
*s
= t
->s
;
929 if (((s
->config
[1] >> 20) & 0xf) == t
->n
+ 1) {
930 qemu_irq_raise(s
->dma
[S3C_RQ_TIMER0
]); /* TODO */
931 qemu_irq_raise(s
->dma
[S3C_RQ_TIMER1
]);
932 qemu_irq_raise(s
->dma
[S3C_RQ_TIMER2
]);
934 qemu_irq_raise(t
->irq
);
939 if (s
->control
& (1 << ((t
->n
== 4) ? 22 : (s3c_tm_bits
[t
->n
] + 3)))) {
941 t
->count
= s
->countb
[t
->n
];
942 s3c_timers_start(s
, t
->n
);
944 s
->control
&= ~(1 << s3c_tm_bits
[t
->n
]);
947 #define S3C_TCFG0 0x00 /* Timer Configuration register 0 */
948 #define S3C_TCFG1 0x04 /* Timer Configuration register 1 */
949 #define S3C_TCON 0x08 /* Timer Control register */
950 #define S3C_TCNTB0 0x0c /* Timer 0 Count Buffer register */
951 #define S3C_TCMPB0 0x10 /* Timer 0 Compare Buffer register */
952 #define S3C_TCNTO0 0x14 /* Timer 0 Count Observation register */
953 #define S3C_TCNTB1 0x18 /* Timer 1 Count Buffer register */
954 #define S3C_TCMPB1 0x1c /* Timer 1 Compare Buffer register */
955 #define S3C_TCNTO1 0x20 /* Timer 1 Count Observation register */
956 #define S3C_TCNTB2 0x24 /* Timer 2 Count Buffer register */
957 #define S3C_TCMPB2 0x28 /* Timer 2 Compare Buffer register */
958 #define S3C_TCNTO2 0x2c /* Timer 2 Count Observation register */
959 #define S3C_TCNTB3 0x30 /* Timer 3 Count Buffer register */
960 #define S3C_TCMPB3 0x34 /* Timer 3 Compare Buffer register */
961 #define S3C_TCNTO3 0x38 /* Timer 3 Count Observation register */
962 #define S3C_TCNTB4 0x3c /* Timer 4 Count Buffer register */
963 #define S3C_TCNTO4 0x40 /* Timer 4 Count Observation register */
965 static uint32_t s3c_timers_read(void *opaque
, target_phys_addr_t addr
)
967 struct s3c_timers_state_s
*s
= (struct s3c_timers_state_s
*) opaque
;
977 case S3C_TCMPB3
: tm
++;
978 case S3C_TCMPB2
: tm
++;
979 case S3C_TCMPB1
: tm
++;
981 return s
->compareb
[tm
];
982 case S3C_TCNTB4
: tm
++;
983 case S3C_TCNTB3
: tm
++;
984 case S3C_TCNTB2
: tm
++;
985 case S3C_TCNTB1
: tm
++;
987 return s
->countb
[tm
];
988 case S3C_TCNTO4
: tm
++;
989 case S3C_TCNTO3
: tm
++;
990 case S3C_TCNTO2
: tm
++;
991 case S3C_TCNTO1
: tm
++;
993 return s3c_timers_get(s
, tm
);
995 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
1001 static void s3c_timers_write(void *opaque
, target_phys_addr_t addr
,
1004 struct s3c_timers_state_s
*s
= (struct s3c_timers_state_s
*) opaque
;
1010 s
->config
[0] = value
& 0x00ffffff;
1013 s
->config
[1] = value
& 0x00ffffff;
1016 for (tm
= 0; tm
< 5; tm
++) {
1017 if (value
& (2 << (s3c_tm_bits
[tm
]))) {
1018 if (s
->timer
[tm
].running
) {
1019 s3c_timers_stop(s
, tm
);
1020 s
->timer
[tm
].count
= s
->countb
[tm
];
1021 s3c_timers_start(s
, tm
);
1023 s
->timer
[tm
].count
= s
->countb
[tm
];
1025 if (((value
>> s3c_tm_bits
[tm
]) & 1) ^ s
->timer
[tm
].running
) {
1026 if (s
->timer
[tm
].running
)
1027 s3c_timers_stop(s
, tm
);
1029 s3c_timers_start(s
, tm
);
1033 s
->control
= value
& 0x007fff1f;
1035 case S3C_TCMPB3
: tm
++;
1036 case S3C_TCMPB2
: tm
++;
1037 case S3C_TCMPB1
: tm
++;
1039 s
->compareb
[tm
] = value
& 0xffff;
1040 if (s
->timer
[tm
].cmp_cb
)
1041 s
->timer
[tm
].cmp_cb(tm
, s
->compareb
[tm
], s
->timer
[tm
].cmp_opaque
);
1043 case S3C_TCNTB4
: tm
++;
1044 case S3C_TCNTB3
: tm
++;
1045 case S3C_TCNTB2
: tm
++;
1046 case S3C_TCNTB1
: tm
++;
1048 s
->countb
[tm
] = value
& 0xffff;
1051 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
1055 static CPUReadMemoryFunc
*s3c_timers_readfn
[] = {
1061 static CPUWriteMemoryFunc
*s3c_timers_writefn
[] = {
1067 static void s3c_timers_save(QEMUFile
*f
, void *opaque
)
1069 struct s3c_timers_state_s
*s
= (struct s3c_timers_state_s
*) opaque
;
1071 for (i
= 0; i
< 5; i
++) {
1072 qemu_put_be32(f
, s
->timer
[i
].running
);
1073 qemu_put_be32s(f
, &s
->timer
[i
].divider
);
1074 qemu_put_be16(f
, s3c_timers_get(s
, i
));
1075 qemu_put_be64s(f
, &s
->timer
[i
].reload
);
1078 for (i
= 0; i
< 4; i
++)
1079 qemu_put_be16s(f
, &s
->compareb
[i
]);
1080 for (i
= 0; i
< 5; i
++)
1081 qemu_put_be16s(f
, &s
->countb
[i
]);
1082 for (i
= 0; i
< 2; i
++)
1083 qemu_put_be32s(f
, &s
->config
[i
]);
1084 qemu_put_be32s(f
, &s
->control
);
1087 static int s3c_timers_load(QEMUFile
*f
, void *opaque
, int version_id
)
1089 struct s3c_timers_state_s
*s
= (struct s3c_timers_state_s
*) opaque
;
1091 for (i
= 0; i
< 5; i
++) {
1092 s
->timer
[i
].running
= 0;
1093 running
[i
] = qemu_get_be32(f
);
1094 qemu_get_be32s(f
, &s
->timer
[i
].divider
);
1095 qemu_get_be16s(f
, &s
->timer
[i
].count
);
1096 qemu_get_be64s(f
, &s
->timer
[i
].reload
);
1099 for (i
= 0; i
< 4; i
++)
1100 qemu_get_be16s(f
, &s
->compareb
[i
]);
1101 for (i
= 0; i
< 5; i
++)
1102 qemu_get_be16s(f
, &s
->countb
[i
]);
1103 for (i
= 0; i
< 2; i
++)
1104 qemu_get_be32s(f
, &s
->config
[i
]);
1105 qemu_get_be32s(f
, &s
->control
);
1107 for (i
= 0; i
< 5; i
++)
1109 s3c_timers_start(s
, i
);
1114 struct s3c_timers_state_s
*s3c_timers_init(target_phys_addr_t base
,
1115 qemu_irq
*pic
, qemu_irq
*dma
)
1118 struct s3c_timers_state_s
*s
= (struct s3c_timers_state_s
*)
1119 qemu_mallocz(sizeof(struct s3c_timers_state_s
));
1124 s3c_timers_reset(s
);
1126 for (i
= 0; i
< 5; i
++) {
1127 s
->timer
[i
].t
= qemu_new_timer(vm_clock
,
1128 s3c_timers_tick
, &s
->timer
[i
]);
1131 s
->timer
[i
].cmp_cb
= 0;
1132 s
->timer
[i
].irq
= pic
[i
];
1135 iomemtype
= cpu_register_io_memory(0, s3c_timers_readfn
,
1136 s3c_timers_writefn
, s
);
1137 cpu_register_physical_memory(s
->base
, 0xffffff, iomemtype
);
1139 register_savevm("s3c24xx_timers", 0, 0,
1140 s3c_timers_save
, s3c_timers_load
, s
);
1145 void s3c_timers_cmp_handler_set(void *opaque
, int line
,
1146 gpio_handler_t handler
, void *cmp_opaque
)
1148 struct s3c_timers_state_s
*s
= (struct s3c_timers_state_s
*) opaque
;
1149 if (line
> 4 || line
< 0) {
1150 printf("%s: Bad timer number %i.\n", __FUNCTION__
, line
);
1153 s
->timer
[line
].cmp_cb
= handler
;
1154 s
->timer
[line
].cmp_opaque
= cmp_opaque
;
1158 struct s3c_uart_state_s
{
1159 target_phys_addr_t base
;
1166 #define UART_MAX_CHR 4
1168 CharDriverState
*chr
[UART_MAX_CHR
];
1178 static void s3c_uart_reset(struct s3c_uart_state_s
*s
)
1183 s
->control
= 0x0000;
1190 static void s3c_uart_err(struct s3c_uart_state_s
*s
, int err
)
1193 if (s
->control
& (1 << 6))
1194 qemu_irq_raise(s
->irq
[2]);
1197 inline static void s3c_uart_full(struct s3c_uart_state_s
*s
, int pulse
)
1199 if (s
->fcontrol
& 1) /* FIFOEnable */
1200 if (s
->rxlen
< (((s
->fcontrol
>> 4) & 3) + 1) * 4) {
1201 if (((s
->control
>> 0) & 3) != 1 || /* ReceiveMode */
1204 if (!(s
->control
& (1 << 7))) /* RxTimeOutEnable */
1206 /* When the Rx FIFO trigger level is not reached, the interrupt
1207 * is generated anyway, just after a small timeout instead of
1211 switch ((s
->control
>> 0) & 3) { /* ReceiveMode */
1213 if ((s
->control
& (1 << 8)) || pulse
) /* RxInterruptType */
1214 qemu_irq_raise(s
->irq
[0]);
1218 qemu_irq_raise(s
->dma
[0]);
1223 inline static void s3c_uart_empty(struct s3c_uart_state_s
*s
, int pulse
)
1225 switch ((s
->control
>> 2) & 3) { /* TransmitMode */
1227 if ((s
->control
& (1 << 9)) || pulse
) /* TxInterruptType */
1228 qemu_irq_raise(s
->irq
[1]);
1232 qemu_irq_raise(s
->dma
[0]);
1237 inline static void s3c_uart_update(struct s3c_uart_state_s
*s
)
1239 s3c_uart_empty(s
, 0);
1240 s3c_uart_full(s
, 0);
1243 static void s3c_uart_params_update(struct s3c_uart_state_s
*s
)
1245 QEMUSerialSetParams ssp
;
1250 /* XXX Calculate PCLK frequency from clock manager registers */
1251 ssp
.speed
= (S3C_PCLK_FREQ
>> 4) / (s
->brdiv
+ 1);
1253 switch ((s
->lcontrol
>> 3) & 7) {
1266 ssp
.data_bits
= 5 + (s
->lcontrol
& 3);
1268 ssp
.stop_bits
= (s
->lcontrol
& (1 << 2)) ? 2 : 1;
1270 for (i
= 0; i
< s
->chr_num
; i
++)
1271 qemu_chr_ioctl(s
->chr
[i
], CHR_IOCTL_SERIAL_SET_PARAMS
, &ssp
);
1274 static int s3c_uart_is_empty(void *opaque
)
1276 struct s3c_uart_state_s
*s
= (struct s3c_uart_state_s
*) opaque
;
1277 if (s
->fcontrol
& 1) /* FIFOEnable */
1278 return 16 - s
->rxlen
;
1280 return 1 - s
->rxlen
;
1283 static void s3c_uart_rx(void *opaque
, const uint8_t *buf
, int size
)
1285 struct s3c_uart_state_s
*s
= (struct s3c_uart_state_s
*) opaque
;
1287 if (s
->fcontrol
& 1) { /* FIFOEnable */
1288 if (s
->rxlen
+ size
> 16) {
1289 size
= 16 - s
->rxlen
;
1293 left
= 16 - ((s
->rxstart
+ s
->rxlen
) & 15);
1295 memcpy(s
->rxfifo
+ ((s
->rxstart
+ s
->rxlen
) & 15), buf
, left
);
1296 memcpy(s
->rxfifo
, buf
+ left
, size
- left
);
1298 memcpy(s
->rxfifo
+ ((s
->rxstart
+ s
->rxlen
) & 15), buf
, size
);
1301 if (s
->rxlen
+ size
> 1)
1306 s3c_uart_full(s
, 1);
1309 /* S3C2410 UART doesn't seem to understand break conditions. */
1310 static void s3c_uart_event(void *opaque
, int event
)
1314 #define S3C_ULCON 0x00 /* UART Line Control register */
1315 #define S3C_UCON 0x04 /* UART Control register */
1316 #define S3C_UFCON 0x08 /* UART FIFO Control register */
1317 #define S3C_UMCON 0x0c /* UART Modem Control register */
1318 #define S3C_UTRSTAT 0x10 /* UART Tx/Rx Status register */
1319 #define S3C_UERSTAT 0x14 /* UART Error Status register */
1320 #define S3C_UFSTAT 0x18 /* UART FIFO Status register */
1321 #define S3C_UMSTAT 0x1c /* UART Modem Status register */
1322 #define S3C_UTXH 0x20 /* UART Transmit Buffer register */
1323 #define S3C_URXH 0x24 /* UART Receive Buffer register */
1324 #define S3C_UBRDIV 0x28 /* UART Baud Rate Divisor register */
1326 static uint32_t s3c_uart_read(void *opaque
, target_phys_addr_t addr
)
1328 struct s3c_uart_state_s
*s
= (struct s3c_uart_state_s
*) opaque
;
1341 return 6 | !!s
->rxlen
;
1343 /* XXX: UERSTAT[3] is Reserved but Linux thinks it is BREAK */
1350 return s
->rxlen
? s
->rxlen
| (1 << 8) : 0;
1354 case S3C_UTXH
: /* why this is called by u-boot is not clear */
1360 if (s
->fcontrol
& 1) { /* FIFOEnable */
1361 ret
= s
->rxfifo
[s
->rxstart
++];
1371 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
1377 static void s3c_uart_write(void *opaque
, target_phys_addr_t addr
,
1380 struct s3c_uart_state_s
*s
= (struct s3c_uart_state_s
*) opaque
;
1386 if ((s
->lcontrol
^ value
) & (1 << 6))
1387 printf("%s: UART Infra-red mode %s\n", __FUNCTION__
,
1388 (value
& (1 << 6)) ? "on" : "off");
1389 s
->lcontrol
= value
;
1390 s3c_uart_params_update(s
);
1394 /* XXX: UCON[4] is Reserved but Linux thinks it is BREAK */
1395 if ((s
->control
^ value
) & (1 << 5))
1396 printf("%s: UART loopback test mode %s\n", __FUNCTION__
,
1397 (value
& (1 << 5)) ? "on" : "off");
1398 s
->control
= value
& 0x7ef;
1402 if (value
& (1 << 1)) /* RxReset */
1404 s
->fcontrol
= value
& 0xf1;
1408 #ifdef CONFIG_S3C_MODEM /* not handled, openmoko modem.c not imported */
1409 if ((s
->mcontrol
^ value
) & (1 << 4)) {
1410 afc
= (value
>> 4) & 1;
1411 for (i
= 0; i
< s
->chr_num
; i
++)
1412 qemu_chr_ioctl(s
->chr
[i
], CHR_IOCTL_MODEM_HANDSHAKE
, &afc
);
1415 s
->mcontrol
= value
& 0x11;
1420 for (i
= 0; i
< s
->chr_num
; i
++)
1421 qemu_chr_write(s
->chr
[i
], &ch
, 1);
1422 s3c_uart_empty(s
, 1);
1426 s
->brdiv
= value
& 0xffff;
1427 s3c_uart_params_update(s
);
1431 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
1435 static CPUReadMemoryFunc
*s3c_uart_readfn
[] = {
1441 static CPUWriteMemoryFunc
*s3c_uart_writefn
[] = {
1447 static void s3c_uart_save(QEMUFile
*f
, void *opaque
)
1449 struct s3c_uart_state_s
*s
= (struct s3c_uart_state_s
*) opaque
;
1450 qemu_put_8s(f
, &s
->data
);
1451 qemu_put_buffer(f
, s
->rxfifo
, sizeof(s
->rxfifo
));
1452 qemu_put_be32(f
, s
->rxstart
);
1453 qemu_put_be32(f
, s
->rxlen
);
1454 qemu_put_8s(f
, &s
->lcontrol
);
1455 qemu_put_8s(f
, &s
->fcontrol
);
1456 qemu_put_8s(f
, &s
->mcontrol
);
1457 qemu_put_be16s(f
, &s
->control
);
1458 qemu_put_be16s(f
, &s
->brdiv
);
1459 qemu_put_8s(f
, &s
->errstat
);
1462 static int s3c_uart_load(QEMUFile
*f
, void *opaque
, int version_id
)
1464 struct s3c_uart_state_s
*s
= (struct s3c_uart_state_s
*) opaque
;
1465 qemu_get_8s(f
, &s
->data
);
1466 qemu_get_buffer(f
, s
->rxfifo
, sizeof(s
->rxfifo
));
1467 s
->rxstart
= qemu_get_be32(f
);
1468 s
->rxlen
= qemu_get_be32(f
);
1469 qemu_get_8s(f
, &s
->lcontrol
);
1470 qemu_get_8s(f
, &s
->fcontrol
);
1471 qemu_get_8s(f
, &s
->mcontrol
);
1472 qemu_get_be16s(f
, &s
->control
);
1473 qemu_get_be16s(f
, &s
->brdiv
);
1474 qemu_get_8s(f
, &s
->errstat
);
1479 struct s3c_uart_state_s
*s3c_uart_init(target_phys_addr_t base
,
1480 qemu_irq
*irqs
, qemu_irq
*dma
)
1483 struct s3c_uart_state_s
*s
= (struct s3c_uart_state_s
*)
1484 qemu_mallocz(sizeof(struct s3c_uart_state_s
));
1492 iomemtype
= cpu_register_io_memory(0, s3c_uart_readfn
,
1493 s3c_uart_writefn
, s
);
1494 cpu_register_physical_memory(s
->base
, 0xfff, iomemtype
);
1496 register_savevm("s3c24xx_uart", base
, 0, s3c_uart_save
, s3c_uart_load
, s
);
1501 void s3c_uart_attach(struct s3c_uart_state_s
*s
, CharDriverState
*chr
)
1503 if (s
->chr_num
>= UART_MAX_CHR
)
1504 cpu_abort(cpu_single_env
, "%s: Too many devices\n", __FUNCTION__
);
1505 s
->chr
[s
->chr_num
++] = chr
;
1507 qemu_chr_add_handlers(chr
, s3c_uart_is_empty
,
1508 s3c_uart_rx
, s3c_uart_event
, s
);
1511 /* ADC & Touchscreen interface */
1512 struct s3c_adc_state_s
{
1513 target_phys_addr_t base
;
1534 static void s3c_adc_reset(struct s3c_adc_state_s
*s
)
1537 s
->control
= 0x3fc4;
1543 static void s3c_adc_start(struct s3c_adc_state_s
*s
)
1545 if (!s
->enable
|| (s
->ts
& 7) == 0)
1547 s
->control
&= ~(1 << 15);
1548 s
->in_idx
= (s
->control
>> 3) & 7;
1549 qemu_mod_timer(s
->convt
, qemu_get_clock(vm_clock
) + (ticks_per_sec
>> 5));
1552 static void s3c_adc_done(void *opaque
)
1554 struct s3c_adc_state_s
*s
= (struct s3c_adc_state_s
*) opaque
;
1555 s
->xdata
= s
->input
[s
->in_idx
] & 0x3ff;
1556 s
->control
|= 1 << 15;
1557 qemu_irq_raise(s
->irq
);
1560 static void s3c_adc_tick(void *opaque
)
1562 struct s3c_adc_state_s
*s
= (struct s3c_adc_state_s
*) opaque
;
1566 if ((s
->ts
& 3) == 3 && s
->enable
)
1567 qemu_irq_raise(s
->tcirq
);
1568 else if (s
->enable
&& ((s
->ts
& (1 << 2)) || (s
->ts
& 3))) {
1569 sx
= s
->x
* s
->scale
[0] + s
->y
* s
->scale
[1] + s
->scale
[2];
1570 sy
= s
->x
* s
->scale
[3] + s
->y
* s
->scale
[4] + s
->scale
[5];
1571 s
->xdata
= ((sx
>> 13) & 0xfff) | (1 << 14) | ((s
->ts
& 3) << 12);
1572 s
->ydata
= ((sy
>> 13) & 0xfff) | (1 << 14) | ((s
->ts
& 3) << 12);
1573 s
->xdata
^= s
->noise
>> 1;
1574 s
->ydata
^= s
->noise
>> 2;
1575 qemu_irq_raise(s
->irq
);
1579 qemu_mod_timer(s
->tst
, qemu_get_clock(vm_clock
) +
1580 (ticks_per_sec
>> 5));
1584 static void s3c_adc_event(void *opaque
,
1585 int x
, int y
, int z
, int buttons_state
)
1587 struct s3c_adc_state_s
*s
= (struct s3c_adc_state_s
*) opaque
;
1588 s
->down
= !!buttons_state
;
1594 #define S3C_ADCCON 0x00 /* ADC Control register */
1595 #define S3C_ADCTSC 0x04 /* ADC Touchscreen Control register */
1596 #define S3C_ADCDLY 0x08 /* ADC Start or Interval Delay register */
1597 #define S3C_ADCDAT0 0x0c /* ADC Conversion Data register 0 */
1598 #define S3C_ADCDAT1 0x10 /* ADC Conversion Data register 1 */
1600 static uint32_t s3c_adc_read(void *opaque
, target_phys_addr_t addr
)
1602 struct s3c_adc_state_s
*s
= (struct s3c_adc_state_s
*) opaque
;
1614 return ((!s
->down
) << 15) | s
->xdata
;
1616 return ((!s
->down
) << 15) | s
->ydata
;
1618 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
1624 static void s3c_adc_write(void *opaque
, target_phys_addr_t addr
,
1627 struct s3c_adc_state_s
*s
= (struct s3c_adc_state_s
*) opaque
;
1631 s
->control
= (s
->control
& 0x8000) | (value
& 0x7ffe);
1632 s
->enable
= !(value
& 4);
1633 if ((value
& 1) && !(value
& 2))
1636 qemu_del_timer(s
->convt
);
1641 s
->ts
= value
& 0xff;
1645 s
->delay
= value
& 0xffff;
1648 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
1652 static CPUReadMemoryFunc
*s3c_adc_readfn
[] = {
1658 static CPUWriteMemoryFunc
*s3c_adc_writefn
[] = {
1664 static void s3c_adc_save(QEMUFile
*f
, void *opaque
)
1666 struct s3c_adc_state_s
*s
= (struct s3c_adc_state_s
*) opaque
;
1668 qemu_put_be32(f
, s
->enable
);
1669 for (i
= 0; i
< 8; i
++)
1670 qemu_put_be32(f
, s
->input
[i
]);
1671 qemu_put_be32(f
, s
->in_idx
);
1672 qemu_put_be32(f
, s
->noise
);
1674 qemu_put_be16s(f
, &s
->control
);
1675 qemu_put_be16s(f
, &s
->ts
);
1676 qemu_put_be16s(f
, &s
->delay
);
1677 qemu_put_be16s(f
, &s
->xdata
);
1678 qemu_put_be16s(f
, &s
->ydata
);
1681 static int s3c_adc_load(QEMUFile
*f
, void *opaque
, int version_id
)
1683 struct s3c_adc_state_s
*s
= (struct s3c_adc_state_s
*) opaque
;
1685 s
->enable
= qemu_get_be32(f
);
1686 for (i
= 0; i
< 8; i
++)
1687 s
->input
[i
] = qemu_get_be32(f
);
1688 s
->in_idx
= qemu_get_be32(f
);
1689 s
->noise
= qemu_get_be32(f
);
1691 qemu_get_be16s(f
, &s
->control
);
1692 qemu_get_be16s(f
, &s
->ts
);
1693 qemu_get_be16s(f
, &s
->delay
);
1694 qemu_get_be16s(f
, &s
->xdata
);
1695 qemu_get_be16s(f
, &s
->ydata
);
1697 if (s
->enable
&& (s
->ts
& 7) && !(s
->control
& (1 << 15)))
1703 struct s3c_adc_state_s
*s3c_adc_init(target_phys_addr_t base
, qemu_irq irq
,
1707 struct s3c_adc_state_s
*s
= (struct s3c_adc_state_s
*)
1708 qemu_mallocz(sizeof(struct s3c_adc_state_s
));
1713 s
->convt
= qemu_new_timer(vm_clock
, s3c_adc_done
, s
);
1714 s
->tst
= qemu_new_timer(vm_clock
, s3c_adc_tick
, s
);
1718 iomemtype
= cpu_register_io_memory(0, s3c_adc_readfn
,
1719 s3c_adc_writefn
, s
);
1720 cpu_register_physical_memory(s
->base
, 0xffffff, iomemtype
);
1722 /* We want absolute coordinates */
1723 qemu_add_mouse_event_handler(s3c_adc_event
, s
, 1,
1724 "QEMU S3C2410-driven Touchscreen");
1726 register_savevm("s3c24xx_adc", 0, 0, s3c_adc_save
, s3c_adc_load
, s
);
1731 void s3c_adc_setscale(struct s3c_adc_state_s
*adc
, const int m
[])
1733 memcpy(adc
->scale
, m
, 6 * sizeof(int));
1736 /* IIC-bus serial interface */
1737 struct s3c_i2c_state_s
{
1740 target_phys_addr_t base
;
1751 static void s3c_i2c_irq(struct s3c_i2c_state_s
*s
)
1753 s
->control
|= 1 << 4;
1754 if (s
->control
& (1 << 5))
1755 qemu_irq_raise(s
->irq
);
1758 static void s3c_i2c_reset(struct s3c_i2c_state_s
*s
)
1766 static void s3c_i2c_event(i2c_slave
*i2c
, enum i2c_event event
)
1768 struct s3c_i2c_state_s
*s
= (struct s3c_i2c_state_s
*) i2c
;
1769 if (!(s
->status
& (1 << 4)))
1773 case I2C_START_RECV
:
1774 case I2C_START_SEND
:
1775 s
->status
|= 1 << 2;
1782 s
->status
|= 1 << 0;
1789 static int s3c_i2c_tx(i2c_slave
*i2c
, uint8_t data
)
1791 struct s3c_i2c_state_s
*s
= (struct s3c_i2c_state_s
*) i2c
;
1792 if (!(s
->status
& (1 << 4)))
1795 if ((s
->status
>> 6) == 0)
1796 s
->data
= data
; /* TODO */
1797 s
->status
&= ~(1 << 0);
1800 return !(s
->control
& (1 << 7));
1803 static int s3c_i2c_rx(i2c_slave
*i2c
)
1805 struct s3c_i2c_state_s
*s
= (struct s3c_i2c_state_s
*) i2c
;
1806 if (!(s
->status
& (1 << 4)))
1809 if ((s
->status
>> 6) == 1) {
1810 s
->status
&= ~(1 << 0);
1818 static void s3c_master_work(void *opaque
)
1820 struct s3c_i2c_state_s
*s
= (struct s3c_i2c_state_s
*) opaque
;
1821 int start
= 0, stop
= 0, ack
= 1;
1822 if (s
->control
& (1 << 4)) /* Interrupt pending */
1824 if ((s
->status
& 0x90) != 0x90) /* Master */
1826 stop
= ~s
->status
& (1 << 5);
1827 if (s
->newstart
&& s
->status
& (1 << 5)) { /* START */
1836 ack
= !i2c_start_transfer(s
->bus
, s
->data
>> 1, (~s
->status
>> 6) & 1);
1838 i2c_end_transfer(s
->bus
);
1839 else if (s
->status
& (1 << 6))
1840 ack
= !i2c_send(s
->bus
, s
->data
);
1842 s
->data
= i2c_recv(s
->bus
);
1844 if (!(s
->control
& (1 << 7))) /* ACK */
1848 if (!(s
->status
& (1 << 5))) {
1859 #define S3C_IICCON 0x00 /* IIC-Bus Control register */
1860 #define S3C_IICSTAT 0x04 /* IIC-Bus Control / Status register */
1861 #define S3C_IICADD 0x08 /* IIC-Bus Address register */
1862 #define S3C_IICDS 0x0c /* IIC-Bus Tx / Rx Data Shift register */
1864 static uint32_t s3c_i2c_read(void *opaque
, target_phys_addr_t addr
)
1866 struct s3c_i2c_state_s
*s
= (struct s3c_i2c_state_s
*) opaque
;
1872 return s
->status
& ~(1 << 5); /* Busy signal */
1878 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
1884 static void s3c_i2c_write(void *opaque
, target_phys_addr_t addr
,
1887 struct s3c_i2c_state_s
*s
= (struct s3c_i2c_state_s
*) opaque
;
1891 s
->control
= (s
->control
| 0xef) & value
;
1898 s
->status
|= value
& 0xf0;
1899 if (s
->status
& (1 << 5))
1905 s
->addy
= value
& 0x7f;
1906 i2c_set_slave_address(&s
->slave
, s
->addy
);
1910 s
->data
= value
& 0xff;
1914 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
1918 static CPUReadMemoryFunc
*s3c_i2c_readfn
[] = {
1924 static CPUWriteMemoryFunc
*s3c_i2c_writefn
[] = {
1930 static void s3c_i2c_save(QEMUFile
*f
, void *opaque
)
1932 struct s3c_i2c_state_s
*s
= (struct s3c_i2c_state_s
*) opaque
;
1933 qemu_put_8s(f
, &s
->control
);
1934 qemu_put_8s(f
, &s
->status
);
1935 qemu_put_8s(f
, &s
->data
);
1936 qemu_put_8s(f
, &s
->addy
);
1938 qemu_put_be32(f
, s
->busy
);
1939 qemu_put_be32(f
, s
->newstart
);
1941 // i2c_bus_save(f, s->bus);
1942 i2c_slave_save(f
, &s
->slave
);
1945 static int s3c_i2c_load(QEMUFile
*f
, void *opaque
, int version_id
)
1947 struct s3c_i2c_state_s
*s
= (struct s3c_i2c_state_s
*) opaque
;
1948 qemu_get_8s(f
, &s
->control
);
1949 qemu_get_8s(f
, &s
->status
);
1950 qemu_get_8s(f
, &s
->data
);
1951 qemu_get_8s(f
, &s
->addy
);
1953 s
->busy
= qemu_get_be32(f
);
1954 s
->newstart
= qemu_get_be32(f
);
1956 // i2c_bus_load(f, s->bus);
1957 i2c_slave_load(f
, &s
->slave
);
1961 struct s3c_i2c_state_s
*s3c_i2c_init(target_phys_addr_t base
, qemu_irq irq
)
1964 struct s3c_i2c_state_s
*s
= (struct s3c_i2c_state_s
*)
1965 qemu_mallocz(sizeof(struct s3c_i2c_state_s
));
1969 s
->slave
.event
= s3c_i2c_event
;
1970 s
->slave
.send
= s3c_i2c_tx
;
1971 s
->slave
.recv
= s3c_i2c_rx
;
1972 s
->bus
= i2c_init_bus();
1976 iomemtype
= cpu_register_io_memory(0, s3c_i2c_readfn
,
1977 s3c_i2c_writefn
, s
);
1978 cpu_register_physical_memory(s
->base
, 0xffffff, iomemtype
);
1980 register_savevm("s3c24xx_i2c", 0, 0, s3c_i2c_save
, s3c_i2c_load
, s
);
1985 i2c_bus
*s3c_i2c_bus(struct s3c_i2c_state_s
*s
)
1990 /* Serial Peripheral Interface */
1991 struct s3c_spi_state_s
{
1992 target_phys_addr_t base
;
2011 uint8_t (*txrx
[2])(void *opaque
, uint8_t value
);
2012 uint8_t (*btxrx
[2])(void *opaque
, uint8_t value
);
2016 static void s3c_spi_update(struct s3c_spi_state_s
*s
)
2019 for (i
= 0; i
< 2; i
++) {
2020 switch ((s
->chan
[i
].control
>> 5) & 3) { /* SMOD */
2022 qemu_irq_raise(s
->chan
[i
].irq
);
2025 qemu_irq_raise(s
->chan
[i
].drq
);
2031 static void s3c_spi_reset(struct s3c_spi_state_s
*s
)
2033 memset(s
->chan
, 0, sizeof(s
->chan
));
2034 s
->chan
[0].pin
= 0x02;
2035 s
->chan
[1].pin
= 0x02;
2039 #define S3C_SPCON0 0x00 /* SPI channel 0 control register */
2040 #define S3C_SPSTA0 0x04 /* SPI channel 0 status register */
2041 #define S3C_SPPIN0 0x08 /* SPI channel 0 pin control register */
2042 #define S3C_SPPRE0 0x0c /* SPI channel 0 baudrate prescaler register */
2043 #define S3C_SPTDAT0 0x10 /* SPI channel 0 Tx data register */
2044 #define S3C_SPRDAT0 0x14 /* SPI channel 0 Rx data register */
2045 #define S3C_SPCON1 0x20 /* SPI channel 1 control register */
2046 #define S3C_SPSTA1 0x24 /* SPI channel 1 status register */
2047 #define S3C_SPPIN1 0x28 /* SPI channel 1 pin control register */
2048 #define S3C_SPPRE1 0x2c /* SPI channel 1 baudrate prescaler register */
2049 #define S3C_SPTDAT1 0x30 /* SPI channel 1 Tx data register */
2050 #define S3C_SPRDAT1 0x34 /* SPI channel 1 Rx data register */
2052 static uint32_t s3c_spi_read(void *opaque
, target_phys_addr_t addr
)
2054 struct s3c_spi_state_s
*s
= (struct s3c_spi_state_s
*) opaque
;
2062 return s
->chan
[ch
].control
;
2070 return s
->chan
[ch
].pin
;
2074 return s
->chan
[ch
].pre
;
2078 return s
->chan
[ch
+ 2].txbuf
;
2082 if (s
->txrx
[ch
] && (s
->chan
[ch
].control
& 0x19) == 0x19)
2083 s
->chan
[ch
].rxbuf
= s
->txrx
[ch
](s
->opaque
[ch
], 'Q');
2085 return s
->chan
[ch
].rxbuf
;
2088 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
2094 static void s3c_spi_write(void *opaque
, target_phys_addr_t addr
,
2097 struct s3c_spi_state_s
*s
= (struct s3c_spi_state_s
*) opaque
;
2105 s
->chan
[ch
].control
= value
& 0x7f;
2111 s
->chan
[ch
].pin
= value
& 0x07;
2116 s
->chan
[ch
].pre
= value
& 0xff;
2121 s
->chan
[ch
].txbuf
= value
& 0xff;
2122 if (s
->txrx
[ch
] && (s
->chan
[ch
].control
& 0x19) == 0x18)
2123 s
->chan
[ch
].rxbuf
= s
->txrx
[ch
](s
->opaque
[ch
], value
& 0xff);
2128 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
2132 static CPUReadMemoryFunc
*s3c_spi_readfn
[] = {
2138 static CPUWriteMemoryFunc
*s3c_spi_writefn
[] = {
2144 static void s3c_spi_save(QEMUFile
*f
, void *opaque
)
2146 struct s3c_spi_state_s
*s
= (struct s3c_spi_state_s
*) opaque
;
2148 for (i
= 0; i
< 2; i
++) {
2149 qemu_put_8s(f
, &s
->chan
[i
].control
);
2150 qemu_put_8s(f
, &s
->chan
[i
].pin
);
2151 qemu_put_8s(f
, &s
->chan
[i
].pre
);
2153 qemu_put_8s(f
, &s
->chan
[i
].txbuf
);
2154 qemu_put_8s(f
, &s
->chan
[i
].rxbuf
);
2155 qemu_put_be32(f
, s
->chan
[i
].cs_pin
);
2156 qemu_put_be32(f
, s
->chan
[i
].clk_pin
);
2157 qemu_put_be32(f
, s
->chan
[i
].mosi_pin
);
2158 qemu_put_be32(f
, s
->chan
[i
].bit
);
2162 static int s3c_spi_load(QEMUFile
*f
, void *opaque
, int version_id
)
2164 struct s3c_spi_state_s
*s
= (struct s3c_spi_state_s
*) opaque
;
2166 for (i
= 0; i
< 2; i
++) {
2167 qemu_get_8s(f
, &s
->chan
[i
].control
);
2168 qemu_get_8s(f
, &s
->chan
[i
].pin
);
2169 qemu_get_8s(f
, &s
->chan
[i
].pre
);
2171 qemu_get_8s(f
, &s
->chan
[i
].txbuf
);
2172 qemu_get_8s(f
, &s
->chan
[i
].rxbuf
);
2173 s
->chan
[i
].cs_pin
= qemu_get_be32(f
);
2174 s
->chan
[i
].clk_pin
= qemu_get_be32(f
);
2175 s
->chan
[i
].mosi_pin
= qemu_get_be32(f
);
2176 s
->chan
[i
].bit
= qemu_get_be32(f
);
2182 static void s3c_spi_bitbang_cs(void *opaque
, int line
, int level
)
2184 struct s3c_spi_state_s
*s
= (struct s3c_spi_state_s
*) opaque
;
2186 if (s
->chan
[ch
].cs_pin
|| level
) {
2187 if (s
->chan
[ch
].bit
&& s
->txrx
[ch
] && !s
->btxrx
[ch
]) {
2188 s
->chan
[ch
].txbuf
<<= 8 - s
->chan
[ch
].bit
;
2189 s
->chan
[ch
].rxbuf
= s
->txrx
[ch
](s
->opaque
[ch
], s
->chan
[ch
].txbuf
);
2191 } else if (!s
->chan
[ch
].cs_pin
|| !level
)
2192 s
->chan
[ch
].bit
= 0;
2194 /* SSn is active low. */
2195 s
->chan
[ch
].cs_pin
= !level
;
2198 static void s3c_spi_bitbang_clk(void *opaque
, int line
, int level
)
2200 struct s3c_spi_state_s
*s
= (struct s3c_spi_state_s
*) opaque
;
2202 if (!s
->chan
[ch
].cs_pin
)
2205 /* Detect CLK rising edge */
2206 if (s
->chan
[ch
].clk_pin
|| !level
)
2210 qemu_set_irq(s
->chan
[ch
].miso
,
2211 s
->btxrx
[ch
](s
->opaque
[ch
], s
->chan
[ch
].mosi_pin
));
2215 s
->chan
[ch
].txbuf
<<= 1;
2216 s
->chan
[ch
].txbuf
|= s
->chan
[ch
].mosi_pin
;
2218 qemu_set_irq(s
->chan
[ch
].miso
, (s
->chan
[ch
].rxbuf
>> 7) & 1);
2219 s
->chan
[ch
].rxbuf
<<= 1;
2221 if (++ s
->chan
[ch
].bit
== 8) {
2223 s
->chan
[ch
].rxbuf
= s
->txrx
[ch
](s
->opaque
[ch
], s
->chan
[ch
].txbuf
);
2224 s
->chan
[ch
].bit
= 0;
2228 s
->chan
[ch
].clk_pin
= level
;
2231 static void s3c_spi_bitbang_mosi(void *opaque
, int line
, int level
)
2233 struct s3c_spi_state_s
*s
= (struct s3c_spi_state_s
*) opaque
;
2235 s
->chan
[ch
].mosi_pin
= level
;
2238 static const struct {
2239 int cs
, clk
, miso
, mosi
;
2240 } s3c_spi_pins
[2] = {
2241 { S3C_GPG(2), S3C_GPE(13), S3C_GPE(11), S3C_GPE(12) },
2242 { S3C_GPG(3), S3C_GPG(7), S3C_GPG(5), S3C_GPG(6) },
2245 static void s3c_spi_bitbang_init(struct s3c_spi_state_s
*s
,
2246 struct s3c_gpio_state_s
*gpio
)
2249 qemu_irq
*cs
= qemu_allocate_irqs(s3c_spi_bitbang_cs
, s
, 2);
2250 qemu_irq
*clk
= qemu_allocate_irqs(s3c_spi_bitbang_clk
, s
, 2);
2251 qemu_irq
*mosi
= qemu_allocate_irqs(s3c_spi_bitbang_mosi
, s
, 2);
2253 for (i
= 0; i
< 2; i
++) {
2254 s3c_gpio_out_set(gpio
, s3c_spi_pins
[i
].cs
, cs
[i
]);
2255 s3c_gpio_out_set(gpio
, s3c_spi_pins
[i
].clk
, clk
[i
]);
2256 s
->chan
[i
].miso
= s3c_gpio_in_get(gpio
)[s3c_spi_pins
[i
].miso
];
2257 s3c_gpio_out_set(gpio
, s3c_spi_pins
[i
].mosi
, mosi
[i
]);
2261 struct s3c_spi_state_s
*s3c_spi_init(target_phys_addr_t base
,
2262 qemu_irq irq0
, qemu_irq drq0
, qemu_irq irq1
, qemu_irq drq1
,
2263 struct s3c_gpio_state_s
*gpio
)
2266 struct s3c_spi_state_s
*s
= (struct s3c_spi_state_s
*)
2267 qemu_mallocz(sizeof(struct s3c_spi_state_s
));
2270 s
->chan
[0].irq
= irq0
;
2271 s
->chan
[0].drq
= drq0
;
2272 s
->chan
[1].irq
= irq1
;
2273 s
->chan
[1].drq
= drq1
;
2277 iomemtype
= cpu_register_io_memory(0, s3c_spi_readfn
,
2278 s3c_spi_writefn
, s
);
2279 cpu_register_physical_memory(s
->base
, 0xffffff, iomemtype
);
2281 s3c_spi_bitbang_init(s
, gpio
);
2283 register_savevm("s3c24xx_spi", 0, 0, s3c_spi_save
, s3c_spi_load
, s
);
2288 void s3c_spi_attach(struct s3c_spi_state_s
*s
, int ch
,
2289 uint8_t (*txrx
)(void *opaque
, uint8_t value
),
2290 uint8_t (*btxrx
)(void *opaque
, uint8_t value
), void *opaque
)
2293 cpu_abort(cpu_single_env
, "%s: No channel %i\n", __FUNCTION__
, ch
);
2295 s
->btxrx
[ch
] = btxrx
;
2296 s
->opaque
[ch
] = opaque
;
2299 /* IIS-BUS interface */
2300 static inline void s3c_i2s_update(struct s3c_i2s_state_s
*s
)
2303 (s
->control
& (1 << 0)) && !(s
->control
& (1 << 3)) &&
2304 (s
->mode
& (1 << 7)) && (s
->fcontrol
& (1 << 13));
2306 (s
->control
& (1 << 0)) && !(s
->control
& (1 << 2)) &&
2307 (s
->mode
& (1 << 6)) && (s
->fcontrol
& (1 << 12));
2308 s
->control
&= ~0xc0;
2309 /* The specs are unclear about the FIFO-ready flags logic.
2310 * Implement semantics that make most sense. */
2311 if (s
->tx_en
&& s
->tx_len
)
2312 s
->control
|= (1 << 7);
2313 if (s
->rx_en
&& s
->rx_len
)
2314 s
->control
|= (1 << 6);
2316 qemu_set_irq(s
->dma
[S3C_RQ_I2SSDO
], (s
->control
>> 5) &
2317 (s
->control
>> 7) & (s
->fcontrol
>> 15) & 1);
2318 qemu_set_irq(s
->dma
[S3C_RQ_I2SSDI0
], (s
->control
>> 4) &
2319 (s
->control
>> 6) & (s
->fcontrol
>> 14) & 1);
2320 qemu_set_irq(s
->dma
[S3C_RQ_I2SSDI1
], (s
->control
>> 4) &
2321 (s
->control
>> 6) & (s
->fcontrol
>> 14) & 1);
2324 static void s3c_i2s_reset(struct s3c_i2s_state_s
*s
)
2328 s
->prescaler
= 0x000;
2329 s
->fcontrol
= 0x0000;
2335 #define S3C_IISCON 0x00 /* IIS Control register */
2336 #define S3C_IISMOD 0x04 /* IIS Mode register */
2337 #define S3C_IISPSR 0x08 /* IIS Prescaler register */
2338 #define S3C_IISFCON 0x0c /* IIS FIFO Interface register */
2339 #define S3C_IISFIFO 0x10 /* IIS FIFO register */
2341 static uint32_t s3c_i2s_read(void *opaque
, target_phys_addr_t addr
)
2343 struct s3c_i2s_state_s
*s
= (struct s3c_i2s_state_s
*) opaque
;
2352 return s
->prescaler
;
2354 return s
->fcontrol
|
2355 (MAX(32 - s
->tx_len
, 0) << 6) |
2358 if (s
->rx_len
> 0) {
2363 s
->buffer
= (uint16_t) (ret
= s
->codec_in(s
->opaque
));
2369 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
2375 static void s3c_i2s_write(void *opaque
, target_phys_addr_t addr
,
2378 struct s3c_i2s_state_s
*s
= (struct s3c_i2s_state_s
*) opaque
;
2382 s
->control
= (s
->control
& 0x100) | (value
& 0x03f);
2386 s
->mode
= value
& 0x1ff;
2390 s
->prescaler
= value
& 0x3ff;
2393 s
->fcontrol
= value
& 0xf000;
2397 if (s
->tx_len
&& s
->tx_en
) {
2401 s
->codec_out(s
->opaque
, value
| ((uint32_t) s
->buffer
<< 16));
2403 s
->buffer
= (uint16_t) value
;
2408 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
2412 static CPUReadMemoryFunc
*s3c_i2s_readfn
[] = {
2418 static CPUWriteMemoryFunc
*s3c_i2s_writefn
[] = {
2424 static void s3c_i2s_save(QEMUFile
*f
, void *opaque
)
2426 struct s3c_i2s_state_s
*s
= (struct s3c_i2s_state_s
*) opaque
;
2427 qemu_put_be16s(f
, &s
->control
);
2428 qemu_put_be16s(f
, &s
->mode
);
2429 qemu_put_be16s(f
, &s
->prescaler
);
2430 qemu_put_be16s(f
, &s
->fcontrol
);
2432 qemu_put_be32(f
, s
->tx_en
);
2433 qemu_put_be32(f
, s
->rx_en
);
2434 qemu_put_be32(f
, s
->tx_len
);
2435 qemu_put_be32(f
, s
->rx_len
);
2436 qemu_put_be16(f
, s
->buffer
);
2437 qemu_put_be32(f
, s
->cycle
);
2440 static int s3c_i2s_load(QEMUFile
*f
, void *opaque
, int version_id
)
2442 struct s3c_i2s_state_s
*s
= (struct s3c_i2s_state_s
*) opaque
;
2443 qemu_get_be16s(f
, &s
->control
);
2444 qemu_get_be16s(f
, &s
->mode
);
2445 qemu_get_be16s(f
, &s
->prescaler
);
2446 qemu_get_be16s(f
, &s
->fcontrol
);
2448 s
->tx_en
= qemu_get_be32(f
);
2449 s
->rx_en
= qemu_get_be32(f
);
2450 s
->tx_len
= qemu_get_be32(f
);
2451 s
->rx_len
= qemu_get_be32(f
);
2452 s
->buffer
= qemu_get_be16(f
);
2453 s
->cycle
= qemu_get_be32(f
);
2458 static void s3c_i2s_data_req(void *opaque
, int tx
, int rx
)
2460 struct s3c_i2s_state_s
*s
= (struct s3c_i2s_state_s
*) opaque
;
2466 struct s3c_i2s_state_s
*s3c_i2s_init(target_phys_addr_t base
, qemu_irq
*dma
)
2469 struct s3c_i2s_state_s
*s
= (struct s3c_i2s_state_s
*)
2470 qemu_mallocz(sizeof(struct s3c_i2s_state_s
));
2474 s
->data_req
= s3c_i2s_data_req
;
2478 iomemtype
= cpu_register_io_memory(0, s3c_i2s_readfn
,
2479 s3c_i2s_writefn
, s
);
2480 cpu_register_physical_memory(s
->base
, 0xffffff, iomemtype
);
2482 register_savevm("s3c24xx_iis", 0, 0, s3c_i2s_save
, s3c_i2s_load
, s
);
2487 /* Watchdog Timer */
2488 struct s3c_wdt_state_s
{
2489 target_phys_addr_t base
;
2498 static void s3c_wdt_start(struct s3c_wdt_state_s
*s
)
2500 int enable
= s
->control
& (1 << 5);
2501 int prescaler
= (s
->control
>> 8) + 1;
2502 int divider
= prescaler
<< (((s
->control
>> 3) & 3) + 4);
2504 s
->timestamp
= qemu_get_clock(vm_clock
);
2505 qemu_mod_timer(s
->tm
, s
->timestamp
+ muldiv64(divider
* s
->count
,
2506 ticks_per_sec
, S3C_PCLK_FREQ
));
2508 qemu_del_timer(s
->tm
);
2511 static void s3c_wdt_stop(struct s3c_wdt_state_s
*s
)
2513 int prescaler
= (s
->control
>> 8) + 1;
2514 int divider
= prescaler
<< (((s
->control
>> 3) & 3) + 4);
2517 diff
= muldiv64(qemu_get_clock(vm_clock
) - s
->timestamp
, S3C_PCLK_FREQ
,
2518 ticks_per_sec
) / divider
;
2519 s
->count
-= MIN(s
->count
, diff
);
2520 s
->timestamp
= qemu_get_clock(vm_clock
);
2523 static void s3c_wdt_reset(struct s3c_wdt_state_s
*s
)
2525 s
->control
= 0x8021;
2531 static void s3c_wdt_timeout(void *opaque
)
2533 struct s3c_wdt_state_s
*s
= (struct s3c_wdt_state_s
*) opaque
;
2534 if (s
->control
& (1 << 0)) {
2535 qemu_system_reset_request();
2538 if (s
->control
& (1 << 2))
2539 qemu_irq_raise(s
->irq
);
2544 #define S3C_WTCON 0x00 /* Watchdog timer control register */
2545 #define S3C_WTDAT 0x04 /* Watchdog timer data register */
2546 #define S3C_WTCNT 0x08 /* Watchdog timer count register */
2548 static uint32_t s3c_wdt_read(void *opaque
, target_phys_addr_t addr
)
2550 struct s3c_wdt_state_s
*s
= (struct s3c_wdt_state_s
*) opaque
;
2561 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
2567 static void s3c_wdt_write(void *opaque
, target_phys_addr_t addr
,
2570 struct s3c_wdt_state_s
*s
= (struct s3c_wdt_state_s
*) opaque
;
2586 printf("%s: Bad register 0x%lx\n", __FUNCTION__
, (unsigned long)addr
);
2590 static CPUReadMemoryFunc
*s3c_wdt_readfn
[] = {
2596 static CPUWriteMemoryFunc
*s3c_wdt_writefn
[] = {
2602 static void s3c_wdt_save(QEMUFile
*f
, void *opaque
)
2604 struct s3c_wdt_state_s
*s
= (struct s3c_wdt_state_s
*) opaque
;
2607 qemu_put_be16s(f
, &s
->control
);
2608 qemu_put_be16s(f
, &s
->data
);
2609 qemu_put_be16s(f
, &s
->count
);
2610 qemu_put_be64s(f
, &s
->timestamp
);
2613 static int s3c_wdt_load(QEMUFile
*f
, void *opaque
, int version_id
)
2615 struct s3c_wdt_state_s
*s
= (struct s3c_wdt_state_s
*) opaque
;
2617 qemu_get_be16s(f
, &s
->control
);
2618 qemu_get_be16s(f
, &s
->data
);
2619 qemu_get_be16s(f
, &s
->count
);
2620 qemu_get_be64s(f
, &s
->timestamp
);
2626 struct s3c_wdt_state_s
*s3c_wdt_init(target_phys_addr_t base
, qemu_irq irq
)
2629 struct s3c_wdt_state_s
*s
= (struct s3c_wdt_state_s
*)
2630 qemu_mallocz(sizeof(struct s3c_wdt_state_s
));
2634 s
->tm
= qemu_new_timer(vm_clock
, s3c_wdt_timeout
, s
);
2638 iomemtype
= cpu_register_io_memory(0, s3c_wdt_readfn
,
2639 s3c_wdt_writefn
, s
);
2640 cpu_register_physical_memory(s
->base
, 0xffffff, iomemtype
);
2642 register_savevm("s3c24xx_wdt", 0, 0, s3c_wdt_save
, s3c_wdt_load
, s
);
2649 target_phys_addr_t base
;
2652 } s3c2410_uart
[] = {
2655 { S3C_PICS_RXD0
, S3C_PICS_TXD0
, S3C_PICS_ERR0
},
2660 { S3C_PICS_RXD1
, S3C_PICS_TXD1
, S3C_PICS_ERR1
},
2665 { S3C_PICS_RXD2
, S3C_PICS_TXD2
, S3C_PICS_ERR2
},
2668 { 0, { 0, 0, 0 }, { 0 } }
2671 /* General CPU reset */
2672 static void s3c2410_reset(void *opaque
)
2674 struct s3c_state_s
*s
= (struct s3c_state_s
*) opaque
;
2677 s3c_pic_reset(s
->pic
);
2678 s3c_dma_reset(s
->dma
);
2679 s3c_gpio_reset(s
->io
);
2680 s3c_lcd_reset(s
->lcd
);
2681 s3c_timers_reset(s
->timers
);
2682 s3c_mmci_reset(s
->mmci
);
2683 s3c_adc_reset(s
->adc
);
2684 s3c_i2c_reset(s
->i2c
);
2685 s3c_i2s_reset(s
->i2s
);
2686 s3c_rtc_reset(s
->rtc
);
2687 s3c_spi_reset(s
->spi
);
2688 s3c_udc_reset(s
->udc
);
2689 s3c_wdt_reset(s
->wdt
);
2690 s3c_clkpwr_reset(s
);
2691 // s3c_nand_reset(s);
2692 s
->nand
->reset(s
->nand
);
2693 for (i
= 0; s3c2410_uart
[i
].base
; i
++)
2694 s3c_uart_reset(s
->uart
[i
]);
2698 struct s3c_state_s
* g_s3c
;
2700 /* Initialise an S3C24XX microprocessor. */
2701 struct s3c_state_s
*s3c24xx_init(
2703 unsigned int sdram_size
,
2704 uint32_t sram_address
,
2707 struct s3c_state_s
*s
;
2709 s
= (struct s3c_state_s
*) qemu_mallocz(sizeof(struct s3c_state_s
));
2713 s
->env
= cpu_init("arm920t");
2715 fprintf(stderr
, "Unable to initialize ARM920T\n");
2718 register_savevm("s3c24xx", 0, 0,
2719 cpu_save
, cpu_load
, s
->env
);
2721 cpu_register_physical_memory(S3C_RAM_BASE
, sdram_size
,
2722 qemu_ram_alloc(sdram_size
) | IO_MEM_RAM
);
2724 /* If OM pins are 00, SRAM is mapped at 0x0 instead. */
2725 cpu_register_physical_memory(sram_address
, S3C_SRAM_SIZE
,
2726 qemu_ram_alloc(S3C_SRAM_SIZE
) | IO_MEM_RAM
);
2728 s
->mc_base
= 0x48000000;
2730 iomemtype
= cpu_register_io_memory(0, s3c_mc_readfn
, s3c_mc_writefn
, s
);
2731 cpu_register_physical_memory(s
->mc_base
, 0xffffff, iomemtype
);
2732 register_savevm("s3c24xx_mc", 0, 0, s3c_mc_save
, s3c_mc_load
, s
);
2734 s
->pic
= s3c_pic_init(0x4a000000, arm_pic_init_cpu(s
->env
));
2735 s
->irq
= s3c_pic_get(s
->pic
);
2737 s
->dma
= s3c_dma_init(0x4b000000, &s
->irq
[S3C_PIC_DMA0
]);
2738 s
->drq
= s3c_dma_get(s
->dma
);
2740 s
->clkpwr_base
= 0x4c000000;
2741 s3c_clkpwr_reset(s
);
2742 iomemtype
= cpu_register_io_memory(0, s3c_clkpwr_readfn
,
2743 s3c_clkpwr_writefn
, s
);
2744 cpu_register_physical_memory(s
->clkpwr_base
, 0xffffff, iomemtype
);
2745 register_savevm("s3c24xx_clkpwr", 0, 0,
2746 s3c_clkpwr_save
, s3c_clkpwr_load
, s
);
2748 s
->lcd
= s3c_lcd_init(0x4d000000, s
->irq
[S3C_PIC_LCD
]);
2750 if (s
->cpu_id
== S3C_CPU_2440
)
2751 s
->nand
= s3c2440_nand_init();
2753 s
->nand
= s3c2410_nand_init();
2755 for (i
= 0; s3c2410_uart
[i
].base
; i
++) {
2756 s
->uart
[i
] = s3c_uart_init(s3c2410_uart
[i
].base
,
2757 &s
->irq
[s3c2410_uart
[i
].irq
[0]],
2758 &s
->drq
[s3c2410_uart
[i
].dma
[0]]);
2760 s3c_uart_attach(s
->uart
[i
], serial_hds
[i
]);
2763 s
->timers
= s3c_timers_init(0x51000000, &s
->irq
[S3C_PIC_TIMER0
], s
->drq
);
2765 s
->udc
= s3c_udc_init(0x52000000, s
->irq
[S3C_PIC_USBD
], s
->drq
);
2767 s
->wdt
= s3c_wdt_init(0x53000000, s
->irq
[S3C_PIC_WDT
]);
2769 s
->i2c
= s3c_i2c_init(0x54000000, s
->irq
[S3C_PIC_IIC
]);
2771 s
->i2s
= s3c_i2s_init(0x55000000, s
->drq
);
2773 s
->io
= s3c_gpio_init(0x56000000, s
->irq
, s
->cpu_id
);
2775 s
->rtc
= s3c_rtc_init(0x57000000, s
->irq
[S3C_PIC_RTC
]);
2777 s
->adc
= s3c_adc_init(0x58000000, s
->irq
[S3C_PICS_ADC
],
2778 s
->irq
[S3C_PICS_TC
]);
2780 s
->spi
= s3c_spi_init(0x59000000,
2781 s
->irq
[S3C_PIC_SPI0
], s
->drq
[S3C_RQ_SPI0
],
2782 s
->irq
[S3C_PIC_SPI1
], s
->drq
[S3C_RQ_SPI1
], s
->io
);
2784 s
->mmci
= s3c_mmci_init(0x5a000000, 0x2410, mmc
,
2785 s
->irq
[S3C_PIC_SDI
], s
->drq
);
2788 usb_ohci_init_pxa(0x49000000, 3, -1, s
->irq
[S3C_PIC_USBH
]);
2791 qemu_register_reset(s3c2410_reset
, s
);
2793 s
->nand
->setwp(s
->nand
, 1);
2794 //s3c_nand_setwp(s, 1);
2796 /* Power on reset */
2797 s3c_gpio_setpwrstat(s
->io
, 1);