blob: f67d262d9ec635d70bbb59668c82b0c8eda7dfab [file] [log] [blame]
Paul Mackerras047ea782005-11-19 20:17:32 +11001#ifndef _ASM_POWERPC_PCI_BRIDGE_H
2#define _ASM_POWERPC_PCI_BRIDGE_H
Arnd Bergmann88ced032005-12-16 22:43:46 +01003#ifdef __KERNEL__
Stephen Rothwell7cd1de62007-12-06 18:02:28 +11004/*
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 */
Kumar Gala5531e412007-06-27 00:16:25 -050010#include <linux/pci.h>
Kumar Galaa4c9e322007-06-27 13:09:43 -050011#include <linux/list.h>
12#include <linux/ioport.h>
13
Kumar Gala5531e412007-06-27 00:16:25 -050014/*
15 * Structure of a PCI controller (host bridge)
16 */
17struct pci_controller {
18 struct pci_bus *bus;
Kumar Galaa4c9e322007-06-27 13:09:43 -050019 char is_dynamic;
Stephen Rothwell72119912007-12-11 11:00:13 +110020#ifdef CONFIG_PPC64
21 int node;
22#endif
Kumar Gala5531e412007-06-27 00:16:25 -050023 void *arch_data;
Kumar Galaa4c9e322007-06-27 13:09:43 -050024 struct list_head list_node;
Kumar Gala5531e412007-06-27 00:16:25 -050025 struct device *parent;
26
27 int first_busno;
28 int last_busno;
Stephen Rothwell72119912007-12-11 11:00:13 +110029#ifndef CONFIG_PPC64
Kumar Gala5531e412007-06-27 00:16:25 -050030 int self_busno;
Stephen Rothwell72119912007-12-11 11:00:13 +110031#endif
Kumar Gala5531e412007-06-27 00:16:25 -050032
33 void __iomem *io_base_virt;
Stephen Rothwell72119912007-12-11 11:00:13 +110034#ifdef CONFIG_PPC64
35 void *io_base_alloc;
36#endif
Kumar Gala5531e412007-06-27 00:16:25 -050037 resource_size_t io_base_phys;
38
39 /* Some machines (PReP) have a non 1:1 mapping of
40 * the PCI memory space in the CPU bus space
41 */
42 resource_size_t pci_mem_offset;
Stephen Rothwell72119912007-12-11 11:00:13 +110043#ifdef CONFIG_PPC64
44 unsigned long pci_io_size;
45#endif
Kumar Gala5531e412007-06-27 00:16:25 -050046
47 struct pci_ops *ops;
48 volatile unsigned int __iomem *cfg_addr;
49 volatile void __iomem *cfg_data;
50
Stephen Rothwell72119912007-12-11 11:00:13 +110051#ifndef CONFIG_PPC64
Kumar Gala5531e412007-06-27 00:16:25 -050052 /*
53 * Used for variants of PCI indirect handling and possible quirks:
54 * SET_CFG_TYPE - used on 4xx or any PHB that does explicit type0/1
55 * EXT_REG - provides access to PCI-e extended registers
56 * SURPRESS_PRIMARY_BUS - we surpress the setting of PCI_PRIMARY_BUS
57 * on Freescale PCI-e controllers since they used the PCI_PRIMARY_BUS
58 * to determine which bus number to match on when generating type0
59 * config cycles
Kumar Gala62c66c82007-07-11 13:22:41 -050060 * NO_PCIE_LINK - the Freescale PCI-e controllers have issues with
61 * hanging if we don't have link and try to do config cycles to
62 * anything but the PHB. Only allow talking to the PHB if this is
63 * set.
Kumar Gala2e56ff22007-07-19 16:07:35 -050064 * BIG_ENDIAN - cfg_addr is a big endian register
Kumar Gala5531e412007-06-27 00:16:25 -050065 */
Stephen Rothwell7cd1de62007-12-06 18:02:28 +110066#define PPC_INDIRECT_TYPE_SET_CFG_TYPE 0x00000001
67#define PPC_INDIRECT_TYPE_EXT_REG 0x00000002
68#define PPC_INDIRECT_TYPE_SURPRESS_PRIMARY_BUS 0x00000004
69#define PPC_INDIRECT_TYPE_NO_PCIE_LINK 0x00000008
70#define PPC_INDIRECT_TYPE_BIG_ENDIAN 0x00000010
Kumar Gala5531e412007-06-27 00:16:25 -050071 u32 indirect_type;
Stephen Rothwell72119912007-12-11 11:00:13 +110072#endif /* !CONFIG_PPC64 */
Kumar Gala5531e412007-06-27 00:16:25 -050073 /* Currently, we limit ourselves to 1 IO range and 3 mem
74 * ranges since the common pci_bus structure can't handle more
75 */
76 struct resource io_resource;
77 struct resource mem_resources[3];
Kumar Gala5516b542007-06-27 01:17:57 -050078 int global_number; /* PCI domain number */
Stephen Rothwell72119912007-12-11 11:00:13 +110079#ifdef CONFIG_PPC64
80 unsigned long buid;
81 unsigned long dma_window_base_cur;
82 unsigned long dma_window_size;
83
84 void *private_data;
85#endif /* CONFIG_PPC64 */
Kumar Gala5531e412007-06-27 00:16:25 -050086};
87
Stephen Rothwell72119912007-12-11 11:00:13 +110088#ifndef CONFIG_PPC64
89
Kumar Gala5531e412007-06-27 00:16:25 -050090static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus)
91{
92 return bus->sysdata;
93}
94
Benjamin Herrenschmidt6dfbde22007-07-26 14:07:13 +100095static inline int isa_vaddr_is_ioport(void __iomem *address)
96{
97 /* No specific ISA handling on ppc32 at this stage, it
98 * all goes through PCI
99 */
100 return 0;
101}
102
Kumar Gala5531e412007-06-27 00:16:25 -0500103/* These are used for config access before all the PCI probing
104 has been done. */
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100105extern int early_read_config_byte(struct pci_controller *hose, int bus,
106 int dev_fn, int where, u8 *val);
107extern int early_read_config_word(struct pci_controller *hose, int bus,
108 int dev_fn, int where, u16 *val);
109extern int early_read_config_dword(struct pci_controller *hose, int bus,
110 int dev_fn, int where, u32 *val);
111extern int early_write_config_byte(struct pci_controller *hose, int bus,
112 int dev_fn, int where, u8 val);
113extern int early_write_config_word(struct pci_controller *hose, int bus,
114 int dev_fn, int where, u16 val);
115extern int early_write_config_dword(struct pci_controller *hose, int bus,
116 int dev_fn, int where, u32 val);
Kumar Gala5531e412007-06-27 00:16:25 -0500117
Kumar Gala38805e52007-07-10 23:37:45 -0500118extern int early_find_capability(struct pci_controller *hose, int bus,
119 int dev_fn, int cap);
120
Kumar Gala5531e412007-06-27 00:16:25 -0500121extern void setup_indirect_pci(struct pci_controller* hose,
Valentine Barshakd94bad82007-10-08 22:51:24 +1000122 resource_size_t cfg_addr,
123 resource_size_t cfg_data, u32 flags);
Kumar Gala5531e412007-06-27 00:16:25 -0500124extern void setup_grackle(struct pci_controller *hose);
Kumar Galaf64fddb2007-07-20 13:35:34 -0500125extern void __init update_bridge_resource(struct pci_dev *dev,
126 struct resource *res);
Kumar Gala5531e412007-06-27 00:16:25 -0500127
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100128#else /* CONFIG_PPC64 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*
Paul Mackerras16353172005-09-06 13:17:54 +1000131 * PCI stuff, for nodes representing PCI devices, pointed to
132 * by device_node->data.
133 */
Paul Mackerras16353172005-09-06 13:17:54 +1000134struct iommu_table;
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100135struct device_node;
Paul Mackerras16353172005-09-06 13:17:54 +1000136
137struct pci_dn {
Linas Vepstas7684b402005-11-03 18:55:19 -0600138 int busno; /* pci bus number */
139 int bussubno; /* pci subordinate bus number */
140 int devfn; /* pci device and function number */
141 int class_code; /* pci device class */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100142
Linas Vepstasc2e221e2007-05-23 04:18:04 +1000143 struct pci_controller *phb; /* for pci devices */
144 struct iommu_table *iommu_table; /* for phb's or bridges */
145 struct pci_dev *pcidev; /* back-pointer to the pci device */
146 struct device_node *node; /* back-pointer to the device_node */
147
148 int pci_ext_config_space; /* for pci devices */
149
150#ifdef CONFIG_EEH
Paul Mackerras16353172005-09-06 13:17:54 +1000151 int eeh_mode; /* See eeh.h for possible EEH_MODEs */
152 int eeh_config_addr;
Linas Vepstas25e591f2005-11-03 18:53:20 -0600153 int eeh_pe_config_addr; /* new-style partition endpoint address */
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100154 int eeh_check_count; /* # times driver ignored error */
155 int eeh_freeze_count; /* # times this device froze up. */
156 int eeh_false_positives; /* # times this device reported #ff's */
Paul Mackerras16353172005-09-06 13:17:54 +1000157 u32 config_space[16]; /* saved PCI config space */
Linas Vepstasc2e221e2007-05-23 04:18:04 +1000158#endif
Paul Mackerras16353172005-09-06 13:17:54 +1000159};
160
161/* Get the pointer to a device_node's pci_dn */
162#define PCI_DN(dn) ((struct pci_dn *) (dn)->data)
163
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100164extern struct device_node *fetch_dev_dn(struct pci_dev *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Paul Mackerras16353172005-09-06 13:17:54 +1000166/* Get a device_node from a pci_dev. This code must be fast except
167 * in the case where the sysdata is incorrect and needs to be fixed
168 * up (this will only happen once).
169 * In this case the sysdata will have been inherited from a PCI host
170 * bridge or a PCI-PCI bridge further up the tree, so it will point
171 * to a valid struct pci_dn, just not the one we want.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173static inline struct device_node *pci_device_to_OF_node(struct pci_dev *dev)
174{
175 struct device_node *dn = dev->sysdata;
Paul Mackerras16353172005-09-06 13:17:54 +1000176 struct pci_dn *pdn = dn->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Paul Mackerras16353172005-09-06 13:17:54 +1000178 if (pdn && pdn->devfn == dev->devfn && pdn->busno == dev->bus->number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return dn; /* fast path. sysdata is good */
Paul Mackerras16353172005-09-06 13:17:54 +1000180 return fetch_dev_dn(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000183static inline int pci_device_from_OF_node(struct device_node *np,
184 u8 *bus, u8 *devfn)
185{
186 if (!PCI_DN(np))
187 return -ENODEV;
188 *bus = PCI_DN(np)->busno;
189 *devfn = PCI_DN(np)->devfn;
190 return 0;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static inline struct device_node *pci_bus_to_OF_node(struct pci_bus *bus)
194{
195 if (bus->self)
196 return pci_device_to_OF_node(bus->self);
197 else
198 return bus->sysdata; /* Must be root bus (PHB) */
199}
200
Linas Vepstas2bf6a8f2005-11-03 18:52:16 -0600201/** Find the bus corresponding to the indicated device node */
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100202extern struct pci_bus *pcibios_find_pci_bus(struct device_node *dn);
Linas Vepstas2bf6a8f2005-11-03 18:52:16 -0600203
Linas Vepstas2bf6a8f2005-11-03 18:52:16 -0600204/** Remove all of the PCI devices under this bus */
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100205extern void pcibios_remove_pci_devices(struct pci_bus *bus);
Linas Vepstas2bf6a8f2005-11-03 18:52:16 -0600206
207/** Discover new pci devices under this bus, and add them */
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100208extern void pcibios_add_pci_devices(struct pci_bus *bus);
209extern void pcibios_fixup_new_pci_devices(struct pci_bus *bus, int fix_bus);
Linas Vepstas2bf6a8f2005-11-03 18:52:16 -0600210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211extern int pcibios_remove_root_bus(struct pci_controller *phb);
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus)
214{
215 struct device_node *busdn = bus->sysdata;
216
217 BUG_ON(busdn == NULL);
Paul Mackerras16353172005-09-06 13:17:54 +1000218 return PCI_DN(busdn)->phb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100221
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000222extern void isa_bridge_find_early(struct pci_controller *hose);
223
Benjamin Herrenschmidt6dfbde22007-07-26 14:07:13 +1000224static inline int isa_vaddr_is_ioport(void __iomem *address)
225{
226 /* Check if address hits the reserved legacy IO range */
227 unsigned long ea = (unsigned long)address;
228 return ea >= ISA_IO_BASE && ea < ISA_IO_END;
229}
230
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000231extern int pcibios_unmap_io_space(struct pci_bus *bus);
232extern int pcibios_map_io_space(struct pci_bus *bus);
233
Paul Mackerras42672922005-09-12 17:17:36 +1000234/* Return values for ppc_md.pci_probe_mode function */
235#define PCI_PROBE_NONE -1 /* Don't look at this bus at all */
236#define PCI_PROBE_NORMAL 0 /* Do normal PCI probing */
237#define PCI_PROBE_DEVTREE 1 /* Instantiate from device tree */
238
Anton Blanchard357518f2006-06-10 20:53:06 +1000239#ifdef CONFIG_NUMA
240#define PHB_SET_NODE(PHB, NODE) ((PHB)->node = (NODE))
241#else
242#define PHB_SET_NODE(PHB, NODE) ((PHB)->node = -1)
243#endif
244
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100245#endif /* CONFIG_PPC64 */
Kumar Gala5531e412007-06-27 00:16:25 -0500246
247/* Get the PCI host controller for an OF device */
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100248extern struct pci_controller *pci_find_hose_for_OF_device(
249 struct device_node* node);
Kumar Gala5531e412007-06-27 00:16:25 -0500250
251/* Fill up host controller resources from the OF node */
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100252extern void pci_process_bridge_OF_ranges(struct pci_controller *hose,
253 struct device_node *dev, int primary);
Kumar Gala5531e412007-06-27 00:16:25 -0500254
Benjamin Herrenschmidt5131d4d2007-11-16 18:42:18 +1100255/* Allocate & free a PCI host bridge structure */
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100256extern struct pci_controller *pcibios_alloc_controller(struct device_node *dev);
Benjamin Herrenschmidt5131d4d2007-11-16 18:42:18 +1100257extern void pcibios_free_controller(struct pci_controller *phb);
258
Kumar Gala5531e412007-06-27 00:16:25 -0500259#ifdef CONFIG_PCI
260extern unsigned long pci_address_to_pio(phys_addr_t address);
Benjamin Herrenschmidt6dfbde22007-07-26 14:07:13 +1000261extern int pcibios_vaddr_is_ioport(void __iomem *address);
Kumar Gala5531e412007-06-27 00:16:25 -0500262#else
263static inline unsigned long pci_address_to_pio(phys_addr_t address)
264{
265 return (unsigned long)-1;
266}
Benjamin Herrenschmidt6dfbde22007-07-26 14:07:13 +1000267static inline int pcibios_vaddr_is_ioport(void __iomem *address)
268{
269 return 0;
270}
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100271#endif /* CONFIG_PCI */
Kumar Gala5531e412007-06-27 00:16:25 -0500272
Stephen Rothwell7cd1de62007-12-06 18:02:28 +1100273#endif /* __KERNEL__ */
274#endif /* _ASM_POWERPC_PCI_BRIDGE_H */