imx25_pdk.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. * Copyright (c) 2013 Jean-Christophe Dubois <jcd@tribudubois.net>
  3. *
  4. * PDK Board System emulation.
  5. *
  6. * Based on hw/arm/kzm.c
  7. *
  8. * Copyright (c) 2008 OKL and 2011 NICTA
  9. * Written by Hans at OK-Labs
  10. * Updated by Peter Chubb.
  11. *
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License as published by the
  14. * Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful, but WITHOUT
  18. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  19. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  20. * for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License along
  23. * with this program; if not, see <http://www.gnu.org/licenses/>.
  24. */
  25. #include "qemu/osdep.h"
  26. #include "qapi/error.h"
  27. #include "hw/qdev-properties.h"
  28. #include "hw/arm/fsl-imx25.h"
  29. #include "hw/arm/boot.h"
  30. #include "hw/boards.h"
  31. #include "qemu/error-report.h"
  32. #include "system/qtest.h"
  33. #include "hw/i2c/i2c.h"
  34. #include "qemu/cutils.h"
  35. /* Memory map for PDK Emulation Baseboard:
  36. * 0x00000000-0x7fffffff See i.MX25 SOC fr support
  37. * 0x80000000-0x87ffffff RAM + Alias EMULATED
  38. * 0x90000000-0x9fffffff RAM + Alias EMULATED
  39. * 0xa0000000-0xa7ffffff Flash IGNORED
  40. * 0xa8000000-0xafffffff Flash IGNORED
  41. * 0xb0000000-0xb1ffffff SRAM IGNORED
  42. * 0xb2000000-0xb3ffffff SRAM IGNORED
  43. * 0xb4000000-0xb5ffffff CS4 IGNORED
  44. * 0xb6000000-0xb8000fff Reserved IGNORED
  45. * 0xb8001000-0xb8001fff SDRAM CTRL reg IGNORED
  46. * 0xb8002000-0xb8002fff WEIM CTRL reg IGNORED
  47. * 0xb8003000-0xb8003fff M3IF CTRL reg IGNORED
  48. * 0xb8004000-0xb8004fff EMI CTRL reg IGNORED
  49. * 0xb8005000-0xbaffffff Reserved IGNORED
  50. * 0xbb000000-0xbb000fff NAND flash area buf IGNORED
  51. * 0xbb001000-0xbb0011ff NAND flash reserved IGNORED
  52. * 0xbb001200-0xbb001dff Reserved IGNORED
  53. * 0xbb001e00-0xbb001fff NAN flash CTRL reg IGNORED
  54. * 0xbb012000-0xbfffffff Reserved IGNORED
  55. * 0xc0000000-0xffffffff Reserved IGNORED
  56. */
  57. typedef struct IMX25PDK {
  58. FslIMX25State soc;
  59. MemoryRegion ram_alias;
  60. } IMX25PDK;
  61. static struct arm_boot_info imx25_pdk_binfo;
  62. static void imx25_pdk_init(MachineState *machine)
  63. {
  64. IMX25PDK *s = g_new0(IMX25PDK, 1);
  65. unsigned int ram_size;
  66. unsigned int alias_offset;
  67. int i;
  68. object_initialize_child(OBJECT(machine), "soc", &s->soc, TYPE_FSL_IMX25);
  69. qdev_realize(DEVICE(&s->soc), NULL, &error_fatal);
  70. /* We need to initialize our memory */
  71. if (machine->ram_size > (FSL_IMX25_SDRAM0_SIZE + FSL_IMX25_SDRAM1_SIZE)) {
  72. char *sz = size_to_str(FSL_IMX25_SDRAM0_SIZE + FSL_IMX25_SDRAM1_SIZE);
  73. error_report("RAM size more than %s is not supported", sz);
  74. g_free(sz);
  75. exit(EXIT_FAILURE);
  76. }
  77. memory_region_add_subregion(get_system_memory(), FSL_IMX25_SDRAM0_ADDR,
  78. machine->ram);
  79. /* initialize the alias memory if any */
  80. for (i = 0, ram_size = machine->ram_size, alias_offset = 0;
  81. (i < 2) && ram_size; i++) {
  82. unsigned int size;
  83. static const struct {
  84. hwaddr addr;
  85. unsigned int size;
  86. } ram[2] = {
  87. { FSL_IMX25_SDRAM0_ADDR, FSL_IMX25_SDRAM0_SIZE },
  88. { FSL_IMX25_SDRAM1_ADDR, FSL_IMX25_SDRAM1_SIZE },
  89. };
  90. size = MIN(ram_size, ram[i].size);
  91. ram_size -= size;
  92. if (size < ram[i].size) {
  93. memory_region_init_alias(&s->ram_alias, NULL, "ram.alias",
  94. machine->ram,
  95. alias_offset, ram[i].size - size);
  96. memory_region_add_subregion(get_system_memory(),
  97. ram[i].addr + size, &s->ram_alias);
  98. }
  99. alias_offset += ram[i].size;
  100. }
  101. imx25_pdk_binfo.ram_size = machine->ram_size;
  102. imx25_pdk_binfo.loader_start = FSL_IMX25_SDRAM0_ADDR;
  103. imx25_pdk_binfo.board_id = 1771;
  104. for (i = 0; i < FSL_IMX25_NUM_ESDHCS; i++) {
  105. BusState *bus;
  106. DeviceState *carddev;
  107. DriveInfo *di;
  108. BlockBackend *blk;
  109. di = drive_get(IF_SD, 0, i);
  110. blk = di ? blk_by_legacy_dinfo(di) : NULL;
  111. bus = qdev_get_child_bus(DEVICE(&s->soc.esdhc[i]), "sd-bus");
  112. carddev = qdev_new(TYPE_SD_CARD);
  113. qdev_prop_set_drive_err(carddev, "drive", blk, &error_fatal);
  114. qdev_realize_and_unref(carddev, bus, &error_fatal);
  115. }
  116. /*
  117. * We test explicitly for qtest here as it is not done (yet?) in
  118. * arm_load_kernel(). Without this the "make check" command would
  119. * fail.
  120. */
  121. if (!qtest_enabled()) {
  122. arm_load_kernel(&s->soc.cpu, machine, &imx25_pdk_binfo);
  123. }
  124. }
  125. static void imx25_pdk_machine_init(MachineClass *mc)
  126. {
  127. mc->desc = "ARM i.MX25 PDK board (ARM926)";
  128. mc->init = imx25_pdk_init;
  129. mc->ignore_memory_transaction_failures = true;
  130. mc->default_ram_id = "imx25.ram";
  131. }
  132. DEFINE_MACHINE("imx25-pdk", imx25_pdk_machine_init)