ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / pci / hotplug / shpchp.h
1 /*
2  * Standard Hot Plug Controller Driver
3  *
4  * Copyright (C) 1995,2001 Compaq Computer Corporation
5  * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6  * Copyright (C) 2001 IBM
7  * Copyright (C) 2003-2004 Intel Corporation
8  *
9  * All rights reserved.
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or (at
14  * your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful, but
17  * WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
19  * NON INFRINGEMENT.  See the GNU General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25  *
26  * Send feedback to <greg@kroah.com>,<dely.l.sy@intel.com>
27  *
28  */
29 #ifndef _SHPCHP_H
30 #define _SHPCHP_H
31
32 #include <linux/types.h>
33 #include <linux/pci.h>
34 #include <asm/semaphore.h>
35 #include <asm/io.h>             
36 #include "pci_hotplug.h"
37
38 #if !defined(CONFIG_HOTPLUG_PCI_SHPC_MODULE)
39         #define MY_NAME "shpchp"
40 #else
41         #define MY_NAME THIS_MODULE->name
42 #endif
43
44 extern int shpchp_poll_mode;
45 extern int shpchp_poll_time;
46 extern int shpchp_debug;
47
48 /*#define dbg(format, arg...) do { if (shpchp_debug) printk(KERN_DEBUG "%s: " format, MY_NAME , ## arg); } while (0)*/
49 #define dbg(format, arg...) do { if (shpchp_debug) printk("%s: " format, MY_NAME , ## arg); } while (0)
50 #define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME , ## arg)
51 #define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME , ## arg)
52 #define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME , ## arg)
53
54 struct pci_func {
55         struct pci_func *next;
56         u8 bus;
57         u8 device;
58         u8 function;
59         u8 is_a_board;
60         u16 status;
61         u8 configured;
62         u8 switch_save;
63         u8 presence_save;
64         u32 base_length[0x06];
65         u8 base_type[0x06];
66         u16 reserved2;
67         u32 config_space[0x20];
68         struct pci_resource *mem_head;
69         struct pci_resource *p_mem_head;
70         struct pci_resource *io_head;
71         struct pci_resource *bus_head;
72         struct pci_dev* pci_dev;
73 };
74
75 #define SLOT_MAGIC      0x67267321
76 struct slot {
77         u32 magic;
78         struct slot *next;
79         u8 bus;
80         u8 device;
81         u32 number;
82         u8 is_a_board;
83         u8 configured;
84         u8 state;
85         u8 switch_save;
86         u8 presence_save;
87         u32 capabilities;
88         u16 reserved2;
89         struct timer_list task_event;
90         u8 hp_slot;
91         struct controller *ctrl;
92         struct hpc_ops *hpc_ops;
93         struct hotplug_slot *hotplug_slot;
94         struct list_head        slot_list;
95 };
96
97 struct pci_resource {
98         struct pci_resource * next;
99         u32 base;
100         u32 length;
101 };
102
103 struct event_info {
104         u32 event_type;
105         u8 hp_slot;
106 };
107
108 struct controller {
109         struct controller *next;
110         struct semaphore crit_sect;     /* critical section semaphore */
111         void * hpc_ctlr_handle;         /* HPC controller handle */
112         int num_slots;                  /* Number of slots on ctlr */
113         int slot_num_inc;               /* 1 or -1 */
114         struct pci_resource *mem_head;
115         struct pci_resource *p_mem_head;
116         struct pci_resource *io_head;
117         struct pci_resource *bus_head;
118         struct pci_dev *pci_dev;
119         struct pci_bus *pci_bus;
120         struct event_info event_queue[10];
121         struct slot *slot;
122         struct hpc_ops *hpc_ops;
123         wait_queue_head_t queue;        /* sleep & wake process */
124         u8 next_event;
125         u8 seg;
126         u8 bus;
127         u8 device;
128         u8 function;
129         u8 rev;
130         u8 slot_device_offset;
131         u8 add_support;
132         enum pci_bus_speed speed;
133         u32 first_slot;         /* First physical slot number */
134         u8 slot_bus;            /* Bus where the slots handled by this controller sit */
135         u8 push_flag;
136         u16 ctlrcap;
137         u16 vendor_id;
138 };
139
140 struct irq_mapping {
141         u8 barber_pole;
142         u8 valid_INT;
143         u8 interrupt[4];
144 };
145
146 struct resource_lists {
147         struct pci_resource *mem_head;
148         struct pci_resource *p_mem_head;
149         struct pci_resource *io_head;
150         struct pci_resource *bus_head;
151         struct irq_mapping *irqs;
152 };
153
154 /* Define AMD SHPC ID  */
155 #define PCI_DEVICE_ID_AMD_GOLAM_7450    0x7450 
156
157 #define INT_BUTTON_IGNORE               0
158 #define INT_PRESENCE_ON                 1
159 #define INT_PRESENCE_OFF                2
160 #define INT_SWITCH_CLOSE                3
161 #define INT_SWITCH_OPEN                 4
162 #define INT_POWER_FAULT                 5
163 #define INT_POWER_FAULT_CLEAR           6
164 #define INT_BUTTON_PRESS                7
165 #define INT_BUTTON_RELEASE              8
166 #define INT_BUTTON_CANCEL               9
167
168 #define STATIC_STATE                    0
169 #define BLINKINGON_STATE                1
170 #define BLINKINGOFF_STATE               2
171 #define POWERON_STATE                   3
172 #define POWEROFF_STATE                  4
173
174 #define PCI_TO_PCI_BRIDGE_CLASS         0x00060400
175
176 /* Error messages */
177 #define INTERLOCK_OPEN                  0x00000002
178 #define ADD_NOT_SUPPORTED               0x00000003
179 #define CARD_FUNCTIONING                0x00000005
180 #define ADAPTER_NOT_SAME                0x00000006
181 #define NO_ADAPTER_PRESENT              0x00000009
182 #define NOT_ENOUGH_RESOURCES            0x0000000B
183 #define DEVICE_TYPE_NOT_SUPPORTED       0x0000000C
184 #define WRONG_BUS_FREQUENCY             0x0000000D
185 #define POWER_FAILURE                   0x0000000E
186
187 #define REMOVE_NOT_SUPPORTED            0x00000003
188
189 #define DISABLE_CARD                    1
190
191 /*
192  * error Messages
193  */
194 #define msg_initialization_err  "Initialization failure, error=%d\n"
195 #define msg_HPC_rev_error       "Unsupported revision of the PCI hot plug controller found.\n"
196 #define msg_HPC_non_shpc        "The PCI hot plug controller is not supported by this driver.\n"
197 #define msg_HPC_not_supported   "This system is not supported by this version of shpcphd mdoule. Upgrade to a newer version of shpchpd\n"
198 #define msg_unable_to_save      "Unable to store PCI hot plug add resource information. This system must be rebooted before adding any PCI devices.\n"
199 #define msg_button_on           "PCI slot #%d - powering on due to button press.\n"
200 #define msg_button_off          "PCI slot #%d - powering off due to button press.\n"
201 #define msg_button_cancel       "PCI slot #%d - action canceled due to button press.\n"
202 #define msg_button_ignore       "PCI slot #%d - button press ignored.  (action in progress...)\n"
203
204 /* sysfs functions for the hotplug controller info */
205 extern void shpchp_create_ctrl_files    (struct controller *ctrl);
206
207 /* controller functions */
208 extern void     shpchp_pushbutton_thread(unsigned long event_pointer);
209 extern int      shpchprm_find_available_resources(struct controller *ctrl);
210 extern int      shpchp_event_start_thread(void);
211 extern void     shpchp_event_stop_thread(void);
212 extern struct   pci_func *shpchp_slot_create(unsigned char busnumber);
213 extern struct   pci_func *shpchp_slot_find(unsigned char bus, unsigned char device, unsigned char index);
214 extern int      shpchp_enable_slot(struct slot *slot);
215 extern int      shpchp_disable_slot(struct slot *slot);
216
217 extern u8       shpchp_handle_attention_button(u8 hp_slot, void *inst_id);
218 extern u8       shpchp_handle_switch_change(u8 hp_slot, void *inst_id);
219 extern u8       shpchp_handle_presence_change(u8 hp_slot, void *inst_id);
220 extern u8       shpchp_handle_power_fault(u8 hp_slot, void *inst_id);
221
222 /* resource functions */
223 extern int      shpchp_resource_sort_and_combine(struct pci_resource **head);
224
225 /* pci functions */
226 extern int      shpchp_set_irq(u8 bus_num, u8 dev_num, u8 int_pin, u8 irq_num);
227 /*extern int    shpchp_get_bus_dev(struct controller *ctrl, u8 *bus_num, u8 *dev_num, struct slot *slot);*/
228 extern int      shpchp_save_config(struct controller *ctrl, int busnumber, int num_ctlr_slots, int first_device_num);
229 extern int      shpchp_save_used_resources(struct controller *ctrl, struct pci_func * func, int flag);
230 extern int      shpchp_save_slot_config(struct controller *ctrl, struct pci_func * new_slot);
231 extern void     shpchp_destroy_board_resources(struct pci_func * func);
232 extern int      shpchp_return_board_resources(struct pci_func * func, struct resource_lists * resources);
233 extern void     shpchp_destroy_resource_list(struct resource_lists * resources);
234 extern int      shpchp_configure_device(struct controller* ctrl, struct pci_func* func);
235 extern int      shpchp_unconfigure_device(struct pci_func* func);
236
237
238 /* Global variables */
239 extern struct controller *shpchp_ctrl_list;
240 extern struct pci_func *shpchp_slot_list[256];
241
242 /* These are added to support AMD shpc */
243 extern u8 shpchp_nic_irq;
244 extern u8 shpchp_disk_irq;
245
246 struct ctrl_reg {
247         volatile u32 base_offset;
248         volatile u32 slot_avail1;
249         volatile u32 slot_avail2;
250         volatile u32 slot_config;
251         volatile u16 sec_bus_config;
252         volatile u8  msi_ctrl;
253         volatile u8  prog_interface;
254         volatile u16 cmd;
255         volatile u16 cmd_status;
256         volatile u32 intr_loc;
257         volatile u32 serr_loc;
258         volatile u32 serr_intr_enable;
259         volatile u32 slot1;
260         volatile u32 slot2;
261         volatile u32 slot3;
262         volatile u32 slot4;
263         volatile u32 slot5;
264         volatile u32 slot6;
265         volatile u32 slot7;
266         volatile u32 slot8;
267         volatile u32 slot9;
268         volatile u32 slot10;
269         volatile u32 slot11;
270         volatile u32 slot12;
271 } __attribute__ ((packed));
272
273 /* offsets to the controller registers based on the above structure layout */
274 enum ctrl_offsets {
275         BASE_OFFSET =   offsetof(struct ctrl_reg, base_offset),
276         SLOT_AVAIL1 =   offsetof(struct ctrl_reg, slot_avail1),
277         SLOT_AVAIL2     =       offsetof(struct ctrl_reg, slot_avail2),
278         SLOT_CONFIG =   offsetof(struct ctrl_reg, slot_config),
279         SEC_BUS_CONFIG =        offsetof(struct ctrl_reg, sec_bus_config),
280         MSI_CTRL        =       offsetof(struct ctrl_reg, msi_ctrl),
281         PROG_INTERFACE =        offsetof(struct ctrl_reg, prog_interface),
282         CMD             =       offsetof(struct ctrl_reg, cmd),
283         CMD_STATUS      =       offsetof(struct ctrl_reg, cmd_status),
284         INTR_LOC        =       offsetof(struct ctrl_reg, intr_loc),
285         SERR_LOC        =       offsetof(struct ctrl_reg, serr_loc),
286         SERR_INTR_ENABLE =      offsetof(struct ctrl_reg, serr_intr_enable),
287         SLOT1 =         offsetof(struct ctrl_reg, slot1),
288         SLOT2 =         offsetof(struct ctrl_reg, slot2),
289         SLOT3 =         offsetof(struct ctrl_reg, slot3),
290         SLOT4 =         offsetof(struct ctrl_reg, slot4),
291         SLOT5 =         offsetof(struct ctrl_reg, slot5),
292         SLOT6 =         offsetof(struct ctrl_reg, slot6),               
293         SLOT7 =         offsetof(struct ctrl_reg, slot7),
294         SLOT8 =         offsetof(struct ctrl_reg, slot8),
295         SLOT9 =         offsetof(struct ctrl_reg, slot9),
296         SLOT10 =        offsetof(struct ctrl_reg, slot10),
297         SLOT11 =        offsetof(struct ctrl_reg, slot11),
298         SLOT12 =        offsetof(struct ctrl_reg, slot12),
299 };
300 typedef u8(*php_intr_callback_t) (unsigned int change_id, void *instance_id);
301 struct php_ctlr_state_s {
302         struct php_ctlr_state_s *pnext;
303         struct pci_dev *pci_dev;
304         unsigned int irq;
305         unsigned long flags;    /* spinlock's */
306         u32 slot_device_offset;
307         u32 num_slots;
308         struct timer_list       int_poll_timer; /* Added for poll event */
309         php_intr_callback_t attention_button_callback;
310         php_intr_callback_t switch_change_callback;
311         php_intr_callback_t presence_change_callback;
312         php_intr_callback_t power_fault_callback;
313         void *callback_instance_id;
314         void *creg;                             /* Ptr to controller register space */
315 };
316 /* Inline functions */
317
318
319 /* Inline functions to check the sanity of a pointer that is passed to us */
320 static inline int slot_paranoia_check (struct slot *slot, const char *function)
321 {
322         if (!slot) {
323                 dbg("%s - slot == NULL", function);
324                 return -1;
325         }
326         if (slot->magic != SLOT_MAGIC) {
327                 dbg("%s - bad magic number for slot", function);
328                 return -1;
329         }
330         if (!slot->hotplug_slot) {
331                 dbg("%s - slot->hotplug_slot == NULL!", function);
332                 return -1;
333         }
334         return 0;
335 }
336
337 static inline struct slot *get_slot (struct hotplug_slot *hotplug_slot, const char *function)
338
339         struct slot *slot;
340
341         if (!hotplug_slot) {
342                 dbg("%s - hotplug_slot == NULL\n", function);
343                 return NULL;
344         }
345
346         slot = (struct slot *)hotplug_slot->private;
347         if (slot_paranoia_check (slot, function))
348                 return NULL;
349         return slot;
350 }
351
352 static inline struct slot *shpchp_find_slot (struct controller *ctrl, u8 device)
353 {
354         struct slot *p_slot, *tmp_slot = NULL;
355
356         if (!ctrl)
357                 return NULL;
358
359         p_slot = ctrl->slot;
360
361         dbg("p_slot = %p\n", p_slot);
362
363         while (p_slot && (p_slot->device != device)) {
364                 tmp_slot = p_slot;
365                 p_slot = p_slot->next;
366                 dbg("In while loop, p_slot = %p\n", p_slot);
367         }
368         if (p_slot == NULL) {
369                 err("ERROR: shpchp_find_slot device=0x%x\n", device);
370                 p_slot = tmp_slot;
371         }
372
373         return (p_slot);
374 }
375
376 static inline int wait_for_ctrl_irq (struct controller *ctrl)
377 {
378     DECLARE_WAITQUEUE(wait, current);
379         int retval = 0;
380
381         dbg("%s : start\n",__FUNCTION__);
382
383         add_wait_queue(&ctrl->queue, &wait);
384         set_current_state(TASK_INTERRUPTIBLE);
385
386         if (!shpchp_poll_mode) {
387                 /* Sleep for up to 1 second */
388                 schedule_timeout(1*HZ);
389         } else {
390                 /* Sleep for up to 2 seconds */
391                 schedule_timeout(2*HZ);
392         }
393         set_current_state(TASK_RUNNING);
394         remove_wait_queue(&ctrl->queue, &wait);
395         if (signal_pending(current))
396                 retval =  -EINTR;
397
398         dbg("%s : end\n", __FUNCTION__);
399         return retval;
400 }
401
402 /* Puts node back in the resource list pointed to by head */
403 static inline void return_resource(struct pci_resource **head, struct pci_resource *node)
404 {
405         if (!node || !head)
406                 return;
407         node->next = *head;
408         *head = node;
409 }
410
411 #define SLOT_NAME_SIZE 10
412
413 static inline void make_slot_name(char *buffer, int buffer_size, struct slot *slot)
414 {
415         snprintf(buffer, buffer_size, "%d", slot->number);
416 }
417
418 enum php_ctlr_type {
419         PCI,
420         ISA,
421         ACPI
422 };
423
424 int shpc_init( struct controller *ctrl, struct pci_dev *pdev,
425                 php_intr_callback_t attention_button_callback,
426                 php_intr_callback_t switch_change_callback,
427                 php_intr_callback_t presence_change_callback,
428                 php_intr_callback_t power_fault_callback);
429
430 int shpc_get_ctlr_slot_config( struct controller *ctrl,
431                 int *num_ctlr_slots,
432                 int *first_device_num,
433                 int *physical_slot_num,
434                 int *updown,
435                 int *flags);
436
437 struct hpc_ops {
438         int     (*power_on_slot )               (struct slot *slot);
439         int     (*slot_enable )                 (struct slot *slot);
440         int     (*slot_disable )                (struct slot *slot);
441         int     (*enable_all_slots)             (struct slot *slot);
442         int     (*pwr_on_all_slots)             (struct slot *slot);
443         int     (*set_bus_speed_mode)   (struct slot *slot, enum pci_bus_speed speed);
444         int     (*get_power_status)             (struct slot *slot, u8 *status);
445         int     (*get_attention_status) (struct slot *slot, u8 *status);
446         int     (*set_attention_status) (struct slot *slot, u8 status);
447         int     (*get_latch_status)             (struct slot *slot, u8 *status);
448         int     (*get_adapter_status)   (struct slot *slot, u8 *status);
449
450         int     (*get_max_bus_speed)    (struct slot *slot, enum pci_bus_speed *speed);
451         int     (*get_cur_bus_speed)    (struct slot *slot, enum pci_bus_speed *speed);
452         int     (*get_adapter_speed)    (struct slot *slot, enum pci_bus_speed *speed);
453         int     (*get_mode1_ECC_cap)    (struct slot *slot, u8 *mode);
454         int     (*get_prog_int)                 (struct slot *slot, u8 *prog_int);
455
456         int     (*query_power_fault)    (struct slot *slot);
457         void    (*green_led_on)         (struct slot *slot);
458         void    (*green_led_off)        (struct slot *slot);
459         void    (*green_led_blink)      (struct slot *slot);
460         void    (*release_ctlr)         (struct controller *ctrl);
461         int (*check_cmd_status)         (struct controller *ctrl);
462 };
463
464 #endif                          /* _SHPCHP_H */