dec.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * QEMU DEC 21154 PCI bridge
  3. *
  4. * Copyright (c) 2006-2007 Fabrice Bellard
  5. * Copyright (c) 2007 Jocelyn Mayer
  6. *
  7. * Permission is hereby granted, free of charge, to any person obtaining a copy
  8. * of this software and associated documentation files (the "Software"), to deal
  9. * in the Software without restriction, including without limitation the rights
  10. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. * copies of the Software, and to permit persons to whom the Software is
  12. * furnished to do so, subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included in
  15. * all copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  20. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  23. * THE SOFTWARE.
  24. */
  25. #include "qemu/osdep.h"
  26. #include "dec.h"
  27. #include "hw/sysbus.h"
  28. #include "qemu/module.h"
  29. #include "hw/pci/pci.h"
  30. #include "hw/pci/pci_host.h"
  31. #include "hw/pci/pci_bridge.h"
  32. #include "hw/pci/pci_bus.h"
  33. /* debug DEC */
  34. //#define DEBUG_DEC
  35. #ifdef DEBUG_DEC
  36. #define DEC_DPRINTF(fmt, ...) \
  37. do { printf("DEC: " fmt , ## __VA_ARGS__); } while (0)
  38. #else
  39. #define DEC_DPRINTF(fmt, ...)
  40. #endif
  41. #define DEC_21154(obj) OBJECT_CHECK(DECState, (obj), TYPE_DEC_21154)
  42. typedef struct DECState {
  43. PCIHostState parent_obj;
  44. } DECState;
  45. static int dec_map_irq(PCIDevice *pci_dev, int irq_num)
  46. {
  47. return irq_num;
  48. }
  49. static void dec_pci_bridge_realize(PCIDevice *pci_dev, Error **errp)
  50. {
  51. pci_bridge_initfn(pci_dev, TYPE_PCI_BUS);
  52. }
  53. static void dec_21154_pci_bridge_class_init(ObjectClass *klass, void *data)
  54. {
  55. DeviceClass *dc = DEVICE_CLASS(klass);
  56. PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
  57. set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
  58. k->realize = dec_pci_bridge_realize;
  59. k->exit = pci_bridge_exitfn;
  60. k->vendor_id = PCI_VENDOR_ID_DEC;
  61. k->device_id = PCI_DEVICE_ID_DEC_21154;
  62. k->config_write = pci_bridge_write_config;
  63. k->is_bridge = true;
  64. dc->desc = "DEC 21154 PCI-PCI bridge";
  65. dc->reset = pci_bridge_reset;
  66. dc->vmsd = &vmstate_pci_device;
  67. }
  68. static const TypeInfo dec_21154_pci_bridge_info = {
  69. .name = "dec-21154-p2p-bridge",
  70. .parent = TYPE_PCI_BRIDGE,
  71. .instance_size = sizeof(PCIBridge),
  72. .class_init = dec_21154_pci_bridge_class_init,
  73. .interfaces = (InterfaceInfo[]) {
  74. { INTERFACE_CONVENTIONAL_PCI_DEVICE },
  75. { },
  76. },
  77. };
  78. PCIBus *pci_dec_21154_init(PCIBus *parent_bus, int devfn)
  79. {
  80. PCIDevice *dev;
  81. PCIBridge *br;
  82. dev = pci_create_multifunction(parent_bus, devfn, false,
  83. "dec-21154-p2p-bridge");
  84. br = PCI_BRIDGE(dev);
  85. pci_bridge_map_irq(br, "DEC 21154 PCI-PCI bridge", dec_map_irq);
  86. qdev_init_nofail(&dev->qdev);
  87. return pci_bridge_get_sec_bus(br);
  88. }
  89. static void pci_dec_21154_device_realize(DeviceState *dev, Error **errp)
  90. {
  91. PCIHostState *phb;
  92. SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
  93. phb = PCI_HOST_BRIDGE(dev);
  94. memory_region_init_io(&phb->conf_mem, OBJECT(dev), &pci_host_conf_le_ops,
  95. dev, "pci-conf-idx", 0x1000);
  96. memory_region_init_io(&phb->data_mem, OBJECT(dev), &pci_host_data_le_ops,
  97. dev, "pci-data-idx", 0x1000);
  98. sysbus_init_mmio(sbd, &phb->conf_mem);
  99. sysbus_init_mmio(sbd, &phb->data_mem);
  100. }
  101. static void dec_21154_pci_host_realize(PCIDevice *d, Error **errp)
  102. {
  103. /* PCI2PCI bridge same values as PearPC - check this */
  104. }
  105. static void dec_21154_pci_host_class_init(ObjectClass *klass, void *data)
  106. {
  107. PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
  108. DeviceClass *dc = DEVICE_CLASS(klass);
  109. set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
  110. k->realize = dec_21154_pci_host_realize;
  111. k->vendor_id = PCI_VENDOR_ID_DEC;
  112. k->device_id = PCI_DEVICE_ID_DEC_21154;
  113. k->revision = 0x02;
  114. k->class_id = PCI_CLASS_BRIDGE_PCI;
  115. k->is_bridge = true;
  116. /*
  117. * PCI-facing part of the host bridge, not usable without the
  118. * host-facing part, which can't be device_add'ed, yet.
  119. */
  120. dc->user_creatable = false;
  121. }
  122. static const TypeInfo dec_21154_pci_host_info = {
  123. .name = "dec-21154",
  124. .parent = TYPE_PCI_DEVICE,
  125. .instance_size = sizeof(PCIDevice),
  126. .class_init = dec_21154_pci_host_class_init,
  127. .interfaces = (InterfaceInfo[]) {
  128. { INTERFACE_CONVENTIONAL_PCI_DEVICE },
  129. { },
  130. },
  131. };
  132. static void pci_dec_21154_device_class_init(ObjectClass *klass, void *data)
  133. {
  134. DeviceClass *dc = DEVICE_CLASS(klass);
  135. dc->realize = pci_dec_21154_device_realize;
  136. }
  137. static const TypeInfo pci_dec_21154_device_info = {
  138. .name = TYPE_DEC_21154,
  139. .parent = TYPE_PCI_HOST_BRIDGE,
  140. .instance_size = sizeof(DECState),
  141. .class_init = pci_dec_21154_device_class_init,
  142. };
  143. static void dec_register_types(void)
  144. {
  145. type_register_static(&pci_dec_21154_device_info);
  146. type_register_static(&dec_21154_pci_host_info);
  147. type_register_static(&dec_21154_pci_bridge_info);
  148. }
  149. type_init(dec_register_types)