]> err.no Git - linux-2.6/blob - include/asm-powerpc/pci-bridge.h
[PATCH] powerpc: reorg RTAS delay code
[linux-2.6] / include / asm-powerpc / pci-bridge.h
1 #ifndef _ASM_POWERPC_PCI_BRIDGE_H
2 #define _ASM_POWERPC_PCI_BRIDGE_H
3 #ifdef __KERNEL__
4
5 #ifndef CONFIG_PPC64
6 #include <asm-ppc/pci-bridge.h>
7 #else
8
9 #include <linux/pci.h>
10 #include <linux/list.h>
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;
42         volatile void __iomem *cfg_data;
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
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 {
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 */
68
69 #ifdef CONFIG_PPC_PSERIES
70         int     eeh_mode;               /* See eeh.h for possible EEH_MODEs */
71         int     eeh_config_addr;
72         int     eeh_pe_config_addr; /* new-style partition endpoint address */
73         int     eeh_check_count;        /* # times driver ignored error */
74         int     eeh_freeze_count;       /* # times this device froze up. */
75 #endif
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 */
81         u32     config_space[16];       /* saved PCI config space */
82 };
83
84 /* Get the pointer to a device_node's pci_dn */
85 #define PCI_DN(dn)      ((struct pci_dn *) (dn)->data)
86
87 struct device_node *fetch_dev_dn(struct pci_dev *dev);
88
89 /* Get a device_node from a pci_dev.  This code must be fast except
90  * in the case where the sysdata is incorrect and needs to be fixed
91  * up (this will only happen once).
92  * In this case the sysdata will have been inherited from a PCI host
93  * bridge or a PCI-PCI bridge further up the tree, so it will point
94  * to a valid struct pci_dn, just not the one we want.
95  */
96 static inline struct device_node *pci_device_to_OF_node(struct pci_dev *dev)
97 {
98         struct device_node *dn = dev->sysdata;
99         struct pci_dn *pdn = dn->data;
100
101         if (pdn && pdn->devfn == dev->devfn && pdn->busno == dev->bus->number)
102                 return dn;      /* fast path.  sysdata is good */
103         return fetch_dev_dn(dev);
104 }
105
106 static inline int pci_device_from_OF_node(struct device_node *np,
107                                           u8 *bus, u8 *devfn)
108 {
109         if (!PCI_DN(np))
110                 return -ENODEV;
111         *bus = PCI_DN(np)->busno;
112         *devfn = PCI_DN(np)->devfn;
113         return 0;
114 }
115
116 static inline struct device_node *pci_bus_to_OF_node(struct pci_bus *bus)
117 {
118         if (bus->self)
119                 return pci_device_to_OF_node(bus->self);
120         else
121                 return bus->sysdata; /* Must be root bus (PHB) */
122 }
123
124 /** Find the bus corresponding to the indicated device node */
125 struct pci_bus * pcibios_find_pci_bus(struct device_node *dn);
126
127 extern void pci_process_bridge_OF_ranges(struct pci_controller *hose,
128                                          struct device_node *dev, int primary);
129
130 /** Remove all of the PCI devices under this bus */
131 void pcibios_remove_pci_devices(struct pci_bus *bus);
132
133 /** Discover new pci devices under this bus, and add them */
134 void pcibios_add_pci_devices(struct pci_bus * bus);
135 void pcibios_fixup_new_pci_devices(struct pci_bus *bus, int fix_bus);
136
137 extern int pcibios_remove_root_bus(struct pci_controller *phb);
138
139 static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus)
140 {
141         struct device_node *busdn = bus->sysdata;
142
143         BUG_ON(busdn == NULL);
144         return PCI_DN(busdn)->phb;
145 }
146
147 extern struct pci_controller*
148 pci_find_hose_for_OF_device(struct device_node* node);
149
150 extern struct pci_controller *
151 pcibios_alloc_controller(struct device_node *dev);
152 extern void pcibios_free_controller(struct pci_controller *phb);
153
154 #ifdef CONFIG_PCI
155 extern unsigned long pci_address_to_pio(phys_addr_t address);
156 #else
157 static inline unsigned long pci_address_to_pio(phys_addr_t address)
158 {
159         return (unsigned long)-1;
160 }
161 #endif
162
163 /* Return values for ppc_md.pci_probe_mode function */
164 #define PCI_PROBE_NONE          -1      /* Don't look at this bus at all */
165 #define PCI_PROBE_NORMAL        0       /* Do normal PCI probing */
166 #define PCI_PROBE_DEVTREE       1       /* Instantiate from device tree */
167
168 #endif /* CONFIG_PPC64 */
169 #endif /* __KERNEL__ */
170 #endif