2
0

dec_pci.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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.h"
  28. #include "pci_host.h"
  29. #include "pci_bridge.h"
  30. #include "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. typedef struct DECState {
  40. SysBusDevice busdev;
  41. PCIHostState host_state;
  42. } DECState;
  43. static int dec_map_irq(PCIDevice *pci_dev, int irq_num)
  44. {
  45. return irq_num;
  46. }
  47. static PCIDeviceInfo dec_21154_pci_bridge_info = {
  48. .qdev.name = "dec-21154-p2p-bridge",
  49. .qdev.desc = "DEC 21154 PCI-PCI bridge",
  50. .qdev.size = sizeof(PCIBridge),
  51. .qdev.vmsd = &vmstate_pci_device,
  52. .qdev.reset = pci_bridge_reset,
  53. .init = pci_bridge_initfn,
  54. .exit = pci_bridge_exitfn,
  55. .vendor_id = PCI_VENDOR_ID_DEC,
  56. .device_id = PCI_DEVICE_ID_DEC_21154,
  57. .config_write = pci_bridge_write_config,
  58. .is_bridge = 1,
  59. };
  60. PCIBus *pci_dec_21154_init(PCIBus *parent_bus, int devfn)
  61. {
  62. PCIDevice *dev;
  63. PCIBridge *br;
  64. dev = pci_create_multifunction(parent_bus, devfn, false,
  65. "dec-21154-p2p-bridge");
  66. br = DO_UPCAST(PCIBridge, dev, dev);
  67. pci_bridge_map_irq(br, "DEC 21154 PCI-PCI bridge", dec_map_irq);
  68. qdev_init_nofail(&dev->qdev);
  69. return pci_bridge_get_sec_bus(br);
  70. }
  71. static int pci_dec_21154_init_device(SysBusDevice *dev)
  72. {
  73. DECState *s;
  74. s = FROM_SYSBUS(DECState, dev);
  75. memory_region_init_io(&s->host_state.conf_mem, &pci_host_conf_le_ops,
  76. &s->host_state, "pci-conf-idx", 0x1000);
  77. memory_region_init_io(&s->host_state.data_mem, &pci_host_data_le_ops,
  78. &s->host_state, "pci-data-idx", 0x1000);
  79. sysbus_init_mmio_region(dev, &s->host_state.conf_mem);
  80. sysbus_init_mmio_region(dev, &s->host_state.data_mem);
  81. return 0;
  82. }
  83. static int dec_21154_pci_host_init(PCIDevice *d)
  84. {
  85. /* PCI2PCI bridge same values as PearPC - check this */
  86. return 0;
  87. }
  88. static PCIDeviceInfo dec_21154_pci_host_info = {
  89. .qdev.name = "dec-21154",
  90. .qdev.size = sizeof(PCIDevice),
  91. .init = dec_21154_pci_host_init,
  92. .vendor_id = PCI_VENDOR_ID_DEC,
  93. .device_id = PCI_DEVICE_ID_DEC_21154,
  94. .revision = 0x02,
  95. .class_id = PCI_CLASS_BRIDGE_PCI,
  96. .is_bridge = 1,
  97. };
  98. static void dec_register_devices(void)
  99. {
  100. sysbus_register_dev("dec-21154", sizeof(DECState),
  101. pci_dec_21154_init_device);
  102. pci_qdev_register(&dec_21154_pci_host_info);
  103. pci_qdev_register(&dec_21154_pci_bridge_info);
  104. }
  105. device_init(dec_register_devices)