pci-bridge.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. #ifndef _ASM_MICROBLAZE_PCI_BRIDGE_H
  2. #define _ASM_MICROBLAZE_PCI_BRIDGE_H
  3. #ifdef __KERNEL__
  4. /*
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version
  8. * 2 of the License, or (at your option) any later version.
  9. */
  10. #include <linux/pci.h>
  11. #include <linux/list.h>
  12. #include <linux/ioport.h>
  13. struct device_node;
  14. enum {
  15. /* Force re-assigning all resources (ignore firmware
  16. * setup completely)
  17. */
  18. PCI_REASSIGN_ALL_RSRC = 0x00000001,
  19. /* Re-assign all bus numbers */
  20. PCI_REASSIGN_ALL_BUS = 0x00000002,
  21. /* Do not try to assign, just use existing setup */
  22. PCI_PROBE_ONLY = 0x00000004,
  23. /* Don't bother with ISA alignment unless the bridge has
  24. * ISA forwarding enabled
  25. */
  26. PCI_CAN_SKIP_ISA_ALIGN = 0x00000008,
  27. /* Enable domain numbers in /proc */
  28. PCI_ENABLE_PROC_DOMAINS = 0x00000010,
  29. /* ... except for domain 0 */
  30. PCI_COMPAT_DOMAIN_0 = 0x00000020,
  31. };
  32. /*
  33. * Structure of a PCI controller (host bridge)
  34. */
  35. struct pci_controller {
  36. struct pci_bus *bus;
  37. char is_dynamic;
  38. struct device_node *dn;
  39. struct list_head list_node;
  40. struct device *parent;
  41. int first_busno;
  42. int last_busno;
  43. int self_busno;
  44. void __iomem *io_base_virt;
  45. resource_size_t io_base_phys;
  46. resource_size_t pci_io_size;
  47. /* Some machines (PReP) have a non 1:1 mapping of
  48. * the PCI memory space in the CPU bus space
  49. */
  50. resource_size_t pci_mem_offset;
  51. /* Some machines have a special region to forward the ISA
  52. * "memory" cycles such as VGA memory regions. Left to 0
  53. * if unsupported
  54. */
  55. resource_size_t isa_mem_phys;
  56. resource_size_t isa_mem_size;
  57. struct pci_ops *ops;
  58. unsigned int __iomem *cfg_addr;
  59. void __iomem *cfg_data;
  60. /*
  61. * Used for variants of PCI indirect handling and possible quirks:
  62. * SET_CFG_TYPE - used on 4xx or any PHB that does explicit type0/1
  63. * EXT_REG - provides access to PCI-e extended registers
  64. * SURPRESS_PRIMARY_BUS - we surpress the setting of PCI_PRIMARY_BUS
  65. * on Freescale PCI-e controllers since they used the PCI_PRIMARY_BUS
  66. * to determine which bus number to match on when generating type0
  67. * config cycles
  68. * NO_PCIE_LINK - the Freescale PCI-e controllers have issues with
  69. * hanging if we don't have link and try to do config cycles to
  70. * anything but the PHB. Only allow talking to the PHB if this is
  71. * set.
  72. * BIG_ENDIAN - cfg_addr is a big endian register
  73. * BROKEN_MRM - the 440EPx/GRx chips have an errata that causes hangs
  74. * on the PLB4. Effectively disable MRM commands by setting this.
  75. */
  76. #define INDIRECT_TYPE_SET_CFG_TYPE 0x00000001
  77. #define INDIRECT_TYPE_EXT_REG 0x00000002
  78. #define INDIRECT_TYPE_SURPRESS_PRIMARY_BUS 0x00000004
  79. #define INDIRECT_TYPE_NO_PCIE_LINK 0x00000008
  80. #define INDIRECT_TYPE_BIG_ENDIAN 0x00000010
  81. #define INDIRECT_TYPE_BROKEN_MRM 0x00000020
  82. u32 indirect_type;
  83. /* Currently, we limit ourselves to 1 IO range and 3 mem
  84. * ranges since the common pci_bus structure can't handle more
  85. */
  86. struct resource io_resource;
  87. struct resource mem_resources[3];
  88. int global_number; /* PCI domain number */
  89. };
  90. #ifdef CONFIG_PCI
  91. static inline struct pci_controller *pci_bus_to_host(const struct pci_bus *bus)
  92. {
  93. return bus->sysdata;
  94. }
  95. static inline struct device_node *pci_bus_to_OF_node(struct pci_bus *bus)
  96. {
  97. struct pci_controller *host;
  98. if (bus->self)
  99. return pci_device_to_OF_node(bus->self);
  100. host = pci_bus_to_host(bus);
  101. return host ? host->dn : NULL;
  102. }
  103. static inline int isa_vaddr_is_ioport(void __iomem *address)
  104. {
  105. /* No specific ISA handling on ppc32 at this stage, it
  106. * all goes through PCI
  107. */
  108. return 0;
  109. }
  110. #endif /* CONFIG_PCI */
  111. /* These are used for config access before all the PCI probing
  112. has been done. */
  113. extern int early_read_config_byte(struct pci_controller *hose, int bus,
  114. int dev_fn, int where, u8 *val);
  115. extern int early_read_config_word(struct pci_controller *hose, int bus,
  116. int dev_fn, int where, u16 *val);
  117. extern int early_read_config_dword(struct pci_controller *hose, int bus,
  118. int dev_fn, int where, u32 *val);
  119. extern int early_write_config_byte(struct pci_controller *hose, int bus,
  120. int dev_fn, int where, u8 val);
  121. extern int early_write_config_word(struct pci_controller *hose, int bus,
  122. int dev_fn, int where, u16 val);
  123. extern int early_write_config_dword(struct pci_controller *hose, int bus,
  124. int dev_fn, int where, u32 val);
  125. extern int early_find_capability(struct pci_controller *hose, int bus,
  126. int dev_fn, int cap);
  127. extern void setup_indirect_pci(struct pci_controller *hose,
  128. resource_size_t cfg_addr,
  129. resource_size_t cfg_data, u32 flags);
  130. /* Get the PCI host controller for an OF device */
  131. extern struct pci_controller *pci_find_hose_for_OF_device(
  132. struct device_node *node);
  133. /* Fill up host controller resources from the OF node */
  134. extern void pci_process_bridge_OF_ranges(struct pci_controller *hose,
  135. struct device_node *dev, int primary);
  136. /* Allocate & free a PCI host bridge structure */
  137. extern struct pci_controller *pcibios_alloc_controller(struct device_node *dev);
  138. extern void pcibios_free_controller(struct pci_controller *phb);
  139. extern void pcibios_setup_phb_resources(struct pci_controller *hose);
  140. #ifdef CONFIG_PCI
  141. extern unsigned int pci_flags;
  142. static inline void pci_set_flags(int flags)
  143. {
  144. pci_flags = flags;
  145. }
  146. static inline void pci_add_flags(int flags)
  147. {
  148. pci_flags |= flags;
  149. }
  150. static inline int pci_has_flag(int flag)
  151. {
  152. return pci_flags & flag;
  153. }
  154. extern struct list_head hose_list;
  155. extern int pcibios_vaddr_is_ioport(void __iomem *address);
  156. #else
  157. static inline int pcibios_vaddr_is_ioport(void __iomem *address)
  158. {
  159. return 0;
  160. }
  161. static inline void pci_set_flags(int flags) { }
  162. static inline void pci_add_flags(int flags) { }
  163. static inline int pci_has_flag(int flag)
  164. {
  165. return 0;
  166. }
  167. #endif /* CONFIG_PCI */
  168. #endif /* __KERNEL__ */
  169. #endif /* _ASM_MICROBLAZE_PCI_BRIDGE_H */