Paul Mackerras | 047ea78 | 2005-11-19 20:17:32 +1100 | [diff] [blame] | 1 | #ifndef _ASM_POWERPC_PCI_BRIDGE_H |
| 2 | #define _ASM_POWERPC_PCI_BRIDGE_H |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 3 | #ifdef __KERNEL__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
Paul Mackerras | 047ea78 | 2005-11-19 20:17:32 +1100 | [diff] [blame] | 5 | #ifndef CONFIG_PPC64 |
| 6 | #include <asm-ppc/pci-bridge.h> |
| 7 | #else |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/pci.h> |
Paul Mackerras | 76f9f87 | 2005-10-10 22:52:26 +1000 | [diff] [blame] | 10 | #include <linux/list.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
| 12 | /* |
| 13 | * This program is free software; you can redistribute it and/or |
| 14 | * modify it under the terms of the GNU General Public License |
| 15 | * as published by the Free Software Foundation; either version |
| 16 | * 2 of the License, or (at your option) any later version. |
| 17 | */ |
| 18 | |
| 19 | /* |
| 20 | * Structure of a PCI controller (host bridge) |
| 21 | */ |
| 22 | struct pci_controller { |
| 23 | struct pci_bus *bus; |
| 24 | char is_dynamic; |
| 25 | void *arch_data; |
| 26 | struct list_head list_node; |
| 27 | |
| 28 | int first_busno; |
| 29 | int last_busno; |
| 30 | |
| 31 | void __iomem *io_base_virt; |
| 32 | unsigned long io_base_phys; |
| 33 | |
| 34 | /* Some machines have a non 1:1 mapping of |
| 35 | * the PCI memory space in the CPU bus space |
| 36 | */ |
| 37 | unsigned long pci_mem_offset; |
| 38 | unsigned long pci_io_size; |
| 39 | |
| 40 | struct pci_ops *ops; |
| 41 | volatile unsigned int __iomem *cfg_addr; |
Paul Mackerras | 17a6392 | 2005-10-20 21:10:09 +1000 | [diff] [blame] | 42 | volatile void __iomem *cfg_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | /* Currently, we limit ourselves to 1 IO range and 3 mem |
| 45 | * ranges since the common pci_bus structure can't handle more |
| 46 | */ |
| 47 | struct resource io_resource; |
| 48 | struct resource mem_resources[3]; |
| 49 | int global_number; |
| 50 | int local_number; |
| 51 | unsigned long buid; |
| 52 | unsigned long dma_window_base_cur; |
| 53 | unsigned long dma_window_size; |
| 54 | }; |
| 55 | |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 56 | /* |
| 57 | * PCI stuff, for nodes representing PCI devices, pointed to |
| 58 | * by device_node->data. |
| 59 | */ |
| 60 | struct pci_controller; |
| 61 | struct iommu_table; |
| 62 | |
| 63 | struct pci_dn { |
Linas Vepstas | 7684b40 | 2005-11-03 18:55:19 -0600 | [diff] [blame] | 64 | int busno; /* pci bus number */ |
| 65 | int bussubno; /* pci subordinate bus number */ |
| 66 | int devfn; /* pci device and function number */ |
| 67 | int class_code; /* pci device class */ |
Benjamin Herrenschmidt | b5166cc | 2005-11-15 16:05:33 +1100 | [diff] [blame] | 68 | |
| 69 | #ifdef CONFIG_PPC_PSERIES |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 70 | int eeh_mode; /* See eeh.h for possible EEH_MODEs */ |
| 71 | int eeh_config_addr; |
Linas Vepstas | 25e591f | 2005-11-03 18:53:20 -0600 | [diff] [blame] | 72 | int eeh_pe_config_addr; /* new-style partition endpoint address */ |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 73 | int eeh_check_count; /* # times driver ignored error */ |
| 74 | int eeh_freeze_count; /* # times this device froze up. */ |
Benjamin Herrenschmidt | b5166cc | 2005-11-15 16:05:33 +1100 | [diff] [blame] | 75 | #endif |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 76 | int pci_ext_config_space; /* for pci devices */ |
| 77 | struct pci_controller *phb; /* for pci devices */ |
| 78 | struct iommu_table *iommu_table; /* for phb's or bridges */ |
| 79 | struct pci_dev *pcidev; /* back-pointer to the pci device */ |
| 80 | struct device_node *node; /* back-pointer to the device_node */ |
Stephen Rothwell | 252e75a | 2005-09-28 14:40:40 +1000 | [diff] [blame] | 81 | #ifdef CONFIG_PPC_ISERIES |
Paul Mackerras | 76f9f87 | 2005-10-10 22:52:26 +1000 | [diff] [blame] | 82 | struct list_head Device_List; |
Benjamin Herrenschmidt | b5166cc | 2005-11-15 16:05:33 +1100 | [diff] [blame] | 83 | int Irq; /* Assigned IRQ */ |
| 84 | int Flags; /* Possible flags(disable/bist)*/ |
| 85 | u8 LogicalSlot; /* Hv Slot Index for Tces */ |
Stephen Rothwell | 252e75a | 2005-09-28 14:40:40 +1000 | [diff] [blame] | 86 | #endif |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 87 | u32 config_space[16]; /* saved PCI config space */ |
| 88 | }; |
| 89 | |
| 90 | /* Get the pointer to a device_node's pci_dn */ |
| 91 | #define PCI_DN(dn) ((struct pci_dn *) (dn)->data) |
| 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | struct device_node *fetch_dev_dn(struct pci_dev *dev); |
| 94 | |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 95 | /* Get a device_node from a pci_dev. This code must be fast except |
| 96 | * in the case where the sysdata is incorrect and needs to be fixed |
| 97 | * up (this will only happen once). |
| 98 | * In this case the sysdata will have been inherited from a PCI host |
| 99 | * bridge or a PCI-PCI bridge further up the tree, so it will point |
| 100 | * to a valid struct pci_dn, just not the one we want. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | */ |
| 102 | static inline struct device_node *pci_device_to_OF_node(struct pci_dev *dev) |
| 103 | { |
| 104 | struct device_node *dn = dev->sysdata; |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 105 | struct pci_dn *pdn = dn->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 107 | if (pdn && pdn->devfn == dev->devfn && pdn->busno == dev->bus->number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | return dn; /* fast path. sysdata is good */ |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 109 | return fetch_dev_dn(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 112 | static inline int pci_device_from_OF_node(struct device_node *np, |
| 113 | u8 *bus, u8 *devfn) |
| 114 | { |
| 115 | if (!PCI_DN(np)) |
| 116 | return -ENODEV; |
| 117 | *bus = PCI_DN(np)->busno; |
| 118 | *devfn = PCI_DN(np)->devfn; |
| 119 | return 0; |
| 120 | } |
| 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | static inline struct device_node *pci_bus_to_OF_node(struct pci_bus *bus) |
| 123 | { |
| 124 | if (bus->self) |
| 125 | return pci_device_to_OF_node(bus->self); |
| 126 | else |
| 127 | return bus->sysdata; /* Must be root bus (PHB) */ |
| 128 | } |
| 129 | |
Linas Vepstas | 2bf6a8f | 2005-11-03 18:52:16 -0600 | [diff] [blame] | 130 | /** Find the bus corresponding to the indicated device node */ |
| 131 | struct pci_bus * pcibios_find_pci_bus(struct device_node *dn); |
| 132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | extern void pci_process_bridge_OF_ranges(struct pci_controller *hose, |
Paul Mackerras | f7abbc1 | 2005-10-22 15:03:21 +1000 | [diff] [blame] | 134 | struct device_node *dev, int primary); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Linas Vepstas | 2bf6a8f | 2005-11-03 18:52:16 -0600 | [diff] [blame] | 136 | /** Remove all of the PCI devices under this bus */ |
| 137 | void pcibios_remove_pci_devices(struct pci_bus *bus); |
| 138 | |
| 139 | /** Discover new pci devices under this bus, and add them */ |
| 140 | void pcibios_add_pci_devices(struct pci_bus * bus); |
linas | 31087d7 | 2005-12-13 13:46:36 -0600 | [diff] [blame] | 141 | void pcibios_fixup_new_pci_devices(struct pci_bus *bus, int fix_bus); |
Linas Vepstas | 2bf6a8f | 2005-11-03 18:52:16 -0600 | [diff] [blame] | 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | extern int pcibios_remove_root_bus(struct pci_controller *phb); |
| 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus) |
| 146 | { |
| 147 | struct device_node *busdn = bus->sysdata; |
| 148 | |
| 149 | BUG_ON(busdn == NULL); |
Paul Mackerras | 1635317 | 2005-09-06 13:17:54 +1000 | [diff] [blame] | 150 | return PCI_DN(busdn)->phb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Benjamin Herrenschmidt | 463ce0e | 2005-11-23 17:56:06 +1100 | [diff] [blame] | 153 | extern struct pci_controller* |
| 154 | pci_find_hose_for_OF_device(struct device_node* node); |
| 155 | |
Benjamin Herrenschmidt | b5166cc | 2005-11-15 16:05:33 +1100 | [diff] [blame] | 156 | extern struct pci_controller * |
| 157 | pcibios_alloc_controller(struct device_node *dev); |
| 158 | extern void pcibios_free_controller(struct pci_controller *phb); |
| 159 | |
Benjamin Herrenschmidt | d2dd482 | 2005-11-30 16:57:28 +1100 | [diff] [blame] | 160 | #ifdef CONFIG_PCI |
Benjamin Herrenschmidt | f2c4583 | 2005-12-15 15:00:57 +1100 | [diff] [blame] | 161 | extern unsigned long pci_address_to_pio(phys_addr_t address); |
Benjamin Herrenschmidt | d2dd482 | 2005-11-30 16:57:28 +1100 | [diff] [blame] | 162 | #else |
Benjamin Herrenschmidt | f2c4583 | 2005-12-15 15:00:57 +1100 | [diff] [blame] | 163 | static inline unsigned long pci_address_to_pio(phys_addr_t address) |
Benjamin Herrenschmidt | d2dd482 | 2005-11-30 16:57:28 +1100 | [diff] [blame] | 164 | { |
Benjamin Herrenschmidt | f2c4583 | 2005-12-15 15:00:57 +1100 | [diff] [blame] | 165 | return (unsigned long)-1; |
Benjamin Herrenschmidt | d2dd482 | 2005-11-30 16:57:28 +1100 | [diff] [blame] | 166 | } |
| 167 | #endif |
| 168 | |
Paul Mackerras | 4267292 | 2005-09-12 17:17:36 +1000 | [diff] [blame] | 169 | /* Return values for ppc_md.pci_probe_mode function */ |
| 170 | #define PCI_PROBE_NONE -1 /* Don't look at this bus at all */ |
| 171 | #define PCI_PROBE_NORMAL 0 /* Do normal PCI probing */ |
| 172 | #define PCI_PROBE_DEVTREE 1 /* Instantiate from device tree */ |
| 173 | |
Paul Mackerras | 047ea78 | 2005-11-19 20:17:32 +1100 | [diff] [blame] | 174 | #endif /* CONFIG_PPC64 */ |
Arnd Bergmann | 88ced03 | 2005-12-16 22:43:46 +0100 | [diff] [blame] | 175 | #endif /* __KERNEL__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | #endif |