blob: 4f55573762bb8ecefe7fca89a4f2488b3eea5c5c [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__
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Paul Mackerras047ea782005-11-19 20:17:32 +11005#ifndef CONFIG_PPC64
6#include <asm-ppc/pci-bridge.h>
7#else
8
Anton Blanchard357518f2006-06-10 20:53:06 +10009#include <linux/config.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/pci.h>
Paul Mackerras76f9f872005-10-10 22:52:26 +100011#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13/*
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 */
19
20/*
21 * Structure of a PCI controller (host bridge)
22 */
23struct pci_controller {
24 struct pci_bus *bus;
25 char is_dynamic;
Anton Blanchard357518f2006-06-10 20:53:06 +100026 int node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 void *arch_data;
28 struct list_head list_node;
29
30 int first_busno;
31 int last_busno;
32
33 void __iomem *io_base_virt;
34 unsigned long io_base_phys;
35
36 /* Some machines have a non 1:1 mapping of
37 * the PCI memory space in the CPU bus space
38 */
39 unsigned long pci_mem_offset;
40 unsigned long pci_io_size;
41
42 struct pci_ops *ops;
43 volatile unsigned int __iomem *cfg_addr;
Paul Mackerras17a63922005-10-20 21:10:09 +100044 volatile void __iomem *cfg_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46 /* Currently, we limit ourselves to 1 IO range and 3 mem
47 * ranges since the common pci_bus structure can't handle more
48 */
49 struct resource io_resource;
50 struct resource mem_resources[3];
51 int global_number;
52 int local_number;
53 unsigned long buid;
54 unsigned long dma_window_base_cur;
55 unsigned long dma_window_size;
56};
57
Paul Mackerras16353172005-09-06 13:17:54 +100058/*
59 * PCI stuff, for nodes representing PCI devices, pointed to
60 * by device_node->data.
61 */
62struct pci_controller;
63struct iommu_table;
64
65struct pci_dn {
Linas Vepstas7684b402005-11-03 18:55:19 -060066 int busno; /* pci bus number */
67 int bussubno; /* pci subordinate bus number */
68 int devfn; /* pci device and function number */
69 int class_code; /* pci device class */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +110070
71#ifdef CONFIG_PPC_PSERIES
Paul Mackerras16353172005-09-06 13:17:54 +100072 int eeh_mode; /* See eeh.h for possible EEH_MODEs */
73 int eeh_config_addr;
Linas Vepstas25e591f2005-11-03 18:53:20 -060074 int eeh_pe_config_addr; /* new-style partition endpoint address */
Paul Mackerras16353172005-09-06 13:17:54 +100075 int eeh_check_count; /* # times driver ignored error */
76 int eeh_freeze_count; /* # times this device froze up. */
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +110077#endif
Paul Mackerras16353172005-09-06 13:17:54 +100078 int pci_ext_config_space; /* for pci devices */
79 struct pci_controller *phb; /* for pci devices */
80 struct iommu_table *iommu_table; /* for phb's or bridges */
81 struct pci_dev *pcidev; /* back-pointer to the pci device */
82 struct device_node *node; /* back-pointer to the device_node */
83 u32 config_space[16]; /* saved PCI config space */
84};
85
86/* Get the pointer to a device_node's pci_dn */
87#define PCI_DN(dn) ((struct pci_dn *) (dn)->data)
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089struct device_node *fetch_dev_dn(struct pci_dev *dev);
90
Paul Mackerras16353172005-09-06 13:17:54 +100091/* Get a device_node from a pci_dev. This code must be fast except
92 * in the case where the sysdata is incorrect and needs to be fixed
93 * up (this will only happen once).
94 * In this case the sysdata will have been inherited from a PCI host
95 * bridge or a PCI-PCI bridge further up the tree, so it will point
96 * to a valid struct pci_dn, just not the one we want.
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
98static inline struct device_node *pci_device_to_OF_node(struct pci_dev *dev)
99{
100 struct device_node *dn = dev->sysdata;
Paul Mackerras16353172005-09-06 13:17:54 +1000101 struct pci_dn *pdn = dn->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Paul Mackerras16353172005-09-06 13:17:54 +1000103 if (pdn && pdn->devfn == dev->devfn && pdn->busno == dev->bus->number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return dn; /* fast path. sysdata is good */
Paul Mackerras16353172005-09-06 13:17:54 +1000105 return fetch_dev_dn(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000108static inline int pci_device_from_OF_node(struct device_node *np,
109 u8 *bus, u8 *devfn)
110{
111 if (!PCI_DN(np))
112 return -ENODEV;
113 *bus = PCI_DN(np)->busno;
114 *devfn = PCI_DN(np)->devfn;
115 return 0;
116}
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static inline struct device_node *pci_bus_to_OF_node(struct pci_bus *bus)
119{
120 if (bus->self)
121 return pci_device_to_OF_node(bus->self);
122 else
123 return bus->sysdata; /* Must be root bus (PHB) */
124}
125
Linas Vepstas2bf6a8f2005-11-03 18:52:16 -0600126/** Find the bus corresponding to the indicated device node */
127struct pci_bus * pcibios_find_pci_bus(struct device_node *dn);
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129extern void pci_process_bridge_OF_ranges(struct pci_controller *hose,
Paul Mackerrasf7abbc12005-10-22 15:03:21 +1000130 struct device_node *dev, int primary);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Linas Vepstas2bf6a8f2005-11-03 18:52:16 -0600132/** Remove all of the PCI devices under this bus */
133void pcibios_remove_pci_devices(struct pci_bus *bus);
134
135/** Discover new pci devices under this bus, and add them */
136void pcibios_add_pci_devices(struct pci_bus * bus);
linas31087d72005-12-13 13:46:36 -0600137void pcibios_fixup_new_pci_devices(struct pci_bus *bus, int fix_bus);
Linas Vepstas2bf6a8f2005-11-03 18:52:16 -0600138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139extern int pcibios_remove_root_bus(struct pci_controller *phb);
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus)
142{
143 struct device_node *busdn = bus->sysdata;
144
145 BUG_ON(busdn == NULL);
Paul Mackerras16353172005-09-06 13:17:54 +1000146 return PCI_DN(busdn)->phb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +1100149extern struct pci_controller*
150pci_find_hose_for_OF_device(struct device_node* node);
151
Benjamin Herrenschmidtb5166cc2005-11-15 16:05:33 +1100152extern struct pci_controller *
153pcibios_alloc_controller(struct device_node *dev);
154extern void pcibios_free_controller(struct pci_controller *phb);
155
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100156#ifdef CONFIG_PCI
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +1100157extern unsigned long pci_address_to_pio(phys_addr_t address);
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100158#else
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +1100159static inline unsigned long pci_address_to_pio(phys_addr_t address)
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100160{
Benjamin Herrenschmidtf2c45832005-12-15 15:00:57 +1100161 return (unsigned long)-1;
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100162}
163#endif
164
Paul Mackerras42672922005-09-12 17:17:36 +1000165/* Return values for ppc_md.pci_probe_mode function */
166#define PCI_PROBE_NONE -1 /* Don't look at this bus at all */
167#define PCI_PROBE_NORMAL 0 /* Do normal PCI probing */
168#define PCI_PROBE_DEVTREE 1 /* Instantiate from device tree */
169
Anton Blanchard357518f2006-06-10 20:53:06 +1000170#ifdef CONFIG_NUMA
171#define PHB_SET_NODE(PHB, NODE) ((PHB)->node = (NODE))
172#else
173#define PHB_SET_NODE(PHB, NODE) ((PHB)->node = -1)
174#endif
175
Paul Mackerras047ea782005-11-19 20:17:32 +1100176#endif /* CONFIG_PPC64 */
Arnd Bergmann88ced032005-12-16 22:43:46 +0100177#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#endif