2
0

dec_pci.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 "dec_pci.h"
  26. #include "sysbus.h"
  27. #include "pci/pci.h"
  28. #include "pci/pci_host.h"
  29. #include "pci/pci_bridge.h"
  30. #include "pci/pci_internals.h"
  31. /* debug DEC */
  32. //#define DEBUG_DEC
  33. #ifdef DEBUG_DEC
  34. #define DEC_DPRINTF(fmt, ...) \
  35. do { printf("DEC: " fmt , ## __VA_ARGS__); } while (0)
  36. #else
  37. #define DEC_DPRINTF(fmt, ...)
  38. #endif
  39. #define DEC_21154(obj) OBJECT_CHECK(DECState, (obj), TYPE_DEC_21154)
  40. typedef struct DECState {
  41. PCIHostState parent_obj;
  42. } DECState;
  43. static int dec_map_irq(PCIDevice *pci_dev, int irq_num)
  44. {
  45. return irq_num;
  46. }
  47. static void dec_21154_pci_bridge_class_init(ObjectClass *klass, void *data)
  48. {
  49. DeviceClass *dc = DEVICE_CLASS(klass);
  50. PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
  51. k->init = pci_bridge_initfn;
  52. k->exit = pci_bridge_exitfn;
  53. k->vendor_id = PCI_VENDOR_ID_DEC;
  54. k->device_id = PCI_DEVICE_ID_DEC_21154;
  55. k->config_write = pci_bridge_write_config;
  56. k->is_bridge = 1;
  57. dc->desc = "DEC 21154 PCI-PCI bridge";
  58. dc->reset = pci_bridge_reset;
  59. dc->vmsd = &vmstate_pci_device;
  60. }
  61. static const TypeInfo dec_21154_pci_bridge_info = {
  62. .name = "dec-21154-p2p-bridge",
  63. .parent = TYPE_PCI_DEVICE,
  64. .instance_size = sizeof(PCIBridge),
  65. .class_init = dec_21154_pci_bridge_class_init,
  66. };
  67. PCIBus *pci_dec_21154_init(PCIBus *parent_bus, int devfn)
  68. {
  69. PCIDevice *dev;
  70. PCIBridge *br;
  71. dev = pci_create_multifunction(parent_bus, devfn, false,
  72. "dec-21154-p2p-bridge");
  73. br = DO_UPCAST(PCIBridge, dev, dev);
  74. pci_bridge_map_irq(br, "DEC 21154 PCI-PCI bridge", dec_map_irq);
  75. qdev_init_nofail(&dev->qdev);
  76. return pci_bridge_get_sec_bus(br);
  77. }
  78. static int pci_dec_21154_device_init(SysBusDevice *dev)
  79. {
  80. PCIHostState *phb;
  81. phb = PCI_HOST_BRIDGE(dev);
  82. memory_region_init_io(&phb->conf_mem, &pci_host_conf_le_ops,
  83. dev, "pci-conf-idx", 0x1000);
  84. memory_region_init_io(&phb->data_mem, &pci_host_data_le_ops,
  85. dev, "pci-data-idx", 0x1000);
  86. sysbus_init_mmio(dev, &phb->conf_mem);
  87. sysbus_init_mmio(dev, &phb->data_mem);
  88. return 0;
  89. }
  90. static int dec_21154_pci_host_init(PCIDevice *d)
  91. {
  92. /* PCI2PCI bridge same values as PearPC - check this */
  93. return 0;
  94. }
  95. static void dec_21154_pci_host_class_init(ObjectClass *klass, void *data)
  96. {
  97. PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
  98. k->init = dec_21154_pci_host_init;
  99. k->vendor_id = PCI_VENDOR_ID_DEC;
  100. k->device_id = PCI_DEVICE_ID_DEC_21154;
  101. k->revision = 0x02;
  102. k->class_id = PCI_CLASS_BRIDGE_PCI;
  103. k->is_bridge = 1;
  104. }
  105. static const TypeInfo dec_21154_pci_host_info = {
  106. .name = "dec-21154",
  107. .parent = TYPE_PCI_DEVICE,
  108. .instance_size = sizeof(PCIDevice),
  109. .class_init = dec_21154_pci_host_class_init,
  110. };
  111. static void pci_dec_21154_device_class_init(ObjectClass *klass, void *data)
  112. {
  113. SysBusDeviceClass *sdc = SYS_BUS_DEVICE_CLASS(klass);
  114. sdc->init = pci_dec_21154_device_init;
  115. }
  116. static const TypeInfo pci_dec_21154_device_info = {
  117. .name = TYPE_DEC_21154,
  118. .parent = TYPE_PCI_HOST_BRIDGE,
  119. .instance_size = sizeof(DECState),
  120. .class_init = pci_dec_21154_device_class_init,
  121. };
  122. static void dec_register_types(void)
  123. {
  124. type_register_static(&pci_dec_21154_device_info);
  125. type_register_static(&dec_21154_pci_host_info);
  126. type_register_static(&dec_21154_pci_bridge_info);
  127. }
  128. type_init(dec_register_types)