pci_host.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * QEMU Common PCI Host bridge configuration data space access routines.
  3. *
  4. * Copyright (c) 2006 Fabrice Bellard
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. /* Worker routines for a PCI host controller that uses an {address,data}
  25. register pair to access PCI configuration space. */
  26. /* debug PCI */
  27. //#define DEBUG_PCI
  28. #ifdef DEBUG_PCI
  29. #define PCI_DPRINTF(fmt, args...) \
  30. do { printf("pci_host_data: " fmt , ##args); } while (0)
  31. #else
  32. #define PCI_DPRINTF(fmt, args...)
  33. #endif
  34. typedef struct {
  35. uint32_t config_reg;
  36. PCIBus *bus;
  37. } PCIHostState;
  38. static void pci_host_data_writeb(void* opaque, pci_addr_t addr, uint32_t val)
  39. {
  40. PCIHostState *s = opaque;
  41. PCI_DPRINTF("writeb addr " TARGET_FMT_plx " val %x\n",
  42. (target_phys_addr_t)addr, val);
  43. if (s->config_reg & (1u << 31))
  44. pci_data_write(s->bus, s->config_reg | (addr & 3), val, 1);
  45. }
  46. static void pci_host_data_writew(void* opaque, pci_addr_t addr, uint32_t val)
  47. {
  48. PCIHostState *s = opaque;
  49. #ifdef TARGET_WORDS_BIGENDIAN
  50. val = bswap16(val);
  51. #endif
  52. PCI_DPRINTF("writew addr " TARGET_FMT_plx " val %x\n",
  53. (target_phys_addr_t)addr, val);
  54. if (s->config_reg & (1u << 31))
  55. pci_data_write(s->bus, s->config_reg | (addr & 3), val, 2);
  56. }
  57. static void pci_host_data_writel(void* opaque, pci_addr_t addr, uint32_t val)
  58. {
  59. PCIHostState *s = opaque;
  60. #ifdef TARGET_WORDS_BIGENDIAN
  61. val = bswap32(val);
  62. #endif
  63. PCI_DPRINTF("writel addr " TARGET_FMT_plx " val %x\n",
  64. (target_phys_addr_t)addr, val);
  65. if (s->config_reg & (1u << 31))
  66. pci_data_write(s->bus, s->config_reg, val, 4);
  67. }
  68. static uint32_t pci_host_data_readb(void* opaque, pci_addr_t addr)
  69. {
  70. PCIHostState *s = opaque;
  71. uint32_t val;
  72. if (!(s->config_reg & (1 << 31)))
  73. return 0xff;
  74. val = pci_data_read(s->bus, s->config_reg | (addr & 3), 1);
  75. PCI_DPRINTF("readb addr " TARGET_FMT_plx " val %x\n",
  76. (target_phys_addr_t)addr, val);
  77. return val;
  78. }
  79. static uint32_t pci_host_data_readw(void* opaque, pci_addr_t addr)
  80. {
  81. PCIHostState *s = opaque;
  82. uint32_t val;
  83. if (!(s->config_reg & (1 << 31)))
  84. return 0xffff;
  85. val = pci_data_read(s->bus, s->config_reg | (addr & 3), 2);
  86. PCI_DPRINTF("readw addr " TARGET_FMT_plx " val %x\n",
  87. (target_phys_addr_t)addr, val);
  88. #ifdef TARGET_WORDS_BIGENDIAN
  89. val = bswap16(val);
  90. #endif
  91. return val;
  92. }
  93. static uint32_t pci_host_data_readl(void* opaque, pci_addr_t addr)
  94. {
  95. PCIHostState *s = opaque;
  96. uint32_t val;
  97. if (!(s->config_reg & (1 << 31)))
  98. return 0xffffffff;
  99. val = pci_data_read(s->bus, s->config_reg | (addr & 3), 4);
  100. PCI_DPRINTF("readl addr " TARGET_FMT_plx " val %x\n",
  101. (target_phys_addr_t)addr, val);
  102. #ifdef TARGET_WORDS_BIGENDIAN
  103. val = bswap32(val);
  104. #endif
  105. return val;
  106. }