1
2
3
4
5
6
7
8
9#ifndef _ASM_POWERPC_PPC_PCI_H
10#define _ASM_POWERPC_PPC_PCI_H
11#ifdef __KERNEL__
12
13#ifdef CONFIG_PCI
14
15#include <linux/pci.h>
16#include <asm/pci-bridge.h>
17
18extern unsigned long isa_io_base;
19
20extern void pci_setup_phb_io(struct pci_controller *hose, int primary);
21extern void pci_setup_phb_io_dynamic(struct pci_controller *hose, int primary);
22
23
24extern struct list_head hose_list;
25extern int global_phb_number;
26
27extern void find_and_init_phbs(void);
28
29extern struct pci_dev *isa_bridge_pcidev;
30
31
32#define BUID_HI(buid) ((buid) >> 32)
33#define BUID_LO(buid) ((buid) & 0xffffffff)
34
35
36struct device_node;
37typedef void *(*traverse_func)(struct device_node *me, void *data);
38void *traverse_pci_devices(struct device_node *start, traverse_func pre,
39 void *data);
40
41extern void pci_devs_phb_init(void);
42extern void pci_devs_phb_init_dynamic(struct pci_controller *phb);
43extern void scan_phb(struct pci_controller *hose);
44
45
46extern void init_pci_config_tokens (void);
47extern unsigned long get_phb_buid (struct device_node *);
48extern int rtas_setup_phb(struct pci_controller *phb);
49
50
51extern void iSeries_pcibios_init(void);
52
53extern unsigned long pci_probe_only;
54
55
56#ifdef CONFIG_EEH
57
58void pci_addr_cache_insert_device(struct pci_dev *dev);
59void pci_addr_cache_remove_device(struct pci_dev *dev);
60void pci_addr_cache_build(void);
61struct pci_dev *pci_get_device_by_addr(unsigned long addr);
62
63
64
65
66
67
68
69
70
71#define EEH_LOG_TEMP_FAILURE 1
72#define EEH_LOG_PERM_FAILURE 2
73void eeh_slot_error_detail (struct pci_dn *pdn, int severity);
74
75
76
77
78
79
80
81
82#define EEH_THAW_MMIO 2
83#define EEH_THAW_DMA 3
84int rtas_pci_enable(struct pci_dn *pdn, int function);
85
86
87
88
89
90
91
92
93
94
95
96
97int rtas_set_slot_reset (struct pci_dn *);
98int eeh_wait_for_slot_status(struct pci_dn *pdn, int max_wait_msecs);
99
100
101
102
103
104
105
106
107
108
109void eeh_restore_bars(struct pci_dn *);
110
111
112
113
114
115
116
117
118
119
120
121void rtas_configure_bridge(struct pci_dn *);
122
123int rtas_write_config(struct pci_dn *, int where, int size, u32 val);
124int rtas_read_config(struct pci_dn *, int where, int size, u32 *val);
125
126
127
128
129
130
131
132
133void eeh_mark_slot (struct device_node *dn, int mode_flag);
134void eeh_clear_slot (struct device_node *dn, int mode_flag);
135
136
137
138
139
140struct device_node * find_device_pe(struct device_node *dn);
141
142void eeh_sysfs_add_device(struct pci_dev *pdev);
143void eeh_sysfs_remove_device(struct pci_dev *pdev);
144
145#endif
146
147#else
148static inline void find_and_init_phbs(void) { }
149static inline void init_pci_config_tokens(void) { }
150#endif
151
152#endif
153#endif
154