4 * Copyright (c) 2007 Magnus Damm
5 * Copyright (c) 2005 Samuel Tardieu
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 #include "hw/sh4/sh.h"
28 #include "sysemu/sysemu.h"
29 #include "sh7750_regs.h"
30 #include "sh7750_regnames.h"
31 #include "hw/sh4/sh_intc.h"
33 #include "exec/address-spaces.h"
37 typedef struct SH7750State
{
39 MemoryRegion iomem_1f0
;
40 MemoryRegion iomem_ff0
;
41 MemoryRegion iomem_1f8
;
42 MemoryRegion iomem_ff8
;
43 MemoryRegion iomem_1fc
;
44 MemoryRegion iomem_ffc
;
45 MemoryRegion mmct_iomem
;
48 /* Peripheral frequency in Hz */
50 /* SDRAM controller */
56 /* PCMCIA controller */
62 uint16_t portdira
; /* Cached */
63 uint16_t portpullupa
; /* Cached */
64 uint16_t portdirb
; /* Cached */
65 uint16_t portpullupb
; /* Cached */
68 uint16_t periph_pdtra
; /* Imposed by the peripherals */
69 uint16_t periph_portdira
; /* Direction seen from the peripherals */
70 uint16_t periph_pdtrb
; /* Imposed by the peripherals */
71 uint16_t periph_portdirb
; /* Direction seen from the peripherals */
72 sh7750_io_device
*devices
[NB_DEVICES
]; /* External peripherals */
77 struct intc_desc intc
;
80 static inline int has_bcr3_and_bcr4(SH7750State
* s
)
82 return s
->cpu
->env
.features
& SH_FEATURE_BCR3_AND_BCR4
;
84 /**********************************************************************
86 **********************************************************************/
88 int sh7750_register_io_device(SH7750State
* s
, sh7750_io_device
* device
)
92 for (i
= 0; i
< NB_DEVICES
; i
++) {
93 if (s
->devices
[i
] == NULL
) {
94 s
->devices
[i
] = device
;
101 static uint16_t portdir(uint32_t v
)
103 #define EVENPORTMASK(n) ((v & (1<<((n)<<1))) >> (n))
105 EVENPORTMASK(15) | EVENPORTMASK(14) | EVENPORTMASK(13) |
106 EVENPORTMASK(12) | EVENPORTMASK(11) | EVENPORTMASK(10) |
107 EVENPORTMASK(9) | EVENPORTMASK(8) | EVENPORTMASK(7) |
108 EVENPORTMASK(6) | EVENPORTMASK(5) | EVENPORTMASK(4) |
109 EVENPORTMASK(3) | EVENPORTMASK(2) | EVENPORTMASK(1) |
113 static uint16_t portpullup(uint32_t v
)
115 #define ODDPORTMASK(n) ((v & (1<<(((n)<<1)+1))) >> (n))
117 ODDPORTMASK(15) | ODDPORTMASK(14) | ODDPORTMASK(13) |
118 ODDPORTMASK(12) | ODDPORTMASK(11) | ODDPORTMASK(10) |
119 ODDPORTMASK(9) | ODDPORTMASK(8) | ODDPORTMASK(7) | ODDPORTMASK(6) |
120 ODDPORTMASK(5) | ODDPORTMASK(4) | ODDPORTMASK(3) | ODDPORTMASK(2) |
121 ODDPORTMASK(1) | ODDPORTMASK(0);
124 static uint16_t porta_lines(SH7750State
* s
)
126 return (s
->portdira
& s
->pdtra
) | /* CPU */
127 (s
->periph_portdira
& s
->periph_pdtra
) | /* Peripherals */
128 (~(s
->portdira
| s
->periph_portdira
) & s
->portpullupa
); /* Pullups */
131 static uint16_t portb_lines(SH7750State
* s
)
133 return (s
->portdirb
& s
->pdtrb
) | /* CPU */
134 (s
->periph_portdirb
& s
->periph_pdtrb
) | /* Peripherals */
135 (~(s
->portdirb
| s
->periph_portdirb
) & s
->portpullupb
); /* Pullups */
138 static void gen_port_interrupts(SH7750State
* s
)
140 /* XXXXX interrupts not generated */
143 static void porta_changed(SH7750State
* s
, uint16_t prev
)
145 uint16_t currenta
, changes
;
149 fprintf(stderr
, "porta changed from 0x%04x to 0x%04x\n",
150 prev
, porta_lines(s
));
151 fprintf(stderr
, "pdtra=0x%04x, pctra=0x%08x\n", s
->pdtra
, s
->pctra
);
153 currenta
= porta_lines(s
);
154 if (currenta
== prev
)
156 changes
= currenta
^ prev
;
158 for (i
= 0; i
< NB_DEVICES
; i
++) {
159 if (s
->devices
[i
] && (s
->devices
[i
]->portamask_trigger
& changes
)) {
160 r
|= s
->devices
[i
]->port_change_cb(currenta
, portb_lines(s
),
164 &s
->periph_portdirb
);
169 gen_port_interrupts(s
);
172 static void portb_changed(SH7750State
* s
, uint16_t prev
)
174 uint16_t currentb
, changes
;
177 currentb
= portb_lines(s
);
178 if (currentb
== prev
)
180 changes
= currentb
^ prev
;
182 for (i
= 0; i
< NB_DEVICES
; i
++) {
183 if (s
->devices
[i
] && (s
->devices
[i
]->portbmask_trigger
& changes
)) {
184 r
|= s
->devices
[i
]->port_change_cb(portb_lines(s
), currentb
,
188 &s
->periph_portdirb
);
193 gen_port_interrupts(s
);
196 /**********************************************************************
198 **********************************************************************/
200 static void error_access(const char *kind
, hwaddr addr
)
202 fprintf(stderr
, "%s to %s (0x" TARGET_FMT_plx
") not supported\n",
203 kind
, regname(addr
), addr
);
206 static void ignore_access(const char *kind
, hwaddr addr
)
208 fprintf(stderr
, "%s to %s (0x" TARGET_FMT_plx
") ignored\n",
209 kind
, regname(addr
), addr
);
212 static uint32_t QEMU_NORETURN
sh7750_mem_readb(void *opaque
, hwaddr addr
)
216 error_access("byte read", addr
);
221 static uint32_t sh7750_mem_readw(void *opaque
, hwaddr addr
)
223 SH7750State
*s
= opaque
;
229 if(!has_bcr3_and_bcr4(s
))
230 error_access("word read", addr
);
232 case SH7750_FRQCR_A7
:
238 "Read access to refresh count register, incrementing\n");
240 case SH7750_PDTRA_A7
:
241 return porta_lines(s
);
242 case SH7750_PDTRB_A7
:
243 return portb_lines(s
);
244 case SH7750_RTCOR_A7
:
245 case SH7750_RTCNT_A7
:
246 case SH7750_RTCSR_A7
:
247 ignore_access("word read", addr
);
250 error_access("word read", addr
);
255 static uint32_t sh7750_mem_readl(void *opaque
, hwaddr addr
)
257 SH7750State
*s
= opaque
;
264 if(!has_bcr3_and_bcr4(s
))
265 error_access("long read", addr
);
271 ignore_access("long read", addr
);
273 case SH7750_MMUCR_A7
:
274 return s
->cpu
->env
.mmucr
;
276 return s
->cpu
->env
.pteh
;
278 return s
->cpu
->env
.ptel
;
280 return s
->cpu
->env
.ttb
;
282 return s
->cpu
->env
.tea
;
284 return s
->cpu
->env
.tra
;
285 case SH7750_EXPEVT_A7
:
286 return s
->cpu
->env
.expevt
;
287 case SH7750_INTEVT_A7
:
288 return s
->cpu
->env
.intevt
;
291 case 0x1f000030: /* Processor version */
292 scc
= SUPERH_CPU_GET_CLASS(s
->cpu
);
294 case 0x1f000040: /* Cache version */
295 scc
= SUPERH_CPU_GET_CLASS(s
->cpu
);
297 case 0x1f000044: /* Processor revision */
298 scc
= SUPERH_CPU_GET_CLASS(s
->cpu
);
301 error_access("long read", addr
);
306 #define is_in_sdrmx(a, x) (a >= SH7750_SDMR ## x ## _A7 \
307 && a <= (SH7750_SDMR ## x ## _A7 + SH7750_SDMR ## x ## _REGNB))
308 static void sh7750_mem_writeb(void *opaque
, hwaddr addr
,
312 if (is_in_sdrmx(addr
, 2) || is_in_sdrmx(addr
, 3)) {
313 ignore_access("byte write", addr
);
317 error_access("byte write", addr
);
321 static void sh7750_mem_writew(void *opaque
, hwaddr addr
,
324 SH7750State
*s
= opaque
;
328 /* SDRAM controller */
333 if(!has_bcr3_and_bcr4(s
))
334 error_access("word write", addr
);
340 case SH7750_RTCNT_A7
:
341 case SH7750_RTCOR_A7
:
342 case SH7750_RTCSR_A7
:
343 ignore_access("word write", addr
);
346 case SH7750_PDTRA_A7
:
347 temp
= porta_lines(s
);
348 s
->pdtra
= mem_value
;
349 porta_changed(s
, temp
);
351 case SH7750_PDTRB_A7
:
352 temp
= portb_lines(s
);
353 s
->pdtrb
= mem_value
;
354 portb_changed(s
, temp
);
357 fprintf(stderr
, "Write access to refresh count register\n");
360 case SH7750_GPIOIC_A7
:
361 s
->gpioic
= mem_value
;
362 if (mem_value
!= 0) {
363 fprintf(stderr
, "I/O interrupts not implemented\n");
368 error_access("word write", addr
);
373 static void sh7750_mem_writel(void *opaque
, hwaddr addr
,
376 SH7750State
*s
= opaque
;
380 /* SDRAM controller */
385 if(!has_bcr3_and_bcr4(s
))
386 error_access("long write", addr
);
393 ignore_access("long write", addr
);
396 case SH7750_PCTRA_A7
:
397 temp
= porta_lines(s
);
398 s
->pctra
= mem_value
;
399 s
->portdira
= portdir(mem_value
);
400 s
->portpullupa
= portpullup(mem_value
);
401 porta_changed(s
, temp
);
403 case SH7750_PCTRB_A7
:
404 temp
= portb_lines(s
);
405 s
->pctrb
= mem_value
;
406 s
->portdirb
= portdir(mem_value
);
407 s
->portpullupb
= portpullup(mem_value
);
408 portb_changed(s
, temp
);
410 case SH7750_MMUCR_A7
:
411 if (mem_value
& MMUCR_TI
) {
412 cpu_sh4_invalidate_tlb(&s
->cpu
->env
);
414 s
->cpu
->env
.mmucr
= mem_value
& ~MMUCR_TI
;
417 /* If asid changes, clear all registered tlb entries. */
418 if ((s
->cpu
->env
.pteh
& 0xff) != (mem_value
& 0xff)) {
419 tlb_flush(CPU(s
->cpu
), 1);
421 s
->cpu
->env
.pteh
= mem_value
;
424 s
->cpu
->env
.ptel
= mem_value
;
427 s
->cpu
->env
.ptea
= mem_value
& 0x0000000f;
430 s
->cpu
->env
.ttb
= mem_value
;
433 s
->cpu
->env
.tea
= mem_value
;
436 s
->cpu
->env
.tra
= mem_value
& 0x000007ff;
438 case SH7750_EXPEVT_A7
:
439 s
->cpu
->env
.expevt
= mem_value
& 0x000007ff;
441 case SH7750_INTEVT_A7
:
442 s
->cpu
->env
.intevt
= mem_value
& 0x000007ff;
448 error_access("long write", addr
);
453 static const MemoryRegionOps sh7750_mem_ops
= {
455 .read
= {sh7750_mem_readb
,
458 .write
= {sh7750_mem_writeb
,
462 .endianness
= DEVICE_NATIVE_ENDIAN
,
465 /* sh775x interrupt controller tables for sh_intc.c
466 * stolen from linux/arch/sh/kernel/cpu/sh4/setup-sh7750.c
472 /* interrupt sources */
473 IRL_0
, IRL_1
, IRL_2
, IRL_3
, IRL_4
, IRL_5
, IRL_6
, IRL_7
,
474 IRL_8
, IRL_9
, IRL_A
, IRL_B
, IRL_C
, IRL_D
, IRL_E
,
475 IRL0
, IRL1
, IRL2
, IRL3
,
477 DMAC_DMTE0
, DMAC_DMTE1
, DMAC_DMTE2
, DMAC_DMTE3
,
478 DMAC_DMTE4
, DMAC_DMTE5
, DMAC_DMTE6
, DMAC_DMTE7
,
480 PCIC0_PCISERR
, PCIC1_PCIERR
, PCIC1_PCIPWDWN
, PCIC1_PCIPWON
,
481 PCIC1_PCIDMA0
, PCIC1_PCIDMA1
, PCIC1_PCIDMA2
, PCIC1_PCIDMA3
,
482 TMU3
, TMU4
, TMU0
, TMU1
, TMU2_TUNI
, TMU2_TICPI
,
483 RTC_ATI
, RTC_PRI
, RTC_CUI
,
484 SCI1_ERI
, SCI1_RXI
, SCI1_TXI
, SCI1_TEI
,
485 SCIF_ERI
, SCIF_RXI
, SCIF_BRI
, SCIF_TXI
,
489 /* interrupt groups */
490 DMAC
, PCIC1
, TMU2
, RTC
, SCI1
, SCIF
, REF
,
497 static struct intc_vect vectors
[] = {
498 INTC_VECT(HUDI
, 0x600), INTC_VECT(GPIOI
, 0x620),
499 INTC_VECT(TMU0
, 0x400), INTC_VECT(TMU1
, 0x420),
500 INTC_VECT(TMU2_TUNI
, 0x440), INTC_VECT(TMU2_TICPI
, 0x460),
501 INTC_VECT(RTC_ATI
, 0x480), INTC_VECT(RTC_PRI
, 0x4a0),
502 INTC_VECT(RTC_CUI
, 0x4c0),
503 INTC_VECT(SCI1_ERI
, 0x4e0), INTC_VECT(SCI1_RXI
, 0x500),
504 INTC_VECT(SCI1_TXI
, 0x520), INTC_VECT(SCI1_TEI
, 0x540),
505 INTC_VECT(SCIF_ERI
, 0x700), INTC_VECT(SCIF_RXI
, 0x720),
506 INTC_VECT(SCIF_BRI
, 0x740), INTC_VECT(SCIF_TXI
, 0x760),
507 INTC_VECT(WDT
, 0x560),
508 INTC_VECT(REF_RCMI
, 0x580), INTC_VECT(REF_ROVI
, 0x5a0),
511 static struct intc_group groups
[] = {
512 INTC_GROUP(TMU2
, TMU2_TUNI
, TMU2_TICPI
),
513 INTC_GROUP(RTC
, RTC_ATI
, RTC_PRI
, RTC_CUI
),
514 INTC_GROUP(SCI1
, SCI1_ERI
, SCI1_RXI
, SCI1_TXI
, SCI1_TEI
),
515 INTC_GROUP(SCIF
, SCIF_ERI
, SCIF_RXI
, SCIF_BRI
, SCIF_TXI
),
516 INTC_GROUP(REF
, REF_RCMI
, REF_ROVI
),
519 static struct intc_prio_reg prio_registers
[] = {
520 { 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0
, TMU1
, TMU2
, RTC
} },
521 { 0xffd00008, 0, 16, 4, /* IPRB */ { WDT
, REF
, SCI1
, 0 } },
522 { 0xffd0000c, 0, 16, 4, /* IPRC */ { GPIOI
, DMAC
, SCIF
, HUDI
} },
523 { 0xffd00010, 0, 16, 4, /* IPRD */ { IRL0
, IRL1
, IRL2
, IRL3
} },
524 { 0xfe080000, 0, 32, 4, /* INTPRI00 */ { 0, 0, 0, 0,
526 PCIC1
, PCIC0_PCISERR
} },
529 /* SH7750, SH7750S, SH7751 and SH7091 all have 4-channel DMA controllers */
531 static struct intc_vect vectors_dma4
[] = {
532 INTC_VECT(DMAC_DMTE0
, 0x640), INTC_VECT(DMAC_DMTE1
, 0x660),
533 INTC_VECT(DMAC_DMTE2
, 0x680), INTC_VECT(DMAC_DMTE3
, 0x6a0),
534 INTC_VECT(DMAC_DMAE
, 0x6c0),
537 static struct intc_group groups_dma4
[] = {
538 INTC_GROUP(DMAC
, DMAC_DMTE0
, DMAC_DMTE1
, DMAC_DMTE2
,
539 DMAC_DMTE3
, DMAC_DMAE
),
542 /* SH7750R and SH7751R both have 8-channel DMA controllers */
544 static struct intc_vect vectors_dma8
[] = {
545 INTC_VECT(DMAC_DMTE0
, 0x640), INTC_VECT(DMAC_DMTE1
, 0x660),
546 INTC_VECT(DMAC_DMTE2
, 0x680), INTC_VECT(DMAC_DMTE3
, 0x6a0),
547 INTC_VECT(DMAC_DMTE4
, 0x780), INTC_VECT(DMAC_DMTE5
, 0x7a0),
548 INTC_VECT(DMAC_DMTE6
, 0x7c0), INTC_VECT(DMAC_DMTE7
, 0x7e0),
549 INTC_VECT(DMAC_DMAE
, 0x6c0),
552 static struct intc_group groups_dma8
[] = {
553 INTC_GROUP(DMAC
, DMAC_DMTE0
, DMAC_DMTE1
, DMAC_DMTE2
,
554 DMAC_DMTE3
, DMAC_DMTE4
, DMAC_DMTE5
,
555 DMAC_DMTE6
, DMAC_DMTE7
, DMAC_DMAE
),
558 /* SH7750R, SH7751 and SH7751R all have two extra timer channels */
560 static struct intc_vect vectors_tmu34
[] = {
561 INTC_VECT(TMU3
, 0xb00), INTC_VECT(TMU4
, 0xb80),
564 static struct intc_mask_reg mask_registers
[] = {
565 { 0xfe080040, 0xfe080060, 32, /* INTMSK00 / INTMSKCLR00 */
566 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
567 0, 0, 0, 0, 0, 0, TMU4
, TMU3
,
568 PCIC1_PCIERR
, PCIC1_PCIPWDWN
, PCIC1_PCIPWON
,
569 PCIC1_PCIDMA0
, PCIC1_PCIDMA1
, PCIC1_PCIDMA2
,
570 PCIC1_PCIDMA3
, PCIC0_PCISERR
} },
573 /* SH7750S, SH7750R, SH7751 and SH7751R all have IRLM priority registers */
575 static struct intc_vect vectors_irlm
[] = {
576 INTC_VECT(IRL0
, 0x240), INTC_VECT(IRL1
, 0x2a0),
577 INTC_VECT(IRL2
, 0x300), INTC_VECT(IRL3
, 0x360),
580 /* SH7751 and SH7751R both have PCI */
582 static struct intc_vect vectors_pci
[] = {
583 INTC_VECT(PCIC0_PCISERR
, 0xa00), INTC_VECT(PCIC1_PCIERR
, 0xae0),
584 INTC_VECT(PCIC1_PCIPWDWN
, 0xac0), INTC_VECT(PCIC1_PCIPWON
, 0xaa0),
585 INTC_VECT(PCIC1_PCIDMA0
, 0xa80), INTC_VECT(PCIC1_PCIDMA1
, 0xa60),
586 INTC_VECT(PCIC1_PCIDMA2
, 0xa40), INTC_VECT(PCIC1_PCIDMA3
, 0xa20),
589 static struct intc_group groups_pci
[] = {
590 INTC_GROUP(PCIC1
, PCIC1_PCIERR
, PCIC1_PCIPWDWN
, PCIC1_PCIPWON
,
591 PCIC1_PCIDMA0
, PCIC1_PCIDMA1
, PCIC1_PCIDMA2
, PCIC1_PCIDMA3
),
594 static struct intc_vect vectors_irl
[] = {
595 INTC_VECT(IRL_0
, 0x200),
596 INTC_VECT(IRL_1
, 0x220),
597 INTC_VECT(IRL_2
, 0x240),
598 INTC_VECT(IRL_3
, 0x260),
599 INTC_VECT(IRL_4
, 0x280),
600 INTC_VECT(IRL_5
, 0x2a0),
601 INTC_VECT(IRL_6
, 0x2c0),
602 INTC_VECT(IRL_7
, 0x2e0),
603 INTC_VECT(IRL_8
, 0x300),
604 INTC_VECT(IRL_9
, 0x320),
605 INTC_VECT(IRL_A
, 0x340),
606 INTC_VECT(IRL_B
, 0x360),
607 INTC_VECT(IRL_C
, 0x380),
608 INTC_VECT(IRL_D
, 0x3a0),
609 INTC_VECT(IRL_E
, 0x3c0),
612 static struct intc_group groups_irl
[] = {
613 INTC_GROUP(IRL
, IRL_0
, IRL_1
, IRL_2
, IRL_3
, IRL_4
, IRL_5
, IRL_6
,
614 IRL_7
, IRL_8
, IRL_9
, IRL_A
, IRL_B
, IRL_C
, IRL_D
, IRL_E
),
617 /**********************************************************************
618 Memory mapped cache and TLB
619 **********************************************************************/
621 #define MM_REGION_MASK 0x07000000
622 #define MM_ICACHE_ADDR (0)
623 #define MM_ICACHE_DATA (1)
624 #define MM_ITLB_ADDR (2)
625 #define MM_ITLB_DATA (3)
626 #define MM_OCACHE_ADDR (4)
627 #define MM_OCACHE_DATA (5)
628 #define MM_UTLB_ADDR (6)
629 #define MM_UTLB_DATA (7)
630 #define MM_REGION_TYPE(addr) ((addr & MM_REGION_MASK) >> 24)
632 static uint64_t QEMU_NORETURN
invalid_read(void *opaque
, hwaddr addr
)
639 static uint64_t sh7750_mmct_read(void *opaque
, hwaddr addr
,
642 SH7750State
*s
= opaque
;
646 return invalid_read(opaque
, addr
);
649 switch (MM_REGION_TYPE(addr
)) {
655 ret
= cpu_sh4_read_mmaped_itlb_addr(&s
->cpu
->env
, addr
);
658 ret
= cpu_sh4_read_mmaped_itlb_data(&s
->cpu
->env
, addr
);
665 ret
= cpu_sh4_read_mmaped_utlb_addr(&s
->cpu
->env
, addr
);
668 ret
= cpu_sh4_read_mmaped_utlb_data(&s
->cpu
->env
, addr
);
677 static void QEMU_NORETURN
invalid_write(void *opaque
, hwaddr addr
,
683 static void sh7750_mmct_write(void *opaque
, hwaddr addr
,
684 uint64_t mem_value
, unsigned size
)
686 SH7750State
*s
= opaque
;
689 invalid_write(opaque
, addr
, mem_value
);
692 switch (MM_REGION_TYPE(addr
)) {
698 cpu_sh4_write_mmaped_itlb_addr(&s
->cpu
->env
, addr
, mem_value
);
701 cpu_sh4_write_mmaped_itlb_data(&s
->cpu
->env
, addr
, mem_value
);
709 cpu_sh4_write_mmaped_utlb_addr(&s
->cpu
->env
, addr
, mem_value
);
712 cpu_sh4_write_mmaped_utlb_data(&s
->cpu
->env
, addr
, mem_value
);
720 static const MemoryRegionOps sh7750_mmct_ops
= {
721 .read
= sh7750_mmct_read
,
722 .write
= sh7750_mmct_write
,
723 .endianness
= DEVICE_NATIVE_ENDIAN
,
726 SH7750State
*sh7750_init(SuperHCPU
*cpu
, MemoryRegion
*sysmem
)
730 s
= g_malloc0(sizeof(SH7750State
));
732 s
->periph_freq
= 60000000; /* 60MHz */
733 memory_region_init_io(&s
->iomem
, NULL
, &sh7750_mem_ops
, s
,
734 "memory", 0x1fc01000);
736 memory_region_init_alias(&s
->iomem_1f0
, NULL
, "memory-1f0",
737 &s
->iomem
, 0x1f000000, 0x1000);
738 memory_region_add_subregion(sysmem
, 0x1f000000, &s
->iomem_1f0
);
740 memory_region_init_alias(&s
->iomem_ff0
, NULL
, "memory-ff0",
741 &s
->iomem
, 0x1f000000, 0x1000);
742 memory_region_add_subregion(sysmem
, 0xff000000, &s
->iomem_ff0
);
744 memory_region_init_alias(&s
->iomem_1f8
, NULL
, "memory-1f8",
745 &s
->iomem
, 0x1f800000, 0x1000);
746 memory_region_add_subregion(sysmem
, 0x1f800000, &s
->iomem_1f8
);
748 memory_region_init_alias(&s
->iomem_ff8
, NULL
, "memory-ff8",
749 &s
->iomem
, 0x1f800000, 0x1000);
750 memory_region_add_subregion(sysmem
, 0xff800000, &s
->iomem_ff8
);
752 memory_region_init_alias(&s
->iomem_1fc
, NULL
, "memory-1fc",
753 &s
->iomem
, 0x1fc00000, 0x1000);
754 memory_region_add_subregion(sysmem
, 0x1fc00000, &s
->iomem_1fc
);
756 memory_region_init_alias(&s
->iomem_ffc
, NULL
, "memory-ffc",
757 &s
->iomem
, 0x1fc00000, 0x1000);
758 memory_region_add_subregion(sysmem
, 0xffc00000, &s
->iomem_ffc
);
760 memory_region_init_io(&s
->mmct_iomem
, NULL
, &sh7750_mmct_ops
, s
,
761 "cache-and-tlb", 0x08000000);
762 memory_region_add_subregion(sysmem
, 0xf0000000, &s
->mmct_iomem
);
764 sh_intc_init(sysmem
, &s
->intc
, NR_SOURCES
,
765 _INTC_ARRAY(mask_registers
),
766 _INTC_ARRAY(prio_registers
));
768 sh_intc_register_sources(&s
->intc
,
769 _INTC_ARRAY(vectors
),
770 _INTC_ARRAY(groups
));
772 cpu
->env
.intc_handle
= &s
->intc
;
774 sh_serial_init(sysmem
, 0x1fe00000,
775 0, s
->periph_freq
, serial_hds
[0],
776 s
->intc
.irqs
[SCI1_ERI
],
777 s
->intc
.irqs
[SCI1_RXI
],
778 s
->intc
.irqs
[SCI1_TXI
],
779 s
->intc
.irqs
[SCI1_TEI
],
781 sh_serial_init(sysmem
, 0x1fe80000,
783 s
->periph_freq
, serial_hds
[1],
784 s
->intc
.irqs
[SCIF_ERI
],
785 s
->intc
.irqs
[SCIF_RXI
],
786 s
->intc
.irqs
[SCIF_TXI
],
788 s
->intc
.irqs
[SCIF_BRI
]);
790 tmu012_init(sysmem
, 0x1fd80000,
791 TMU012_FEAT_TOCR
| TMU012_FEAT_3CHAN
| TMU012_FEAT_EXTCLK
,
795 s
->intc
.irqs
[TMU2_TUNI
],
796 s
->intc
.irqs
[TMU2_TICPI
]);
798 if (cpu
->env
.id
& (SH_CPU_SH7750
| SH_CPU_SH7750S
| SH_CPU_SH7751
)) {
799 sh_intc_register_sources(&s
->intc
,
800 _INTC_ARRAY(vectors_dma4
),
801 _INTC_ARRAY(groups_dma4
));
804 if (cpu
->env
.id
& (SH_CPU_SH7750R
| SH_CPU_SH7751R
)) {
805 sh_intc_register_sources(&s
->intc
,
806 _INTC_ARRAY(vectors_dma8
),
807 _INTC_ARRAY(groups_dma8
));
810 if (cpu
->env
.id
& (SH_CPU_SH7750R
| SH_CPU_SH7751
| SH_CPU_SH7751R
)) {
811 sh_intc_register_sources(&s
->intc
,
812 _INTC_ARRAY(vectors_tmu34
),
814 tmu012_init(sysmem
, 0x1e100000, 0, s
->periph_freq
,
820 if (cpu
->env
.id
& (SH_CPU_SH7751_ALL
)) {
821 sh_intc_register_sources(&s
->intc
,
822 _INTC_ARRAY(vectors_pci
),
823 _INTC_ARRAY(groups_pci
));
826 if (cpu
->env
.id
& (SH_CPU_SH7750S
| SH_CPU_SH7750R
| SH_CPU_SH7751_ALL
)) {
827 sh_intc_register_sources(&s
->intc
,
828 _INTC_ARRAY(vectors_irlm
),
832 sh_intc_register_sources(&s
->intc
,
833 _INTC_ARRAY(vectors_irl
),
834 _INTC_ARRAY(groups_irl
));
838 qemu_irq
sh7750_irl(SH7750State
*s
)
840 sh_intc_toggle_source(sh_intc_source(&s
->intc
, IRL
), 1, 0); /* enable */
841 return qemu_allocate_irq(sh_intc_set_irl
, sh_intc_source(&s
->intc
, IRL
), 0);