2
0

palm.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /*
  2. * PalmOne's (TM) PDAs.
  3. *
  4. * Copyright (C) 2006-2007 Andrzej Zaborowski <balrog@zabor.org>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 or
  9. * (at your option) version 3 of the License.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with this program; if not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include "qemu/osdep.h"
  20. #include "qapi/error.h"
  21. #include "audio/audio.h"
  22. #include "sysemu/sysemu.h"
  23. #include "sysemu/qtest.h"
  24. #include "ui/console.h"
  25. #include "hw/arm/omap.h"
  26. #include "hw/boards.h"
  27. #include "hw/arm/boot.h"
  28. #include "hw/input/tsc2xxx.h"
  29. #include "hw/irq.h"
  30. #include "hw/loader.h"
  31. #include "exec/address-spaces.h"
  32. #include "cpu.h"
  33. #include "qemu/cutils.h"
  34. static uint64_t static_read(void *opaque, hwaddr offset, unsigned size)
  35. {
  36. uint32_t *val = (uint32_t *)opaque;
  37. uint32_t sizemask = 7 >> size;
  38. return *val >> ((offset & sizemask) << 3);
  39. }
  40. static void static_write(void *opaque, hwaddr offset, uint64_t value,
  41. unsigned size)
  42. {
  43. #ifdef SPY
  44. printf("%s: value %08lx written at " PA_FMT "\n",
  45. __func__, value, offset);
  46. #endif
  47. }
  48. static const MemoryRegionOps static_ops = {
  49. .read = static_read,
  50. .write = static_write,
  51. .valid.min_access_size = 1,
  52. .valid.max_access_size = 4,
  53. .endianness = DEVICE_NATIVE_ENDIAN,
  54. };
  55. /* Palm Tunsgten|E support */
  56. /* Shared GPIOs */
  57. #define PALMTE_USBDETECT_GPIO 0
  58. #define PALMTE_USB_OR_DC_GPIO 1
  59. #define PALMTE_TSC_GPIO 4
  60. #define PALMTE_PINTDAV_GPIO 6
  61. #define PALMTE_MMC_WP_GPIO 8
  62. #define PALMTE_MMC_POWER_GPIO 9
  63. #define PALMTE_HDQ_GPIO 11
  64. #define PALMTE_HEADPHONES_GPIO 14
  65. #define PALMTE_SPEAKER_GPIO 15
  66. /* MPU private GPIOs */
  67. #define PALMTE_DC_GPIO 2
  68. #define PALMTE_MMC_SWITCH_GPIO 4
  69. #define PALMTE_MMC1_GPIO 6
  70. #define PALMTE_MMC2_GPIO 7
  71. #define PALMTE_MMC3_GPIO 11
  72. static MouseTransformInfo palmte_pointercal = {
  73. .x = 320,
  74. .y = 320,
  75. .a = { -5909, 8, 22465308, 104, 7644, -1219972, 65536 },
  76. };
  77. static void palmte_microwire_setup(struct omap_mpu_state_s *cpu)
  78. {
  79. uWireSlave *tsc;
  80. tsc = tsc2102_init(qdev_get_gpio_in(cpu->gpio, PALMTE_PINTDAV_GPIO));
  81. omap_uwire_attach(cpu->microwire, tsc, 0);
  82. omap_mcbsp_i2s_attach(cpu->mcbsp1, tsc210x_codec(tsc));
  83. tsc210x_set_transform(tsc, &palmte_pointercal);
  84. }
  85. static struct {
  86. int row;
  87. int column;
  88. } palmte_keymap[0x80] = {
  89. [0 ... 0x7f] = { -1, -1 },
  90. [0x3b] = { 0, 0 }, /* F1 -> Calendar */
  91. [0x3c] = { 1, 0 }, /* F2 -> Contacts */
  92. [0x3d] = { 2, 0 }, /* F3 -> Tasks List */
  93. [0x3e] = { 3, 0 }, /* F4 -> Note Pad */
  94. [0x01] = { 4, 0 }, /* Esc -> Power */
  95. [0x4b] = { 0, 1 }, /* Left */
  96. [0x50] = { 1, 1 }, /* Down */
  97. [0x48] = { 2, 1 }, /* Up */
  98. [0x4d] = { 3, 1 }, /* Right */
  99. [0x4c] = { 4, 1 }, /* Centre */
  100. [0x39] = { 4, 1 }, /* Spc -> Centre */
  101. };
  102. static void palmte_button_event(void *opaque, int keycode)
  103. {
  104. struct omap_mpu_state_s *cpu = (struct omap_mpu_state_s *) opaque;
  105. if (palmte_keymap[keycode & 0x7f].row != -1)
  106. omap_mpuio_key(cpu->mpuio,
  107. palmte_keymap[keycode & 0x7f].row,
  108. palmte_keymap[keycode & 0x7f].column,
  109. !(keycode & 0x80));
  110. }
  111. /*
  112. * Encapsulation of some GPIO line behaviour for the Palm board
  113. *
  114. * QEMU interface:
  115. * + unnamed GPIO inputs 0..6: for the various miscellaneous input lines
  116. */
  117. #define TYPE_PALM_MISC_GPIO "palm-misc-gpio"
  118. #define PALM_MISC_GPIO(obj) \
  119. OBJECT_CHECK(PalmMiscGPIOState, (obj), TYPE_PALM_MISC_GPIO)
  120. typedef struct PalmMiscGPIOState {
  121. SysBusDevice parent_obj;
  122. } PalmMiscGPIOState;
  123. static void palmte_onoff_gpios(void *opaque, int line, int level)
  124. {
  125. switch (line) {
  126. case 0:
  127. printf("%s: current to MMC/SD card %sabled.\n",
  128. __func__, level ? "dis" : "en");
  129. break;
  130. case 1:
  131. printf("%s: internal speaker amplifier %s.\n",
  132. __func__, level ? "down" : "on");
  133. break;
  134. /* These LCD & Audio output signals have not been identified yet. */
  135. case 2:
  136. case 3:
  137. case 4:
  138. printf("%s: LCD GPIO%i %s.\n",
  139. __func__, line - 1, level ? "high" : "low");
  140. break;
  141. case 5:
  142. case 6:
  143. printf("%s: Audio GPIO%i %s.\n",
  144. __func__, line - 4, level ? "high" : "low");
  145. break;
  146. }
  147. }
  148. static void palm_misc_gpio_init(Object *obj)
  149. {
  150. DeviceState *dev = DEVICE(obj);
  151. qdev_init_gpio_in(dev, palmte_onoff_gpios, 7);
  152. }
  153. static const TypeInfo palm_misc_gpio_info = {
  154. .name = TYPE_PALM_MISC_GPIO,
  155. .parent = TYPE_SYS_BUS_DEVICE,
  156. .instance_size = sizeof(PalmMiscGPIOState),
  157. .instance_init = palm_misc_gpio_init,
  158. /*
  159. * No class init required: device has no internal state so does not
  160. * need to set up reset or vmstate, and has no realize method.
  161. */
  162. };
  163. static void palmte_gpio_setup(struct omap_mpu_state_s *cpu)
  164. {
  165. DeviceState *misc_gpio;
  166. misc_gpio = sysbus_create_simple(TYPE_PALM_MISC_GPIO, -1, NULL);
  167. omap_mmc_handlers(cpu->mmc,
  168. qdev_get_gpio_in(cpu->gpio, PALMTE_MMC_WP_GPIO),
  169. qemu_irq_invert(omap_mpuio_in_get(cpu->mpuio)
  170. [PALMTE_MMC_SWITCH_GPIO]));
  171. qdev_connect_gpio_out(cpu->gpio, PALMTE_MMC_POWER_GPIO,
  172. qdev_get_gpio_in(misc_gpio, 0));
  173. qdev_connect_gpio_out(cpu->gpio, PALMTE_SPEAKER_GPIO,
  174. qdev_get_gpio_in(misc_gpio, 1));
  175. qdev_connect_gpio_out(cpu->gpio, 11, qdev_get_gpio_in(misc_gpio, 2));
  176. qdev_connect_gpio_out(cpu->gpio, 12, qdev_get_gpio_in(misc_gpio, 3));
  177. qdev_connect_gpio_out(cpu->gpio, 13, qdev_get_gpio_in(misc_gpio, 4));
  178. omap_mpuio_out_set(cpu->mpuio, 1, qdev_get_gpio_in(misc_gpio, 5));
  179. omap_mpuio_out_set(cpu->mpuio, 3, qdev_get_gpio_in(misc_gpio, 6));
  180. /* Reset some inputs to initial state. */
  181. qemu_irq_lower(qdev_get_gpio_in(cpu->gpio, PALMTE_USBDETECT_GPIO));
  182. qemu_irq_lower(qdev_get_gpio_in(cpu->gpio, PALMTE_USB_OR_DC_GPIO));
  183. qemu_irq_lower(qdev_get_gpio_in(cpu->gpio, 4));
  184. qemu_irq_lower(qdev_get_gpio_in(cpu->gpio, PALMTE_HEADPHONES_GPIO));
  185. qemu_irq_lower(omap_mpuio_in_get(cpu->mpuio)[PALMTE_DC_GPIO]);
  186. qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[6]);
  187. qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[7]);
  188. qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[11]);
  189. }
  190. static struct arm_boot_info palmte_binfo = {
  191. .loader_start = OMAP_EMIFF_BASE,
  192. .ram_size = 0x02000000,
  193. .board_id = 0x331,
  194. };
  195. static void palmte_init(MachineState *machine)
  196. {
  197. MemoryRegion *address_space_mem = get_system_memory();
  198. struct omap_mpu_state_s *mpu;
  199. int flash_size = 0x00800000;
  200. static uint32_t cs0val = 0xffffffff;
  201. static uint32_t cs1val = 0x0000e1a0;
  202. static uint32_t cs2val = 0x0000e1a0;
  203. static uint32_t cs3val = 0xe1a0e1a0;
  204. int rom_size, rom_loaded = 0;
  205. MachineClass *mc = MACHINE_GET_CLASS(machine);
  206. MemoryRegion *flash = g_new(MemoryRegion, 1);
  207. MemoryRegion *cs = g_new(MemoryRegion, 4);
  208. if (machine->ram_size != mc->default_ram_size) {
  209. char *sz = size_to_str(mc->default_ram_size);
  210. error_report("Invalid RAM size, should be %s", sz);
  211. g_free(sz);
  212. exit(EXIT_FAILURE);
  213. }
  214. memory_region_add_subregion(address_space_mem, OMAP_EMIFF_BASE,
  215. machine->ram);
  216. mpu = omap310_mpu_init(machine->ram, machine->cpu_type);
  217. /* External Flash (EMIFS) */
  218. memory_region_init_rom(flash, NULL, "palmte.flash", flash_size,
  219. &error_fatal);
  220. memory_region_add_subregion(address_space_mem, OMAP_CS0_BASE, flash);
  221. memory_region_init_io(&cs[0], NULL, &static_ops, &cs0val, "palmte-cs0",
  222. OMAP_CS0_SIZE - flash_size);
  223. memory_region_add_subregion(address_space_mem, OMAP_CS0_BASE + flash_size,
  224. &cs[0]);
  225. memory_region_init_io(&cs[1], NULL, &static_ops, &cs1val, "palmte-cs1",
  226. OMAP_CS1_SIZE);
  227. memory_region_add_subregion(address_space_mem, OMAP_CS1_BASE, &cs[1]);
  228. memory_region_init_io(&cs[2], NULL, &static_ops, &cs2val, "palmte-cs2",
  229. OMAP_CS2_SIZE);
  230. memory_region_add_subregion(address_space_mem, OMAP_CS2_BASE, &cs[2]);
  231. memory_region_init_io(&cs[3], NULL, &static_ops, &cs3val, "palmte-cs3",
  232. OMAP_CS3_SIZE);
  233. memory_region_add_subregion(address_space_mem, OMAP_CS3_BASE, &cs[3]);
  234. palmte_microwire_setup(mpu);
  235. qemu_add_kbd_event_handler(palmte_button_event, mpu);
  236. palmte_gpio_setup(mpu);
  237. /* Setup initial (reset) machine state */
  238. if (nb_option_roms) {
  239. rom_size = get_image_size(option_rom[0].name);
  240. if (rom_size > flash_size) {
  241. fprintf(stderr, "%s: ROM image too big (%x > %x)\n",
  242. __func__, rom_size, flash_size);
  243. rom_size = 0;
  244. }
  245. if (rom_size > 0) {
  246. rom_size = load_image_targphys(option_rom[0].name, OMAP_CS0_BASE,
  247. flash_size);
  248. rom_loaded = 1;
  249. }
  250. if (rom_size < 0) {
  251. fprintf(stderr, "%s: error loading '%s'\n",
  252. __func__, option_rom[0].name);
  253. }
  254. }
  255. if (!rom_loaded && !machine->kernel_filename && !qtest_enabled()) {
  256. fprintf(stderr, "Kernel or ROM image must be specified\n");
  257. exit(1);
  258. }
  259. /* Load the kernel. */
  260. arm_load_kernel(mpu->cpu, machine, &palmte_binfo);
  261. }
  262. static void palmte_machine_init(MachineClass *mc)
  263. {
  264. mc->desc = "Palm Tungsten|E aka. Cheetah PDA (OMAP310)";
  265. mc->init = palmte_init;
  266. mc->ignore_memory_transaction_failures = true;
  267. mc->default_cpu_type = ARM_CPU_TYPE_NAME("ti925t");
  268. mc->default_ram_size = 0x02000000;
  269. mc->default_ram_id = "omap1.dram";
  270. }
  271. DEFINE_MACHINE("cheetah", palmte_machine_init)
  272. static void palm_register_types(void)
  273. {
  274. type_register_static(&palm_misc_gpio_info);
  275. }
  276. type_init(palm_register_types)