1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35#ifndef _ACPIPHP_H
36#define _ACPIPHP_H
37
38#include <linux/acpi.h>
39#include <linux/kobject.h>
40#include <linux/mutex.h>
41#include <linux/pci_hotplug.h>
42
43#define dbg(format, arg...) \
44 do { \
45 if (acpiphp_debug) \
46 printk(KERN_DEBUG "%s: " format, \
47 MY_NAME , ## arg); \
48 } while (0)
49#define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME , ## arg)
50#define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME , ## arg)
51#define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME , ## arg)
52
53struct acpiphp_bridge;
54struct acpiphp_slot;
55
56
57
58
59struct slot {
60 struct hotplug_slot *hotplug_slot;
61 struct acpiphp_slot *acpi_slot;
62 struct hotplug_slot_info info;
63};
64
65static inline const char *slot_name(struct slot *slot)
66{
67 return hotplug_slot_name(slot->hotplug_slot);
68}
69
70
71
72
73
74
75struct acpiphp_bridge {
76 struct list_head list;
77 acpi_handle handle;
78 struct acpiphp_slot *slots;
79
80
81 struct acpiphp_func *func;
82
83 int type;
84 int nr_slots;
85
86 u32 flags;
87
88
89 struct pci_bus *pci_bus;
90
91
92 struct pci_dev *pci_dev;
93
94
95 struct hotplug_params hpp;
96
97 spinlock_t res_lock;
98};
99
100
101
102
103
104
105
106struct acpiphp_slot {
107 struct acpiphp_slot *next;
108 struct acpiphp_bridge *bridge;
109 struct list_head funcs;
110
111 struct slot *slot;
112 struct mutex crit_sect;
113
114 u8 device;
115
116 unsigned long long sun;
117 u32 flags;
118};
119
120
121
122
123
124
125
126
127struct acpiphp_func {
128 struct acpiphp_slot *slot;
129 struct acpiphp_bridge *bridge;
130
131 struct list_head sibling;
132 struct notifier_block nb;
133 acpi_handle handle;
134
135 u8 function;
136 u32 flags;
137};
138
139
140
141
142
143
144
145struct acpiphp_attention_info
146{
147 int (*set_attn)(struct hotplug_slot *slot, u8 status);
148 int (*get_attn)(struct hotplug_slot *slot, u8 *status);
149 struct module *owner;
150};
151
152struct acpiphp_ioapic {
153 struct pci_dev *dev;
154 u32 gsi_base;
155 struct list_head list;
156};
157
158
159#define ACPI_PCI_HOST_HID "PNP0A03"
160
161
162#define BRIDGE_TYPE_HOST 0
163#define BRIDGE_TYPE_P2P 1
164
165
166#define ACPI_STA_PRESENT (0x00000001)
167#define ACPI_STA_ENABLED (0x00000002)
168#define ACPI_STA_SHOW_IN_UI (0x00000004)
169#define ACPI_STA_FUNCTIONING (0x00000008)
170#define ACPI_STA_ALL (0x0000000f)
171
172
173#define BRIDGE_HAS_STA (0x00000001)
174#define BRIDGE_HAS_EJ0 (0x00000002)
175#define BRIDGE_HAS_HPP (0x00000004)
176#define BRIDGE_HAS_PS0 (0x00000010)
177#define BRIDGE_HAS_PS1 (0x00000020)
178#define BRIDGE_HAS_PS2 (0x00000040)
179#define BRIDGE_HAS_PS3 (0x00000080)
180
181
182
183#define SLOT_POWEREDON (0x00000001)
184#define SLOT_ENABLED (0x00000002)
185#define SLOT_MULTIFUNCTION (0x00000004)
186
187
188
189#define FUNC_HAS_STA (0x00000001)
190#define FUNC_HAS_EJ0 (0x00000002)
191#define FUNC_HAS_PS0 (0x00000010)
192#define FUNC_HAS_PS1 (0x00000020)
193#define FUNC_HAS_PS2 (0x00000040)
194#define FUNC_HAS_PS3 (0x00000080)
195#define FUNC_HAS_DCK (0x00000100)
196
197
198
199
200extern int acpiphp_register_attention(struct acpiphp_attention_info*info);
201extern int acpiphp_unregister_attention(struct acpiphp_attention_info *info);
202extern int acpiphp_register_hotplug_slot(struct acpiphp_slot *slot);
203extern void acpiphp_unregister_hotplug_slot(struct acpiphp_slot *slot);
204
205
206extern int acpiphp_glue_init (void);
207extern void acpiphp_glue_exit (void);
208extern int acpiphp_get_num_slots (void);
209typedef int (*acpiphp_callback)(struct acpiphp_slot *slot, void *data);
210
211extern int acpiphp_enable_slot (struct acpiphp_slot *slot);
212extern int acpiphp_disable_slot (struct acpiphp_slot *slot);
213extern int acpiphp_eject_slot (struct acpiphp_slot *slot);
214extern u8 acpiphp_get_power_status (struct acpiphp_slot *slot);
215extern u8 acpiphp_get_attention_status (struct acpiphp_slot *slot);
216extern u8 acpiphp_get_latch_status (struct acpiphp_slot *slot);
217extern u8 acpiphp_get_adapter_status (struct acpiphp_slot *slot);
218
219
220extern int acpiphp_debug;
221
222#endif
223