rx62n.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. /*
  2. * RX62N Microcontroller
  3. *
  4. * Datasheet: RX62N Group, RX621 Group User's Manual: Hardware
  5. * (Rev.1.40 R01UH0033EJ0140)
  6. *
  7. * Copyright (c) 2019 Yoshinori Sato
  8. * Copyright (c) 2020 Philippe Mathieu-Daudé
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms and conditions of the GNU General Public License,
  12. * version 2 or later, as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope it will be useful, but WITHOUT
  15. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  16. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  17. * more details.
  18. *
  19. * You should have received a copy of the GNU General Public License along with
  20. * this program. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. #include "qemu/osdep.h"
  23. #include "qapi/error.h"
  24. #include "qemu/error-report.h"
  25. #include "hw/hw.h"
  26. #include "hw/rx/rx62n.h"
  27. #include "hw/loader.h"
  28. #include "hw/sysbus.h"
  29. #include "hw/qdev-properties.h"
  30. #include "sysemu/sysemu.h"
  31. #include "sysemu/qtest.h"
  32. #include "cpu.h"
  33. /*
  34. * RX62N Internal Memory
  35. */
  36. #define RX62N_IRAM_BASE 0x00000000
  37. #define RX62N_DFLASH_BASE 0x00100000
  38. #define RX62N_CFLASH_BASE 0xfff80000
  39. /*
  40. * RX62N Peripheral Address
  41. * See users manual section 5
  42. */
  43. #define RX62N_ICU_BASE 0x00087000
  44. #define RX62N_TMR_BASE 0x00088200
  45. #define RX62N_CMT_BASE 0x00088000
  46. #define RX62N_SCI_BASE 0x00088240
  47. /*
  48. * RX62N Peripheral IRQ
  49. * See users manual section 11
  50. */
  51. #define RX62N_TMR_IRQ 174
  52. #define RX62N_CMT_IRQ 28
  53. #define RX62N_SCI_IRQ 214
  54. #define RX62N_XTAL_MIN_HZ (8 * 1000 * 1000)
  55. #define RX62N_XTAL_MAX_HZ (14 * 1000 * 1000)
  56. #define RX62N_PCLK_MAX_HZ (50 * 1000 * 1000)
  57. typedef struct RX62NClass {
  58. /*< private >*/
  59. DeviceClass parent_class;
  60. /*< public >*/
  61. const char *name;
  62. uint64_t ram_size;
  63. uint64_t rom_flash_size;
  64. uint64_t data_flash_size;
  65. } RX62NClass;
  66. #define RX62N_MCU_CLASS(klass) \
  67. OBJECT_CLASS_CHECK(RX62NClass, (klass), TYPE_RX62N_MCU)
  68. #define RX62N_MCU_GET_CLASS(obj) \
  69. OBJECT_GET_CLASS(RX62NClass, (obj), TYPE_RX62N_MCU)
  70. /*
  71. * IRQ -> IPR mapping table
  72. * 0x00 - 0x91: IPR no (IPR00 to IPR91)
  73. * 0xff: IPR not assigned
  74. * See "11.3.1 Interrupt Vector Table" in hardware manual.
  75. */
  76. static const uint8_t ipr_table[NR_IRQS] = {
  77. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  78. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 15 */
  79. 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0xff, 0x02,
  80. 0xff, 0xff, 0xff, 0x03, 0x04, 0x05, 0x06, 0x07, /* 31 */
  81. 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
  82. 0x10, 0x11, 0x12, 0x13, 0x14, 0x14, 0x14, 0x14, /* 47 */
  83. 0x15, 0x15, 0x15, 0x15, 0xff, 0xff, 0xff, 0xff,
  84. 0x18, 0x18, 0x18, 0x18, 0x18, 0x1d, 0x1e, 0x1f, /* 63 */
  85. 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
  86. 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, /* 79 */
  87. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  88. 0xff, 0xff, 0x3a, 0x3b, 0x3c, 0xff, 0xff, 0xff, /* 95 */
  89. 0x40, 0xff, 0x44, 0x45, 0xff, 0xff, 0x48, 0xff,
  90. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 111 */
  91. 0xff, 0xff, 0x51, 0x51, 0x51, 0x51, 0x52, 0x52,
  92. 0x52, 0x53, 0x53, 0x54, 0x54, 0x55, 0x55, 0x56, /* 127 */
  93. 0x56, 0x57, 0x57, 0x57, 0x57, 0x58, 0x59, 0x59,
  94. 0x59, 0x59, 0x5a, 0x5b, 0x5b, 0x5b, 0x5c, 0x5c, /* 143 */
  95. 0x5c, 0x5c, 0x5d, 0x5d, 0x5d, 0x5e, 0x5e, 0x5f,
  96. 0x5f, 0x60, 0x60, 0x61, 0x61, 0x62, 0x62, 0x62, /* 159 */
  97. 0x62, 0x63, 0x64, 0x64, 0x64, 0x64, 0x65, 0x66,
  98. 0x66, 0x66, 0x67, 0x67, 0x67, 0x67, 0x68, 0x68, /* 175 */
  99. 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6b,
  100. 0x6b, 0x6b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 191 */
  101. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x71,
  102. 0x72, 0x73, 0x74, 0x75, 0xff, 0xff, 0xff, 0xff, /* 207 */
  103. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x80,
  104. 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, /* 223 */
  105. 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0xff, 0xff,
  106. 0xff, 0xff, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, /* 239 */
  107. 0x86, 0x86, 0xff, 0xff, 0xff, 0xff, 0x88, 0x89,
  108. 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, /* 255 */
  109. };
  110. /*
  111. * Level triggerd IRQ list
  112. * Not listed IRQ is Edge trigger.
  113. * See "11.3.1 Interrupt Vector Table" in hardware manual.
  114. */
  115. static const uint8_t levelirq[] = {
  116. 16, 21, 32, 44, 47, 48, 51, 64, 65, 66,
  117. 67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
  118. 77, 78, 79, 90, 91, 170, 171, 172, 173, 214,
  119. 217, 218, 221, 222, 225, 226, 229, 234, 237, 238,
  120. 241, 246, 249, 250, 253,
  121. };
  122. static void register_icu(RX62NState *s)
  123. {
  124. int i;
  125. SysBusDevice *icu;
  126. object_initialize_child(OBJECT(s), "icu", &s->icu, TYPE_RX_ICU);
  127. icu = SYS_BUS_DEVICE(&s->icu);
  128. qdev_prop_set_uint32(DEVICE(icu), "len-ipr-map", NR_IRQS);
  129. for (i = 0; i < NR_IRQS; i++) {
  130. char propname[32];
  131. snprintf(propname, sizeof(propname), "ipr-map[%d]", i);
  132. qdev_prop_set_uint32(DEVICE(icu), propname, ipr_table[i]);
  133. }
  134. qdev_prop_set_uint32(DEVICE(icu), "len-trigger-level",
  135. ARRAY_SIZE(levelirq));
  136. for (i = 0; i < ARRAY_SIZE(levelirq); i++) {
  137. char propname[32];
  138. snprintf(propname, sizeof(propname), "trigger-level[%d]", i);
  139. qdev_prop_set_uint32(DEVICE(icu), propname, levelirq[i]);
  140. }
  141. for (i = 0; i < NR_IRQS; i++) {
  142. s->irq[i] = qdev_get_gpio_in(DEVICE(icu), i);
  143. }
  144. sysbus_realize(icu, &error_abort);
  145. sysbus_connect_irq(icu, 0, qdev_get_gpio_in(DEVICE(&s->cpu), RX_CPU_IRQ));
  146. sysbus_connect_irq(icu, 1, qdev_get_gpio_in(DEVICE(&s->cpu), RX_CPU_FIR));
  147. sysbus_connect_irq(icu, 2, s->irq[SWI]);
  148. sysbus_mmio_map(SYS_BUS_DEVICE(icu), 0, RX62N_ICU_BASE);
  149. }
  150. static void register_tmr(RX62NState *s, int unit)
  151. {
  152. SysBusDevice *tmr;
  153. int i, irqbase;
  154. object_initialize_child(OBJECT(s), "tmr[*]",
  155. &s->tmr[unit], TYPE_RENESAS_TMR);
  156. tmr = SYS_BUS_DEVICE(&s->tmr[unit]);
  157. qdev_prop_set_uint64(DEVICE(tmr), "input-freq", s->pclk_freq_hz);
  158. sysbus_realize(tmr, &error_abort);
  159. irqbase = RX62N_TMR_IRQ + TMR_NR_IRQ * unit;
  160. for (i = 0; i < TMR_NR_IRQ; i++) {
  161. sysbus_connect_irq(tmr, i, s->irq[irqbase + i]);
  162. }
  163. sysbus_mmio_map(tmr, 0, RX62N_TMR_BASE + unit * 0x10);
  164. }
  165. static void register_cmt(RX62NState *s, int unit)
  166. {
  167. SysBusDevice *cmt;
  168. int i, irqbase;
  169. object_initialize_child(OBJECT(s), "cmt[*]",
  170. &s->cmt[unit], TYPE_RENESAS_CMT);
  171. cmt = SYS_BUS_DEVICE(&s->cmt[unit]);
  172. qdev_prop_set_uint64(DEVICE(cmt), "input-freq", s->pclk_freq_hz);
  173. sysbus_realize(cmt, &error_abort);
  174. irqbase = RX62N_CMT_IRQ + CMT_NR_IRQ * unit;
  175. for (i = 0; i < CMT_NR_IRQ; i++) {
  176. sysbus_connect_irq(cmt, i, s->irq[irqbase + i]);
  177. }
  178. sysbus_mmio_map(cmt, 0, RX62N_CMT_BASE + unit * 0x10);
  179. }
  180. static void register_sci(RX62NState *s, int unit)
  181. {
  182. SysBusDevice *sci;
  183. int i, irqbase;
  184. object_initialize_child(OBJECT(s), "sci[*]",
  185. &s->sci[unit], TYPE_RENESAS_SCI);
  186. sci = SYS_BUS_DEVICE(&s->sci[unit]);
  187. qdev_prop_set_chr(DEVICE(sci), "chardev", serial_hd(unit));
  188. qdev_prop_set_uint64(DEVICE(sci), "input-freq", s->pclk_freq_hz);
  189. sysbus_realize(sci, &error_abort);
  190. irqbase = RX62N_SCI_IRQ + SCI_NR_IRQ * unit;
  191. for (i = 0; i < SCI_NR_IRQ; i++) {
  192. sysbus_connect_irq(sci, i, s->irq[irqbase + i]);
  193. }
  194. sysbus_mmio_map(sci, 0, RX62N_SCI_BASE + unit * 0x08);
  195. }
  196. static void rx62n_realize(DeviceState *dev, Error **errp)
  197. {
  198. RX62NState *s = RX62N_MCU(dev);
  199. RX62NClass *rxc = RX62N_MCU_GET_CLASS(dev);
  200. if (s->xtal_freq_hz == 0) {
  201. error_setg(errp, "\"xtal-frequency-hz\" property must be provided.");
  202. return;
  203. }
  204. /* XTAL range: 8-14 MHz */
  205. if (s->xtal_freq_hz < RX62N_XTAL_MIN_HZ
  206. || s->xtal_freq_hz > RX62N_XTAL_MAX_HZ) {
  207. error_setg(errp, "\"xtal-frequency-hz\" property in incorrect range.");
  208. return;
  209. }
  210. /* Use a 4x fixed multiplier */
  211. s->pclk_freq_hz = 4 * s->xtal_freq_hz;
  212. /* PCLK range: 8-50 MHz */
  213. assert(s->pclk_freq_hz <= RX62N_PCLK_MAX_HZ);
  214. memory_region_init_ram(&s->iram, OBJECT(dev), "iram",
  215. rxc->ram_size, &error_abort);
  216. memory_region_add_subregion(s->sysmem, RX62N_IRAM_BASE, &s->iram);
  217. memory_region_init_rom(&s->d_flash, OBJECT(dev), "flash-data",
  218. rxc->data_flash_size, &error_abort);
  219. memory_region_add_subregion(s->sysmem, RX62N_DFLASH_BASE, &s->d_flash);
  220. memory_region_init_rom(&s->c_flash, OBJECT(dev), "flash-code",
  221. rxc->rom_flash_size, &error_abort);
  222. memory_region_add_subregion(s->sysmem, RX62N_CFLASH_BASE, &s->c_flash);
  223. if (!s->kernel) {
  224. if (bios_name) {
  225. rom_add_file_fixed(bios_name, RX62N_CFLASH_BASE, 0);
  226. } else if (!qtest_enabled()) {
  227. error_report("No bios or kernel specified");
  228. exit(1);
  229. }
  230. }
  231. /* Initialize CPU */
  232. object_initialize_child(OBJECT(s), "cpu", &s->cpu, TYPE_RX62N_CPU);
  233. qdev_realize(DEVICE(&s->cpu), NULL, &error_abort);
  234. register_icu(s);
  235. s->cpu.env.ack = qdev_get_gpio_in_named(DEVICE(&s->icu), "ack", 0);
  236. register_tmr(s, 0);
  237. register_tmr(s, 1);
  238. register_cmt(s, 0);
  239. register_cmt(s, 1);
  240. register_sci(s, 0);
  241. }
  242. static Property rx62n_properties[] = {
  243. DEFINE_PROP_LINK("main-bus", RX62NState, sysmem, TYPE_MEMORY_REGION,
  244. MemoryRegion *),
  245. DEFINE_PROP_BOOL("load-kernel", RX62NState, kernel, false),
  246. DEFINE_PROP_UINT32("xtal-frequency-hz", RX62NState, xtal_freq_hz, 0),
  247. DEFINE_PROP_END_OF_LIST(),
  248. };
  249. static void rx62n_class_init(ObjectClass *klass, void *data)
  250. {
  251. DeviceClass *dc = DEVICE_CLASS(klass);
  252. dc->realize = rx62n_realize;
  253. device_class_set_props(dc, rx62n_properties);
  254. }
  255. static void r5f562n7_class_init(ObjectClass *oc, void *data)
  256. {
  257. RX62NClass *rxc = RX62N_MCU_CLASS(oc);
  258. rxc->ram_size = 64 * KiB;
  259. rxc->rom_flash_size = 384 * KiB;
  260. rxc->data_flash_size = 32 * KiB;
  261. };
  262. static void r5f562n8_class_init(ObjectClass *oc, void *data)
  263. {
  264. RX62NClass *rxc = RX62N_MCU_CLASS(oc);
  265. rxc->ram_size = 96 * KiB;
  266. rxc->rom_flash_size = 512 * KiB;
  267. rxc->data_flash_size = 32 * KiB;
  268. };
  269. static const TypeInfo rx62n_types[] = {
  270. {
  271. .name = TYPE_R5F562N7_MCU,
  272. .parent = TYPE_RX62N_MCU,
  273. .class_init = r5f562n7_class_init,
  274. }, {
  275. .name = TYPE_R5F562N8_MCU,
  276. .parent = TYPE_RX62N_MCU,
  277. .class_init = r5f562n8_class_init,
  278. }, {
  279. .name = TYPE_RX62N_MCU,
  280. .parent = TYPE_DEVICE,
  281. .instance_size = sizeof(RX62NState),
  282. .class_size = sizeof(RX62NClass),
  283. .class_init = rx62n_class_init,
  284. .abstract = true,
  285. }
  286. };
  287. DEFINE_TYPES(rx62n_types)