2 * TI OMAP processors emulation.
4 * Copyright (C) 2006-2008 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 or
9 * (at your option) version 3 of the License.
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 along
17 * with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
22 #include "qemu/error-report.h"
23 #include "qemu/main-loop.h"
24 #include "qapi/error.h"
26 #include "exec/address-spaces.h"
29 #include "hw/qdev-properties.h"
30 #include "hw/arm/boot.h"
31 #include "hw/arm/omap.h"
32 #include "sysemu/blockdev.h"
33 #include "sysemu/sysemu.h"
34 #include "hw/arm/soc_dma.h"
35 #include "sysemu/qtest.h"
36 #include "sysemu/reset.h"
37 #include "sysemu/runstate.h"
38 #include "sysemu/rtc.h"
39 #include "qemu/range.h"
40 #include "hw/sysbus.h"
41 #include "qemu/cutils.h"
43 #include "target/arm/cpu-qom.h"
45 static inline void omap_log_badwidth(const char *funcname
, hwaddr addr
, int sz
)
47 qemu_log_mask(LOG_GUEST_ERROR
, "%s: %d-bit register %#08" HWADDR_PRIx
"\n",
48 funcname
, 8 * sz
, addr
);
51 /* Should signal the TCMI/GPMC */
52 uint32_t omap_badwidth_read8(void *opaque
, hwaddr addr
)
56 omap_log_badwidth(__func__
, addr
, 1);
57 cpu_physical_memory_read(addr
, &ret
, 1);
61 void omap_badwidth_write8(void *opaque
, hwaddr addr
,
66 omap_log_badwidth(__func__
, addr
, 1);
67 cpu_physical_memory_write(addr
, &val8
, 1);
70 uint32_t omap_badwidth_read16(void *opaque
, hwaddr addr
)
74 omap_log_badwidth(__func__
, addr
, 2);
75 cpu_physical_memory_read(addr
, &ret
, 2);
79 void omap_badwidth_write16(void *opaque
, hwaddr addr
,
82 uint16_t val16
= value
;
84 omap_log_badwidth(__func__
, addr
, 2);
85 cpu_physical_memory_write(addr
, &val16
, 2);
88 uint32_t omap_badwidth_read32(void *opaque
, hwaddr addr
)
92 omap_log_badwidth(__func__
, addr
, 4);
93 cpu_physical_memory_read(addr
, &ret
, 4);
97 void omap_badwidth_write32(void *opaque
, hwaddr addr
,
100 omap_log_badwidth(__func__
, addr
, 4);
101 cpu_physical_memory_write(addr
, &value
, 4);
105 struct omap_mpu_timer_s
{
123 static inline uint32_t omap_timer_read(struct omap_mpu_timer_s
*timer
)
125 uint64_t distance
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) - timer
->time
;
127 if (timer
->st
&& timer
->enable
&& timer
->rate
)
128 return timer
->val
- muldiv64(distance
>> (timer
->ptv
+ 1),
129 timer
->rate
, NANOSECONDS_PER_SECOND
);
134 static inline void omap_timer_sync(struct omap_mpu_timer_s
*timer
)
136 timer
->val
= omap_timer_read(timer
);
137 timer
->time
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
140 static inline void omap_timer_update(struct omap_mpu_timer_s
*timer
)
144 if (timer
->enable
&& timer
->st
&& timer
->rate
) {
145 timer
->val
= timer
->reset_val
; /* Should skip this on clk enable */
146 expires
= muldiv64((uint64_t) timer
->val
<< (timer
->ptv
+ 1),
147 NANOSECONDS_PER_SECOND
, timer
->rate
);
149 /* If timer expiry would be sooner than in about 1 ms and
150 * auto-reload isn't set, then fire immediately. This is a hack
151 * to make systems like PalmOS run in acceptable time. PalmOS
152 * sets the interval to a very low value and polls the status bit
153 * in a busy loop when it wants to sleep just a couple of CPU
155 if (expires
> (NANOSECONDS_PER_SECOND
>> 10) || timer
->ar
) {
156 timer_mod(timer
->timer
, timer
->time
+ expires
);
158 qemu_bh_schedule(timer
->tick
);
161 timer_del(timer
->timer
);
164 static void omap_timer_fire(void *opaque
)
166 struct omap_mpu_timer_s
*timer
= opaque
;
174 /* Edge-triggered irq */
175 qemu_irq_pulse(timer
->irq
);
178 static void omap_timer_tick(void *opaque
)
180 struct omap_mpu_timer_s
*timer
= opaque
;
182 omap_timer_sync(timer
);
183 omap_timer_fire(timer
);
184 omap_timer_update(timer
);
187 static void omap_timer_clk_update(void *opaque
, int line
, int on
)
189 struct omap_mpu_timer_s
*timer
= opaque
;
191 omap_timer_sync(timer
);
192 timer
->rate
= on
? omap_clk_getrate(timer
->clk
) : 0;
193 omap_timer_update(timer
);
196 static void omap_timer_clk_setup(struct omap_mpu_timer_s
*timer
)
198 omap_clk_adduser(timer
->clk
,
199 qemu_allocate_irq(omap_timer_clk_update
, timer
, 0));
200 timer
->rate
= omap_clk_getrate(timer
->clk
);
203 static uint64_t omap_mpu_timer_read(void *opaque
, hwaddr addr
,
206 struct omap_mpu_timer_s
*s
= opaque
;
209 return omap_badwidth_read32(opaque
, addr
);
213 case 0x00: /* CNTL_TIMER */
214 return (s
->enable
<< 5) | (s
->ptv
<< 2) | (s
->ar
<< 1) | s
->st
;
216 case 0x04: /* LOAD_TIM */
219 case 0x08: /* READ_TIM */
220 return omap_timer_read(s
);
227 static void omap_mpu_timer_write(void *opaque
, hwaddr addr
,
228 uint64_t value
, unsigned size
)
230 struct omap_mpu_timer_s
*s
= opaque
;
233 omap_badwidth_write32(opaque
, addr
, value
);
238 case 0x00: /* CNTL_TIMER */
240 s
->enable
= (value
>> 5) & 1;
241 s
->ptv
= (value
>> 2) & 7;
242 s
->ar
= (value
>> 1) & 1;
244 omap_timer_update(s
);
247 case 0x04: /* LOAD_TIM */
248 s
->reset_val
= value
;
251 case 0x08: /* READ_TIM */
260 static const MemoryRegionOps omap_mpu_timer_ops
= {
261 .read
= omap_mpu_timer_read
,
262 .write
= omap_mpu_timer_write
,
263 .endianness
= DEVICE_LITTLE_ENDIAN
,
266 static void omap_mpu_timer_reset(struct omap_mpu_timer_s
*s
)
270 s
->reset_val
= 31337;
278 static struct omap_mpu_timer_s
*omap_mpu_timer_init(MemoryRegion
*system_memory
,
280 qemu_irq irq
, omap_clk clk
)
282 struct omap_mpu_timer_s
*s
= g_new0(struct omap_mpu_timer_s
, 1);
286 s
->timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, omap_timer_tick
, s
);
287 s
->tick
= qemu_bh_new(omap_timer_fire
, s
);
288 omap_mpu_timer_reset(s
);
289 omap_timer_clk_setup(s
);
291 memory_region_init_io(&s
->iomem
, NULL
, &omap_mpu_timer_ops
, s
,
292 "omap-mpu-timer", 0x100);
294 memory_region_add_subregion(system_memory
, base
, &s
->iomem
);
300 struct omap_watchdog_timer_s
{
301 struct omap_mpu_timer_s timer
;
309 static uint64_t omap_wd_timer_read(void *opaque
, hwaddr addr
,
312 struct omap_watchdog_timer_s
*s
= opaque
;
315 return omap_badwidth_read16(opaque
, addr
);
319 case 0x00: /* CNTL_TIMER */
320 return (s
->timer
.ptv
<< 9) | (s
->timer
.ar
<< 8) |
321 (s
->timer
.st
<< 7) | (s
->free
<< 1);
323 case 0x04: /* READ_TIMER */
324 return omap_timer_read(&s
->timer
);
326 case 0x08: /* TIMER_MODE */
327 return s
->mode
<< 15;
334 static void omap_wd_timer_write(void *opaque
, hwaddr addr
,
335 uint64_t value
, unsigned size
)
337 struct omap_watchdog_timer_s
*s
= opaque
;
340 omap_badwidth_write16(opaque
, addr
, value
);
345 case 0x00: /* CNTL_TIMER */
346 omap_timer_sync(&s
->timer
);
347 s
->timer
.ptv
= (value
>> 9) & 7;
348 s
->timer
.ar
= (value
>> 8) & 1;
349 s
->timer
.st
= (value
>> 7) & 1;
350 s
->free
= (value
>> 1) & 1;
351 omap_timer_update(&s
->timer
);
354 case 0x04: /* LOAD_TIMER */
355 s
->timer
.reset_val
= value
& 0xffff;
358 case 0x08: /* TIMER_MODE */
359 if (!s
->mode
&& ((value
>> 15) & 1))
360 omap_clk_get(s
->timer
.clk
);
361 s
->mode
|= (value
>> 15) & 1;
362 if (s
->last_wr
== 0xf5) {
363 if ((value
& 0xff) == 0xa0) {
366 omap_clk_put(s
->timer
.clk
);
369 /* XXX: on T|E hardware somehow this has no effect,
370 * on Zire 71 it works as specified. */
372 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET
);
375 s
->last_wr
= value
& 0xff;
383 static const MemoryRegionOps omap_wd_timer_ops
= {
384 .read
= omap_wd_timer_read
,
385 .write
= omap_wd_timer_write
,
386 .endianness
= DEVICE_NATIVE_ENDIAN
,
389 static void omap_wd_timer_reset(struct omap_watchdog_timer_s
*s
)
391 timer_del(s
->timer
.timer
);
393 omap_clk_get(s
->timer
.clk
);
399 s
->timer
.reset_val
= 0xffff;
404 omap_timer_update(&s
->timer
);
407 static struct omap_watchdog_timer_s
*omap_wd_timer_init(MemoryRegion
*memory
,
409 qemu_irq irq
, omap_clk clk
)
411 struct omap_watchdog_timer_s
*s
= g_new0(struct omap_watchdog_timer_s
, 1);
415 s
->timer
.timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, omap_timer_tick
, &s
->timer
);
416 omap_wd_timer_reset(s
);
417 omap_timer_clk_setup(&s
->timer
);
419 memory_region_init_io(&s
->iomem
, NULL
, &omap_wd_timer_ops
, s
,
420 "omap-wd-timer", 0x100);
421 memory_region_add_subregion(memory
, base
, &s
->iomem
);
427 struct omap_32khz_timer_s
{
428 struct omap_mpu_timer_s timer
;
432 static uint64_t omap_os_timer_read(void *opaque
, hwaddr addr
,
435 struct omap_32khz_timer_s
*s
= opaque
;
436 int offset
= addr
& OMAP_MPUI_REG_MASK
;
439 return omap_badwidth_read32(opaque
, addr
);
444 return s
->timer
.reset_val
;
447 return omap_timer_read(&s
->timer
);
450 return (s
->timer
.ar
<< 3) | (s
->timer
.it_ena
<< 2) | s
->timer
.st
;
459 static void omap_os_timer_write(void *opaque
, hwaddr addr
,
460 uint64_t value
, unsigned size
)
462 struct omap_32khz_timer_s
*s
= opaque
;
463 int offset
= addr
& OMAP_MPUI_REG_MASK
;
466 omap_badwidth_write32(opaque
, addr
, value
);
472 s
->timer
.reset_val
= value
& 0x00ffffff;
480 s
->timer
.ar
= (value
>> 3) & 1;
481 s
->timer
.it_ena
= (value
>> 2) & 1;
482 if (s
->timer
.st
!= (value
& 1) || (value
& 2)) {
483 omap_timer_sync(&s
->timer
);
484 s
->timer
.enable
= value
& 1;
485 s
->timer
.st
= value
& 1;
486 omap_timer_update(&s
->timer
);
495 static const MemoryRegionOps omap_os_timer_ops
= {
496 .read
= omap_os_timer_read
,
497 .write
= omap_os_timer_write
,
498 .endianness
= DEVICE_NATIVE_ENDIAN
,
501 static void omap_os_timer_reset(struct omap_32khz_timer_s
*s
)
503 timer_del(s
->timer
.timer
);
506 s
->timer
.reset_val
= 0x00ffffff;
513 static struct omap_32khz_timer_s
*omap_os_timer_init(MemoryRegion
*memory
,
515 qemu_irq irq
, omap_clk clk
)
517 struct omap_32khz_timer_s
*s
= g_new0(struct omap_32khz_timer_s
, 1);
521 s
->timer
.timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, omap_timer_tick
, &s
->timer
);
522 omap_os_timer_reset(s
);
523 omap_timer_clk_setup(&s
->timer
);
525 memory_region_init_io(&s
->iomem
, NULL
, &omap_os_timer_ops
, s
,
526 "omap-os-timer", 0x800);
527 memory_region_add_subregion(memory
, base
, &s
->iomem
);
532 /* Ultra Low-Power Device Module */
533 static uint64_t omap_ulpd_pm_read(void *opaque
, hwaddr addr
,
536 struct omap_mpu_state_s
*s
= opaque
;
540 return omap_badwidth_read16(opaque
, addr
);
544 case 0x14: /* IT_STATUS */
545 ret
= s
->ulpd_pm_regs
[addr
>> 2];
546 s
->ulpd_pm_regs
[addr
>> 2] = 0;
547 qemu_irq_lower(qdev_get_gpio_in(s
->ih
[1], OMAP_INT_GAUGE_32K
));
550 case 0x18: /* Reserved */
551 case 0x1c: /* Reserved */
552 case 0x20: /* Reserved */
553 case 0x28: /* Reserved */
554 case 0x2c: /* Reserved */
557 case 0x00: /* COUNTER_32_LSB */
558 case 0x04: /* COUNTER_32_MSB */
559 case 0x08: /* COUNTER_HIGH_FREQ_LSB */
560 case 0x0c: /* COUNTER_HIGH_FREQ_MSB */
561 case 0x10: /* GAUGING_CTRL */
562 case 0x24: /* SETUP_ANALOG_CELL3_ULPD1 */
563 case 0x30: /* CLOCK_CTRL */
564 case 0x34: /* SOFT_REQ */
565 case 0x38: /* COUNTER_32_FIQ */
566 case 0x3c: /* DPLL_CTRL */
567 case 0x40: /* STATUS_REQ */
568 /* XXX: check clk::usecount state for every clock */
569 case 0x48: /* LOCL_TIME */
570 case 0x4c: /* APLL_CTRL */
571 case 0x50: /* POWER_CTRL */
572 return s
->ulpd_pm_regs
[addr
>> 2];
579 static inline void omap_ulpd_clk_update(struct omap_mpu_state_s
*s
,
580 uint16_t diff
, uint16_t value
)
582 if (diff
& (1 << 4)) /* USB_MCLK_EN */
583 omap_clk_onoff(omap_findclk(s
, "usb_clk0"), (value
>> 4) & 1);
584 if (diff
& (1 << 5)) /* DIS_USB_PVCI_CLK */
585 omap_clk_onoff(omap_findclk(s
, "usb_w2fc_ck"), (~value
>> 5) & 1);
588 static inline void omap_ulpd_req_update(struct omap_mpu_state_s
*s
,
589 uint16_t diff
, uint16_t value
)
591 if (diff
& (1 << 0)) /* SOFT_DPLL_REQ */
592 omap_clk_canidle(omap_findclk(s
, "dpll4"), (~value
>> 0) & 1);
593 if (diff
& (1 << 1)) /* SOFT_COM_REQ */
594 omap_clk_canidle(omap_findclk(s
, "com_mclk_out"), (~value
>> 1) & 1);
595 if (diff
& (1 << 2)) /* SOFT_SDW_REQ */
596 omap_clk_canidle(omap_findclk(s
, "bt_mclk_out"), (~value
>> 2) & 1);
597 if (diff
& (1 << 3)) /* SOFT_USB_REQ */
598 omap_clk_canidle(omap_findclk(s
, "usb_clk0"), (~value
>> 3) & 1);
601 static void omap_ulpd_pm_write(void *opaque
, hwaddr addr
,
602 uint64_t value
, unsigned size
)
604 struct omap_mpu_state_s
*s
= opaque
;
607 static const int bypass_div
[4] = { 1, 2, 4, 4 };
611 omap_badwidth_write16(opaque
, addr
, value
);
616 case 0x00: /* COUNTER_32_LSB */
617 case 0x04: /* COUNTER_32_MSB */
618 case 0x08: /* COUNTER_HIGH_FREQ_LSB */
619 case 0x0c: /* COUNTER_HIGH_FREQ_MSB */
620 case 0x14: /* IT_STATUS */
621 case 0x40: /* STATUS_REQ */
625 case 0x10: /* GAUGING_CTRL */
626 /* Bits 0 and 1 seem to be confused in the OMAP 310 TRM */
627 if ((s
->ulpd_pm_regs
[addr
>> 2] ^ value
) & 1) {
628 now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
631 s
->ulpd_gauge_start
= now
;
633 now
-= s
->ulpd_gauge_start
;
636 ticks
= muldiv64(now
, 32768, NANOSECONDS_PER_SECOND
);
637 s
->ulpd_pm_regs
[0x00 >> 2] = (ticks
>> 0) & 0xffff;
638 s
->ulpd_pm_regs
[0x04 >> 2] = (ticks
>> 16) & 0xffff;
639 if (ticks
>> 32) /* OVERFLOW_32K */
640 s
->ulpd_pm_regs
[0x14 >> 2] |= 1 << 2;
642 /* High frequency ticks */
643 ticks
= muldiv64(now
, 12000000, NANOSECONDS_PER_SECOND
);
644 s
->ulpd_pm_regs
[0x08 >> 2] = (ticks
>> 0) & 0xffff;
645 s
->ulpd_pm_regs
[0x0c >> 2] = (ticks
>> 16) & 0xffff;
646 if (ticks
>> 32) /* OVERFLOW_HI_FREQ */
647 s
->ulpd_pm_regs
[0x14 >> 2] |= 1 << 1;
649 s
->ulpd_pm_regs
[0x14 >> 2] |= 1 << 0; /* IT_GAUGING */
650 qemu_irq_raise(qdev_get_gpio_in(s
->ih
[1], OMAP_INT_GAUGE_32K
));
653 s
->ulpd_pm_regs
[addr
>> 2] = value
;
656 case 0x18: /* Reserved */
657 case 0x1c: /* Reserved */
658 case 0x20: /* Reserved */
659 case 0x28: /* Reserved */
660 case 0x2c: /* Reserved */
663 case 0x24: /* SETUP_ANALOG_CELL3_ULPD1 */
664 case 0x38: /* COUNTER_32_FIQ */
665 case 0x48: /* LOCL_TIME */
666 case 0x50: /* POWER_CTRL */
667 s
->ulpd_pm_regs
[addr
>> 2] = value
;
670 case 0x30: /* CLOCK_CTRL */
671 diff
= s
->ulpd_pm_regs
[addr
>> 2] ^ value
;
672 s
->ulpd_pm_regs
[addr
>> 2] = value
& 0x3f;
673 omap_ulpd_clk_update(s
, diff
, value
);
676 case 0x34: /* SOFT_REQ */
677 diff
= s
->ulpd_pm_regs
[addr
>> 2] ^ value
;
678 s
->ulpd_pm_regs
[addr
>> 2] = value
& 0x1f;
679 omap_ulpd_req_update(s
, diff
, value
);
682 case 0x3c: /* DPLL_CTRL */
683 /* XXX: OMAP310 TRM claims bit 3 is PLL_ENABLE, and bit 4 is
684 * omitted altogether, probably a typo. */
685 /* This register has identical semantics with DPLL(1:3) control
686 * registers, see omap_dpll_write() */
687 diff
= s
->ulpd_pm_regs
[addr
>> 2] & value
;
688 s
->ulpd_pm_regs
[addr
>> 2] = value
& 0x2fff;
689 if (diff
& (0x3ff << 2)) {
690 if (value
& (1 << 4)) { /* PLL_ENABLE */
691 div
= ((value
>> 5) & 3) + 1; /* PLL_DIV */
692 mult
= MIN((value
>> 7) & 0x1f, 1); /* PLL_MULT */
694 div
= bypass_div
[((value
>> 2) & 3)]; /* BYPASS_DIV */
697 omap_clk_setrate(omap_findclk(s
, "dpll4"), div
, mult
);
700 /* Enter the desired mode. */
701 s
->ulpd_pm_regs
[addr
>> 2] =
702 (s
->ulpd_pm_regs
[addr
>> 2] & 0xfffe) |
703 ((s
->ulpd_pm_regs
[addr
>> 2] >> 4) & 1);
705 /* Act as if the lock is restored. */
706 s
->ulpd_pm_regs
[addr
>> 2] |= 2;
709 case 0x4c: /* APLL_CTRL */
710 diff
= s
->ulpd_pm_regs
[addr
>> 2] & value
;
711 s
->ulpd_pm_regs
[addr
>> 2] = value
& 0xf;
712 if (diff
& (1 << 0)) /* APLL_NDPLL_SWITCH */
713 omap_clk_reparent(omap_findclk(s
, "ck_48m"), omap_findclk(s
,
714 (value
& (1 << 0)) ? "apll" : "dpll4"));
722 static const MemoryRegionOps omap_ulpd_pm_ops
= {
723 .read
= omap_ulpd_pm_read
,
724 .write
= omap_ulpd_pm_write
,
725 .endianness
= DEVICE_NATIVE_ENDIAN
,
728 static void omap_ulpd_pm_reset(struct omap_mpu_state_s
*mpu
)
730 mpu
->ulpd_pm_regs
[0x00 >> 2] = 0x0001;
731 mpu
->ulpd_pm_regs
[0x04 >> 2] = 0x0000;
732 mpu
->ulpd_pm_regs
[0x08 >> 2] = 0x0001;
733 mpu
->ulpd_pm_regs
[0x0c >> 2] = 0x0000;
734 mpu
->ulpd_pm_regs
[0x10 >> 2] = 0x0000;
735 mpu
->ulpd_pm_regs
[0x18 >> 2] = 0x01;
736 mpu
->ulpd_pm_regs
[0x1c >> 2] = 0x01;
737 mpu
->ulpd_pm_regs
[0x20 >> 2] = 0x01;
738 mpu
->ulpd_pm_regs
[0x24 >> 2] = 0x03ff;
739 mpu
->ulpd_pm_regs
[0x28 >> 2] = 0x01;
740 mpu
->ulpd_pm_regs
[0x2c >> 2] = 0x01;
741 omap_ulpd_clk_update(mpu
, mpu
->ulpd_pm_regs
[0x30 >> 2], 0x0000);
742 mpu
->ulpd_pm_regs
[0x30 >> 2] = 0x0000;
743 omap_ulpd_req_update(mpu
, mpu
->ulpd_pm_regs
[0x34 >> 2], 0x0000);
744 mpu
->ulpd_pm_regs
[0x34 >> 2] = 0x0000;
745 mpu
->ulpd_pm_regs
[0x38 >> 2] = 0x0001;
746 mpu
->ulpd_pm_regs
[0x3c >> 2] = 0x2211;
747 mpu
->ulpd_pm_regs
[0x40 >> 2] = 0x0000; /* FIXME: dump a real STATUS_REQ */
748 mpu
->ulpd_pm_regs
[0x48 >> 2] = 0x960;
749 mpu
->ulpd_pm_regs
[0x4c >> 2] = 0x08;
750 mpu
->ulpd_pm_regs
[0x50 >> 2] = 0x08;
751 omap_clk_setrate(omap_findclk(mpu
, "dpll4"), 1, 4);
752 omap_clk_reparent(omap_findclk(mpu
, "ck_48m"), omap_findclk(mpu
, "dpll4"));
755 static void omap_ulpd_pm_init(MemoryRegion
*system_memory
,
757 struct omap_mpu_state_s
*mpu
)
759 memory_region_init_io(&mpu
->ulpd_pm_iomem
, NULL
, &omap_ulpd_pm_ops
, mpu
,
760 "omap-ulpd-pm", 0x800);
761 memory_region_add_subregion(system_memory
, base
, &mpu
->ulpd_pm_iomem
);
762 omap_ulpd_pm_reset(mpu
);
765 /* OMAP Pin Configuration */
766 static uint64_t omap_pin_cfg_read(void *opaque
, hwaddr addr
,
769 struct omap_mpu_state_s
*s
= opaque
;
772 return omap_badwidth_read32(opaque
, addr
);
776 case 0x00: /* FUNC_MUX_CTRL_0 */
777 case 0x04: /* FUNC_MUX_CTRL_1 */
778 case 0x08: /* FUNC_MUX_CTRL_2 */
779 return s
->func_mux_ctrl
[addr
>> 2];
781 case 0x0c: /* COMP_MODE_CTRL_0 */
782 return s
->comp_mode_ctrl
[0];
784 case 0x10: /* FUNC_MUX_CTRL_3 */
785 case 0x14: /* FUNC_MUX_CTRL_4 */
786 case 0x18: /* FUNC_MUX_CTRL_5 */
787 case 0x1c: /* FUNC_MUX_CTRL_6 */
788 case 0x20: /* FUNC_MUX_CTRL_7 */
789 case 0x24: /* FUNC_MUX_CTRL_8 */
790 case 0x28: /* FUNC_MUX_CTRL_9 */
791 case 0x2c: /* FUNC_MUX_CTRL_A */
792 case 0x30: /* FUNC_MUX_CTRL_B */
793 case 0x34: /* FUNC_MUX_CTRL_C */
794 case 0x38: /* FUNC_MUX_CTRL_D */
795 return s
->func_mux_ctrl
[(addr
>> 2) - 1];
797 case 0x40: /* PULL_DWN_CTRL_0 */
798 case 0x44: /* PULL_DWN_CTRL_1 */
799 case 0x48: /* PULL_DWN_CTRL_2 */
800 case 0x4c: /* PULL_DWN_CTRL_3 */
801 return s
->pull_dwn_ctrl
[(addr
& 0xf) >> 2];
803 case 0x50: /* GATE_INH_CTRL_0 */
804 return s
->gate_inh_ctrl
[0];
806 case 0x60: /* VOLTAGE_CTRL_0 */
807 return s
->voltage_ctrl
[0];
809 case 0x70: /* TEST_DBG_CTRL_0 */
810 return s
->test_dbg_ctrl
[0];
812 case 0x80: /* MOD_CONF_CTRL_0 */
813 return s
->mod_conf_ctrl
[0];
820 static inline void omap_pin_funcmux0_update(struct omap_mpu_state_s
*s
,
821 uint32_t diff
, uint32_t value
)
824 if (diff
& (1 << 9)) /* BLUETOOTH */
825 omap_clk_onoff(omap_findclk(s
, "bt_mclk_out"),
827 if (diff
& (1 << 7)) /* USB.CLKO */
828 omap_clk_onoff(omap_findclk(s
, "usb.clko"),
833 static inline void omap_pin_funcmux1_update(struct omap_mpu_state_s
*s
,
834 uint32_t diff
, uint32_t value
)
837 if (diff
& (1U << 31)) {
838 /* MCBSP3_CLK_HIZ_DI */
839 omap_clk_onoff(omap_findclk(s
, "mcbsp3.clkx"), (value
>> 31) & 1);
841 if (diff
& (1 << 1)) {
843 omap_clk_onoff(omap_findclk(s
, "clk32k_out"), (~value
>> 1) & 1);
848 static inline void omap_pin_modconf1_update(struct omap_mpu_state_s
*s
,
849 uint32_t diff
, uint32_t value
)
851 if (diff
& (1U << 31)) {
852 /* CONF_MOD_UART3_CLK_MODE_R */
853 omap_clk_reparent(omap_findclk(s
, "uart3_ck"),
854 omap_findclk(s
, ((value
>> 31) & 1) ?
855 "ck_48m" : "armper_ck"));
857 if (diff
& (1 << 30)) /* CONF_MOD_UART2_CLK_MODE_R */
858 omap_clk_reparent(omap_findclk(s
, "uart2_ck"),
859 omap_findclk(s
, ((value
>> 30) & 1) ?
860 "ck_48m" : "armper_ck"));
861 if (diff
& (1 << 29)) /* CONF_MOD_UART1_CLK_MODE_R */
862 omap_clk_reparent(omap_findclk(s
, "uart1_ck"),
863 omap_findclk(s
, ((value
>> 29) & 1) ?
864 "ck_48m" : "armper_ck"));
865 if (diff
& (1 << 23)) /* CONF_MOD_MMC_SD_CLK_REQ_R */
866 omap_clk_reparent(omap_findclk(s
, "mmc_ck"),
867 omap_findclk(s
, ((value
>> 23) & 1) ?
868 "ck_48m" : "armper_ck"));
869 if (diff
& (1 << 12)) /* CONF_MOD_COM_MCLK_12_48_S */
870 omap_clk_reparent(omap_findclk(s
, "com_mclk_out"),
871 omap_findclk(s
, ((value
>> 12) & 1) ?
872 "ck_48m" : "armper_ck"));
873 if (diff
& (1 << 9)) /* CONF_MOD_USB_HOST_HHC_UHO */
874 omap_clk_onoff(omap_findclk(s
, "usb_hhc_ck"), (value
>> 9) & 1);
877 static void omap_pin_cfg_write(void *opaque
, hwaddr addr
,
878 uint64_t value
, unsigned size
)
880 struct omap_mpu_state_s
*s
= opaque
;
884 omap_badwidth_write32(opaque
, addr
, value
);
889 case 0x00: /* FUNC_MUX_CTRL_0 */
890 diff
= s
->func_mux_ctrl
[addr
>> 2] ^ value
;
891 s
->func_mux_ctrl
[addr
>> 2] = value
;
892 omap_pin_funcmux0_update(s
, diff
, value
);
895 case 0x04: /* FUNC_MUX_CTRL_1 */
896 diff
= s
->func_mux_ctrl
[addr
>> 2] ^ value
;
897 s
->func_mux_ctrl
[addr
>> 2] = value
;
898 omap_pin_funcmux1_update(s
, diff
, value
);
901 case 0x08: /* FUNC_MUX_CTRL_2 */
902 s
->func_mux_ctrl
[addr
>> 2] = value
;
905 case 0x0c: /* COMP_MODE_CTRL_0 */
906 s
->comp_mode_ctrl
[0] = value
;
907 s
->compat1509
= (value
!= 0x0000eaef);
908 omap_pin_funcmux0_update(s
, ~0, s
->func_mux_ctrl
[0]);
909 omap_pin_funcmux1_update(s
, ~0, s
->func_mux_ctrl
[1]);
912 case 0x10: /* FUNC_MUX_CTRL_3 */
913 case 0x14: /* FUNC_MUX_CTRL_4 */
914 case 0x18: /* FUNC_MUX_CTRL_5 */
915 case 0x1c: /* FUNC_MUX_CTRL_6 */
916 case 0x20: /* FUNC_MUX_CTRL_7 */
917 case 0x24: /* FUNC_MUX_CTRL_8 */
918 case 0x28: /* FUNC_MUX_CTRL_9 */
919 case 0x2c: /* FUNC_MUX_CTRL_A */
920 case 0x30: /* FUNC_MUX_CTRL_B */
921 case 0x34: /* FUNC_MUX_CTRL_C */
922 case 0x38: /* FUNC_MUX_CTRL_D */
923 s
->func_mux_ctrl
[(addr
>> 2) - 1] = value
;
926 case 0x40: /* PULL_DWN_CTRL_0 */
927 case 0x44: /* PULL_DWN_CTRL_1 */
928 case 0x48: /* PULL_DWN_CTRL_2 */
929 case 0x4c: /* PULL_DWN_CTRL_3 */
930 s
->pull_dwn_ctrl
[(addr
& 0xf) >> 2] = value
;
933 case 0x50: /* GATE_INH_CTRL_0 */
934 s
->gate_inh_ctrl
[0] = value
;
937 case 0x60: /* VOLTAGE_CTRL_0 */
938 s
->voltage_ctrl
[0] = value
;
941 case 0x70: /* TEST_DBG_CTRL_0 */
942 s
->test_dbg_ctrl
[0] = value
;
945 case 0x80: /* MOD_CONF_CTRL_0 */
946 diff
= s
->mod_conf_ctrl
[0] ^ value
;
947 s
->mod_conf_ctrl
[0] = value
;
948 omap_pin_modconf1_update(s
, diff
, value
);
956 static const MemoryRegionOps omap_pin_cfg_ops
= {
957 .read
= omap_pin_cfg_read
,
958 .write
= omap_pin_cfg_write
,
959 .endianness
= DEVICE_NATIVE_ENDIAN
,
962 static void omap_pin_cfg_reset(struct omap_mpu_state_s
*mpu
)
964 /* Start in Compatibility Mode. */
966 omap_pin_funcmux0_update(mpu
, mpu
->func_mux_ctrl
[0], 0);
967 omap_pin_funcmux1_update(mpu
, mpu
->func_mux_ctrl
[1], 0);
968 omap_pin_modconf1_update(mpu
, mpu
->mod_conf_ctrl
[0], 0);
969 memset(mpu
->func_mux_ctrl
, 0, sizeof(mpu
->func_mux_ctrl
));
970 memset(mpu
->comp_mode_ctrl
, 0, sizeof(mpu
->comp_mode_ctrl
));
971 memset(mpu
->pull_dwn_ctrl
, 0, sizeof(mpu
->pull_dwn_ctrl
));
972 memset(mpu
->gate_inh_ctrl
, 0, sizeof(mpu
->gate_inh_ctrl
));
973 memset(mpu
->voltage_ctrl
, 0, sizeof(mpu
->voltage_ctrl
));
974 memset(mpu
->test_dbg_ctrl
, 0, sizeof(mpu
->test_dbg_ctrl
));
975 memset(mpu
->mod_conf_ctrl
, 0, sizeof(mpu
->mod_conf_ctrl
));
978 static void omap_pin_cfg_init(MemoryRegion
*system_memory
,
980 struct omap_mpu_state_s
*mpu
)
982 memory_region_init_io(&mpu
->pin_cfg_iomem
, NULL
, &omap_pin_cfg_ops
, mpu
,
983 "omap-pin-cfg", 0x800);
984 memory_region_add_subregion(system_memory
, base
, &mpu
->pin_cfg_iomem
);
985 omap_pin_cfg_reset(mpu
);
988 /* Device Identification, Die Identification */
989 static uint64_t omap_id_read(void *opaque
, hwaddr addr
,
992 struct omap_mpu_state_s
*s
= opaque
;
995 return omap_badwidth_read32(opaque
, addr
);
999 case 0xfffe1800: /* DIE_ID_LSB */
1001 case 0xfffe1804: /* DIE_ID_MSB */
1004 case 0xfffe2000: /* PRODUCT_ID_LSB */
1006 case 0xfffe2004: /* PRODUCT_ID_MSB */
1009 case 0xfffed400: /* JTAG_ID_LSB */
1010 switch (s
->mpu_model
) {
1016 hw_error("%s: bad mpu model\n", __func__
);
1020 case 0xfffed404: /* JTAG_ID_MSB */
1021 switch (s
->mpu_model
) {
1027 hw_error("%s: bad mpu model\n", __func__
);
1036 static void omap_id_write(void *opaque
, hwaddr addr
,
1037 uint64_t value
, unsigned size
)
1040 omap_badwidth_write32(opaque
, addr
, value
);
1047 static const MemoryRegionOps omap_id_ops
= {
1048 .read
= omap_id_read
,
1049 .write
= omap_id_write
,
1050 .endianness
= DEVICE_NATIVE_ENDIAN
,
1053 static void omap_id_init(MemoryRegion
*memory
, struct omap_mpu_state_s
*mpu
)
1055 memory_region_init_io(&mpu
->id_iomem
, NULL
, &omap_id_ops
, mpu
,
1056 "omap-id", 0x100000000ULL
);
1057 memory_region_init_alias(&mpu
->id_iomem_e18
, NULL
, "omap-id-e18", &mpu
->id_iomem
,
1059 memory_region_add_subregion(memory
, 0xfffe1800, &mpu
->id_iomem_e18
);
1060 memory_region_init_alias(&mpu
->id_iomem_ed4
, NULL
, "omap-id-ed4", &mpu
->id_iomem
,
1062 memory_region_add_subregion(memory
, 0xfffed400, &mpu
->id_iomem_ed4
);
1063 if (!cpu_is_omap15xx(mpu
)) {
1064 memory_region_init_alias(&mpu
->id_iomem_ed4
, NULL
, "omap-id-e20",
1065 &mpu
->id_iomem
, 0xfffe2000, 0x800);
1066 memory_region_add_subregion(memory
, 0xfffe2000, &mpu
->id_iomem_e20
);
1070 /* MPUI Control (Dummy) */
1071 static uint64_t omap_mpui_read(void *opaque
, hwaddr addr
,
1074 struct omap_mpu_state_s
*s
= opaque
;
1077 return omap_badwidth_read32(opaque
, addr
);
1081 case 0x00: /* CTRL */
1082 return s
->mpui_ctrl
;
1083 case 0x04: /* DEBUG_ADDR */
1085 case 0x08: /* DEBUG_DATA */
1087 case 0x0c: /* DEBUG_FLAG */
1089 case 0x10: /* STATUS */
1092 /* Not in OMAP310 */
1093 case 0x14: /* DSP_STATUS */
1094 case 0x18: /* DSP_BOOT_CONFIG */
1096 case 0x1c: /* DSP_MPUI_CONFIG */
1104 static void omap_mpui_write(void *opaque
, hwaddr addr
,
1105 uint64_t value
, unsigned size
)
1107 struct omap_mpu_state_s
*s
= opaque
;
1110 omap_badwidth_write32(opaque
, addr
, value
);
1115 case 0x00: /* CTRL */
1116 s
->mpui_ctrl
= value
& 0x007fffff;
1119 case 0x04: /* DEBUG_ADDR */
1120 case 0x08: /* DEBUG_DATA */
1121 case 0x0c: /* DEBUG_FLAG */
1122 case 0x10: /* STATUS */
1123 /* Not in OMAP310 */
1124 case 0x14: /* DSP_STATUS */
1127 case 0x18: /* DSP_BOOT_CONFIG */
1128 case 0x1c: /* DSP_MPUI_CONFIG */
1136 static const MemoryRegionOps omap_mpui_ops
= {
1137 .read
= omap_mpui_read
,
1138 .write
= omap_mpui_write
,
1139 .endianness
= DEVICE_NATIVE_ENDIAN
,
1142 static void omap_mpui_reset(struct omap_mpu_state_s
*s
)
1144 s
->mpui_ctrl
= 0x0003ff1b;
1147 static void omap_mpui_init(MemoryRegion
*memory
, hwaddr base
,
1148 struct omap_mpu_state_s
*mpu
)
1150 memory_region_init_io(&mpu
->mpui_iomem
, NULL
, &omap_mpui_ops
, mpu
,
1151 "omap-mpui", 0x100);
1152 memory_region_add_subregion(memory
, base
, &mpu
->mpui_iomem
);
1154 omap_mpui_reset(mpu
);
1158 struct omap_tipb_bridge_s
{
1166 uint16_t enh_control
;
1169 static uint64_t omap_tipb_bridge_read(void *opaque
, hwaddr addr
,
1172 struct omap_tipb_bridge_s
*s
= opaque
;
1175 return omap_badwidth_read16(opaque
, addr
);
1179 case 0x00: /* TIPB_CNTL */
1181 case 0x04: /* TIPB_BUS_ALLOC */
1183 case 0x08: /* MPU_TIPB_CNTL */
1185 case 0x0c: /* ENHANCED_TIPB_CNTL */
1186 return s
->enh_control
;
1187 case 0x10: /* ADDRESS_DBG */
1188 case 0x14: /* DATA_DEBUG_LOW */
1189 case 0x18: /* DATA_DEBUG_HIGH */
1191 case 0x1c: /* DEBUG_CNTR_SIG */
1199 static void omap_tipb_bridge_write(void *opaque
, hwaddr addr
,
1200 uint64_t value
, unsigned size
)
1202 struct omap_tipb_bridge_s
*s
= opaque
;
1205 omap_badwidth_write16(opaque
, addr
, value
);
1210 case 0x00: /* TIPB_CNTL */
1211 s
->control
= value
& 0xffff;
1214 case 0x04: /* TIPB_BUS_ALLOC */
1215 s
->alloc
= value
& 0x003f;
1218 case 0x08: /* MPU_TIPB_CNTL */
1219 s
->buffer
= value
& 0x0003;
1222 case 0x0c: /* ENHANCED_TIPB_CNTL */
1223 s
->width_intr
= !(value
& 2);
1224 s
->enh_control
= value
& 0x000f;
1227 case 0x10: /* ADDRESS_DBG */
1228 case 0x14: /* DATA_DEBUG_LOW */
1229 case 0x18: /* DATA_DEBUG_HIGH */
1230 case 0x1c: /* DEBUG_CNTR_SIG */
1239 static const MemoryRegionOps omap_tipb_bridge_ops
= {
1240 .read
= omap_tipb_bridge_read
,
1241 .write
= omap_tipb_bridge_write
,
1242 .endianness
= DEVICE_NATIVE_ENDIAN
,
1245 static void omap_tipb_bridge_reset(struct omap_tipb_bridge_s
*s
)
1247 s
->control
= 0xffff;
1250 s
->enh_control
= 0x000f;
1253 static struct omap_tipb_bridge_s
*omap_tipb_bridge_init(
1254 MemoryRegion
*memory
, hwaddr base
,
1255 qemu_irq abort_irq
, omap_clk clk
)
1257 struct omap_tipb_bridge_s
*s
= g_new0(struct omap_tipb_bridge_s
, 1);
1259 s
->abort
= abort_irq
;
1260 omap_tipb_bridge_reset(s
);
1262 memory_region_init_io(&s
->iomem
, NULL
, &omap_tipb_bridge_ops
, s
,
1263 "omap-tipb-bridge", 0x100);
1264 memory_region_add_subregion(memory
, base
, &s
->iomem
);
1269 /* Dummy Traffic Controller's Memory Interface */
1270 static uint64_t omap_tcmi_read(void *opaque
, hwaddr addr
,
1273 struct omap_mpu_state_s
*s
= opaque
;
1277 return omap_badwidth_read32(opaque
, addr
);
1281 case 0x00: /* IMIF_PRIO */
1282 case 0x04: /* EMIFS_PRIO */
1283 case 0x08: /* EMIFF_PRIO */
1284 case 0x0c: /* EMIFS_CONFIG */
1285 case 0x10: /* EMIFS_CS0_CONFIG */
1286 case 0x14: /* EMIFS_CS1_CONFIG */
1287 case 0x18: /* EMIFS_CS2_CONFIG */
1288 case 0x1c: /* EMIFS_CS3_CONFIG */
1289 case 0x24: /* EMIFF_MRS */
1290 case 0x28: /* TIMEOUT1 */
1291 case 0x2c: /* TIMEOUT2 */
1292 case 0x30: /* TIMEOUT3 */
1293 case 0x3c: /* EMIFF_SDRAM_CONFIG_2 */
1294 case 0x40: /* EMIFS_CFG_DYN_WAIT */
1295 return s
->tcmi_regs
[addr
>> 2];
1297 case 0x20: /* EMIFF_SDRAM_CONFIG */
1298 ret
= s
->tcmi_regs
[addr
>> 2];
1299 s
->tcmi_regs
[addr
>> 2] &= ~1; /* XXX: Clear SLRF on SDRAM access */
1300 /* XXX: We can try using the VGA_DIRTY flag for this */
1308 static void omap_tcmi_write(void *opaque
, hwaddr addr
,
1309 uint64_t value
, unsigned size
)
1311 struct omap_mpu_state_s
*s
= opaque
;
1314 omap_badwidth_write32(opaque
, addr
, value
);
1319 case 0x00: /* IMIF_PRIO */
1320 case 0x04: /* EMIFS_PRIO */
1321 case 0x08: /* EMIFF_PRIO */
1322 case 0x10: /* EMIFS_CS0_CONFIG */
1323 case 0x14: /* EMIFS_CS1_CONFIG */
1324 case 0x18: /* EMIFS_CS2_CONFIG */
1325 case 0x1c: /* EMIFS_CS3_CONFIG */
1326 case 0x20: /* EMIFF_SDRAM_CONFIG */
1327 case 0x24: /* EMIFF_MRS */
1328 case 0x28: /* TIMEOUT1 */
1329 case 0x2c: /* TIMEOUT2 */
1330 case 0x30: /* TIMEOUT3 */
1331 case 0x3c: /* EMIFF_SDRAM_CONFIG_2 */
1332 case 0x40: /* EMIFS_CFG_DYN_WAIT */
1333 s
->tcmi_regs
[addr
>> 2] = value
;
1335 case 0x0c: /* EMIFS_CONFIG */
1336 s
->tcmi_regs
[addr
>> 2] = (value
& 0xf) | (1 << 4);
1344 static const MemoryRegionOps omap_tcmi_ops
= {
1345 .read
= omap_tcmi_read
,
1346 .write
= omap_tcmi_write
,
1347 .endianness
= DEVICE_NATIVE_ENDIAN
,
1350 static void omap_tcmi_reset(struct omap_mpu_state_s
*mpu
)
1352 mpu
->tcmi_regs
[0x00 >> 2] = 0x00000000;
1353 mpu
->tcmi_regs
[0x04 >> 2] = 0x00000000;
1354 mpu
->tcmi_regs
[0x08 >> 2] = 0x00000000;
1355 mpu
->tcmi_regs
[0x0c >> 2] = 0x00000010;
1356 mpu
->tcmi_regs
[0x10 >> 2] = 0x0010fffb;
1357 mpu
->tcmi_regs
[0x14 >> 2] = 0x0010fffb;
1358 mpu
->tcmi_regs
[0x18 >> 2] = 0x0010fffb;
1359 mpu
->tcmi_regs
[0x1c >> 2] = 0x0010fffb;
1360 mpu
->tcmi_regs
[0x20 >> 2] = 0x00618800;
1361 mpu
->tcmi_regs
[0x24 >> 2] = 0x00000037;
1362 mpu
->tcmi_regs
[0x28 >> 2] = 0x00000000;
1363 mpu
->tcmi_regs
[0x2c >> 2] = 0x00000000;
1364 mpu
->tcmi_regs
[0x30 >> 2] = 0x00000000;
1365 mpu
->tcmi_regs
[0x3c >> 2] = 0x00000003;
1366 mpu
->tcmi_regs
[0x40 >> 2] = 0x00000000;
1369 static void omap_tcmi_init(MemoryRegion
*memory
, hwaddr base
,
1370 struct omap_mpu_state_s
*mpu
)
1372 memory_region_init_io(&mpu
->tcmi_iomem
, NULL
, &omap_tcmi_ops
, mpu
,
1373 "omap-tcmi", 0x100);
1374 memory_region_add_subregion(memory
, base
, &mpu
->tcmi_iomem
);
1375 omap_tcmi_reset(mpu
);
1378 /* Digital phase-locked loops control */
1385 static uint64_t omap_dpll_read(void *opaque
, hwaddr addr
,
1388 struct dpll_ctl_s
*s
= opaque
;
1391 return omap_badwidth_read16(opaque
, addr
);
1394 if (addr
== 0x00) /* CTL_REG */
1401 static void omap_dpll_write(void *opaque
, hwaddr addr
,
1402 uint64_t value
, unsigned size
)
1404 struct dpll_ctl_s
*s
= opaque
;
1406 static const int bypass_div
[4] = { 1, 2, 4, 4 };
1410 omap_badwidth_write16(opaque
, addr
, value
);
1414 if (addr
== 0x00) { /* CTL_REG */
1415 /* See omap_ulpd_pm_write() too */
1416 diff
= s
->mode
& value
;
1417 s
->mode
= value
& 0x2fff;
1418 if (diff
& (0x3ff << 2)) {
1419 if (value
& (1 << 4)) { /* PLL_ENABLE */
1420 div
= ((value
>> 5) & 3) + 1; /* PLL_DIV */
1421 mult
= MIN((value
>> 7) & 0x1f, 1); /* PLL_MULT */
1423 div
= bypass_div
[((value
>> 2) & 3)]; /* BYPASS_DIV */
1426 omap_clk_setrate(s
->dpll
, div
, mult
);
1429 /* Enter the desired mode. */
1430 s
->mode
= (s
->mode
& 0xfffe) | ((s
->mode
>> 4) & 1);
1432 /* Act as if the lock is restored. */
1439 static const MemoryRegionOps omap_dpll_ops
= {
1440 .read
= omap_dpll_read
,
1441 .write
= omap_dpll_write
,
1442 .endianness
= DEVICE_NATIVE_ENDIAN
,
1445 static void omap_dpll_reset(struct dpll_ctl_s
*s
)
1448 omap_clk_setrate(s
->dpll
, 1, 1);
1451 static struct dpll_ctl_s
*omap_dpll_init(MemoryRegion
*memory
,
1452 hwaddr base
, omap_clk clk
)
1454 struct dpll_ctl_s
*s
= g_malloc0(sizeof(*s
));
1455 memory_region_init_io(&s
->iomem
, NULL
, &omap_dpll_ops
, s
, "omap-dpll", 0x100);
1460 memory_region_add_subregion(memory
, base
, &s
->iomem
);
1464 /* MPU Clock/Reset/Power Mode Control */
1465 static uint64_t omap_clkm_read(void *opaque
, hwaddr addr
,
1468 struct omap_mpu_state_s
*s
= opaque
;
1471 return omap_badwidth_read16(opaque
, addr
);
1475 case 0x00: /* ARM_CKCTL */
1476 return s
->clkm
.arm_ckctl
;
1478 case 0x04: /* ARM_IDLECT1 */
1479 return s
->clkm
.arm_idlect1
;
1481 case 0x08: /* ARM_IDLECT2 */
1482 return s
->clkm
.arm_idlect2
;
1484 case 0x0c: /* ARM_EWUPCT */
1485 return s
->clkm
.arm_ewupct
;
1487 case 0x10: /* ARM_RSTCT1 */
1488 return s
->clkm
.arm_rstct1
;
1490 case 0x14: /* ARM_RSTCT2 */
1491 return s
->clkm
.arm_rstct2
;
1493 case 0x18: /* ARM_SYSST */
1494 return (s
->clkm
.clocking_scheme
<< 11) | s
->clkm
.cold_start
;
1496 case 0x1c: /* ARM_CKOUT1 */
1497 return s
->clkm
.arm_ckout1
;
1499 case 0x20: /* ARM_CKOUT2 */
1507 static inline void omap_clkm_ckctl_update(struct omap_mpu_state_s
*s
,
1508 uint16_t diff
, uint16_t value
)
1512 if (diff
& (1 << 14)) { /* ARM_INTHCK_SEL */
1513 if (value
& (1 << 14))
1516 clk
= omap_findclk(s
, "arminth_ck");
1517 omap_clk_reparent(clk
, omap_findclk(s
, "tc_ck"));
1520 if (diff
& (1 << 12)) { /* ARM_TIMXO */
1521 clk
= omap_findclk(s
, "armtim_ck");
1522 if (value
& (1 << 12))
1523 omap_clk_reparent(clk
, omap_findclk(s
, "clkin"));
1525 omap_clk_reparent(clk
, omap_findclk(s
, "ck_gen1"));
1528 if (diff
& (3 << 10)) { /* DSPMMUDIV */
1529 clk
= omap_findclk(s
, "dspmmu_ck");
1530 omap_clk_setrate(clk
, 1 << ((value
>> 10) & 3), 1);
1532 if (diff
& (3 << 8)) { /* TCDIV */
1533 clk
= omap_findclk(s
, "tc_ck");
1534 omap_clk_setrate(clk
, 1 << ((value
>> 8) & 3), 1);
1536 if (diff
& (3 << 6)) { /* DSPDIV */
1537 clk
= omap_findclk(s
, "dsp_ck");
1538 omap_clk_setrate(clk
, 1 << ((value
>> 6) & 3), 1);
1540 if (diff
& (3 << 4)) { /* ARMDIV */
1541 clk
= omap_findclk(s
, "arm_ck");
1542 omap_clk_setrate(clk
, 1 << ((value
>> 4) & 3), 1);
1544 if (diff
& (3 << 2)) { /* LCDDIV */
1545 clk
= omap_findclk(s
, "lcd_ck");
1546 omap_clk_setrate(clk
, 1 << ((value
>> 2) & 3), 1);
1548 if (diff
& (3 << 0)) { /* PERDIV */
1549 clk
= omap_findclk(s
, "armper_ck");
1550 omap_clk_setrate(clk
, 1 << ((value
>> 0) & 3), 1);
1554 static inline void omap_clkm_idlect1_update(struct omap_mpu_state_s
*s
,
1555 uint16_t diff
, uint16_t value
)
1559 if (value
& (1 << 11)) { /* SETARM_IDLE */
1560 cpu_interrupt(CPU(s
->cpu
), CPU_INTERRUPT_HALT
);
1562 if (!(value
& (1 << 10))) { /* WKUP_MODE */
1563 /* XXX: disable wakeup from IRQ */
1564 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN
);
1567 #define SET_CANIDLE(clock, bit) \
1568 if (diff & (1 << bit)) { \
1569 clk = omap_findclk(s, clock); \
1570 omap_clk_canidle(clk, (value >> bit) & 1); \
1572 SET_CANIDLE("mpuwd_ck", 0) /* IDLWDT_ARM */
1573 SET_CANIDLE("armxor_ck", 1) /* IDLXORP_ARM */
1574 SET_CANIDLE("mpuper_ck", 2) /* IDLPER_ARM */
1575 SET_CANIDLE("lcd_ck", 3) /* IDLLCD_ARM */
1576 SET_CANIDLE("lb_ck", 4) /* IDLLB_ARM */
1577 SET_CANIDLE("hsab_ck", 5) /* IDLHSAB_ARM */
1578 SET_CANIDLE("tipb_ck", 6) /* IDLIF_ARM */
1579 SET_CANIDLE("dma_ck", 6) /* IDLIF_ARM */
1580 SET_CANIDLE("tc_ck", 6) /* IDLIF_ARM */
1581 SET_CANIDLE("dpll1", 7) /* IDLDPLL_ARM */
1582 SET_CANIDLE("dpll2", 7) /* IDLDPLL_ARM */
1583 SET_CANIDLE("dpll3", 7) /* IDLDPLL_ARM */
1584 SET_CANIDLE("mpui_ck", 8) /* IDLAPI_ARM */
1585 SET_CANIDLE("armtim_ck", 9) /* IDLTIM_ARM */
1588 static inline void omap_clkm_idlect2_update(struct omap_mpu_state_s
*s
,
1589 uint16_t diff
, uint16_t value
)
1593 #define SET_ONOFF(clock, bit) \
1594 if (diff & (1 << bit)) { \
1595 clk = omap_findclk(s, clock); \
1596 omap_clk_onoff(clk, (value >> bit) & 1); \
1598 SET_ONOFF("mpuwd_ck", 0) /* EN_WDTCK */
1599 SET_ONOFF("armxor_ck", 1) /* EN_XORPCK */
1600 SET_ONOFF("mpuper_ck", 2) /* EN_PERCK */
1601 SET_ONOFF("lcd_ck", 3) /* EN_LCDCK */
1602 SET_ONOFF("lb_ck", 4) /* EN_LBCK */
1603 SET_ONOFF("hsab_ck", 5) /* EN_HSABCK */
1604 SET_ONOFF("mpui_ck", 6) /* EN_APICK */
1605 SET_ONOFF("armtim_ck", 7) /* EN_TIMCK */
1606 SET_CANIDLE("dma_ck", 8) /* DMACK_REQ */
1607 SET_ONOFF("arm_gpio_ck", 9) /* EN_GPIOCK */
1608 SET_ONOFF("lbfree_ck", 10) /* EN_LBFREECK */
1611 static inline void omap_clkm_ckout1_update(struct omap_mpu_state_s
*s
,
1612 uint16_t diff
, uint16_t value
)
1616 if (diff
& (3 << 4)) { /* TCLKOUT */
1617 clk
= omap_findclk(s
, "tclk_out");
1618 switch ((value
>> 4) & 3) {
1620 omap_clk_reparent(clk
, omap_findclk(s
, "ck_gen3"));
1621 omap_clk_onoff(clk
, 1);
1624 omap_clk_reparent(clk
, omap_findclk(s
, "tc_ck"));
1625 omap_clk_onoff(clk
, 1);
1628 omap_clk_onoff(clk
, 0);
1631 if (diff
& (3 << 2)) { /* DCLKOUT */
1632 clk
= omap_findclk(s
, "dclk_out");
1633 switch ((value
>> 2) & 3) {
1635 omap_clk_reparent(clk
, omap_findclk(s
, "dspmmu_ck"));
1638 omap_clk_reparent(clk
, omap_findclk(s
, "ck_gen2"));
1641 omap_clk_reparent(clk
, omap_findclk(s
, "dsp_ck"));
1644 omap_clk_reparent(clk
, omap_findclk(s
, "ck_ref14"));
1648 if (diff
& (3 << 0)) { /* ACLKOUT */
1649 clk
= omap_findclk(s
, "aclk_out");
1650 switch ((value
>> 0) & 3) {
1652 omap_clk_reparent(clk
, omap_findclk(s
, "ck_gen1"));
1653 omap_clk_onoff(clk
, 1);
1656 omap_clk_reparent(clk
, omap_findclk(s
, "arm_ck"));
1657 omap_clk_onoff(clk
, 1);
1660 omap_clk_reparent(clk
, omap_findclk(s
, "ck_ref14"));
1661 omap_clk_onoff(clk
, 1);
1664 omap_clk_onoff(clk
, 0);
1669 static void omap_clkm_write(void *opaque
, hwaddr addr
,
1670 uint64_t value
, unsigned size
)
1672 struct omap_mpu_state_s
*s
= opaque
;
1675 static const char *clkschemename
[8] = {
1676 "fully synchronous", "fully asynchronous", "synchronous scalable",
1677 "mix mode 1", "mix mode 2", "bypass mode", "mix mode 3", "mix mode 4",
1681 omap_badwidth_write16(opaque
, addr
, value
);
1686 case 0x00: /* ARM_CKCTL */
1687 diff
= s
->clkm
.arm_ckctl
^ value
;
1688 s
->clkm
.arm_ckctl
= value
& 0x7fff;
1689 omap_clkm_ckctl_update(s
, diff
, value
);
1692 case 0x04: /* ARM_IDLECT1 */
1693 diff
= s
->clkm
.arm_idlect1
^ value
;
1694 s
->clkm
.arm_idlect1
= value
& 0x0fff;
1695 omap_clkm_idlect1_update(s
, diff
, value
);
1698 case 0x08: /* ARM_IDLECT2 */
1699 diff
= s
->clkm
.arm_idlect2
^ value
;
1700 s
->clkm
.arm_idlect2
= value
& 0x07ff;
1701 omap_clkm_idlect2_update(s
, diff
, value
);
1704 case 0x0c: /* ARM_EWUPCT */
1705 s
->clkm
.arm_ewupct
= value
& 0x003f;
1708 case 0x10: /* ARM_RSTCT1 */
1709 diff
= s
->clkm
.arm_rstct1
^ value
;
1710 s
->clkm
.arm_rstct1
= value
& 0x0007;
1712 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET
);
1713 s
->clkm
.cold_start
= 0xa;
1715 if (diff
& ~value
& 4) { /* DSP_RST */
1717 omap_tipb_bridge_reset(s
->private_tipb
);
1718 omap_tipb_bridge_reset(s
->public_tipb
);
1720 if (diff
& 2) { /* DSP_EN */
1721 clk
= omap_findclk(s
, "dsp_ck");
1722 omap_clk_canidle(clk
, (~value
>> 1) & 1);
1726 case 0x14: /* ARM_RSTCT2 */
1727 s
->clkm
.arm_rstct2
= value
& 0x0001;
1730 case 0x18: /* ARM_SYSST */
1731 if ((s
->clkm
.clocking_scheme
^ (value
>> 11)) & 7) {
1732 s
->clkm
.clocking_scheme
= (value
>> 11) & 7;
1733 printf("%s: clocking scheme set to %s\n", __func__
,
1734 clkschemename
[s
->clkm
.clocking_scheme
]);
1736 s
->clkm
.cold_start
&= value
& 0x3f;
1739 case 0x1c: /* ARM_CKOUT1 */
1740 diff
= s
->clkm
.arm_ckout1
^ value
;
1741 s
->clkm
.arm_ckout1
= value
& 0x003f;
1742 omap_clkm_ckout1_update(s
, diff
, value
);
1745 case 0x20: /* ARM_CKOUT2 */
1751 static const MemoryRegionOps omap_clkm_ops
= {
1752 .read
= omap_clkm_read
,
1753 .write
= omap_clkm_write
,
1754 .endianness
= DEVICE_NATIVE_ENDIAN
,
1757 static uint64_t omap_clkdsp_read(void *opaque
, hwaddr addr
,
1760 struct omap_mpu_state_s
*s
= opaque
;
1761 CPUState
*cpu
= CPU(s
->cpu
);
1764 return omap_badwidth_read16(opaque
, addr
);
1768 case 0x04: /* DSP_IDLECT1 */
1769 return s
->clkm
.dsp_idlect1
;
1771 case 0x08: /* DSP_IDLECT2 */
1772 return s
->clkm
.dsp_idlect2
;
1774 case 0x14: /* DSP_RSTCT2 */
1775 return s
->clkm
.dsp_rstct2
;
1777 case 0x18: /* DSP_SYSST */
1778 return (s
->clkm
.clocking_scheme
<< 11) | s
->clkm
.cold_start
|
1779 (cpu
->halted
<< 6); /* Quite useless... */
1786 static inline void omap_clkdsp_idlect1_update(struct omap_mpu_state_s
*s
,
1787 uint16_t diff
, uint16_t value
)
1791 SET_CANIDLE("dspxor_ck", 1); /* IDLXORP_DSP */
1794 static inline void omap_clkdsp_idlect2_update(struct omap_mpu_state_s
*s
,
1795 uint16_t diff
, uint16_t value
)
1799 SET_ONOFF("dspxor_ck", 1); /* EN_XORPCK */
1802 static void omap_clkdsp_write(void *opaque
, hwaddr addr
,
1803 uint64_t value
, unsigned size
)
1805 struct omap_mpu_state_s
*s
= opaque
;
1809 omap_badwidth_write16(opaque
, addr
, value
);
1814 case 0x04: /* DSP_IDLECT1 */
1815 diff
= s
->clkm
.dsp_idlect1
^ value
;
1816 s
->clkm
.dsp_idlect1
= value
& 0x01f7;
1817 omap_clkdsp_idlect1_update(s
, diff
, value
);
1820 case 0x08: /* DSP_IDLECT2 */
1821 s
->clkm
.dsp_idlect2
= value
& 0x0037;
1822 diff
= s
->clkm
.dsp_idlect1
^ value
;
1823 omap_clkdsp_idlect2_update(s
, diff
, value
);
1826 case 0x14: /* DSP_RSTCT2 */
1827 s
->clkm
.dsp_rstct2
= value
& 0x0001;
1830 case 0x18: /* DSP_SYSST */
1831 s
->clkm
.cold_start
&= value
& 0x3f;
1839 static const MemoryRegionOps omap_clkdsp_ops
= {
1840 .read
= omap_clkdsp_read
,
1841 .write
= omap_clkdsp_write
,
1842 .endianness
= DEVICE_NATIVE_ENDIAN
,
1845 static void omap_clkm_reset(struct omap_mpu_state_s
*s
)
1847 if (s
->wdt
&& s
->wdt
->reset
)
1848 s
->clkm
.cold_start
= 0x6;
1849 s
->clkm
.clocking_scheme
= 0;
1850 omap_clkm_ckctl_update(s
, ~0, 0x3000);
1851 s
->clkm
.arm_ckctl
= 0x3000;
1852 omap_clkm_idlect1_update(s
, s
->clkm
.arm_idlect1
^ 0x0400, 0x0400);
1853 s
->clkm
.arm_idlect1
= 0x0400;
1854 omap_clkm_idlect2_update(s
, s
->clkm
.arm_idlect2
^ 0x0100, 0x0100);
1855 s
->clkm
.arm_idlect2
= 0x0100;
1856 s
->clkm
.arm_ewupct
= 0x003f;
1857 s
->clkm
.arm_rstct1
= 0x0000;
1858 s
->clkm
.arm_rstct2
= 0x0000;
1859 s
->clkm
.arm_ckout1
= 0x0015;
1860 s
->clkm
.dpll1_mode
= 0x2002;
1861 omap_clkdsp_idlect1_update(s
, s
->clkm
.dsp_idlect1
^ 0x0040, 0x0040);
1862 s
->clkm
.dsp_idlect1
= 0x0040;
1863 omap_clkdsp_idlect2_update(s
, ~0, 0x0000);
1864 s
->clkm
.dsp_idlect2
= 0x0000;
1865 s
->clkm
.dsp_rstct2
= 0x0000;
1868 static void omap_clkm_init(MemoryRegion
*memory
, hwaddr mpu_base
,
1869 hwaddr dsp_base
, struct omap_mpu_state_s
*s
)
1871 memory_region_init_io(&s
->clkm_iomem
, NULL
, &omap_clkm_ops
, s
,
1872 "omap-clkm", 0x100);
1873 memory_region_init_io(&s
->clkdsp_iomem
, NULL
, &omap_clkdsp_ops
, s
,
1874 "omap-clkdsp", 0x1000);
1876 s
->clkm
.arm_idlect1
= 0x03ff;
1877 s
->clkm
.arm_idlect2
= 0x0100;
1878 s
->clkm
.dsp_idlect1
= 0x0002;
1880 s
->clkm
.cold_start
= 0x3a;
1882 memory_region_add_subregion(memory
, mpu_base
, &s
->clkm_iomem
);
1883 memory_region_add_subregion(memory
, dsp_base
, &s
->clkdsp_iomem
);
1887 struct omap_mpuio_s
{
1891 qemu_irq handler
[16];
1913 static void omap_mpuio_set(void *opaque
, int line
, int level
)
1915 struct omap_mpuio_s
*s
= opaque
;
1916 uint16_t prev
= s
->inputs
;
1919 s
->inputs
|= 1 << line
;
1921 s
->inputs
&= ~(1 << line
);
1923 if (((1 << line
) & s
->dir
& ~s
->mask
) && s
->clk
) {
1924 if ((s
->edge
& s
->inputs
& ~prev
) | (~s
->edge
& ~s
->inputs
& prev
)) {
1925 s
->ints
|= 1 << line
;
1926 qemu_irq_raise(s
->irq
);
1929 if ((s
->event
& (1 << 0)) && /* SET_GPIO_EVENT_MODE */
1930 (s
->event
>> 1) == line
) /* PIN_SELECT */
1931 s
->latch
= s
->inputs
;
1935 static void omap_mpuio_kbd_update(struct omap_mpuio_s
*s
)
1938 uint8_t *row
, rows
= 0, cols
= ~s
->cols
;
1940 for (row
= s
->buttons
+ 4, i
= 1 << 4; i
; row
--, i
>>= 1)
1944 qemu_set_irq(s
->kbd_irq
, rows
&& !s
->kbd_mask
&& s
->clk
);
1945 s
->row_latch
= ~rows
;
1948 static uint64_t omap_mpuio_read(void *opaque
, hwaddr addr
,
1951 struct omap_mpuio_s
*s
= opaque
;
1952 int offset
= addr
& OMAP_MPUI_REG_MASK
;
1956 return omap_badwidth_read16(opaque
, addr
);
1960 case 0x00: /* INPUT_LATCH */
1963 case 0x04: /* OUTPUT_REG */
1966 case 0x08: /* IO_CNTL */
1969 case 0x10: /* KBR_LATCH */
1970 return s
->row_latch
;
1972 case 0x14: /* KBC_REG */
1975 case 0x18: /* GPIO_EVENT_MODE_REG */
1978 case 0x1c: /* GPIO_INT_EDGE_REG */
1981 case 0x20: /* KBD_INT */
1982 return (~s
->row_latch
& 0x1f) && !s
->kbd_mask
;
1984 case 0x24: /* GPIO_INT */
1988 qemu_irq_lower(s
->irq
);
1991 case 0x28: /* KBD_MASKIT */
1994 case 0x2c: /* GPIO_MASKIT */
1997 case 0x30: /* GPIO_DEBOUNCING_REG */
2000 case 0x34: /* GPIO_LATCH_REG */
2008 static void omap_mpuio_write(void *opaque
, hwaddr addr
,
2009 uint64_t value
, unsigned size
)
2011 struct omap_mpuio_s
*s
= opaque
;
2012 int offset
= addr
& OMAP_MPUI_REG_MASK
;
2017 omap_badwidth_write16(opaque
, addr
, value
);
2022 case 0x04: /* OUTPUT_REG */
2023 diff
= (s
->outputs
^ value
) & ~s
->dir
;
2025 while ((ln
= ctz32(diff
)) != 32) {
2027 qemu_set_irq(s
->handler
[ln
], (value
>> ln
) & 1);
2032 case 0x08: /* IO_CNTL */
2033 diff
= s
->outputs
& (s
->dir
^ value
);
2036 value
= s
->outputs
& ~s
->dir
;
2037 while ((ln
= ctz32(diff
)) != 32) {
2039 qemu_set_irq(s
->handler
[ln
], (value
>> ln
) & 1);
2044 case 0x14: /* KBC_REG */
2046 omap_mpuio_kbd_update(s
);
2049 case 0x18: /* GPIO_EVENT_MODE_REG */
2050 s
->event
= value
& 0x1f;
2053 case 0x1c: /* GPIO_INT_EDGE_REG */
2057 case 0x28: /* KBD_MASKIT */
2058 s
->kbd_mask
= value
& 1;
2059 omap_mpuio_kbd_update(s
);
2062 case 0x2c: /* GPIO_MASKIT */
2066 case 0x30: /* GPIO_DEBOUNCING_REG */
2067 s
->debounce
= value
& 0x1ff;
2070 case 0x00: /* INPUT_LATCH */
2071 case 0x10: /* KBR_LATCH */
2072 case 0x20: /* KBD_INT */
2073 case 0x24: /* GPIO_INT */
2074 case 0x34: /* GPIO_LATCH_REG */
2084 static const MemoryRegionOps omap_mpuio_ops
= {
2085 .read
= omap_mpuio_read
,
2086 .write
= omap_mpuio_write
,
2087 .endianness
= DEVICE_NATIVE_ENDIAN
,
2090 static void omap_mpuio_reset(struct omap_mpuio_s
*s
)
2102 s
->row_latch
= 0x1f;
2106 static void omap_mpuio_onoff(void *opaque
, int line
, int on
)
2108 struct omap_mpuio_s
*s
= opaque
;
2112 omap_mpuio_kbd_update(s
);
2115 static struct omap_mpuio_s
*omap_mpuio_init(MemoryRegion
*memory
,
2117 qemu_irq kbd_int
, qemu_irq gpio_int
, qemu_irq wakeup
,
2120 struct omap_mpuio_s
*s
= g_new0(struct omap_mpuio_s
, 1);
2123 s
->kbd_irq
= kbd_int
;
2125 s
->in
= qemu_allocate_irqs(omap_mpuio_set
, s
, 16);
2126 omap_mpuio_reset(s
);
2128 memory_region_init_io(&s
->iomem
, NULL
, &omap_mpuio_ops
, s
,
2129 "omap-mpuio", 0x800);
2130 memory_region_add_subregion(memory
, base
, &s
->iomem
);
2132 omap_clk_adduser(clk
, qemu_allocate_irq(omap_mpuio_onoff
, s
, 0));
2137 qemu_irq
*omap_mpuio_in_get(struct omap_mpuio_s
*s
)
2142 void omap_mpuio_out_set(struct omap_mpuio_s
*s
, int line
, qemu_irq handler
)
2144 if (line
>= 16 || line
< 0)
2145 hw_error("%s: No GPIO line %i\n", __func__
, line
);
2146 s
->handler
[line
] = handler
;
2149 void omap_mpuio_key(struct omap_mpuio_s
*s
, int row
, int col
, int down
)
2151 if (row
>= 5 || row
< 0)
2152 hw_error("%s: No key %i-%i\n", __func__
, col
, row
);
2155 s
->buttons
[row
] |= 1 << col
;
2157 s
->buttons
[row
] &= ~(1 << col
);
2159 omap_mpuio_kbd_update(s
);
2162 /* MicroWire Interface */
2163 struct omap_uwire_s
{
2174 uWireSlave
*chip
[4];
2177 static void omap_uwire_transfer_start(struct omap_uwire_s
*s
)
2179 int chipselect
= (s
->control
>> 10) & 3; /* INDEX */
2180 uWireSlave
*slave
= s
->chip
[chipselect
];
2182 if ((s
->control
>> 5) & 0x1f) { /* NB_BITS_WR */
2183 if (s
->control
& (1 << 12)) /* CS_CMD */
2184 if (slave
&& slave
->send
)
2185 slave
->send(slave
->opaque
,
2186 s
->txbuf
>> (16 - ((s
->control
>> 5) & 0x1f)));
2187 s
->control
&= ~(1 << 14); /* CSRB */
2188 /* TODO: depending on s->setup[4] bits [1:0] assert an IRQ or
2189 * a DRQ. When is the level IRQ supposed to be reset? */
2192 if ((s
->control
>> 0) & 0x1f) { /* NB_BITS_RD */
2193 if (s
->control
& (1 << 12)) /* CS_CMD */
2194 if (slave
&& slave
->receive
)
2195 s
->rxbuf
= slave
->receive(slave
->opaque
);
2196 s
->control
|= 1 << 15; /* RDRB */
2197 /* TODO: depending on s->setup[4] bits [1:0] assert an IRQ or
2198 * a DRQ. When is the level IRQ supposed to be reset? */
2202 static uint64_t omap_uwire_read(void *opaque
, hwaddr addr
, unsigned size
)
2204 struct omap_uwire_s
*s
= opaque
;
2205 int offset
= addr
& OMAP_MPUI_REG_MASK
;
2208 return omap_badwidth_read16(opaque
, addr
);
2212 case 0x00: /* RDR */
2213 s
->control
&= ~(1 << 15); /* RDRB */
2216 case 0x04: /* CSR */
2219 case 0x08: /* SR1 */
2221 case 0x0c: /* SR2 */
2223 case 0x10: /* SR3 */
2225 case 0x14: /* SR4 */
2227 case 0x18: /* SR5 */
2235 static void omap_uwire_write(void *opaque
, hwaddr addr
,
2236 uint64_t value
, unsigned size
)
2238 struct omap_uwire_s
*s
= opaque
;
2239 int offset
= addr
& OMAP_MPUI_REG_MASK
;
2242 omap_badwidth_write16(opaque
, addr
, value
);
2247 case 0x00: /* TDR */
2248 s
->txbuf
= value
; /* TD */
2249 if ((s
->setup
[4] & (1 << 2)) && /* AUTO_TX_EN */
2250 ((s
->setup
[4] & (1 << 3)) || /* CS_TOGGLE_TX_EN */
2251 (s
->control
& (1 << 12)))) { /* CS_CMD */
2252 s
->control
|= 1 << 14; /* CSRB */
2253 omap_uwire_transfer_start(s
);
2257 case 0x04: /* CSR */
2258 s
->control
= value
& 0x1fff;
2259 if (value
& (1 << 13)) /* START */
2260 omap_uwire_transfer_start(s
);
2263 case 0x08: /* SR1 */
2264 s
->setup
[0] = value
& 0x003f;
2267 case 0x0c: /* SR2 */
2268 s
->setup
[1] = value
& 0x0fc0;
2271 case 0x10: /* SR3 */
2272 s
->setup
[2] = value
& 0x0003;
2275 case 0x14: /* SR4 */
2276 s
->setup
[3] = value
& 0x0001;
2279 case 0x18: /* SR5 */
2280 s
->setup
[4] = value
& 0x000f;
2289 static const MemoryRegionOps omap_uwire_ops
= {
2290 .read
= omap_uwire_read
,
2291 .write
= omap_uwire_write
,
2292 .endianness
= DEVICE_NATIVE_ENDIAN
,
2295 static void omap_uwire_reset(struct omap_uwire_s
*s
)
2305 static struct omap_uwire_s
*omap_uwire_init(MemoryRegion
*system_memory
,
2307 qemu_irq txirq
, qemu_irq rxirq
,
2311 struct omap_uwire_s
*s
= g_new0(struct omap_uwire_s
, 1);
2316 omap_uwire_reset(s
);
2318 memory_region_init_io(&s
->iomem
, NULL
, &omap_uwire_ops
, s
, "omap-uwire", 0x800);
2319 memory_region_add_subregion(system_memory
, base
, &s
->iomem
);
2324 void omap_uwire_attach(struct omap_uwire_s
*s
,
2325 uWireSlave
*slave
, int chipselect
)
2327 if (chipselect
< 0 || chipselect
> 3) {
2328 error_report("%s: Bad chipselect %i", __func__
, chipselect
);
2332 s
->chip
[chipselect
] = slave
;
2335 /* Pseudonoise Pulse-Width Light Modulator */
2344 static void omap_pwl_update(struct omap_pwl_s
*s
)
2346 int output
= (s
->clk
&& s
->enable
) ? s
->level
: 0;
2348 if (output
!= s
->output
) {
2350 printf("%s: Backlight now at %i/256\n", __func__
, output
);
2354 static uint64_t omap_pwl_read(void *opaque
, hwaddr addr
, unsigned size
)
2356 struct omap_pwl_s
*s
= opaque
;
2357 int offset
= addr
& OMAP_MPUI_REG_MASK
;
2360 return omap_badwidth_read8(opaque
, addr
);
2364 case 0x00: /* PWL_LEVEL */
2366 case 0x04: /* PWL_CTRL */
2373 static void omap_pwl_write(void *opaque
, hwaddr addr
,
2374 uint64_t value
, unsigned size
)
2376 struct omap_pwl_s
*s
= opaque
;
2377 int offset
= addr
& OMAP_MPUI_REG_MASK
;
2380 omap_badwidth_write8(opaque
, addr
, value
);
2385 case 0x00: /* PWL_LEVEL */
2389 case 0x04: /* PWL_CTRL */
2390 s
->enable
= value
& 1;
2399 static const MemoryRegionOps omap_pwl_ops
= {
2400 .read
= omap_pwl_read
,
2401 .write
= omap_pwl_write
,
2402 .endianness
= DEVICE_NATIVE_ENDIAN
,
2405 static void omap_pwl_reset(struct omap_pwl_s
*s
)
2414 static void omap_pwl_clk_update(void *opaque
, int line
, int on
)
2416 struct omap_pwl_s
*s
= opaque
;
2422 static struct omap_pwl_s
*omap_pwl_init(MemoryRegion
*system_memory
,
2426 struct omap_pwl_s
*s
= g_malloc0(sizeof(*s
));
2430 memory_region_init_io(&s
->iomem
, NULL
, &omap_pwl_ops
, s
,
2432 memory_region_add_subregion(system_memory
, base
, &s
->iomem
);
2434 omap_clk_adduser(clk
, qemu_allocate_irq(omap_pwl_clk_update
, s
, 0));
2438 /* Pulse-Width Tone module */
2447 static uint64_t omap_pwt_read(void *opaque
, hwaddr addr
, unsigned size
)
2449 struct omap_pwt_s
*s
= opaque
;
2450 int offset
= addr
& OMAP_MPUI_REG_MASK
;
2453 return omap_badwidth_read8(opaque
, addr
);
2457 case 0x00: /* FRC */
2459 case 0x04: /* VCR */
2461 case 0x08: /* GCR */
2468 static void omap_pwt_write(void *opaque
, hwaddr addr
,
2469 uint64_t value
, unsigned size
)
2471 struct omap_pwt_s
*s
= opaque
;
2472 int offset
= addr
& OMAP_MPUI_REG_MASK
;
2475 omap_badwidth_write8(opaque
, addr
, value
);
2480 case 0x00: /* FRC */
2481 s
->frc
= value
& 0x3f;
2483 case 0x04: /* VRC */
2484 if ((value
^ s
->vrc
) & 1) {
2486 printf("%s: %iHz buzz on\n", __func__
, (int)
2487 /* 1.5 MHz from a 12-MHz or 13-MHz PWT_CLK */
2488 ((omap_clk_getrate(s
->clk
) >> 3) /
2489 /* Pre-multiplexer divider */
2490 ((s
->gcr
& 2) ? 1 : 154) /
2491 /* Octave multiplexer */
2492 (2 << (value
& 3)) *
2493 /* 101/107 divider */
2494 ((value
& (1 << 2)) ? 101 : 107) *
2496 ((value
& (1 << 3)) ? 49 : 55) *
2498 ((value
& (1 << 4)) ? 50 : 63) *
2499 /* 80/127 divider */
2500 ((value
& (1 << 5)) ? 80 : 127) /
2501 (107 * 55 * 63 * 127)));
2503 printf("%s: silence!\n", __func__
);
2505 s
->vrc
= value
& 0x7f;
2507 case 0x08: /* GCR */
2516 static const MemoryRegionOps omap_pwt_ops
= {
2517 .read
=omap_pwt_read
,
2518 .write
= omap_pwt_write
,
2519 .endianness
= DEVICE_NATIVE_ENDIAN
,
2522 static void omap_pwt_reset(struct omap_pwt_s
*s
)
2529 static struct omap_pwt_s
*omap_pwt_init(MemoryRegion
*system_memory
,
2533 struct omap_pwt_s
*s
= g_malloc0(sizeof(*s
));
2537 memory_region_init_io(&s
->iomem
, NULL
, &omap_pwt_ops
, s
,
2539 memory_region_add_subregion(system_memory
, base
, &s
->iomem
);
2543 /* Real-time Clock module */
2560 struct tm current_tm
;
2565 static void omap_rtc_interrupts_update(struct omap_rtc_s
*s
)
2567 /* s->alarm is level-triggered */
2568 qemu_set_irq(s
->alarm
, (s
->status
>> 6) & 1);
2571 static void omap_rtc_alarm_update(struct omap_rtc_s
*s
)
2573 s
->alarm_ti
= mktimegm(&s
->alarm_tm
);
2574 if (s
->alarm_ti
== -1)
2575 printf("%s: conversion failed\n", __func__
);
2578 static uint64_t omap_rtc_read(void *opaque
, hwaddr addr
, unsigned size
)
2580 struct omap_rtc_s
*s
= opaque
;
2581 int offset
= addr
& OMAP_MPUI_REG_MASK
;
2585 return omap_badwidth_read8(opaque
, addr
);
2589 case 0x00: /* SECONDS_REG */
2590 return to_bcd(s
->current_tm
.tm_sec
);
2592 case 0x04: /* MINUTES_REG */
2593 return to_bcd(s
->current_tm
.tm_min
);
2595 case 0x08: /* HOURS_REG */
2597 return ((s
->current_tm
.tm_hour
> 11) << 7) |
2598 to_bcd(((s
->current_tm
.tm_hour
- 1) % 12) + 1);
2600 return to_bcd(s
->current_tm
.tm_hour
);
2602 case 0x0c: /* DAYS_REG */
2603 return to_bcd(s
->current_tm
.tm_mday
);
2605 case 0x10: /* MONTHS_REG */
2606 return to_bcd(s
->current_tm
.tm_mon
+ 1);
2608 case 0x14: /* YEARS_REG */
2609 return to_bcd(s
->current_tm
.tm_year
% 100);
2611 case 0x18: /* WEEK_REG */
2612 return s
->current_tm
.tm_wday
;
2614 case 0x20: /* ALARM_SECONDS_REG */
2615 return to_bcd(s
->alarm_tm
.tm_sec
);
2617 case 0x24: /* ALARM_MINUTES_REG */
2618 return to_bcd(s
->alarm_tm
.tm_min
);
2620 case 0x28: /* ALARM_HOURS_REG */
2622 return ((s
->alarm_tm
.tm_hour
> 11) << 7) |
2623 to_bcd(((s
->alarm_tm
.tm_hour
- 1) % 12) + 1);
2625 return to_bcd(s
->alarm_tm
.tm_hour
);
2627 case 0x2c: /* ALARM_DAYS_REG */
2628 return to_bcd(s
->alarm_tm
.tm_mday
);
2630 case 0x30: /* ALARM_MONTHS_REG */
2631 return to_bcd(s
->alarm_tm
.tm_mon
+ 1);
2633 case 0x34: /* ALARM_YEARS_REG */
2634 return to_bcd(s
->alarm_tm
.tm_year
% 100);
2636 case 0x40: /* RTC_CTRL_REG */
2637 return (s
->pm_am
<< 3) | (s
->auto_comp
<< 2) |
2638 (s
->round
<< 1) | s
->running
;
2640 case 0x44: /* RTC_STATUS_REG */
2645 case 0x48: /* RTC_INTERRUPTS_REG */
2646 return s
->interrupts
;
2648 case 0x4c: /* RTC_COMP_LSB_REG */
2649 return ((uint16_t) s
->comp_reg
) & 0xff;
2651 case 0x50: /* RTC_COMP_MSB_REG */
2652 return ((uint16_t) s
->comp_reg
) >> 8;
2659 static void omap_rtc_write(void *opaque
, hwaddr addr
,
2660 uint64_t value
, unsigned size
)
2662 struct omap_rtc_s
*s
= opaque
;
2663 int offset
= addr
& OMAP_MPUI_REG_MASK
;
2668 omap_badwidth_write8(opaque
, addr
, value
);
2673 case 0x00: /* SECONDS_REG */
2675 printf("RTC SEC_REG <-- %02x\n", value
);
2677 s
->ti
-= s
->current_tm
.tm_sec
;
2678 s
->ti
+= from_bcd(value
);
2681 case 0x04: /* MINUTES_REG */
2683 printf("RTC MIN_REG <-- %02x\n", value
);
2685 s
->ti
-= s
->current_tm
.tm_min
* 60;
2686 s
->ti
+= from_bcd(value
) * 60;
2689 case 0x08: /* HOURS_REG */
2691 printf("RTC HRS_REG <-- %02x\n", value
);
2693 s
->ti
-= s
->current_tm
.tm_hour
* 3600;
2695 s
->ti
+= (from_bcd(value
& 0x3f) & 12) * 3600;
2696 s
->ti
+= ((value
>> 7) & 1) * 43200;
2698 s
->ti
+= from_bcd(value
& 0x3f) * 3600;
2701 case 0x0c: /* DAYS_REG */
2703 printf("RTC DAY_REG <-- %02x\n", value
);
2705 s
->ti
-= s
->current_tm
.tm_mday
* 86400;
2706 s
->ti
+= from_bcd(value
) * 86400;
2709 case 0x10: /* MONTHS_REG */
2711 printf("RTC MTH_REG <-- %02x\n", value
);
2713 memcpy(&new_tm
, &s
->current_tm
, sizeof(new_tm
));
2714 new_tm
.tm_mon
= from_bcd(value
);
2715 ti
[0] = mktimegm(&s
->current_tm
);
2716 ti
[1] = mktimegm(&new_tm
);
2718 if (ti
[0] != -1 && ti
[1] != -1) {
2722 /* A less accurate version */
2723 s
->ti
-= s
->current_tm
.tm_mon
* 2592000;
2724 s
->ti
+= from_bcd(value
) * 2592000;
2728 case 0x14: /* YEARS_REG */
2730 printf("RTC YRS_REG <-- %02x\n", value
);
2732 memcpy(&new_tm
, &s
->current_tm
, sizeof(new_tm
));
2733 new_tm
.tm_year
+= from_bcd(value
) - (new_tm
.tm_year
% 100);
2734 ti
[0] = mktimegm(&s
->current_tm
);
2735 ti
[1] = mktimegm(&new_tm
);
2737 if (ti
[0] != -1 && ti
[1] != -1) {
2741 /* A less accurate version */
2742 s
->ti
-= (time_t)(s
->current_tm
.tm_year
% 100) * 31536000;
2743 s
->ti
+= (time_t)from_bcd(value
) * 31536000;
2747 case 0x18: /* WEEK_REG */
2748 return; /* Ignored */
2750 case 0x20: /* ALARM_SECONDS_REG */
2752 printf("ALM SEC_REG <-- %02x\n", value
);
2754 s
->alarm_tm
.tm_sec
= from_bcd(value
);
2755 omap_rtc_alarm_update(s
);
2758 case 0x24: /* ALARM_MINUTES_REG */
2760 printf("ALM MIN_REG <-- %02x\n", value
);
2762 s
->alarm_tm
.tm_min
= from_bcd(value
);
2763 omap_rtc_alarm_update(s
);
2766 case 0x28: /* ALARM_HOURS_REG */
2768 printf("ALM HRS_REG <-- %02x\n", value
);
2771 s
->alarm_tm
.tm_hour
=
2772 ((from_bcd(value
& 0x3f)) % 12) +
2773 ((value
>> 7) & 1) * 12;
2775 s
->alarm_tm
.tm_hour
= from_bcd(value
);
2776 omap_rtc_alarm_update(s
);
2779 case 0x2c: /* ALARM_DAYS_REG */
2781 printf("ALM DAY_REG <-- %02x\n", value
);
2783 s
->alarm_tm
.tm_mday
= from_bcd(value
);
2784 omap_rtc_alarm_update(s
);
2787 case 0x30: /* ALARM_MONTHS_REG */
2789 printf("ALM MON_REG <-- %02x\n", value
);
2791 s
->alarm_tm
.tm_mon
= from_bcd(value
);
2792 omap_rtc_alarm_update(s
);
2795 case 0x34: /* ALARM_YEARS_REG */
2797 printf("ALM YRS_REG <-- %02x\n", value
);
2799 s
->alarm_tm
.tm_year
= from_bcd(value
);
2800 omap_rtc_alarm_update(s
);
2803 case 0x40: /* RTC_CTRL_REG */
2805 printf("RTC CONTROL <-- %02x\n", value
);
2807 s
->pm_am
= (value
>> 3) & 1;
2808 s
->auto_comp
= (value
>> 2) & 1;
2809 s
->round
= (value
>> 1) & 1;
2810 s
->running
= value
& 1;
2812 s
->status
|= s
->running
<< 1;
2815 case 0x44: /* RTC_STATUS_REG */
2817 printf("RTC STATUSL <-- %02x\n", value
);
2819 s
->status
&= ~((value
& 0xc0) ^ 0x80);
2820 omap_rtc_interrupts_update(s
);
2823 case 0x48: /* RTC_INTERRUPTS_REG */
2825 printf("RTC INTRS <-- %02x\n", value
);
2827 s
->interrupts
= value
;
2830 case 0x4c: /* RTC_COMP_LSB_REG */
2832 printf("RTC COMPLSB <-- %02x\n", value
);
2834 s
->comp_reg
&= 0xff00;
2835 s
->comp_reg
|= 0x00ff & value
;
2838 case 0x50: /* RTC_COMP_MSB_REG */
2840 printf("RTC COMPMSB <-- %02x\n", value
);
2842 s
->comp_reg
&= 0x00ff;
2843 s
->comp_reg
|= 0xff00 & (value
<< 8);
2852 static const MemoryRegionOps omap_rtc_ops
= {
2853 .read
= omap_rtc_read
,
2854 .write
= omap_rtc_write
,
2855 .endianness
= DEVICE_NATIVE_ENDIAN
,
2858 static void omap_rtc_tick(void *opaque
)
2860 struct omap_rtc_s
*s
= opaque
;
2863 /* Round to nearest full minute. */
2864 if (s
->current_tm
.tm_sec
< 30)
2865 s
->ti
-= s
->current_tm
.tm_sec
;
2867 s
->ti
+= 60 - s
->current_tm
.tm_sec
;
2872 localtime_r(&s
->ti
, &s
->current_tm
);
2874 if ((s
->interrupts
& 0x08) && s
->ti
== s
->alarm_ti
) {
2876 omap_rtc_interrupts_update(s
);
2879 if (s
->interrupts
& 0x04)
2880 switch (s
->interrupts
& 3) {
2883 qemu_irq_pulse(s
->irq
);
2886 if (s
->current_tm
.tm_sec
)
2889 qemu_irq_pulse(s
->irq
);
2892 if (s
->current_tm
.tm_sec
|| s
->current_tm
.tm_min
)
2895 qemu_irq_pulse(s
->irq
);
2898 if (s
->current_tm
.tm_sec
||
2899 s
->current_tm
.tm_min
|| s
->current_tm
.tm_hour
)
2902 qemu_irq_pulse(s
->irq
);
2912 * Every full hour add a rough approximation of the compensation
2913 * register to the 32kHz Timer (which drives the RTC) value.
2915 if (s
->auto_comp
&& !s
->current_tm
.tm_sec
&& !s
->current_tm
.tm_min
)
2916 s
->tick
+= s
->comp_reg
* 1000 / 32768;
2918 timer_mod(s
->clk
, s
->tick
);
2921 static void omap_rtc_reset(struct omap_rtc_s
*s
)
2931 s
->tick
= qemu_clock_get_ms(rtc_clock
);
2932 memset(&s
->alarm_tm
, 0, sizeof(s
->alarm_tm
));
2933 s
->alarm_tm
.tm_mday
= 0x01;
2935 qemu_get_timedate(&tm
, 0);
2936 s
->ti
= mktimegm(&tm
);
2938 omap_rtc_alarm_update(s
);
2942 static struct omap_rtc_s
*omap_rtc_init(MemoryRegion
*system_memory
,
2944 qemu_irq timerirq
, qemu_irq alarmirq
,
2947 struct omap_rtc_s
*s
= g_new0(struct omap_rtc_s
, 1);
2950 s
->alarm
= alarmirq
;
2951 s
->clk
= timer_new_ms(rtc_clock
, omap_rtc_tick
, s
);
2955 memory_region_init_io(&s
->iomem
, NULL
, &omap_rtc_ops
, s
,
2957 memory_region_add_subregion(system_memory
, base
, &s
->iomem
);
2962 /* Multi-channel Buffered Serial Port interfaces */
2963 struct omap_mcbsp_s
{
2984 QEMUTimer
*source_timer
;
2985 QEMUTimer
*sink_timer
;
2988 static void omap_mcbsp_intr_update(struct omap_mcbsp_s
*s
)
2992 switch ((s
->spcr
[0] >> 4) & 3) { /* RINTM */
2994 irq
= (s
->spcr
[0] >> 1) & 1; /* RRDY */
2997 irq
= (s
->spcr
[0] >> 3) & 1; /* RSYNCERR */
3005 qemu_irq_pulse(s
->rxirq
);
3007 switch ((s
->spcr
[1] >> 4) & 3) { /* XINTM */
3009 irq
= (s
->spcr
[1] >> 1) & 1; /* XRDY */
3012 irq
= (s
->spcr
[1] >> 3) & 1; /* XSYNCERR */
3020 qemu_irq_pulse(s
->txirq
);
3023 static void omap_mcbsp_rx_newdata(struct omap_mcbsp_s
*s
)
3025 if ((s
->spcr
[0] >> 1) & 1) /* RRDY */
3026 s
->spcr
[0] |= 1 << 2; /* RFULL */
3027 s
->spcr
[0] |= 1 << 1; /* RRDY */
3028 qemu_irq_raise(s
->rxdrq
);
3029 omap_mcbsp_intr_update(s
);
3032 static void omap_mcbsp_source_tick(void *opaque
)
3034 struct omap_mcbsp_s
*s
= opaque
;
3035 static const int bps
[8] = { 0, 1, 1, 2, 2, 2, -255, -255 };
3040 printf("%s: Rx FIFO overrun\n", __func__
);
3042 s
->rx_req
= s
->rx_rate
<< bps
[(s
->rcr
[0] >> 5) & 7];
3044 omap_mcbsp_rx_newdata(s
);
3045 timer_mod(s
->source_timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) +
3046 NANOSECONDS_PER_SECOND
);
3049 static void omap_mcbsp_rx_start(struct omap_mcbsp_s
*s
)
3051 if (!s
->codec
|| !s
->codec
->rts
)
3052 omap_mcbsp_source_tick(s
);
3053 else if (s
->codec
->in
.len
) {
3054 s
->rx_req
= s
->codec
->in
.len
;
3055 omap_mcbsp_rx_newdata(s
);
3059 static void omap_mcbsp_rx_stop(struct omap_mcbsp_s
*s
)
3061 timer_del(s
->source_timer
);
3064 static void omap_mcbsp_rx_done(struct omap_mcbsp_s
*s
)
3066 s
->spcr
[0] &= ~(1 << 1); /* RRDY */
3067 qemu_irq_lower(s
->rxdrq
);
3068 omap_mcbsp_intr_update(s
);
3071 static void omap_mcbsp_tx_newdata(struct omap_mcbsp_s
*s
)
3073 s
->spcr
[1] |= 1 << 1; /* XRDY */
3074 qemu_irq_raise(s
->txdrq
);
3075 omap_mcbsp_intr_update(s
);
3078 static void omap_mcbsp_sink_tick(void *opaque
)
3080 struct omap_mcbsp_s
*s
= opaque
;
3081 static const int bps
[8] = { 0, 1, 1, 2, 2, 2, -255, -255 };
3086 printf("%s: Tx FIFO underrun\n", __func__
);
3088 s
->tx_req
= s
->tx_rate
<< bps
[(s
->xcr
[0] >> 5) & 7];
3090 omap_mcbsp_tx_newdata(s
);
3091 timer_mod(s
->sink_timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) +
3092 NANOSECONDS_PER_SECOND
);
3095 static void omap_mcbsp_tx_start(struct omap_mcbsp_s
*s
)
3097 if (!s
->codec
|| !s
->codec
->cts
)
3098 omap_mcbsp_sink_tick(s
);
3099 else if (s
->codec
->out
.size
) {
3100 s
->tx_req
= s
->codec
->out
.size
;
3101 omap_mcbsp_tx_newdata(s
);
3105 static void omap_mcbsp_tx_done(struct omap_mcbsp_s
*s
)
3107 s
->spcr
[1] &= ~(1 << 1); /* XRDY */
3108 qemu_irq_lower(s
->txdrq
);
3109 omap_mcbsp_intr_update(s
);
3110 if (s
->codec
&& s
->codec
->cts
)
3111 s
->codec
->tx_swallow(s
->codec
->opaque
);
3114 static void omap_mcbsp_tx_stop(struct omap_mcbsp_s
*s
)
3117 omap_mcbsp_tx_done(s
);
3118 timer_del(s
->sink_timer
);
3121 static void omap_mcbsp_req_update(struct omap_mcbsp_s
*s
)
3123 int prev_rx_rate
, prev_tx_rate
;
3124 int rx_rate
= 0, tx_rate
= 0;
3125 int cpu_rate
= 1500000; /* XXX */
3127 /* TODO: check CLKSTP bit */
3128 if (s
->spcr
[1] & (1 << 6)) { /* GRST */
3129 if (s
->spcr
[0] & (1 << 0)) { /* RRST */
3130 if ((s
->srgr
[1] & (1 << 13)) && /* CLKSM */
3131 (s
->pcr
& (1 << 8))) { /* CLKRM */
3132 if (~s
->pcr
& (1 << 7)) /* SCLKME */
3133 rx_rate
= cpu_rate
/
3134 ((s
->srgr
[0] & 0xff) + 1); /* CLKGDV */
3137 rx_rate
= s
->codec
->rx_rate
;
3140 if (s
->spcr
[1] & (1 << 0)) { /* XRST */
3141 if ((s
->srgr
[1] & (1 << 13)) && /* CLKSM */
3142 (s
->pcr
& (1 << 9))) { /* CLKXM */
3143 if (~s
->pcr
& (1 << 7)) /* SCLKME */
3144 tx_rate
= cpu_rate
/
3145 ((s
->srgr
[0] & 0xff) + 1); /* CLKGDV */
3148 tx_rate
= s
->codec
->tx_rate
;
3151 prev_tx_rate
= s
->tx_rate
;
3152 prev_rx_rate
= s
->rx_rate
;
3153 s
->tx_rate
= tx_rate
;
3154 s
->rx_rate
= rx_rate
;
3157 s
->codec
->set_rate(s
->codec
->opaque
, rx_rate
, tx_rate
);
3159 if (!prev_tx_rate
&& tx_rate
)
3160 omap_mcbsp_tx_start(s
);
3161 else if (s
->tx_rate
&& !tx_rate
)
3162 omap_mcbsp_tx_stop(s
);
3164 if (!prev_rx_rate
&& rx_rate
)
3165 omap_mcbsp_rx_start(s
);
3166 else if (prev_tx_rate
&& !tx_rate
)
3167 omap_mcbsp_rx_stop(s
);
3170 static uint64_t omap_mcbsp_read(void *opaque
, hwaddr addr
,
3173 struct omap_mcbsp_s
*s
= opaque
;
3174 int offset
= addr
& OMAP_MPUI_REG_MASK
;
3178 return omap_badwidth_read16(opaque
, addr
);
3182 case 0x00: /* DRR2 */
3183 if (((s
->rcr
[0] >> 5) & 7) < 3) /* RWDLEN1 */
3186 case 0x02: /* DRR1 */
3187 if (s
->rx_req
< 2) {
3188 printf("%s: Rx FIFO underrun\n", __func__
);
3189 omap_mcbsp_rx_done(s
);
3192 if (s
->codec
&& s
->codec
->in
.len
>= 2) {
3193 ret
= s
->codec
->in
.fifo
[s
->codec
->in
.start
++] << 8;
3194 ret
|= s
->codec
->in
.fifo
[s
->codec
->in
.start
++];
3195 s
->codec
->in
.len
-= 2;
3199 omap_mcbsp_rx_done(s
);
3204 case 0x04: /* DXR2 */
3205 case 0x06: /* DXR1 */
3208 case 0x08: /* SPCR2 */
3210 case 0x0a: /* SPCR1 */
3212 case 0x0c: /* RCR2 */
3214 case 0x0e: /* RCR1 */
3216 case 0x10: /* XCR2 */
3218 case 0x12: /* XCR1 */
3220 case 0x14: /* SRGR2 */
3222 case 0x16: /* SRGR1 */
3224 case 0x18: /* MCR2 */
3226 case 0x1a: /* MCR1 */
3228 case 0x1c: /* RCERA */
3230 case 0x1e: /* RCERB */
3232 case 0x20: /* XCERA */
3234 case 0x22: /* XCERB */
3236 case 0x24: /* PCR0 */
3238 case 0x26: /* RCERC */
3240 case 0x28: /* RCERD */
3242 case 0x2a: /* XCERC */
3244 case 0x2c: /* XCERD */
3246 case 0x2e: /* RCERE */
3248 case 0x30: /* RCERF */
3250 case 0x32: /* XCERE */
3252 case 0x34: /* XCERF */
3254 case 0x36: /* RCERG */
3256 case 0x38: /* RCERH */
3258 case 0x3a: /* XCERG */
3260 case 0x3c: /* XCERH */
3268 static void omap_mcbsp_writeh(void *opaque
, hwaddr addr
,
3271 struct omap_mcbsp_s
*s
= opaque
;
3272 int offset
= addr
& OMAP_MPUI_REG_MASK
;
3275 case 0x00: /* DRR2 */
3276 case 0x02: /* DRR1 */
3280 case 0x04: /* DXR2 */
3281 if (((s
->xcr
[0] >> 5) & 7) < 3) /* XWDLEN1 */
3284 case 0x06: /* DXR1 */
3285 if (s
->tx_req
> 1) {
3287 if (s
->codec
&& s
->codec
->cts
) {
3288 s
->codec
->out
.fifo
[s
->codec
->out
.len
++] = (value
>> 8) & 0xff;
3289 s
->codec
->out
.fifo
[s
->codec
->out
.len
++] = (value
>> 0) & 0xff;
3292 omap_mcbsp_tx_done(s
);
3294 printf("%s: Tx FIFO overrun\n", __func__
);
3297 case 0x08: /* SPCR2 */
3298 s
->spcr
[1] &= 0x0002;
3299 s
->spcr
[1] |= 0x03f9 & value
;
3300 s
->spcr
[1] |= 0x0004 & (value
<< 2); /* XEMPTY := XRST */
3301 if (~value
& 1) /* XRST */
3303 omap_mcbsp_req_update(s
);
3305 case 0x0a: /* SPCR1 */
3306 s
->spcr
[0] &= 0x0006;
3307 s
->spcr
[0] |= 0xf8f9 & value
;
3308 if (value
& (1 << 15)) /* DLB */
3309 printf("%s: Digital Loopback mode enable attempt\n", __func__
);
3310 if (~value
& 1) { /* RRST */
3313 omap_mcbsp_rx_done(s
);
3315 omap_mcbsp_req_update(s
);
3318 case 0x0c: /* RCR2 */
3319 s
->rcr
[1] = value
& 0xffff;
3321 case 0x0e: /* RCR1 */
3322 s
->rcr
[0] = value
& 0x7fe0;
3324 case 0x10: /* XCR2 */
3325 s
->xcr
[1] = value
& 0xffff;
3327 case 0x12: /* XCR1 */
3328 s
->xcr
[0] = value
& 0x7fe0;
3330 case 0x14: /* SRGR2 */
3331 s
->srgr
[1] = value
& 0xffff;
3332 omap_mcbsp_req_update(s
);
3334 case 0x16: /* SRGR1 */
3335 s
->srgr
[0] = value
& 0xffff;
3336 omap_mcbsp_req_update(s
);
3338 case 0x18: /* MCR2 */
3339 s
->mcr
[1] = value
& 0x03e3;
3340 if (value
& 3) /* XMCM */
3341 printf("%s: Tx channel selection mode enable attempt\n", __func__
);
3343 case 0x1a: /* MCR1 */
3344 s
->mcr
[0] = value
& 0x03e1;
3345 if (value
& 1) /* RMCM */
3346 printf("%s: Rx channel selection mode enable attempt\n", __func__
);
3348 case 0x1c: /* RCERA */
3349 s
->rcer
[0] = value
& 0xffff;
3351 case 0x1e: /* RCERB */
3352 s
->rcer
[1] = value
& 0xffff;
3354 case 0x20: /* XCERA */
3355 s
->xcer
[0] = value
& 0xffff;
3357 case 0x22: /* XCERB */
3358 s
->xcer
[1] = value
& 0xffff;
3360 case 0x24: /* PCR0 */
3361 s
->pcr
= value
& 0x7faf;
3363 case 0x26: /* RCERC */
3364 s
->rcer
[2] = value
& 0xffff;
3366 case 0x28: /* RCERD */
3367 s
->rcer
[3] = value
& 0xffff;
3369 case 0x2a: /* XCERC */
3370 s
->xcer
[2] = value
& 0xffff;
3372 case 0x2c: /* XCERD */
3373 s
->xcer
[3] = value
& 0xffff;
3375 case 0x2e: /* RCERE */
3376 s
->rcer
[4] = value
& 0xffff;
3378 case 0x30: /* RCERF */
3379 s
->rcer
[5] = value
& 0xffff;
3381 case 0x32: /* XCERE */
3382 s
->xcer
[4] = value
& 0xffff;
3384 case 0x34: /* XCERF */
3385 s
->xcer
[5] = value
& 0xffff;
3387 case 0x36: /* RCERG */
3388 s
->rcer
[6] = value
& 0xffff;
3390 case 0x38: /* RCERH */
3391 s
->rcer
[7] = value
& 0xffff;
3393 case 0x3a: /* XCERG */
3394 s
->xcer
[6] = value
& 0xffff;
3396 case 0x3c: /* XCERH */
3397 s
->xcer
[7] = value
& 0xffff;
3404 static void omap_mcbsp_writew(void *opaque
, hwaddr addr
,
3407 struct omap_mcbsp_s
*s
= opaque
;
3408 int offset
= addr
& OMAP_MPUI_REG_MASK
;
3410 if (offset
== 0x04) { /* DXR */
3411 if (((s
->xcr
[0] >> 5) & 7) < 3) /* XWDLEN1 */
3413 if (s
->tx_req
> 3) {
3415 if (s
->codec
&& s
->codec
->cts
) {
3416 s
->codec
->out
.fifo
[s
->codec
->out
.len
++] =
3417 (value
>> 24) & 0xff;
3418 s
->codec
->out
.fifo
[s
->codec
->out
.len
++] =
3419 (value
>> 16) & 0xff;
3420 s
->codec
->out
.fifo
[s
->codec
->out
.len
++] =
3421 (value
>> 8) & 0xff;
3422 s
->codec
->out
.fifo
[s
->codec
->out
.len
++] =
3423 (value
>> 0) & 0xff;
3426 omap_mcbsp_tx_done(s
);
3428 printf("%s: Tx FIFO overrun\n", __func__
);
3432 omap_badwidth_write16(opaque
, addr
, value
);
3435 static void omap_mcbsp_write(void *opaque
, hwaddr addr
,
3436 uint64_t value
, unsigned size
)
3440 omap_mcbsp_writeh(opaque
, addr
, value
);
3443 omap_mcbsp_writew(opaque
, addr
, value
);
3446 omap_badwidth_write16(opaque
, addr
, value
);
3450 static const MemoryRegionOps omap_mcbsp_ops
= {
3451 .read
= omap_mcbsp_read
,
3452 .write
= omap_mcbsp_write
,
3453 .endianness
= DEVICE_NATIVE_ENDIAN
,
3456 static void omap_mcbsp_reset(struct omap_mcbsp_s
*s
)
3458 memset(&s
->spcr
, 0, sizeof(s
->spcr
));
3459 memset(&s
->rcr
, 0, sizeof(s
->rcr
));
3460 memset(&s
->xcr
, 0, sizeof(s
->xcr
));
3461 s
->srgr
[0] = 0x0001;
3462 s
->srgr
[1] = 0x2000;
3463 memset(&s
->mcr
, 0, sizeof(s
->mcr
));
3464 memset(&s
->pcr
, 0, sizeof(s
->pcr
));
3465 memset(&s
->rcer
, 0, sizeof(s
->rcer
));
3466 memset(&s
->xcer
, 0, sizeof(s
->xcer
));
3471 timer_del(s
->source_timer
);
3472 timer_del(s
->sink_timer
);
3475 static struct omap_mcbsp_s
*omap_mcbsp_init(MemoryRegion
*system_memory
,
3477 qemu_irq txirq
, qemu_irq rxirq
,
3478 qemu_irq
*dma
, omap_clk clk
)
3480 struct omap_mcbsp_s
*s
= g_new0(struct omap_mcbsp_s
, 1);
3486 s
->sink_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, omap_mcbsp_sink_tick
, s
);
3487 s
->source_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, omap_mcbsp_source_tick
, s
);
3488 omap_mcbsp_reset(s
);
3490 memory_region_init_io(&s
->iomem
, NULL
, &omap_mcbsp_ops
, s
, "omap-mcbsp", 0x800);
3491 memory_region_add_subregion(system_memory
, base
, &s
->iomem
);
3496 static void omap_mcbsp_i2s_swallow(void *opaque
, int line
, int level
)
3498 struct omap_mcbsp_s
*s
= opaque
;
3501 s
->rx_req
= s
->codec
->in
.len
;
3502 omap_mcbsp_rx_newdata(s
);
3506 static void omap_mcbsp_i2s_start(void *opaque
, int line
, int level
)
3508 struct omap_mcbsp_s
*s
= opaque
;
3511 s
->tx_req
= s
->codec
->out
.size
;
3512 omap_mcbsp_tx_newdata(s
);
3516 void omap_mcbsp_i2s_attach(struct omap_mcbsp_s
*s
, I2SCodec
*slave
)
3519 slave
->rx_swallow
= qemu_allocate_irq(omap_mcbsp_i2s_swallow
, s
, 0);
3520 slave
->tx_start
= qemu_allocate_irq(omap_mcbsp_i2s_start
, s
, 0);
3523 /* LED Pulse Generators */
3536 static void omap_lpg_tick(void *opaque
)
3538 struct omap_lpg_s
*s
= opaque
;
3541 timer_mod(s
->tm
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) + s
->period
- s
->on
);
3543 timer_mod(s
->tm
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) + s
->on
);
3545 s
->cycle
= !s
->cycle
;
3546 printf("%s: LED is %s\n", __func__
, s
->cycle
? "on" : "off");
3549 static void omap_lpg_update(struct omap_lpg_s
*s
)
3551 int64_t on
, period
= 1, ticks
= 1000;
3552 static const int per
[8] = { 1, 2, 4, 8, 12, 16, 20, 24 };
3554 if (~s
->control
& (1 << 6)) /* LPGRES */
3556 else if (s
->control
& (1 << 7)) /* PERM_ON */
3559 period
= muldiv64(ticks
, per
[s
->control
& 7], /* PERCTRL */
3561 on
= (s
->clk
&& s
->power
) ? muldiv64(ticks
,
3562 per
[(s
->control
>> 3) & 7], 256) : 0; /* ONCTRL */
3566 if (on
== period
&& s
->on
< s
->period
)
3567 printf("%s: LED is on\n", __func__
);
3568 else if (on
== 0 && s
->on
)
3569 printf("%s: LED is off\n", __func__
);
3570 else if (on
&& (on
!= s
->on
|| period
!= s
->period
)) {
3582 static void omap_lpg_reset(struct omap_lpg_s
*s
)
3590 static uint64_t omap_lpg_read(void *opaque
, hwaddr addr
, unsigned size
)
3592 struct omap_lpg_s
*s
= opaque
;
3593 int offset
= addr
& OMAP_MPUI_REG_MASK
;
3596 return omap_badwidth_read8(opaque
, addr
);
3600 case 0x00: /* LCR */
3603 case 0x04: /* PMR */
3611 static void omap_lpg_write(void *opaque
, hwaddr addr
,
3612 uint64_t value
, unsigned size
)
3614 struct omap_lpg_s
*s
= opaque
;
3615 int offset
= addr
& OMAP_MPUI_REG_MASK
;
3618 omap_badwidth_write8(opaque
, addr
, value
);
3623 case 0x00: /* LCR */
3624 if (~value
& (1 << 6)) /* LPGRES */
3626 s
->control
= value
& 0xff;
3630 case 0x04: /* PMR */
3631 s
->power
= value
& 0x01;
3641 static const MemoryRegionOps omap_lpg_ops
= {
3642 .read
= omap_lpg_read
,
3643 .write
= omap_lpg_write
,
3644 .endianness
= DEVICE_NATIVE_ENDIAN
,
3647 static void omap_lpg_clk_update(void *opaque
, int line
, int on
)
3649 struct omap_lpg_s
*s
= opaque
;
3655 static struct omap_lpg_s
*omap_lpg_init(MemoryRegion
*system_memory
,
3656 hwaddr base
, omap_clk clk
)
3658 struct omap_lpg_s
*s
= g_new0(struct omap_lpg_s
, 1);
3660 s
->tm
= timer_new_ms(QEMU_CLOCK_VIRTUAL
, omap_lpg_tick
, s
);
3664 memory_region_init_io(&s
->iomem
, NULL
, &omap_lpg_ops
, s
, "omap-lpg", 0x800);
3665 memory_region_add_subregion(system_memory
, base
, &s
->iomem
);
3667 omap_clk_adduser(clk
, qemu_allocate_irq(omap_lpg_clk_update
, s
, 0));
3672 /* MPUI Peripheral Bridge configuration */
3673 static uint64_t omap_mpui_io_read(void *opaque
, hwaddr addr
,
3677 return omap_badwidth_read16(opaque
, addr
);
3680 if (addr
== OMAP_MPUI_BASE
) /* CMR */
3687 static void omap_mpui_io_write(void *opaque
, hwaddr addr
,
3688 uint64_t value
, unsigned size
)
3690 /* FIXME: infinite loop */
3691 omap_badwidth_write16(opaque
, addr
, value
);
3694 static const MemoryRegionOps omap_mpui_io_ops
= {
3695 .read
= omap_mpui_io_read
,
3696 .write
= omap_mpui_io_write
,
3697 .endianness
= DEVICE_NATIVE_ENDIAN
,
3700 static void omap_setup_mpui_io(MemoryRegion
*system_memory
,
3701 struct omap_mpu_state_s
*mpu
)
3703 memory_region_init_io(&mpu
->mpui_io_iomem
, NULL
, &omap_mpui_io_ops
, mpu
,
3704 "omap-mpui-io", 0x7fff);
3705 memory_region_add_subregion(system_memory
, OMAP_MPUI_BASE
,
3706 &mpu
->mpui_io_iomem
);
3709 /* General chip reset */
3710 static void omap1_mpu_reset(void *opaque
)
3712 struct omap_mpu_state_s
*mpu
= opaque
;
3714 omap_dma_reset(mpu
->dma
);
3715 omap_mpu_timer_reset(mpu
->timer
[0]);
3716 omap_mpu_timer_reset(mpu
->timer
[1]);
3717 omap_mpu_timer_reset(mpu
->timer
[2]);
3718 omap_wd_timer_reset(mpu
->wdt
);
3719 omap_os_timer_reset(mpu
->os_timer
);
3720 omap_lcdc_reset(mpu
->lcd
);
3721 omap_ulpd_pm_reset(mpu
);
3722 omap_pin_cfg_reset(mpu
);
3723 omap_mpui_reset(mpu
);
3724 omap_tipb_bridge_reset(mpu
->private_tipb
);
3725 omap_tipb_bridge_reset(mpu
->public_tipb
);
3726 omap_dpll_reset(mpu
->dpll
[0]);
3727 omap_dpll_reset(mpu
->dpll
[1]);
3728 omap_dpll_reset(mpu
->dpll
[2]);
3729 omap_uart_reset(mpu
->uart
[0]);
3730 omap_uart_reset(mpu
->uart
[1]);
3731 omap_uart_reset(mpu
->uart
[2]);
3732 omap_mmc_reset(mpu
->mmc
);
3733 omap_mpuio_reset(mpu
->mpuio
);
3734 omap_uwire_reset(mpu
->microwire
);
3735 omap_pwl_reset(mpu
->pwl
);
3736 omap_pwt_reset(mpu
->pwt
);
3737 omap_rtc_reset(mpu
->rtc
);
3738 omap_mcbsp_reset(mpu
->mcbsp1
);
3739 omap_mcbsp_reset(mpu
->mcbsp2
);
3740 omap_mcbsp_reset(mpu
->mcbsp3
);
3741 omap_lpg_reset(mpu
->led
[0]);
3742 omap_lpg_reset(mpu
->led
[1]);
3743 omap_clkm_reset(mpu
);
3744 cpu_reset(CPU(mpu
->cpu
));
3747 static const struct omap_map_s
{
3752 } omap15xx_dsp_mm
[] = {
3754 { 0xe1010000, 0xfffb0000, 0x800, "UART1 BT" }, /* CS0 */
3755 { 0xe1010800, 0xfffb0800, 0x800, "UART2 COM" }, /* CS1 */
3756 { 0xe1011800, 0xfffb1800, 0x800, "McBSP1 audio" }, /* CS3 */
3757 { 0xe1012000, 0xfffb2000, 0x800, "MCSI2 communication" }, /* CS4 */
3758 { 0xe1012800, 0xfffb2800, 0x800, "MCSI1 BT u-Law" }, /* CS5 */
3759 { 0xe1013000, 0xfffb3000, 0x800, "uWire" }, /* CS6 */
3760 { 0xe1013800, 0xfffb3800, 0x800, "I^2C" }, /* CS7 */
3761 { 0xe1014000, 0xfffb4000, 0x800, "USB W2FC" }, /* CS8 */
3762 { 0xe1014800, 0xfffb4800, 0x800, "RTC" }, /* CS9 */
3763 { 0xe1015000, 0xfffb5000, 0x800, "MPUIO" }, /* CS10 */
3764 { 0xe1015800, 0xfffb5800, 0x800, "PWL" }, /* CS11 */
3765 { 0xe1016000, 0xfffb6000, 0x800, "PWT" }, /* CS12 */
3766 { 0xe1017000, 0xfffb7000, 0x800, "McBSP3" }, /* CS14 */
3767 { 0xe1017800, 0xfffb7800, 0x800, "MMC" }, /* CS15 */
3768 { 0xe1019000, 0xfffb9000, 0x800, "32-kHz timer" }, /* CS18 */
3769 { 0xe1019800, 0xfffb9800, 0x800, "UART3" }, /* CS19 */
3770 { 0xe101c800, 0xfffbc800, 0x800, "TIPB switches" }, /* CS25 */
3772 { 0xe101e000, 0xfffce000, 0x800, "GPIOs" }, /* CS28 */
3777 static void omap_setup_dsp_mapping(MemoryRegion
*system_memory
,
3778 const struct omap_map_s
*map
)
3782 for (; map
->phys_dsp
; map
++) {
3783 io
= g_new(MemoryRegion
, 1);
3784 memory_region_init_alias(io
, NULL
, map
->name
,
3785 system_memory
, map
->phys_mpu
, map
->size
);
3786 memory_region_add_subregion(system_memory
, map
->phys_dsp
, io
);
3790 void omap_mpu_wakeup(void *opaque
, int irq
, int req
)
3792 struct omap_mpu_state_s
*mpu
= opaque
;
3793 CPUState
*cpu
= CPU(mpu
->cpu
);
3796 cpu_interrupt(cpu
, CPU_INTERRUPT_EXITTB
);
3800 static const struct dma_irq_map omap1_dma_irq_map
[] = {
3801 { 0, OMAP_INT_DMA_CH0_6
},
3802 { 0, OMAP_INT_DMA_CH1_7
},
3803 { 0, OMAP_INT_DMA_CH2_8
},
3804 { 0, OMAP_INT_DMA_CH3
},
3805 { 0, OMAP_INT_DMA_CH4
},
3806 { 0, OMAP_INT_DMA_CH5
},
3807 { 1, OMAP_INT_1610_DMA_CH6
},
3808 { 1, OMAP_INT_1610_DMA_CH7
},
3809 { 1, OMAP_INT_1610_DMA_CH8
},
3810 { 1, OMAP_INT_1610_DMA_CH9
},
3811 { 1, OMAP_INT_1610_DMA_CH10
},
3812 { 1, OMAP_INT_1610_DMA_CH11
},
3813 { 1, OMAP_INT_1610_DMA_CH12
},
3814 { 1, OMAP_INT_1610_DMA_CH13
},
3815 { 1, OMAP_INT_1610_DMA_CH14
},
3816 { 1, OMAP_INT_1610_DMA_CH15
}
3819 /* DMA ports for OMAP1 */
3820 static int omap_validate_emiff_addr(struct omap_mpu_state_s
*s
,
3823 return range_covers_byte(OMAP_EMIFF_BASE
, s
->sdram_size
, addr
);
3826 static int omap_validate_emifs_addr(struct omap_mpu_state_s
*s
,
3829 return range_covers_byte(OMAP_EMIFS_BASE
, OMAP_EMIFF_BASE
- OMAP_EMIFS_BASE
,
3833 static int omap_validate_imif_addr(struct omap_mpu_state_s
*s
,
3836 return range_covers_byte(OMAP_IMIF_BASE
, s
->sram_size
, addr
);
3839 static int omap_validate_tipb_addr(struct omap_mpu_state_s
*s
,
3842 return range_covers_byte(0xfffb0000, 0xffff0000 - 0xfffb0000, addr
);
3845 static int omap_validate_local_addr(struct omap_mpu_state_s
*s
,
3848 return range_covers_byte(OMAP_LOCALBUS_BASE
, 0x1000000, addr
);
3851 static int omap_validate_tipb_mpui_addr(struct omap_mpu_state_s
*s
,
3854 return range_covers_byte(0xe1010000, 0xe1020004 - 0xe1010000, addr
);
3857 struct omap_mpu_state_s
*omap310_mpu_init(MemoryRegion
*dram
,
3858 const char *cpu_type
)
3861 struct omap_mpu_state_s
*s
= g_new0(struct omap_mpu_state_s
, 1);
3862 qemu_irq dma_irqs
[6];
3864 SysBusDevice
*busdev
;
3865 MemoryRegion
*system_memory
= get_system_memory();
3868 s
->mpu_model
= omap310
;
3869 s
->cpu
= ARM_CPU(cpu_create(cpu_type
));
3870 s
->sdram_size
= memory_region_size(dram
);
3871 s
->sram_size
= OMAP15XX_SRAM_SIZE
;
3873 s
->wakeup
= qemu_allocate_irq(omap_mpu_wakeup
, s
, 0);
3878 /* Memory-mapped stuff */
3879 memory_region_init_ram(&s
->imif_ram
, NULL
, "omap1.sram", s
->sram_size
,
3881 memory_region_add_subregion(system_memory
, OMAP_IMIF_BASE
, &s
->imif_ram
);
3883 omap_clkm_init(system_memory
, 0xfffece00, 0xe1008000, s
);
3885 s
->ih
[0] = qdev_new("omap-intc");
3886 qdev_prop_set_uint32(s
->ih
[0], "size", 0x100);
3887 omap_intc_set_iclk(OMAP_INTC(s
->ih
[0]), omap_findclk(s
, "arminth_ck"));
3888 busdev
= SYS_BUS_DEVICE(s
->ih
[0]);
3889 sysbus_realize_and_unref(busdev
, &error_fatal
);
3890 sysbus_connect_irq(busdev
, 0,
3891 qdev_get_gpio_in(DEVICE(s
->cpu
), ARM_CPU_IRQ
));
3892 sysbus_connect_irq(busdev
, 1,
3893 qdev_get_gpio_in(DEVICE(s
->cpu
), ARM_CPU_FIQ
));
3894 sysbus_mmio_map(busdev
, 0, 0xfffecb00);
3895 s
->ih
[1] = qdev_new("omap-intc");
3896 qdev_prop_set_uint32(s
->ih
[1], "size", 0x800);
3897 omap_intc_set_iclk(OMAP_INTC(s
->ih
[1]), omap_findclk(s
, "arminth_ck"));
3898 busdev
= SYS_BUS_DEVICE(s
->ih
[1]);
3899 sysbus_realize_and_unref(busdev
, &error_fatal
);
3900 sysbus_connect_irq(busdev
, 0,
3901 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_15XX_IH2_IRQ
));
3902 /* The second interrupt controller's FIQ output is not wired up */
3903 sysbus_mmio_map(busdev
, 0, 0xfffe0000);
3905 for (i
= 0; i
< 6; i
++) {
3906 dma_irqs
[i
] = qdev_get_gpio_in(s
->ih
[omap1_dma_irq_map
[i
].ih
],
3907 omap1_dma_irq_map
[i
].intr
);
3909 s
->dma
= omap_dma_init(0xfffed800, dma_irqs
, system_memory
,
3910 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_DMA_LCD
),
3911 s
, omap_findclk(s
, "dma_ck"), omap_dma_3_1
);
3913 s
->port
[emiff
].addr_valid
= omap_validate_emiff_addr
;
3914 s
->port
[emifs
].addr_valid
= omap_validate_emifs_addr
;
3915 s
->port
[imif
].addr_valid
= omap_validate_imif_addr
;
3916 s
->port
[tipb
].addr_valid
= omap_validate_tipb_addr
;
3917 s
->port
[local
].addr_valid
= omap_validate_local_addr
;
3918 s
->port
[tipb_mpui
].addr_valid
= omap_validate_tipb_mpui_addr
;
3920 /* Register SDRAM and SRAM DMA ports for fast transfers. */
3921 soc_dma_port_add_mem(s
->dma
, memory_region_get_ram_ptr(dram
),
3922 OMAP_EMIFF_BASE
, s
->sdram_size
);
3923 soc_dma_port_add_mem(s
->dma
, memory_region_get_ram_ptr(&s
->imif_ram
),
3924 OMAP_IMIF_BASE
, s
->sram_size
);
3926 s
->timer
[0] = omap_mpu_timer_init(system_memory
, 0xfffec500,
3927 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_TIMER1
),
3928 omap_findclk(s
, "mputim_ck"));
3929 s
->timer
[1] = omap_mpu_timer_init(system_memory
, 0xfffec600,
3930 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_TIMER2
),
3931 omap_findclk(s
, "mputim_ck"));
3932 s
->timer
[2] = omap_mpu_timer_init(system_memory
, 0xfffec700,
3933 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_TIMER3
),
3934 omap_findclk(s
, "mputim_ck"));
3936 s
->wdt
= omap_wd_timer_init(system_memory
, 0xfffec800,
3937 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_WD_TIMER
),
3938 omap_findclk(s
, "armwdt_ck"));
3940 s
->os_timer
= omap_os_timer_init(system_memory
, 0xfffb9000,
3941 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_OS_TIMER
),
3942 omap_findclk(s
, "clk32-kHz"));
3944 s
->lcd
= omap_lcdc_init(system_memory
, 0xfffec000,
3945 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_LCD_CTRL
),
3946 omap_dma_get_lcdch(s
->dma
),
3947 omap_findclk(s
, "lcd_ck"));
3949 omap_ulpd_pm_init(system_memory
, 0xfffe0800, s
);
3950 omap_pin_cfg_init(system_memory
, 0xfffe1000, s
);
3951 omap_id_init(system_memory
, s
);
3953 omap_mpui_init(system_memory
, 0xfffec900, s
);
3955 s
->private_tipb
= omap_tipb_bridge_init(system_memory
, 0xfffeca00,
3956 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_BRIDGE_PRIV
),
3957 omap_findclk(s
, "tipb_ck"));
3958 s
->public_tipb
= omap_tipb_bridge_init(system_memory
, 0xfffed300,
3959 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_BRIDGE_PUB
),
3960 omap_findclk(s
, "tipb_ck"));
3962 omap_tcmi_init(system_memory
, 0xfffecc00, s
);
3964 s
->uart
[0] = omap_uart_init(0xfffb0000,
3965 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_UART1
),
3966 omap_findclk(s
, "uart1_ck"),
3967 omap_findclk(s
, "uart1_ck"),
3968 s
->drq
[OMAP_DMA_UART1_TX
], s
->drq
[OMAP_DMA_UART1_RX
],
3971 s
->uart
[1] = omap_uart_init(0xfffb0800,
3972 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_UART2
),
3973 omap_findclk(s
, "uart2_ck"),
3974 omap_findclk(s
, "uart2_ck"),
3975 s
->drq
[OMAP_DMA_UART2_TX
], s
->drq
[OMAP_DMA_UART2_RX
],
3977 serial_hd(0) ? serial_hd(1) : NULL
);
3978 s
->uart
[2] = omap_uart_init(0xfffb9800,
3979 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_UART3
),
3980 omap_findclk(s
, "uart3_ck"),
3981 omap_findclk(s
, "uart3_ck"),
3982 s
->drq
[OMAP_DMA_UART3_TX
], s
->drq
[OMAP_DMA_UART3_RX
],
3984 serial_hd(0) && serial_hd(1) ? serial_hd(2) : NULL
);
3986 s
->dpll
[0] = omap_dpll_init(system_memory
, 0xfffecf00,
3987 omap_findclk(s
, "dpll1"));
3988 s
->dpll
[1] = omap_dpll_init(system_memory
, 0xfffed000,
3989 omap_findclk(s
, "dpll2"));
3990 s
->dpll
[2] = omap_dpll_init(system_memory
, 0xfffed100,
3991 omap_findclk(s
, "dpll3"));
3993 dinfo
= drive_get(IF_SD
, 0, 0);
3994 if (!dinfo
&& !qtest_enabled()) {
3995 warn_report("missing SecureDigital device");
3997 s
->mmc
= omap_mmc_init(0xfffb7800, system_memory
,
3998 dinfo
? blk_by_legacy_dinfo(dinfo
) : NULL
,
3999 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_OQN
),
4000 &s
->drq
[OMAP_DMA_MMC_TX
],
4001 omap_findclk(s
, "mmc_ck"));
4003 s
->mpuio
= omap_mpuio_init(system_memory
, 0xfffb5000,
4004 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_KEYBOARD
),
4005 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_MPUIO
),
4006 s
->wakeup
, omap_findclk(s
, "clk32-kHz"));
4008 s
->gpio
= qdev_new("omap-gpio");
4009 qdev_prop_set_int32(s
->gpio
, "mpu_model", s
->mpu_model
);
4010 omap_gpio_set_clk(OMAP1_GPIO(s
->gpio
), omap_findclk(s
, "arm_gpio_ck"));
4011 sysbus_realize_and_unref(SYS_BUS_DEVICE(s
->gpio
), &error_fatal
);
4012 sysbus_connect_irq(SYS_BUS_DEVICE(s
->gpio
), 0,
4013 qdev_get_gpio_in(s
->ih
[0], OMAP_INT_GPIO_BANK1
));
4014 sysbus_mmio_map(SYS_BUS_DEVICE(s
->gpio
), 0, 0xfffce000);
4016 s
->microwire
= omap_uwire_init(system_memory
, 0xfffb3000,
4017 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_uWireTX
),
4018 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_uWireRX
),
4019 s
->drq
[OMAP_DMA_UWIRE_TX
], omap_findclk(s
, "mpuper_ck"));
4021 s
->pwl
= omap_pwl_init(system_memory
, 0xfffb5800,
4022 omap_findclk(s
, "armxor_ck"));
4023 s
->pwt
= omap_pwt_init(system_memory
, 0xfffb6000,
4024 omap_findclk(s
, "armxor_ck"));
4026 s
->i2c
[0] = qdev_new("omap_i2c");
4027 qdev_prop_set_uint8(s
->i2c
[0], "revision", 0x11);
4028 omap_i2c_set_fclk(OMAP_I2C(s
->i2c
[0]), omap_findclk(s
, "mpuper_ck"));
4029 busdev
= SYS_BUS_DEVICE(s
->i2c
[0]);
4030 sysbus_realize_and_unref(busdev
, &error_fatal
);
4031 sysbus_connect_irq(busdev
, 0, qdev_get_gpio_in(s
->ih
[1], OMAP_INT_I2C
));
4032 sysbus_connect_irq(busdev
, 1, s
->drq
[OMAP_DMA_I2C_TX
]);
4033 sysbus_connect_irq(busdev
, 2, s
->drq
[OMAP_DMA_I2C_RX
]);
4034 sysbus_mmio_map(busdev
, 0, 0xfffb3800);
4036 s
->rtc
= omap_rtc_init(system_memory
, 0xfffb4800,
4037 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_RTC_TIMER
),
4038 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_RTC_ALARM
),
4039 omap_findclk(s
, "clk32-kHz"));
4041 s
->mcbsp1
= omap_mcbsp_init(system_memory
, 0xfffb1800,
4042 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_McBSP1TX
),
4043 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_McBSP1RX
),
4044 &s
->drq
[OMAP_DMA_MCBSP1_TX
], omap_findclk(s
, "dspxor_ck"));
4045 s
->mcbsp2
= omap_mcbsp_init(system_memory
, 0xfffb1000,
4046 qdev_get_gpio_in(s
->ih
[0],
4047 OMAP_INT_310_McBSP2_TX
),
4048 qdev_get_gpio_in(s
->ih
[0],
4049 OMAP_INT_310_McBSP2_RX
),
4050 &s
->drq
[OMAP_DMA_MCBSP2_TX
], omap_findclk(s
, "mpuper_ck"));
4051 s
->mcbsp3
= omap_mcbsp_init(system_memory
, 0xfffb7000,
4052 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_McBSP3TX
),
4053 qdev_get_gpio_in(s
->ih
[1], OMAP_INT_McBSP3RX
),
4054 &s
->drq
[OMAP_DMA_MCBSP3_TX
], omap_findclk(s
, "dspxor_ck"));
4056 s
->led
[0] = omap_lpg_init(system_memory
,
4057 0xfffbd000, omap_findclk(s
, "clk32-kHz"));
4058 s
->led
[1] = omap_lpg_init(system_memory
,
4059 0xfffbd800, omap_findclk(s
, "clk32-kHz"));
4061 /* Register mappings not currently implemented:
4062 * MCSI2 Comm fffb2000 - fffb27ff (not mapped on OMAP310)
4063 * MCSI1 Bluetooth fffb2800 - fffb2fff (not mapped on OMAP310)
4064 * USB W2FC fffb4000 - fffb47ff
4065 * Camera Interface fffb6800 - fffb6fff
4066 * USB Host fffba000 - fffba7ff
4067 * FAC fffba800 - fffbafff
4068 * HDQ/1-Wire fffbc000 - fffbc7ff
4069 * TIPB switches fffbc800 - fffbcfff
4070 * Mailbox fffcf000 - fffcf7ff
4071 * Local bus IF fffec100 - fffec1ff
4072 * Local bus MMU fffec200 - fffec2ff
4073 * DSP MMU fffed200 - fffed2ff
4076 omap_setup_dsp_mapping(system_memory
, omap15xx_dsp_mm
);
4077 omap_setup_mpui_io(system_memory
, s
);
4079 qemu_register_reset(omap1_mpu_reset
, s
);