2 * TI OMAP processors emulation.
4 * Copyright (C) 2006-2007 Andrzej Zaborowski <balrog@zabor.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 /* Should signal the TCMI */
25 uint32_t omap_badwidth_read16(void *opaque
, target_phys_addr_t addr
)
31 void omap_badwidth_write16(void *opaque
, target_phys_addr_t addr
,
37 uint32_t omap_badwidth_read32(void *opaque
, target_phys_addr_t addr
)
43 void omap_badwidth_write32(void *opaque
, target_phys_addr_t addr
,
49 /* Interrupt Handlers */
50 struct omap_intr_handler_s
{
53 target_phys_addr_t base
;
68 static void omap_inth_update(struct omap_intr_handler_s
*s
)
70 uint32_t irq
= s
->irqs
& ~s
->mask
& ~s
->fiq
;
71 uint32_t fiq
= s
->irqs
& ~s
->mask
& s
->fiq
;
73 if (s
->new_irq_agr
|| !irq
) {
74 qemu_set_irq(s
->parent_pic
[ARM_PIC_CPU_IRQ
], irq
);
79 if (s
->new_fiq_agr
|| !irq
) {
80 qemu_set_irq(s
->parent_pic
[ARM_PIC_CPU_FIQ
], fiq
);
86 static void omap_inth_sir_update(struct omap_intr_handler_s
*s
)
88 int i
, intr_irq
, intr_fiq
, p_irq
, p_fiq
, p
, f
;
89 uint32_t level
= s
->irqs
& ~s
->mask
;
95 /* Find the interrupt line with the highest dynamic priority */
96 for (f
= ffs(level
), i
= f
- 1, level
>>= f
- 1; f
; i
+= f
, level
>>= f
) {
98 if (s
->fiq
& (1 << i
)) {
113 s
->sir_irq
= intr_irq
;
114 s
->sir_fiq
= intr_fiq
;
117 #define INT_FALLING_EDGE 0
118 #define INT_LOW_LEVEL 1
120 static void omap_set_intr(void *opaque
, int irq
, int req
)
122 struct omap_intr_handler_s
*ih
= (struct omap_intr_handler_s
*) opaque
;
126 rise
= ~ih
->irqs
& (1 << irq
);
128 ih
->stats
[irq
] += !!rise
;
130 rise
= ih
->sens_edge
& ih
->irqs
& (1 << irq
);
134 if (rise
& ~ih
->mask
) {
135 omap_inth_sir_update(ih
);
137 omap_inth_update(ih
);
141 static uint32_t omap_inth_read(void *opaque
, target_phys_addr_t addr
)
143 struct omap_intr_handler_s
*s
= (struct omap_intr_handler_s
*) opaque
;
144 int i
, offset
= addr
- s
->base
;
153 case 0x10: /* SIR_IRQ_CODE */
155 if (((s
->sens_edge
>> i
) & 1) == INT_FALLING_EDGE
&& i
) {
156 s
->irqs
&= ~(1 << i
);
157 omap_inth_sir_update(s
);
162 case 0x14: /* SIR_FIQ_CODE */
164 if (((s
->sens_edge
>> i
) & 1) == INT_FALLING_EDGE
&& i
) {
165 s
->irqs
&= ~(1 << i
);
166 omap_inth_sir_update(s
);
171 case 0x18: /* CONTROL_REG */
174 case 0x1c: /* ILR0 */
175 case 0x20: /* ILR1 */
176 case 0x24: /* ILR2 */
177 case 0x28: /* ILR3 */
178 case 0x2c: /* ILR4 */
179 case 0x30: /* ILR5 */
180 case 0x34: /* ILR6 */
181 case 0x38: /* ILR7 */
182 case 0x3c: /* ILR8 */
183 case 0x40: /* ILR9 */
184 case 0x44: /* ILR10 */
185 case 0x48: /* ILR11 */
186 case 0x4c: /* ILR12 */
187 case 0x50: /* ILR13 */
188 case 0x54: /* ILR14 */
189 case 0x58: /* ILR15 */
190 case 0x5c: /* ILR16 */
191 case 0x60: /* ILR17 */
192 case 0x64: /* ILR18 */
193 case 0x68: /* ILR19 */
194 case 0x6c: /* ILR20 */
195 case 0x70: /* ILR21 */
196 case 0x74: /* ILR22 */
197 case 0x78: /* ILR23 */
198 case 0x7c: /* ILR24 */
199 case 0x80: /* ILR25 */
200 case 0x84: /* ILR26 */
201 case 0x88: /* ILR27 */
202 case 0x8c: /* ILR28 */
203 case 0x90: /* ILR29 */
204 case 0x94: /* ILR30 */
205 case 0x98: /* ILR31 */
206 i
= (offset
- 0x1c) >> 2;
207 return (s
->priority
[i
] << 2) |
208 (((s
->sens_edge
>> i
) & 1) << 1) |
221 static void omap_inth_write(void *opaque
, target_phys_addr_t addr
,
224 struct omap_intr_handler_s
*s
= (struct omap_intr_handler_s
*) opaque
;
225 int i
, offset
= addr
- s
->base
;
230 omap_inth_sir_update(s
);
236 omap_inth_sir_update(s
);
240 case 0x10: /* SIR_IRQ_CODE */
241 case 0x14: /* SIR_FIQ_CODE */
245 case 0x18: /* CONTROL_REG */
253 case 0x1c: /* ILR0 */
254 case 0x20: /* ILR1 */
255 case 0x24: /* ILR2 */
256 case 0x28: /* ILR3 */
257 case 0x2c: /* ILR4 */
258 case 0x30: /* ILR5 */
259 case 0x34: /* ILR6 */
260 case 0x38: /* ILR7 */
261 case 0x3c: /* ILR8 */
262 case 0x40: /* ILR9 */
263 case 0x44: /* ILR10 */
264 case 0x48: /* ILR11 */
265 case 0x4c: /* ILR12 */
266 case 0x50: /* ILR13 */
267 case 0x54: /* ILR14 */
268 case 0x58: /* ILR15 */
269 case 0x5c: /* ILR16 */
270 case 0x60: /* ILR17 */
271 case 0x64: /* ILR18 */
272 case 0x68: /* ILR19 */
273 case 0x6c: /* ILR20 */
274 case 0x70: /* ILR21 */
275 case 0x74: /* ILR22 */
276 case 0x78: /* ILR23 */
277 case 0x7c: /* ILR24 */
278 case 0x80: /* ILR25 */
279 case 0x84: /* ILR26 */
280 case 0x88: /* ILR27 */
281 case 0x8c: /* ILR28 */
282 case 0x90: /* ILR29 */
283 case 0x94: /* ILR30 */
284 case 0x98: /* ILR31 */
285 i
= (offset
- 0x1c) >> 2;
286 s
->priority
[i
] = (value
>> 2) & 0x1f;
287 s
->sens_edge
&= ~(1 << i
);
288 s
->sens_edge
|= ((value
>> 1) & 1) << i
;
290 s
->fiq
|= (value
& 1) << i
;
294 for (i
= 0; i
< 32; i
++)
295 if (value
& (1 << i
)) {
296 omap_set_intr(s
, i
, 1);
306 static CPUReadMemoryFunc
*omap_inth_readfn
[] = {
307 omap_badwidth_read32
,
308 omap_badwidth_read32
,
312 static CPUWriteMemoryFunc
*omap_inth_writefn
[] = {
318 static void omap_inth_reset(struct omap_intr_handler_s
*s
)
320 s
->irqs
= 0x00000000;
321 s
->mask
= 0xffffffff;
322 s
->sens_edge
= 0x00000000;
324 memset(s
->priority
, 0, sizeof(s
->priority
));
333 struct omap_intr_handler_s
*omap_inth_init(target_phys_addr_t base
,
334 unsigned long size
, qemu_irq parent
[2], omap_clk clk
)
337 struct omap_intr_handler_s
*s
= (struct omap_intr_handler_s
*)
338 qemu_mallocz(sizeof(struct omap_intr_handler_s
));
340 s
->parent_pic
= parent
;
342 s
->pins
= qemu_allocate_irqs(omap_set_intr
, s
, 32);
345 iomemtype
= cpu_register_io_memory(0, omap_inth_readfn
,
346 omap_inth_writefn
, s
);
347 cpu_register_physical_memory(s
->base
, size
, iomemtype
);
352 /* OMAP1 DMA module */
358 } omap_dma_addressing_t
;
360 struct omap_dma_channel_s
{
363 enum omap_dma_port port
[2];
364 target_phys_addr_t addr
[2];
365 omap_dma_addressing_t mode
[2];
381 uint16_t frame_index
;
382 uint16_t element_index
;
385 struct omap_dma_reg_set_s
{
386 target_phys_addr_t src
, dest
;
399 struct omap_mpu_state_s
*mpu
;
400 target_phys_addr_t base
;
409 struct omap_dma_channel_s ch
[16];
410 struct omap_dma_lcd_channel_s lcd_ch
;
413 static void omap_dma_interrupts_update(struct omap_dma_s
*s
)
415 /* First three interrupts are shared between two channels each. */
416 qemu_set_irq(s
->ih
[OMAP_INT_DMA_CH0_6
],
417 (s
->ch
[0].status
| s
->ch
[6].status
) & 0x3f);
418 qemu_set_irq(s
->ih
[OMAP_INT_DMA_CH1_7
],
419 (s
->ch
[1].status
| s
->ch
[7].status
) & 0x3f);
420 qemu_set_irq(s
->ih
[OMAP_INT_DMA_CH2_8
],
421 (s
->ch
[2].status
| s
->ch
[8].status
) & 0x3f);
422 qemu_set_irq(s
->ih
[OMAP_INT_DMA_CH3
],
423 (s
->ch
[3].status
) & 0x3f);
424 qemu_set_irq(s
->ih
[OMAP_INT_DMA_CH4
],
425 (s
->ch
[4].status
) & 0x3f);
426 qemu_set_irq(s
->ih
[OMAP_INT_DMA_CH5
],
427 (s
->ch
[5].status
) & 0x3f);
430 static void omap_dma_channel_load(struct omap_dma_s
*s
, int ch
)
432 struct omap_dma_reg_set_s
*a
= &s
->ch
[ch
].active_set
;
436 * TODO: verify address ranges and alignment
437 * TODO: port endianness
440 a
->src
= s
->ch
[ch
].addr
[0];
441 a
->dest
= s
->ch
[ch
].addr
[1];
442 a
->frames
= s
->ch
[ch
].frames
;
443 a
->elements
= s
->ch
[ch
].elements
;
447 if (unlikely(!s
->ch
[ch
].elements
|| !s
->ch
[ch
].frames
)) {
448 printf("%s: bad DMA request\n", __FUNCTION__
);
452 for (i
= 0; i
< 2; i
++)
453 switch (s
->ch
[ch
].mode
[i
]) {
455 a
->elem_delta
[i
] = 0;
456 a
->frame_delta
[i
] = 0;
458 case post_incremented
:
459 a
->elem_delta
[i
] = s
->ch
[ch
].data_type
;
460 a
->frame_delta
[i
] = 0;
463 a
->elem_delta
[i
] = s
->ch
[ch
].data_type
+
464 s
->ch
[ch
].element_index
- 1;
465 if (s
->ch
[ch
].element_index
> 0x7fff)
466 a
->elem_delta
[i
] -= 0x10000;
467 a
->frame_delta
[i
] = 0;
470 a
->elem_delta
[i
] = s
->ch
[ch
].data_type
+
471 s
->ch
[ch
].element_index
- 1;
472 if (s
->ch
[ch
].element_index
> 0x7fff)
473 a
->elem_delta
[i
] -= 0x10000;
474 a
->frame_delta
[i
] = s
->ch
[ch
].frame_index
-
475 s
->ch
[ch
].element_index
;
476 if (s
->ch
[ch
].frame_index
> 0x7fff)
477 a
->frame_delta
[i
] -= 0x10000;
484 static inline void omap_dma_request_run(struct omap_dma_s
*s
,
485 int channel
, int request
)
489 for (; channel
< 9; channel
++)
490 if (s
->ch
[channel
].sync
== request
&& s
->ch
[channel
].running
)
495 if (s
->ch
[channel
].transfer
) {
497 s
->ch
[channel
++].post_sync
= request
;
500 s
->ch
[channel
].status
|= 0x02; /* Synchronisation drop */
501 omap_dma_interrupts_update(s
);
505 if (!s
->ch
[channel
].signalled
)
507 s
->ch
[channel
].signalled
= 1;
510 s
->ch
[channel
].status
|= 0x40; /* External request */
512 if (s
->delay
&& !qemu_timer_pending(s
->tm
))
513 qemu_mod_timer(s
->tm
, qemu_get_clock(vm_clock
) + s
->delay
);
521 static inline void omap_dma_request_stop(struct omap_dma_s
*s
, int channel
)
523 if (s
->ch
[channel
].signalled
)
525 s
->ch
[channel
].signalled
= 0;
528 qemu_del_timer(s
->tm
);
531 static void omap_dma_channel_run(struct omap_dma_s
*s
)
536 struct omap_dma_port_if_s
*src_p
, *dest_p
;
537 struct omap_dma_reg_set_s
*a
;
539 for (ch
= 0; ch
< 9; ch
++) {
540 a
= &s
->ch
[ch
].active_set
;
542 src_p
= &s
->mpu
->port
[s
->ch
[ch
].port
[0]];
543 dest_p
= &s
->mpu
->port
[s
->ch
[ch
].port
[1]];
544 if (s
->ch
[ch
].signalled
&& (!src_p
->addr_valid(s
->mpu
, a
->src
) ||
545 !dest_p
->addr_valid(s
->mpu
, a
->dest
))) {
548 if (s
->ch
[ch
].interrupts
& 0x01)
549 s
->ch
[ch
].status
|= 0x01;
550 omap_dma_request_stop(s
, ch
);
553 printf("%s: Bus time-out in DMA%i operation\n", __FUNCTION__
, ch
);
556 status
= s
->ch
[ch
].status
;
557 while (status
== s
->ch
[ch
].status
&& s
->ch
[ch
].signalled
) {
558 /* Transfer a single element */
559 s
->ch
[ch
].transfer
= 1;
560 cpu_physical_memory_read(a
->src
, value
, s
->ch
[ch
].data_type
);
561 cpu_physical_memory_write(a
->dest
, value
, s
->ch
[ch
].data_type
);
562 s
->ch
[ch
].transfer
= 0;
564 a
->src
+= a
->elem_delta
[0];
565 a
->dest
+= a
->elem_delta
[1];
568 /* Check interrupt conditions */
569 if (a
->element
== a
->elements
) {
571 a
->src
+= a
->frame_delta
[0];
572 a
->dest
+= a
->frame_delta
[1];
575 if (a
->frame
== a
->frames
) {
576 if (!s
->ch
[ch
].repeat
|| !s
->ch
[ch
].auto_init
)
577 s
->ch
[ch
].running
= 0;
579 if (s
->ch
[ch
].auto_init
&&
582 omap_dma_channel_load(s
, ch
);
584 if (s
->ch
[ch
].interrupts
& 0x20)
585 s
->ch
[ch
].status
|= 0x20;
588 omap_dma_request_stop(s
, ch
);
591 if (s
->ch
[ch
].interrupts
& 0x08)
592 s
->ch
[ch
].status
|= 0x08;
594 if (s
->ch
[ch
].sync
&& s
->ch
[ch
].fs
&&
595 !(s
->drq
& (1 << s
->ch
[ch
].sync
))) {
596 s
->ch
[ch
].status
&= ~0x40;
597 omap_dma_request_stop(s
, ch
);
601 if (a
->element
== 1 && a
->frame
== a
->frames
- 1)
602 if (s
->ch
[ch
].interrupts
& 0x10)
603 s
->ch
[ch
].status
|= 0x10;
605 if (a
->element
== (a
->elements
>> 1))
606 if (s
->ch
[ch
].interrupts
& 0x04)
607 s
->ch
[ch
].status
|= 0x04;
609 if (s
->ch
[ch
].sync
&& !s
->ch
[ch
].fs
&&
610 !(s
->drq
& (1 << s
->ch
[ch
].sync
))) {
611 s
->ch
[ch
].status
&= ~0x40;
612 omap_dma_request_stop(s
, ch
);
616 * Process requests made while the element was
619 if (s
->ch
[ch
].post_sync
) {
620 omap_dma_request_run(s
, 0, s
->ch
[ch
].post_sync
);
621 s
->ch
[ch
].post_sync
= 0;
629 s
->ch
[ch
].cpc
= a
->dest
& 0x0000ffff;
632 omap_dma_interrupts_update(s
);
633 if (s
->run_count
&& s
->delay
)
634 qemu_mod_timer(s
->tm
, qemu_get_clock(vm_clock
) + s
->delay
);
637 static int omap_dma_ch_reg_read(struct omap_dma_s
*s
,
638 int ch
, int reg
, uint16_t *value
) {
640 case 0x00: /* SYS_DMA_CSDP_CH0 */
641 *value
= (s
->ch
[ch
].burst
[1] << 14) |
642 (s
->ch
[ch
].pack
[1] << 13) |
643 (s
->ch
[ch
].port
[1] << 9) |
644 (s
->ch
[ch
].burst
[0] << 7) |
645 (s
->ch
[ch
].pack
[0] << 6) |
646 (s
->ch
[ch
].port
[0] << 2) |
647 (s
->ch
[ch
].data_type
>> 1);
650 case 0x02: /* SYS_DMA_CCR_CH0 */
651 *value
= (s
->ch
[ch
].mode
[1] << 14) |
652 (s
->ch
[ch
].mode
[0] << 12) |
653 (s
->ch
[ch
].end_prog
<< 11) |
654 (s
->ch
[ch
].repeat
<< 9) |
655 (s
->ch
[ch
].auto_init
<< 8) |
656 (s
->ch
[ch
].running
<< 7) |
657 (s
->ch
[ch
].priority
<< 6) |
658 (s
->ch
[ch
].fs
<< 5) | s
->ch
[ch
].sync
;
661 case 0x04: /* SYS_DMA_CICR_CH0 */
662 *value
= s
->ch
[ch
].interrupts
;
665 case 0x06: /* SYS_DMA_CSR_CH0 */
666 /* FIXME: shared CSR for channels sharing the interrupts */
667 *value
= s
->ch
[ch
].status
;
668 s
->ch
[ch
].status
&= 0x40;
669 omap_dma_interrupts_update(s
);
672 case 0x08: /* SYS_DMA_CSSA_L_CH0 */
673 *value
= s
->ch
[ch
].addr
[0] & 0x0000ffff;
676 case 0x0a: /* SYS_DMA_CSSA_U_CH0 */
677 *value
= s
->ch
[ch
].addr
[0] >> 16;
680 case 0x0c: /* SYS_DMA_CDSA_L_CH0 */
681 *value
= s
->ch
[ch
].addr
[1] & 0x0000ffff;
684 case 0x0e: /* SYS_DMA_CDSA_U_CH0 */
685 *value
= s
->ch
[ch
].addr
[1] >> 16;
688 case 0x10: /* SYS_DMA_CEN_CH0 */
689 *value
= s
->ch
[ch
].elements
;
692 case 0x12: /* SYS_DMA_CFN_CH0 */
693 *value
= s
->ch
[ch
].frames
;
696 case 0x14: /* SYS_DMA_CFI_CH0 */
697 *value
= s
->ch
[ch
].frame_index
;
700 case 0x16: /* SYS_DMA_CEI_CH0 */
701 *value
= s
->ch
[ch
].element_index
;
704 case 0x18: /* SYS_DMA_CPC_CH0 */
705 *value
= s
->ch
[ch
].cpc
;
714 static int omap_dma_ch_reg_write(struct omap_dma_s
*s
,
715 int ch
, int reg
, uint16_t value
) {
717 case 0x00: /* SYS_DMA_CSDP_CH0 */
718 s
->ch
[ch
].burst
[1] = (value
& 0xc000) >> 14;
719 s
->ch
[ch
].pack
[1] = (value
& 0x2000) >> 13;
720 s
->ch
[ch
].port
[1] = (enum omap_dma_port
) ((value
& 0x1e00) >> 9);
721 s
->ch
[ch
].burst
[0] = (value
& 0x0180) >> 7;
722 s
->ch
[ch
].pack
[0] = (value
& 0x0040) >> 6;
723 s
->ch
[ch
].port
[0] = (enum omap_dma_port
) ((value
& 0x003c) >> 2);
724 s
->ch
[ch
].data_type
= (1 << (value
& 3));
725 if (s
->ch
[ch
].port
[0] >= omap_dma_port_last
)
726 printf("%s: invalid DMA port %i\n", __FUNCTION__
,
728 if (s
->ch
[ch
].port
[1] >= omap_dma_port_last
)
729 printf("%s: invalid DMA port %i\n", __FUNCTION__
,
731 if ((value
& 3) == 3)
732 printf("%s: bad data_type for DMA channel %i\n", __FUNCTION__
, ch
);
735 case 0x02: /* SYS_DMA_CCR_CH0 */
736 s
->ch
[ch
].mode
[1] = (omap_dma_addressing_t
) ((value
& 0xc000) >> 14);
737 s
->ch
[ch
].mode
[0] = (omap_dma_addressing_t
) ((value
& 0x3000) >> 12);
738 s
->ch
[ch
].end_prog
= (value
& 0x0800) >> 11;
739 s
->ch
[ch
].repeat
= (value
& 0x0200) >> 9;
740 s
->ch
[ch
].auto_init
= (value
& 0x0100) >> 8;
741 s
->ch
[ch
].priority
= (value
& 0x0040) >> 6;
742 s
->ch
[ch
].fs
= (value
& 0x0020) >> 5;
743 s
->ch
[ch
].sync
= value
& 0x001f;
744 if (value
& 0x0080) {
745 if (s
->ch
[ch
].running
) {
746 if (!s
->ch
[ch
].signalled
&&
747 s
->ch
[ch
].auto_init
&& s
->ch
[ch
].end_prog
)
748 omap_dma_channel_load(s
, ch
);
750 s
->ch
[ch
].running
= 1;
751 omap_dma_channel_load(s
, ch
);
753 if (!s
->ch
[ch
].sync
|| (s
->drq
& (1 << s
->ch
[ch
].sync
)))
754 omap_dma_request_run(s
, ch
, 0);
756 s
->ch
[ch
].running
= 0;
757 omap_dma_request_stop(s
, ch
);
761 case 0x04: /* SYS_DMA_CICR_CH0 */
762 s
->ch
[ch
].interrupts
= value
& 0x003f;
765 case 0x06: /* SYS_DMA_CSR_CH0 */
768 case 0x08: /* SYS_DMA_CSSA_L_CH0 */
769 s
->ch
[ch
].addr
[0] &= 0xffff0000;
770 s
->ch
[ch
].addr
[0] |= value
;
773 case 0x0a: /* SYS_DMA_CSSA_U_CH0 */
774 s
->ch
[ch
].addr
[0] &= 0x0000ffff;
775 s
->ch
[ch
].addr
[0] |= value
<< 16;
778 case 0x0c: /* SYS_DMA_CDSA_L_CH0 */
779 s
->ch
[ch
].addr
[1] &= 0xffff0000;
780 s
->ch
[ch
].addr
[1] |= value
;
783 case 0x0e: /* SYS_DMA_CDSA_U_CH0 */
784 s
->ch
[ch
].addr
[1] &= 0x0000ffff;
785 s
->ch
[ch
].addr
[1] |= value
<< 16;
788 case 0x10: /* SYS_DMA_CEN_CH0 */
789 s
->ch
[ch
].elements
= value
& 0xffff;
792 case 0x12: /* SYS_DMA_CFN_CH0 */
793 s
->ch
[ch
].frames
= value
& 0xffff;
796 case 0x14: /* SYS_DMA_CFI_CH0 */
797 s
->ch
[ch
].frame_index
= value
& 0xffff;
800 case 0x16: /* SYS_DMA_CEI_CH0 */
801 s
->ch
[ch
].element_index
= value
& 0xffff;
804 case 0x18: /* SYS_DMA_CPC_CH0 */
808 OMAP_BAD_REG((unsigned long) reg
);
813 static uint32_t omap_dma_read(void *opaque
, target_phys_addr_t addr
)
815 struct omap_dma_s
*s
= (struct omap_dma_s
*) opaque
;
816 int i
, reg
, ch
, offset
= addr
- s
->base
;
820 case 0x000 ... 0x2fe:
822 ch
= (offset
>> 6) & 0x0f;
823 if (omap_dma_ch_reg_read(s
, ch
, reg
, &ret
))
827 case 0x300: /* SYS_DMA_LCD_CTRL */
828 i
= s
->lcd_ch
.condition
;
829 s
->lcd_ch
.condition
= 0;
830 qemu_irq_lower(s
->lcd_ch
.irq
);
831 return ((s
->lcd_ch
.src
== imif
) << 6) | (i
<< 3) |
832 (s
->lcd_ch
.interrupts
<< 1) | s
->lcd_ch
.dual
;
834 case 0x302: /* SYS_DMA_LCD_TOP_F1_L */
835 return s
->lcd_ch
.src_f1_top
& 0xffff;
837 case 0x304: /* SYS_DMA_LCD_TOP_F1_U */
838 return s
->lcd_ch
.src_f1_top
>> 16;
840 case 0x306: /* SYS_DMA_LCD_BOT_F1_L */
841 return s
->lcd_ch
.src_f1_bottom
& 0xffff;
843 case 0x308: /* SYS_DMA_LCD_BOT_F1_U */
844 return s
->lcd_ch
.src_f1_bottom
>> 16;
846 case 0x30a: /* SYS_DMA_LCD_TOP_F2_L */
847 return s
->lcd_ch
.src_f2_top
& 0xffff;
849 case 0x30c: /* SYS_DMA_LCD_TOP_F2_U */
850 return s
->lcd_ch
.src_f2_top
>> 16;
852 case 0x30e: /* SYS_DMA_LCD_BOT_F2_L */
853 return s
->lcd_ch
.src_f2_bottom
& 0xffff;
855 case 0x310: /* SYS_DMA_LCD_BOT_F2_U */
856 return s
->lcd_ch
.src_f2_bottom
>> 16;
858 case 0x400: /* SYS_DMA_GCR */
866 static void omap_dma_write(void *opaque
, target_phys_addr_t addr
,
869 struct omap_dma_s
*s
= (struct omap_dma_s
*) opaque
;
870 int reg
, ch
, offset
= addr
- s
->base
;
873 case 0x000 ... 0x2fe:
875 ch
= (offset
>> 6) & 0x0f;
876 if (omap_dma_ch_reg_write(s
, ch
, reg
, value
))
880 case 0x300: /* SYS_DMA_LCD_CTRL */
881 s
->lcd_ch
.src
= (value
& 0x40) ? imif
: emiff
;
882 s
->lcd_ch
.condition
= 0;
883 /* Assume no bus errors and thus no BUS_ERROR irq bits. */
884 s
->lcd_ch
.interrupts
= (value
>> 1) & 1;
885 s
->lcd_ch
.dual
= value
& 1;
888 case 0x302: /* SYS_DMA_LCD_TOP_F1_L */
889 s
->lcd_ch
.src_f1_top
&= 0xffff0000;
890 s
->lcd_ch
.src_f1_top
|= 0x0000ffff & value
;
893 case 0x304: /* SYS_DMA_LCD_TOP_F1_U */
894 s
->lcd_ch
.src_f1_top
&= 0x0000ffff;
895 s
->lcd_ch
.src_f1_top
|= value
<< 16;
898 case 0x306: /* SYS_DMA_LCD_BOT_F1_L */
899 s
->lcd_ch
.src_f1_bottom
&= 0xffff0000;
900 s
->lcd_ch
.src_f1_bottom
|= 0x0000ffff & value
;
903 case 0x308: /* SYS_DMA_LCD_BOT_F1_U */
904 s
->lcd_ch
.src_f1_bottom
&= 0x0000ffff;
905 s
->lcd_ch
.src_f1_bottom
|= value
<< 16;
908 case 0x30a: /* SYS_DMA_LCD_TOP_F2_L */
909 s
->lcd_ch
.src_f2_top
&= 0xffff0000;
910 s
->lcd_ch
.src_f2_top
|= 0x0000ffff & value
;
913 case 0x30c: /* SYS_DMA_LCD_TOP_F2_U */
914 s
->lcd_ch
.src_f2_top
&= 0x0000ffff;
915 s
->lcd_ch
.src_f2_top
|= value
<< 16;
918 case 0x30e: /* SYS_DMA_LCD_BOT_F2_L */
919 s
->lcd_ch
.src_f2_bottom
&= 0xffff0000;
920 s
->lcd_ch
.src_f2_bottom
|= 0x0000ffff & value
;
923 case 0x310: /* SYS_DMA_LCD_BOT_F2_U */
924 s
->lcd_ch
.src_f2_bottom
&= 0x0000ffff;
925 s
->lcd_ch
.src_f2_bottom
|= value
<< 16;
928 case 0x400: /* SYS_DMA_GCR */
929 s
->gcr
= value
& 0x000c;
937 static CPUReadMemoryFunc
*omap_dma_readfn
[] = {
938 omap_badwidth_read16
,
940 omap_badwidth_read16
,
943 static CPUWriteMemoryFunc
*omap_dma_writefn
[] = {
944 omap_badwidth_write16
,
946 omap_badwidth_write16
,
949 static void omap_dma_request(void *opaque
, int drq
, int req
)
951 struct omap_dma_s
*s
= (struct omap_dma_s
*) opaque
;
952 /* The request pins are level triggered. */
954 if (~s
->drq
& (1 << drq
)) {
956 omap_dma_request_run(s
, 0, drq
);
959 s
->drq
&= ~(1 << drq
);
962 static void omap_dma_clk_update(void *opaque
, int line
, int on
)
964 struct omap_dma_s
*s
= (struct omap_dma_s
*) opaque
;
967 s
->delay
= ticks_per_sec
>> 5;
969 qemu_mod_timer(s
->tm
, qemu_get_clock(vm_clock
) + s
->delay
);
972 qemu_del_timer(s
->tm
);
976 static void omap_dma_reset(struct omap_dma_s
*s
)
980 qemu_del_timer(s
->tm
);
984 s
->lcd_ch
.src
= emiff
;
985 s
->lcd_ch
.condition
= 0;
986 s
->lcd_ch
.interrupts
= 0;
988 memset(s
->ch
, 0, sizeof(s
->ch
));
989 for (i
= 0; i
< s
->chans
; i
++)
990 s
->ch
[i
].interrupts
= 0x0003;
993 struct omap_dma_s
*omap_dma_init(target_phys_addr_t base
,
994 qemu_irq pic
[], struct omap_mpu_state_s
*mpu
, omap_clk clk
)
997 struct omap_dma_s
*s
= (struct omap_dma_s
*)
998 qemu_mallocz(sizeof(struct omap_dma_s
));
1005 s
->lcd_ch
.irq
= pic
[OMAP_INT_DMA_LCD
];
1006 s
->lcd_ch
.mpu
= mpu
;
1007 s
->tm
= qemu_new_timer(vm_clock
, (QEMUTimerCB
*) omap_dma_channel_run
, s
);
1008 omap_clk_adduser(s
->clk
, qemu_allocate_irqs(omap_dma_clk_update
, s
, 1)[0]);
1009 mpu
->drq
= qemu_allocate_irqs(omap_dma_request
, s
, 32);
1011 omap_dma_clk_update(s
, 0, 1);
1013 iomemtype
= cpu_register_io_memory(0, omap_dma_readfn
,
1014 omap_dma_writefn
, s
);
1015 cpu_register_physical_memory(s
->base
, 0x800, iomemtype
);
1021 int omap_validate_emiff_addr(struct omap_mpu_state_s
*s
,
1022 target_phys_addr_t addr
)
1024 return addr
>= OMAP_EMIFF_BASE
&& addr
< OMAP_EMIFF_BASE
+ s
->sdram_size
;
1027 int omap_validate_emifs_addr(struct omap_mpu_state_s
*s
,
1028 target_phys_addr_t addr
)
1030 return addr
>= OMAP_EMIFS_BASE
&& addr
< OMAP_EMIFF_BASE
;
1033 int omap_validate_imif_addr(struct omap_mpu_state_s
*s
,
1034 target_phys_addr_t addr
)
1036 return addr
>= OMAP_IMIF_BASE
&& addr
< OMAP_IMIF_BASE
+ s
->sram_size
;
1039 int omap_validate_tipb_addr(struct omap_mpu_state_s
*s
,
1040 target_phys_addr_t addr
)
1042 return addr
>= 0xfffb0000 && addr
< 0xffff0000;
1045 int omap_validate_local_addr(struct omap_mpu_state_s
*s
,
1046 target_phys_addr_t addr
)
1048 return addr
>= OMAP_LOCALBUS_BASE
&& addr
< OMAP_LOCALBUS_BASE
+ 0x1000000;
1051 int omap_validate_tipb_mpui_addr(struct omap_mpu_state_s
*s
,
1052 target_phys_addr_t addr
)
1054 return addr
>= 0xe1010000 && addr
< 0xe1020004;
1058 struct omap_mpu_timer_s
{
1061 target_phys_addr_t base
;
1075 static inline uint32_t omap_timer_read(struct omap_mpu_timer_s
*timer
)
1077 uint64_t distance
= qemu_get_clock(vm_clock
) - timer
->time
;
1079 if (timer
->st
&& timer
->enable
&& timer
->rate
)
1080 return timer
->val
- muldiv64(distance
>> (timer
->ptv
+ 1),
1081 timer
->rate
, ticks_per_sec
);
1086 static inline void omap_timer_sync(struct omap_mpu_timer_s
*timer
)
1088 timer
->val
= omap_timer_read(timer
);
1089 timer
->time
= qemu_get_clock(vm_clock
);
1092 static inline void omap_timer_update(struct omap_mpu_timer_s
*timer
)
1096 if (timer
->enable
&& timer
->st
&& timer
->rate
) {
1097 timer
->val
= timer
->reset_val
; /* Should skip this on clk enable */
1098 expires
= timer
->time
+ muldiv64(timer
->val
<< (timer
->ptv
+ 1),
1099 ticks_per_sec
, timer
->rate
);
1100 qemu_mod_timer(timer
->timer
, expires
);
1102 qemu_del_timer(timer
->timer
);
1105 static void omap_timer_tick(void *opaque
)
1107 struct omap_mpu_timer_s
*timer
= (struct omap_mpu_timer_s
*) opaque
;
1108 omap_timer_sync(timer
);
1116 qemu_irq_raise(timer
->irq
);
1117 omap_timer_update(timer
);
1120 static void omap_timer_clk_update(void *opaque
, int line
, int on
)
1122 struct omap_mpu_timer_s
*timer
= (struct omap_mpu_timer_s
*) opaque
;
1124 omap_timer_sync(timer
);
1125 timer
->rate
= on
? omap_clk_getrate(timer
->clk
) : 0;
1126 omap_timer_update(timer
);
1129 static void omap_timer_clk_setup(struct omap_mpu_timer_s
*timer
)
1131 omap_clk_adduser(timer
->clk
,
1132 qemu_allocate_irqs(omap_timer_clk_update
, timer
, 1)[0]);
1133 timer
->rate
= omap_clk_getrate(timer
->clk
);
1136 static uint32_t omap_mpu_timer_read(void *opaque
, target_phys_addr_t addr
)
1138 struct omap_mpu_timer_s
*s
= (struct omap_mpu_timer_s
*) opaque
;
1139 int offset
= addr
- s
->base
;
1142 case 0x00: /* CNTL_TIMER */
1143 return (s
->enable
<< 5) | (s
->ptv
<< 2) | (s
->ar
<< 1) | s
->st
;
1145 case 0x04: /* LOAD_TIM */
1148 case 0x08: /* READ_TIM */
1149 return omap_timer_read(s
);
1156 static void omap_mpu_timer_write(void *opaque
, target_phys_addr_t addr
,
1159 struct omap_mpu_timer_s
*s
= (struct omap_mpu_timer_s
*) opaque
;
1160 int offset
= addr
- s
->base
;
1163 case 0x00: /* CNTL_TIMER */
1165 s
->enable
= (value
>> 5) & 1;
1166 s
->ptv
= (value
>> 2) & 7;
1167 s
->ar
= (value
>> 1) & 1;
1169 omap_timer_update(s
);
1172 case 0x04: /* LOAD_TIM */
1173 s
->reset_val
= value
;
1176 case 0x08: /* READ_TIM */
1185 static CPUReadMemoryFunc
*omap_mpu_timer_readfn
[] = {
1186 omap_badwidth_read32
,
1187 omap_badwidth_read32
,
1188 omap_mpu_timer_read
,
1191 static CPUWriteMemoryFunc
*omap_mpu_timer_writefn
[] = {
1192 omap_badwidth_write32
,
1193 omap_badwidth_write32
,
1194 omap_mpu_timer_write
,
1197 static void omap_mpu_timer_reset(struct omap_mpu_timer_s
*s
)
1199 qemu_del_timer(s
->timer
);
1201 s
->reset_val
= 31337;
1209 struct omap_mpu_timer_s
*omap_mpu_timer_init(target_phys_addr_t base
,
1210 qemu_irq irq
, omap_clk clk
)
1213 struct omap_mpu_timer_s
*s
= (struct omap_mpu_timer_s
*)
1214 qemu_mallocz(sizeof(struct omap_mpu_timer_s
));
1219 s
->timer
= qemu_new_timer(vm_clock
, omap_timer_tick
, s
);
1220 omap_mpu_timer_reset(s
);
1221 omap_timer_clk_setup(s
);
1223 iomemtype
= cpu_register_io_memory(0, omap_mpu_timer_readfn
,
1224 omap_mpu_timer_writefn
, s
);
1225 cpu_register_physical_memory(s
->base
, 0x100, iomemtype
);
1230 /* Watchdog timer */
1231 struct omap_watchdog_timer_s
{
1232 struct omap_mpu_timer_s timer
;
1239 static uint32_t omap_wd_timer_read(void *opaque
, target_phys_addr_t addr
)
1241 struct omap_watchdog_timer_s
*s
= (struct omap_watchdog_timer_s
*) opaque
;
1242 int offset
= addr
- s
->timer
.base
;
1245 case 0x00: /* CNTL_TIMER */
1246 return (s
->timer
.ptv
<< 9) | (s
->timer
.ar
<< 8) |
1247 (s
->timer
.st
<< 7) | (s
->free
<< 1);
1249 case 0x04: /* READ_TIMER */
1250 return omap_timer_read(&s
->timer
);
1252 case 0x08: /* TIMER_MODE */
1253 return s
->mode
<< 15;
1260 static void omap_wd_timer_write(void *opaque
, target_phys_addr_t addr
,
1263 struct omap_watchdog_timer_s
*s
= (struct omap_watchdog_timer_s
*) opaque
;
1264 int offset
= addr
- s
->timer
.base
;
1267 case 0x00: /* CNTL_TIMER */
1268 omap_timer_sync(&s
->timer
);
1269 s
->timer
.ptv
= (value
>> 9) & 7;
1270 s
->timer
.ar
= (value
>> 8) & 1;
1271 s
->timer
.st
= (value
>> 7) & 1;
1272 s
->free
= (value
>> 1) & 1;
1273 omap_timer_update(&s
->timer
);
1276 case 0x04: /* LOAD_TIMER */
1277 s
->timer
.reset_val
= value
& 0xffff;
1280 case 0x08: /* TIMER_MODE */
1281 if (!s
->mode
&& ((value
>> 15) & 1))
1282 omap_clk_get(s
->timer
.clk
);
1283 s
->mode
|= (value
>> 15) & 1;
1284 if (s
->last_wr
== 0xf5) {
1285 if ((value
& 0xff) == 0xa0) {
1287 omap_clk_put(s
->timer
.clk
);
1289 /* XXX: on T|E hardware somehow this has no effect,
1290 * on Zire 71 it works as specified. */
1292 qemu_system_reset_request();
1295 s
->last_wr
= value
& 0xff;
1303 static CPUReadMemoryFunc
*omap_wd_timer_readfn
[] = {
1304 omap_badwidth_read16
,
1306 omap_badwidth_read16
,
1309 static CPUWriteMemoryFunc
*omap_wd_timer_writefn
[] = {
1310 omap_badwidth_write16
,
1311 omap_wd_timer_write
,
1312 omap_badwidth_write16
,
1315 static void omap_wd_timer_reset(struct omap_watchdog_timer_s
*s
)
1317 qemu_del_timer(s
->timer
.timer
);
1319 omap_clk_get(s
->timer
.clk
);
1323 s
->timer
.enable
= 1;
1324 s
->timer
.it_ena
= 1;
1325 s
->timer
.reset_val
= 0xffff;
1330 omap_timer_update(&s
->timer
);
1333 struct omap_watchdog_timer_s
*omap_wd_timer_init(target_phys_addr_t base
,
1334 qemu_irq irq
, omap_clk clk
)
1337 struct omap_watchdog_timer_s
*s
= (struct omap_watchdog_timer_s
*)
1338 qemu_mallocz(sizeof(struct omap_watchdog_timer_s
));
1342 s
->timer
.base
= base
;
1343 s
->timer
.timer
= qemu_new_timer(vm_clock
, omap_timer_tick
, &s
->timer
);
1344 omap_wd_timer_reset(s
);
1345 omap_timer_clk_setup(&s
->timer
);
1347 iomemtype
= cpu_register_io_memory(0, omap_wd_timer_readfn
,
1348 omap_wd_timer_writefn
, s
);
1349 cpu_register_physical_memory(s
->timer
.base
, 0x100, iomemtype
);
1355 struct omap_32khz_timer_s
{
1356 struct omap_mpu_timer_s timer
;
1359 static uint32_t omap_os_timer_read(void *opaque
, target_phys_addr_t addr
)
1361 struct omap_32khz_timer_s
*s
= (struct omap_32khz_timer_s
*) opaque
;
1362 int offset
= addr
- s
->timer
.base
;
1365 case 0x00: /* TVR */
1366 return s
->timer
.reset_val
;
1368 case 0x04: /* TCR */
1369 return omap_timer_read(&s
->timer
);
1372 return (s
->timer
.ar
<< 3) | (s
->timer
.it_ena
<< 2) | s
->timer
.st
;
1381 static void omap_os_timer_write(void *opaque
, target_phys_addr_t addr
,
1384 struct omap_32khz_timer_s
*s
= (struct omap_32khz_timer_s
*) opaque
;
1385 int offset
= addr
- s
->timer
.base
;
1388 case 0x00: /* TVR */
1389 s
->timer
.reset_val
= value
& 0x00ffffff;
1392 case 0x04: /* TCR */
1397 s
->timer
.ar
= (value
>> 3) & 1;
1398 s
->timer
.it_ena
= (value
>> 2) & 1;
1399 if (s
->timer
.st
!= (value
& 1) || (value
& 2)) {
1400 omap_timer_sync(&s
->timer
);
1401 s
->timer
.enable
= value
& 1;
1402 s
->timer
.st
= value
& 1;
1403 omap_timer_update(&s
->timer
);
1412 static CPUReadMemoryFunc
*omap_os_timer_readfn
[] = {
1413 omap_badwidth_read32
,
1414 omap_badwidth_read32
,
1418 static CPUWriteMemoryFunc
*omap_os_timer_writefn
[] = {
1419 omap_badwidth_write32
,
1420 omap_badwidth_write32
,
1421 omap_os_timer_write
,
1424 static void omap_os_timer_reset(struct omap_32khz_timer_s
*s
)
1426 qemu_del_timer(s
->timer
.timer
);
1427 s
->timer
.enable
= 0;
1428 s
->timer
.it_ena
= 0;
1429 s
->timer
.reset_val
= 0x00ffffff;
1436 struct omap_32khz_timer_s
*omap_os_timer_init(target_phys_addr_t base
,
1437 qemu_irq irq
, omap_clk clk
)
1440 struct omap_32khz_timer_s
*s
= (struct omap_32khz_timer_s
*)
1441 qemu_mallocz(sizeof(struct omap_32khz_timer_s
));
1445 s
->timer
.base
= base
;
1446 s
->timer
.timer
= qemu_new_timer(vm_clock
, omap_timer_tick
, &s
->timer
);
1447 omap_os_timer_reset(s
);
1448 omap_timer_clk_setup(&s
->timer
);
1450 iomemtype
= cpu_register_io_memory(0, omap_os_timer_readfn
,
1451 omap_os_timer_writefn
, s
);
1452 cpu_register_physical_memory(s
->timer
.base
, 0x800, iomemtype
);
1457 /* Ultra Low-Power Device Module */
1458 static uint32_t omap_ulpd_pm_read(void *opaque
, target_phys_addr_t addr
)
1460 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
1461 int offset
= addr
- s
->ulpd_pm_base
;
1465 case 0x14: /* IT_STATUS */
1466 ret
= s
->ulpd_pm_regs
[offset
>> 2];
1467 s
->ulpd_pm_regs
[offset
>> 2] = 0;
1468 qemu_irq_lower(s
->irq
[1][OMAP_INT_GAUGE_32K
]);
1471 case 0x18: /* Reserved */
1472 case 0x1c: /* Reserved */
1473 case 0x20: /* Reserved */
1474 case 0x28: /* Reserved */
1475 case 0x2c: /* Reserved */
1477 case 0x00: /* COUNTER_32_LSB */
1478 case 0x04: /* COUNTER_32_MSB */
1479 case 0x08: /* COUNTER_HIGH_FREQ_LSB */
1480 case 0x0c: /* COUNTER_HIGH_FREQ_MSB */
1481 case 0x10: /* GAUGING_CTRL */
1482 case 0x24: /* SETUP_ANALOG_CELL3_ULPD1 */
1483 case 0x30: /* CLOCK_CTRL */
1484 case 0x34: /* SOFT_REQ */
1485 case 0x38: /* COUNTER_32_FIQ */
1486 case 0x3c: /* DPLL_CTRL */
1487 case 0x40: /* STATUS_REQ */
1488 /* XXX: check clk::usecount state for every clock */
1489 case 0x48: /* LOCL_TIME */
1490 case 0x4c: /* APLL_CTRL */
1491 case 0x50: /* POWER_CTRL */
1492 return s
->ulpd_pm_regs
[offset
>> 2];
1499 static inline void omap_ulpd_clk_update(struct omap_mpu_state_s
*s
,
1500 uint16_t diff
, uint16_t value
)
1502 if (diff
& (1 << 4)) /* USB_MCLK_EN */
1503 omap_clk_onoff(omap_findclk(s
, "usb_clk0"), (value
>> 4) & 1);
1504 if (diff
& (1 << 5)) /* DIS_USB_PVCI_CLK */
1505 omap_clk_onoff(omap_findclk(s
, "usb_w2fc_ck"), (~value
>> 5) & 1);
1508 static inline void omap_ulpd_req_update(struct omap_mpu_state_s
*s
,
1509 uint16_t diff
, uint16_t value
)
1511 if (diff
& (1 << 0)) /* SOFT_DPLL_REQ */
1512 omap_clk_canidle(omap_findclk(s
, "dpll4"), (~value
>> 0) & 1);
1513 if (diff
& (1 << 1)) /* SOFT_COM_REQ */
1514 omap_clk_canidle(omap_findclk(s
, "com_mclk_out"), (~value
>> 1) & 1);
1515 if (diff
& (1 << 2)) /* SOFT_SDW_REQ */
1516 omap_clk_canidle(omap_findclk(s
, "bt_mclk_out"), (~value
>> 2) & 1);
1517 if (diff
& (1 << 3)) /* SOFT_USB_REQ */
1518 omap_clk_canidle(omap_findclk(s
, "usb_clk0"), (~value
>> 3) & 1);
1521 static void omap_ulpd_pm_write(void *opaque
, target_phys_addr_t addr
,
1524 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
1525 int offset
= addr
- s
->ulpd_pm_base
;
1528 static const int bypass_div
[4] = { 1, 2, 4, 4 };
1532 case 0x00: /* COUNTER_32_LSB */
1533 case 0x04: /* COUNTER_32_MSB */
1534 case 0x08: /* COUNTER_HIGH_FREQ_LSB */
1535 case 0x0c: /* COUNTER_HIGH_FREQ_MSB */
1536 case 0x14: /* IT_STATUS */
1537 case 0x40: /* STATUS_REQ */
1541 case 0x10: /* GAUGING_CTRL */
1542 /* Bits 0 and 1 seem to be confused in the OMAP 310 TRM */
1543 if ((s
->ulpd_pm_regs
[offset
>> 2] ^ value
) & 1) {
1544 now
= qemu_get_clock(vm_clock
);
1547 s
->ulpd_gauge_start
= now
;
1549 now
-= s
->ulpd_gauge_start
;
1552 ticks
= muldiv64(now
, 32768, ticks_per_sec
);
1553 s
->ulpd_pm_regs
[0x00 >> 2] = (ticks
>> 0) & 0xffff;
1554 s
->ulpd_pm_regs
[0x04 >> 2] = (ticks
>> 16) & 0xffff;
1555 if (ticks
>> 32) /* OVERFLOW_32K */
1556 s
->ulpd_pm_regs
[0x14 >> 2] |= 1 << 2;
1558 /* High frequency ticks */
1559 ticks
= muldiv64(now
, 12000000, ticks_per_sec
);
1560 s
->ulpd_pm_regs
[0x08 >> 2] = (ticks
>> 0) & 0xffff;
1561 s
->ulpd_pm_regs
[0x0c >> 2] = (ticks
>> 16) & 0xffff;
1562 if (ticks
>> 32) /* OVERFLOW_HI_FREQ */
1563 s
->ulpd_pm_regs
[0x14 >> 2] |= 1 << 1;
1565 s
->ulpd_pm_regs
[0x14 >> 2] |= 1 << 0; /* IT_GAUGING */
1566 qemu_irq_raise(s
->irq
[1][OMAP_INT_GAUGE_32K
]);
1569 s
->ulpd_pm_regs
[offset
>> 2] = value
;
1572 case 0x18: /* Reserved */
1573 case 0x1c: /* Reserved */
1574 case 0x20: /* Reserved */
1575 case 0x28: /* Reserved */
1576 case 0x2c: /* Reserved */
1578 case 0x24: /* SETUP_ANALOG_CELL3_ULPD1 */
1579 case 0x38: /* COUNTER_32_FIQ */
1580 case 0x48: /* LOCL_TIME */
1581 case 0x50: /* POWER_CTRL */
1582 s
->ulpd_pm_regs
[offset
>> 2] = value
;
1585 case 0x30: /* CLOCK_CTRL */
1586 diff
= s
->ulpd_pm_regs
[offset
>> 2] ^ value
;
1587 s
->ulpd_pm_regs
[offset
>> 2] = value
& 0x3f;
1588 omap_ulpd_clk_update(s
, diff
, value
);
1591 case 0x34: /* SOFT_REQ */
1592 diff
= s
->ulpd_pm_regs
[offset
>> 2] ^ value
;
1593 s
->ulpd_pm_regs
[offset
>> 2] = value
& 0x1f;
1594 omap_ulpd_req_update(s
, diff
, value
);
1597 case 0x3c: /* DPLL_CTRL */
1598 /* XXX: OMAP310 TRM claims bit 3 is PLL_ENABLE, and bit 4 is
1599 * omitted altogether, probably a typo. */
1600 /* This register has identical semantics with DPLL(1:3) control
1601 * registers, see omap_dpll_write() */
1602 diff
= s
->ulpd_pm_regs
[offset
>> 2] & value
;
1603 s
->ulpd_pm_regs
[offset
>> 2] = value
& 0x2fff;
1604 if (diff
& (0x3ff << 2)) {
1605 if (value
& (1 << 4)) { /* PLL_ENABLE */
1606 div
= ((value
>> 5) & 3) + 1; /* PLL_DIV */
1607 mult
= MIN((value
>> 7) & 0x1f, 1); /* PLL_MULT */
1609 div
= bypass_div
[((value
>> 2) & 3)]; /* BYPASS_DIV */
1612 omap_clk_setrate(omap_findclk(s
, "dpll4"), div
, mult
);
1615 /* Enter the desired mode. */
1616 s
->ulpd_pm_regs
[offset
>> 2] =
1617 (s
->ulpd_pm_regs
[offset
>> 2] & 0xfffe) |
1618 ((s
->ulpd_pm_regs
[offset
>> 2] >> 4) & 1);
1620 /* Act as if the lock is restored. */
1621 s
->ulpd_pm_regs
[offset
>> 2] |= 2;
1624 case 0x4c: /* APLL_CTRL */
1625 diff
= s
->ulpd_pm_regs
[offset
>> 2] & value
;
1626 s
->ulpd_pm_regs
[offset
>> 2] = value
& 0xf;
1627 if (diff
& (1 << 0)) /* APLL_NDPLL_SWITCH */
1628 omap_clk_reparent(omap_findclk(s
, "ck_48m"), omap_findclk(s
,
1629 (value
& (1 << 0)) ? "apll" : "dpll4"));
1637 static CPUReadMemoryFunc
*omap_ulpd_pm_readfn
[] = {
1638 omap_badwidth_read16
,
1640 omap_badwidth_read16
,
1643 static CPUWriteMemoryFunc
*omap_ulpd_pm_writefn
[] = {
1644 omap_badwidth_write16
,
1646 omap_badwidth_write16
,
1649 static void omap_ulpd_pm_reset(struct omap_mpu_state_s
*mpu
)
1651 mpu
->ulpd_pm_regs
[0x00 >> 2] = 0x0001;
1652 mpu
->ulpd_pm_regs
[0x04 >> 2] = 0x0000;
1653 mpu
->ulpd_pm_regs
[0x08 >> 2] = 0x0001;
1654 mpu
->ulpd_pm_regs
[0x0c >> 2] = 0x0000;
1655 mpu
->ulpd_pm_regs
[0x10 >> 2] = 0x0000;
1656 mpu
->ulpd_pm_regs
[0x18 >> 2] = 0x01;
1657 mpu
->ulpd_pm_regs
[0x1c >> 2] = 0x01;
1658 mpu
->ulpd_pm_regs
[0x20 >> 2] = 0x01;
1659 mpu
->ulpd_pm_regs
[0x24 >> 2] = 0x03ff;
1660 mpu
->ulpd_pm_regs
[0x28 >> 2] = 0x01;
1661 mpu
->ulpd_pm_regs
[0x2c >> 2] = 0x01;
1662 omap_ulpd_clk_update(mpu
, mpu
->ulpd_pm_regs
[0x30 >> 2], 0x0000);
1663 mpu
->ulpd_pm_regs
[0x30 >> 2] = 0x0000;
1664 omap_ulpd_req_update(mpu
, mpu
->ulpd_pm_regs
[0x34 >> 2], 0x0000);
1665 mpu
->ulpd_pm_regs
[0x34 >> 2] = 0x0000;
1666 mpu
->ulpd_pm_regs
[0x38 >> 2] = 0x0001;
1667 mpu
->ulpd_pm_regs
[0x3c >> 2] = 0x2211;
1668 mpu
->ulpd_pm_regs
[0x40 >> 2] = 0x0000; /* FIXME: dump a real STATUS_REQ */
1669 mpu
->ulpd_pm_regs
[0x48 >> 2] = 0x960;
1670 mpu
->ulpd_pm_regs
[0x4c >> 2] = 0x08;
1671 mpu
->ulpd_pm_regs
[0x50 >> 2] = 0x08;
1672 omap_clk_setrate(omap_findclk(mpu
, "dpll4"), 1, 4);
1673 omap_clk_reparent(omap_findclk(mpu
, "ck_48m"), omap_findclk(mpu
, "dpll4"));
1676 static void omap_ulpd_pm_init(target_phys_addr_t base
,
1677 struct omap_mpu_state_s
*mpu
)
1679 int iomemtype
= cpu_register_io_memory(0, omap_ulpd_pm_readfn
,
1680 omap_ulpd_pm_writefn
, mpu
);
1682 mpu
->ulpd_pm_base
= base
;
1683 cpu_register_physical_memory(mpu
->ulpd_pm_base
, 0x800, iomemtype
);
1684 omap_ulpd_pm_reset(mpu
);
1687 /* OMAP Pin Configuration */
1688 static uint32_t omap_pin_cfg_read(void *opaque
, target_phys_addr_t addr
)
1690 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
1691 int offset
= addr
- s
->pin_cfg_base
;
1694 case 0x00: /* FUNC_MUX_CTRL_0 */
1695 case 0x04: /* FUNC_MUX_CTRL_1 */
1696 case 0x08: /* FUNC_MUX_CTRL_2 */
1697 return s
->func_mux_ctrl
[offset
>> 2];
1699 case 0x0c: /* COMP_MODE_CTRL_0 */
1700 return s
->comp_mode_ctrl
[0];
1702 case 0x10: /* FUNC_MUX_CTRL_3 */
1703 case 0x14: /* FUNC_MUX_CTRL_4 */
1704 case 0x18: /* FUNC_MUX_CTRL_5 */
1705 case 0x1c: /* FUNC_MUX_CTRL_6 */
1706 case 0x20: /* FUNC_MUX_CTRL_7 */
1707 case 0x24: /* FUNC_MUX_CTRL_8 */
1708 case 0x28: /* FUNC_MUX_CTRL_9 */
1709 case 0x2c: /* FUNC_MUX_CTRL_A */
1710 case 0x30: /* FUNC_MUX_CTRL_B */
1711 case 0x34: /* FUNC_MUX_CTRL_C */
1712 case 0x38: /* FUNC_MUX_CTRL_D */
1713 return s
->func_mux_ctrl
[(offset
>> 2) - 1];
1715 case 0x40: /* PULL_DWN_CTRL_0 */
1716 case 0x44: /* PULL_DWN_CTRL_1 */
1717 case 0x48: /* PULL_DWN_CTRL_2 */
1718 case 0x4c: /* PULL_DWN_CTRL_3 */
1719 return s
->pull_dwn_ctrl
[(offset
& 0xf) >> 2];
1721 case 0x50: /* GATE_INH_CTRL_0 */
1722 return s
->gate_inh_ctrl
[0];
1724 case 0x60: /* VOLTAGE_CTRL_0 */
1725 return s
->voltage_ctrl
[0];
1727 case 0x70: /* TEST_DBG_CTRL_0 */
1728 return s
->test_dbg_ctrl
[0];
1730 case 0x80: /* MOD_CONF_CTRL_0 */
1731 return s
->mod_conf_ctrl
[0];
1738 static inline void omap_pin_funcmux0_update(struct omap_mpu_state_s
*s
,
1739 uint32_t diff
, uint32_t value
)
1741 if (s
->compat1509
) {
1742 if (diff
& (1 << 9)) /* BLUETOOTH */
1743 omap_clk_onoff(omap_findclk(s
, "bt_mclk_out"),
1745 if (diff
& (1 << 7)) /* USB.CLKO */
1746 omap_clk_onoff(omap_findclk(s
, "usb.clko"),
1751 static inline void omap_pin_funcmux1_update(struct omap_mpu_state_s
*s
,
1752 uint32_t diff
, uint32_t value
)
1754 if (s
->compat1509
) {
1755 if (diff
& (1 << 31)) /* MCBSP3_CLK_HIZ_DI */
1756 omap_clk_onoff(omap_findclk(s
, "mcbsp3.clkx"),
1758 if (diff
& (1 << 1)) /* CLK32K */
1759 omap_clk_onoff(omap_findclk(s
, "clk32k_out"),
1764 static inline void omap_pin_modconf1_update(struct omap_mpu_state_s
*s
,
1765 uint32_t diff
, uint32_t value
)
1767 if (diff
& (1 << 31)) /* CONF_MOD_UART3_CLK_MODE_R */
1768 omap_clk_reparent(omap_findclk(s
, "uart3_ck"),
1769 omap_findclk(s
, ((value
>> 31) & 1) ?
1770 "ck_48m" : "armper_ck"));
1771 if (diff
& (1 << 30)) /* CONF_MOD_UART2_CLK_MODE_R */
1772 omap_clk_reparent(omap_findclk(s
, "uart2_ck"),
1773 omap_findclk(s
, ((value
>> 30) & 1) ?
1774 "ck_48m" : "armper_ck"));
1775 if (diff
& (1 << 29)) /* CONF_MOD_UART1_CLK_MODE_R */
1776 omap_clk_reparent(omap_findclk(s
, "uart1_ck"),
1777 omap_findclk(s
, ((value
>> 29) & 1) ?
1778 "ck_48m" : "armper_ck"));
1779 if (diff
& (1 << 23)) /* CONF_MOD_MMC_SD_CLK_REQ_R */
1780 omap_clk_reparent(omap_findclk(s
, "mmc_ck"),
1781 omap_findclk(s
, ((value
>> 23) & 1) ?
1782 "ck_48m" : "armper_ck"));
1783 if (diff
& (1 << 12)) /* CONF_MOD_COM_MCLK_12_48_S */
1784 omap_clk_reparent(omap_findclk(s
, "com_mclk_out"),
1785 omap_findclk(s
, ((value
>> 12) & 1) ?
1786 "ck_48m" : "armper_ck"));
1787 if (diff
& (1 << 9)) /* CONF_MOD_USB_HOST_HHC_UHO */
1788 omap_clk_onoff(omap_findclk(s
, "usb_hhc_ck"), (value
>> 9) & 1);
1791 static void omap_pin_cfg_write(void *opaque
, target_phys_addr_t addr
,
1794 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
1795 int offset
= addr
- s
->pin_cfg_base
;
1799 case 0x00: /* FUNC_MUX_CTRL_0 */
1800 diff
= s
->func_mux_ctrl
[offset
>> 2] ^ value
;
1801 s
->func_mux_ctrl
[offset
>> 2] = value
;
1802 omap_pin_funcmux0_update(s
, diff
, value
);
1805 case 0x04: /* FUNC_MUX_CTRL_1 */
1806 diff
= s
->func_mux_ctrl
[offset
>> 2] ^ value
;
1807 s
->func_mux_ctrl
[offset
>> 2] = value
;
1808 omap_pin_funcmux1_update(s
, diff
, value
);
1811 case 0x08: /* FUNC_MUX_CTRL_2 */
1812 s
->func_mux_ctrl
[offset
>> 2] = value
;
1815 case 0x0c: /* COMP_MODE_CTRL_0 */
1816 s
->comp_mode_ctrl
[0] = value
;
1817 s
->compat1509
= (value
!= 0x0000eaef);
1818 omap_pin_funcmux0_update(s
, ~0, s
->func_mux_ctrl
[0]);
1819 omap_pin_funcmux1_update(s
, ~0, s
->func_mux_ctrl
[1]);
1822 case 0x10: /* FUNC_MUX_CTRL_3 */
1823 case 0x14: /* FUNC_MUX_CTRL_4 */
1824 case 0x18: /* FUNC_MUX_CTRL_5 */
1825 case 0x1c: /* FUNC_MUX_CTRL_6 */
1826 case 0x20: /* FUNC_MUX_CTRL_7 */
1827 case 0x24: /* FUNC_MUX_CTRL_8 */
1828 case 0x28: /* FUNC_MUX_CTRL_9 */
1829 case 0x2c: /* FUNC_MUX_CTRL_A */
1830 case 0x30: /* FUNC_MUX_CTRL_B */
1831 case 0x34: /* FUNC_MUX_CTRL_C */
1832 case 0x38: /* FUNC_MUX_CTRL_D */
1833 s
->func_mux_ctrl
[(offset
>> 2) - 1] = value
;
1836 case 0x40: /* PULL_DWN_CTRL_0 */
1837 case 0x44: /* PULL_DWN_CTRL_1 */
1838 case 0x48: /* PULL_DWN_CTRL_2 */
1839 case 0x4c: /* PULL_DWN_CTRL_3 */
1840 s
->pull_dwn_ctrl
[(offset
& 0xf) >> 2] = value
;
1843 case 0x50: /* GATE_INH_CTRL_0 */
1844 s
->gate_inh_ctrl
[0] = value
;
1847 case 0x60: /* VOLTAGE_CTRL_0 */
1848 s
->voltage_ctrl
[0] = value
;
1851 case 0x70: /* TEST_DBG_CTRL_0 */
1852 s
->test_dbg_ctrl
[0] = value
;
1855 case 0x80: /* MOD_CONF_CTRL_0 */
1856 diff
= s
->mod_conf_ctrl
[0] ^ value
;
1857 s
->mod_conf_ctrl
[0] = value
;
1858 omap_pin_modconf1_update(s
, diff
, value
);
1866 static CPUReadMemoryFunc
*omap_pin_cfg_readfn
[] = {
1867 omap_badwidth_read32
,
1868 omap_badwidth_read32
,
1872 static CPUWriteMemoryFunc
*omap_pin_cfg_writefn
[] = {
1873 omap_badwidth_write32
,
1874 omap_badwidth_write32
,
1878 static void omap_pin_cfg_reset(struct omap_mpu_state_s
*mpu
)
1880 /* Start in Compatibility Mode. */
1881 mpu
->compat1509
= 1;
1882 omap_pin_funcmux0_update(mpu
, mpu
->func_mux_ctrl
[0], 0);
1883 omap_pin_funcmux1_update(mpu
, mpu
->func_mux_ctrl
[1], 0);
1884 omap_pin_modconf1_update(mpu
, mpu
->mod_conf_ctrl
[0], 0);
1885 memset(mpu
->func_mux_ctrl
, 0, sizeof(mpu
->func_mux_ctrl
));
1886 memset(mpu
->comp_mode_ctrl
, 0, sizeof(mpu
->comp_mode_ctrl
));
1887 memset(mpu
->pull_dwn_ctrl
, 0, sizeof(mpu
->pull_dwn_ctrl
));
1888 memset(mpu
->gate_inh_ctrl
, 0, sizeof(mpu
->gate_inh_ctrl
));
1889 memset(mpu
->voltage_ctrl
, 0, sizeof(mpu
->voltage_ctrl
));
1890 memset(mpu
->test_dbg_ctrl
, 0, sizeof(mpu
->test_dbg_ctrl
));
1891 memset(mpu
->mod_conf_ctrl
, 0, sizeof(mpu
->mod_conf_ctrl
));
1894 static void omap_pin_cfg_init(target_phys_addr_t base
,
1895 struct omap_mpu_state_s
*mpu
)
1897 int iomemtype
= cpu_register_io_memory(0, omap_pin_cfg_readfn
,
1898 omap_pin_cfg_writefn
, mpu
);
1900 mpu
->pin_cfg_base
= base
;
1901 cpu_register_physical_memory(mpu
->pin_cfg_base
, 0x800, iomemtype
);
1902 omap_pin_cfg_reset(mpu
);
1905 /* Device Identification, Die Identification */
1906 static uint32_t omap_id_read(void *opaque
, target_phys_addr_t addr
)
1908 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
1911 case 0xfffe1800: /* DIE_ID_LSB */
1913 case 0xfffe1804: /* DIE_ID_MSB */
1916 case 0xfffe2000: /* PRODUCT_ID_LSB */
1918 case 0xfffe2004: /* PRODUCT_ID_MSB */
1921 case 0xfffed400: /* JTAG_ID_LSB */
1922 switch (s
->mpu_model
) {
1930 case 0xfffed404: /* JTAG_ID_MSB */
1931 switch (s
->mpu_model
) {
1944 static void omap_id_write(void *opaque
, target_phys_addr_t addr
,
1950 static CPUReadMemoryFunc
*omap_id_readfn
[] = {
1951 omap_badwidth_read32
,
1952 omap_badwidth_read32
,
1956 static CPUWriteMemoryFunc
*omap_id_writefn
[] = {
1957 omap_badwidth_write32
,
1958 omap_badwidth_write32
,
1962 static void omap_id_init(struct omap_mpu_state_s
*mpu
)
1964 int iomemtype
= cpu_register_io_memory(0, omap_id_readfn
,
1965 omap_id_writefn
, mpu
);
1966 cpu_register_physical_memory(0xfffe1800, 0x800, iomemtype
);
1967 cpu_register_physical_memory(0xfffed400, 0x100, iomemtype
);
1968 if (!cpu_is_omap15xx(mpu
))
1969 cpu_register_physical_memory(0xfffe2000, 0x800, iomemtype
);
1972 /* MPUI Control (Dummy) */
1973 static uint32_t omap_mpui_read(void *opaque
, target_phys_addr_t addr
)
1975 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
1976 int offset
= addr
- s
->mpui_base
;
1979 case 0x00: /* CTRL */
1980 return s
->mpui_ctrl
;
1981 case 0x04: /* DEBUG_ADDR */
1983 case 0x08: /* DEBUG_DATA */
1985 case 0x0c: /* DEBUG_FLAG */
1987 case 0x10: /* STATUS */
1990 /* Not in OMAP310 */
1991 case 0x14: /* DSP_STATUS */
1992 case 0x18: /* DSP_BOOT_CONFIG */
1994 case 0x1c: /* DSP_MPUI_CONFIG */
2002 static void omap_mpui_write(void *opaque
, target_phys_addr_t addr
,
2005 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
2006 int offset
= addr
- s
->mpui_base
;
2009 case 0x00: /* CTRL */
2010 s
->mpui_ctrl
= value
& 0x007fffff;
2013 case 0x04: /* DEBUG_ADDR */
2014 case 0x08: /* DEBUG_DATA */
2015 case 0x0c: /* DEBUG_FLAG */
2016 case 0x10: /* STATUS */
2017 /* Not in OMAP310 */
2018 case 0x14: /* DSP_STATUS */
2020 case 0x18: /* DSP_BOOT_CONFIG */
2021 case 0x1c: /* DSP_MPUI_CONFIG */
2029 static CPUReadMemoryFunc
*omap_mpui_readfn
[] = {
2030 omap_badwidth_read32
,
2031 omap_badwidth_read32
,
2035 static CPUWriteMemoryFunc
*omap_mpui_writefn
[] = {
2036 omap_badwidth_write32
,
2037 omap_badwidth_write32
,
2041 static void omap_mpui_reset(struct omap_mpu_state_s
*s
)
2043 s
->mpui_ctrl
= 0x0003ff1b;
2046 static void omap_mpui_init(target_phys_addr_t base
,
2047 struct omap_mpu_state_s
*mpu
)
2049 int iomemtype
= cpu_register_io_memory(0, omap_mpui_readfn
,
2050 omap_mpui_writefn
, mpu
);
2052 mpu
->mpui_base
= base
;
2053 cpu_register_physical_memory(mpu
->mpui_base
, 0x100, iomemtype
);
2055 omap_mpui_reset(mpu
);
2059 struct omap_tipb_bridge_s
{
2060 target_phys_addr_t base
;
2067 uint16_t enh_control
;
2070 static uint32_t omap_tipb_bridge_read(void *opaque
, target_phys_addr_t addr
)
2072 struct omap_tipb_bridge_s
*s
= (struct omap_tipb_bridge_s
*) opaque
;
2073 int offset
= addr
- s
->base
;
2076 case 0x00: /* TIPB_CNTL */
2078 case 0x04: /* TIPB_BUS_ALLOC */
2080 case 0x08: /* MPU_TIPB_CNTL */
2082 case 0x0c: /* ENHANCED_TIPB_CNTL */
2083 return s
->enh_control
;
2084 case 0x10: /* ADDRESS_DBG */
2085 case 0x14: /* DATA_DEBUG_LOW */
2086 case 0x18: /* DATA_DEBUG_HIGH */
2088 case 0x1c: /* DEBUG_CNTR_SIG */
2096 static void omap_tipb_bridge_write(void *opaque
, target_phys_addr_t addr
,
2099 struct omap_tipb_bridge_s
*s
= (struct omap_tipb_bridge_s
*) opaque
;
2100 int offset
= addr
- s
->base
;
2103 case 0x00: /* TIPB_CNTL */
2104 s
->control
= value
& 0xffff;
2107 case 0x04: /* TIPB_BUS_ALLOC */
2108 s
->alloc
= value
& 0x003f;
2111 case 0x08: /* MPU_TIPB_CNTL */
2112 s
->buffer
= value
& 0x0003;
2115 case 0x0c: /* ENHANCED_TIPB_CNTL */
2116 s
->width_intr
= !(value
& 2);
2117 s
->enh_control
= value
& 0x000f;
2120 case 0x10: /* ADDRESS_DBG */
2121 case 0x14: /* DATA_DEBUG_LOW */
2122 case 0x18: /* DATA_DEBUG_HIGH */
2123 case 0x1c: /* DEBUG_CNTR_SIG */
2132 static CPUReadMemoryFunc
*omap_tipb_bridge_readfn
[] = {
2133 omap_badwidth_read16
,
2134 omap_tipb_bridge_read
,
2135 omap_tipb_bridge_read
,
2138 static CPUWriteMemoryFunc
*omap_tipb_bridge_writefn
[] = {
2139 omap_badwidth_write16
,
2140 omap_tipb_bridge_write
,
2141 omap_tipb_bridge_write
,
2144 static void omap_tipb_bridge_reset(struct omap_tipb_bridge_s
*s
)
2146 s
->control
= 0xffff;
2149 s
->enh_control
= 0x000f;
2152 struct omap_tipb_bridge_s
*omap_tipb_bridge_init(target_phys_addr_t base
,
2153 qemu_irq abort_irq
, omap_clk clk
)
2156 struct omap_tipb_bridge_s
*s
= (struct omap_tipb_bridge_s
*)
2157 qemu_mallocz(sizeof(struct omap_tipb_bridge_s
));
2159 s
->abort
= abort_irq
;
2161 omap_tipb_bridge_reset(s
);
2163 iomemtype
= cpu_register_io_memory(0, omap_tipb_bridge_readfn
,
2164 omap_tipb_bridge_writefn
, s
);
2165 cpu_register_physical_memory(s
->base
, 0x100, iomemtype
);
2170 /* Dummy Traffic Controller's Memory Interface */
2171 static uint32_t omap_tcmi_read(void *opaque
, target_phys_addr_t addr
)
2173 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
2174 int offset
= addr
- s
->tcmi_base
;
2178 case 0xfffecc00: /* IMIF_PRIO */
2179 case 0xfffecc04: /* EMIFS_PRIO */
2180 case 0xfffecc08: /* EMIFF_PRIO */
2181 case 0xfffecc0c: /* EMIFS_CONFIG */
2182 case 0xfffecc10: /* EMIFS_CS0_CONFIG */
2183 case 0xfffecc14: /* EMIFS_CS1_CONFIG */
2184 case 0xfffecc18: /* EMIFS_CS2_CONFIG */
2185 case 0xfffecc1c: /* EMIFS_CS3_CONFIG */
2186 case 0xfffecc24: /* EMIFF_MRS */
2187 case 0xfffecc28: /* TIMEOUT1 */
2188 case 0xfffecc2c: /* TIMEOUT2 */
2189 case 0xfffecc30: /* TIMEOUT3 */
2190 case 0xfffecc3c: /* EMIFF_SDRAM_CONFIG_2 */
2191 case 0xfffecc40: /* EMIFS_CFG_DYN_WAIT */
2192 return s
->tcmi_regs
[offset
>> 2];
2194 case 0xfffecc20: /* EMIFF_SDRAM_CONFIG */
2195 ret
= s
->tcmi_regs
[offset
>> 2];
2196 s
->tcmi_regs
[offset
>> 2] &= ~1; /* XXX: Clear SLRF on SDRAM access */
2197 /* XXX: We can try using the VGA_DIRTY flag for this */
2205 static void omap_tcmi_write(void *opaque
, target_phys_addr_t addr
,
2208 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
2209 int offset
= addr
- s
->tcmi_base
;
2212 case 0xfffecc00: /* IMIF_PRIO */
2213 case 0xfffecc04: /* EMIFS_PRIO */
2214 case 0xfffecc08: /* EMIFF_PRIO */
2215 case 0xfffecc10: /* EMIFS_CS0_CONFIG */
2216 case 0xfffecc14: /* EMIFS_CS1_CONFIG */
2217 case 0xfffecc18: /* EMIFS_CS2_CONFIG */
2218 case 0xfffecc1c: /* EMIFS_CS3_CONFIG */
2219 case 0xfffecc20: /* EMIFF_SDRAM_CONFIG */
2220 case 0xfffecc24: /* EMIFF_MRS */
2221 case 0xfffecc28: /* TIMEOUT1 */
2222 case 0xfffecc2c: /* TIMEOUT2 */
2223 case 0xfffecc30: /* TIMEOUT3 */
2224 case 0xfffecc3c: /* EMIFF_SDRAM_CONFIG_2 */
2225 case 0xfffecc40: /* EMIFS_CFG_DYN_WAIT */
2226 s
->tcmi_regs
[offset
>> 2] = value
;
2228 case 0xfffecc0c: /* EMIFS_CONFIG */
2229 s
->tcmi_regs
[offset
>> 2] = (value
& 0xf) | (1 << 4);
2237 static CPUReadMemoryFunc
*omap_tcmi_readfn
[] = {
2238 omap_badwidth_read32
,
2239 omap_badwidth_read32
,
2243 static CPUWriteMemoryFunc
*omap_tcmi_writefn
[] = {
2244 omap_badwidth_write32
,
2245 omap_badwidth_write32
,
2249 static void omap_tcmi_reset(struct omap_mpu_state_s
*mpu
)
2251 mpu
->tcmi_regs
[0x00 >> 2] = 0x00000000;
2252 mpu
->tcmi_regs
[0x04 >> 2] = 0x00000000;
2253 mpu
->tcmi_regs
[0x08 >> 2] = 0x00000000;
2254 mpu
->tcmi_regs
[0x0c >> 2] = 0x00000010;
2255 mpu
->tcmi_regs
[0x10 >> 2] = 0x0010fffb;
2256 mpu
->tcmi_regs
[0x14 >> 2] = 0x0010fffb;
2257 mpu
->tcmi_regs
[0x18 >> 2] = 0x0010fffb;
2258 mpu
->tcmi_regs
[0x1c >> 2] = 0x0010fffb;
2259 mpu
->tcmi_regs
[0x20 >> 2] = 0x00618800;
2260 mpu
->tcmi_regs
[0x24 >> 2] = 0x00000037;
2261 mpu
->tcmi_regs
[0x28 >> 2] = 0x00000000;
2262 mpu
->tcmi_regs
[0x2c >> 2] = 0x00000000;
2263 mpu
->tcmi_regs
[0x30 >> 2] = 0x00000000;
2264 mpu
->tcmi_regs
[0x3c >> 2] = 0x00000003;
2265 mpu
->tcmi_regs
[0x40 >> 2] = 0x00000000;
2268 static void omap_tcmi_init(target_phys_addr_t base
,
2269 struct omap_mpu_state_s
*mpu
)
2271 int iomemtype
= cpu_register_io_memory(0, omap_tcmi_readfn
,
2272 omap_tcmi_writefn
, mpu
);
2274 mpu
->tcmi_base
= base
;
2275 cpu_register_physical_memory(mpu
->tcmi_base
, 0x100, iomemtype
);
2276 omap_tcmi_reset(mpu
);
2279 /* Digital phase-locked loops control */
2280 static uint32_t omap_dpll_read(void *opaque
, target_phys_addr_t addr
)
2282 struct dpll_ctl_s
*s
= (struct dpll_ctl_s
*) opaque
;
2283 int offset
= addr
- s
->base
;
2285 if (offset
== 0x00) /* CTL_REG */
2292 static void omap_dpll_write(void *opaque
, target_phys_addr_t addr
,
2295 struct dpll_ctl_s
*s
= (struct dpll_ctl_s
*) opaque
;
2297 int offset
= addr
- s
->base
;
2298 static const int bypass_div
[4] = { 1, 2, 4, 4 };
2301 if (offset
== 0x00) { /* CTL_REG */
2302 /* See omap_ulpd_pm_write() too */
2303 diff
= s
->mode
& value
;
2304 s
->mode
= value
& 0x2fff;
2305 if (diff
& (0x3ff << 2)) {
2306 if (value
& (1 << 4)) { /* PLL_ENABLE */
2307 div
= ((value
>> 5) & 3) + 1; /* PLL_DIV */
2308 mult
= MIN((value
>> 7) & 0x1f, 1); /* PLL_MULT */
2310 div
= bypass_div
[((value
>> 2) & 3)]; /* BYPASS_DIV */
2313 omap_clk_setrate(s
->dpll
, div
, mult
);
2316 /* Enter the desired mode. */
2317 s
->mode
= (s
->mode
& 0xfffe) | ((s
->mode
>> 4) & 1);
2319 /* Act as if the lock is restored. */
2326 static CPUReadMemoryFunc
*omap_dpll_readfn
[] = {
2327 omap_badwidth_read16
,
2329 omap_badwidth_read16
,
2332 static CPUWriteMemoryFunc
*omap_dpll_writefn
[] = {
2333 omap_badwidth_write16
,
2335 omap_badwidth_write16
,
2338 static void omap_dpll_reset(struct dpll_ctl_s
*s
)
2341 omap_clk_setrate(s
->dpll
, 1, 1);
2344 static void omap_dpll_init(struct dpll_ctl_s
*s
, target_phys_addr_t base
,
2347 int iomemtype
= cpu_register_io_memory(0, omap_dpll_readfn
,
2348 omap_dpll_writefn
, s
);
2354 cpu_register_physical_memory(s
->base
, 0x100, iomemtype
);
2358 struct omap_uart_s
{
2359 SerialState
*serial
; /* TODO */
2362 static void omap_uart_reset(struct omap_uart_s
*s
)
2366 struct omap_uart_s
*omap_uart_init(target_phys_addr_t base
,
2367 qemu_irq irq
, omap_clk clk
, CharDriverState
*chr
)
2369 struct omap_uart_s
*s
= (struct omap_uart_s
*)
2370 qemu_mallocz(sizeof(struct omap_uart_s
));
2372 s
->serial
= serial_mm_init(base
, 2, irq
, chr
, 1);
2376 /* MPU Clock/Reset/Power Mode Control */
2377 static uint32_t omap_clkm_read(void *opaque
, target_phys_addr_t addr
)
2379 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
2380 int offset
= addr
- s
->clkm
.mpu_base
;
2383 case 0x00: /* ARM_CKCTL */
2384 return s
->clkm
.arm_ckctl
;
2386 case 0x04: /* ARM_IDLECT1 */
2387 return s
->clkm
.arm_idlect1
;
2389 case 0x08: /* ARM_IDLECT2 */
2390 return s
->clkm
.arm_idlect2
;
2392 case 0x0c: /* ARM_EWUPCT */
2393 return s
->clkm
.arm_ewupct
;
2395 case 0x10: /* ARM_RSTCT1 */
2396 return s
->clkm
.arm_rstct1
;
2398 case 0x14: /* ARM_RSTCT2 */
2399 return s
->clkm
.arm_rstct2
;
2401 case 0x18: /* ARM_SYSST */
2402 return (s
->clkm
.clocking_scheme
< 11) | s
->clkm
.cold_start
;
2404 case 0x1c: /* ARM_CKOUT1 */
2405 return s
->clkm
.arm_ckout1
;
2407 case 0x20: /* ARM_CKOUT2 */
2415 static inline void omap_clkm_ckctl_update(struct omap_mpu_state_s
*s
,
2416 uint16_t diff
, uint16_t value
)
2420 if (diff
& (1 << 14)) { /* ARM_INTHCK_SEL */
2421 if (value
& (1 << 14))
2424 clk
= omap_findclk(s
, "arminth_ck");
2425 omap_clk_reparent(clk
, omap_findclk(s
, "tc_ck"));
2428 if (diff
& (1 << 12)) { /* ARM_TIMXO */
2429 clk
= omap_findclk(s
, "armtim_ck");
2430 if (value
& (1 << 12))
2431 omap_clk_reparent(clk
, omap_findclk(s
, "clkin"));
2433 omap_clk_reparent(clk
, omap_findclk(s
, "ck_gen1"));
2436 if (diff
& (3 << 10)) { /* DSPMMUDIV */
2437 clk
= omap_findclk(s
, "dspmmu_ck");
2438 omap_clk_setrate(clk
, 1 << ((value
>> 10) & 3), 1);
2440 if (diff
& (3 << 8)) { /* TCDIV */
2441 clk
= omap_findclk(s
, "tc_ck");
2442 omap_clk_setrate(clk
, 1 << ((value
>> 8) & 3), 1);
2444 if (diff
& (3 << 6)) { /* DSPDIV */
2445 clk
= omap_findclk(s
, "dsp_ck");
2446 omap_clk_setrate(clk
, 1 << ((value
>> 6) & 3), 1);
2448 if (diff
& (3 << 4)) { /* ARMDIV */
2449 clk
= omap_findclk(s
, "arm_ck");
2450 omap_clk_setrate(clk
, 1 << ((value
>> 4) & 3), 1);
2452 if (diff
& (3 << 2)) { /* LCDDIV */
2453 clk
= omap_findclk(s
, "lcd_ck");
2454 omap_clk_setrate(clk
, 1 << ((value
>> 2) & 3), 1);
2456 if (diff
& (3 << 0)) { /* PERDIV */
2457 clk
= omap_findclk(s
, "armper_ck");
2458 omap_clk_setrate(clk
, 1 << ((value
>> 0) & 3), 1);
2462 static inline void omap_clkm_idlect1_update(struct omap_mpu_state_s
*s
,
2463 uint16_t diff
, uint16_t value
)
2467 if (value
& (1 << 11)) /* SETARM_IDLE */
2468 cpu_interrupt(s
->env
, CPU_INTERRUPT_HALT
);
2469 if (!(value
& (1 << 10))) /* WKUP_MODE */
2470 qemu_system_shutdown_request(); /* XXX: disable wakeup from IRQ */
2472 #define SET_CANIDLE(clock, bit) \
2473 if (diff & (1 << bit)) { \
2474 clk = omap_findclk(s, clock); \
2475 omap_clk_canidle(clk, (value >> bit) & 1); \
2477 SET_CANIDLE("mpuwd_ck", 0) /* IDLWDT_ARM */
2478 SET_CANIDLE("armxor_ck", 1) /* IDLXORP_ARM */
2479 SET_CANIDLE("mpuper_ck", 2) /* IDLPER_ARM */
2480 SET_CANIDLE("lcd_ck", 3) /* IDLLCD_ARM */
2481 SET_CANIDLE("lb_ck", 4) /* IDLLB_ARM */
2482 SET_CANIDLE("hsab_ck", 5) /* IDLHSAB_ARM */
2483 SET_CANIDLE("tipb_ck", 6) /* IDLIF_ARM */
2484 SET_CANIDLE("dma_ck", 6) /* IDLIF_ARM */
2485 SET_CANIDLE("tc_ck", 6) /* IDLIF_ARM */
2486 SET_CANIDLE("dpll1", 7) /* IDLDPLL_ARM */
2487 SET_CANIDLE("dpll2", 7) /* IDLDPLL_ARM */
2488 SET_CANIDLE("dpll3", 7) /* IDLDPLL_ARM */
2489 SET_CANIDLE("mpui_ck", 8) /* IDLAPI_ARM */
2490 SET_CANIDLE("armtim_ck", 9) /* IDLTIM_ARM */
2493 static inline void omap_clkm_idlect2_update(struct omap_mpu_state_s
*s
,
2494 uint16_t diff
, uint16_t value
)
2498 #define SET_ONOFF(clock, bit) \
2499 if (diff & (1 << bit)) { \
2500 clk = omap_findclk(s, clock); \
2501 omap_clk_onoff(clk, (value >> bit) & 1); \
2503 SET_ONOFF("mpuwd_ck", 0) /* EN_WDTCK */
2504 SET_ONOFF("armxor_ck", 1) /* EN_XORPCK */
2505 SET_ONOFF("mpuper_ck", 2) /* EN_PERCK */
2506 SET_ONOFF("lcd_ck", 3) /* EN_LCDCK */
2507 SET_ONOFF("lb_ck", 4) /* EN_LBCK */
2508 SET_ONOFF("hsab_ck", 5) /* EN_HSABCK */
2509 SET_ONOFF("mpui_ck", 6) /* EN_APICK */
2510 SET_ONOFF("armtim_ck", 7) /* EN_TIMCK */
2511 SET_CANIDLE("dma_ck", 8) /* DMACK_REQ */
2512 SET_ONOFF("arm_gpio_ck", 9) /* EN_GPIOCK */
2513 SET_ONOFF("lbfree_ck", 10) /* EN_LBFREECK */
2516 static inline void omap_clkm_ckout1_update(struct omap_mpu_state_s
*s
,
2517 uint16_t diff
, uint16_t value
)
2521 if (diff
& (3 << 4)) { /* TCLKOUT */
2522 clk
= omap_findclk(s
, "tclk_out");
2523 switch ((value
>> 4) & 3) {
2525 omap_clk_reparent(clk
, omap_findclk(s
, "ck_gen3"));
2526 omap_clk_onoff(clk
, 1);
2529 omap_clk_reparent(clk
, omap_findclk(s
, "tc_ck"));
2530 omap_clk_onoff(clk
, 1);
2533 omap_clk_onoff(clk
, 0);
2536 if (diff
& (3 << 2)) { /* DCLKOUT */
2537 clk
= omap_findclk(s
, "dclk_out");
2538 switch ((value
>> 2) & 3) {
2540 omap_clk_reparent(clk
, omap_findclk(s
, "dspmmu_ck"));
2543 omap_clk_reparent(clk
, omap_findclk(s
, "ck_gen2"));
2546 omap_clk_reparent(clk
, omap_findclk(s
, "dsp_ck"));
2549 omap_clk_reparent(clk
, omap_findclk(s
, "ck_ref14"));
2553 if (diff
& (3 << 0)) { /* ACLKOUT */
2554 clk
= omap_findclk(s
, "aclk_out");
2555 switch ((value
>> 0) & 3) {
2557 omap_clk_reparent(clk
, omap_findclk(s
, "ck_gen1"));
2558 omap_clk_onoff(clk
, 1);
2561 omap_clk_reparent(clk
, omap_findclk(s
, "arm_ck"));
2562 omap_clk_onoff(clk
, 1);
2565 omap_clk_reparent(clk
, omap_findclk(s
, "ck_ref14"));
2566 omap_clk_onoff(clk
, 1);
2569 omap_clk_onoff(clk
, 0);
2574 static void omap_clkm_write(void *opaque
, target_phys_addr_t addr
,
2577 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
2578 int offset
= addr
- s
->clkm
.mpu_base
;
2581 static const char *clkschemename
[8] = {
2582 "fully synchronous", "fully asynchronous", "synchronous scalable",
2583 "mix mode 1", "mix mode 2", "bypass mode", "mix mode 3", "mix mode 4",
2587 case 0x00: /* ARM_CKCTL */
2588 diff
= s
->clkm
.arm_ckctl
^ value
;
2589 s
->clkm
.arm_ckctl
= value
& 0x7fff;
2590 omap_clkm_ckctl_update(s
, diff
, value
);
2593 case 0x04: /* ARM_IDLECT1 */
2594 diff
= s
->clkm
.arm_idlect1
^ value
;
2595 s
->clkm
.arm_idlect1
= value
& 0x0fff;
2596 omap_clkm_idlect1_update(s
, diff
, value
);
2599 case 0x08: /* ARM_IDLECT2 */
2600 diff
= s
->clkm
.arm_idlect2
^ value
;
2601 s
->clkm
.arm_idlect2
= value
& 0x07ff;
2602 omap_clkm_idlect2_update(s
, diff
, value
);
2605 case 0x0c: /* ARM_EWUPCT */
2606 diff
= s
->clkm
.arm_ewupct
^ value
;
2607 s
->clkm
.arm_ewupct
= value
& 0x003f;
2610 case 0x10: /* ARM_RSTCT1 */
2611 diff
= s
->clkm
.arm_rstct1
^ value
;
2612 s
->clkm
.arm_rstct1
= value
& 0x0007;
2614 qemu_system_reset_request();
2615 s
->clkm
.cold_start
= 0xa;
2617 if (diff
& ~value
& 4) { /* DSP_RST */
2619 omap_tipb_bridge_reset(s
->private_tipb
);
2620 omap_tipb_bridge_reset(s
->public_tipb
);
2622 if (diff
& 2) { /* DSP_EN */
2623 clk
= omap_findclk(s
, "dsp_ck");
2624 omap_clk_canidle(clk
, (~value
>> 1) & 1);
2628 case 0x14: /* ARM_RSTCT2 */
2629 s
->clkm
.arm_rstct2
= value
& 0x0001;
2632 case 0x18: /* ARM_SYSST */
2633 if ((s
->clkm
.clocking_scheme
^ (value
>> 11)) & 7) {
2634 s
->clkm
.clocking_scheme
= (value
>> 11) & 7;
2635 printf("%s: clocking scheme set to %s\n", __FUNCTION__
,
2636 clkschemename
[s
->clkm
.clocking_scheme
]);
2638 s
->clkm
.cold_start
&= value
& 0x3f;
2641 case 0x1c: /* ARM_CKOUT1 */
2642 diff
= s
->clkm
.arm_ckout1
^ value
;
2643 s
->clkm
.arm_ckout1
= value
& 0x003f;
2644 omap_clkm_ckout1_update(s
, diff
, value
);
2647 case 0x20: /* ARM_CKOUT2 */
2653 static CPUReadMemoryFunc
*omap_clkm_readfn
[] = {
2654 omap_badwidth_read16
,
2656 omap_badwidth_read16
,
2659 static CPUWriteMemoryFunc
*omap_clkm_writefn
[] = {
2660 omap_badwidth_write16
,
2662 omap_badwidth_write16
,
2665 static uint32_t omap_clkdsp_read(void *opaque
, target_phys_addr_t addr
)
2667 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
2668 int offset
= addr
- s
->clkm
.dsp_base
;
2671 case 0x04: /* DSP_IDLECT1 */
2672 return s
->clkm
.dsp_idlect1
;
2674 case 0x08: /* DSP_IDLECT2 */
2675 return s
->clkm
.dsp_idlect2
;
2677 case 0x14: /* DSP_RSTCT2 */
2678 return s
->clkm
.dsp_rstct2
;
2680 case 0x18: /* DSP_SYSST */
2681 return (s
->clkm
.clocking_scheme
< 11) | s
->clkm
.cold_start
|
2682 (s
->env
->halted
<< 6); /* Quite useless... */
2689 static inline void omap_clkdsp_idlect1_update(struct omap_mpu_state_s
*s
,
2690 uint16_t diff
, uint16_t value
)
2694 SET_CANIDLE("dspxor_ck", 1); /* IDLXORP_DSP */
2697 static inline void omap_clkdsp_idlect2_update(struct omap_mpu_state_s
*s
,
2698 uint16_t diff
, uint16_t value
)
2702 SET_ONOFF("dspxor_ck", 1); /* EN_XORPCK */
2705 static void omap_clkdsp_write(void *opaque
, target_phys_addr_t addr
,
2708 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*) opaque
;
2709 int offset
= addr
- s
->clkm
.dsp_base
;
2713 case 0x04: /* DSP_IDLECT1 */
2714 diff
= s
->clkm
.dsp_idlect1
^ value
;
2715 s
->clkm
.dsp_idlect1
= value
& 0x01f7;
2716 omap_clkdsp_idlect1_update(s
, diff
, value
);
2719 case 0x08: /* DSP_IDLECT2 */
2720 s
->clkm
.dsp_idlect2
= value
& 0x0037;
2721 diff
= s
->clkm
.dsp_idlect1
^ value
;
2722 omap_clkdsp_idlect2_update(s
, diff
, value
);
2725 case 0x14: /* DSP_RSTCT2 */
2726 s
->clkm
.dsp_rstct2
= value
& 0x0001;
2729 case 0x18: /* DSP_SYSST */
2730 s
->clkm
.cold_start
&= value
& 0x3f;
2738 static CPUReadMemoryFunc
*omap_clkdsp_readfn
[] = {
2739 omap_badwidth_read16
,
2741 omap_badwidth_read16
,
2744 static CPUWriteMemoryFunc
*omap_clkdsp_writefn
[] = {
2745 omap_badwidth_write16
,
2747 omap_badwidth_write16
,
2750 static void omap_clkm_reset(struct omap_mpu_state_s
*s
)
2752 if (s
->wdt
&& s
->wdt
->reset
)
2753 s
->clkm
.cold_start
= 0x6;
2754 s
->clkm
.clocking_scheme
= 0;
2755 omap_clkm_ckctl_update(s
, ~0, 0x3000);
2756 s
->clkm
.arm_ckctl
= 0x3000;
2757 omap_clkm_idlect1_update(s
, s
->clkm
.arm_idlect1
& 0x0400, 0x0400);
2758 s
->clkm
.arm_idlect1
= 0x0400;
2759 omap_clkm_idlect2_update(s
, s
->clkm
.arm_idlect2
& 0x0100, 0x0100);
2760 s
->clkm
.arm_idlect2
= 0x0100;
2761 s
->clkm
.arm_ewupct
= 0x003f;
2762 s
->clkm
.arm_rstct1
= 0x0000;
2763 s
->clkm
.arm_rstct2
= 0x0000;
2764 s
->clkm
.arm_ckout1
= 0x0015;
2765 s
->clkm
.dpll1_mode
= 0x2002;
2766 omap_clkdsp_idlect1_update(s
, s
->clkm
.dsp_idlect1
^ 0x0040, 0x0040);
2767 s
->clkm
.dsp_idlect1
= 0x0040;
2768 omap_clkdsp_idlect2_update(s
, ~0, 0x0000);
2769 s
->clkm
.dsp_idlect2
= 0x0000;
2770 s
->clkm
.dsp_rstct2
= 0x0000;
2773 static void omap_clkm_init(target_phys_addr_t mpu_base
,
2774 target_phys_addr_t dsp_base
, struct omap_mpu_state_s
*s
)
2776 int iomemtype
[2] = {
2777 cpu_register_io_memory(0, omap_clkm_readfn
, omap_clkm_writefn
, s
),
2778 cpu_register_io_memory(0, omap_clkdsp_readfn
, omap_clkdsp_writefn
, s
),
2781 s
->clkm
.mpu_base
= mpu_base
;
2782 s
->clkm
.dsp_base
= dsp_base
;
2783 s
->clkm
.cold_start
= 0x3a;
2786 cpu_register_physical_memory(s
->clkm
.mpu_base
, 0x100, iomemtype
[0]);
2787 cpu_register_physical_memory(s
->clkm
.dsp_base
, 0x1000, iomemtype
[1]);
2790 /* General chip reset */
2791 static void omap_mpu_reset(void *opaque
)
2793 struct omap_mpu_state_s
*mpu
= (struct omap_mpu_state_s
*) opaque
;
2795 omap_clkm_reset(mpu
);
2796 omap_inth_reset(mpu
->ih
[0]);
2797 omap_inth_reset(mpu
->ih
[1]);
2798 omap_dma_reset(mpu
->dma
);
2799 omap_mpu_timer_reset(mpu
->timer
[0]);
2800 omap_mpu_timer_reset(mpu
->timer
[1]);
2801 omap_mpu_timer_reset(mpu
->timer
[2]);
2802 omap_wd_timer_reset(mpu
->wdt
);
2803 omap_os_timer_reset(mpu
->os_timer
);
2804 omap_lcdc_reset(mpu
->lcd
);
2805 omap_ulpd_pm_reset(mpu
);
2806 omap_pin_cfg_reset(mpu
);
2807 omap_mpui_reset(mpu
);
2808 omap_tipb_bridge_reset(mpu
->private_tipb
);
2809 omap_tipb_bridge_reset(mpu
->public_tipb
);
2810 omap_dpll_reset(&mpu
->dpll
[0]);
2811 omap_dpll_reset(&mpu
->dpll
[1]);
2812 omap_dpll_reset(&mpu
->dpll
[2]);
2813 omap_uart_reset(mpu
->uart1
);
2814 omap_uart_reset(mpu
->uart2
);
2815 omap_uart_reset(mpu
->uart3
);
2816 omap_mmc_reset(mpu
->mmc
);
2817 cpu_reset(mpu
->env
);
2820 static void omap_mpu_wakeup(void *opaque
, int irq
, int req
)
2822 struct omap_mpu_state_s
*mpu
= (struct omap_mpu_state_s
*) opaque
;
2824 cpu_interrupt(mpu
->env
, CPU_INTERRUPT_EXITTB
);
2827 struct omap_mpu_state_s
*omap310_mpu_init(unsigned long sdram_size
,
2828 DisplayState
*ds
, const char *core
)
2830 struct omap_mpu_state_s
*s
= (struct omap_mpu_state_s
*)
2831 qemu_mallocz(sizeof(struct omap_mpu_state_s
));
2832 ram_addr_t imif_base
, emiff_base
;
2835 s
->mpu_model
= omap310
;
2836 s
->env
= cpu_init();
2837 s
->sdram_size
= sdram_size
;
2838 s
->sram_size
= OMAP15XX_SRAM_SIZE
;
2840 cpu_arm_set_model(s
->env
, core
?: "ti925t");
2845 /* Memory-mapped stuff */
2846 cpu_register_physical_memory(OMAP_EMIFF_BASE
, s
->sdram_size
,
2847 (emiff_base
= qemu_ram_alloc(s
->sdram_size
)) | IO_MEM_RAM
);
2848 cpu_register_physical_memory(OMAP_IMIF_BASE
, s
->sram_size
,
2849 (imif_base
= qemu_ram_alloc(s
->sram_size
)) | IO_MEM_RAM
);
2851 omap_clkm_init(0xfffece00, 0xe1008000, s
);
2853 s
->ih
[0] = omap_inth_init(0xfffecb00, 0x100,
2854 arm_pic_init_cpu(s
->env
),
2855 omap_findclk(s
, "arminth_ck"));
2856 s
->ih
[1] = omap_inth_init(0xfffe0000, 0x800,
2857 &s
->ih
[0]->pins
[OMAP_INT_15XX_IH2_IRQ
],
2858 omap_findclk(s
, "arminth_ck"));
2859 s
->irq
[0] = s
->ih
[0]->pins
;
2860 s
->irq
[1] = s
->ih
[1]->pins
;
2862 s
->dma
= omap_dma_init(0xfffed800, s
->irq
[0], s
,
2863 omap_findclk(s
, "dma_ck"));
2864 s
->port
[emiff
].addr_valid
= omap_validate_emiff_addr
;
2865 s
->port
[emifs
].addr_valid
= omap_validate_emifs_addr
;
2866 s
->port
[imif
].addr_valid
= omap_validate_imif_addr
;
2867 s
->port
[tipb
].addr_valid
= omap_validate_tipb_addr
;
2868 s
->port
[local
].addr_valid
= omap_validate_local_addr
;
2869 s
->port
[tipb_mpui
].addr_valid
= omap_validate_tipb_mpui_addr
;
2871 s
->timer
[0] = omap_mpu_timer_init(0xfffec500,
2872 s
->irq
[0][OMAP_INT_TIMER1
],
2873 omap_findclk(s
, "mputim_ck"));
2874 s
->timer
[1] = omap_mpu_timer_init(0xfffec600,
2875 s
->irq
[0][OMAP_INT_TIMER2
],
2876 omap_findclk(s
, "mputim_ck"));
2877 s
->timer
[2] = omap_mpu_timer_init(0xfffec700,
2878 s
->irq
[0][OMAP_INT_TIMER3
],
2879 omap_findclk(s
, "mputim_ck"));
2881 s
->wdt
= omap_wd_timer_init(0xfffec800,
2882 s
->irq
[0][OMAP_INT_WD_TIMER
],
2883 omap_findclk(s
, "armwdt_ck"));
2885 s
->os_timer
= omap_os_timer_init(0xfffb9000,
2886 s
->irq
[1][OMAP_INT_OS_TIMER
],
2887 omap_findclk(s
, "clk32-kHz"));
2889 s
->lcd
= omap_lcdc_init(0xfffec000, s
->irq
[0][OMAP_INT_LCD_CTRL
],
2890 &s
->dma
->lcd_ch
, ds
, imif_base
, emiff_base
,
2891 omap_findclk(s
, "lcd_ck"));
2893 omap_ulpd_pm_init(0xfffe0800, s
);
2894 omap_pin_cfg_init(0xfffe1000, s
);
2897 omap_mpui_init(0xfffec900, s
);
2899 s
->private_tipb
= omap_tipb_bridge_init(0xfffeca00,
2900 s
->irq
[0][OMAP_INT_BRIDGE_PRIV
],
2901 omap_findclk(s
, "tipb_ck"));
2902 s
->public_tipb
= omap_tipb_bridge_init(0xfffed300,
2903 s
->irq
[0][OMAP_INT_BRIDGE_PUB
],
2904 omap_findclk(s
, "tipb_ck"));
2906 omap_tcmi_init(0xfffecc00, s
);
2908 s
->uart1
= omap_uart_init(0xfffb0000, s
->irq
[1][OMAP_INT_UART1
],
2909 omap_findclk(s
, "uart1_ck"),
2911 s
->uart2
= omap_uart_init(0xfffb0800, s
->irq
[1][OMAP_INT_UART2
],
2912 omap_findclk(s
, "uart2_ck"),
2913 serial_hds
[0] ? serial_hds
[1] : 0);
2914 s
->uart3
= omap_uart_init(0xe1019800, s
->irq
[0][OMAP_INT_UART3
],
2915 omap_findclk(s
, "uart3_ck"),
2916 serial_hds
[0] && serial_hds
[1] ? serial_hds
[2] : 0);
2918 omap_dpll_init(&s
->dpll
[0], 0xfffecf00, omap_findclk(s
, "dpll1"));
2919 omap_dpll_init(&s
->dpll
[1], 0xfffed000, omap_findclk(s
, "dpll2"));
2920 omap_dpll_init(&s
->dpll
[2], 0xfffed100, omap_findclk(s
, "dpll3"));
2922 s
->mmc
= omap_mmc_init(0xfffb7800, s
->irq
[1][OMAP_INT_OQN
],
2923 &s
->drq
[OMAP_DMA_MMC_TX
], omap_findclk(s
, "mmc_ck"));
2925 qemu_register_reset(omap_mpu_reset
, s
);
2926 s
->wakeup
= qemu_allocate_irqs(omap_mpu_wakeup
, s
, 1)[0];