2 * TI OMAP processors emulation.
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"
21 #include "qemu/error-report.h"
22 #include "qemu/main-loop.h"
23 #include "qapi/error.h"
24 #include "qemu-common.h"
26 #include "exec/address-spaces.h"
27 #include "hw/boards.h"
30 #include "hw/qdev-properties.h"
31 #include "hw/arm/boot.h"
32 #include "hw/arm/omap.h"
33 #include "sysemu/blockdev.h"
34 #include "sysemu/sysemu.h"
35 #include "hw/arm/soc_dma.h"
36 #include "sysemu/qtest.h"
37 #include "sysemu/reset.h"
38 #include "sysemu/runstate.h"
39 #include "qemu/range.h"
40 #include "hw/sysbus.h"
41 #include "qemu/cutils.h"
44 static inline void omap_log_badwidth(const char *funcname, hwaddr addr, int sz)
46 qemu_log_mask(LOG_GUEST_ERROR, "%s: %d-bit register %#08" HWADDR_PRIx "\n",
47 funcname, 8 * sz, addr);
50 /* Should signal the TCMI/GPMC */
51 uint32_t omap_badwidth_read8(void *opaque, hwaddr addr)
55 omap_log_badwidth(__func__, addr, 1);
56 cpu_physical_memory_read(addr, &ret, 1);
60 void omap_badwidth_write8(void *opaque, hwaddr addr,
65 omap_log_badwidth(__func__, addr, 1);
66 cpu_physical_memory_write(addr, &val8, 1);
69 uint32_t omap_badwidth_read16(void *opaque, hwaddr addr)
73 omap_log_badwidth(__func__, addr, 2);
74 cpu_physical_memory_read(addr, &ret, 2);
78 void omap_badwidth_write16(void *opaque, hwaddr addr,
81 uint16_t val16 = value;
83 omap_log_badwidth(__func__, addr, 2);
84 cpu_physical_memory_write(addr, &val16, 2);
87 uint32_t omap_badwidth_read32(void *opaque, hwaddr addr)
91 omap_log_badwidth(__func__, addr, 4);
92 cpu_physical_memory_read(addr, &ret, 4);
96 void omap_badwidth_write32(void *opaque, hwaddr addr,
99 omap_log_badwidth(__func__, addr, 4);
100 cpu_physical_memory_write(addr, &value, 4);
104 struct omap_mpu_timer_s {
122 static inline uint32_t omap_timer_read(struct omap_mpu_timer_s *timer)
124 uint64_t distance = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) - timer->time;
126 if (timer->st && timer->enable && timer->rate)
127 return timer->val - muldiv64(distance >> (timer->ptv + 1),
128 timer->rate, NANOSECONDS_PER_SECOND);
133 static inline void omap_timer_sync(struct omap_mpu_timer_s *timer)
135 timer->val = omap_timer_read(timer);
136 timer->time = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
139 static inline void omap_timer_update(struct omap_mpu_timer_s *timer)
143 if (timer->enable && timer->st && timer->rate) {
144 timer->val = timer->reset_val; /* Should skip this on clk enable */
145 expires = muldiv64((uint64_t) timer->val << (timer->ptv + 1),
146 NANOSECONDS_PER_SECOND, timer->rate);
148 /* If timer expiry would be sooner than in about 1 ms and
149 * auto-reload isn't set, then fire immediately. This is a hack
150 * to make systems like PalmOS run in acceptable time. PalmOS
151 * sets the interval to a very low value and polls the status bit
152 * in a busy loop when it wants to sleep just a couple of CPU
154 if (expires > (NANOSECONDS_PER_SECOND >> 10) || timer->ar) {
155 timer_mod(timer->timer, timer->time + expires);
157 qemu_bh_schedule(timer->tick);
160 timer_del(timer->timer);
163 static void omap_timer_fire(void *opaque)
165 struct omap_mpu_timer_s *timer = opaque;
173 /* Edge-triggered irq */
174 qemu_irq_pulse(timer->irq);
177 static void omap_timer_tick(void *opaque)
179 struct omap_mpu_timer_s *timer = (struct omap_mpu_timer_s *) opaque;
181 omap_timer_sync(timer);
182 omap_timer_fire(timer);
183 omap_timer_update(timer);
186 static void omap_timer_clk_update(void *opaque, int line, int on)
188 struct omap_mpu_timer_s *timer = (struct omap_mpu_timer_s *) opaque;
190 omap_timer_sync(timer);
191 timer->rate = on ? omap_clk_getrate(timer->clk) : 0;
192 omap_timer_update(timer);
195 static void omap_timer_clk_setup(struct omap_mpu_timer_s *timer)
197 omap_clk_adduser(timer->clk,
198 qemu_allocate_irq(omap_timer_clk_update, timer, 0));
199 timer->rate = omap_clk_getrate(timer->clk);
202 static uint64_t omap_mpu_timer_read(void *opaque, hwaddr addr,
205 struct omap_mpu_timer_s *s = (struct omap_mpu_timer_s *) opaque;
208 return omap_badwidth_read32(opaque, addr);
212 case 0x00: /* CNTL_TIMER */
213 return (s->enable << 5) | (s->ptv << 2) | (s->ar << 1) | s->st;
215 case 0x04: /* LOAD_TIM */
218 case 0x08: /* READ_TIM */
219 return omap_timer_read(s);
226 static void omap_mpu_timer_write(void *opaque, hwaddr addr,
227 uint64_t value, unsigned size)
229 struct omap_mpu_timer_s *s = (struct omap_mpu_timer_s *) opaque;
232 omap_badwidth_write32(opaque, addr, value);
237 case 0x00: /* CNTL_TIMER */
239 s->enable = (value >> 5) & 1;
240 s->ptv = (value >> 2) & 7;
241 s->ar = (value >> 1) & 1;
243 omap_timer_update(s);
246 case 0x04: /* LOAD_TIM */
247 s->reset_val = value;
250 case 0x08: /* READ_TIM */
259 static const MemoryRegionOps omap_mpu_timer_ops = {
260 .read = omap_mpu_timer_read,
261 .write = omap_mpu_timer_write,
262 .endianness = DEVICE_LITTLE_ENDIAN,
265 static void omap_mpu_timer_reset(struct omap_mpu_timer_s *s)
269 s->reset_val = 31337;
277 static struct omap_mpu_timer_s *omap_mpu_timer_init(MemoryRegion *system_memory,
279 qemu_irq irq, omap_clk clk)
281 struct omap_mpu_timer_s *s = g_new0(struct omap_mpu_timer_s, 1);
285 s->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, omap_timer_tick, s);
286 s->tick = qemu_bh_new(omap_timer_fire, s);
287 omap_mpu_timer_reset(s);
288 omap_timer_clk_setup(s);
290 memory_region_init_io(&s->iomem, NULL, &omap_mpu_timer_ops, s,
291 "omap-mpu-timer", 0x100);
293 memory_region_add_subregion(system_memory, base, &s->iomem);
299 struct omap_watchdog_timer_s {
300 struct omap_mpu_timer_s timer;
308 static uint64_t omap_wd_timer_read(void *opaque, hwaddr addr,
311 struct omap_watchdog_timer_s *s = (struct omap_watchdog_timer_s *) opaque;
314 return omap_badwidth_read16(opaque, addr);
318 case 0x00: /* CNTL_TIMER */
319 return (s->timer.ptv << 9) | (s->timer.ar << 8) |
320 (s->timer.st << 7) | (s->free << 1);
322 case 0x04: /* READ_TIMER */
323 return omap_timer_read(&s->timer);
325 case 0x08: /* TIMER_MODE */
326 return s->mode << 15;
333 static void omap_wd_timer_write(void *opaque, hwaddr addr,
334 uint64_t value, unsigned size)
336 struct omap_watchdog_timer_s *s = (struct omap_watchdog_timer_s *) opaque;
339 omap_badwidth_write16(opaque, addr, value);
344 case 0x00: /* CNTL_TIMER */
345 omap_timer_sync(&s->timer);
346 s->timer.ptv = (value >> 9) & 7;
347 s->timer.ar = (value >> 8) & 1;
348 s->timer.st = (value >> 7) & 1;
349 s->free = (value >> 1) & 1;
350 omap_timer_update(&s->timer);
353 case 0x04: /* LOAD_TIMER */
354 s->timer.reset_val = value & 0xffff;
357 case 0x08: /* TIMER_MODE */
358 if (!s->mode && ((value >> 15) & 1))
359 omap_clk_get(s->timer.clk);
360 s->mode |= (value >> 15) & 1;
361 if (s->last_wr == 0xf5) {
362 if ((value & 0xff) == 0xa0) {
365 omap_clk_put(s->timer.clk);
368 /* XXX: on T|E hardware somehow this has no effect,
369 * on Zire 71 it works as specified. */
371 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
374 s->last_wr = value & 0xff;
382 static const MemoryRegionOps omap_wd_timer_ops = {
383 .read = omap_wd_timer_read,
384 .write = omap_wd_timer_write,
385 .endianness = DEVICE_NATIVE_ENDIAN,
388 static void omap_wd_timer_reset(struct omap_watchdog_timer_s *s)
390 timer_del(s->timer.timer);
392 omap_clk_get(s->timer.clk);
398 s->timer.reset_val = 0xffff;
403 omap_timer_update(&s->timer);
406 static struct omap_watchdog_timer_s *omap_wd_timer_init(MemoryRegion *memory,
408 qemu_irq irq, omap_clk clk)
410 struct omap_watchdog_timer_s *s = g_new0(struct omap_watchdog_timer_s, 1);
414 s->timer.timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, omap_timer_tick, &s->timer);
415 omap_wd_timer_reset(s);
416 omap_timer_clk_setup(&s->timer);
418 memory_region_init_io(&s->iomem, NULL, &omap_wd_timer_ops, s,
419 "omap-wd-timer", 0x100);
420 memory_region_add_subregion(memory, base, &s->iomem);
426 struct omap_32khz_timer_s {
427 struct omap_mpu_timer_s timer;
431 static uint64_t omap_os_timer_read(void *opaque, hwaddr addr,
434 struct omap_32khz_timer_s *s = (struct omap_32khz_timer_s *) opaque;
435 int offset = addr & OMAP_MPUI_REG_MASK;
438 return omap_badwidth_read32(opaque, addr);
443 return s->timer.reset_val;
446 return omap_timer_read(&s->timer);
449 return (s->timer.ar << 3) | (s->timer.it_ena << 2) | s->timer.st;
458 static void omap_os_timer_write(void *opaque, hwaddr addr,
459 uint64_t value, unsigned size)
461 struct omap_32khz_timer_s *s = (struct omap_32khz_timer_s *) opaque;
462 int offset = addr & OMAP_MPUI_REG_MASK;
465 omap_badwidth_write32(opaque, addr, value);
471 s->timer.reset_val = value & 0x00ffffff;
479 s->timer.ar = (value >> 3) & 1;
480 s->timer.it_ena = (value >> 2) & 1;
481 if (s->timer.st != (value & 1) || (value & 2)) {
482 omap_timer_sync(&s->timer);
483 s->timer.enable = value & 1;
484 s->timer.st = value & 1;
485 omap_timer_update(&s->timer);
494 static const MemoryRegionOps omap_os_timer_ops = {
495 .read = omap_os_timer_read,
496 .write = omap_os_timer_write,
497 .endianness = DEVICE_NATIVE_ENDIAN,
500 static void omap_os_timer_reset(struct omap_32khz_timer_s *s)
502 timer_del(s->timer.timer);
505 s->timer.reset_val = 0x00ffffff;
512 static struct omap_32khz_timer_s *omap_os_timer_init(MemoryRegion *memory,
514 qemu_irq irq, omap_clk clk)
516 struct omap_32khz_timer_s *s = g_new0(struct omap_32khz_timer_s, 1);
520 s->timer.timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, omap_timer_tick, &s->timer);
521 omap_os_timer_reset(s);
522 omap_timer_clk_setup(&s->timer);
524 memory_region_init_io(&s->iomem, NULL, &omap_os_timer_ops, s,
525 "omap-os-timer", 0x800);
526 memory_region_add_subregion(memory, base, &s->iomem);
531 /* Ultra Low-Power Device Module */
532 static uint64_t omap_ulpd_pm_read(void *opaque, hwaddr addr,
535 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
539 return omap_badwidth_read16(opaque, addr);
543 case 0x14: /* IT_STATUS */
544 ret = s->ulpd_pm_regs[addr >> 2];
545 s->ulpd_pm_regs[addr >> 2] = 0;
546 qemu_irq_lower(qdev_get_gpio_in(s->ih[1], OMAP_INT_GAUGE_32K));
549 case 0x18: /* Reserved */
550 case 0x1c: /* Reserved */
551 case 0x20: /* Reserved */
552 case 0x28: /* Reserved */
553 case 0x2c: /* Reserved */
556 case 0x00: /* COUNTER_32_LSB */
557 case 0x04: /* COUNTER_32_MSB */
558 case 0x08: /* COUNTER_HIGH_FREQ_LSB */
559 case 0x0c: /* COUNTER_HIGH_FREQ_MSB */
560 case 0x10: /* GAUGING_CTRL */
561 case 0x24: /* SETUP_ANALOG_CELL3_ULPD1 */
562 case 0x30: /* CLOCK_CTRL */
563 case 0x34: /* SOFT_REQ */
564 case 0x38: /* COUNTER_32_FIQ */
565 case 0x3c: /* DPLL_CTRL */
566 case 0x40: /* STATUS_REQ */
567 /* XXX: check clk::usecount state for every clock */
568 case 0x48: /* LOCL_TIME */
569 case 0x4c: /* APLL_CTRL */
570 case 0x50: /* POWER_CTRL */
571 return s->ulpd_pm_regs[addr >> 2];
578 static inline void omap_ulpd_clk_update(struct omap_mpu_state_s *s,
579 uint16_t diff, uint16_t value)
581 if (diff & (1 << 4)) /* USB_MCLK_EN */
582 omap_clk_onoff(omap_findclk(s, "usb_clk0"), (value >> 4) & 1);
583 if (diff & (1 << 5)) /* DIS_USB_PVCI_CLK */
584 omap_clk_onoff(omap_findclk(s, "usb_w2fc_ck"), (~value >> 5) & 1);
587 static inline void omap_ulpd_req_update(struct omap_mpu_state_s *s,
588 uint16_t diff, uint16_t value)
590 if (diff & (1 << 0)) /* SOFT_DPLL_REQ */
591 omap_clk_canidle(omap_findclk(s, "dpll4"), (~value >> 0) & 1);
592 if (diff & (1 << 1)) /* SOFT_COM_REQ */
593 omap_clk_canidle(omap_findclk(s, "com_mclk_out"), (~value >> 1) & 1);
594 if (diff & (1 << 2)) /* SOFT_SDW_REQ */
595 omap_clk_canidle(omap_findclk(s, "bt_mclk_out"), (~value >> 2) & 1);
596 if (diff & (1 << 3)) /* SOFT_USB_REQ */
597 omap_clk_canidle(omap_findclk(s, "usb_clk0"), (~value >> 3) & 1);
600 static void omap_ulpd_pm_write(void *opaque, hwaddr addr,
601 uint64_t value, unsigned size)
603 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
606 static const int bypass_div[4] = { 1, 2, 4, 4 };
610 omap_badwidth_write16(opaque, addr, value);
615 case 0x00: /* COUNTER_32_LSB */
616 case 0x04: /* COUNTER_32_MSB */
617 case 0x08: /* COUNTER_HIGH_FREQ_LSB */
618 case 0x0c: /* COUNTER_HIGH_FREQ_MSB */
619 case 0x14: /* IT_STATUS */
620 case 0x40: /* STATUS_REQ */
624 case 0x10: /* GAUGING_CTRL */
625 /* Bits 0 and 1 seem to be confused in the OMAP 310 TRM */
626 if ((s->ulpd_pm_regs[addr >> 2] ^ value) & 1) {
627 now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
630 s->ulpd_gauge_start = now;
632 now -= s->ulpd_gauge_start;
635 ticks = muldiv64(now, 32768, NANOSECONDS_PER_SECOND);
636 s->ulpd_pm_regs[0x00 >> 2] = (ticks >> 0) & 0xffff;
637 s->ulpd_pm_regs[0x04 >> 2] = (ticks >> 16) & 0xffff;
638 if (ticks >> 32) /* OVERFLOW_32K */
639 s->ulpd_pm_regs[0x14 >> 2] |= 1 << 2;
641 /* High frequency ticks */
642 ticks = muldiv64(now, 12000000, NANOSECONDS_PER_SECOND);
643 s->ulpd_pm_regs[0x08 >> 2] = (ticks >> 0) & 0xffff;
644 s->ulpd_pm_regs[0x0c >> 2] = (ticks >> 16) & 0xffff;
645 if (ticks >> 32) /* OVERFLOW_HI_FREQ */
646 s->ulpd_pm_regs[0x14 >> 2] |= 1 << 1;
648 s->ulpd_pm_regs[0x14 >> 2] |= 1 << 0; /* IT_GAUGING */
649 qemu_irq_raise(qdev_get_gpio_in(s->ih[1], OMAP_INT_GAUGE_32K));
652 s->ulpd_pm_regs[addr >> 2] = value;
655 case 0x18: /* Reserved */
656 case 0x1c: /* Reserved */
657 case 0x20: /* Reserved */
658 case 0x28: /* Reserved */
659 case 0x2c: /* Reserved */
662 case 0x24: /* SETUP_ANALOG_CELL3_ULPD1 */
663 case 0x38: /* COUNTER_32_FIQ */
664 case 0x48: /* LOCL_TIME */
665 case 0x50: /* POWER_CTRL */
666 s->ulpd_pm_regs[addr >> 2] = value;
669 case 0x30: /* CLOCK_CTRL */
670 diff = s->ulpd_pm_regs[addr >> 2] ^ value;
671 s->ulpd_pm_regs[addr >> 2] = value & 0x3f;
672 omap_ulpd_clk_update(s, diff, value);
675 case 0x34: /* SOFT_REQ */
676 diff = s->ulpd_pm_regs[addr >> 2] ^ value;
677 s->ulpd_pm_regs[addr >> 2] = value & 0x1f;
678 omap_ulpd_req_update(s, diff, value);
681 case 0x3c: /* DPLL_CTRL */
682 /* XXX: OMAP310 TRM claims bit 3 is PLL_ENABLE, and bit 4 is
683 * omitted altogether, probably a typo. */
684 /* This register has identical semantics with DPLL(1:3) control
685 * registers, see omap_dpll_write() */
686 diff = s->ulpd_pm_regs[addr >> 2] & value;
687 s->ulpd_pm_regs[addr >> 2] = value & 0x2fff;
688 if (diff & (0x3ff << 2)) {
689 if (value & (1 << 4)) { /* PLL_ENABLE */
690 div = ((value >> 5) & 3) + 1; /* PLL_DIV */
691 mult = MIN((value >> 7) & 0x1f, 1); /* PLL_MULT */
693 div = bypass_div[((value >> 2) & 3)]; /* BYPASS_DIV */
696 omap_clk_setrate(omap_findclk(s, "dpll4"), div, mult);
699 /* Enter the desired mode. */
700 s->ulpd_pm_regs[addr >> 2] =
701 (s->ulpd_pm_regs[addr >> 2] & 0xfffe) |
702 ((s->ulpd_pm_regs[addr >> 2] >> 4) & 1);
704 /* Act as if the lock is restored. */
705 s->ulpd_pm_regs[addr >> 2] |= 2;
708 case 0x4c: /* APLL_CTRL */
709 diff = s->ulpd_pm_regs[addr >> 2] & value;
710 s->ulpd_pm_regs[addr >> 2] = value & 0xf;
711 if (diff & (1 << 0)) /* APLL_NDPLL_SWITCH */
712 omap_clk_reparent(omap_findclk(s, "ck_48m"), omap_findclk(s,
713 (value & (1 << 0)) ? "apll" : "dpll4"));
721 static const MemoryRegionOps omap_ulpd_pm_ops = {
722 .read = omap_ulpd_pm_read,
723 .write = omap_ulpd_pm_write,
724 .endianness = DEVICE_NATIVE_ENDIAN,
727 static void omap_ulpd_pm_reset(struct omap_mpu_state_s *mpu)
729 mpu->ulpd_pm_regs[0x00 >> 2] = 0x0001;
730 mpu->ulpd_pm_regs[0x04 >> 2] = 0x0000;
731 mpu->ulpd_pm_regs[0x08 >> 2] = 0x0001;
732 mpu->ulpd_pm_regs[0x0c >> 2] = 0x0000;
733 mpu->ulpd_pm_regs[0x10 >> 2] = 0x0000;
734 mpu->ulpd_pm_regs[0x18 >> 2] = 0x01;
735 mpu->ulpd_pm_regs[0x1c >> 2] = 0x01;
736 mpu->ulpd_pm_regs[0x20 >> 2] = 0x01;
737 mpu->ulpd_pm_regs[0x24 >> 2] = 0x03ff;
738 mpu->ulpd_pm_regs[0x28 >> 2] = 0x01;
739 mpu->ulpd_pm_regs[0x2c >> 2] = 0x01;
740 omap_ulpd_clk_update(mpu, mpu->ulpd_pm_regs[0x30 >> 2], 0x0000);
741 mpu->ulpd_pm_regs[0x30 >> 2] = 0x0000;
742 omap_ulpd_req_update(mpu, mpu->ulpd_pm_regs[0x34 >> 2], 0x0000);
743 mpu->ulpd_pm_regs[0x34 >> 2] = 0x0000;
744 mpu->ulpd_pm_regs[0x38 >> 2] = 0x0001;
745 mpu->ulpd_pm_regs[0x3c >> 2] = 0x2211;
746 mpu->ulpd_pm_regs[0x40 >> 2] = 0x0000; /* FIXME: dump a real STATUS_REQ */
747 mpu->ulpd_pm_regs[0x48 >> 2] = 0x960;
748 mpu->ulpd_pm_regs[0x4c >> 2] = 0x08;
749 mpu->ulpd_pm_regs[0x50 >> 2] = 0x08;
750 omap_clk_setrate(omap_findclk(mpu, "dpll4"), 1, 4);
751 omap_clk_reparent(omap_findclk(mpu, "ck_48m"), omap_findclk(mpu, "dpll4"));
754 static void omap_ulpd_pm_init(MemoryRegion *system_memory,
756 struct omap_mpu_state_s *mpu)
758 memory_region_init_io(&mpu->ulpd_pm_iomem, NULL, &omap_ulpd_pm_ops, mpu,
759 "omap-ulpd-pm", 0x800);
760 memory_region_add_subregion(system_memory, base, &mpu->ulpd_pm_iomem);
761 omap_ulpd_pm_reset(mpu);
764 /* OMAP Pin Configuration */
765 static uint64_t omap_pin_cfg_read(void *opaque, hwaddr addr,
768 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
771 return omap_badwidth_read32(opaque, addr);
775 case 0x00: /* FUNC_MUX_CTRL_0 */
776 case 0x04: /* FUNC_MUX_CTRL_1 */
777 case 0x08: /* FUNC_MUX_CTRL_2 */
778 return s->func_mux_ctrl[addr >> 2];
780 case 0x0c: /* COMP_MODE_CTRL_0 */
781 return s->comp_mode_ctrl[0];
783 case 0x10: /* FUNC_MUX_CTRL_3 */
784 case 0x14: /* FUNC_MUX_CTRL_4 */
785 case 0x18: /* FUNC_MUX_CTRL_5 */
786 case 0x1c: /* FUNC_MUX_CTRL_6 */
787 case 0x20: /* FUNC_MUX_CTRL_7 */
788 case 0x24: /* FUNC_MUX_CTRL_8 */
789 case 0x28: /* FUNC_MUX_CTRL_9 */
790 case 0x2c: /* FUNC_MUX_CTRL_A */
791 case 0x30: /* FUNC_MUX_CTRL_B */
792 case 0x34: /* FUNC_MUX_CTRL_C */
793 case 0x38: /* FUNC_MUX_CTRL_D */
794 return s->func_mux_ctrl[(addr >> 2) - 1];
796 case 0x40: /* PULL_DWN_CTRL_0 */
797 case 0x44: /* PULL_DWN_CTRL_1 */
798 case 0x48: /* PULL_DWN_CTRL_2 */
799 case 0x4c: /* PULL_DWN_CTRL_3 */
800 return s->pull_dwn_ctrl[(addr & 0xf) >> 2];
802 case 0x50: /* GATE_INH_CTRL_0 */
803 return s->gate_inh_ctrl[0];
805 case 0x60: /* VOLTAGE_CTRL_0 */
806 return s->voltage_ctrl[0];
808 case 0x70: /* TEST_DBG_CTRL_0 */
809 return s->test_dbg_ctrl[0];
811 case 0x80: /* MOD_CONF_CTRL_0 */
812 return s->mod_conf_ctrl[0];
819 static inline void omap_pin_funcmux0_update(struct omap_mpu_state_s *s,
820 uint32_t diff, uint32_t value)
823 if (diff & (1 << 9)) /* BLUETOOTH */
824 omap_clk_onoff(omap_findclk(s, "bt_mclk_out"),
826 if (diff & (1 << 7)) /* USB.CLKO */
827 omap_clk_onoff(omap_findclk(s, "usb.clko"),
832 static inline void omap_pin_funcmux1_update(struct omap_mpu_state_s *s,
833 uint32_t diff, uint32_t value)
836 if (diff & (1U << 31)) {
837 /* MCBSP3_CLK_HIZ_DI */
838 omap_clk_onoff(omap_findclk(s, "mcbsp3.clkx"), (value >> 31) & 1);
840 if (diff & (1 << 1)) {
842 omap_clk_onoff(omap_findclk(s, "clk32k_out"), (~value >> 1) & 1);
847 static inline void omap_pin_modconf1_update(struct omap_mpu_state_s *s,
848 uint32_t diff, uint32_t value)
850 if (diff & (1U << 31)) {
851 /* CONF_MOD_UART3_CLK_MODE_R */
852 omap_clk_reparent(omap_findclk(s, "uart3_ck"),
853 omap_findclk(s, ((value >> 31) & 1) ?
854 "ck_48m" : "armper_ck"));
856 if (diff & (1 << 30)) /* CONF_MOD_UART2_CLK_MODE_R */
857 omap_clk_reparent(omap_findclk(s, "uart2_ck"),
858 omap_findclk(s, ((value >> 30) & 1) ?
859 "ck_48m" : "armper_ck"));
860 if (diff & (1 << 29)) /* CONF_MOD_UART1_CLK_MODE_R */
861 omap_clk_reparent(omap_findclk(s, "uart1_ck"),
862 omap_findclk(s, ((value >> 29) & 1) ?
863 "ck_48m" : "armper_ck"));
864 if (diff & (1 << 23)) /* CONF_MOD_MMC_SD_CLK_REQ_R */
865 omap_clk_reparent(omap_findclk(s, "mmc_ck"),
866 omap_findclk(s, ((value >> 23) & 1) ?
867 "ck_48m" : "armper_ck"));
868 if (diff & (1 << 12)) /* CONF_MOD_COM_MCLK_12_48_S */
869 omap_clk_reparent(omap_findclk(s, "com_mclk_out"),
870 omap_findclk(s, ((value >> 12) & 1) ?
871 "ck_48m" : "armper_ck"));
872 if (diff & (1 << 9)) /* CONF_MOD_USB_HOST_HHC_UHO */
873 omap_clk_onoff(omap_findclk(s, "usb_hhc_ck"), (value >> 9) & 1);
876 static void omap_pin_cfg_write(void *opaque, hwaddr addr,
877 uint64_t value, unsigned size)
879 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
883 omap_badwidth_write32(opaque, addr, value);
888 case 0x00: /* FUNC_MUX_CTRL_0 */
889 diff = s->func_mux_ctrl[addr >> 2] ^ value;
890 s->func_mux_ctrl[addr >> 2] = value;
891 omap_pin_funcmux0_update(s, diff, value);
894 case 0x04: /* FUNC_MUX_CTRL_1 */
895 diff = s->func_mux_ctrl[addr >> 2] ^ value;
896 s->func_mux_ctrl[addr >> 2] = value;
897 omap_pin_funcmux1_update(s, diff, value);
900 case 0x08: /* FUNC_MUX_CTRL_2 */
901 s->func_mux_ctrl[addr >> 2] = value;
904 case 0x0c: /* COMP_MODE_CTRL_0 */
905 s->comp_mode_ctrl[0] = value;
906 s->compat1509 = (value != 0x0000eaef);
907 omap_pin_funcmux0_update(s, ~0, s->func_mux_ctrl[0]);
908 omap_pin_funcmux1_update(s, ~0, s->func_mux_ctrl[1]);
911 case 0x10: /* FUNC_MUX_CTRL_3 */
912 case 0x14: /* FUNC_MUX_CTRL_4 */
913 case 0x18: /* FUNC_MUX_CTRL_5 */
914 case 0x1c: /* FUNC_MUX_CTRL_6 */
915 case 0x20: /* FUNC_MUX_CTRL_7 */
916 case 0x24: /* FUNC_MUX_CTRL_8 */
917 case 0x28: /* FUNC_MUX_CTRL_9 */
918 case 0x2c: /* FUNC_MUX_CTRL_A */
919 case 0x30: /* FUNC_MUX_CTRL_B */
920 case 0x34: /* FUNC_MUX_CTRL_C */
921 case 0x38: /* FUNC_MUX_CTRL_D */
922 s->func_mux_ctrl[(addr >> 2) - 1] = value;
925 case 0x40: /* PULL_DWN_CTRL_0 */
926 case 0x44: /* PULL_DWN_CTRL_1 */
927 case 0x48: /* PULL_DWN_CTRL_2 */
928 case 0x4c: /* PULL_DWN_CTRL_3 */
929 s->pull_dwn_ctrl[(addr & 0xf) >> 2] = value;
932 case 0x50: /* GATE_INH_CTRL_0 */
933 s->gate_inh_ctrl[0] = value;
936 case 0x60: /* VOLTAGE_CTRL_0 */
937 s->voltage_ctrl[0] = value;
940 case 0x70: /* TEST_DBG_CTRL_0 */
941 s->test_dbg_ctrl[0] = value;
944 case 0x80: /* MOD_CONF_CTRL_0 */
945 diff = s->mod_conf_ctrl[0] ^ value;
946 s->mod_conf_ctrl[0] = value;
947 omap_pin_modconf1_update(s, diff, value);
955 static const MemoryRegionOps omap_pin_cfg_ops = {
956 .read = omap_pin_cfg_read,
957 .write = omap_pin_cfg_write,
958 .endianness = DEVICE_NATIVE_ENDIAN,
961 static void omap_pin_cfg_reset(struct omap_mpu_state_s *mpu)
963 /* Start in Compatibility Mode. */
965 omap_pin_funcmux0_update(mpu, mpu->func_mux_ctrl[0], 0);
966 omap_pin_funcmux1_update(mpu, mpu->func_mux_ctrl[1], 0);
967 omap_pin_modconf1_update(mpu, mpu->mod_conf_ctrl[0], 0);
968 memset(mpu->func_mux_ctrl, 0, sizeof(mpu->func_mux_ctrl));
969 memset(mpu->comp_mode_ctrl, 0, sizeof(mpu->comp_mode_ctrl));
970 memset(mpu->pull_dwn_ctrl, 0, sizeof(mpu->pull_dwn_ctrl));
971 memset(mpu->gate_inh_ctrl, 0, sizeof(mpu->gate_inh_ctrl));
972 memset(mpu->voltage_ctrl, 0, sizeof(mpu->voltage_ctrl));
973 memset(mpu->test_dbg_ctrl, 0, sizeof(mpu->test_dbg_ctrl));
974 memset(mpu->mod_conf_ctrl, 0, sizeof(mpu->mod_conf_ctrl));
977 static void omap_pin_cfg_init(MemoryRegion *system_memory,
979 struct omap_mpu_state_s *mpu)
981 memory_region_init_io(&mpu->pin_cfg_iomem, NULL, &omap_pin_cfg_ops, mpu,
982 "omap-pin-cfg", 0x800);
983 memory_region_add_subregion(system_memory, base, &mpu->pin_cfg_iomem);
984 omap_pin_cfg_reset(mpu);
987 /* Device Identification, Die Identification */
988 static uint64_t omap_id_read(void *opaque, hwaddr addr,
991 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
994 return omap_badwidth_read32(opaque, addr);
998 case 0xfffe1800: /* DIE_ID_LSB */
1000 case 0xfffe1804: /* DIE_ID_MSB */
1003 case 0xfffe2000: /* PRODUCT_ID_LSB */
1005 case 0xfffe2004: /* PRODUCT_ID_MSB */
1008 case 0xfffed400: /* JTAG_ID_LSB */
1009 switch (s->mpu_model) {
1015 hw_error("%s: bad mpu model\n", __func__);
1019 case 0xfffed404: /* JTAG_ID_MSB */
1020 switch (s->mpu_model) {
1026 hw_error("%s: bad mpu model\n", __func__);
1035 static void omap_id_write(void *opaque, hwaddr addr,
1036 uint64_t value, unsigned size)
1039 omap_badwidth_write32(opaque, addr, value);
1046 static const MemoryRegionOps omap_id_ops = {
1047 .read = omap_id_read,
1048 .write = omap_id_write,
1049 .endianness = DEVICE_NATIVE_ENDIAN,
1052 static void omap_id_init(MemoryRegion *memory, struct omap_mpu_state_s *mpu)
1054 memory_region_init_io(&mpu->id_iomem, NULL, &omap_id_ops, mpu,
1055 "omap-id", 0x100000000ULL);
1056 memory_region_init_alias(&mpu->id_iomem_e18, NULL, "omap-id-e18", &mpu->id_iomem,
1058 memory_region_add_subregion(memory, 0xfffe1800, &mpu->id_iomem_e18);
1059 memory_region_init_alias(&mpu->id_iomem_ed4, NULL, "omap-id-ed4", &mpu->id_iomem,
1061 memory_region_add_subregion(memory, 0xfffed400, &mpu->id_iomem_ed4);
1062 if (!cpu_is_omap15xx(mpu)) {
1063 memory_region_init_alias(&mpu->id_iomem_ed4, NULL, "omap-id-e20",
1064 &mpu->id_iomem, 0xfffe2000, 0x800);
1065 memory_region_add_subregion(memory, 0xfffe2000, &mpu->id_iomem_e20);
1069 /* MPUI Control (Dummy) */
1070 static uint64_t omap_mpui_read(void *opaque, hwaddr addr,
1073 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1076 return omap_badwidth_read32(opaque, addr);
1080 case 0x00: /* CTRL */
1081 return s->mpui_ctrl;
1082 case 0x04: /* DEBUG_ADDR */
1084 case 0x08: /* DEBUG_DATA */
1086 case 0x0c: /* DEBUG_FLAG */
1088 case 0x10: /* STATUS */
1091 /* Not in OMAP310 */
1092 case 0x14: /* DSP_STATUS */
1093 case 0x18: /* DSP_BOOT_CONFIG */
1095 case 0x1c: /* DSP_MPUI_CONFIG */
1103 static void omap_mpui_write(void *opaque, hwaddr addr,
1104 uint64_t value, unsigned size)
1106 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1109 omap_badwidth_write32(opaque, addr, value);
1114 case 0x00: /* CTRL */
1115 s->mpui_ctrl = value & 0x007fffff;
1118 case 0x04: /* DEBUG_ADDR */
1119 case 0x08: /* DEBUG_DATA */
1120 case 0x0c: /* DEBUG_FLAG */
1121 case 0x10: /* STATUS */
1122 /* Not in OMAP310 */
1123 case 0x14: /* DSP_STATUS */
1126 case 0x18: /* DSP_BOOT_CONFIG */
1127 case 0x1c: /* DSP_MPUI_CONFIG */
1135 static const MemoryRegionOps omap_mpui_ops = {
1136 .read = omap_mpui_read,
1137 .write = omap_mpui_write,
1138 .endianness = DEVICE_NATIVE_ENDIAN,
1141 static void omap_mpui_reset(struct omap_mpu_state_s *s)
1143 s->mpui_ctrl = 0x0003ff1b;
1146 static void omap_mpui_init(MemoryRegion *memory, hwaddr base,
1147 struct omap_mpu_state_s *mpu)
1149 memory_region_init_io(&mpu->mpui_iomem, NULL, &omap_mpui_ops, mpu,
1150 "omap-mpui", 0x100);
1151 memory_region_add_subregion(memory, base, &mpu->mpui_iomem);
1153 omap_mpui_reset(mpu);
1157 struct omap_tipb_bridge_s {
1165 uint16_t enh_control;
1168 static uint64_t omap_tipb_bridge_read(void *opaque, hwaddr addr,
1171 struct omap_tipb_bridge_s *s = (struct omap_tipb_bridge_s *) opaque;
1174 return omap_badwidth_read16(opaque, addr);
1178 case 0x00: /* TIPB_CNTL */
1180 case 0x04: /* TIPB_BUS_ALLOC */
1182 case 0x08: /* MPU_TIPB_CNTL */
1184 case 0x0c: /* ENHANCED_TIPB_CNTL */
1185 return s->enh_control;
1186 case 0x10: /* ADDRESS_DBG */
1187 case 0x14: /* DATA_DEBUG_LOW */
1188 case 0x18: /* DATA_DEBUG_HIGH */
1190 case 0x1c: /* DEBUG_CNTR_SIG */
1198 static void omap_tipb_bridge_write(void *opaque, hwaddr addr,
1199 uint64_t value, unsigned size)
1201 struct omap_tipb_bridge_s *s = (struct omap_tipb_bridge_s *) opaque;
1204 omap_badwidth_write16(opaque, addr, value);
1209 case 0x00: /* TIPB_CNTL */
1210 s->control = value & 0xffff;
1213 case 0x04: /* TIPB_BUS_ALLOC */
1214 s->alloc = value & 0x003f;
1217 case 0x08: /* MPU_TIPB_CNTL */
1218 s->buffer = value & 0x0003;
1221 case 0x0c: /* ENHANCED_TIPB_CNTL */
1222 s->width_intr = !(value & 2);
1223 s->enh_control = value & 0x000f;
1226 case 0x10: /* ADDRESS_DBG */
1227 case 0x14: /* DATA_DEBUG_LOW */
1228 case 0x18: /* DATA_DEBUG_HIGH */
1229 case 0x1c: /* DEBUG_CNTR_SIG */
1238 static const MemoryRegionOps omap_tipb_bridge_ops = {
1239 .read = omap_tipb_bridge_read,
1240 .write = omap_tipb_bridge_write,
1241 .endianness = DEVICE_NATIVE_ENDIAN,
1244 static void omap_tipb_bridge_reset(struct omap_tipb_bridge_s *s)
1246 s->control = 0xffff;
1249 s->enh_control = 0x000f;
1252 static struct omap_tipb_bridge_s *omap_tipb_bridge_init(
1253 MemoryRegion *memory, hwaddr base,
1254 qemu_irq abort_irq, omap_clk clk)
1256 struct omap_tipb_bridge_s *s = g_new0(struct omap_tipb_bridge_s, 1);
1258 s->abort = abort_irq;
1259 omap_tipb_bridge_reset(s);
1261 memory_region_init_io(&s->iomem, NULL, &omap_tipb_bridge_ops, s,
1262 "omap-tipb-bridge", 0x100);
1263 memory_region_add_subregion(memory, base, &s->iomem);
1268 /* Dummy Traffic Controller's Memory Interface */
1269 static uint64_t omap_tcmi_read(void *opaque, hwaddr addr,
1272 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1276 return omap_badwidth_read32(opaque, addr);
1280 case 0x00: /* IMIF_PRIO */
1281 case 0x04: /* EMIFS_PRIO */
1282 case 0x08: /* EMIFF_PRIO */
1283 case 0x0c: /* EMIFS_CONFIG */
1284 case 0x10: /* EMIFS_CS0_CONFIG */
1285 case 0x14: /* EMIFS_CS1_CONFIG */
1286 case 0x18: /* EMIFS_CS2_CONFIG */
1287 case 0x1c: /* EMIFS_CS3_CONFIG */
1288 case 0x24: /* EMIFF_MRS */
1289 case 0x28: /* TIMEOUT1 */
1290 case 0x2c: /* TIMEOUT2 */
1291 case 0x30: /* TIMEOUT3 */
1292 case 0x3c: /* EMIFF_SDRAM_CONFIG_2 */
1293 case 0x40: /* EMIFS_CFG_DYN_WAIT */
1294 return s->tcmi_regs[addr >> 2];
1296 case 0x20: /* EMIFF_SDRAM_CONFIG */
1297 ret = s->tcmi_regs[addr >> 2];
1298 s->tcmi_regs[addr >> 2] &= ~1; /* XXX: Clear SLRF on SDRAM access */
1299 /* XXX: We can try using the VGA_DIRTY flag for this */
1307 static void omap_tcmi_write(void *opaque, hwaddr addr,
1308 uint64_t value, unsigned size)
1310 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1313 omap_badwidth_write32(opaque, addr, value);
1318 case 0x00: /* IMIF_PRIO */
1319 case 0x04: /* EMIFS_PRIO */
1320 case 0x08: /* EMIFF_PRIO */
1321 case 0x10: /* EMIFS_CS0_CONFIG */
1322 case 0x14: /* EMIFS_CS1_CONFIG */
1323 case 0x18: /* EMIFS_CS2_CONFIG */
1324 case 0x1c: /* EMIFS_CS3_CONFIG */
1325 case 0x20: /* EMIFF_SDRAM_CONFIG */
1326 case 0x24: /* EMIFF_MRS */
1327 case 0x28: /* TIMEOUT1 */
1328 case 0x2c: /* TIMEOUT2 */
1329 case 0x30: /* TIMEOUT3 */
1330 case 0x3c: /* EMIFF_SDRAM_CONFIG_2 */
1331 case 0x40: /* EMIFS_CFG_DYN_WAIT */
1332 s->tcmi_regs[addr >> 2] = value;
1334 case 0x0c: /* EMIFS_CONFIG */
1335 s->tcmi_regs[addr >> 2] = (value & 0xf) | (1 << 4);
1343 static const MemoryRegionOps omap_tcmi_ops = {
1344 .read = omap_tcmi_read,
1345 .write = omap_tcmi_write,
1346 .endianness = DEVICE_NATIVE_ENDIAN,
1349 static void omap_tcmi_reset(struct omap_mpu_state_s *mpu)
1351 mpu->tcmi_regs[0x00 >> 2] = 0x00000000;
1352 mpu->tcmi_regs[0x04 >> 2] = 0x00000000;
1353 mpu->tcmi_regs[0x08 >> 2] = 0x00000000;
1354 mpu->tcmi_regs[0x0c >> 2] = 0x00000010;
1355 mpu->tcmi_regs[0x10 >> 2] = 0x0010fffb;
1356 mpu->tcmi_regs[0x14 >> 2] = 0x0010fffb;
1357 mpu->tcmi_regs[0x18 >> 2] = 0x0010fffb;
1358 mpu->tcmi_regs[0x1c >> 2] = 0x0010fffb;
1359 mpu->tcmi_regs[0x20 >> 2] = 0x00618800;
1360 mpu->tcmi_regs[0x24 >> 2] = 0x00000037;
1361 mpu->tcmi_regs[0x28 >> 2] = 0x00000000;
1362 mpu->tcmi_regs[0x2c >> 2] = 0x00000000;
1363 mpu->tcmi_regs[0x30 >> 2] = 0x00000000;
1364 mpu->tcmi_regs[0x3c >> 2] = 0x00000003;
1365 mpu->tcmi_regs[0x40 >> 2] = 0x00000000;
1368 static void omap_tcmi_init(MemoryRegion *memory, hwaddr base,
1369 struct omap_mpu_state_s *mpu)
1371 memory_region_init_io(&mpu->tcmi_iomem, NULL, &omap_tcmi_ops, mpu,
1372 "omap-tcmi", 0x100);
1373 memory_region_add_subregion(memory, base, &mpu->tcmi_iomem);
1374 omap_tcmi_reset(mpu);
1377 /* Digital phase-locked loops control */
1384 static uint64_t omap_dpll_read(void *opaque, hwaddr addr,
1387 struct dpll_ctl_s *s = (struct dpll_ctl_s *) opaque;
1390 return omap_badwidth_read16(opaque, addr);
1393 if (addr == 0x00) /* CTL_REG */
1400 static void omap_dpll_write(void *opaque, hwaddr addr,
1401 uint64_t value, unsigned size)
1403 struct dpll_ctl_s *s = (struct dpll_ctl_s *) opaque;
1405 static const int bypass_div[4] = { 1, 2, 4, 4 };
1409 omap_badwidth_write16(opaque, addr, value);
1413 if (addr == 0x00) { /* CTL_REG */
1414 /* See omap_ulpd_pm_write() too */
1415 diff = s->mode & value;
1416 s->mode = value & 0x2fff;
1417 if (diff & (0x3ff << 2)) {
1418 if (value & (1 << 4)) { /* PLL_ENABLE */
1419 div = ((value >> 5) & 3) + 1; /* PLL_DIV */
1420 mult = MIN((value >> 7) & 0x1f, 1); /* PLL_MULT */
1422 div = bypass_div[((value >> 2) & 3)]; /* BYPASS_DIV */
1425 omap_clk_setrate(s->dpll, div, mult);
1428 /* Enter the desired mode. */
1429 s->mode = (s->mode & 0xfffe) | ((s->mode >> 4) & 1);
1431 /* Act as if the lock is restored. */
1438 static const MemoryRegionOps omap_dpll_ops = {
1439 .read = omap_dpll_read,
1440 .write = omap_dpll_write,
1441 .endianness = DEVICE_NATIVE_ENDIAN,
1444 static void omap_dpll_reset(struct dpll_ctl_s *s)
1447 omap_clk_setrate(s->dpll, 1, 1);
1450 static struct dpll_ctl_s *omap_dpll_init(MemoryRegion *memory,
1451 hwaddr base, omap_clk clk)
1453 struct dpll_ctl_s *s = g_malloc0(sizeof(*s));
1454 memory_region_init_io(&s->iomem, NULL, &omap_dpll_ops, s, "omap-dpll", 0x100);
1459 memory_region_add_subregion(memory, base, &s->iomem);
1463 /* MPU Clock/Reset/Power Mode Control */
1464 static uint64_t omap_clkm_read(void *opaque, hwaddr addr,
1467 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1470 return omap_badwidth_read16(opaque, addr);
1474 case 0x00: /* ARM_CKCTL */
1475 return s->clkm.arm_ckctl;
1477 case 0x04: /* ARM_IDLECT1 */
1478 return s->clkm.arm_idlect1;
1480 case 0x08: /* ARM_IDLECT2 */
1481 return s->clkm.arm_idlect2;
1483 case 0x0c: /* ARM_EWUPCT */
1484 return s->clkm.arm_ewupct;
1486 case 0x10: /* ARM_RSTCT1 */
1487 return s->clkm.arm_rstct1;
1489 case 0x14: /* ARM_RSTCT2 */
1490 return s->clkm.arm_rstct2;
1492 case 0x18: /* ARM_SYSST */
1493 return (s->clkm.clocking_scheme << 11) | s->clkm.cold_start;
1495 case 0x1c: /* ARM_CKOUT1 */
1496 return s->clkm.arm_ckout1;
1498 case 0x20: /* ARM_CKOUT2 */
1506 static inline void omap_clkm_ckctl_update(struct omap_mpu_state_s *s,
1507 uint16_t diff, uint16_t value)
1511 if (diff & (1 << 14)) { /* ARM_INTHCK_SEL */
1512 if (value & (1 << 14))
1515 clk = omap_findclk(s, "arminth_ck");
1516 omap_clk_reparent(clk, omap_findclk(s, "tc_ck"));
1519 if (diff & (1 << 12)) { /* ARM_TIMXO */
1520 clk = omap_findclk(s, "armtim_ck");
1521 if (value & (1 << 12))
1522 omap_clk_reparent(clk, omap_findclk(s, "clkin"));
1524 omap_clk_reparent(clk, omap_findclk(s, "ck_gen1"));
1527 if (diff & (3 << 10)) { /* DSPMMUDIV */
1528 clk = omap_findclk(s, "dspmmu_ck");
1529 omap_clk_setrate(clk, 1 << ((value >> 10) & 3), 1);
1531 if (diff & (3 << 8)) { /* TCDIV */
1532 clk = omap_findclk(s, "tc_ck");
1533 omap_clk_setrate(clk, 1 << ((value >> 8) & 3), 1);
1535 if (diff & (3 << 6)) { /* DSPDIV */
1536 clk = omap_findclk(s, "dsp_ck");
1537 omap_clk_setrate(clk, 1 << ((value >> 6) & 3), 1);
1539 if (diff & (3 << 4)) { /* ARMDIV */
1540 clk = omap_findclk(s, "arm_ck");
1541 omap_clk_setrate(clk, 1 << ((value >> 4) & 3), 1);
1543 if (diff & (3 << 2)) { /* LCDDIV */
1544 clk = omap_findclk(s, "lcd_ck");
1545 omap_clk_setrate(clk, 1 << ((value >> 2) & 3), 1);
1547 if (diff & (3 << 0)) { /* PERDIV */
1548 clk = omap_findclk(s, "armper_ck");
1549 omap_clk_setrate(clk, 1 << ((value >> 0) & 3), 1);
1553 static inline void omap_clkm_idlect1_update(struct omap_mpu_state_s *s,
1554 uint16_t diff, uint16_t value)
1558 if (value & (1 << 11)) { /* SETARM_IDLE */
1559 cpu_interrupt(CPU(s->cpu), CPU_INTERRUPT_HALT);
1561 if (!(value & (1 << 10))) { /* WKUP_MODE */
1562 /* XXX: disable wakeup from IRQ */
1563 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN);
1566 #define SET_CANIDLE(clock, bit) \
1567 if (diff & (1 << bit)) { \
1568 clk = omap_findclk(s, clock); \
1569 omap_clk_canidle(clk, (value >> bit) & 1); \
1571 SET_CANIDLE("mpuwd_ck", 0) /* IDLWDT_ARM */
1572 SET_CANIDLE("armxor_ck", 1) /* IDLXORP_ARM */
1573 SET_CANIDLE("mpuper_ck", 2) /* IDLPER_ARM */
1574 SET_CANIDLE("lcd_ck", 3) /* IDLLCD_ARM */
1575 SET_CANIDLE("lb_ck", 4) /* IDLLB_ARM */
1576 SET_CANIDLE("hsab_ck", 5) /* IDLHSAB_ARM */
1577 SET_CANIDLE("tipb_ck", 6) /* IDLIF_ARM */
1578 SET_CANIDLE("dma_ck", 6) /* IDLIF_ARM */
1579 SET_CANIDLE("tc_ck", 6) /* IDLIF_ARM */
1580 SET_CANIDLE("dpll1", 7) /* IDLDPLL_ARM */
1581 SET_CANIDLE("dpll2", 7) /* IDLDPLL_ARM */
1582 SET_CANIDLE("dpll3", 7) /* IDLDPLL_ARM */
1583 SET_CANIDLE("mpui_ck", 8) /* IDLAPI_ARM */
1584 SET_CANIDLE("armtim_ck", 9) /* IDLTIM_ARM */
1587 static inline void omap_clkm_idlect2_update(struct omap_mpu_state_s *s,
1588 uint16_t diff, uint16_t value)
1592 #define SET_ONOFF(clock, bit) \
1593 if (diff & (1 << bit)) { \
1594 clk = omap_findclk(s, clock); \
1595 omap_clk_onoff(clk, (value >> bit) & 1); \
1597 SET_ONOFF("mpuwd_ck", 0) /* EN_WDTCK */
1598 SET_ONOFF("armxor_ck", 1) /* EN_XORPCK */
1599 SET_ONOFF("mpuper_ck", 2) /* EN_PERCK */
1600 SET_ONOFF("lcd_ck", 3) /* EN_LCDCK */
1601 SET_ONOFF("lb_ck", 4) /* EN_LBCK */
1602 SET_ONOFF("hsab_ck", 5) /* EN_HSABCK */
1603 SET_ONOFF("mpui_ck", 6) /* EN_APICK */
1604 SET_ONOFF("armtim_ck", 7) /* EN_TIMCK */
1605 SET_CANIDLE("dma_ck", 8) /* DMACK_REQ */
1606 SET_ONOFF("arm_gpio_ck", 9) /* EN_GPIOCK */
1607 SET_ONOFF("lbfree_ck", 10) /* EN_LBFREECK */
1610 static inline void omap_clkm_ckout1_update(struct omap_mpu_state_s *s,
1611 uint16_t diff, uint16_t value)
1615 if (diff & (3 << 4)) { /* TCLKOUT */
1616 clk = omap_findclk(s, "tclk_out");
1617 switch ((value >> 4) & 3) {
1619 omap_clk_reparent(clk, omap_findclk(s, "ck_gen3"));
1620 omap_clk_onoff(clk, 1);
1623 omap_clk_reparent(clk, omap_findclk(s, "tc_ck"));
1624 omap_clk_onoff(clk, 1);
1627 omap_clk_onoff(clk, 0);
1630 if (diff & (3 << 2)) { /* DCLKOUT */
1631 clk = omap_findclk(s, "dclk_out");
1632 switch ((value >> 2) & 3) {
1634 omap_clk_reparent(clk, omap_findclk(s, "dspmmu_ck"));
1637 omap_clk_reparent(clk, omap_findclk(s, "ck_gen2"));
1640 omap_clk_reparent(clk, omap_findclk(s, "dsp_ck"));
1643 omap_clk_reparent(clk, omap_findclk(s, "ck_ref14"));
1647 if (diff & (3 << 0)) { /* ACLKOUT */
1648 clk = omap_findclk(s, "aclk_out");
1649 switch ((value >> 0) & 3) {
1651 omap_clk_reparent(clk, omap_findclk(s, "ck_gen1"));
1652 omap_clk_onoff(clk, 1);
1655 omap_clk_reparent(clk, omap_findclk(s, "arm_ck"));
1656 omap_clk_onoff(clk, 1);
1659 omap_clk_reparent(clk, omap_findclk(s, "ck_ref14"));
1660 omap_clk_onoff(clk, 1);
1663 omap_clk_onoff(clk, 0);
1668 static void omap_clkm_write(void *opaque, hwaddr addr,
1669 uint64_t value, unsigned size)
1671 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1674 static const char *clkschemename[8] = {
1675 "fully synchronous", "fully asynchronous", "synchronous scalable",
1676 "mix mode 1", "mix mode 2", "bypass mode", "mix mode 3", "mix mode 4",
1680 omap_badwidth_write16(opaque, addr, value);
1685 case 0x00: /* ARM_CKCTL */
1686 diff = s->clkm.arm_ckctl ^ value;
1687 s->clkm.arm_ckctl = value & 0x7fff;
1688 omap_clkm_ckctl_update(s, diff, value);
1691 case 0x04: /* ARM_IDLECT1 */
1692 diff = s->clkm.arm_idlect1 ^ value;
1693 s->clkm.arm_idlect1 = value & 0x0fff;
1694 omap_clkm_idlect1_update(s, diff, value);
1697 case 0x08: /* ARM_IDLECT2 */
1698 diff = s->clkm.arm_idlect2 ^ value;
1699 s->clkm.arm_idlect2 = value & 0x07ff;
1700 omap_clkm_idlect2_update(s, diff, value);
1703 case 0x0c: /* ARM_EWUPCT */
1704 s->clkm.arm_ewupct = value & 0x003f;
1707 case 0x10: /* ARM_RSTCT1 */
1708 diff = s->clkm.arm_rstct1 ^ value;
1709 s->clkm.arm_rstct1 = value & 0x0007;
1711 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
1712 s->clkm.cold_start = 0xa;
1714 if (diff & ~value & 4) { /* DSP_RST */
1716 omap_tipb_bridge_reset(s->private_tipb);
1717 omap_tipb_bridge_reset(s->public_tipb);
1719 if (diff & 2) { /* DSP_EN */
1720 clk = omap_findclk(s, "dsp_ck");
1721 omap_clk_canidle(clk, (~value >> 1) & 1);
1725 case 0x14: /* ARM_RSTCT2 */
1726 s->clkm.arm_rstct2 = value & 0x0001;
1729 case 0x18: /* ARM_SYSST */
1730 if ((s->clkm.clocking_scheme ^ (value >> 11)) & 7) {
1731 s->clkm.clocking_scheme = (value >> 11) & 7;
1732 printf("%s: clocking scheme set to %s\n", __func__,
1733 clkschemename[s->clkm.clocking_scheme]);
1735 s->clkm.cold_start &= value & 0x3f;
1738 case 0x1c: /* ARM_CKOUT1 */
1739 diff = s->clkm.arm_ckout1 ^ value;
1740 s->clkm.arm_ckout1 = value & 0x003f;
1741 omap_clkm_ckout1_update(s, diff, value);
1744 case 0x20: /* ARM_CKOUT2 */
1750 static const MemoryRegionOps omap_clkm_ops = {
1751 .read = omap_clkm_read,
1752 .write = omap_clkm_write,
1753 .endianness = DEVICE_NATIVE_ENDIAN,
1756 static uint64_t omap_clkdsp_read(void *opaque, hwaddr addr,
1759 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1760 CPUState *cpu = CPU(s->cpu);
1763 return omap_badwidth_read16(opaque, addr);
1767 case 0x04: /* DSP_IDLECT1 */
1768 return s->clkm.dsp_idlect1;
1770 case 0x08: /* DSP_IDLECT2 */
1771 return s->clkm.dsp_idlect2;
1773 case 0x14: /* DSP_RSTCT2 */
1774 return s->clkm.dsp_rstct2;
1776 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 = (struct omap_mpu_state_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 = (struct omap_mpuio_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 = (struct omap_mpuio_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 = (struct omap_mpuio_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 = (struct omap_mpuio_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,
2205 struct omap_uwire_s *s = (struct omap_uwire_s *) opaque;
2206 int offset = addr & OMAP_MPUI_REG_MASK;
2209 return omap_badwidth_read16(opaque, addr);
2213 case 0x00: /* RDR */
2214 s->control &= ~(1 << 15); /* RDRB */
2217 case 0x04: /* CSR */
2220 case 0x08: /* SR1 */
2222 case 0x0c: /* SR2 */
2224 case 0x10: /* SR3 */
2226 case 0x14: /* SR4 */
2228 case 0x18: /* SR5 */
2236 static void omap_uwire_write(void *opaque, hwaddr addr,
2237 uint64_t value, unsigned size)
2239 struct omap_uwire_s *s = (struct omap_uwire_s *) opaque;
2240 int offset = addr & OMAP_MPUI_REG_MASK;
2243 omap_badwidth_write16(opaque, addr, value);
2248 case 0x00: /* TDR */
2249 s->txbuf = value; /* TD */
2250 if ((s->setup[4] & (1 << 2)) && /* AUTO_TX_EN */
2251 ((s->setup[4] & (1 << 3)) || /* CS_TOGGLE_TX_EN */
2252 (s->control & (1 << 12)))) { /* CS_CMD */
2253 s->control |= 1 << 14; /* CSRB */
2254 omap_uwire_transfer_start(s);
2258 case 0x04: /* CSR */
2259 s->control = value & 0x1fff;
2260 if (value & (1 << 13)) /* START */
2261 omap_uwire_transfer_start(s);
2264 case 0x08: /* SR1 */
2265 s->setup[0] = value & 0x003f;
2268 case 0x0c: /* SR2 */
2269 s->setup[1] = value & 0x0fc0;
2272 case 0x10: /* SR3 */
2273 s->setup[2] = value & 0x0003;
2276 case 0x14: /* SR4 */
2277 s->setup[3] = value & 0x0001;
2280 case 0x18: /* SR5 */
2281 s->setup[4] = value & 0x000f;
2290 static const MemoryRegionOps omap_uwire_ops = {
2291 .read = omap_uwire_read,
2292 .write = omap_uwire_write,
2293 .endianness = DEVICE_NATIVE_ENDIAN,
2296 static void omap_uwire_reset(struct omap_uwire_s *s)
2306 static struct omap_uwire_s *omap_uwire_init(MemoryRegion *system_memory,
2308 qemu_irq txirq, qemu_irq rxirq,
2312 struct omap_uwire_s *s = g_new0(struct omap_uwire_s, 1);
2317 omap_uwire_reset(s);
2319 memory_region_init_io(&s->iomem, NULL, &omap_uwire_ops, s, "omap-uwire", 0x800);
2320 memory_region_add_subregion(system_memory, base, &s->iomem);
2325 void omap_uwire_attach(struct omap_uwire_s *s,
2326 uWireSlave *slave, int chipselect)
2328 if (chipselect < 0 || chipselect > 3) {
2329 error_report("%s: Bad chipselect %i", __func__, chipselect);
2333 s->chip[chipselect] = slave;
2336 /* Pseudonoise Pulse-Width Light Modulator */
2345 static void omap_pwl_update(struct omap_pwl_s *s)
2347 int output = (s->clk && s->enable) ? s->level : 0;
2349 if (output != s->output) {
2351 printf("%s: Backlight now at %i/256\n", __func__, output);
2355 static uint64_t omap_pwl_read(void *opaque, hwaddr addr,
2358 struct omap_pwl_s *s = (struct omap_pwl_s *) opaque;
2359 int offset = addr & OMAP_MPUI_REG_MASK;
2362 return omap_badwidth_read8(opaque, addr);
2366 case 0x00: /* PWL_LEVEL */
2368 case 0x04: /* PWL_CTRL */
2375 static void omap_pwl_write(void *opaque, hwaddr addr,
2376 uint64_t value, unsigned size)
2378 struct omap_pwl_s *s = (struct omap_pwl_s *) opaque;
2379 int offset = addr & OMAP_MPUI_REG_MASK;
2382 omap_badwidth_write8(opaque, addr, value);
2387 case 0x00: /* PWL_LEVEL */
2391 case 0x04: /* PWL_CTRL */
2392 s->enable = value & 1;
2401 static const MemoryRegionOps omap_pwl_ops = {
2402 .read = omap_pwl_read,
2403 .write = omap_pwl_write,
2404 .endianness = DEVICE_NATIVE_ENDIAN,
2407 static void omap_pwl_reset(struct omap_pwl_s *s)
2416 static void omap_pwl_clk_update(void *opaque, int line, int on)
2418 struct omap_pwl_s *s = (struct omap_pwl_s *) opaque;
2424 static struct omap_pwl_s *omap_pwl_init(MemoryRegion *system_memory,
2428 struct omap_pwl_s *s = g_malloc0(sizeof(*s));
2432 memory_region_init_io(&s->iomem, NULL, &omap_pwl_ops, s,
2434 memory_region_add_subregion(system_memory, base, &s->iomem);
2436 omap_clk_adduser(clk, qemu_allocate_irq(omap_pwl_clk_update, s, 0));
2440 /* Pulse-Width Tone module */
2449 static uint64_t omap_pwt_read(void *opaque, hwaddr addr,
2452 struct omap_pwt_s *s = (struct omap_pwt_s *) opaque;
2453 int offset = addr & OMAP_MPUI_REG_MASK;
2456 return omap_badwidth_read8(opaque, addr);
2460 case 0x00: /* FRC */
2462 case 0x04: /* VCR */
2464 case 0x08: /* GCR */
2471 static void omap_pwt_write(void *opaque, hwaddr addr,
2472 uint64_t value, unsigned size)
2474 struct omap_pwt_s *s = (struct omap_pwt_s *) opaque;
2475 int offset = addr & OMAP_MPUI_REG_MASK;
2478 omap_badwidth_write8(opaque, addr, value);
2483 case 0x00: /* FRC */
2484 s->frc = value & 0x3f;
2486 case 0x04: /* VRC */
2487 if ((value ^ s->vrc) & 1) {
2489 printf("%s: %iHz buzz on\n", __func__, (int)
2490 /* 1.5 MHz from a 12-MHz or 13-MHz PWT_CLK */
2491 ((omap_clk_getrate(s->clk) >> 3) /
2492 /* Pre-multiplexer divider */
2493 ((s->gcr & 2) ? 1 : 154) /
2494 /* Octave multiplexer */
2495 (2 << (value & 3)) *
2496 /* 101/107 divider */
2497 ((value & (1 << 2)) ? 101 : 107) *
2499 ((value & (1 << 3)) ? 49 : 55) *
2501 ((value & (1 << 4)) ? 50 : 63) *
2502 /* 80/127 divider */
2503 ((value & (1 << 5)) ? 80 : 127) /
2504 (107 * 55 * 63 * 127)));
2506 printf("%s: silence!\n", __func__);
2508 s->vrc = value & 0x7f;
2510 case 0x08: /* GCR */
2519 static const MemoryRegionOps omap_pwt_ops = {
2520 .read =omap_pwt_read,
2521 .write = omap_pwt_write,
2522 .endianness = DEVICE_NATIVE_ENDIAN,
2525 static void omap_pwt_reset(struct omap_pwt_s *s)
2532 static struct omap_pwt_s *omap_pwt_init(MemoryRegion *system_memory,
2536 struct omap_pwt_s *s = g_malloc0(sizeof(*s));
2540 memory_region_init_io(&s->iomem, NULL, &omap_pwt_ops, s,
2542 memory_region_add_subregion(system_memory, base, &s->iomem);
2546 /* Real-time Clock module */
2563 struct tm current_tm;
2568 static void omap_rtc_interrupts_update(struct omap_rtc_s *s)
2570 /* s->alarm is level-triggered */
2571 qemu_set_irq(s->alarm, (s->status >> 6) & 1);
2574 static void omap_rtc_alarm_update(struct omap_rtc_s *s)
2576 s->alarm_ti = mktimegm(&s->alarm_tm);
2577 if (s->alarm_ti == -1)
2578 printf("%s: conversion failed\n", __func__);
2581 static uint64_t omap_rtc_read(void *opaque, hwaddr addr,
2584 struct omap_rtc_s *s = (struct omap_rtc_s *) opaque;
2585 int offset = addr & OMAP_MPUI_REG_MASK;
2589 return omap_badwidth_read8(opaque, addr);
2593 case 0x00: /* SECONDS_REG */
2594 return to_bcd(s->current_tm.tm_sec);
2596 case 0x04: /* MINUTES_REG */
2597 return to_bcd(s->current_tm.tm_min);
2599 case 0x08: /* HOURS_REG */
2601 return ((s->current_tm.tm_hour > 11) << 7) |
2602 to_bcd(((s->current_tm.tm_hour - 1) % 12) + 1);
2604 return to_bcd(s->current_tm.tm_hour);
2606 case 0x0c: /* DAYS_REG */
2607 return to_bcd(s->current_tm.tm_mday);
2609 case 0x10: /* MONTHS_REG */
2610 return to_bcd(s->current_tm.tm_mon + 1);
2612 case 0x14: /* YEARS_REG */
2613 return to_bcd(s->current_tm.tm_year % 100);
2615 case 0x18: /* WEEK_REG */
2616 return s->current_tm.tm_wday;
2618 case 0x20: /* ALARM_SECONDS_REG */
2619 return to_bcd(s->alarm_tm.tm_sec);
2621 case 0x24: /* ALARM_MINUTES_REG */
2622 return to_bcd(s->alarm_tm.tm_min);
2624 case 0x28: /* ALARM_HOURS_REG */
2626 return ((s->alarm_tm.tm_hour > 11) << 7) |
2627 to_bcd(((s->alarm_tm.tm_hour - 1) % 12) + 1);
2629 return to_bcd(s->alarm_tm.tm_hour);
2631 case 0x2c: /* ALARM_DAYS_REG */
2632 return to_bcd(s->alarm_tm.tm_mday);
2634 case 0x30: /* ALARM_MONTHS_REG */
2635 return to_bcd(s->alarm_tm.tm_mon + 1);
2637 case 0x34: /* ALARM_YEARS_REG */
2638 return to_bcd(s->alarm_tm.tm_year % 100);
2640 case 0x40: /* RTC_CTRL_REG */
2641 return (s->pm_am << 3) | (s->auto_comp << 2) |
2642 (s->round << 1) | s->running;
2644 case 0x44: /* RTC_STATUS_REG */
2649 case 0x48: /* RTC_INTERRUPTS_REG */
2650 return s->interrupts;
2652 case 0x4c: /* RTC_COMP_LSB_REG */
2653 return ((uint16_t) s->comp_reg) & 0xff;
2655 case 0x50: /* RTC_COMP_MSB_REG */
2656 return ((uint16_t) s->comp_reg) >> 8;
2663 static void omap_rtc_write(void *opaque, hwaddr addr,
2664 uint64_t value, unsigned size)
2666 struct omap_rtc_s *s = (struct omap_rtc_s *) opaque;
2667 int offset = addr & OMAP_MPUI_REG_MASK;
2672 omap_badwidth_write8(opaque, addr, value);
2677 case 0x00: /* SECONDS_REG */
2679 printf("RTC SEC_REG <-- %02x\n", value);
2681 s->ti -= s->current_tm.tm_sec;
2682 s->ti += from_bcd(value);
2685 case 0x04: /* MINUTES_REG */
2687 printf("RTC MIN_REG <-- %02x\n", value);
2689 s->ti -= s->current_tm.tm_min * 60;
2690 s->ti += from_bcd(value) * 60;
2693 case 0x08: /* HOURS_REG */
2695 printf("RTC HRS_REG <-- %02x\n", value);
2697 s->ti -= s->current_tm.tm_hour * 3600;
2699 s->ti += (from_bcd(value & 0x3f) & 12) * 3600;
2700 s->ti += ((value >> 7) & 1) * 43200;
2702 s->ti += from_bcd(value & 0x3f) * 3600;
2705 case 0x0c: /* DAYS_REG */
2707 printf("RTC DAY_REG <-- %02x\n", value);
2709 s->ti -= s->current_tm.tm_mday * 86400;
2710 s->ti += from_bcd(value) * 86400;
2713 case 0x10: /* MONTHS_REG */
2715 printf("RTC MTH_REG <-- %02x\n", value);
2717 memcpy(&new_tm, &s->current_tm, sizeof(new_tm));
2718 new_tm.tm_mon = from_bcd(value);
2719 ti[0] = mktimegm(&s->current_tm);
2720 ti[1] = mktimegm(&new_tm);
2722 if (ti[0] != -1 && ti[1] != -1) {
2726 /* A less accurate version */
2727 s->ti -= s->current_tm.tm_mon * 2592000;
2728 s->ti += from_bcd(value) * 2592000;
2732 case 0x14: /* YEARS_REG */
2734 printf("RTC YRS_REG <-- %02x\n", value);
2736 memcpy(&new_tm, &s->current_tm, sizeof(new_tm));
2737 new_tm.tm_year += from_bcd(value) - (new_tm.tm_year % 100);
2738 ti[0] = mktimegm(&s->current_tm);
2739 ti[1] = mktimegm(&new_tm);
2741 if (ti[0] != -1 && ti[1] != -1) {
2745 /* A less accurate version */
2746 s->ti -= (time_t)(s->current_tm.tm_year % 100) * 31536000;
2747 s->ti += (time_t)from_bcd(value) * 31536000;
2751 case 0x18: /* WEEK_REG */
2752 return; /* Ignored */
2754 case 0x20: /* ALARM_SECONDS_REG */
2756 printf("ALM SEC_REG <-- %02x\n", value);
2758 s->alarm_tm.tm_sec = from_bcd(value);
2759 omap_rtc_alarm_update(s);
2762 case 0x24: /* ALARM_MINUTES_REG */
2764 printf("ALM MIN_REG <-- %02x\n", value);
2766 s->alarm_tm.tm_min = from_bcd(value);
2767 omap_rtc_alarm_update(s);
2770 case 0x28: /* ALARM_HOURS_REG */
2772 printf("ALM HRS_REG <-- %02x\n", value);
2775 s->alarm_tm.tm_hour =
2776 ((from_bcd(value & 0x3f)) % 12) +
2777 ((value >> 7) & 1) * 12;
2779 s->alarm_tm.tm_hour = from_bcd(value);
2780 omap_rtc_alarm_update(s);
2783 case 0x2c: /* ALARM_DAYS_REG */
2785 printf("ALM DAY_REG <-- %02x\n", value);
2787 s->alarm_tm.tm_mday = from_bcd(value);
2788 omap_rtc_alarm_update(s);
2791 case 0x30: /* ALARM_MONTHS_REG */
2793 printf("ALM MON_REG <-- %02x\n", value);
2795 s->alarm_tm.tm_mon = from_bcd(value);
2796 omap_rtc_alarm_update(s);
2799 case 0x34: /* ALARM_YEARS_REG */
2801 printf("ALM YRS_REG <-- %02x\n", value);
2803 s->alarm_tm.tm_year = from_bcd(value);
2804 omap_rtc_alarm_update(s);
2807 case 0x40: /* RTC_CTRL_REG */
2809 printf("RTC CONTROL <-- %02x\n", value);
2811 s->pm_am = (value >> 3) & 1;
2812 s->auto_comp = (value >> 2) & 1;
2813 s->round = (value >> 1) & 1;
2814 s->running = value & 1;
2816 s->status |= s->running << 1;
2819 case 0x44: /* RTC_STATUS_REG */
2821 printf("RTC STATUSL <-- %02x\n", value);
2823 s->status &= ~((value & 0xc0) ^ 0x80);
2824 omap_rtc_interrupts_update(s);
2827 case 0x48: /* RTC_INTERRUPTS_REG */
2829 printf("RTC INTRS <-- %02x\n", value);
2831 s->interrupts = value;
2834 case 0x4c: /* RTC_COMP_LSB_REG */
2836 printf("RTC COMPLSB <-- %02x\n", value);
2838 s->comp_reg &= 0xff00;
2839 s->comp_reg |= 0x00ff & value;
2842 case 0x50: /* RTC_COMP_MSB_REG */
2844 printf("RTC COMPMSB <-- %02x\n", value);
2846 s->comp_reg &= 0x00ff;
2847 s->comp_reg |= 0xff00 & (value << 8);
2856 static const MemoryRegionOps omap_rtc_ops = {
2857 .read = omap_rtc_read,
2858 .write = omap_rtc_write,
2859 .endianness = DEVICE_NATIVE_ENDIAN,
2862 static void omap_rtc_tick(void *opaque)
2864 struct omap_rtc_s *s = opaque;
2867 /* Round to nearest full minute. */
2868 if (s->current_tm.tm_sec < 30)
2869 s->ti -= s->current_tm.tm_sec;
2871 s->ti += 60 - s->current_tm.tm_sec;
2876 localtime_r(&s->ti, &s->current_tm);
2878 if ((s->interrupts & 0x08) && s->ti == s->alarm_ti) {
2880 omap_rtc_interrupts_update(s);
2883 if (s->interrupts & 0x04)
2884 switch (s->interrupts & 3) {
2887 qemu_irq_pulse(s->irq);
2890 if (s->current_tm.tm_sec)
2893 qemu_irq_pulse(s->irq);
2896 if (s->current_tm.tm_sec || s->current_tm.tm_min)
2899 qemu_irq_pulse(s->irq);
2902 if (s->current_tm.tm_sec ||
2903 s->current_tm.tm_min || s->current_tm.tm_hour)
2906 qemu_irq_pulse(s->irq);
2916 * Every full hour add a rough approximation of the compensation
2917 * register to the 32kHz Timer (which drives the RTC) value.
2919 if (s->auto_comp && !s->current_tm.tm_sec && !s->current_tm.tm_min)
2920 s->tick += s->comp_reg * 1000 / 32768;
2922 timer_mod(s->clk, s->tick);
2925 static void omap_rtc_reset(struct omap_rtc_s *s)
2935 s->tick = qemu_clock_get_ms(rtc_clock);
2936 memset(&s->alarm_tm, 0, sizeof(s->alarm_tm));
2937 s->alarm_tm.tm_mday = 0x01;
2939 qemu_get_timedate(&tm, 0);
2940 s->ti = mktimegm(&tm);
2942 omap_rtc_alarm_update(s);
2946 static struct omap_rtc_s *omap_rtc_init(MemoryRegion *system_memory,
2948 qemu_irq timerirq, qemu_irq alarmirq,
2951 struct omap_rtc_s *s = g_new0(struct omap_rtc_s, 1);
2954 s->alarm = alarmirq;
2955 s->clk = timer_new_ms(rtc_clock, omap_rtc_tick, s);
2959 memory_region_init_io(&s->iomem, NULL, &omap_rtc_ops, s,
2961 memory_region_add_subregion(system_memory, base, &s->iomem);
2966 /* Multi-channel Buffered Serial Port interfaces */
2967 struct omap_mcbsp_s {
2988 QEMUTimer *source_timer;
2989 QEMUTimer *sink_timer;
2992 static void omap_mcbsp_intr_update(struct omap_mcbsp_s *s)
2996 switch ((s->spcr[0] >> 4) & 3) { /* RINTM */
2998 irq = (s->spcr[0] >> 1) & 1; /* RRDY */
3001 irq = (s->spcr[0] >> 3) & 1; /* RSYNCERR */
3009 qemu_irq_pulse(s->rxirq);
3011 switch ((s->spcr[1] >> 4) & 3) { /* XINTM */
3013 irq = (s->spcr[1] >> 1) & 1; /* XRDY */
3016 irq = (s->spcr[1] >> 3) & 1; /* XSYNCERR */
3024 qemu_irq_pulse(s->txirq);
3027 static void omap_mcbsp_rx_newdata(struct omap_mcbsp_s *s)
3029 if ((s->spcr[0] >> 1) & 1) /* RRDY */
3030 s->spcr[0] |= 1 << 2; /* RFULL */
3031 s->spcr[0] |= 1 << 1; /* RRDY */
3032 qemu_irq_raise(s->rxdrq);
3033 omap_mcbsp_intr_update(s);
3036 static void omap_mcbsp_source_tick(void *opaque)
3038 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3039 static const int bps[8] = { 0, 1, 1, 2, 2, 2, -255, -255 };
3044 printf("%s: Rx FIFO overrun\n", __func__);
3046 s->rx_req = s->rx_rate << bps[(s->rcr[0] >> 5) & 7];
3048 omap_mcbsp_rx_newdata(s);
3049 timer_mod(s->source_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
3050 NANOSECONDS_PER_SECOND);
3053 static void omap_mcbsp_rx_start(struct omap_mcbsp_s *s)
3055 if (!s->codec || !s->codec->rts)
3056 omap_mcbsp_source_tick(s);
3057 else if (s->codec->in.len) {
3058 s->rx_req = s->codec->in.len;
3059 omap_mcbsp_rx_newdata(s);
3063 static void omap_mcbsp_rx_stop(struct omap_mcbsp_s *s)
3065 timer_del(s->source_timer);
3068 static void omap_mcbsp_rx_done(struct omap_mcbsp_s *s)
3070 s->spcr[0] &= ~(1 << 1); /* RRDY */
3071 qemu_irq_lower(s->rxdrq);
3072 omap_mcbsp_intr_update(s);
3075 static void omap_mcbsp_tx_newdata(struct omap_mcbsp_s *s)
3077 s->spcr[1] |= 1 << 1; /* XRDY */
3078 qemu_irq_raise(s->txdrq);
3079 omap_mcbsp_intr_update(s);
3082 static void omap_mcbsp_sink_tick(void *opaque)
3084 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3085 static const int bps[8] = { 0, 1, 1, 2, 2, 2, -255, -255 };
3090 printf("%s: Tx FIFO underrun\n", __func__);
3092 s->tx_req = s->tx_rate << bps[(s->xcr[0] >> 5) & 7];
3094 omap_mcbsp_tx_newdata(s);
3095 timer_mod(s->sink_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
3096 NANOSECONDS_PER_SECOND);
3099 static void omap_mcbsp_tx_start(struct omap_mcbsp_s *s)
3101 if (!s->codec || !s->codec->cts)
3102 omap_mcbsp_sink_tick(s);
3103 else if (s->codec->out.size) {
3104 s->tx_req = s->codec->out.size;
3105 omap_mcbsp_tx_newdata(s);
3109 static void omap_mcbsp_tx_done(struct omap_mcbsp_s *s)
3111 s->spcr[1] &= ~(1 << 1); /* XRDY */
3112 qemu_irq_lower(s->txdrq);
3113 omap_mcbsp_intr_update(s);
3114 if (s->codec && s->codec->cts)
3115 s->codec->tx_swallow(s->codec->opaque);
3118 static void omap_mcbsp_tx_stop(struct omap_mcbsp_s *s)
3121 omap_mcbsp_tx_done(s);
3122 timer_del(s->sink_timer);
3125 static void omap_mcbsp_req_update(struct omap_mcbsp_s *s)
3127 int prev_rx_rate, prev_tx_rate;
3128 int rx_rate = 0, tx_rate = 0;
3129 int cpu_rate = 1500000; /* XXX */
3131 /* TODO: check CLKSTP bit */
3132 if (s->spcr[1] & (1 << 6)) { /* GRST */
3133 if (s->spcr[0] & (1 << 0)) { /* RRST */
3134 if ((s->srgr[1] & (1 << 13)) && /* CLKSM */
3135 (s->pcr & (1 << 8))) { /* CLKRM */
3136 if (~s->pcr & (1 << 7)) /* SCLKME */
3137 rx_rate = cpu_rate /
3138 ((s->srgr[0] & 0xff) + 1); /* CLKGDV */
3141 rx_rate = s->codec->rx_rate;
3144 if (s->spcr[1] & (1 << 0)) { /* XRST */
3145 if ((s->srgr[1] & (1 << 13)) && /* CLKSM */
3146 (s->pcr & (1 << 9))) { /* CLKXM */
3147 if (~s->pcr & (1 << 7)) /* SCLKME */
3148 tx_rate = cpu_rate /
3149 ((s->srgr[0] & 0xff) + 1); /* CLKGDV */
3152 tx_rate = s->codec->tx_rate;
3155 prev_tx_rate = s->tx_rate;
3156 prev_rx_rate = s->rx_rate;
3157 s->tx_rate = tx_rate;
3158 s->rx_rate = rx_rate;
3161 s->codec->set_rate(s->codec->opaque, rx_rate, tx_rate);
3163 if (!prev_tx_rate && tx_rate)
3164 omap_mcbsp_tx_start(s);
3165 else if (s->tx_rate && !tx_rate)
3166 omap_mcbsp_tx_stop(s);
3168 if (!prev_rx_rate && rx_rate)
3169 omap_mcbsp_rx_start(s);
3170 else if (prev_tx_rate && !tx_rate)
3171 omap_mcbsp_rx_stop(s);
3174 static uint64_t omap_mcbsp_read(void *opaque, hwaddr addr,
3177 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3178 int offset = addr & OMAP_MPUI_REG_MASK;
3182 return omap_badwidth_read16(opaque, addr);
3186 case 0x00: /* DRR2 */
3187 if (((s->rcr[0] >> 5) & 7) < 3) /* RWDLEN1 */
3190 case 0x02: /* DRR1 */
3191 if (s->rx_req < 2) {
3192 printf("%s: Rx FIFO underrun\n", __func__);
3193 omap_mcbsp_rx_done(s);
3196 if (s->codec && s->codec->in.len >= 2) {
3197 ret = s->codec->in.fifo[s->codec->in.start ++] << 8;
3198 ret |= s->codec->in.fifo[s->codec->in.start ++];
3199 s->codec->in.len -= 2;
3203 omap_mcbsp_rx_done(s);
3208 case 0x04: /* DXR2 */
3209 case 0x06: /* DXR1 */
3212 case 0x08: /* SPCR2 */
3214 case 0x0a: /* SPCR1 */
3216 case 0x0c: /* RCR2 */
3218 case 0x0e: /* RCR1 */
3220 case 0x10: /* XCR2 */
3222 case 0x12: /* XCR1 */
3224 case 0x14: /* SRGR2 */
3226 case 0x16: /* SRGR1 */
3228 case 0x18: /* MCR2 */
3230 case 0x1a: /* MCR1 */
3232 case 0x1c: /* RCERA */
3234 case 0x1e: /* RCERB */
3236 case 0x20: /* XCERA */
3238 case 0x22: /* XCERB */
3240 case 0x24: /* PCR0 */
3242 case 0x26: /* RCERC */
3244 case 0x28: /* RCERD */
3246 case 0x2a: /* XCERC */
3248 case 0x2c: /* XCERD */
3250 case 0x2e: /* RCERE */
3252 case 0x30: /* RCERF */
3254 case 0x32: /* XCERE */
3256 case 0x34: /* XCERF */
3258 case 0x36: /* RCERG */
3260 case 0x38: /* RCERH */
3262 case 0x3a: /* XCERG */
3264 case 0x3c: /* XCERH */
3272 static void omap_mcbsp_writeh(void *opaque, hwaddr addr,
3275 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3276 int offset = addr & OMAP_MPUI_REG_MASK;
3279 case 0x00: /* DRR2 */
3280 case 0x02: /* DRR1 */
3284 case 0x04: /* DXR2 */
3285 if (((s->xcr[0] >> 5) & 7) < 3) /* XWDLEN1 */
3288 case 0x06: /* DXR1 */
3289 if (s->tx_req > 1) {
3291 if (s->codec && s->codec->cts) {
3292 s->codec->out.fifo[s->codec->out.len ++] = (value >> 8) & 0xff;
3293 s->codec->out.fifo[s->codec->out.len ++] = (value >> 0) & 0xff;
3296 omap_mcbsp_tx_done(s);
3298 printf("%s: Tx FIFO overrun\n", __func__);
3301 case 0x08: /* SPCR2 */
3302 s->spcr[1] &= 0x0002;
3303 s->spcr[1] |= 0x03f9 & value;
3304 s->spcr[1] |= 0x0004 & (value << 2); /* XEMPTY := XRST */
3305 if (~value & 1) /* XRST */
3307 omap_mcbsp_req_update(s);
3309 case 0x0a: /* SPCR1 */
3310 s->spcr[0] &= 0x0006;
3311 s->spcr[0] |= 0xf8f9 & value;
3312 if (value & (1 << 15)) /* DLB */
3313 printf("%s: Digital Loopback mode enable attempt\n", __func__);
3314 if (~value & 1) { /* RRST */
3317 omap_mcbsp_rx_done(s);
3319 omap_mcbsp_req_update(s);
3322 case 0x0c: /* RCR2 */
3323 s->rcr[1] = value & 0xffff;
3325 case 0x0e: /* RCR1 */
3326 s->rcr[0] = value & 0x7fe0;
3328 case 0x10: /* XCR2 */
3329 s->xcr[1] = value & 0xffff;
3331 case 0x12: /* XCR1 */
3332 s->xcr[0] = value & 0x7fe0;
3334 case 0x14: /* SRGR2 */
3335 s->srgr[1] = value & 0xffff;
3336 omap_mcbsp_req_update(s);
3338 case 0x16: /* SRGR1 */
3339 s->srgr[0] = value & 0xffff;
3340 omap_mcbsp_req_update(s);
3342 case 0x18: /* MCR2 */
3343 s->mcr[1] = value & 0x03e3;
3344 if (value & 3) /* XMCM */
3345 printf("%s: Tx channel selection mode enable attempt\n", __func__);
3347 case 0x1a: /* MCR1 */
3348 s->mcr[0] = value & 0x03e1;
3349 if (value & 1) /* RMCM */
3350 printf("%s: Rx channel selection mode enable attempt\n", __func__);
3352 case 0x1c: /* RCERA */
3353 s->rcer[0] = value & 0xffff;
3355 case 0x1e: /* RCERB */
3356 s->rcer[1] = value & 0xffff;
3358 case 0x20: /* XCERA */
3359 s->xcer[0] = value & 0xffff;
3361 case 0x22: /* XCERB */
3362 s->xcer[1] = value & 0xffff;
3364 case 0x24: /* PCR0 */
3365 s->pcr = value & 0x7faf;
3367 case 0x26: /* RCERC */
3368 s->rcer[2] = value & 0xffff;
3370 case 0x28: /* RCERD */
3371 s->rcer[3] = value & 0xffff;
3373 case 0x2a: /* XCERC */
3374 s->xcer[2] = value & 0xffff;
3376 case 0x2c: /* XCERD */
3377 s->xcer[3] = value & 0xffff;
3379 case 0x2e: /* RCERE */
3380 s->rcer[4] = value & 0xffff;
3382 case 0x30: /* RCERF */
3383 s->rcer[5] = value & 0xffff;
3385 case 0x32: /* XCERE */
3386 s->xcer[4] = value & 0xffff;
3388 case 0x34: /* XCERF */
3389 s->xcer[5] = value & 0xffff;
3391 case 0x36: /* RCERG */
3392 s->rcer[6] = value & 0xffff;
3394 case 0x38: /* RCERH */
3395 s->rcer[7] = value & 0xffff;
3397 case 0x3a: /* XCERG */
3398 s->xcer[6] = value & 0xffff;
3400 case 0x3c: /* XCERH */
3401 s->xcer[7] = value & 0xffff;
3408 static void omap_mcbsp_writew(void *opaque, hwaddr addr,
3411 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3412 int offset = addr & OMAP_MPUI_REG_MASK;
3414 if (offset == 0x04) { /* DXR */
3415 if (((s->xcr[0] >> 5) & 7) < 3) /* XWDLEN1 */
3417 if (s->tx_req > 3) {
3419 if (s->codec && s->codec->cts) {
3420 s->codec->out.fifo[s->codec->out.len ++] =
3421 (value >> 24) & 0xff;
3422 s->codec->out.fifo[s->codec->out.len ++] =
3423 (value >> 16) & 0xff;
3424 s->codec->out.fifo[s->codec->out.len ++] =
3425 (value >> 8) & 0xff;
3426 s->codec->out.fifo[s->codec->out.len ++] =
3427 (value >> 0) & 0xff;
3430 omap_mcbsp_tx_done(s);
3432 printf("%s: Tx FIFO overrun\n", __func__);
3436 omap_badwidth_write16(opaque, addr, value);
3439 static void omap_mcbsp_write(void *opaque, hwaddr addr,
3440 uint64_t value, unsigned size)
3444 omap_mcbsp_writeh(opaque, addr, value);
3447 omap_mcbsp_writew(opaque, addr, value);
3450 omap_badwidth_write16(opaque, addr, value);
3454 static const MemoryRegionOps omap_mcbsp_ops = {
3455 .read = omap_mcbsp_read,
3456 .write = omap_mcbsp_write,
3457 .endianness = DEVICE_NATIVE_ENDIAN,
3460 static void omap_mcbsp_reset(struct omap_mcbsp_s *s)
3462 memset(&s->spcr, 0, sizeof(s->spcr));
3463 memset(&s->rcr, 0, sizeof(s->rcr));
3464 memset(&s->xcr, 0, sizeof(s->xcr));
3465 s->srgr[0] = 0x0001;
3466 s->srgr[1] = 0x2000;
3467 memset(&s->mcr, 0, sizeof(s->mcr));
3468 memset(&s->pcr, 0, sizeof(s->pcr));
3469 memset(&s->rcer, 0, sizeof(s->rcer));
3470 memset(&s->xcer, 0, sizeof(s->xcer));
3475 timer_del(s->source_timer);
3476 timer_del(s->sink_timer);
3479 static struct omap_mcbsp_s *omap_mcbsp_init(MemoryRegion *system_memory,
3481 qemu_irq txirq, qemu_irq rxirq,
3482 qemu_irq *dma, omap_clk clk)
3484 struct omap_mcbsp_s *s = g_new0(struct omap_mcbsp_s, 1);
3490 s->sink_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, omap_mcbsp_sink_tick, s);
3491 s->source_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, omap_mcbsp_source_tick, s);
3492 omap_mcbsp_reset(s);
3494 memory_region_init_io(&s->iomem, NULL, &omap_mcbsp_ops, s, "omap-mcbsp", 0x800);
3495 memory_region_add_subregion(system_memory, base, &s->iomem);
3500 static void omap_mcbsp_i2s_swallow(void *opaque, int line, int level)
3502 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3505 s->rx_req = s->codec->in.len;
3506 omap_mcbsp_rx_newdata(s);
3510 static void omap_mcbsp_i2s_start(void *opaque, int line, int level)
3512 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3515 s->tx_req = s->codec->out.size;
3516 omap_mcbsp_tx_newdata(s);
3520 void omap_mcbsp_i2s_attach(struct omap_mcbsp_s *s, I2SCodec *slave)
3523 slave->rx_swallow = qemu_allocate_irq(omap_mcbsp_i2s_swallow, s, 0);
3524 slave->tx_start = qemu_allocate_irq(omap_mcbsp_i2s_start, s, 0);
3527 /* LED Pulse Generators */
3540 static void omap_lpg_tick(void *opaque)
3542 struct omap_lpg_s *s = opaque;
3545 timer_mod(s->tm, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + s->period - s->on);
3547 timer_mod(s->tm, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + s->on);
3549 s->cycle = !s->cycle;
3550 printf("%s: LED is %s\n", __func__, s->cycle ? "on" : "off");
3553 static void omap_lpg_update(struct omap_lpg_s *s)
3555 int64_t on, period = 1, ticks = 1000;
3556 static const int per[8] = { 1, 2, 4, 8, 12, 16, 20, 24 };
3558 if (~s->control & (1 << 6)) /* LPGRES */
3560 else if (s->control & (1 << 7)) /* PERM_ON */
3563 period = muldiv64(ticks, per[s->control & 7], /* PERCTRL */
3565 on = (s->clk && s->power) ? muldiv64(ticks,
3566 per[(s->control >> 3) & 7], 256) : 0; /* ONCTRL */
3570 if (on == period && s->on < s->period)
3571 printf("%s: LED is on\n", __func__);
3572 else if (on == 0 && s->on)
3573 printf("%s: LED is off\n", __func__);
3574 else if (on && (on != s->on || period != s->period)) {
3586 static void omap_lpg_reset(struct omap_lpg_s *s)
3594 static uint64_t omap_lpg_read(void *opaque, hwaddr addr,
3597 struct omap_lpg_s *s = (struct omap_lpg_s *) opaque;
3598 int offset = addr & OMAP_MPUI_REG_MASK;
3601 return omap_badwidth_read8(opaque, addr);
3605 case 0x00: /* LCR */
3608 case 0x04: /* PMR */
3616 static void omap_lpg_write(void *opaque, hwaddr addr,
3617 uint64_t value, unsigned size)
3619 struct omap_lpg_s *s = (struct omap_lpg_s *) opaque;
3620 int offset = addr & OMAP_MPUI_REG_MASK;
3623 omap_badwidth_write8(opaque, addr, value);
3628 case 0x00: /* LCR */
3629 if (~value & (1 << 6)) /* LPGRES */
3631 s->control = value & 0xff;
3635 case 0x04: /* PMR */
3636 s->power = value & 0x01;
3646 static const MemoryRegionOps omap_lpg_ops = {
3647 .read = omap_lpg_read,
3648 .write = omap_lpg_write,
3649 .endianness = DEVICE_NATIVE_ENDIAN,
3652 static void omap_lpg_clk_update(void *opaque, int line, int on)
3654 struct omap_lpg_s *s = (struct omap_lpg_s *) opaque;
3660 static struct omap_lpg_s *omap_lpg_init(MemoryRegion *system_memory,
3661 hwaddr base, omap_clk clk)
3663 struct omap_lpg_s *s = g_new0(struct omap_lpg_s, 1);
3665 s->tm = timer_new_ms(QEMU_CLOCK_VIRTUAL, omap_lpg_tick, s);
3669 memory_region_init_io(&s->iomem, NULL, &omap_lpg_ops, s, "omap-lpg", 0x800);
3670 memory_region_add_subregion(system_memory, base, &s->iomem);
3672 omap_clk_adduser(clk, qemu_allocate_irq(omap_lpg_clk_update, s, 0));
3677 /* MPUI Peripheral Bridge configuration */
3678 static uint64_t omap_mpui_io_read(void *opaque, hwaddr addr,
3682 return omap_badwidth_read16(opaque, addr);
3685 if (addr == OMAP_MPUI_BASE) /* CMR */
3692 static void omap_mpui_io_write(void *opaque, hwaddr addr,
3693 uint64_t value, unsigned size)
3695 /* FIXME: infinite loop */
3696 omap_badwidth_write16(opaque, addr, value);
3699 static const MemoryRegionOps omap_mpui_io_ops = {
3700 .read = omap_mpui_io_read,
3701 .write = omap_mpui_io_write,
3702 .endianness = DEVICE_NATIVE_ENDIAN,
3705 static void omap_setup_mpui_io(MemoryRegion *system_memory,
3706 struct omap_mpu_state_s *mpu)
3708 memory_region_init_io(&mpu->mpui_io_iomem, NULL, &omap_mpui_io_ops, mpu,
3709 "omap-mpui-io", 0x7fff);
3710 memory_region_add_subregion(system_memory, OMAP_MPUI_BASE,
3711 &mpu->mpui_io_iomem);
3714 /* General chip reset */
3715 static void omap1_mpu_reset(void *opaque)
3717 struct omap_mpu_state_s *mpu = (struct omap_mpu_state_s *) opaque;
3719 omap_dma_reset(mpu->dma);
3720 omap_mpu_timer_reset(mpu->timer[0]);
3721 omap_mpu_timer_reset(mpu->timer[1]);
3722 omap_mpu_timer_reset(mpu->timer[2]);
3723 omap_wd_timer_reset(mpu->wdt);
3724 omap_os_timer_reset(mpu->os_timer);
3725 omap_lcdc_reset(mpu->lcd);
3726 omap_ulpd_pm_reset(mpu);
3727 omap_pin_cfg_reset(mpu);
3728 omap_mpui_reset(mpu);
3729 omap_tipb_bridge_reset(mpu->private_tipb);
3730 omap_tipb_bridge_reset(mpu->public_tipb);
3731 omap_dpll_reset(mpu->dpll[0]);
3732 omap_dpll_reset(mpu->dpll[1]);
3733 omap_dpll_reset(mpu->dpll[2]);
3734 omap_uart_reset(mpu->uart[0]);
3735 omap_uart_reset(mpu->uart[1]);
3736 omap_uart_reset(mpu->uart[2]);
3737 omap_mmc_reset(mpu->mmc);
3738 omap_mpuio_reset(mpu->mpuio);
3739 omap_uwire_reset(mpu->microwire);
3740 omap_pwl_reset(mpu->pwl);
3741 omap_pwt_reset(mpu->pwt);
3742 omap_rtc_reset(mpu->rtc);
3743 omap_mcbsp_reset(mpu->mcbsp1);
3744 omap_mcbsp_reset(mpu->mcbsp2);
3745 omap_mcbsp_reset(mpu->mcbsp3);
3746 omap_lpg_reset(mpu->led[0]);
3747 omap_lpg_reset(mpu->led[1]);
3748 omap_clkm_reset(mpu);
3749 cpu_reset(CPU(mpu->cpu));
3752 static const struct omap_map_s {
3757 } omap15xx_dsp_mm[] = {
3759 { 0xe1010000, 0xfffb0000, 0x800, "UART1 BT" }, /* CS0 */
3760 { 0xe1010800, 0xfffb0800, 0x800, "UART2 COM" }, /* CS1 */
3761 { 0xe1011800, 0xfffb1800, 0x800, "McBSP1 audio" }, /* CS3 */
3762 { 0xe1012000, 0xfffb2000, 0x800, "MCSI2 communication" }, /* CS4 */
3763 { 0xe1012800, 0xfffb2800, 0x800, "MCSI1 BT u-Law" }, /* CS5 */
3764 { 0xe1013000, 0xfffb3000, 0x800, "uWire" }, /* CS6 */
3765 { 0xe1013800, 0xfffb3800, 0x800, "I^2C" }, /* CS7 */
3766 { 0xe1014000, 0xfffb4000, 0x800, "USB W2FC" }, /* CS8 */
3767 { 0xe1014800, 0xfffb4800, 0x800, "RTC" }, /* CS9 */
3768 { 0xe1015000, 0xfffb5000, 0x800, "MPUIO" }, /* CS10 */
3769 { 0xe1015800, 0xfffb5800, 0x800, "PWL" }, /* CS11 */
3770 { 0xe1016000, 0xfffb6000, 0x800, "PWT" }, /* CS12 */
3771 { 0xe1017000, 0xfffb7000, 0x800, "McBSP3" }, /* CS14 */
3772 { 0xe1017800, 0xfffb7800, 0x800, "MMC" }, /* CS15 */
3773 { 0xe1019000, 0xfffb9000, 0x800, "32-kHz timer" }, /* CS18 */
3774 { 0xe1019800, 0xfffb9800, 0x800, "UART3" }, /* CS19 */
3775 { 0xe101c800, 0xfffbc800, 0x800, "TIPB switches" }, /* CS25 */
3777 { 0xe101e000, 0xfffce000, 0x800, "GPIOs" }, /* CS28 */
3782 static void omap_setup_dsp_mapping(MemoryRegion *system_memory,
3783 const struct omap_map_s *map)
3787 for (; map->phys_dsp; map ++) {
3788 io = g_new(MemoryRegion, 1);
3789 memory_region_init_alias(io, NULL, map->name,
3790 system_memory, map->phys_mpu, map->size);
3791 memory_region_add_subregion(system_memory, map->phys_dsp, io);
3795 void omap_mpu_wakeup(void *opaque, int irq, int req)
3797 struct omap_mpu_state_s *mpu = (struct omap_mpu_state_s *) opaque;
3798 CPUState *cpu = CPU(mpu->cpu);
3801 cpu_interrupt(cpu, CPU_INTERRUPT_EXITTB);
3805 static const struct dma_irq_map omap1_dma_irq_map[] = {
3806 { 0, OMAP_INT_DMA_CH0_6 },
3807 { 0, OMAP_INT_DMA_CH1_7 },
3808 { 0, OMAP_INT_DMA_CH2_8 },
3809 { 0, OMAP_INT_DMA_CH3 },
3810 { 0, OMAP_INT_DMA_CH4 },
3811 { 0, OMAP_INT_DMA_CH5 },
3812 { 1, OMAP_INT_1610_DMA_CH6 },
3813 { 1, OMAP_INT_1610_DMA_CH7 },
3814 { 1, OMAP_INT_1610_DMA_CH8 },
3815 { 1, OMAP_INT_1610_DMA_CH9 },
3816 { 1, OMAP_INT_1610_DMA_CH10 },
3817 { 1, OMAP_INT_1610_DMA_CH11 },
3818 { 1, OMAP_INT_1610_DMA_CH12 },
3819 { 1, OMAP_INT_1610_DMA_CH13 },
3820 { 1, OMAP_INT_1610_DMA_CH14 },
3821 { 1, OMAP_INT_1610_DMA_CH15 }
3824 /* DMA ports for OMAP1 */
3825 static int omap_validate_emiff_addr(struct omap_mpu_state_s *s,
3828 return range_covers_byte(OMAP_EMIFF_BASE, s->sdram_size, addr);
3831 static int omap_validate_emifs_addr(struct omap_mpu_state_s *s,
3834 return range_covers_byte(OMAP_EMIFS_BASE, OMAP_EMIFF_BASE - OMAP_EMIFS_BASE,
3838 static int omap_validate_imif_addr(struct omap_mpu_state_s *s,
3841 return range_covers_byte(OMAP_IMIF_BASE, s->sram_size, addr);
3844 static int omap_validate_tipb_addr(struct omap_mpu_state_s *s,
3847 return range_covers_byte(0xfffb0000, 0xffff0000 - 0xfffb0000, addr);
3850 static int omap_validate_local_addr(struct omap_mpu_state_s *s,
3853 return range_covers_byte(OMAP_LOCALBUS_BASE, 0x1000000, addr);
3856 static int omap_validate_tipb_mpui_addr(struct omap_mpu_state_s *s,
3859 return range_covers_byte(0xe1010000, 0xe1020004 - 0xe1010000, addr);
3862 struct omap_mpu_state_s *omap310_mpu_init(MemoryRegion *dram,
3863 const char *cpu_type)
3866 struct omap_mpu_state_s *s = g_new0(struct omap_mpu_state_s, 1);
3867 qemu_irq dma_irqs[6];
3869 SysBusDevice *busdev;
3870 MemoryRegion *system_memory = get_system_memory();
3873 s->mpu_model = omap310;
3874 s->cpu = ARM_CPU(cpu_create(cpu_type));
3875 s->sdram_size = memory_region_size(dram);
3876 s->sram_size = OMAP15XX_SRAM_SIZE;
3878 s->wakeup = qemu_allocate_irq(omap_mpu_wakeup, s, 0);
3883 /* Memory-mapped stuff */
3884 memory_region_init_ram(&s->imif_ram, NULL, "omap1.sram", s->sram_size,
3886 memory_region_add_subregion(system_memory, OMAP_IMIF_BASE, &s->imif_ram);
3888 omap_clkm_init(system_memory, 0xfffece00, 0xe1008000, s);
3890 s->ih[0] = qdev_create(NULL, "omap-intc");
3891 qdev_prop_set_uint32(s->ih[0], "size", 0x100);
3892 qdev_prop_set_ptr(s->ih[0], "clk", omap_findclk(s, "arminth_ck"));
3893 qdev_init_nofail(s->ih[0]);
3894 busdev = SYS_BUS_DEVICE(s->ih[0]);
3895 sysbus_connect_irq(busdev, 0,
3896 qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_IRQ));
3897 sysbus_connect_irq(busdev, 1,
3898 qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_FIQ));
3899 sysbus_mmio_map(busdev, 0, 0xfffecb00);
3900 s->ih[1] = qdev_create(NULL, "omap-intc");
3901 qdev_prop_set_uint32(s->ih[1], "size", 0x800);
3902 qdev_prop_set_ptr(s->ih[1], "clk", omap_findclk(s, "arminth_ck"));
3903 qdev_init_nofail(s->ih[1]);
3904 busdev = SYS_BUS_DEVICE(s->ih[1]);
3905 sysbus_connect_irq(busdev, 0,
3906 qdev_get_gpio_in(s->ih[0], OMAP_INT_15XX_IH2_IRQ));
3907 /* The second interrupt controller's FIQ output is not wired up */
3908 sysbus_mmio_map(busdev, 0, 0xfffe0000);
3910 for (i = 0; i < 6; i++) {
3911 dma_irqs[i] = qdev_get_gpio_in(s->ih[omap1_dma_irq_map[i].ih],
3912 omap1_dma_irq_map[i].intr);
3914 s->dma = omap_dma_init(0xfffed800, dma_irqs, system_memory,
3915 qdev_get_gpio_in(s->ih[0], OMAP_INT_DMA_LCD),
3916 s, omap_findclk(s, "dma_ck"), omap_dma_3_1);
3918 s->port[emiff ].addr_valid = omap_validate_emiff_addr;
3919 s->port[emifs ].addr_valid = omap_validate_emifs_addr;
3920 s->port[imif ].addr_valid = omap_validate_imif_addr;
3921 s->port[tipb ].addr_valid = omap_validate_tipb_addr;
3922 s->port[local ].addr_valid = omap_validate_local_addr;
3923 s->port[tipb_mpui].addr_valid = omap_validate_tipb_mpui_addr;
3925 /* Register SDRAM and SRAM DMA ports for fast transfers. */
3926 soc_dma_port_add_mem(s->dma, memory_region_get_ram_ptr(dram),
3927 OMAP_EMIFF_BASE, s->sdram_size);
3928 soc_dma_port_add_mem(s->dma, memory_region_get_ram_ptr(&s->imif_ram),
3929 OMAP_IMIF_BASE, s->sram_size);
3931 s->timer[0] = omap_mpu_timer_init(system_memory, 0xfffec500,
3932 qdev_get_gpio_in(s->ih[0], OMAP_INT_TIMER1),
3933 omap_findclk(s, "mputim_ck"));
3934 s->timer[1] = omap_mpu_timer_init(system_memory, 0xfffec600,
3935 qdev_get_gpio_in(s->ih[0], OMAP_INT_TIMER2),
3936 omap_findclk(s, "mputim_ck"));
3937 s->timer[2] = omap_mpu_timer_init(system_memory, 0xfffec700,
3938 qdev_get_gpio_in(s->ih[0], OMAP_INT_TIMER3),
3939 omap_findclk(s, "mputim_ck"));
3941 s->wdt = omap_wd_timer_init(system_memory, 0xfffec800,
3942 qdev_get_gpio_in(s->ih[0], OMAP_INT_WD_TIMER),
3943 omap_findclk(s, "armwdt_ck"));
3945 s->os_timer = omap_os_timer_init(system_memory, 0xfffb9000,
3946 qdev_get_gpio_in(s->ih[1], OMAP_INT_OS_TIMER),
3947 omap_findclk(s, "clk32-kHz"));
3949 s->lcd = omap_lcdc_init(system_memory, 0xfffec000,
3950 qdev_get_gpio_in(s->ih[0], OMAP_INT_LCD_CTRL),
3951 omap_dma_get_lcdch(s->dma),
3952 omap_findclk(s, "lcd_ck"));
3954 omap_ulpd_pm_init(system_memory, 0xfffe0800, s);
3955 omap_pin_cfg_init(system_memory, 0xfffe1000, s);
3956 omap_id_init(system_memory, s);
3958 omap_mpui_init(system_memory, 0xfffec900, s);
3960 s->private_tipb = omap_tipb_bridge_init(system_memory, 0xfffeca00,
3961 qdev_get_gpio_in(s->ih[0], OMAP_INT_BRIDGE_PRIV),
3962 omap_findclk(s, "tipb_ck"));
3963 s->public_tipb = omap_tipb_bridge_init(system_memory, 0xfffed300,
3964 qdev_get_gpio_in(s->ih[0], OMAP_INT_BRIDGE_PUB),
3965 omap_findclk(s, "tipb_ck"));
3967 omap_tcmi_init(system_memory, 0xfffecc00, s);
3969 s->uart[0] = omap_uart_init(0xfffb0000,
3970 qdev_get_gpio_in(s->ih[1], OMAP_INT_UART1),
3971 omap_findclk(s, "uart1_ck"),
3972 omap_findclk(s, "uart1_ck"),
3973 s->drq[OMAP_DMA_UART1_TX], s->drq[OMAP_DMA_UART1_RX],
3976 s->uart[1] = omap_uart_init(0xfffb0800,
3977 qdev_get_gpio_in(s->ih[1], OMAP_INT_UART2),
3978 omap_findclk(s, "uart2_ck"),
3979 omap_findclk(s, "uart2_ck"),
3980 s->drq[OMAP_DMA_UART2_TX], s->drq[OMAP_DMA_UART2_RX],
3982 serial_hd(0) ? serial_hd(1) : NULL);
3983 s->uart[2] = omap_uart_init(0xfffb9800,
3984 qdev_get_gpio_in(s->ih[0], OMAP_INT_UART3),
3985 omap_findclk(s, "uart3_ck"),
3986 omap_findclk(s, "uart3_ck"),
3987 s->drq[OMAP_DMA_UART3_TX], s->drq[OMAP_DMA_UART3_RX],
3989 serial_hd(0) && serial_hd(1) ? serial_hd(2) : NULL);
3991 s->dpll[0] = omap_dpll_init(system_memory, 0xfffecf00,
3992 omap_findclk(s, "dpll1"));
3993 s->dpll[1] = omap_dpll_init(system_memory, 0xfffed000,
3994 omap_findclk(s, "dpll2"));
3995 s->dpll[2] = omap_dpll_init(system_memory, 0xfffed100,
3996 omap_findclk(s, "dpll3"));
3998 dinfo = drive_get(IF_SD, 0, 0);
3999 if (!dinfo && !qtest_enabled()) {
4000 warn_report("missing SecureDigital device");
4002 s->mmc = omap_mmc_init(0xfffb7800, system_memory,
4003 dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
4004 qdev_get_gpio_in(s->ih[1], OMAP_INT_OQN),
4005 &s->drq[OMAP_DMA_MMC_TX],
4006 omap_findclk(s, "mmc_ck"));
4008 s->mpuio = omap_mpuio_init(system_memory, 0xfffb5000,
4009 qdev_get_gpio_in(s->ih[1], OMAP_INT_KEYBOARD),
4010 qdev_get_gpio_in(s->ih[1], OMAP_INT_MPUIO),
4011 s->wakeup, omap_findclk(s, "clk32-kHz"));
4013 s->gpio = qdev_create(NULL, "omap-gpio");
4014 qdev_prop_set_int32(s->gpio, "mpu_model", s->mpu_model);
4015 qdev_prop_set_ptr(s->gpio, "clk", omap_findclk(s, "arm_gpio_ck"));
4016 qdev_init_nofail(s->gpio);
4017 sysbus_connect_irq(SYS_BUS_DEVICE(s->gpio), 0,
4018 qdev_get_gpio_in(s->ih[0], OMAP_INT_GPIO_BANK1));
4019 sysbus_mmio_map(SYS_BUS_DEVICE(s->gpio), 0, 0xfffce000);
4021 s->microwire = omap_uwire_init(system_memory, 0xfffb3000,
4022 qdev_get_gpio_in(s->ih[1], OMAP_INT_uWireTX),
4023 qdev_get_gpio_in(s->ih[1], OMAP_INT_uWireRX),
4024 s->drq[OMAP_DMA_UWIRE_TX], omap_findclk(s, "mpuper_ck"));
4026 s->pwl = omap_pwl_init(system_memory, 0xfffb5800,
4027 omap_findclk(s, "armxor_ck"));
4028 s->pwt = omap_pwt_init(system_memory, 0xfffb6000,
4029 omap_findclk(s, "armxor_ck"));
4031 s->i2c[0] = qdev_create(NULL, "omap_i2c");
4032 qdev_prop_set_uint8(s->i2c[0], "revision", 0x11);
4033 qdev_prop_set_ptr(s->i2c[0], "fclk", omap_findclk(s, "mpuper_ck"));
4034 qdev_init_nofail(s->i2c[0]);
4035 busdev = SYS_BUS_DEVICE(s->i2c[0]);
4036 sysbus_connect_irq(busdev, 0, qdev_get_gpio_in(s->ih[1], OMAP_INT_I2C));
4037 sysbus_connect_irq(busdev, 1, s->drq[OMAP_DMA_I2C_TX]);
4038 sysbus_connect_irq(busdev, 2, s->drq[OMAP_DMA_I2C_RX]);
4039 sysbus_mmio_map(busdev, 0, 0xfffb3800);
4041 s->rtc = omap_rtc_init(system_memory, 0xfffb4800,
4042 qdev_get_gpio_in(s->ih[1], OMAP_INT_RTC_TIMER),
4043 qdev_get_gpio_in(s->ih[1], OMAP_INT_RTC_ALARM),
4044 omap_findclk(s, "clk32-kHz"));
4046 s->mcbsp1 = omap_mcbsp_init(system_memory, 0xfffb1800,
4047 qdev_get_gpio_in(s->ih[1], OMAP_INT_McBSP1TX),
4048 qdev_get_gpio_in(s->ih[1], OMAP_INT_McBSP1RX),
4049 &s->drq[OMAP_DMA_MCBSP1_TX], omap_findclk(s, "dspxor_ck"));
4050 s->mcbsp2 = omap_mcbsp_init(system_memory, 0xfffb1000,
4051 qdev_get_gpio_in(s->ih[0],
4052 OMAP_INT_310_McBSP2_TX),
4053 qdev_get_gpio_in(s->ih[0],
4054 OMAP_INT_310_McBSP2_RX),
4055 &s->drq[OMAP_DMA_MCBSP2_TX], omap_findclk(s, "mpuper_ck"));
4056 s->mcbsp3 = omap_mcbsp_init(system_memory, 0xfffb7000,
4057 qdev_get_gpio_in(s->ih[1], OMAP_INT_McBSP3TX),
4058 qdev_get_gpio_in(s->ih[1], OMAP_INT_McBSP3RX),
4059 &s->drq[OMAP_DMA_MCBSP3_TX], omap_findclk(s, "dspxor_ck"));
4061 s->led[0] = omap_lpg_init(system_memory,
4062 0xfffbd000, omap_findclk(s, "clk32-kHz"));
4063 s->led[1] = omap_lpg_init(system_memory,
4064 0xfffbd800, omap_findclk(s, "clk32-kHz"));
4066 /* Register mappings not currenlty implemented:
4067 * MCSI2 Comm fffb2000 - fffb27ff (not mapped on OMAP310)
4068 * MCSI1 Bluetooth fffb2800 - fffb2fff (not mapped on OMAP310)
4069 * USB W2FC fffb4000 - fffb47ff
4070 * Camera Interface fffb6800 - fffb6fff
4071 * USB Host fffba000 - fffba7ff
4072 * FAC fffba800 - fffbafff
4073 * HDQ/1-Wire fffbc000 - fffbc7ff
4074 * TIPB switches fffbc800 - fffbcfff
4075 * Mailbox fffcf000 - fffcf7ff
4076 * Local bus IF fffec100 - fffec1ff
4077 * Local bus MMU fffec200 - fffec2ff
4078 * DSP MMU fffed200 - fffed2ff
4081 omap_setup_dsp_mapping(system_memory, omap15xx_dsp_mm);
4082 omap_setup_mpui_io(system_memory, s);
4084 qemu_register_reset(omap1_mpu_reset, s);