10m50_devboard.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. * Altera 10M50 Nios2 GHRD
  3. *
  4. * Copyright (c) 2016 Marek Vasut <marek.vasut@gmail.com>
  5. *
  6. * Based on LabX device code
  7. *
  8. * Copyright (c) 2012 Chris Wulff <crwulff@gmail.com>
  9. *
  10. * This library is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * This library is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with this library; if not, see
  22. * <http://www.gnu.org/licenses/lgpl-2.1.html>
  23. */
  24. #include "qemu/osdep.h"
  25. #include "qapi/error.h"
  26. #include "cpu.h"
  27. #include "hw/sysbus.h"
  28. #include "hw/char/serial.h"
  29. #include "hw/qdev-properties.h"
  30. #include "sysemu/sysemu.h"
  31. #include "hw/boards.h"
  32. #include "exec/memory.h"
  33. #include "exec/address-spaces.h"
  34. #include "qemu/config-file.h"
  35. #include "boot.h"
  36. #define BINARY_DEVICE_TREE_FILE "10m50-devboard.dtb"
  37. static void nios2_10m50_ghrd_init(MachineState *machine)
  38. {
  39. Nios2CPU *cpu;
  40. DeviceState *dev;
  41. MemoryRegion *address_space_mem = get_system_memory();
  42. MemoryRegion *phys_tcm = g_new(MemoryRegion, 1);
  43. MemoryRegion *phys_tcm_alias = g_new(MemoryRegion, 1);
  44. MemoryRegion *phys_ram = g_new(MemoryRegion, 1);
  45. MemoryRegion *phys_ram_alias = g_new(MemoryRegion, 1);
  46. ram_addr_t tcm_base = 0x0;
  47. ram_addr_t tcm_size = 0x1000; /* 1 kiB, but QEMU limit is 4 kiB */
  48. ram_addr_t ram_base = 0x08000000;
  49. ram_addr_t ram_size = 0x08000000;
  50. qemu_irq *cpu_irq, irq[32];
  51. int i;
  52. /* Physical TCM (tb_ram_1k) with alias at 0xc0000000 */
  53. memory_region_init_ram(phys_tcm, NULL, "nios2.tcm", tcm_size,
  54. &error_abort);
  55. memory_region_init_alias(phys_tcm_alias, NULL, "nios2.tcm.alias",
  56. phys_tcm, 0, tcm_size);
  57. memory_region_add_subregion(address_space_mem, tcm_base, phys_tcm);
  58. memory_region_add_subregion(address_space_mem, 0xc0000000 + tcm_base,
  59. phys_tcm_alias);
  60. /* Physical DRAM with alias at 0xc0000000 */
  61. memory_region_init_ram(phys_ram, NULL, "nios2.ram", ram_size,
  62. &error_abort);
  63. memory_region_init_alias(phys_ram_alias, NULL, "nios2.ram.alias",
  64. phys_ram, 0, ram_size);
  65. memory_region_add_subregion(address_space_mem, ram_base, phys_ram);
  66. memory_region_add_subregion(address_space_mem, 0xc0000000 + ram_base,
  67. phys_ram_alias);
  68. /* Create CPU -- FIXME */
  69. cpu = NIOS2_CPU(cpu_create(TYPE_NIOS2_CPU));
  70. /* Register: CPU interrupt controller (PIC) */
  71. cpu_irq = nios2_cpu_pic_init(cpu);
  72. /* Register: Internal Interrupt Controller (IIC) */
  73. dev = qdev_new("altera,iic");
  74. object_property_add_const_link(OBJECT(dev), "cpu", OBJECT(cpu));
  75. sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
  76. sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0, cpu_irq[0]);
  77. for (i = 0; i < 32; i++) {
  78. irq[i] = qdev_get_gpio_in(dev, i);
  79. }
  80. /* Register: Altera 16550 UART */
  81. serial_mm_init(address_space_mem, 0xf8001600, 2, irq[1], 115200,
  82. serial_hd(0), DEVICE_NATIVE_ENDIAN);
  83. /* Register: Timer sys_clk_timer */
  84. dev = qdev_new("ALTR.timer");
  85. qdev_prop_set_uint32(dev, "clock-frequency", 75 * 1000000);
  86. sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
  87. sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, 0xf8001440);
  88. sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0, irq[0]);
  89. /* Register: Timer sys_clk_timer_1 */
  90. dev = qdev_new("ALTR.timer");
  91. qdev_prop_set_uint32(dev, "clock-frequency", 75 * 1000000);
  92. sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
  93. sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, 0xe0000880);
  94. sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0, irq[5]);
  95. /* Configure new exception vectors and reset CPU for it to take effect. */
  96. cpu->reset_addr = 0xd4000000;
  97. cpu->exception_addr = 0xc8000120;
  98. cpu->fast_tlb_miss_addr = 0xc0000100;
  99. nios2_load_kernel(cpu, ram_base, ram_size, machine->initrd_filename,
  100. BINARY_DEVICE_TREE_FILE, NULL);
  101. }
  102. static void nios2_10m50_ghrd_machine_init(struct MachineClass *mc)
  103. {
  104. mc->desc = "Altera 10M50 GHRD Nios II design";
  105. mc->init = nios2_10m50_ghrd_init;
  106. mc->is_default = true;
  107. }
  108. DEFINE_MACHINE("10m50-ghrd", nios2_10m50_ghrd_machine_init);