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
26 #include "qemu/osdep.h"
28 #include "hw/sh4/sh.h"
29 #include "sysemu/sysemu.h"
30 #include "sh7750_regs.h"
31 #include "sh7750_regnames.h"
32 #include "hw/sh4/sh_intc.h"
34 #include "exec/exec-all.h"
38 typedef struct SH7750State
{
40 MemoryRegion iomem_1f0
;
41 MemoryRegion iomem_ff0
;
42 MemoryRegion iomem_1f8
;
43 MemoryRegion iomem_ff8
;
44 MemoryRegion iomem_1fc
;
45 MemoryRegion iomem_ffc
;
46 MemoryRegion mmct_iomem
;
49 /* Peripheral frequency in Hz */
51 /* SDRAM controller */
57 /* PCMCIA controller */
63 uint16_t portdira
; /* Cached */
64 uint16_t portpullupa
; /* Cached */
65 uint16_t portdirb
; /* Cached */
66 uint16_t portpullupb
; /* Cached */
69 uint16_t periph_pdtra
; /* Imposed by the peripherals */
70 uint16_t periph_portdira
; /* Direction seen from the peripherals */
71 uint16_t periph_pdtrb
; /* Imposed by the peripherals */
72 uint16_t periph_portdirb
; /* Direction seen from the peripherals */
73 sh7750_io_device
*devices
[NB_DEVICES
]; /* External peripherals */
78 struct intc_desc intc
;
81 static inline int has_bcr3_and_bcr4(SH7750State
* s
)
83 return s
->cpu
->env
.features
& SH_FEATURE_BCR3_AND_BCR4
;
85 /**********************************************************************
87 **********************************************************************/
89 int sh7750_register_io_device(SH7750State
* s
, sh7750_io_device
* device
)
93 for (i
= 0; i
< NB_DEVICES
; i
++) {
94 if (s
->devices
[i
] == NULL
) {
95 s
->devices
[i
] = device
;
102 static uint16_t portdir(uint32_t v
)
104 #define EVENPORTMASK(n) ((v & (1<<((n)<<1))) >> (n))
106 EVENPORTMASK(15) | EVENPORTMASK(14) | EVENPORTMASK(13) |
107 EVENPORTMASK(12) | EVENPORTMASK(11) | EVENPORTMASK(10) |
108 EVENPORTMASK(9) | EVENPORTMASK(8) | EVENPORTMASK(7) |
109 EVENPORTMASK(6) | EVENPORTMASK(5) | EVENPORTMASK(4) |
110 EVENPORTMASK(3) | EVENPORTMASK(2) | EVENPORTMASK(1) |
114 static uint16_t portpullup(uint32_t v
)
116 #define ODDPORTMASK(n) ((v & (1<<(((n)<<1)+1))) >> (n))
118 ODDPORTMASK(15) | ODDPORTMASK(14) | ODDPORTMASK(13) |
119 ODDPORTMASK(12) | ODDPORTMASK(11) | ODDPORTMASK(10) |
120 ODDPORTMASK(9) | ODDPORTMASK(8) | ODDPORTMASK(7) | ODDPORTMASK(6) |
121 ODDPORTMASK(5) | ODDPORTMASK(4) | ODDPORTMASK(3) | ODDPORTMASK(2) |
122 ODDPORTMASK(1) | ODDPORTMASK(0);
125 static uint16_t porta_lines(SH7750State
* s
)
127 return (s
->portdira
& s
->pdtra
) | /* CPU */
128 (s
->periph_portdira
& s
->periph_pdtra
) | /* Peripherals */
129 (~(s
->portdira
| s
->periph_portdira
) & s
->portpullupa
); /* Pullups */
132 static uint16_t portb_lines(SH7750State
* s
)
134 return (s
->portdirb
& s
->pdtrb
) | /* CPU */
135 (s
->periph_portdirb
& s
->periph_pdtrb
) | /* Peripherals */
136 (~(s
->portdirb
| s
->periph_portdirb
) & s
->portpullupb
); /* Pullups */
139 static void gen_port_interrupts(SH7750State
* s
)
141 /* XXXXX interrupts not generated */
144 static void porta_changed(SH7750State
* s
, uint16_t prev
)
146 uint16_t currenta
, changes
;
150 fprintf(stderr
, "porta changed from 0x%04x to 0x%04x\n",
151 prev
, porta_lines(s
));
152 fprintf(stderr
, "pdtra=0x%04x, pctra=0x%08x\n", s
->pdtra
, s
->pctra
);
154 currenta
= porta_lines(s
);
155 if (currenta
== prev
)
157 changes
= currenta
^ prev
;
159 for (i
= 0; i
< NB_DEVICES
; i
++) {
160 if (s
->devices
[i
] && (s
->devices
[i
]->portamask_trigger
& changes
)) {
161 r
|= s
->devices
[i
]->port_change_cb(currenta
, portb_lines(s
),
165 &s
->periph_portdirb
);
170 gen_port_interrupts(s
);
173 static void portb_changed(SH7750State
* s
, uint16_t prev
)
175 uint16_t currentb
, changes
;
178 currentb
= portb_lines(s
);
179 if (currentb
== prev
)
181 changes
= currentb
^ prev
;
183 for (i
= 0; i
< NB_DEVICES
; i
++) {
184 if (s
->devices
[i
] && (s
->devices
[i
]->portbmask_trigger
& changes
)) {
185 r
|= s
->devices
[i
]->port_change_cb(portb_lines(s
), currentb
,
189 &s
->periph_portdirb
);
194 gen_port_interrupts(s
);
197 /**********************************************************************
199 **********************************************************************/
201 static void error_access(const char *kind
, hwaddr addr
)
203 fprintf(stderr
, "%s to %s (0x" TARGET_FMT_plx
") not supported\n",
204 kind
, regname(addr
), addr
);
207 static void ignore_access(const char *kind
, hwaddr addr
)
209 fprintf(stderr
, "%s to %s (0x" TARGET_FMT_plx
") ignored\n",
210 kind
, regname(addr
), addr
);
213 static uint32_t sh7750_mem_readb(void *opaque
, hwaddr addr
)
217 error_access("byte read", addr
);
222 static uint32_t sh7750_mem_readw(void *opaque
, hwaddr addr
)
224 SH7750State
*s
= opaque
;
230 if(!has_bcr3_and_bcr4(s
))
231 error_access("word read", addr
);
233 case SH7750_FRQCR_A7
:
239 "Read access to refresh count register, incrementing\n");
241 case SH7750_PDTRA_A7
:
242 return porta_lines(s
);
243 case SH7750_PDTRB_A7
:
244 return portb_lines(s
);
245 case SH7750_RTCOR_A7
:
246 case SH7750_RTCNT_A7
:
247 case SH7750_RTCSR_A7
:
248 ignore_access("word read", addr
);
251 error_access("word read", addr
);
256 static uint32_t sh7750_mem_readl(void *opaque
, hwaddr addr
)
258 SH7750State
*s
= opaque
;
265 if(!has_bcr3_and_bcr4(s
))
266 error_access("long read", addr
);
272 ignore_access("long read", addr
);
274 case SH7750_MMUCR_A7
:
275 return s
->cpu
->env
.mmucr
;
277 return s
->cpu
->env
.pteh
;
279 return s
->cpu
->env
.ptel
;
281 return s
->cpu
->env
.ttb
;
283 return s
->cpu
->env
.tea
;
285 return s
->cpu
->env
.tra
;
286 case SH7750_EXPEVT_A7
:
287 return s
->cpu
->env
.expevt
;
288 case SH7750_INTEVT_A7
:
289 return s
->cpu
->env
.intevt
;
292 case 0x1f000030: /* Processor version */
293 scc
= SUPERH_CPU_GET_CLASS(s
->cpu
);
295 case 0x1f000040: /* Cache version */
296 scc
= SUPERH_CPU_GET_CLASS(s
->cpu
);
298 case 0x1f000044: /* Processor revision */
299 scc
= SUPERH_CPU_GET_CLASS(s
->cpu
);
302 error_access("long read", addr
);
307 #define is_in_sdrmx(a, x) (a >= SH7750_SDMR ## x ## _A7 \
308 && a <= (SH7750_SDMR ## x ## _A7 + SH7750_SDMR ## x ## _REGNB))
309 static void sh7750_mem_writeb(void *opaque
, hwaddr addr
,
313 if (is_in_sdrmx(addr
, 2) || is_in_sdrmx(addr
, 3)) {
314 ignore_access("byte write", addr
);
318 error_access("byte write", addr
);
322 static void sh7750_mem_writew(void *opaque
, hwaddr addr
,
325 SH7750State
*s
= opaque
;
329 /* SDRAM controller */
334 if(!has_bcr3_and_bcr4(s
))
335 error_access("word write", addr
);
341 case SH7750_RTCNT_A7
:
342 case SH7750_RTCOR_A7
:
343 case SH7750_RTCSR_A7
:
344 ignore_access("word write", addr
);
347 case SH7750_PDTRA_A7
:
348 temp
= porta_lines(s
);
349 s
->pdtra
= mem_value
;
350 porta_changed(s
, temp
);
352 case SH7750_PDTRB_A7
:
353 temp
= portb_lines(s
);
354 s
->pdtrb
= mem_value
;
355 portb_changed(s
, temp
);
358 fprintf(stderr
, "Write access to refresh count register\n");
361 case SH7750_GPIOIC_A7
:
362 s
->gpioic
= mem_value
;
363 if (mem_value
!= 0) {
364 fprintf(stderr
, "I/O interrupts not implemented\n");
369 error_access("word write", addr
);
374 static void sh7750_mem_writel(void *opaque
, hwaddr addr
,
377 SH7750State
*s
= opaque
;
381 /* SDRAM controller */
386 if(!has_bcr3_and_bcr4(s
))
387 error_access("long write", addr
);
394 ignore_access("long write", addr
);
397 case SH7750_PCTRA_A7
:
398 temp
= porta_lines(s
);
399 s
->pctra
= mem_value
;
400 s
->portdira
= portdir(mem_value
);
401 s
->portpullupa
= portpullup(mem_value
);
402 porta_changed(s
, temp
);
404 case SH7750_PCTRB_A7
:
405 temp
= portb_lines(s
);
406 s
->pctrb
= mem_value
;
407 s
->portdirb
= portdir(mem_value
);
408 s
->portpullupb
= portpullup(mem_value
);
409 portb_changed(s
, temp
);
411 case SH7750_MMUCR_A7
:
412 if (mem_value
& MMUCR_TI
) {
413 cpu_sh4_invalidate_tlb(&s
->cpu
->env
);
415 s
->cpu
->env
.mmucr
= mem_value
& ~MMUCR_TI
;
418 /* If asid changes, clear all registered tlb entries. */
419 if ((s
->cpu
->env
.pteh
& 0xff) != (mem_value
& 0xff)) {
420 tlb_flush(CPU(s
->cpu
));
422 s
->cpu
->env
.pteh
= mem_value
;
425 s
->cpu
->env
.ptel
= mem_value
;
428 s
->cpu
->env
.ptea
= mem_value
& 0x0000000f;
431 s
->cpu
->env
.ttb
= mem_value
;
434 s
->cpu
->env
.tea
= mem_value
;
437 s
->cpu
->env
.tra
= mem_value
& 0x000007ff;
439 case SH7750_EXPEVT_A7
:
440 s
->cpu
->env
.expevt
= mem_value
& 0x000007ff;
442 case SH7750_INTEVT_A7
:
443 s
->cpu
->env
.intevt
= mem_value
& 0x000007ff;
449 error_access("long write", addr
);
454 static uint64_t sh7750_mem_readfn(void *opaque
, hwaddr addr
, unsigned size
)
458 return sh7750_mem_readb(opaque
, addr
);
460 return sh7750_mem_readw(opaque
, addr
);
462 return sh7750_mem_readl(opaque
, addr
);
464 g_assert_not_reached();
468 static void sh7750_mem_writefn(void *opaque
, hwaddr addr
,
469 uint64_t value
, unsigned size
)
473 sh7750_mem_writeb(opaque
, addr
, value
);
476 sh7750_mem_writew(opaque
, addr
, value
);
479 sh7750_mem_writel(opaque
, addr
, value
);
482 g_assert_not_reached();
486 static const MemoryRegionOps sh7750_mem_ops
= {
487 .read
= sh7750_mem_readfn
,
488 .write
= sh7750_mem_writefn
,
489 .valid
.min_access_size
= 1,
490 .valid
.max_access_size
= 4,
491 .endianness
= DEVICE_NATIVE_ENDIAN
,
494 /* sh775x interrupt controller tables for sh_intc.c
495 * stolen from linux/arch/sh/kernel/cpu/sh4/setup-sh7750.c
501 /* interrupt sources */
502 IRL_0
, IRL_1
, IRL_2
, IRL_3
, IRL_4
, IRL_5
, IRL_6
, IRL_7
,
503 IRL_8
, IRL_9
, IRL_A
, IRL_B
, IRL_C
, IRL_D
, IRL_E
,
504 IRL0
, IRL1
, IRL2
, IRL3
,
506 DMAC_DMTE0
, DMAC_DMTE1
, DMAC_DMTE2
, DMAC_DMTE3
,
507 DMAC_DMTE4
, DMAC_DMTE5
, DMAC_DMTE6
, DMAC_DMTE7
,
509 PCIC0_PCISERR
, PCIC1_PCIERR
, PCIC1_PCIPWDWN
, PCIC1_PCIPWON
,
510 PCIC1_PCIDMA0
, PCIC1_PCIDMA1
, PCIC1_PCIDMA2
, PCIC1_PCIDMA3
,
511 TMU3
, TMU4
, TMU0
, TMU1
, TMU2_TUNI
, TMU2_TICPI
,
512 RTC_ATI
, RTC_PRI
, RTC_CUI
,
513 SCI1_ERI
, SCI1_RXI
, SCI1_TXI
, SCI1_TEI
,
514 SCIF_ERI
, SCIF_RXI
, SCIF_BRI
, SCIF_TXI
,
518 /* interrupt groups */
519 DMAC
, PCIC1
, TMU2
, RTC
, SCI1
, SCIF
, REF
,
526 static struct intc_vect vectors
[] = {
527 INTC_VECT(HUDI
, 0x600), INTC_VECT(GPIOI
, 0x620),
528 INTC_VECT(TMU0
, 0x400), INTC_VECT(TMU1
, 0x420),
529 INTC_VECT(TMU2_TUNI
, 0x440), INTC_VECT(TMU2_TICPI
, 0x460),
530 INTC_VECT(RTC_ATI
, 0x480), INTC_VECT(RTC_PRI
, 0x4a0),
531 INTC_VECT(RTC_CUI
, 0x4c0),
532 INTC_VECT(SCI1_ERI
, 0x4e0), INTC_VECT(SCI1_RXI
, 0x500),
533 INTC_VECT(SCI1_TXI
, 0x520), INTC_VECT(SCI1_TEI
, 0x540),
534 INTC_VECT(SCIF_ERI
, 0x700), INTC_VECT(SCIF_RXI
, 0x720),
535 INTC_VECT(SCIF_BRI
, 0x740), INTC_VECT(SCIF_TXI
, 0x760),
536 INTC_VECT(WDT
, 0x560),
537 INTC_VECT(REF_RCMI
, 0x580), INTC_VECT(REF_ROVI
, 0x5a0),
540 static struct intc_group groups
[] = {
541 INTC_GROUP(TMU2
, TMU2_TUNI
, TMU2_TICPI
),
542 INTC_GROUP(RTC
, RTC_ATI
, RTC_PRI
, RTC_CUI
),
543 INTC_GROUP(SCI1
, SCI1_ERI
, SCI1_RXI
, SCI1_TXI
, SCI1_TEI
),
544 INTC_GROUP(SCIF
, SCIF_ERI
, SCIF_RXI
, SCIF_BRI
, SCIF_TXI
),
545 INTC_GROUP(REF
, REF_RCMI
, REF_ROVI
),
548 static struct intc_prio_reg prio_registers
[] = {
549 { 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0
, TMU1
, TMU2
, RTC
} },
550 { 0xffd00008, 0, 16, 4, /* IPRB */ { WDT
, REF
, SCI1
, 0 } },
551 { 0xffd0000c, 0, 16, 4, /* IPRC */ { GPIOI
, DMAC
, SCIF
, HUDI
} },
552 { 0xffd00010, 0, 16, 4, /* IPRD */ { IRL0
, IRL1
, IRL2
, IRL3
} },
553 { 0xfe080000, 0, 32, 4, /* INTPRI00 */ { 0, 0, 0, 0,
555 PCIC1
, PCIC0_PCISERR
} },
558 /* SH7750, SH7750S, SH7751 and SH7091 all have 4-channel DMA controllers */
560 static struct intc_vect vectors_dma4
[] = {
561 INTC_VECT(DMAC_DMTE0
, 0x640), INTC_VECT(DMAC_DMTE1
, 0x660),
562 INTC_VECT(DMAC_DMTE2
, 0x680), INTC_VECT(DMAC_DMTE3
, 0x6a0),
563 INTC_VECT(DMAC_DMAE
, 0x6c0),
566 static struct intc_group groups_dma4
[] = {
567 INTC_GROUP(DMAC
, DMAC_DMTE0
, DMAC_DMTE1
, DMAC_DMTE2
,
568 DMAC_DMTE3
, DMAC_DMAE
),
571 /* SH7750R and SH7751R both have 8-channel DMA controllers */
573 static struct intc_vect vectors_dma8
[] = {
574 INTC_VECT(DMAC_DMTE0
, 0x640), INTC_VECT(DMAC_DMTE1
, 0x660),
575 INTC_VECT(DMAC_DMTE2
, 0x680), INTC_VECT(DMAC_DMTE3
, 0x6a0),
576 INTC_VECT(DMAC_DMTE4
, 0x780), INTC_VECT(DMAC_DMTE5
, 0x7a0),
577 INTC_VECT(DMAC_DMTE6
, 0x7c0), INTC_VECT(DMAC_DMTE7
, 0x7e0),
578 INTC_VECT(DMAC_DMAE
, 0x6c0),
581 static struct intc_group groups_dma8
[] = {
582 INTC_GROUP(DMAC
, DMAC_DMTE0
, DMAC_DMTE1
, DMAC_DMTE2
,
583 DMAC_DMTE3
, DMAC_DMTE4
, DMAC_DMTE5
,
584 DMAC_DMTE6
, DMAC_DMTE7
, DMAC_DMAE
),
587 /* SH7750R, SH7751 and SH7751R all have two extra timer channels */
589 static struct intc_vect vectors_tmu34
[] = {
590 INTC_VECT(TMU3
, 0xb00), INTC_VECT(TMU4
, 0xb80),
593 static struct intc_mask_reg mask_registers
[] = {
594 { 0xfe080040, 0xfe080060, 32, /* INTMSK00 / INTMSKCLR00 */
595 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
596 0, 0, 0, 0, 0, 0, TMU4
, TMU3
,
597 PCIC1_PCIERR
, PCIC1_PCIPWDWN
, PCIC1_PCIPWON
,
598 PCIC1_PCIDMA0
, PCIC1_PCIDMA1
, PCIC1_PCIDMA2
,
599 PCIC1_PCIDMA3
, PCIC0_PCISERR
} },
602 /* SH7750S, SH7750R, SH7751 and SH7751R all have IRLM priority registers */
604 static struct intc_vect vectors_irlm
[] = {
605 INTC_VECT(IRL0
, 0x240), INTC_VECT(IRL1
, 0x2a0),
606 INTC_VECT(IRL2
, 0x300), INTC_VECT(IRL3
, 0x360),
609 /* SH7751 and SH7751R both have PCI */
611 static struct intc_vect vectors_pci
[] = {
612 INTC_VECT(PCIC0_PCISERR
, 0xa00), INTC_VECT(PCIC1_PCIERR
, 0xae0),
613 INTC_VECT(PCIC1_PCIPWDWN
, 0xac0), INTC_VECT(PCIC1_PCIPWON
, 0xaa0),
614 INTC_VECT(PCIC1_PCIDMA0
, 0xa80), INTC_VECT(PCIC1_PCIDMA1
, 0xa60),
615 INTC_VECT(PCIC1_PCIDMA2
, 0xa40), INTC_VECT(PCIC1_PCIDMA3
, 0xa20),
618 static struct intc_group groups_pci
[] = {
619 INTC_GROUP(PCIC1
, PCIC1_PCIERR
, PCIC1_PCIPWDWN
, PCIC1_PCIPWON
,
620 PCIC1_PCIDMA0
, PCIC1_PCIDMA1
, PCIC1_PCIDMA2
, PCIC1_PCIDMA3
),
623 static struct intc_vect vectors_irl
[] = {
624 INTC_VECT(IRL_0
, 0x200),
625 INTC_VECT(IRL_1
, 0x220),
626 INTC_VECT(IRL_2
, 0x240),
627 INTC_VECT(IRL_3
, 0x260),
628 INTC_VECT(IRL_4
, 0x280),
629 INTC_VECT(IRL_5
, 0x2a0),
630 INTC_VECT(IRL_6
, 0x2c0),
631 INTC_VECT(IRL_7
, 0x2e0),
632 INTC_VECT(IRL_8
, 0x300),
633 INTC_VECT(IRL_9
, 0x320),
634 INTC_VECT(IRL_A
, 0x340),
635 INTC_VECT(IRL_B
, 0x360),
636 INTC_VECT(IRL_C
, 0x380),
637 INTC_VECT(IRL_D
, 0x3a0),
638 INTC_VECT(IRL_E
, 0x3c0),
641 static struct intc_group groups_irl
[] = {
642 INTC_GROUP(IRL
, IRL_0
, IRL_1
, IRL_2
, IRL_3
, IRL_4
, IRL_5
, IRL_6
,
643 IRL_7
, IRL_8
, IRL_9
, IRL_A
, IRL_B
, IRL_C
, IRL_D
, IRL_E
),
646 /**********************************************************************
647 Memory mapped cache and TLB
648 **********************************************************************/
650 #define MM_REGION_MASK 0x07000000
651 #define MM_ICACHE_ADDR (0)
652 #define MM_ICACHE_DATA (1)
653 #define MM_ITLB_ADDR (2)
654 #define MM_ITLB_DATA (3)
655 #define MM_OCACHE_ADDR (4)
656 #define MM_OCACHE_DATA (5)
657 #define MM_UTLB_ADDR (6)
658 #define MM_UTLB_DATA (7)
659 #define MM_REGION_TYPE(addr) ((addr & MM_REGION_MASK) >> 24)
661 static uint64_t invalid_read(void *opaque
, hwaddr addr
)
668 static uint64_t sh7750_mmct_read(void *opaque
, hwaddr addr
,
671 SH7750State
*s
= opaque
;
675 return invalid_read(opaque
, addr
);
678 switch (MM_REGION_TYPE(addr
)) {
684 ret
= cpu_sh4_read_mmaped_itlb_addr(&s
->cpu
->env
, addr
);
687 ret
= cpu_sh4_read_mmaped_itlb_data(&s
->cpu
->env
, addr
);
694 ret
= cpu_sh4_read_mmaped_utlb_addr(&s
->cpu
->env
, addr
);
697 ret
= cpu_sh4_read_mmaped_utlb_data(&s
->cpu
->env
, addr
);
706 static void invalid_write(void *opaque
, hwaddr addr
,
712 static void sh7750_mmct_write(void *opaque
, hwaddr addr
,
713 uint64_t mem_value
, unsigned size
)
715 SH7750State
*s
= opaque
;
718 invalid_write(opaque
, addr
, mem_value
);
721 switch (MM_REGION_TYPE(addr
)) {
727 cpu_sh4_write_mmaped_itlb_addr(&s
->cpu
->env
, addr
, mem_value
);
730 cpu_sh4_write_mmaped_itlb_data(&s
->cpu
->env
, addr
, mem_value
);
738 cpu_sh4_write_mmaped_utlb_addr(&s
->cpu
->env
, addr
, mem_value
);
741 cpu_sh4_write_mmaped_utlb_data(&s
->cpu
->env
, addr
, mem_value
);
749 static const MemoryRegionOps sh7750_mmct_ops
= {
750 .read
= sh7750_mmct_read
,
751 .write
= sh7750_mmct_write
,
752 .endianness
= DEVICE_NATIVE_ENDIAN
,
755 SH7750State
*sh7750_init(SuperHCPU
*cpu
, MemoryRegion
*sysmem
)
759 s
= g_malloc0(sizeof(SH7750State
));
761 s
->periph_freq
= 60000000; /* 60MHz */
762 memory_region_init_io(&s
->iomem
, NULL
, &sh7750_mem_ops
, s
,
763 "memory", 0x1fc01000);
765 memory_region_init_alias(&s
->iomem_1f0
, NULL
, "memory-1f0",
766 &s
->iomem
, 0x1f000000, 0x1000);
767 memory_region_add_subregion(sysmem
, 0x1f000000, &s
->iomem_1f0
);
769 memory_region_init_alias(&s
->iomem_ff0
, NULL
, "memory-ff0",
770 &s
->iomem
, 0x1f000000, 0x1000);
771 memory_region_add_subregion(sysmem
, 0xff000000, &s
->iomem_ff0
);
773 memory_region_init_alias(&s
->iomem_1f8
, NULL
, "memory-1f8",
774 &s
->iomem
, 0x1f800000, 0x1000);
775 memory_region_add_subregion(sysmem
, 0x1f800000, &s
->iomem_1f8
);
777 memory_region_init_alias(&s
->iomem_ff8
, NULL
, "memory-ff8",
778 &s
->iomem
, 0x1f800000, 0x1000);
779 memory_region_add_subregion(sysmem
, 0xff800000, &s
->iomem_ff8
);
781 memory_region_init_alias(&s
->iomem_1fc
, NULL
, "memory-1fc",
782 &s
->iomem
, 0x1fc00000, 0x1000);
783 memory_region_add_subregion(sysmem
, 0x1fc00000, &s
->iomem_1fc
);
785 memory_region_init_alias(&s
->iomem_ffc
, NULL
, "memory-ffc",
786 &s
->iomem
, 0x1fc00000, 0x1000);
787 memory_region_add_subregion(sysmem
, 0xffc00000, &s
->iomem_ffc
);
789 memory_region_init_io(&s
->mmct_iomem
, NULL
, &sh7750_mmct_ops
, s
,
790 "cache-and-tlb", 0x08000000);
791 memory_region_add_subregion(sysmem
, 0xf0000000, &s
->mmct_iomem
);
793 sh_intc_init(sysmem
, &s
->intc
, NR_SOURCES
,
794 _INTC_ARRAY(mask_registers
),
795 _INTC_ARRAY(prio_registers
));
797 sh_intc_register_sources(&s
->intc
,
798 _INTC_ARRAY(vectors
),
799 _INTC_ARRAY(groups
));
801 cpu
->env
.intc_handle
= &s
->intc
;
803 sh_serial_init(sysmem
, 0x1fe00000,
804 0, s
->periph_freq
, serial_hd(0),
805 s
->intc
.irqs
[SCI1_ERI
],
806 s
->intc
.irqs
[SCI1_RXI
],
807 s
->intc
.irqs
[SCI1_TXI
],
808 s
->intc
.irqs
[SCI1_TEI
],
810 sh_serial_init(sysmem
, 0x1fe80000,
812 s
->periph_freq
, serial_hd(1),
813 s
->intc
.irqs
[SCIF_ERI
],
814 s
->intc
.irqs
[SCIF_RXI
],
815 s
->intc
.irqs
[SCIF_TXI
],
817 s
->intc
.irqs
[SCIF_BRI
]);
819 tmu012_init(sysmem
, 0x1fd80000,
820 TMU012_FEAT_TOCR
| TMU012_FEAT_3CHAN
| TMU012_FEAT_EXTCLK
,
824 s
->intc
.irqs
[TMU2_TUNI
],
825 s
->intc
.irqs
[TMU2_TICPI
]);
827 if (cpu
->env
.id
& (SH_CPU_SH7750
| SH_CPU_SH7750S
| SH_CPU_SH7751
)) {
828 sh_intc_register_sources(&s
->intc
,
829 _INTC_ARRAY(vectors_dma4
),
830 _INTC_ARRAY(groups_dma4
));
833 if (cpu
->env
.id
& (SH_CPU_SH7750R
| SH_CPU_SH7751R
)) {
834 sh_intc_register_sources(&s
->intc
,
835 _INTC_ARRAY(vectors_dma8
),
836 _INTC_ARRAY(groups_dma8
));
839 if (cpu
->env
.id
& (SH_CPU_SH7750R
| SH_CPU_SH7751
| SH_CPU_SH7751R
)) {
840 sh_intc_register_sources(&s
->intc
,
841 _INTC_ARRAY(vectors_tmu34
),
843 tmu012_init(sysmem
, 0x1e100000, 0, s
->periph_freq
,
849 if (cpu
->env
.id
& (SH_CPU_SH7751_ALL
)) {
850 sh_intc_register_sources(&s
->intc
,
851 _INTC_ARRAY(vectors_pci
),
852 _INTC_ARRAY(groups_pci
));
855 if (cpu
->env
.id
& (SH_CPU_SH7750S
| SH_CPU_SH7750R
| SH_CPU_SH7751_ALL
)) {
856 sh_intc_register_sources(&s
->intc
,
857 _INTC_ARRAY(vectors_irlm
),
861 sh_intc_register_sources(&s
->intc
,
862 _INTC_ARRAY(vectors_irl
),
863 _INTC_ARRAY(groups_irl
));
867 qemu_irq
sh7750_irl(SH7750State
*s
)
869 sh_intc_toggle_source(sh_intc_source(&s
->intc
, IRL
), 1, 0); /* enable */
870 return qemu_allocate_irq(sh_intc_set_irl
, sh_intc_source(&s
->intc
, IRL
), 0);