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 "hw/boards.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 "qemu/range.h"
39 #include "hw/sysbus.h"
40 #include "qemu/cutils.h"
43 static inline void omap_log_badwidth(const char *funcname, hwaddr addr, int sz)
45 qemu_log_mask(LOG_GUEST_ERROR, "%s: %d-bit register %#08" HWADDR_PRIx "\n",
46 funcname, 8 * sz, addr);
49 /* Should signal the TCMI/GPMC */
50 uint32_t omap_badwidth_read8(void *opaque, hwaddr addr)
54 omap_log_badwidth(__func__, addr, 1);
55 cpu_physical_memory_read(addr, &ret, 1);
59 void omap_badwidth_write8(void *opaque, hwaddr addr,
64 omap_log_badwidth(__func__, addr, 1);
65 cpu_physical_memory_write(addr, &val8, 1);
68 uint32_t omap_badwidth_read16(void *opaque, hwaddr addr)
72 omap_log_badwidth(__func__, addr, 2);
73 cpu_physical_memory_read(addr, &ret, 2);
77 void omap_badwidth_write16(void *opaque, hwaddr addr,
80 uint16_t val16 = value;
82 omap_log_badwidth(__func__, addr, 2);
83 cpu_physical_memory_write(addr, &val16, 2);
86 uint32_t omap_badwidth_read32(void *opaque, hwaddr addr)
90 omap_log_badwidth(__func__, addr, 4);
91 cpu_physical_memory_read(addr, &ret, 4);
95 void omap_badwidth_write32(void *opaque, hwaddr addr,
98 omap_log_badwidth(__func__, addr, 4);
99 cpu_physical_memory_write(addr, &value, 4);
103 struct omap_mpu_timer_s {
121 static inline uint32_t omap_timer_read(struct omap_mpu_timer_s *timer)
123 uint64_t distance = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) - timer->time;
125 if (timer->st && timer->enable && timer->rate)
126 return timer->val - muldiv64(distance >> (timer->ptv + 1),
127 timer->rate, NANOSECONDS_PER_SECOND);
132 static inline void omap_timer_sync(struct omap_mpu_timer_s *timer)
134 timer->val = omap_timer_read(timer);
135 timer->time = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
138 static inline void omap_timer_update(struct omap_mpu_timer_s *timer)
142 if (timer->enable && timer->st && timer->rate) {
143 timer->val = timer->reset_val; /* Should skip this on clk enable */
144 expires = muldiv64((uint64_t) timer->val << (timer->ptv + 1),
145 NANOSECONDS_PER_SECOND, timer->rate);
147 /* If timer expiry would be sooner than in about 1 ms and
148 * auto-reload isn't set, then fire immediately. This is a hack
149 * to make systems like PalmOS run in acceptable time. PalmOS
150 * sets the interval to a very low value and polls the status bit
151 * in a busy loop when it wants to sleep just a couple of CPU
153 if (expires > (NANOSECONDS_PER_SECOND >> 10) || timer->ar) {
154 timer_mod(timer->timer, timer->time + expires);
156 qemu_bh_schedule(timer->tick);
159 timer_del(timer->timer);
162 static void omap_timer_fire(void *opaque)
164 struct omap_mpu_timer_s *timer = opaque;
172 /* Edge-triggered irq */
173 qemu_irq_pulse(timer->irq);
176 static void omap_timer_tick(void *opaque)
178 struct omap_mpu_timer_s *timer = (struct omap_mpu_timer_s *) opaque;
180 omap_timer_sync(timer);
181 omap_timer_fire(timer);
182 omap_timer_update(timer);
185 static void omap_timer_clk_update(void *opaque, int line, int on)
187 struct omap_mpu_timer_s *timer = (struct omap_mpu_timer_s *) opaque;
189 omap_timer_sync(timer);
190 timer->rate = on ? omap_clk_getrate(timer->clk) : 0;
191 omap_timer_update(timer);
194 static void omap_timer_clk_setup(struct omap_mpu_timer_s *timer)
196 omap_clk_adduser(timer->clk,
197 qemu_allocate_irq(omap_timer_clk_update, timer, 0));
198 timer->rate = omap_clk_getrate(timer->clk);
201 static uint64_t omap_mpu_timer_read(void *opaque, hwaddr addr,
204 struct omap_mpu_timer_s *s = (struct omap_mpu_timer_s *) opaque;
207 return omap_badwidth_read32(opaque, addr);
211 case 0x00: /* CNTL_TIMER */
212 return (s->enable << 5) | (s->ptv << 2) | (s->ar << 1) | s->st;
214 case 0x04: /* LOAD_TIM */
217 case 0x08: /* READ_TIM */
218 return omap_timer_read(s);
225 static void omap_mpu_timer_write(void *opaque, hwaddr addr,
226 uint64_t value, unsigned size)
228 struct omap_mpu_timer_s *s = (struct omap_mpu_timer_s *) opaque;
231 omap_badwidth_write32(opaque, addr, value);
236 case 0x00: /* CNTL_TIMER */
238 s->enable = (value >> 5) & 1;
239 s->ptv = (value >> 2) & 7;
240 s->ar = (value >> 1) & 1;
242 omap_timer_update(s);
245 case 0x04: /* LOAD_TIM */
246 s->reset_val = value;
249 case 0x08: /* READ_TIM */
258 static const MemoryRegionOps omap_mpu_timer_ops = {
259 .read = omap_mpu_timer_read,
260 .write = omap_mpu_timer_write,
261 .endianness = DEVICE_LITTLE_ENDIAN,
264 static void omap_mpu_timer_reset(struct omap_mpu_timer_s *s)
268 s->reset_val = 31337;
276 static struct omap_mpu_timer_s *omap_mpu_timer_init(MemoryRegion *system_memory,
278 qemu_irq irq, omap_clk clk)
280 struct omap_mpu_timer_s *s = g_new0(struct omap_mpu_timer_s, 1);
284 s->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, omap_timer_tick, s);
285 s->tick = qemu_bh_new(omap_timer_fire, s);
286 omap_mpu_timer_reset(s);
287 omap_timer_clk_setup(s);
289 memory_region_init_io(&s->iomem, NULL, &omap_mpu_timer_ops, s,
290 "omap-mpu-timer", 0x100);
292 memory_region_add_subregion(system_memory, base, &s->iomem);
298 struct omap_watchdog_timer_s {
299 struct omap_mpu_timer_s timer;
307 static uint64_t omap_wd_timer_read(void *opaque, hwaddr addr,
310 struct omap_watchdog_timer_s *s = (struct omap_watchdog_timer_s *) opaque;
313 return omap_badwidth_read16(opaque, addr);
317 case 0x00: /* CNTL_TIMER */
318 return (s->timer.ptv << 9) | (s->timer.ar << 8) |
319 (s->timer.st << 7) | (s->free << 1);
321 case 0x04: /* READ_TIMER */
322 return omap_timer_read(&s->timer);
324 case 0x08: /* TIMER_MODE */
325 return s->mode << 15;
332 static void omap_wd_timer_write(void *opaque, hwaddr addr,
333 uint64_t value, unsigned size)
335 struct omap_watchdog_timer_s *s = (struct omap_watchdog_timer_s *) opaque;
338 omap_badwidth_write16(opaque, addr, value);
343 case 0x00: /* CNTL_TIMER */
344 omap_timer_sync(&s->timer);
345 s->timer.ptv = (value >> 9) & 7;
346 s->timer.ar = (value >> 8) & 1;
347 s->timer.st = (value >> 7) & 1;
348 s->free = (value >> 1) & 1;
349 omap_timer_update(&s->timer);
352 case 0x04: /* LOAD_TIMER */
353 s->timer.reset_val = value & 0xffff;
356 case 0x08: /* TIMER_MODE */
357 if (!s->mode && ((value >> 15) & 1))
358 omap_clk_get(s->timer.clk);
359 s->mode |= (value >> 15) & 1;
360 if (s->last_wr == 0xf5) {
361 if ((value & 0xff) == 0xa0) {
364 omap_clk_put(s->timer.clk);
367 /* XXX: on T|E hardware somehow this has no effect,
368 * on Zire 71 it works as specified. */
370 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
373 s->last_wr = value & 0xff;
381 static const MemoryRegionOps omap_wd_timer_ops = {
382 .read = omap_wd_timer_read,
383 .write = omap_wd_timer_write,
384 .endianness = DEVICE_NATIVE_ENDIAN,
387 static void omap_wd_timer_reset(struct omap_watchdog_timer_s *s)
389 timer_del(s->timer.timer);
391 omap_clk_get(s->timer.clk);
397 s->timer.reset_val = 0xffff;
402 omap_timer_update(&s->timer);
405 static struct omap_watchdog_timer_s *omap_wd_timer_init(MemoryRegion *memory,
407 qemu_irq irq, omap_clk clk)
409 struct omap_watchdog_timer_s *s = g_new0(struct omap_watchdog_timer_s, 1);
413 s->timer.timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, omap_timer_tick, &s->timer);
414 omap_wd_timer_reset(s);
415 omap_timer_clk_setup(&s->timer);
417 memory_region_init_io(&s->iomem, NULL, &omap_wd_timer_ops, s,
418 "omap-wd-timer", 0x100);
419 memory_region_add_subregion(memory, base, &s->iomem);
425 struct omap_32khz_timer_s {
426 struct omap_mpu_timer_s timer;
430 static uint64_t omap_os_timer_read(void *opaque, hwaddr addr,
433 struct omap_32khz_timer_s *s = (struct omap_32khz_timer_s *) opaque;
434 int offset = addr & OMAP_MPUI_REG_MASK;
437 return omap_badwidth_read32(opaque, addr);
442 return s->timer.reset_val;
445 return omap_timer_read(&s->timer);
448 return (s->timer.ar << 3) | (s->timer.it_ena << 2) | s->timer.st;
457 static void omap_os_timer_write(void *opaque, hwaddr addr,
458 uint64_t value, unsigned size)
460 struct omap_32khz_timer_s *s = (struct omap_32khz_timer_s *) opaque;
461 int offset = addr & OMAP_MPUI_REG_MASK;
464 omap_badwidth_write32(opaque, addr, value);
470 s->timer.reset_val = value & 0x00ffffff;
478 s->timer.ar = (value >> 3) & 1;
479 s->timer.it_ena = (value >> 2) & 1;
480 if (s->timer.st != (value & 1) || (value & 2)) {
481 omap_timer_sync(&s->timer);
482 s->timer.enable = value & 1;
483 s->timer.st = value & 1;
484 omap_timer_update(&s->timer);
493 static const MemoryRegionOps omap_os_timer_ops = {
494 .read = omap_os_timer_read,
495 .write = omap_os_timer_write,
496 .endianness = DEVICE_NATIVE_ENDIAN,
499 static void omap_os_timer_reset(struct omap_32khz_timer_s *s)
501 timer_del(s->timer.timer);
504 s->timer.reset_val = 0x00ffffff;
511 static struct omap_32khz_timer_s *omap_os_timer_init(MemoryRegion *memory,
513 qemu_irq irq, omap_clk clk)
515 struct omap_32khz_timer_s *s = g_new0(struct omap_32khz_timer_s, 1);
519 s->timer.timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, omap_timer_tick, &s->timer);
520 omap_os_timer_reset(s);
521 omap_timer_clk_setup(&s->timer);
523 memory_region_init_io(&s->iomem, NULL, &omap_os_timer_ops, s,
524 "omap-os-timer", 0x800);
525 memory_region_add_subregion(memory, base, &s->iomem);
530 /* Ultra Low-Power Device Module */
531 static uint64_t omap_ulpd_pm_read(void *opaque, hwaddr addr,
534 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
538 return omap_badwidth_read16(opaque, addr);
542 case 0x14: /* IT_STATUS */
543 ret = s->ulpd_pm_regs[addr >> 2];
544 s->ulpd_pm_regs[addr >> 2] = 0;
545 qemu_irq_lower(qdev_get_gpio_in(s->ih[1], OMAP_INT_GAUGE_32K));
548 case 0x18: /* Reserved */
549 case 0x1c: /* Reserved */
550 case 0x20: /* Reserved */
551 case 0x28: /* Reserved */
552 case 0x2c: /* Reserved */
555 case 0x00: /* COUNTER_32_LSB */
556 case 0x04: /* COUNTER_32_MSB */
557 case 0x08: /* COUNTER_HIGH_FREQ_LSB */
558 case 0x0c: /* COUNTER_HIGH_FREQ_MSB */
559 case 0x10: /* GAUGING_CTRL */
560 case 0x24: /* SETUP_ANALOG_CELL3_ULPD1 */
561 case 0x30: /* CLOCK_CTRL */
562 case 0x34: /* SOFT_REQ */
563 case 0x38: /* COUNTER_32_FIQ */
564 case 0x3c: /* DPLL_CTRL */
565 case 0x40: /* STATUS_REQ */
566 /* XXX: check clk::usecount state for every clock */
567 case 0x48: /* LOCL_TIME */
568 case 0x4c: /* APLL_CTRL */
569 case 0x50: /* POWER_CTRL */
570 return s->ulpd_pm_regs[addr >> 2];
577 static inline void omap_ulpd_clk_update(struct omap_mpu_state_s *s,
578 uint16_t diff, uint16_t value)
580 if (diff & (1 << 4)) /* USB_MCLK_EN */
581 omap_clk_onoff(omap_findclk(s, "usb_clk0"), (value >> 4) & 1);
582 if (diff & (1 << 5)) /* DIS_USB_PVCI_CLK */
583 omap_clk_onoff(omap_findclk(s, "usb_w2fc_ck"), (~value >> 5) & 1);
586 static inline void omap_ulpd_req_update(struct omap_mpu_state_s *s,
587 uint16_t diff, uint16_t value)
589 if (diff & (1 << 0)) /* SOFT_DPLL_REQ */
590 omap_clk_canidle(omap_findclk(s, "dpll4"), (~value >> 0) & 1);
591 if (diff & (1 << 1)) /* SOFT_COM_REQ */
592 omap_clk_canidle(omap_findclk(s, "com_mclk_out"), (~value >> 1) & 1);
593 if (diff & (1 << 2)) /* SOFT_SDW_REQ */
594 omap_clk_canidle(omap_findclk(s, "bt_mclk_out"), (~value >> 2) & 1);
595 if (diff & (1 << 3)) /* SOFT_USB_REQ */
596 omap_clk_canidle(omap_findclk(s, "usb_clk0"), (~value >> 3) & 1);
599 static void omap_ulpd_pm_write(void *opaque, hwaddr addr,
600 uint64_t value, unsigned size)
602 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
605 static const int bypass_div[4] = { 1, 2, 4, 4 };
609 omap_badwidth_write16(opaque, addr, value);
614 case 0x00: /* COUNTER_32_LSB */
615 case 0x04: /* COUNTER_32_MSB */
616 case 0x08: /* COUNTER_HIGH_FREQ_LSB */
617 case 0x0c: /* COUNTER_HIGH_FREQ_MSB */
618 case 0x14: /* IT_STATUS */
619 case 0x40: /* STATUS_REQ */
623 case 0x10: /* GAUGING_CTRL */
624 /* Bits 0 and 1 seem to be confused in the OMAP 310 TRM */
625 if ((s->ulpd_pm_regs[addr >> 2] ^ value) & 1) {
626 now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
629 s->ulpd_gauge_start = now;
631 now -= s->ulpd_gauge_start;
634 ticks = muldiv64(now, 32768, NANOSECONDS_PER_SECOND);
635 s->ulpd_pm_regs[0x00 >> 2] = (ticks >> 0) & 0xffff;
636 s->ulpd_pm_regs[0x04 >> 2] = (ticks >> 16) & 0xffff;
637 if (ticks >> 32) /* OVERFLOW_32K */
638 s->ulpd_pm_regs[0x14 >> 2] |= 1 << 2;
640 /* High frequency ticks */
641 ticks = muldiv64(now, 12000000, NANOSECONDS_PER_SECOND);
642 s->ulpd_pm_regs[0x08 >> 2] = (ticks >> 0) & 0xffff;
643 s->ulpd_pm_regs[0x0c >> 2] = (ticks >> 16) & 0xffff;
644 if (ticks >> 32) /* OVERFLOW_HI_FREQ */
645 s->ulpd_pm_regs[0x14 >> 2] |= 1 << 1;
647 s->ulpd_pm_regs[0x14 >> 2] |= 1 << 0; /* IT_GAUGING */
648 qemu_irq_raise(qdev_get_gpio_in(s->ih[1], OMAP_INT_GAUGE_32K));
651 s->ulpd_pm_regs[addr >> 2] = value;
654 case 0x18: /* Reserved */
655 case 0x1c: /* Reserved */
656 case 0x20: /* Reserved */
657 case 0x28: /* Reserved */
658 case 0x2c: /* Reserved */
661 case 0x24: /* SETUP_ANALOG_CELL3_ULPD1 */
662 case 0x38: /* COUNTER_32_FIQ */
663 case 0x48: /* LOCL_TIME */
664 case 0x50: /* POWER_CTRL */
665 s->ulpd_pm_regs[addr >> 2] = value;
668 case 0x30: /* CLOCK_CTRL */
669 diff = s->ulpd_pm_regs[addr >> 2] ^ value;
670 s->ulpd_pm_regs[addr >> 2] = value & 0x3f;
671 omap_ulpd_clk_update(s, diff, value);
674 case 0x34: /* SOFT_REQ */
675 diff = s->ulpd_pm_regs[addr >> 2] ^ value;
676 s->ulpd_pm_regs[addr >> 2] = value & 0x1f;
677 omap_ulpd_req_update(s, diff, value);
680 case 0x3c: /* DPLL_CTRL */
681 /* XXX: OMAP310 TRM claims bit 3 is PLL_ENABLE, and bit 4 is
682 * omitted altogether, probably a typo. */
683 /* This register has identical semantics with DPLL(1:3) control
684 * registers, see omap_dpll_write() */
685 diff = s->ulpd_pm_regs[addr >> 2] & value;
686 s->ulpd_pm_regs[addr >> 2] = value & 0x2fff;
687 if (diff & (0x3ff << 2)) {
688 if (value & (1 << 4)) { /* PLL_ENABLE */
689 div = ((value >> 5) & 3) + 1; /* PLL_DIV */
690 mult = MIN((value >> 7) & 0x1f, 1); /* PLL_MULT */
692 div = bypass_div[((value >> 2) & 3)]; /* BYPASS_DIV */
695 omap_clk_setrate(omap_findclk(s, "dpll4"), div, mult);
698 /* Enter the desired mode. */
699 s->ulpd_pm_regs[addr >> 2] =
700 (s->ulpd_pm_regs[addr >> 2] & 0xfffe) |
701 ((s->ulpd_pm_regs[addr >> 2] >> 4) & 1);
703 /* Act as if the lock is restored. */
704 s->ulpd_pm_regs[addr >> 2] |= 2;
707 case 0x4c: /* APLL_CTRL */
708 diff = s->ulpd_pm_regs[addr >> 2] & value;
709 s->ulpd_pm_regs[addr >> 2] = value & 0xf;
710 if (diff & (1 << 0)) /* APLL_NDPLL_SWITCH */
711 omap_clk_reparent(omap_findclk(s, "ck_48m"), omap_findclk(s,
712 (value & (1 << 0)) ? "apll" : "dpll4"));
720 static const MemoryRegionOps omap_ulpd_pm_ops = {
721 .read = omap_ulpd_pm_read,
722 .write = omap_ulpd_pm_write,
723 .endianness = DEVICE_NATIVE_ENDIAN,
726 static void omap_ulpd_pm_reset(struct omap_mpu_state_s *mpu)
728 mpu->ulpd_pm_regs[0x00 >> 2] = 0x0001;
729 mpu->ulpd_pm_regs[0x04 >> 2] = 0x0000;
730 mpu->ulpd_pm_regs[0x08 >> 2] = 0x0001;
731 mpu->ulpd_pm_regs[0x0c >> 2] = 0x0000;
732 mpu->ulpd_pm_regs[0x10 >> 2] = 0x0000;
733 mpu->ulpd_pm_regs[0x18 >> 2] = 0x01;
734 mpu->ulpd_pm_regs[0x1c >> 2] = 0x01;
735 mpu->ulpd_pm_regs[0x20 >> 2] = 0x01;
736 mpu->ulpd_pm_regs[0x24 >> 2] = 0x03ff;
737 mpu->ulpd_pm_regs[0x28 >> 2] = 0x01;
738 mpu->ulpd_pm_regs[0x2c >> 2] = 0x01;
739 omap_ulpd_clk_update(mpu, mpu->ulpd_pm_regs[0x30 >> 2], 0x0000);
740 mpu->ulpd_pm_regs[0x30 >> 2] = 0x0000;
741 omap_ulpd_req_update(mpu, mpu->ulpd_pm_regs[0x34 >> 2], 0x0000);
742 mpu->ulpd_pm_regs[0x34 >> 2] = 0x0000;
743 mpu->ulpd_pm_regs[0x38 >> 2] = 0x0001;
744 mpu->ulpd_pm_regs[0x3c >> 2] = 0x2211;
745 mpu->ulpd_pm_regs[0x40 >> 2] = 0x0000; /* FIXME: dump a real STATUS_REQ */
746 mpu->ulpd_pm_regs[0x48 >> 2] = 0x960;
747 mpu->ulpd_pm_regs[0x4c >> 2] = 0x08;
748 mpu->ulpd_pm_regs[0x50 >> 2] = 0x08;
749 omap_clk_setrate(omap_findclk(mpu, "dpll4"), 1, 4);
750 omap_clk_reparent(omap_findclk(mpu, "ck_48m"), omap_findclk(mpu, "dpll4"));
753 static void omap_ulpd_pm_init(MemoryRegion *system_memory,
755 struct omap_mpu_state_s *mpu)
757 memory_region_init_io(&mpu->ulpd_pm_iomem, NULL, &omap_ulpd_pm_ops, mpu,
758 "omap-ulpd-pm", 0x800);
759 memory_region_add_subregion(system_memory, base, &mpu->ulpd_pm_iomem);
760 omap_ulpd_pm_reset(mpu);
763 /* OMAP Pin Configuration */
764 static uint64_t omap_pin_cfg_read(void *opaque, hwaddr addr,
767 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
770 return omap_badwidth_read32(opaque, addr);
774 case 0x00: /* FUNC_MUX_CTRL_0 */
775 case 0x04: /* FUNC_MUX_CTRL_1 */
776 case 0x08: /* FUNC_MUX_CTRL_2 */
777 return s->func_mux_ctrl[addr >> 2];
779 case 0x0c: /* COMP_MODE_CTRL_0 */
780 return s->comp_mode_ctrl[0];
782 case 0x10: /* FUNC_MUX_CTRL_3 */
783 case 0x14: /* FUNC_MUX_CTRL_4 */
784 case 0x18: /* FUNC_MUX_CTRL_5 */
785 case 0x1c: /* FUNC_MUX_CTRL_6 */
786 case 0x20: /* FUNC_MUX_CTRL_7 */
787 case 0x24: /* FUNC_MUX_CTRL_8 */
788 case 0x28: /* FUNC_MUX_CTRL_9 */
789 case 0x2c: /* FUNC_MUX_CTRL_A */
790 case 0x30: /* FUNC_MUX_CTRL_B */
791 case 0x34: /* FUNC_MUX_CTRL_C */
792 case 0x38: /* FUNC_MUX_CTRL_D */
793 return s->func_mux_ctrl[(addr >> 2) - 1];
795 case 0x40: /* PULL_DWN_CTRL_0 */
796 case 0x44: /* PULL_DWN_CTRL_1 */
797 case 0x48: /* PULL_DWN_CTRL_2 */
798 case 0x4c: /* PULL_DWN_CTRL_3 */
799 return s->pull_dwn_ctrl[(addr & 0xf) >> 2];
801 case 0x50: /* GATE_INH_CTRL_0 */
802 return s->gate_inh_ctrl[0];
804 case 0x60: /* VOLTAGE_CTRL_0 */
805 return s->voltage_ctrl[0];
807 case 0x70: /* TEST_DBG_CTRL_0 */
808 return s->test_dbg_ctrl[0];
810 case 0x80: /* MOD_CONF_CTRL_0 */
811 return s->mod_conf_ctrl[0];
818 static inline void omap_pin_funcmux0_update(struct omap_mpu_state_s *s,
819 uint32_t diff, uint32_t value)
822 if (diff & (1 << 9)) /* BLUETOOTH */
823 omap_clk_onoff(omap_findclk(s, "bt_mclk_out"),
825 if (diff & (1 << 7)) /* USB.CLKO */
826 omap_clk_onoff(omap_findclk(s, "usb.clko"),
831 static inline void omap_pin_funcmux1_update(struct omap_mpu_state_s *s,
832 uint32_t diff, uint32_t value)
835 if (diff & (1U << 31)) {
836 /* MCBSP3_CLK_HIZ_DI */
837 omap_clk_onoff(omap_findclk(s, "mcbsp3.clkx"), (value >> 31) & 1);
839 if (diff & (1 << 1)) {
841 omap_clk_onoff(omap_findclk(s, "clk32k_out"), (~value >> 1) & 1);
846 static inline void omap_pin_modconf1_update(struct omap_mpu_state_s *s,
847 uint32_t diff, uint32_t value)
849 if (diff & (1U << 31)) {
850 /* CONF_MOD_UART3_CLK_MODE_R */
851 omap_clk_reparent(omap_findclk(s, "uart3_ck"),
852 omap_findclk(s, ((value >> 31) & 1) ?
853 "ck_48m" : "armper_ck"));
855 if (diff & (1 << 30)) /* CONF_MOD_UART2_CLK_MODE_R */
856 omap_clk_reparent(omap_findclk(s, "uart2_ck"),
857 omap_findclk(s, ((value >> 30) & 1) ?
858 "ck_48m" : "armper_ck"));
859 if (diff & (1 << 29)) /* CONF_MOD_UART1_CLK_MODE_R */
860 omap_clk_reparent(omap_findclk(s, "uart1_ck"),
861 omap_findclk(s, ((value >> 29) & 1) ?
862 "ck_48m" : "armper_ck"));
863 if (diff & (1 << 23)) /* CONF_MOD_MMC_SD_CLK_REQ_R */
864 omap_clk_reparent(omap_findclk(s, "mmc_ck"),
865 omap_findclk(s, ((value >> 23) & 1) ?
866 "ck_48m" : "armper_ck"));
867 if (diff & (1 << 12)) /* CONF_MOD_COM_MCLK_12_48_S */
868 omap_clk_reparent(omap_findclk(s, "com_mclk_out"),
869 omap_findclk(s, ((value >> 12) & 1) ?
870 "ck_48m" : "armper_ck"));
871 if (diff & (1 << 9)) /* CONF_MOD_USB_HOST_HHC_UHO */
872 omap_clk_onoff(omap_findclk(s, "usb_hhc_ck"), (value >> 9) & 1);
875 static void omap_pin_cfg_write(void *opaque, hwaddr addr,
876 uint64_t value, unsigned size)
878 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
882 omap_badwidth_write32(opaque, addr, value);
887 case 0x00: /* FUNC_MUX_CTRL_0 */
888 diff = s->func_mux_ctrl[addr >> 2] ^ value;
889 s->func_mux_ctrl[addr >> 2] = value;
890 omap_pin_funcmux0_update(s, diff, value);
893 case 0x04: /* FUNC_MUX_CTRL_1 */
894 diff = s->func_mux_ctrl[addr >> 2] ^ value;
895 s->func_mux_ctrl[addr >> 2] = value;
896 omap_pin_funcmux1_update(s, diff, value);
899 case 0x08: /* FUNC_MUX_CTRL_2 */
900 s->func_mux_ctrl[addr >> 2] = value;
903 case 0x0c: /* COMP_MODE_CTRL_0 */
904 s->comp_mode_ctrl[0] = value;
905 s->compat1509 = (value != 0x0000eaef);
906 omap_pin_funcmux0_update(s, ~0, s->func_mux_ctrl[0]);
907 omap_pin_funcmux1_update(s, ~0, s->func_mux_ctrl[1]);
910 case 0x10: /* FUNC_MUX_CTRL_3 */
911 case 0x14: /* FUNC_MUX_CTRL_4 */
912 case 0x18: /* FUNC_MUX_CTRL_5 */
913 case 0x1c: /* FUNC_MUX_CTRL_6 */
914 case 0x20: /* FUNC_MUX_CTRL_7 */
915 case 0x24: /* FUNC_MUX_CTRL_8 */
916 case 0x28: /* FUNC_MUX_CTRL_9 */
917 case 0x2c: /* FUNC_MUX_CTRL_A */
918 case 0x30: /* FUNC_MUX_CTRL_B */
919 case 0x34: /* FUNC_MUX_CTRL_C */
920 case 0x38: /* FUNC_MUX_CTRL_D */
921 s->func_mux_ctrl[(addr >> 2) - 1] = value;
924 case 0x40: /* PULL_DWN_CTRL_0 */
925 case 0x44: /* PULL_DWN_CTRL_1 */
926 case 0x48: /* PULL_DWN_CTRL_2 */
927 case 0x4c: /* PULL_DWN_CTRL_3 */
928 s->pull_dwn_ctrl[(addr & 0xf) >> 2] = value;
931 case 0x50: /* GATE_INH_CTRL_0 */
932 s->gate_inh_ctrl[0] = value;
935 case 0x60: /* VOLTAGE_CTRL_0 */
936 s->voltage_ctrl[0] = value;
939 case 0x70: /* TEST_DBG_CTRL_0 */
940 s->test_dbg_ctrl[0] = value;
943 case 0x80: /* MOD_CONF_CTRL_0 */
944 diff = s->mod_conf_ctrl[0] ^ value;
945 s->mod_conf_ctrl[0] = value;
946 omap_pin_modconf1_update(s, diff, value);
954 static const MemoryRegionOps omap_pin_cfg_ops = {
955 .read = omap_pin_cfg_read,
956 .write = omap_pin_cfg_write,
957 .endianness = DEVICE_NATIVE_ENDIAN,
960 static void omap_pin_cfg_reset(struct omap_mpu_state_s *mpu)
962 /* Start in Compatibility Mode. */
964 omap_pin_funcmux0_update(mpu, mpu->func_mux_ctrl[0], 0);
965 omap_pin_funcmux1_update(mpu, mpu->func_mux_ctrl[1], 0);
966 omap_pin_modconf1_update(mpu, mpu->mod_conf_ctrl[0], 0);
967 memset(mpu->func_mux_ctrl, 0, sizeof(mpu->func_mux_ctrl));
968 memset(mpu->comp_mode_ctrl, 0, sizeof(mpu->comp_mode_ctrl));
969 memset(mpu->pull_dwn_ctrl, 0, sizeof(mpu->pull_dwn_ctrl));
970 memset(mpu->gate_inh_ctrl, 0, sizeof(mpu->gate_inh_ctrl));
971 memset(mpu->voltage_ctrl, 0, sizeof(mpu->voltage_ctrl));
972 memset(mpu->test_dbg_ctrl, 0, sizeof(mpu->test_dbg_ctrl));
973 memset(mpu->mod_conf_ctrl, 0, sizeof(mpu->mod_conf_ctrl));
976 static void omap_pin_cfg_init(MemoryRegion *system_memory,
978 struct omap_mpu_state_s *mpu)
980 memory_region_init_io(&mpu->pin_cfg_iomem, NULL, &omap_pin_cfg_ops, mpu,
981 "omap-pin-cfg", 0x800);
982 memory_region_add_subregion(system_memory, base, &mpu->pin_cfg_iomem);
983 omap_pin_cfg_reset(mpu);
986 /* Device Identification, Die Identification */
987 static uint64_t omap_id_read(void *opaque, hwaddr addr,
990 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
993 return omap_badwidth_read32(opaque, addr);
997 case 0xfffe1800: /* DIE_ID_LSB */
999 case 0xfffe1804: /* DIE_ID_MSB */
1002 case 0xfffe2000: /* PRODUCT_ID_LSB */
1004 case 0xfffe2004: /* PRODUCT_ID_MSB */
1007 case 0xfffed400: /* JTAG_ID_LSB */
1008 switch (s->mpu_model) {
1014 hw_error("%s: bad mpu model\n", __func__);
1018 case 0xfffed404: /* JTAG_ID_MSB */
1019 switch (s->mpu_model) {
1025 hw_error("%s: bad mpu model\n", __func__);
1034 static void omap_id_write(void *opaque, hwaddr addr,
1035 uint64_t value, unsigned size)
1038 omap_badwidth_write32(opaque, addr, value);
1045 static const MemoryRegionOps omap_id_ops = {
1046 .read = omap_id_read,
1047 .write = omap_id_write,
1048 .endianness = DEVICE_NATIVE_ENDIAN,
1051 static void omap_id_init(MemoryRegion *memory, struct omap_mpu_state_s *mpu)
1053 memory_region_init_io(&mpu->id_iomem, NULL, &omap_id_ops, mpu,
1054 "omap-id", 0x100000000ULL);
1055 memory_region_init_alias(&mpu->id_iomem_e18, NULL, "omap-id-e18", &mpu->id_iomem,
1057 memory_region_add_subregion(memory, 0xfffe1800, &mpu->id_iomem_e18);
1058 memory_region_init_alias(&mpu->id_iomem_ed4, NULL, "omap-id-ed4", &mpu->id_iomem,
1060 memory_region_add_subregion(memory, 0xfffed400, &mpu->id_iomem_ed4);
1061 if (!cpu_is_omap15xx(mpu)) {
1062 memory_region_init_alias(&mpu->id_iomem_ed4, NULL, "omap-id-e20",
1063 &mpu->id_iomem, 0xfffe2000, 0x800);
1064 memory_region_add_subregion(memory, 0xfffe2000, &mpu->id_iomem_e20);
1068 /* MPUI Control (Dummy) */
1069 static uint64_t omap_mpui_read(void *opaque, hwaddr addr,
1072 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1075 return omap_badwidth_read32(opaque, addr);
1079 case 0x00: /* CTRL */
1080 return s->mpui_ctrl;
1081 case 0x04: /* DEBUG_ADDR */
1083 case 0x08: /* DEBUG_DATA */
1085 case 0x0c: /* DEBUG_FLAG */
1087 case 0x10: /* STATUS */
1090 /* Not in OMAP310 */
1091 case 0x14: /* DSP_STATUS */
1092 case 0x18: /* DSP_BOOT_CONFIG */
1094 case 0x1c: /* DSP_MPUI_CONFIG */
1102 static void omap_mpui_write(void *opaque, hwaddr addr,
1103 uint64_t value, unsigned size)
1105 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1108 omap_badwidth_write32(opaque, addr, value);
1113 case 0x00: /* CTRL */
1114 s->mpui_ctrl = value & 0x007fffff;
1117 case 0x04: /* DEBUG_ADDR */
1118 case 0x08: /* DEBUG_DATA */
1119 case 0x0c: /* DEBUG_FLAG */
1120 case 0x10: /* STATUS */
1121 /* Not in OMAP310 */
1122 case 0x14: /* DSP_STATUS */
1125 case 0x18: /* DSP_BOOT_CONFIG */
1126 case 0x1c: /* DSP_MPUI_CONFIG */
1134 static const MemoryRegionOps omap_mpui_ops = {
1135 .read = omap_mpui_read,
1136 .write = omap_mpui_write,
1137 .endianness = DEVICE_NATIVE_ENDIAN,
1140 static void omap_mpui_reset(struct omap_mpu_state_s *s)
1142 s->mpui_ctrl = 0x0003ff1b;
1145 static void omap_mpui_init(MemoryRegion *memory, hwaddr base,
1146 struct omap_mpu_state_s *mpu)
1148 memory_region_init_io(&mpu->mpui_iomem, NULL, &omap_mpui_ops, mpu,
1149 "omap-mpui", 0x100);
1150 memory_region_add_subregion(memory, base, &mpu->mpui_iomem);
1152 omap_mpui_reset(mpu);
1156 struct omap_tipb_bridge_s {
1164 uint16_t enh_control;
1167 static uint64_t omap_tipb_bridge_read(void *opaque, hwaddr addr,
1170 struct omap_tipb_bridge_s *s = (struct omap_tipb_bridge_s *) opaque;
1173 return omap_badwidth_read16(opaque, addr);
1177 case 0x00: /* TIPB_CNTL */
1179 case 0x04: /* TIPB_BUS_ALLOC */
1181 case 0x08: /* MPU_TIPB_CNTL */
1183 case 0x0c: /* ENHANCED_TIPB_CNTL */
1184 return s->enh_control;
1185 case 0x10: /* ADDRESS_DBG */
1186 case 0x14: /* DATA_DEBUG_LOW */
1187 case 0x18: /* DATA_DEBUG_HIGH */
1189 case 0x1c: /* DEBUG_CNTR_SIG */
1197 static void omap_tipb_bridge_write(void *opaque, hwaddr addr,
1198 uint64_t value, unsigned size)
1200 struct omap_tipb_bridge_s *s = (struct omap_tipb_bridge_s *) opaque;
1203 omap_badwidth_write16(opaque, addr, value);
1208 case 0x00: /* TIPB_CNTL */
1209 s->control = value & 0xffff;
1212 case 0x04: /* TIPB_BUS_ALLOC */
1213 s->alloc = value & 0x003f;
1216 case 0x08: /* MPU_TIPB_CNTL */
1217 s->buffer = value & 0x0003;
1220 case 0x0c: /* ENHANCED_TIPB_CNTL */
1221 s->width_intr = !(value & 2);
1222 s->enh_control = value & 0x000f;
1225 case 0x10: /* ADDRESS_DBG */
1226 case 0x14: /* DATA_DEBUG_LOW */
1227 case 0x18: /* DATA_DEBUG_HIGH */
1228 case 0x1c: /* DEBUG_CNTR_SIG */
1237 static const MemoryRegionOps omap_tipb_bridge_ops = {
1238 .read = omap_tipb_bridge_read,
1239 .write = omap_tipb_bridge_write,
1240 .endianness = DEVICE_NATIVE_ENDIAN,
1243 static void omap_tipb_bridge_reset(struct omap_tipb_bridge_s *s)
1245 s->control = 0xffff;
1248 s->enh_control = 0x000f;
1251 static struct omap_tipb_bridge_s *omap_tipb_bridge_init(
1252 MemoryRegion *memory, hwaddr base,
1253 qemu_irq abort_irq, omap_clk clk)
1255 struct omap_tipb_bridge_s *s = g_new0(struct omap_tipb_bridge_s, 1);
1257 s->abort = abort_irq;
1258 omap_tipb_bridge_reset(s);
1260 memory_region_init_io(&s->iomem, NULL, &omap_tipb_bridge_ops, s,
1261 "omap-tipb-bridge", 0x100);
1262 memory_region_add_subregion(memory, base, &s->iomem);
1267 /* Dummy Traffic Controller's Memory Interface */
1268 static uint64_t omap_tcmi_read(void *opaque, hwaddr addr,
1271 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1275 return omap_badwidth_read32(opaque, addr);
1279 case 0x00: /* IMIF_PRIO */
1280 case 0x04: /* EMIFS_PRIO */
1281 case 0x08: /* EMIFF_PRIO */
1282 case 0x0c: /* EMIFS_CONFIG */
1283 case 0x10: /* EMIFS_CS0_CONFIG */
1284 case 0x14: /* EMIFS_CS1_CONFIG */
1285 case 0x18: /* EMIFS_CS2_CONFIG */
1286 case 0x1c: /* EMIFS_CS3_CONFIG */
1287 case 0x24: /* EMIFF_MRS */
1288 case 0x28: /* TIMEOUT1 */
1289 case 0x2c: /* TIMEOUT2 */
1290 case 0x30: /* TIMEOUT3 */
1291 case 0x3c: /* EMIFF_SDRAM_CONFIG_2 */
1292 case 0x40: /* EMIFS_CFG_DYN_WAIT */
1293 return s->tcmi_regs[addr >> 2];
1295 case 0x20: /* EMIFF_SDRAM_CONFIG */
1296 ret = s->tcmi_regs[addr >> 2];
1297 s->tcmi_regs[addr >> 2] &= ~1; /* XXX: Clear SLRF on SDRAM access */
1298 /* XXX: We can try using the VGA_DIRTY flag for this */
1306 static void omap_tcmi_write(void *opaque, hwaddr addr,
1307 uint64_t value, unsigned size)
1309 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1312 omap_badwidth_write32(opaque, addr, value);
1317 case 0x00: /* IMIF_PRIO */
1318 case 0x04: /* EMIFS_PRIO */
1319 case 0x08: /* EMIFF_PRIO */
1320 case 0x10: /* EMIFS_CS0_CONFIG */
1321 case 0x14: /* EMIFS_CS1_CONFIG */
1322 case 0x18: /* EMIFS_CS2_CONFIG */
1323 case 0x1c: /* EMIFS_CS3_CONFIG */
1324 case 0x20: /* EMIFF_SDRAM_CONFIG */
1325 case 0x24: /* EMIFF_MRS */
1326 case 0x28: /* TIMEOUT1 */
1327 case 0x2c: /* TIMEOUT2 */
1328 case 0x30: /* TIMEOUT3 */
1329 case 0x3c: /* EMIFF_SDRAM_CONFIG_2 */
1330 case 0x40: /* EMIFS_CFG_DYN_WAIT */
1331 s->tcmi_regs[addr >> 2] = value;
1333 case 0x0c: /* EMIFS_CONFIG */
1334 s->tcmi_regs[addr >> 2] = (value & 0xf) | (1 << 4);
1342 static const MemoryRegionOps omap_tcmi_ops = {
1343 .read = omap_tcmi_read,
1344 .write = omap_tcmi_write,
1345 .endianness = DEVICE_NATIVE_ENDIAN,
1348 static void omap_tcmi_reset(struct omap_mpu_state_s *mpu)
1350 mpu->tcmi_regs[0x00 >> 2] = 0x00000000;
1351 mpu->tcmi_regs[0x04 >> 2] = 0x00000000;
1352 mpu->tcmi_regs[0x08 >> 2] = 0x00000000;
1353 mpu->tcmi_regs[0x0c >> 2] = 0x00000010;
1354 mpu->tcmi_regs[0x10 >> 2] = 0x0010fffb;
1355 mpu->tcmi_regs[0x14 >> 2] = 0x0010fffb;
1356 mpu->tcmi_regs[0x18 >> 2] = 0x0010fffb;
1357 mpu->tcmi_regs[0x1c >> 2] = 0x0010fffb;
1358 mpu->tcmi_regs[0x20 >> 2] = 0x00618800;
1359 mpu->tcmi_regs[0x24 >> 2] = 0x00000037;
1360 mpu->tcmi_regs[0x28 >> 2] = 0x00000000;
1361 mpu->tcmi_regs[0x2c >> 2] = 0x00000000;
1362 mpu->tcmi_regs[0x30 >> 2] = 0x00000000;
1363 mpu->tcmi_regs[0x3c >> 2] = 0x00000003;
1364 mpu->tcmi_regs[0x40 >> 2] = 0x00000000;
1367 static void omap_tcmi_init(MemoryRegion *memory, hwaddr base,
1368 struct omap_mpu_state_s *mpu)
1370 memory_region_init_io(&mpu->tcmi_iomem, NULL, &omap_tcmi_ops, mpu,
1371 "omap-tcmi", 0x100);
1372 memory_region_add_subregion(memory, base, &mpu->tcmi_iomem);
1373 omap_tcmi_reset(mpu);
1376 /* Digital phase-locked loops control */
1383 static uint64_t omap_dpll_read(void *opaque, hwaddr addr,
1386 struct dpll_ctl_s *s = (struct dpll_ctl_s *) opaque;
1389 return omap_badwidth_read16(opaque, addr);
1392 if (addr == 0x00) /* CTL_REG */
1399 static void omap_dpll_write(void *opaque, hwaddr addr,
1400 uint64_t value, unsigned size)
1402 struct dpll_ctl_s *s = (struct dpll_ctl_s *) opaque;
1404 static const int bypass_div[4] = { 1, 2, 4, 4 };
1408 omap_badwidth_write16(opaque, addr, value);
1412 if (addr == 0x00) { /* CTL_REG */
1413 /* See omap_ulpd_pm_write() too */
1414 diff = s->mode & value;
1415 s->mode = value & 0x2fff;
1416 if (diff & (0x3ff << 2)) {
1417 if (value & (1 << 4)) { /* PLL_ENABLE */
1418 div = ((value >> 5) & 3) + 1; /* PLL_DIV */
1419 mult = MIN((value >> 7) & 0x1f, 1); /* PLL_MULT */
1421 div = bypass_div[((value >> 2) & 3)]; /* BYPASS_DIV */
1424 omap_clk_setrate(s->dpll, div, mult);
1427 /* Enter the desired mode. */
1428 s->mode = (s->mode & 0xfffe) | ((s->mode >> 4) & 1);
1430 /* Act as if the lock is restored. */
1437 static const MemoryRegionOps omap_dpll_ops = {
1438 .read = omap_dpll_read,
1439 .write = omap_dpll_write,
1440 .endianness = DEVICE_NATIVE_ENDIAN,
1443 static void omap_dpll_reset(struct dpll_ctl_s *s)
1446 omap_clk_setrate(s->dpll, 1, 1);
1449 static struct dpll_ctl_s *omap_dpll_init(MemoryRegion *memory,
1450 hwaddr base, omap_clk clk)
1452 struct dpll_ctl_s *s = g_malloc0(sizeof(*s));
1453 memory_region_init_io(&s->iomem, NULL, &omap_dpll_ops, s, "omap-dpll", 0x100);
1458 memory_region_add_subregion(memory, base, &s->iomem);
1462 /* MPU Clock/Reset/Power Mode Control */
1463 static uint64_t omap_clkm_read(void *opaque, hwaddr addr,
1466 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1469 return omap_badwidth_read16(opaque, addr);
1473 case 0x00: /* ARM_CKCTL */
1474 return s->clkm.arm_ckctl;
1476 case 0x04: /* ARM_IDLECT1 */
1477 return s->clkm.arm_idlect1;
1479 case 0x08: /* ARM_IDLECT2 */
1480 return s->clkm.arm_idlect2;
1482 case 0x0c: /* ARM_EWUPCT */
1483 return s->clkm.arm_ewupct;
1485 case 0x10: /* ARM_RSTCT1 */
1486 return s->clkm.arm_rstct1;
1488 case 0x14: /* ARM_RSTCT2 */
1489 return s->clkm.arm_rstct2;
1491 case 0x18: /* ARM_SYSST */
1492 return (s->clkm.clocking_scheme << 11) | s->clkm.cold_start;
1494 case 0x1c: /* ARM_CKOUT1 */
1495 return s->clkm.arm_ckout1;
1497 case 0x20: /* ARM_CKOUT2 */
1505 static inline void omap_clkm_ckctl_update(struct omap_mpu_state_s *s,
1506 uint16_t diff, uint16_t value)
1510 if (diff & (1 << 14)) { /* ARM_INTHCK_SEL */
1511 if (value & (1 << 14))
1514 clk = omap_findclk(s, "arminth_ck");
1515 omap_clk_reparent(clk, omap_findclk(s, "tc_ck"));
1518 if (diff & (1 << 12)) { /* ARM_TIMXO */
1519 clk = omap_findclk(s, "armtim_ck");
1520 if (value & (1 << 12))
1521 omap_clk_reparent(clk, omap_findclk(s, "clkin"));
1523 omap_clk_reparent(clk, omap_findclk(s, "ck_gen1"));
1526 if (diff & (3 << 10)) { /* DSPMMUDIV */
1527 clk = omap_findclk(s, "dspmmu_ck");
1528 omap_clk_setrate(clk, 1 << ((value >> 10) & 3), 1);
1530 if (diff & (3 << 8)) { /* TCDIV */
1531 clk = omap_findclk(s, "tc_ck");
1532 omap_clk_setrate(clk, 1 << ((value >> 8) & 3), 1);
1534 if (diff & (3 << 6)) { /* DSPDIV */
1535 clk = omap_findclk(s, "dsp_ck");
1536 omap_clk_setrate(clk, 1 << ((value >> 6) & 3), 1);
1538 if (diff & (3 << 4)) { /* ARMDIV */
1539 clk = omap_findclk(s, "arm_ck");
1540 omap_clk_setrate(clk, 1 << ((value >> 4) & 3), 1);
1542 if (diff & (3 << 2)) { /* LCDDIV */
1543 clk = omap_findclk(s, "lcd_ck");
1544 omap_clk_setrate(clk, 1 << ((value >> 2) & 3), 1);
1546 if (diff & (3 << 0)) { /* PERDIV */
1547 clk = omap_findclk(s, "armper_ck");
1548 omap_clk_setrate(clk, 1 << ((value >> 0) & 3), 1);
1552 static inline void omap_clkm_idlect1_update(struct omap_mpu_state_s *s,
1553 uint16_t diff, uint16_t value)
1557 if (value & (1 << 11)) { /* SETARM_IDLE */
1558 cpu_interrupt(CPU(s->cpu), CPU_INTERRUPT_HALT);
1560 if (!(value & (1 << 10))) { /* WKUP_MODE */
1561 /* XXX: disable wakeup from IRQ */
1562 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN);
1565 #define SET_CANIDLE(clock, bit) \
1566 if (diff & (1 << bit)) { \
1567 clk = omap_findclk(s, clock); \
1568 omap_clk_canidle(clk, (value >> bit) & 1); \
1570 SET_CANIDLE("mpuwd_ck", 0) /* IDLWDT_ARM */
1571 SET_CANIDLE("armxor_ck", 1) /* IDLXORP_ARM */
1572 SET_CANIDLE("mpuper_ck", 2) /* IDLPER_ARM */
1573 SET_CANIDLE("lcd_ck", 3) /* IDLLCD_ARM */
1574 SET_CANIDLE("lb_ck", 4) /* IDLLB_ARM */
1575 SET_CANIDLE("hsab_ck", 5) /* IDLHSAB_ARM */
1576 SET_CANIDLE("tipb_ck", 6) /* IDLIF_ARM */
1577 SET_CANIDLE("dma_ck", 6) /* IDLIF_ARM */
1578 SET_CANIDLE("tc_ck", 6) /* IDLIF_ARM */
1579 SET_CANIDLE("dpll1", 7) /* IDLDPLL_ARM */
1580 SET_CANIDLE("dpll2", 7) /* IDLDPLL_ARM */
1581 SET_CANIDLE("dpll3", 7) /* IDLDPLL_ARM */
1582 SET_CANIDLE("mpui_ck", 8) /* IDLAPI_ARM */
1583 SET_CANIDLE("armtim_ck", 9) /* IDLTIM_ARM */
1586 static inline void omap_clkm_idlect2_update(struct omap_mpu_state_s *s,
1587 uint16_t diff, uint16_t value)
1591 #define SET_ONOFF(clock, bit) \
1592 if (diff & (1 << bit)) { \
1593 clk = omap_findclk(s, clock); \
1594 omap_clk_onoff(clk, (value >> bit) & 1); \
1596 SET_ONOFF("mpuwd_ck", 0) /* EN_WDTCK */
1597 SET_ONOFF("armxor_ck", 1) /* EN_XORPCK */
1598 SET_ONOFF("mpuper_ck", 2) /* EN_PERCK */
1599 SET_ONOFF("lcd_ck", 3) /* EN_LCDCK */
1600 SET_ONOFF("lb_ck", 4) /* EN_LBCK */
1601 SET_ONOFF("hsab_ck", 5) /* EN_HSABCK */
1602 SET_ONOFF("mpui_ck", 6) /* EN_APICK */
1603 SET_ONOFF("armtim_ck", 7) /* EN_TIMCK */
1604 SET_CANIDLE("dma_ck", 8) /* DMACK_REQ */
1605 SET_ONOFF("arm_gpio_ck", 9) /* EN_GPIOCK */
1606 SET_ONOFF("lbfree_ck", 10) /* EN_LBFREECK */
1609 static inline void omap_clkm_ckout1_update(struct omap_mpu_state_s *s,
1610 uint16_t diff, uint16_t value)
1614 if (diff & (3 << 4)) { /* TCLKOUT */
1615 clk = omap_findclk(s, "tclk_out");
1616 switch ((value >> 4) & 3) {
1618 omap_clk_reparent(clk, omap_findclk(s, "ck_gen3"));
1619 omap_clk_onoff(clk, 1);
1622 omap_clk_reparent(clk, omap_findclk(s, "tc_ck"));
1623 omap_clk_onoff(clk, 1);
1626 omap_clk_onoff(clk, 0);
1629 if (diff & (3 << 2)) { /* DCLKOUT */
1630 clk = omap_findclk(s, "dclk_out");
1631 switch ((value >> 2) & 3) {
1633 omap_clk_reparent(clk, omap_findclk(s, "dspmmu_ck"));
1636 omap_clk_reparent(clk, omap_findclk(s, "ck_gen2"));
1639 omap_clk_reparent(clk, omap_findclk(s, "dsp_ck"));
1642 omap_clk_reparent(clk, omap_findclk(s, "ck_ref14"));
1646 if (diff & (3 << 0)) { /* ACLKOUT */
1647 clk = omap_findclk(s, "aclk_out");
1648 switch ((value >> 0) & 3) {
1650 omap_clk_reparent(clk, omap_findclk(s, "ck_gen1"));
1651 omap_clk_onoff(clk, 1);
1654 omap_clk_reparent(clk, omap_findclk(s, "arm_ck"));
1655 omap_clk_onoff(clk, 1);
1658 omap_clk_reparent(clk, omap_findclk(s, "ck_ref14"));
1659 omap_clk_onoff(clk, 1);
1662 omap_clk_onoff(clk, 0);
1667 static void omap_clkm_write(void *opaque, hwaddr addr,
1668 uint64_t value, unsigned size)
1670 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1673 static const char *clkschemename[8] = {
1674 "fully synchronous", "fully asynchronous", "synchronous scalable",
1675 "mix mode 1", "mix mode 2", "bypass mode", "mix mode 3", "mix mode 4",
1679 omap_badwidth_write16(opaque, addr, value);
1684 case 0x00: /* ARM_CKCTL */
1685 diff = s->clkm.arm_ckctl ^ value;
1686 s->clkm.arm_ckctl = value & 0x7fff;
1687 omap_clkm_ckctl_update(s, diff, value);
1690 case 0x04: /* ARM_IDLECT1 */
1691 diff = s->clkm.arm_idlect1 ^ value;
1692 s->clkm.arm_idlect1 = value & 0x0fff;
1693 omap_clkm_idlect1_update(s, diff, value);
1696 case 0x08: /* ARM_IDLECT2 */
1697 diff = s->clkm.arm_idlect2 ^ value;
1698 s->clkm.arm_idlect2 = value & 0x07ff;
1699 omap_clkm_idlect2_update(s, diff, value);
1702 case 0x0c: /* ARM_EWUPCT */
1703 s->clkm.arm_ewupct = value & 0x003f;
1706 case 0x10: /* ARM_RSTCT1 */
1707 diff = s->clkm.arm_rstct1 ^ value;
1708 s->clkm.arm_rstct1 = value & 0x0007;
1710 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
1711 s->clkm.cold_start = 0xa;
1713 if (diff & ~value & 4) { /* DSP_RST */
1715 omap_tipb_bridge_reset(s->private_tipb);
1716 omap_tipb_bridge_reset(s->public_tipb);
1718 if (diff & 2) { /* DSP_EN */
1719 clk = omap_findclk(s, "dsp_ck");
1720 omap_clk_canidle(clk, (~value >> 1) & 1);
1724 case 0x14: /* ARM_RSTCT2 */
1725 s->clkm.arm_rstct2 = value & 0x0001;
1728 case 0x18: /* ARM_SYSST */
1729 if ((s->clkm.clocking_scheme ^ (value >> 11)) & 7) {
1730 s->clkm.clocking_scheme = (value >> 11) & 7;
1731 printf("%s: clocking scheme set to %s\n", __func__,
1732 clkschemename[s->clkm.clocking_scheme]);
1734 s->clkm.cold_start &= value & 0x3f;
1737 case 0x1c: /* ARM_CKOUT1 */
1738 diff = s->clkm.arm_ckout1 ^ value;
1739 s->clkm.arm_ckout1 = value & 0x003f;
1740 omap_clkm_ckout1_update(s, diff, value);
1743 case 0x20: /* ARM_CKOUT2 */
1749 static const MemoryRegionOps omap_clkm_ops = {
1750 .read = omap_clkm_read,
1751 .write = omap_clkm_write,
1752 .endianness = DEVICE_NATIVE_ENDIAN,
1755 static uint64_t omap_clkdsp_read(void *opaque, hwaddr addr,
1758 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1759 CPUState *cpu = CPU(s->cpu);
1762 return omap_badwidth_read16(opaque, addr);
1766 case 0x04: /* DSP_IDLECT1 */
1767 return s->clkm.dsp_idlect1;
1769 case 0x08: /* DSP_IDLECT2 */
1770 return s->clkm.dsp_idlect2;
1772 case 0x14: /* DSP_RSTCT2 */
1773 return s->clkm.dsp_rstct2;
1775 case 0x18: /* DSP_SYSST */
1777 return (s->clkm.clocking_scheme << 11) | s->clkm.cold_start |
1778 (cpu->halted << 6); /* Quite useless... */
1785 static inline void omap_clkdsp_idlect1_update(struct omap_mpu_state_s *s,
1786 uint16_t diff, uint16_t value)
1790 SET_CANIDLE("dspxor_ck", 1); /* IDLXORP_DSP */
1793 static inline void omap_clkdsp_idlect2_update(struct omap_mpu_state_s *s,
1794 uint16_t diff, uint16_t value)
1798 SET_ONOFF("dspxor_ck", 1); /* EN_XORPCK */
1801 static void omap_clkdsp_write(void *opaque, hwaddr addr,
1802 uint64_t value, unsigned size)
1804 struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque;
1808 omap_badwidth_write16(opaque, addr, value);
1813 case 0x04: /* DSP_IDLECT1 */
1814 diff = s->clkm.dsp_idlect1 ^ value;
1815 s->clkm.dsp_idlect1 = value & 0x01f7;
1816 omap_clkdsp_idlect1_update(s, diff, value);
1819 case 0x08: /* DSP_IDLECT2 */
1820 s->clkm.dsp_idlect2 = value & 0x0037;
1821 diff = s->clkm.dsp_idlect1 ^ value;
1822 omap_clkdsp_idlect2_update(s, diff, value);
1825 case 0x14: /* DSP_RSTCT2 */
1826 s->clkm.dsp_rstct2 = value & 0x0001;
1829 case 0x18: /* DSP_SYSST */
1830 s->clkm.cold_start &= value & 0x3f;
1838 static const MemoryRegionOps omap_clkdsp_ops = {
1839 .read = omap_clkdsp_read,
1840 .write = omap_clkdsp_write,
1841 .endianness = DEVICE_NATIVE_ENDIAN,
1844 static void omap_clkm_reset(struct omap_mpu_state_s *s)
1846 if (s->wdt && s->wdt->reset)
1847 s->clkm.cold_start = 0x6;
1848 s->clkm.clocking_scheme = 0;
1849 omap_clkm_ckctl_update(s, ~0, 0x3000);
1850 s->clkm.arm_ckctl = 0x3000;
1851 omap_clkm_idlect1_update(s, s->clkm.arm_idlect1 ^ 0x0400, 0x0400);
1852 s->clkm.arm_idlect1 = 0x0400;
1853 omap_clkm_idlect2_update(s, s->clkm.arm_idlect2 ^ 0x0100, 0x0100);
1854 s->clkm.arm_idlect2 = 0x0100;
1855 s->clkm.arm_ewupct = 0x003f;
1856 s->clkm.arm_rstct1 = 0x0000;
1857 s->clkm.arm_rstct2 = 0x0000;
1858 s->clkm.arm_ckout1 = 0x0015;
1859 s->clkm.dpll1_mode = 0x2002;
1860 omap_clkdsp_idlect1_update(s, s->clkm.dsp_idlect1 ^ 0x0040, 0x0040);
1861 s->clkm.dsp_idlect1 = 0x0040;
1862 omap_clkdsp_idlect2_update(s, ~0, 0x0000);
1863 s->clkm.dsp_idlect2 = 0x0000;
1864 s->clkm.dsp_rstct2 = 0x0000;
1867 static void omap_clkm_init(MemoryRegion *memory, hwaddr mpu_base,
1868 hwaddr dsp_base, struct omap_mpu_state_s *s)
1870 memory_region_init_io(&s->clkm_iomem, NULL, &omap_clkm_ops, s,
1871 "omap-clkm", 0x100);
1872 memory_region_init_io(&s->clkdsp_iomem, NULL, &omap_clkdsp_ops, s,
1873 "omap-clkdsp", 0x1000);
1875 s->clkm.arm_idlect1 = 0x03ff;
1876 s->clkm.arm_idlect2 = 0x0100;
1877 s->clkm.dsp_idlect1 = 0x0002;
1879 s->clkm.cold_start = 0x3a;
1881 memory_region_add_subregion(memory, mpu_base, &s->clkm_iomem);
1882 memory_region_add_subregion(memory, dsp_base, &s->clkdsp_iomem);
1886 struct omap_mpuio_s {
1890 qemu_irq handler[16];
1912 static void omap_mpuio_set(void *opaque, int line, int level)
1914 struct omap_mpuio_s *s = (struct omap_mpuio_s *) opaque;
1915 uint16_t prev = s->inputs;
1918 s->inputs |= 1 << line;
1920 s->inputs &= ~(1 << line);
1922 if (((1 << line) & s->dir & ~s->mask) && s->clk) {
1923 if ((s->edge & s->inputs & ~prev) | (~s->edge & ~s->inputs & prev)) {
1924 s->ints |= 1 << line;
1925 qemu_irq_raise(s->irq);
1928 if ((s->event & (1 << 0)) && /* SET_GPIO_EVENT_MODE */
1929 (s->event >> 1) == line) /* PIN_SELECT */
1930 s->latch = s->inputs;
1934 static void omap_mpuio_kbd_update(struct omap_mpuio_s *s)
1937 uint8_t *row, rows = 0, cols = ~s->cols;
1939 for (row = s->buttons + 4, i = 1 << 4; i; row --, i >>= 1)
1943 qemu_set_irq(s->kbd_irq, rows && !s->kbd_mask && s->clk);
1944 s->row_latch = ~rows;
1947 static uint64_t omap_mpuio_read(void *opaque, hwaddr addr,
1950 struct omap_mpuio_s *s = (struct omap_mpuio_s *) opaque;
1951 int offset = addr & OMAP_MPUI_REG_MASK;
1955 return omap_badwidth_read16(opaque, addr);
1959 case 0x00: /* INPUT_LATCH */
1962 case 0x04: /* OUTPUT_REG */
1965 case 0x08: /* IO_CNTL */
1968 case 0x10: /* KBR_LATCH */
1969 return s->row_latch;
1971 case 0x14: /* KBC_REG */
1974 case 0x18: /* GPIO_EVENT_MODE_REG */
1977 case 0x1c: /* GPIO_INT_EDGE_REG */
1980 case 0x20: /* KBD_INT */
1981 return (~s->row_latch & 0x1f) && !s->kbd_mask;
1983 case 0x24: /* GPIO_INT */
1987 qemu_irq_lower(s->irq);
1990 case 0x28: /* KBD_MASKIT */
1993 case 0x2c: /* GPIO_MASKIT */
1996 case 0x30: /* GPIO_DEBOUNCING_REG */
1999 case 0x34: /* GPIO_LATCH_REG */
2007 static void omap_mpuio_write(void *opaque, hwaddr addr,
2008 uint64_t value, unsigned size)
2010 struct omap_mpuio_s *s = (struct omap_mpuio_s *) opaque;
2011 int offset = addr & OMAP_MPUI_REG_MASK;
2016 omap_badwidth_write16(opaque, addr, value);
2021 case 0x04: /* OUTPUT_REG */
2022 diff = (s->outputs ^ value) & ~s->dir;
2024 while ((ln = ctz32(diff)) != 32) {
2026 qemu_set_irq(s->handler[ln], (value >> ln) & 1);
2031 case 0x08: /* IO_CNTL */
2032 diff = s->outputs & (s->dir ^ value);
2035 value = s->outputs & ~s->dir;
2036 while ((ln = ctz32(diff)) != 32) {
2038 qemu_set_irq(s->handler[ln], (value >> ln) & 1);
2043 case 0x14: /* KBC_REG */
2045 omap_mpuio_kbd_update(s);
2048 case 0x18: /* GPIO_EVENT_MODE_REG */
2049 s->event = value & 0x1f;
2052 case 0x1c: /* GPIO_INT_EDGE_REG */
2056 case 0x28: /* KBD_MASKIT */
2057 s->kbd_mask = value & 1;
2058 omap_mpuio_kbd_update(s);
2061 case 0x2c: /* GPIO_MASKIT */
2065 case 0x30: /* GPIO_DEBOUNCING_REG */
2066 s->debounce = value & 0x1ff;
2069 case 0x00: /* INPUT_LATCH */
2070 case 0x10: /* KBR_LATCH */
2071 case 0x20: /* KBD_INT */
2072 case 0x24: /* GPIO_INT */
2073 case 0x34: /* GPIO_LATCH_REG */
2083 static const MemoryRegionOps omap_mpuio_ops = {
2084 .read = omap_mpuio_read,
2085 .write = omap_mpuio_write,
2086 .endianness = DEVICE_NATIVE_ENDIAN,
2089 static void omap_mpuio_reset(struct omap_mpuio_s *s)
2101 s->row_latch = 0x1f;
2105 static void omap_mpuio_onoff(void *opaque, int line, int on)
2107 struct omap_mpuio_s *s = (struct omap_mpuio_s *) opaque;
2111 omap_mpuio_kbd_update(s);
2114 static struct omap_mpuio_s *omap_mpuio_init(MemoryRegion *memory,
2116 qemu_irq kbd_int, qemu_irq gpio_int, qemu_irq wakeup,
2119 struct omap_mpuio_s *s = g_new0(struct omap_mpuio_s, 1);
2122 s->kbd_irq = kbd_int;
2124 s->in = qemu_allocate_irqs(omap_mpuio_set, s, 16);
2125 omap_mpuio_reset(s);
2127 memory_region_init_io(&s->iomem, NULL, &omap_mpuio_ops, s,
2128 "omap-mpuio", 0x800);
2129 memory_region_add_subregion(memory, base, &s->iomem);
2131 omap_clk_adduser(clk, qemu_allocate_irq(omap_mpuio_onoff, s, 0));
2136 qemu_irq *omap_mpuio_in_get(struct omap_mpuio_s *s)
2141 void omap_mpuio_out_set(struct omap_mpuio_s *s, int line, qemu_irq handler)
2143 if (line >= 16 || line < 0)
2144 hw_error("%s: No GPIO line %i\n", __func__, line);
2145 s->handler[line] = handler;
2148 void omap_mpuio_key(struct omap_mpuio_s *s, int row, int col, int down)
2150 if (row >= 5 || row < 0)
2151 hw_error("%s: No key %i-%i\n", __func__, col, row);
2154 s->buttons[row] |= 1 << col;
2156 s->buttons[row] &= ~(1 << col);
2158 omap_mpuio_kbd_update(s);
2161 /* MicroWire Interface */
2162 struct omap_uwire_s {
2173 uWireSlave *chip[4];
2176 static void omap_uwire_transfer_start(struct omap_uwire_s *s)
2178 int chipselect = (s->control >> 10) & 3; /* INDEX */
2179 uWireSlave *slave = s->chip[chipselect];
2181 if ((s->control >> 5) & 0x1f) { /* NB_BITS_WR */
2182 if (s->control & (1 << 12)) /* CS_CMD */
2183 if (slave && slave->send)
2184 slave->send(slave->opaque,
2185 s->txbuf >> (16 - ((s->control >> 5) & 0x1f)));
2186 s->control &= ~(1 << 14); /* CSRB */
2187 /* TODO: depending on s->setup[4] bits [1:0] assert an IRQ or
2188 * a DRQ. When is the level IRQ supposed to be reset? */
2191 if ((s->control >> 0) & 0x1f) { /* NB_BITS_RD */
2192 if (s->control & (1 << 12)) /* CS_CMD */
2193 if (slave && slave->receive)
2194 s->rxbuf = slave->receive(slave->opaque);
2195 s->control |= 1 << 15; /* RDRB */
2196 /* TODO: depending on s->setup[4] bits [1:0] assert an IRQ or
2197 * a DRQ. When is the level IRQ supposed to be reset? */
2201 static uint64_t omap_uwire_read(void *opaque, hwaddr addr,
2204 struct omap_uwire_s *s = (struct omap_uwire_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 = (struct omap_uwire_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,
2357 struct omap_pwl_s *s = (struct omap_pwl_s *) opaque;
2358 int offset = addr & OMAP_MPUI_REG_MASK;
2361 return omap_badwidth_read8(opaque, addr);
2365 case 0x00: /* PWL_LEVEL */
2367 case 0x04: /* PWL_CTRL */
2374 static void omap_pwl_write(void *opaque, hwaddr addr,
2375 uint64_t value, unsigned size)
2377 struct omap_pwl_s *s = (struct omap_pwl_s *) opaque;
2378 int offset = addr & OMAP_MPUI_REG_MASK;
2381 omap_badwidth_write8(opaque, addr, value);
2386 case 0x00: /* PWL_LEVEL */
2390 case 0x04: /* PWL_CTRL */
2391 s->enable = value & 1;
2400 static const MemoryRegionOps omap_pwl_ops = {
2401 .read = omap_pwl_read,
2402 .write = omap_pwl_write,
2403 .endianness = DEVICE_NATIVE_ENDIAN,
2406 static void omap_pwl_reset(struct omap_pwl_s *s)
2415 static void omap_pwl_clk_update(void *opaque, int line, int on)
2417 struct omap_pwl_s *s = (struct omap_pwl_s *) opaque;
2423 static struct omap_pwl_s *omap_pwl_init(MemoryRegion *system_memory,
2427 struct omap_pwl_s *s = g_malloc0(sizeof(*s));
2431 memory_region_init_io(&s->iomem, NULL, &omap_pwl_ops, s,
2433 memory_region_add_subregion(system_memory, base, &s->iomem);
2435 omap_clk_adduser(clk, qemu_allocate_irq(omap_pwl_clk_update, s, 0));
2439 /* Pulse-Width Tone module */
2448 static uint64_t omap_pwt_read(void *opaque, hwaddr addr,
2451 struct omap_pwt_s *s = (struct omap_pwt_s *) opaque;
2452 int offset = addr & OMAP_MPUI_REG_MASK;
2455 return omap_badwidth_read8(opaque, addr);
2459 case 0x00: /* FRC */
2461 case 0x04: /* VCR */
2463 case 0x08: /* GCR */
2470 static void omap_pwt_write(void *opaque, hwaddr addr,
2471 uint64_t value, unsigned size)
2473 struct omap_pwt_s *s = (struct omap_pwt_s *) opaque;
2474 int offset = addr & OMAP_MPUI_REG_MASK;
2477 omap_badwidth_write8(opaque, addr, value);
2482 case 0x00: /* FRC */
2483 s->frc = value & 0x3f;
2485 case 0x04: /* VRC */
2486 if ((value ^ s->vrc) & 1) {
2488 printf("%s: %iHz buzz on\n", __func__, (int)
2489 /* 1.5 MHz from a 12-MHz or 13-MHz PWT_CLK */
2490 ((omap_clk_getrate(s->clk) >> 3) /
2491 /* Pre-multiplexer divider */
2492 ((s->gcr & 2) ? 1 : 154) /
2493 /* Octave multiplexer */
2494 (2 << (value & 3)) *
2495 /* 101/107 divider */
2496 ((value & (1 << 2)) ? 101 : 107) *
2498 ((value & (1 << 3)) ? 49 : 55) *
2500 ((value & (1 << 4)) ? 50 : 63) *
2501 /* 80/127 divider */
2502 ((value & (1 << 5)) ? 80 : 127) /
2503 (107 * 55 * 63 * 127)));
2505 printf("%s: silence!\n", __func__);
2507 s->vrc = value & 0x7f;
2509 case 0x08: /* GCR */
2518 static const MemoryRegionOps omap_pwt_ops = {
2519 .read =omap_pwt_read,
2520 .write = omap_pwt_write,
2521 .endianness = DEVICE_NATIVE_ENDIAN,
2524 static void omap_pwt_reset(struct omap_pwt_s *s)
2531 static struct omap_pwt_s *omap_pwt_init(MemoryRegion *system_memory,
2535 struct omap_pwt_s *s = g_malloc0(sizeof(*s));
2539 memory_region_init_io(&s->iomem, NULL, &omap_pwt_ops, s,
2541 memory_region_add_subregion(system_memory, base, &s->iomem);
2545 /* Real-time Clock module */
2562 struct tm current_tm;
2567 static void omap_rtc_interrupts_update(struct omap_rtc_s *s)
2569 /* s->alarm is level-triggered */
2570 qemu_set_irq(s->alarm, (s->status >> 6) & 1);
2573 static void omap_rtc_alarm_update(struct omap_rtc_s *s)
2575 s->alarm_ti = mktimegm(&s->alarm_tm);
2576 if (s->alarm_ti == -1)
2577 printf("%s: conversion failed\n", __func__);
2580 static uint64_t omap_rtc_read(void *opaque, hwaddr addr,
2583 struct omap_rtc_s *s = (struct omap_rtc_s *) opaque;
2584 int offset = addr & OMAP_MPUI_REG_MASK;
2588 return omap_badwidth_read8(opaque, addr);
2592 case 0x00: /* SECONDS_REG */
2593 return to_bcd(s->current_tm.tm_sec);
2595 case 0x04: /* MINUTES_REG */
2596 return to_bcd(s->current_tm.tm_min);
2598 case 0x08: /* HOURS_REG */
2600 return ((s->current_tm.tm_hour > 11) << 7) |
2601 to_bcd(((s->current_tm.tm_hour - 1) % 12) + 1);
2603 return to_bcd(s->current_tm.tm_hour);
2605 case 0x0c: /* DAYS_REG */
2606 return to_bcd(s->current_tm.tm_mday);
2608 case 0x10: /* MONTHS_REG */
2609 return to_bcd(s->current_tm.tm_mon + 1);
2611 case 0x14: /* YEARS_REG */
2612 return to_bcd(s->current_tm.tm_year % 100);
2614 case 0x18: /* WEEK_REG */
2615 return s->current_tm.tm_wday;
2617 case 0x20: /* ALARM_SECONDS_REG */
2618 return to_bcd(s->alarm_tm.tm_sec);
2620 case 0x24: /* ALARM_MINUTES_REG */
2621 return to_bcd(s->alarm_tm.tm_min);
2623 case 0x28: /* ALARM_HOURS_REG */
2625 return ((s->alarm_tm.tm_hour > 11) << 7) |
2626 to_bcd(((s->alarm_tm.tm_hour - 1) % 12) + 1);
2628 return to_bcd(s->alarm_tm.tm_hour);
2630 case 0x2c: /* ALARM_DAYS_REG */
2631 return to_bcd(s->alarm_tm.tm_mday);
2633 case 0x30: /* ALARM_MONTHS_REG */
2634 return to_bcd(s->alarm_tm.tm_mon + 1);
2636 case 0x34: /* ALARM_YEARS_REG */
2637 return to_bcd(s->alarm_tm.tm_year % 100);
2639 case 0x40: /* RTC_CTRL_REG */
2640 return (s->pm_am << 3) | (s->auto_comp << 2) |
2641 (s->round << 1) | s->running;
2643 case 0x44: /* RTC_STATUS_REG */
2648 case 0x48: /* RTC_INTERRUPTS_REG */
2649 return s->interrupts;
2651 case 0x4c: /* RTC_COMP_LSB_REG */
2652 return ((uint16_t) s->comp_reg) & 0xff;
2654 case 0x50: /* RTC_COMP_MSB_REG */
2655 return ((uint16_t) s->comp_reg) >> 8;
2662 static void omap_rtc_write(void *opaque, hwaddr addr,
2663 uint64_t value, unsigned size)
2665 struct omap_rtc_s *s = (struct omap_rtc_s *) opaque;
2666 int offset = addr & OMAP_MPUI_REG_MASK;
2671 omap_badwidth_write8(opaque, addr, value);
2676 case 0x00: /* SECONDS_REG */
2678 printf("RTC SEC_REG <-- %02x\n", value);
2680 s->ti -= s->current_tm.tm_sec;
2681 s->ti += from_bcd(value);
2684 case 0x04: /* MINUTES_REG */
2686 printf("RTC MIN_REG <-- %02x\n", value);
2688 s->ti -= s->current_tm.tm_min * 60;
2689 s->ti += from_bcd(value) * 60;
2692 case 0x08: /* HOURS_REG */
2694 printf("RTC HRS_REG <-- %02x\n", value);
2696 s->ti -= s->current_tm.tm_hour * 3600;
2698 s->ti += (from_bcd(value & 0x3f) & 12) * 3600;
2699 s->ti += ((value >> 7) & 1) * 43200;
2701 s->ti += from_bcd(value & 0x3f) * 3600;
2704 case 0x0c: /* DAYS_REG */
2706 printf("RTC DAY_REG <-- %02x\n", value);
2708 s->ti -= s->current_tm.tm_mday * 86400;
2709 s->ti += from_bcd(value) * 86400;
2712 case 0x10: /* MONTHS_REG */
2714 printf("RTC MTH_REG <-- %02x\n", value);
2716 memcpy(&new_tm, &s->current_tm, sizeof(new_tm));
2717 new_tm.tm_mon = from_bcd(value);
2718 ti[0] = mktimegm(&s->current_tm);
2719 ti[1] = mktimegm(&new_tm);
2721 if (ti[0] != -1 && ti[1] != -1) {
2725 /* A less accurate version */
2726 s->ti -= s->current_tm.tm_mon * 2592000;
2727 s->ti += from_bcd(value) * 2592000;
2731 case 0x14: /* YEARS_REG */
2733 printf("RTC YRS_REG <-- %02x\n", value);
2735 memcpy(&new_tm, &s->current_tm, sizeof(new_tm));
2736 new_tm.tm_year += from_bcd(value) - (new_tm.tm_year % 100);
2737 ti[0] = mktimegm(&s->current_tm);
2738 ti[1] = mktimegm(&new_tm);
2740 if (ti[0] != -1 && ti[1] != -1) {
2744 /* A less accurate version */
2745 s->ti -= (time_t)(s->current_tm.tm_year % 100) * 31536000;
2746 s->ti += (time_t)from_bcd(value) * 31536000;
2750 case 0x18: /* WEEK_REG */
2751 return; /* Ignored */
2753 case 0x20: /* ALARM_SECONDS_REG */
2755 printf("ALM SEC_REG <-- %02x\n", value);
2757 s->alarm_tm.tm_sec = from_bcd(value);
2758 omap_rtc_alarm_update(s);
2761 case 0x24: /* ALARM_MINUTES_REG */
2763 printf("ALM MIN_REG <-- %02x\n", value);
2765 s->alarm_tm.tm_min = from_bcd(value);
2766 omap_rtc_alarm_update(s);
2769 case 0x28: /* ALARM_HOURS_REG */
2771 printf("ALM HRS_REG <-- %02x\n", value);
2774 s->alarm_tm.tm_hour =
2775 ((from_bcd(value & 0x3f)) % 12) +
2776 ((value >> 7) & 1) * 12;
2778 s->alarm_tm.tm_hour = from_bcd(value);
2779 omap_rtc_alarm_update(s);
2782 case 0x2c: /* ALARM_DAYS_REG */
2784 printf("ALM DAY_REG <-- %02x\n", value);
2786 s->alarm_tm.tm_mday = from_bcd(value);
2787 omap_rtc_alarm_update(s);
2790 case 0x30: /* ALARM_MONTHS_REG */
2792 printf("ALM MON_REG <-- %02x\n", value);
2794 s->alarm_tm.tm_mon = from_bcd(value);
2795 omap_rtc_alarm_update(s);
2798 case 0x34: /* ALARM_YEARS_REG */
2800 printf("ALM YRS_REG <-- %02x\n", value);
2802 s->alarm_tm.tm_year = from_bcd(value);
2803 omap_rtc_alarm_update(s);
2806 case 0x40: /* RTC_CTRL_REG */
2808 printf("RTC CONTROL <-- %02x\n", value);
2810 s->pm_am = (value >> 3) & 1;
2811 s->auto_comp = (value >> 2) & 1;
2812 s->round = (value >> 1) & 1;
2813 s->running = value & 1;
2815 s->status |= s->running << 1;
2818 case 0x44: /* RTC_STATUS_REG */
2820 printf("RTC STATUSL <-- %02x\n", value);
2822 s->status &= ~((value & 0xc0) ^ 0x80);
2823 omap_rtc_interrupts_update(s);
2826 case 0x48: /* RTC_INTERRUPTS_REG */
2828 printf("RTC INTRS <-- %02x\n", value);
2830 s->interrupts = value;
2833 case 0x4c: /* RTC_COMP_LSB_REG */
2835 printf("RTC COMPLSB <-- %02x\n", value);
2837 s->comp_reg &= 0xff00;
2838 s->comp_reg |= 0x00ff & value;
2841 case 0x50: /* RTC_COMP_MSB_REG */
2843 printf("RTC COMPMSB <-- %02x\n", value);
2845 s->comp_reg &= 0x00ff;
2846 s->comp_reg |= 0xff00 & (value << 8);
2855 static const MemoryRegionOps omap_rtc_ops = {
2856 .read = omap_rtc_read,
2857 .write = omap_rtc_write,
2858 .endianness = DEVICE_NATIVE_ENDIAN,
2861 static void omap_rtc_tick(void *opaque)
2863 struct omap_rtc_s *s = opaque;
2866 /* Round to nearest full minute. */
2867 if (s->current_tm.tm_sec < 30)
2868 s->ti -= s->current_tm.tm_sec;
2870 s->ti += 60 - s->current_tm.tm_sec;
2875 localtime_r(&s->ti, &s->current_tm);
2877 if ((s->interrupts & 0x08) && s->ti == s->alarm_ti) {
2879 omap_rtc_interrupts_update(s);
2882 if (s->interrupts & 0x04)
2883 switch (s->interrupts & 3) {
2886 qemu_irq_pulse(s->irq);
2889 if (s->current_tm.tm_sec)
2892 qemu_irq_pulse(s->irq);
2895 if (s->current_tm.tm_sec || s->current_tm.tm_min)
2898 qemu_irq_pulse(s->irq);
2901 if (s->current_tm.tm_sec ||
2902 s->current_tm.tm_min || s->current_tm.tm_hour)
2905 qemu_irq_pulse(s->irq);
2915 * Every full hour add a rough approximation of the compensation
2916 * register to the 32kHz Timer (which drives the RTC) value.
2918 if (s->auto_comp && !s->current_tm.tm_sec && !s->current_tm.tm_min)
2919 s->tick += s->comp_reg * 1000 / 32768;
2921 timer_mod(s->clk, s->tick);
2924 static void omap_rtc_reset(struct omap_rtc_s *s)
2934 s->tick = qemu_clock_get_ms(rtc_clock);
2935 memset(&s->alarm_tm, 0, sizeof(s->alarm_tm));
2936 s->alarm_tm.tm_mday = 0x01;
2938 qemu_get_timedate(&tm, 0);
2939 s->ti = mktimegm(&tm);
2941 omap_rtc_alarm_update(s);
2945 static struct omap_rtc_s *omap_rtc_init(MemoryRegion *system_memory,
2947 qemu_irq timerirq, qemu_irq alarmirq,
2950 struct omap_rtc_s *s = g_new0(struct omap_rtc_s, 1);
2953 s->alarm = alarmirq;
2954 s->clk = timer_new_ms(rtc_clock, omap_rtc_tick, s);
2958 memory_region_init_io(&s->iomem, NULL, &omap_rtc_ops, s,
2960 memory_region_add_subregion(system_memory, base, &s->iomem);
2965 /* Multi-channel Buffered Serial Port interfaces */
2966 struct omap_mcbsp_s {
2987 QEMUTimer *source_timer;
2988 QEMUTimer *sink_timer;
2991 static void omap_mcbsp_intr_update(struct omap_mcbsp_s *s)
2995 switch ((s->spcr[0] >> 4) & 3) { /* RINTM */
2997 irq = (s->spcr[0] >> 1) & 1; /* RRDY */
3000 irq = (s->spcr[0] >> 3) & 1; /* RSYNCERR */
3008 qemu_irq_pulse(s->rxirq);
3010 switch ((s->spcr[1] >> 4) & 3) { /* XINTM */
3012 irq = (s->spcr[1] >> 1) & 1; /* XRDY */
3015 irq = (s->spcr[1] >> 3) & 1; /* XSYNCERR */
3023 qemu_irq_pulse(s->txirq);
3026 static void omap_mcbsp_rx_newdata(struct omap_mcbsp_s *s)
3028 if ((s->spcr[0] >> 1) & 1) /* RRDY */
3029 s->spcr[0] |= 1 << 2; /* RFULL */
3030 s->spcr[0] |= 1 << 1; /* RRDY */
3031 qemu_irq_raise(s->rxdrq);
3032 omap_mcbsp_intr_update(s);
3035 static void omap_mcbsp_source_tick(void *opaque)
3037 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3038 static const int bps[8] = { 0, 1, 1, 2, 2, 2, -255, -255 };
3043 printf("%s: Rx FIFO overrun\n", __func__);
3045 s->rx_req = s->rx_rate << bps[(s->rcr[0] >> 5) & 7];
3047 omap_mcbsp_rx_newdata(s);
3048 timer_mod(s->source_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
3049 NANOSECONDS_PER_SECOND);
3052 static void omap_mcbsp_rx_start(struct omap_mcbsp_s *s)
3054 if (!s->codec || !s->codec->rts)
3055 omap_mcbsp_source_tick(s);
3056 else if (s->codec->in.len) {
3057 s->rx_req = s->codec->in.len;
3058 omap_mcbsp_rx_newdata(s);
3062 static void omap_mcbsp_rx_stop(struct omap_mcbsp_s *s)
3064 timer_del(s->source_timer);
3067 static void omap_mcbsp_rx_done(struct omap_mcbsp_s *s)
3069 s->spcr[0] &= ~(1 << 1); /* RRDY */
3070 qemu_irq_lower(s->rxdrq);
3071 omap_mcbsp_intr_update(s);
3074 static void omap_mcbsp_tx_newdata(struct omap_mcbsp_s *s)
3076 s->spcr[1] |= 1 << 1; /* XRDY */
3077 qemu_irq_raise(s->txdrq);
3078 omap_mcbsp_intr_update(s);
3081 static void omap_mcbsp_sink_tick(void *opaque)
3083 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3084 static const int bps[8] = { 0, 1, 1, 2, 2, 2, -255, -255 };
3089 printf("%s: Tx FIFO underrun\n", __func__);
3091 s->tx_req = s->tx_rate << bps[(s->xcr[0] >> 5) & 7];
3093 omap_mcbsp_tx_newdata(s);
3094 timer_mod(s->sink_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
3095 NANOSECONDS_PER_SECOND);
3098 static void omap_mcbsp_tx_start(struct omap_mcbsp_s *s)
3100 if (!s->codec || !s->codec->cts)
3101 omap_mcbsp_sink_tick(s);
3102 else if (s->codec->out.size) {
3103 s->tx_req = s->codec->out.size;
3104 omap_mcbsp_tx_newdata(s);
3108 static void omap_mcbsp_tx_done(struct omap_mcbsp_s *s)
3110 s->spcr[1] &= ~(1 << 1); /* XRDY */
3111 qemu_irq_lower(s->txdrq);
3112 omap_mcbsp_intr_update(s);
3113 if (s->codec && s->codec->cts)
3114 s->codec->tx_swallow(s->codec->opaque);
3117 static void omap_mcbsp_tx_stop(struct omap_mcbsp_s *s)
3120 omap_mcbsp_tx_done(s);
3121 timer_del(s->sink_timer);
3124 static void omap_mcbsp_req_update(struct omap_mcbsp_s *s)
3126 int prev_rx_rate, prev_tx_rate;
3127 int rx_rate = 0, tx_rate = 0;
3128 int cpu_rate = 1500000; /* XXX */
3130 /* TODO: check CLKSTP bit */
3131 if (s->spcr[1] & (1 << 6)) { /* GRST */
3132 if (s->spcr[0] & (1 << 0)) { /* RRST */
3133 if ((s->srgr[1] & (1 << 13)) && /* CLKSM */
3134 (s->pcr & (1 << 8))) { /* CLKRM */
3135 if (~s->pcr & (1 << 7)) /* SCLKME */
3136 rx_rate = cpu_rate /
3137 ((s->srgr[0] & 0xff) + 1); /* CLKGDV */
3140 rx_rate = s->codec->rx_rate;
3143 if (s->spcr[1] & (1 << 0)) { /* XRST */
3144 if ((s->srgr[1] & (1 << 13)) && /* CLKSM */
3145 (s->pcr & (1 << 9))) { /* CLKXM */
3146 if (~s->pcr & (1 << 7)) /* SCLKME */
3147 tx_rate = cpu_rate /
3148 ((s->srgr[0] & 0xff) + 1); /* CLKGDV */
3151 tx_rate = s->codec->tx_rate;
3154 prev_tx_rate = s->tx_rate;
3155 prev_rx_rate = s->rx_rate;
3156 s->tx_rate = tx_rate;
3157 s->rx_rate = rx_rate;
3160 s->codec->set_rate(s->codec->opaque, rx_rate, tx_rate);
3162 if (!prev_tx_rate && tx_rate)
3163 omap_mcbsp_tx_start(s);
3164 else if (s->tx_rate && !tx_rate)
3165 omap_mcbsp_tx_stop(s);
3167 if (!prev_rx_rate && rx_rate)
3168 omap_mcbsp_rx_start(s);
3169 else if (prev_tx_rate && !tx_rate)
3170 omap_mcbsp_rx_stop(s);
3173 static uint64_t omap_mcbsp_read(void *opaque, hwaddr addr,
3176 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3177 int offset = addr & OMAP_MPUI_REG_MASK;
3181 return omap_badwidth_read16(opaque, addr);
3185 case 0x00: /* DRR2 */
3186 if (((s->rcr[0] >> 5) & 7) < 3) /* RWDLEN1 */
3189 case 0x02: /* DRR1 */
3190 if (s->rx_req < 2) {
3191 printf("%s: Rx FIFO underrun\n", __func__);
3192 omap_mcbsp_rx_done(s);
3195 if (s->codec && s->codec->in.len >= 2) {
3196 ret = s->codec->in.fifo[s->codec->in.start ++] << 8;
3197 ret |= s->codec->in.fifo[s->codec->in.start ++];
3198 s->codec->in.len -= 2;
3202 omap_mcbsp_rx_done(s);
3207 case 0x04: /* DXR2 */
3208 case 0x06: /* DXR1 */
3211 case 0x08: /* SPCR2 */
3213 case 0x0a: /* SPCR1 */
3215 case 0x0c: /* RCR2 */
3217 case 0x0e: /* RCR1 */
3219 case 0x10: /* XCR2 */
3221 case 0x12: /* XCR1 */
3223 case 0x14: /* SRGR2 */
3225 case 0x16: /* SRGR1 */
3227 case 0x18: /* MCR2 */
3229 case 0x1a: /* MCR1 */
3231 case 0x1c: /* RCERA */
3233 case 0x1e: /* RCERB */
3235 case 0x20: /* XCERA */
3237 case 0x22: /* XCERB */
3239 case 0x24: /* PCR0 */
3241 case 0x26: /* RCERC */
3243 case 0x28: /* RCERD */
3245 case 0x2a: /* XCERC */
3247 case 0x2c: /* XCERD */
3249 case 0x2e: /* RCERE */
3251 case 0x30: /* RCERF */
3253 case 0x32: /* XCERE */
3255 case 0x34: /* XCERF */
3257 case 0x36: /* RCERG */
3259 case 0x38: /* RCERH */
3261 case 0x3a: /* XCERG */
3263 case 0x3c: /* XCERH */
3271 static void omap_mcbsp_writeh(void *opaque, hwaddr addr,
3274 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3275 int offset = addr & OMAP_MPUI_REG_MASK;
3278 case 0x00: /* DRR2 */
3279 case 0x02: /* DRR1 */
3283 case 0x04: /* DXR2 */
3284 if (((s->xcr[0] >> 5) & 7) < 3) /* XWDLEN1 */
3287 case 0x06: /* DXR1 */
3288 if (s->tx_req > 1) {
3290 if (s->codec && s->codec->cts) {
3291 s->codec->out.fifo[s->codec->out.len ++] = (value >> 8) & 0xff;
3292 s->codec->out.fifo[s->codec->out.len ++] = (value >> 0) & 0xff;
3295 omap_mcbsp_tx_done(s);
3297 printf("%s: Tx FIFO overrun\n", __func__);
3300 case 0x08: /* SPCR2 */
3301 s->spcr[1] &= 0x0002;
3302 s->spcr[1] |= 0x03f9 & value;
3303 s->spcr[1] |= 0x0004 & (value << 2); /* XEMPTY := XRST */
3304 if (~value & 1) /* XRST */
3306 omap_mcbsp_req_update(s);
3308 case 0x0a: /* SPCR1 */
3309 s->spcr[0] &= 0x0006;
3310 s->spcr[0] |= 0xf8f9 & value;
3311 if (value & (1 << 15)) /* DLB */
3312 printf("%s: Digital Loopback mode enable attempt\n", __func__);
3313 if (~value & 1) { /* RRST */
3316 omap_mcbsp_rx_done(s);
3318 omap_mcbsp_req_update(s);
3321 case 0x0c: /* RCR2 */
3322 s->rcr[1] = value & 0xffff;
3324 case 0x0e: /* RCR1 */
3325 s->rcr[0] = value & 0x7fe0;
3327 case 0x10: /* XCR2 */
3328 s->xcr[1] = value & 0xffff;
3330 case 0x12: /* XCR1 */
3331 s->xcr[0] = value & 0x7fe0;
3333 case 0x14: /* SRGR2 */
3334 s->srgr[1] = value & 0xffff;
3335 omap_mcbsp_req_update(s);
3337 case 0x16: /* SRGR1 */
3338 s->srgr[0] = value & 0xffff;
3339 omap_mcbsp_req_update(s);
3341 case 0x18: /* MCR2 */
3342 s->mcr[1] = value & 0x03e3;
3343 if (value & 3) /* XMCM */
3344 printf("%s: Tx channel selection mode enable attempt\n", __func__);
3346 case 0x1a: /* MCR1 */
3347 s->mcr[0] = value & 0x03e1;
3348 if (value & 1) /* RMCM */
3349 printf("%s: Rx channel selection mode enable attempt\n", __func__);
3351 case 0x1c: /* RCERA */
3352 s->rcer[0] = value & 0xffff;
3354 case 0x1e: /* RCERB */
3355 s->rcer[1] = value & 0xffff;
3357 case 0x20: /* XCERA */
3358 s->xcer[0] = value & 0xffff;
3360 case 0x22: /* XCERB */
3361 s->xcer[1] = value & 0xffff;
3363 case 0x24: /* PCR0 */
3364 s->pcr = value & 0x7faf;
3366 case 0x26: /* RCERC */
3367 s->rcer[2] = value & 0xffff;
3369 case 0x28: /* RCERD */
3370 s->rcer[3] = value & 0xffff;
3372 case 0x2a: /* XCERC */
3373 s->xcer[2] = value & 0xffff;
3375 case 0x2c: /* XCERD */
3376 s->xcer[3] = value & 0xffff;
3378 case 0x2e: /* RCERE */
3379 s->rcer[4] = value & 0xffff;
3381 case 0x30: /* RCERF */
3382 s->rcer[5] = value & 0xffff;
3384 case 0x32: /* XCERE */
3385 s->xcer[4] = value & 0xffff;
3387 case 0x34: /* XCERF */
3388 s->xcer[5] = value & 0xffff;
3390 case 0x36: /* RCERG */
3391 s->rcer[6] = value & 0xffff;
3393 case 0x38: /* RCERH */
3394 s->rcer[7] = value & 0xffff;
3396 case 0x3a: /* XCERG */
3397 s->xcer[6] = value & 0xffff;
3399 case 0x3c: /* XCERH */
3400 s->xcer[7] = value & 0xffff;
3407 static void omap_mcbsp_writew(void *opaque, hwaddr addr,
3410 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3411 int offset = addr & OMAP_MPUI_REG_MASK;
3413 if (offset == 0x04) { /* DXR */
3414 if (((s->xcr[0] >> 5) & 7) < 3) /* XWDLEN1 */
3416 if (s->tx_req > 3) {
3418 if (s->codec && s->codec->cts) {
3419 s->codec->out.fifo[s->codec->out.len ++] =
3420 (value >> 24) & 0xff;
3421 s->codec->out.fifo[s->codec->out.len ++] =
3422 (value >> 16) & 0xff;
3423 s->codec->out.fifo[s->codec->out.len ++] =
3424 (value >> 8) & 0xff;
3425 s->codec->out.fifo[s->codec->out.len ++] =
3426 (value >> 0) & 0xff;
3429 omap_mcbsp_tx_done(s);
3431 printf("%s: Tx FIFO overrun\n", __func__);
3435 omap_badwidth_write16(opaque, addr, value);
3438 static void omap_mcbsp_write(void *opaque, hwaddr addr,
3439 uint64_t value, unsigned size)
3443 omap_mcbsp_writeh(opaque, addr, value);
3446 omap_mcbsp_writew(opaque, addr, value);
3449 omap_badwidth_write16(opaque, addr, value);
3453 static const MemoryRegionOps omap_mcbsp_ops = {
3454 .read = omap_mcbsp_read,
3455 .write = omap_mcbsp_write,
3456 .endianness = DEVICE_NATIVE_ENDIAN,
3459 static void omap_mcbsp_reset(struct omap_mcbsp_s *s)
3461 memset(&s->spcr, 0, sizeof(s->spcr));
3462 memset(&s->rcr, 0, sizeof(s->rcr));
3463 memset(&s->xcr, 0, sizeof(s->xcr));
3464 s->srgr[0] = 0x0001;
3465 s->srgr[1] = 0x2000;
3466 memset(&s->mcr, 0, sizeof(s->mcr));
3467 memset(&s->pcr, 0, sizeof(s->pcr));
3468 memset(&s->rcer, 0, sizeof(s->rcer));
3469 memset(&s->xcer, 0, sizeof(s->xcer));
3474 timer_del(s->source_timer);
3475 timer_del(s->sink_timer);
3478 static struct omap_mcbsp_s *omap_mcbsp_init(MemoryRegion *system_memory,
3480 qemu_irq txirq, qemu_irq rxirq,
3481 qemu_irq *dma, omap_clk clk)
3483 struct omap_mcbsp_s *s = g_new0(struct omap_mcbsp_s, 1);
3489 s->sink_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, omap_mcbsp_sink_tick, s);
3490 s->source_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, omap_mcbsp_source_tick, s);
3491 omap_mcbsp_reset(s);
3493 memory_region_init_io(&s->iomem, NULL, &omap_mcbsp_ops, s, "omap-mcbsp", 0x800);
3494 memory_region_add_subregion(system_memory, base, &s->iomem);
3499 static void omap_mcbsp_i2s_swallow(void *opaque, int line, int level)
3501 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3504 s->rx_req = s->codec->in.len;
3505 omap_mcbsp_rx_newdata(s);
3509 static void omap_mcbsp_i2s_start(void *opaque, int line, int level)
3511 struct omap_mcbsp_s *s = (struct omap_mcbsp_s *) opaque;
3514 s->tx_req = s->codec->out.size;
3515 omap_mcbsp_tx_newdata(s);
3519 void omap_mcbsp_i2s_attach(struct omap_mcbsp_s *s, I2SCodec *slave)
3522 slave->rx_swallow = qemu_allocate_irq(omap_mcbsp_i2s_swallow, s, 0);
3523 slave->tx_start = qemu_allocate_irq(omap_mcbsp_i2s_start, s, 0);
3526 /* LED Pulse Generators */
3539 static void omap_lpg_tick(void *opaque)
3541 struct omap_lpg_s *s = opaque;
3544 timer_mod(s->tm, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + s->period - s->on);
3546 timer_mod(s->tm, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + s->on);
3548 s->cycle = !s->cycle;
3549 printf("%s: LED is %s\n", __func__, s->cycle ? "on" : "off");
3552 static void omap_lpg_update(struct omap_lpg_s *s)
3554 int64_t on, period = 1, ticks = 1000;
3555 static const int per[8] = { 1, 2, 4, 8, 12, 16, 20, 24 };
3557 if (~s->control & (1 << 6)) /* LPGRES */
3559 else if (s->control & (1 << 7)) /* PERM_ON */
3562 period = muldiv64(ticks, per[s->control & 7], /* PERCTRL */
3564 on = (s->clk && s->power) ? muldiv64(ticks,
3565 per[(s->control >> 3) & 7], 256) : 0; /* ONCTRL */
3569 if (on == period && s->on < s->period)
3570 printf("%s: LED is on\n", __func__);
3571 else if (on == 0 && s->on)
3572 printf("%s: LED is off\n", __func__);
3573 else if (on && (on != s->on || period != s->period)) {
3585 static void omap_lpg_reset(struct omap_lpg_s *s)
3593 static uint64_t omap_lpg_read(void *opaque, hwaddr addr,
3596 struct omap_lpg_s *s = (struct omap_lpg_s *) opaque;
3597 int offset = addr & OMAP_MPUI_REG_MASK;
3600 return omap_badwidth_read8(opaque, addr);
3604 case 0x00: /* LCR */
3607 case 0x04: /* PMR */
3615 static void omap_lpg_write(void *opaque, hwaddr addr,
3616 uint64_t value, unsigned size)
3618 struct omap_lpg_s *s = (struct omap_lpg_s *) opaque;
3619 int offset = addr & OMAP_MPUI_REG_MASK;
3622 omap_badwidth_write8(opaque, addr, value);
3627 case 0x00: /* LCR */
3628 if (~value & (1 << 6)) /* LPGRES */
3630 s->control = value & 0xff;
3634 case 0x04: /* PMR */
3635 s->power = value & 0x01;
3645 static const MemoryRegionOps omap_lpg_ops = {
3646 .read = omap_lpg_read,
3647 .write = omap_lpg_write,
3648 .endianness = DEVICE_NATIVE_ENDIAN,
3651 static void omap_lpg_clk_update(void *opaque, int line, int on)
3653 struct omap_lpg_s *s = (struct omap_lpg_s *) opaque;
3659 static struct omap_lpg_s *omap_lpg_init(MemoryRegion *system_memory,
3660 hwaddr base, omap_clk clk)
3662 struct omap_lpg_s *s = g_new0(struct omap_lpg_s, 1);
3664 s->tm = timer_new_ms(QEMU_CLOCK_VIRTUAL, omap_lpg_tick, s);
3668 memory_region_init_io(&s->iomem, NULL, &omap_lpg_ops, s, "omap-lpg", 0x800);
3669 memory_region_add_subregion(system_memory, base, &s->iomem);
3671 omap_clk_adduser(clk, qemu_allocate_irq(omap_lpg_clk_update, s, 0));
3676 /* MPUI Peripheral Bridge configuration */
3677 static uint64_t omap_mpui_io_read(void *opaque, hwaddr addr,
3681 return omap_badwidth_read16(opaque, addr);
3684 if (addr == OMAP_MPUI_BASE) /* CMR */
3691 static void omap_mpui_io_write(void *opaque, hwaddr addr,
3692 uint64_t value, unsigned size)
3694 /* FIXME: infinite loop */
3695 omap_badwidth_write16(opaque, addr, value);
3698 static const MemoryRegionOps omap_mpui_io_ops = {
3699 .read = omap_mpui_io_read,
3700 .write = omap_mpui_io_write,
3701 .endianness = DEVICE_NATIVE_ENDIAN,
3704 static void omap_setup_mpui_io(MemoryRegion *system_memory,
3705 struct omap_mpu_state_s *mpu)
3707 memory_region_init_io(&mpu->mpui_io_iomem, NULL, &omap_mpui_io_ops, mpu,
3708 "omap-mpui-io", 0x7fff);
3709 memory_region_add_subregion(system_memory, OMAP_MPUI_BASE,
3710 &mpu->mpui_io_iomem);
3713 /* General chip reset */
3714 static void omap1_mpu_reset(void *opaque)
3716 struct omap_mpu_state_s *mpu = (struct omap_mpu_state_s *) opaque;
3718 omap_dma_reset(mpu->dma);
3719 omap_mpu_timer_reset(mpu->timer[0]);
3720 omap_mpu_timer_reset(mpu->timer[1]);
3721 omap_mpu_timer_reset(mpu->timer[2]);
3722 omap_wd_timer_reset(mpu->wdt);
3723 omap_os_timer_reset(mpu->os_timer);
3724 omap_lcdc_reset(mpu->lcd);
3725 omap_ulpd_pm_reset(mpu);
3726 omap_pin_cfg_reset(mpu);
3727 omap_mpui_reset(mpu);
3728 omap_tipb_bridge_reset(mpu->private_tipb);
3729 omap_tipb_bridge_reset(mpu->public_tipb);
3730 omap_dpll_reset(mpu->dpll[0]);
3731 omap_dpll_reset(mpu->dpll[1]);
3732 omap_dpll_reset(mpu->dpll[2]);
3733 omap_uart_reset(mpu->uart[0]);
3734 omap_uart_reset(mpu->uart[1]);
3735 omap_uart_reset(mpu->uart[2]);
3736 omap_mmc_reset(mpu->mmc);
3737 omap_mpuio_reset(mpu->mpuio);
3738 omap_uwire_reset(mpu->microwire);
3739 omap_pwl_reset(mpu->pwl);
3740 omap_pwt_reset(mpu->pwt);
3741 omap_rtc_reset(mpu->rtc);
3742 omap_mcbsp_reset(mpu->mcbsp1);
3743 omap_mcbsp_reset(mpu->mcbsp2);
3744 omap_mcbsp_reset(mpu->mcbsp3);
3745 omap_lpg_reset(mpu->led[0]);
3746 omap_lpg_reset(mpu->led[1]);
3747 omap_clkm_reset(mpu);
3748 cpu_reset(CPU(mpu->cpu));
3751 static const struct omap_map_s {
3756 } omap15xx_dsp_mm[] = {
3758 { 0xe1010000, 0xfffb0000, 0x800, "UART1 BT" }, /* CS0 */
3759 { 0xe1010800, 0xfffb0800, 0x800, "UART2 COM" }, /* CS1 */
3760 { 0xe1011800, 0xfffb1800, 0x800, "McBSP1 audio" }, /* CS3 */
3761 { 0xe1012000, 0xfffb2000, 0x800, "MCSI2 communication" }, /* CS4 */
3762 { 0xe1012800, 0xfffb2800, 0x800, "MCSI1 BT u-Law" }, /* CS5 */
3763 { 0xe1013000, 0xfffb3000, 0x800, "uWire" }, /* CS6 */
3764 { 0xe1013800, 0xfffb3800, 0x800, "I^2C" }, /* CS7 */
3765 { 0xe1014000, 0xfffb4000, 0x800, "USB W2FC" }, /* CS8 */
3766 { 0xe1014800, 0xfffb4800, 0x800, "RTC" }, /* CS9 */
3767 { 0xe1015000, 0xfffb5000, 0x800, "MPUIO" }, /* CS10 */
3768 { 0xe1015800, 0xfffb5800, 0x800, "PWL" }, /* CS11 */
3769 { 0xe1016000, 0xfffb6000, 0x800, "PWT" }, /* CS12 */
3770 { 0xe1017000, 0xfffb7000, 0x800, "McBSP3" }, /* CS14 */
3771 { 0xe1017800, 0xfffb7800, 0x800, "MMC" }, /* CS15 */
3772 { 0xe1019000, 0xfffb9000, 0x800, "32-kHz timer" }, /* CS18 */
3773 { 0xe1019800, 0xfffb9800, 0x800, "UART3" }, /* CS19 */
3774 { 0xe101c800, 0xfffbc800, 0x800, "TIPB switches" }, /* CS25 */
3776 { 0xe101e000, 0xfffce000, 0x800, "GPIOs" }, /* CS28 */
3781 static void omap_setup_dsp_mapping(MemoryRegion *system_memory,
3782 const struct omap_map_s *map)
3786 for (; map->phys_dsp; map ++) {
3787 io = g_new(MemoryRegion, 1);
3788 memory_region_init_alias(io, NULL, map->name,
3789 system_memory, map->phys_mpu, map->size);
3790 memory_region_add_subregion(system_memory, map->phys_dsp, io);
3794 void omap_mpu_wakeup(void *opaque, int irq, int req)
3796 struct omap_mpu_state_s *mpu = (struct omap_mpu_state_s *) opaque;
3797 CPUState *cpu = CPU(mpu->cpu);
3800 cpu_interrupt(cpu, CPU_INTERRUPT_EXITTB);
3804 static const struct dma_irq_map omap1_dma_irq_map[] = {
3805 { 0, OMAP_INT_DMA_CH0_6 },
3806 { 0, OMAP_INT_DMA_CH1_7 },
3807 { 0, OMAP_INT_DMA_CH2_8 },
3808 { 0, OMAP_INT_DMA_CH3 },
3809 { 0, OMAP_INT_DMA_CH4 },
3810 { 0, OMAP_INT_DMA_CH5 },
3811 { 1, OMAP_INT_1610_DMA_CH6 },
3812 { 1, OMAP_INT_1610_DMA_CH7 },
3813 { 1, OMAP_INT_1610_DMA_CH8 },
3814 { 1, OMAP_INT_1610_DMA_CH9 },
3815 { 1, OMAP_INT_1610_DMA_CH10 },
3816 { 1, OMAP_INT_1610_DMA_CH11 },
3817 { 1, OMAP_INT_1610_DMA_CH12 },
3818 { 1, OMAP_INT_1610_DMA_CH13 },
3819 { 1, OMAP_INT_1610_DMA_CH14 },
3820 { 1, OMAP_INT_1610_DMA_CH15 }
3823 /* DMA ports for OMAP1 */
3824 static int omap_validate_emiff_addr(struct omap_mpu_state_s *s,
3827 return range_covers_byte(OMAP_EMIFF_BASE, s->sdram_size, addr);
3830 static int omap_validate_emifs_addr(struct omap_mpu_state_s *s,
3833 return range_covers_byte(OMAP_EMIFS_BASE, OMAP_EMIFF_BASE - OMAP_EMIFS_BASE,
3837 static int omap_validate_imif_addr(struct omap_mpu_state_s *s,
3840 return range_covers_byte(OMAP_IMIF_BASE, s->sram_size, addr);
3843 static int omap_validate_tipb_addr(struct omap_mpu_state_s *s,
3846 return range_covers_byte(0xfffb0000, 0xffff0000 - 0xfffb0000, addr);
3849 static int omap_validate_local_addr(struct omap_mpu_state_s *s,
3852 return range_covers_byte(OMAP_LOCALBUS_BASE, 0x1000000, addr);
3855 static int omap_validate_tipb_mpui_addr(struct omap_mpu_state_s *s,
3858 return range_covers_byte(0xe1010000, 0xe1020004 - 0xe1010000, addr);
3861 struct omap_mpu_state_s *omap310_mpu_init(MemoryRegion *system_memory,
3862 unsigned long sdram_size,
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;
3872 s->mpu_model = omap310;
3873 s->cpu = ARM_CPU(cpu_create(cpu_type));
3874 s->sdram_size = sdram_size;
3875 s->sram_size = OMAP15XX_SRAM_SIZE;
3877 s->wakeup = qemu_allocate_irq(omap_mpu_wakeup, s, 0);
3882 /* Memory-mapped stuff */
3883 memory_region_allocate_system_memory(&s->emiff_ram, NULL, "omap1.dram",
3885 memory_region_add_subregion(system_memory, OMAP_EMIFF_BASE, &s->emiff_ram);
3886 memory_region_init_ram(&s->imif_ram, NULL, "omap1.sram", s->sram_size,
3888 memory_region_add_subregion(system_memory, OMAP_IMIF_BASE, &s->imif_ram);
3890 omap_clkm_init(system_memory, 0xfffece00, 0xe1008000, s);
3892 s->ih[0] = qdev_create(NULL, "omap-intc");
3893 qdev_prop_set_uint32(s->ih[0], "size", 0x100);
3894 qdev_prop_set_ptr(s->ih[0], "clk", omap_findclk(s, "arminth_ck"));
3895 qdev_init_nofail(s->ih[0]);
3896 busdev = SYS_BUS_DEVICE(s->ih[0]);
3897 sysbus_connect_irq(busdev, 0,
3898 qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_IRQ));
3899 sysbus_connect_irq(busdev, 1,
3900 qdev_get_gpio_in(DEVICE(s->cpu), ARM_CPU_FIQ));
3901 sysbus_mmio_map(busdev, 0, 0xfffecb00);
3902 s->ih[1] = qdev_create(NULL, "omap-intc");
3903 qdev_prop_set_uint32(s->ih[1], "size", 0x800);
3904 qdev_prop_set_ptr(s->ih[1], "clk", omap_findclk(s, "arminth_ck"));
3905 qdev_init_nofail(s->ih[1]);
3906 busdev = SYS_BUS_DEVICE(s->ih[1]);
3907 sysbus_connect_irq(busdev, 0,
3908 qdev_get_gpio_in(s->ih[0], OMAP_INT_15XX_IH2_IRQ));
3909 /* The second interrupt controller's FIQ output is not wired up */
3910 sysbus_mmio_map(busdev, 0, 0xfffe0000);
3912 for (i = 0; i < 6; i++) {
3913 dma_irqs[i] = qdev_get_gpio_in(s->ih[omap1_dma_irq_map[i].ih],
3914 omap1_dma_irq_map[i].intr);
3916 s->dma = omap_dma_init(0xfffed800, dma_irqs, system_memory,
3917 qdev_get_gpio_in(s->ih[0], OMAP_INT_DMA_LCD),
3918 s, omap_findclk(s, "dma_ck"), omap_dma_3_1);
3920 s->port[emiff ].addr_valid = omap_validate_emiff_addr;
3921 s->port[emifs ].addr_valid = omap_validate_emifs_addr;
3922 s->port[imif ].addr_valid = omap_validate_imif_addr;
3923 s->port[tipb ].addr_valid = omap_validate_tipb_addr;
3924 s->port[local ].addr_valid = omap_validate_local_addr;
3925 s->port[tipb_mpui].addr_valid = omap_validate_tipb_mpui_addr;
3927 /* Register SDRAM and SRAM DMA ports for fast transfers. */
3928 soc_dma_port_add_mem(s->dma, memory_region_get_ram_ptr(&s->emiff_ram),
3929 OMAP_EMIFF_BASE, s->sdram_size);
3930 soc_dma_port_add_mem(s->dma, memory_region_get_ram_ptr(&s->imif_ram),
3931 OMAP_IMIF_BASE, s->sram_size);
3933 s->timer[0] = omap_mpu_timer_init(system_memory, 0xfffec500,
3934 qdev_get_gpio_in(s->ih[0], OMAP_INT_TIMER1),
3935 omap_findclk(s, "mputim_ck"));
3936 s->timer[1] = omap_mpu_timer_init(system_memory, 0xfffec600,
3937 qdev_get_gpio_in(s->ih[0], OMAP_INT_TIMER2),
3938 omap_findclk(s, "mputim_ck"));
3939 s->timer[2] = omap_mpu_timer_init(system_memory, 0xfffec700,
3940 qdev_get_gpio_in(s->ih[0], OMAP_INT_TIMER3),
3941 omap_findclk(s, "mputim_ck"));
3943 s->wdt = omap_wd_timer_init(system_memory, 0xfffec800,
3944 qdev_get_gpio_in(s->ih[0], OMAP_INT_WD_TIMER),
3945 omap_findclk(s, "armwdt_ck"));
3947 s->os_timer = omap_os_timer_init(system_memory, 0xfffb9000,
3948 qdev_get_gpio_in(s->ih[1], OMAP_INT_OS_TIMER),
3949 omap_findclk(s, "clk32-kHz"));
3951 s->lcd = omap_lcdc_init(system_memory, 0xfffec000,
3952 qdev_get_gpio_in(s->ih[0], OMAP_INT_LCD_CTRL),
3953 omap_dma_get_lcdch(s->dma),
3954 omap_findclk(s, "lcd_ck"));
3956 omap_ulpd_pm_init(system_memory, 0xfffe0800, s);
3957 omap_pin_cfg_init(system_memory, 0xfffe1000, s);
3958 omap_id_init(system_memory, s);
3960 omap_mpui_init(system_memory, 0xfffec900, s);
3962 s->private_tipb = omap_tipb_bridge_init(system_memory, 0xfffeca00,
3963 qdev_get_gpio_in(s->ih[0], OMAP_INT_BRIDGE_PRIV),
3964 omap_findclk(s, "tipb_ck"));
3965 s->public_tipb = omap_tipb_bridge_init(system_memory, 0xfffed300,
3966 qdev_get_gpio_in(s->ih[0], OMAP_INT_BRIDGE_PUB),
3967 omap_findclk(s, "tipb_ck"));
3969 omap_tcmi_init(system_memory, 0xfffecc00, s);
3971 s->uart[0] = omap_uart_init(0xfffb0000,
3972 qdev_get_gpio_in(s->ih[1], OMAP_INT_UART1),
3973 omap_findclk(s, "uart1_ck"),
3974 omap_findclk(s, "uart1_ck"),
3975 s->drq[OMAP_DMA_UART1_TX], s->drq[OMAP_DMA_UART1_RX],
3978 s->uart[1] = omap_uart_init(0xfffb0800,
3979 qdev_get_gpio_in(s->ih[1], OMAP_INT_UART2),
3980 omap_findclk(s, "uart2_ck"),
3981 omap_findclk(s, "uart2_ck"),
3982 s->drq[OMAP_DMA_UART2_TX], s->drq[OMAP_DMA_UART2_RX],
3984 serial_hd(0) ? serial_hd(1) : NULL);
3985 s->uart[2] = omap_uart_init(0xfffb9800,
3986 qdev_get_gpio_in(s->ih[0], OMAP_INT_UART3),
3987 omap_findclk(s, "uart3_ck"),
3988 omap_findclk(s, "uart3_ck"),
3989 s->drq[OMAP_DMA_UART3_TX], s->drq[OMAP_DMA_UART3_RX],
3991 serial_hd(0) && serial_hd(1) ? serial_hd(2) : NULL);
3993 s->dpll[0] = omap_dpll_init(system_memory, 0xfffecf00,
3994 omap_findclk(s, "dpll1"));
3995 s->dpll[1] = omap_dpll_init(system_memory, 0xfffed000,
3996 omap_findclk(s, "dpll2"));
3997 s->dpll[2] = omap_dpll_init(system_memory, 0xfffed100,
3998 omap_findclk(s, "dpll3"));
4000 dinfo = drive_get(IF_SD, 0, 0);
4001 if (!dinfo && !qtest_enabled()) {
4002 warn_report("missing SecureDigital device");
4004 s->mmc = omap_mmc_init(0xfffb7800, system_memory,
4005 dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
4006 qdev_get_gpio_in(s->ih[1], OMAP_INT_OQN),
4007 &s->drq[OMAP_DMA_MMC_TX],
4008 omap_findclk(s, "mmc_ck"));
4010 s->mpuio = omap_mpuio_init(system_memory, 0xfffb5000,
4011 qdev_get_gpio_in(s->ih[1], OMAP_INT_KEYBOARD),
4012 qdev_get_gpio_in(s->ih[1], OMAP_INT_MPUIO),
4013 s->wakeup, omap_findclk(s, "clk32-kHz"));
4015 s->gpio = qdev_create(NULL, "omap-gpio");
4016 qdev_prop_set_int32(s->gpio, "mpu_model", s->mpu_model);
4017 qdev_prop_set_ptr(s->gpio, "clk", omap_findclk(s, "arm_gpio_ck"));
4018 qdev_init_nofail(s->gpio);
4019 sysbus_connect_irq(SYS_BUS_DEVICE(s->gpio), 0,
4020 qdev_get_gpio_in(s->ih[0], OMAP_INT_GPIO_BANK1));
4021 sysbus_mmio_map(SYS_BUS_DEVICE(s->gpio), 0, 0xfffce000);
4023 s->microwire = omap_uwire_init(system_memory, 0xfffb3000,
4024 qdev_get_gpio_in(s->ih[1], OMAP_INT_uWireTX),
4025 qdev_get_gpio_in(s->ih[1], OMAP_INT_uWireRX),
4026 s->drq[OMAP_DMA_UWIRE_TX], omap_findclk(s, "mpuper_ck"));
4028 s->pwl = omap_pwl_init(system_memory, 0xfffb5800,
4029 omap_findclk(s, "armxor_ck"));
4030 s->pwt = omap_pwt_init(system_memory, 0xfffb6000,
4031 omap_findclk(s, "armxor_ck"));
4033 s->i2c[0] = qdev_create(NULL, "omap_i2c");
4034 qdev_prop_set_uint8(s->i2c[0], "revision", 0x11);
4035 qdev_prop_set_ptr(s->i2c[0], "fclk", omap_findclk(s, "mpuper_ck"));
4036 qdev_init_nofail(s->i2c[0]);
4037 busdev = SYS_BUS_DEVICE(s->i2c[0]);
4038 sysbus_connect_irq(busdev, 0, qdev_get_gpio_in(s->ih[1], OMAP_INT_I2C));
4039 sysbus_connect_irq(busdev, 1, s->drq[OMAP_DMA_I2C_TX]);
4040 sysbus_connect_irq(busdev, 2, s->drq[OMAP_DMA_I2C_RX]);
4041 sysbus_mmio_map(busdev, 0, 0xfffb3800);
4043 s->rtc = omap_rtc_init(system_memory, 0xfffb4800,
4044 qdev_get_gpio_in(s->ih[1], OMAP_INT_RTC_TIMER),
4045 qdev_get_gpio_in(s->ih[1], OMAP_INT_RTC_ALARM),
4046 omap_findclk(s, "clk32-kHz"));
4048 s->mcbsp1 = omap_mcbsp_init(system_memory, 0xfffb1800,
4049 qdev_get_gpio_in(s->ih[1], OMAP_INT_McBSP1TX),
4050 qdev_get_gpio_in(s->ih[1], OMAP_INT_McBSP1RX),
4051 &s->drq[OMAP_DMA_MCBSP1_TX], omap_findclk(s, "dspxor_ck"));
4052 s->mcbsp2 = omap_mcbsp_init(system_memory, 0xfffb1000,
4053 qdev_get_gpio_in(s->ih[0],
4054 OMAP_INT_310_McBSP2_TX),
4055 qdev_get_gpio_in(s->ih[0],
4056 OMAP_INT_310_McBSP2_RX),
4057 &s->drq[OMAP_DMA_MCBSP2_TX], omap_findclk(s, "mpuper_ck"));
4058 s->mcbsp3 = omap_mcbsp_init(system_memory, 0xfffb7000,
4059 qdev_get_gpio_in(s->ih[1], OMAP_INT_McBSP3TX),
4060 qdev_get_gpio_in(s->ih[1], OMAP_INT_McBSP3RX),
4061 &s->drq[OMAP_DMA_MCBSP3_TX], omap_findclk(s, "dspxor_ck"));
4063 s->led[0] = omap_lpg_init(system_memory,
4064 0xfffbd000, omap_findclk(s, "clk32-kHz"));
4065 s->led[1] = omap_lpg_init(system_memory,
4066 0xfffbd800, omap_findclk(s, "clk32-kHz"));
4068 /* Register mappings not currenlty implemented:
4069 * MCSI2 Comm fffb2000 - fffb27ff (not mapped on OMAP310)
4070 * MCSI1 Bluetooth fffb2800 - fffb2fff (not mapped on OMAP310)
4071 * USB W2FC fffb4000 - fffb47ff
4072 * Camera Interface fffb6800 - fffb6fff
4073 * USB Host fffba000 - fffba7ff
4074 * FAC fffba800 - fffbafff
4075 * HDQ/1-Wire fffbc000 - fffbc7ff
4076 * TIPB switches fffbc800 - fffbcfff
4077 * Mailbox fffcf000 - fffcf7ff
4078 * Local bus IF fffec100 - fffec1ff
4079 * Local bus MMU fffec200 - fffec2ff
4080 * DSP MMU fffed200 - fffed2ff
4083 omap_setup_dsp_mapping(system_memory, omap15xx_dsp_mm);
4084 omap_setup_mpui_io(system_memory, s);
4086 qemu_register_reset(omap1_mpu_reset, s);