digic.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * QEMU model of the Canon DIGIC SoC.
  3. *
  4. * Copyright (C) 2013 Antony Pavlov <antonynpavlov@gmail.com>
  5. *
  6. * This model is based on reverse engineering efforts
  7. * made by CHDK (http://chdk.wikia.com) and
  8. * Magic Lantern (http://www.magiclantern.fm) projects
  9. * contributors.
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. */
  22. #include "qemu/osdep.h"
  23. #include "qapi/error.h"
  24. #include "qemu/module.h"
  25. #include "hw/arm/digic.h"
  26. #include "hw/qdev-properties.h"
  27. #include "sysemu/sysemu.h"
  28. #define DIGIC4_TIMER_BASE(n) (0xc0210000 + (n) * 0x100)
  29. #define DIGIC_UART_BASE 0xc0800000
  30. static void digic_init(Object *obj)
  31. {
  32. DigicState *s = DIGIC(obj);
  33. int i;
  34. object_initialize_child(obj, "cpu", &s->cpu, ARM_CPU_TYPE_NAME("arm946"));
  35. for (i = 0; i < DIGIC4_NB_TIMERS; i++) {
  36. #define DIGIC_TIMER_NAME_MLEN 11
  37. char name[DIGIC_TIMER_NAME_MLEN];
  38. snprintf(name, DIGIC_TIMER_NAME_MLEN, "timer[%d]", i);
  39. object_initialize_child(obj, name, &s->timer[i], TYPE_DIGIC_TIMER);
  40. }
  41. object_initialize_child(obj, "uart", &s->uart, TYPE_DIGIC_UART);
  42. }
  43. static void digic_realize(DeviceState *dev, Error **errp)
  44. {
  45. DigicState *s = DIGIC(dev);
  46. SysBusDevice *sbd;
  47. int i;
  48. if (!object_property_set_bool(OBJECT(&s->cpu), "reset-hivecs", true,
  49. errp)) {
  50. return;
  51. }
  52. if (!qdev_realize(DEVICE(&s->cpu), NULL, errp)) {
  53. return;
  54. }
  55. for (i = 0; i < DIGIC4_NB_TIMERS; i++) {
  56. if (!sysbus_realize(SYS_BUS_DEVICE(&s->timer[i]), errp)) {
  57. return;
  58. }
  59. sbd = SYS_BUS_DEVICE(&s->timer[i]);
  60. sysbus_mmio_map(sbd, 0, DIGIC4_TIMER_BASE(i));
  61. }
  62. qdev_prop_set_chr(DEVICE(&s->uart), "chardev", serial_hd(0));
  63. if (!sysbus_realize(SYS_BUS_DEVICE(&s->uart), errp)) {
  64. return;
  65. }
  66. sbd = SYS_BUS_DEVICE(&s->uart);
  67. sysbus_mmio_map(sbd, 0, DIGIC_UART_BASE);
  68. }
  69. static void digic_class_init(ObjectClass *oc, void *data)
  70. {
  71. DeviceClass *dc = DEVICE_CLASS(oc);
  72. dc->realize = digic_realize;
  73. /* Reason: Uses serial_hds in the realize function --> not usable twice */
  74. dc->user_creatable = false;
  75. }
  76. static const TypeInfo digic_type_info = {
  77. .name = TYPE_DIGIC,
  78. .parent = TYPE_DEVICE,
  79. .instance_size = sizeof(DigicState),
  80. .instance_init = digic_init,
  81. .class_init = digic_class_init,
  82. };
  83. static void digic_register_types(void)
  84. {
  85. type_register_static(&digic_type_info);
  86. }
  87. type_init(digic_register_types)