This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / include / asm-ppc64 / pci-bridge.h
1 #ifdef __KERNEL__
2 #ifndef _ASM_PCI_BRIDGE_H
3 #define _ASM_PCI_BRIDGE_H
4
5 #include <linux/pci.h>
6
7 /*
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version
11  * 2 of the License, or (at your option) any later version.
12  */
13
14 struct device_node;
15 struct pci_controller;
16
17 /* Get the PCI host controller for an OF device */
18 extern struct pci_controller*
19 pci_find_hose_for_OF_device(struct device_node* node);
20
21 enum phb_types { 
22         phb_type_unknown    = 0x0,
23         phb_type_hypervisor = 0x1,
24         phb_type_python     = 0x10,
25         phb_type_speedwagon = 0x11,
26         phb_type_winnipeg   = 0x12,
27         phb_type_apple      = 0xff
28 };
29
30 /*
31  * Structure of a PCI controller (host bridge)
32  */
33 struct pci_controller {
34         char what[8];                     /* Eye catcher      */
35         enum phb_types type;              /* Type of hardware */
36         struct pci_bus *bus;
37         char is_dynamic;
38         void *arch_data;
39         struct list_head list_node;
40
41         int first_busno;
42         int last_busno;
43
44         void *io_base_virt;
45         unsigned long io_base_phys;
46
47         /* Some machines have a non 1:1 mapping of
48          * the PCI memory space in the CPU bus space
49          */
50         unsigned long pci_mem_offset;
51         unsigned long pci_io_size;
52
53         struct pci_ops *ops;
54         volatile unsigned int *cfg_addr;
55         volatile unsigned char *cfg_data;
56
57         /* Currently, we limit ourselves to 1 IO range and 3 mem
58          * ranges since the common pci_bus structure can't handle more
59          */
60         struct resource io_resource;
61         struct resource mem_resources[3];
62         int mem_resource_count;
63         int global_number;              
64         int local_number;               
65         unsigned long buid;
66         unsigned long dma_window_base_cur;
67         unsigned long dma_window_size;
68 };
69
70 /*
71  * pci_device_loc returns the bus number and device/function number
72  * for a device on a PCI bus, given its device_node struct.
73  * It returns 0 if OK, -1 on error.
74  */
75 extern int pci_device_loc(struct device_node *dev, unsigned char *bus_ptr,
76                           unsigned char *devfn_ptr);
77
78 struct device_node *fetch_dev_dn(struct pci_dev *dev);
79
80 extern int pcibios_remove_root_bus(struct pci_controller *phb);
81
82 /* Get a device_node from a pci_dev.  This code must be fast except in the case
83  * where the sysdata is incorrect and needs to be fixed up (hopefully just once)
84  */
85 static inline struct device_node *pci_device_to_OF_node(struct pci_dev *dev)
86 {
87         struct device_node *dn = (struct device_node *)(dev->sysdata);
88         if (dn->devfn == dev->devfn && dn->busno == (dev->bus->number&0xff))
89                 return dn;      /* fast path.  sysdata is good */
90         else
91                 return fetch_dev_dn(dev);
92 }
93
94 extern void pci_process_bridge_OF_ranges(struct pci_controller *hose,
95                                          struct device_node *dev);
96
97 /* Use this macro after the PCI bus walk for max performance when it
98  * is known that sysdata is correct.
99  */
100 #define PCI_GET_DN(dev) ((struct device_node *)((dev)->sysdata))
101
102 #endif
103 #endif /* __KERNEL__ */