hw/rx: Register R5F562N7 and R5F562N8 MCUs
[qemu/ar7.git] / include / hw / rx / rx62n.h
blob1d3e6a5cadeb03162d009d633bd1bb9e7d4ea65b
1 /*
2 * RX62N MCU Object
4 * Datasheet: RX62N Group, RX621 Group User's Manual: Hardware
5 * (Rev.1.40 R01UH0033EJ0140)
7 * Copyright (c) 2019 Yoshinori Sato
9 * SPDX-License-Identifier: GPL-2.0-or-later
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms and conditions of the GNU General Public License,
13 * version 2 or later, as published by the Free Software Foundation.
15 * This program is distributed in the hope it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * more details.
20 * You should have received a copy of the GNU General Public License along with
21 * this program. If not, see <http://www.gnu.org/licenses/>.
24 #ifndef HW_RX_RX62N_MCU_H
25 #define HW_RX_RX62N_MCU_H
27 #include "target/rx/cpu.h"
28 #include "hw/intc/rx_icu.h"
29 #include "hw/timer/renesas_tmr.h"
30 #include "hw/timer/renesas_cmt.h"
31 #include "hw/char/renesas_sci.h"
32 #include "qemu/units.h"
34 #define TYPE_RX62N_MCU "rx62n-mcu"
35 #define RX62N_MCU(obj) OBJECT_CHECK(RX62NState, (obj), TYPE_RX62N_MCU)
37 #define TYPE_R5F562N7_MCU "r5f562n7-mcu"
38 #define TYPE_R5F562N8_MCU "r5f562n8-mcu"
40 #define RX62N_NR_TMR 2
41 #define RX62N_NR_CMT 2
42 #define RX62N_NR_SCI 6
44 typedef struct RX62NState {
45 /*< private >*/
46 DeviceState parent_obj;
47 /*< public >*/
49 RXCPU cpu;
50 RXICUState icu;
51 RTMRState tmr[RX62N_NR_TMR];
52 RCMTState cmt[RX62N_NR_CMT];
53 RSCIState sci[RX62N_NR_SCI];
55 MemoryRegion *sysmem;
56 bool kernel;
58 MemoryRegion iram;
59 MemoryRegion iomem1;
60 MemoryRegion d_flash;
61 MemoryRegion iomem2;
62 MemoryRegion iomem3;
63 MemoryRegion c_flash;
64 qemu_irq irq[NR_IRQS];
66 /* Input Clock (XTAL) frequency */
67 uint32_t xtal_freq_hz;
68 /* Peripheral Module Clock frequency */
69 uint32_t pclk_freq_hz;
70 } RX62NState;
72 #endif