]> git.karo-electronics.de Git - karo-tx-linux.git/blob - include/asm-powerpc/pci-bridge.h
[POWERPC] Abolish unused ucBoardRev variables
[karo-tx-linux.git] / 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         int node;
26         void *arch_data;
27         struct list_head list_node;
28         struct device *parent;
29
30         int first_busno;
31         int last_busno;
32
33         void __iomem *io_base_virt;
34         void *io_base_alloc;
35         resource_size_t io_base_phys;
36
37         /* Some machines have a non 1:1 mapping of
38          * the PCI memory space in the CPU bus space
39          */
40         resource_size_t pci_mem_offset;
41         unsigned long pci_io_size;
42
43         struct pci_ops *ops;
44         volatile unsigned int __iomem *cfg_addr;
45         volatile void __iomem *cfg_data;
46
47         /* Currently, we limit ourselves to 1 IO range and 3 mem
48          * ranges since the common pci_bus structure can't handle more
49          */
50         struct resource io_resource;
51         struct resource mem_resources[3];
52         int global_number;              
53         int local_number;               
54         unsigned long buid;
55         unsigned long dma_window_base_cur;
56         unsigned long dma_window_size;
57
58         void *private_data;
59 };
60
61 /*
62  * PCI stuff, for nodes representing PCI devices, pointed to
63  * by device_node->data.
64  */
65 struct pci_controller;
66 struct iommu_table;
67
68 struct pci_dn {
69         int     busno;                  /* pci bus number */
70         int     bussubno;               /* pci subordinate bus number */
71         int     devfn;                  /* pci device and function number */
72         int     class_code;             /* pci device class */
73
74         struct  pci_controller *phb;    /* for pci devices */
75         struct  iommu_table *iommu_table;       /* for phb's or bridges */
76         struct  pci_dev *pcidev;        /* back-pointer to the pci device */
77         struct  device_node *node;      /* back-pointer to the device_node */
78
79         int     pci_ext_config_space;   /* for pci devices */
80
81 #ifdef CONFIG_EEH
82         int     eeh_mode;               /* See eeh.h for possible EEH_MODEs */
83         int     eeh_config_addr;
84         int     eeh_pe_config_addr; /* new-style partition endpoint address */
85         int     eeh_check_count;        /* # times driver ignored error */
86         int     eeh_freeze_count;       /* # times this device froze up. */
87         int     eeh_false_positives;    /* # times this device reported #ff's */
88         u32     config_space[16];       /* saved PCI config space */
89 #endif
90 };
91
92 /* Get the pointer to a device_node's pci_dn */
93 #define PCI_DN(dn)      ((struct pci_dn *) (dn)->data)
94
95 struct device_node *fetch_dev_dn(struct pci_dev *dev);
96
97 /* Get a device_node from a pci_dev.  This code must be fast except
98  * in the case where the sysdata is incorrect and needs to be fixed
99  * up (this will only happen once).
100  * In this case the sysdata will have been inherited from a PCI host
101  * bridge or a PCI-PCI bridge further up the tree, so it will point
102  * to a valid struct pci_dn, just not the one we want.
103  */
104 static inline struct device_node *pci_device_to_OF_node(struct pci_dev *dev)
105 {
106         struct device_node *dn = dev->sysdata;
107         struct pci_dn *pdn = dn->data;
108
109         if (pdn && pdn->devfn == dev->devfn && pdn->busno == dev->bus->number)
110                 return dn;      /* fast path.  sysdata is good */
111         return fetch_dev_dn(dev);
112 }
113
114 static inline int pci_device_from_OF_node(struct device_node *np,
115                                           u8 *bus, u8 *devfn)
116 {
117         if (!PCI_DN(np))
118                 return -ENODEV;
119         *bus = PCI_DN(np)->busno;
120         *devfn = PCI_DN(np)->devfn;
121         return 0;
122 }
123
124 static inline struct device_node *pci_bus_to_OF_node(struct pci_bus *bus)
125 {
126         if (bus->self)
127                 return pci_device_to_OF_node(bus->self);
128         else
129                 return bus->sysdata; /* Must be root bus (PHB) */
130 }
131
132 /** Find the bus corresponding to the indicated device node */
133 struct pci_bus * pcibios_find_pci_bus(struct device_node *dn);
134
135 extern void pci_process_bridge_OF_ranges(struct pci_controller *hose,
136                                          struct device_node *dev, int primary);
137
138 /** Remove all of the PCI devices under this bus */
139 void pcibios_remove_pci_devices(struct pci_bus *bus);
140
141 /** Discover new pci devices under this bus, and add them */
142 void pcibios_add_pci_devices(struct pci_bus * bus);
143 void pcibios_fixup_new_pci_devices(struct pci_bus *bus, int fix_bus);
144
145 extern int pcibios_remove_root_bus(struct pci_controller *phb);
146
147 static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus)
148 {
149         struct device_node *busdn = bus->sysdata;
150
151         BUG_ON(busdn == NULL);
152         return PCI_DN(busdn)->phb;
153 }
154
155 extern struct pci_controller*
156 pci_find_hose_for_OF_device(struct device_node* node);
157
158 extern struct pci_controller *
159 pcibios_alloc_controller(struct device_node *dev);
160 extern void pcibios_free_controller(struct pci_controller *phb);
161
162 #ifdef CONFIG_PCI
163 extern unsigned long pci_address_to_pio(phys_addr_t address);
164 #else
165 static inline unsigned long pci_address_to_pio(phys_addr_t address)
166 {
167         return (unsigned long)-1;
168 }
169 #endif
170
171 extern void isa_bridge_find_early(struct pci_controller *hose);
172
173 extern int pcibios_unmap_io_space(struct pci_bus *bus);
174 extern int pcibios_map_io_space(struct pci_bus *bus);
175
176 /* Return values for ppc_md.pci_probe_mode function */
177 #define PCI_PROBE_NONE          -1      /* Don't look at this bus at all */
178 #define PCI_PROBE_NORMAL        0       /* Do normal PCI probing */
179 #define PCI_PROBE_DEVTREE       1       /* Instantiate from device tree */
180
181 #ifdef CONFIG_NUMA
182 #define PHB_SET_NODE(PHB, NODE)         ((PHB)->node = (NODE))
183 #else
184 #define PHB_SET_NODE(PHB, NODE)         ((PHB)->node = -1)
185 #endif
186
187 #endif /* CONFIG_PPC64 */
188 #endif /* __KERNEL__ */
189 #endif