blob: deea56c73cf253b5a322d110ffa3712ae8155aeb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Kristen Accardi8cf4c192005-08-16 15:16:10 -070026 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
28 */
29#ifndef _SHPCHP_H
30#define _SHPCHP_H
31
32#include <linux/types.h>
33#include <linux/pci.h>
34#include <linux/delay.h>
35#include <asm/semaphore.h>
36#include <asm/io.h>
37#include "pci_hotplug.h"
38
39#if !defined(MODULE)
40 #define MY_NAME "shpchp"
41#else
42 #define MY_NAME THIS_MODULE->name
43#endif
44
45extern int shpchp_poll_mode;
46extern int shpchp_poll_time;
47extern int shpchp_debug;
48
49/*#define dbg(format, arg...) do { if (shpchp_debug) printk(KERN_DEBUG "%s: " format, MY_NAME , ## arg); } while (0)*/
50#define dbg(format, arg...) do { if (shpchp_debug) printk("%s: " format, MY_NAME , ## arg); } while (0)
51#define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME , ## arg)
52#define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME , ## arg)
53#define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME , ## arg)
54
55struct pci_func {
56 struct pci_func *next;
57 u8 bus;
58 u8 device;
59 u8 function;
60 u8 is_a_board;
61 u16 status;
62 u8 configured;
63 u8 switch_save;
64 u8 presence_save;
65 u8 pwr_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 u32 config_space[0x20];
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct pci_dev* pci_dev;
68};
69
70#define SLOT_MAGIC 0x67267321
71struct slot {
72 u32 magic;
73 struct slot *next;
74 u8 bus;
75 u8 device;
76 u32 number;
77 u8 is_a_board;
78 u8 configured;
79 u8 state;
80 u8 switch_save;
81 u8 presence_save;
82 u32 capabilities;
83 u16 reserved2;
84 struct timer_list task_event;
85 u8 hp_slot;
86 struct controller *ctrl;
87 struct hpc_ops *hpc_ops;
88 struct hotplug_slot *hotplug_slot;
89 struct list_head slot_list;
90};
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092struct event_info {
93 u32 event_type;
94 u8 hp_slot;
95};
96
97struct controller {
98 struct controller *next;
99 struct semaphore crit_sect; /* critical section semaphore */
100 void * hpc_ctlr_handle; /* HPC controller handle */
101 int num_slots; /* Number of slots on ctlr */
102 int slot_num_inc; /* 1 or -1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 struct pci_dev *pci_dev;
104 struct pci_bus *pci_bus;
105 struct event_info event_queue[10];
106 struct slot *slot;
107 struct hpc_ops *hpc_ops;
108 wait_queue_head_t queue; /* sleep & wake process */
109 u8 next_event;
110 u8 seg;
111 u8 bus;
112 u8 device;
113 u8 function;
114 u8 rev;
115 u8 slot_device_offset;
116 u8 add_support;
117 enum pci_bus_speed speed;
118 u32 first_slot; /* First physical slot number */
119 u8 slot_bus; /* Bus where the slots handled by this controller sit */
120 u8 push_flag;
121 u16 ctlrcap;
122 u16 vendor_id;
123};
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/* Define AMD SHPC ID */
126#define PCI_DEVICE_ID_AMD_GOLAM_7450 0x7450
127
128#define INT_BUTTON_IGNORE 0
129#define INT_PRESENCE_ON 1
130#define INT_PRESENCE_OFF 2
131#define INT_SWITCH_CLOSE 3
132#define INT_SWITCH_OPEN 4
133#define INT_POWER_FAULT 5
134#define INT_POWER_FAULT_CLEAR 6
135#define INT_BUTTON_PRESS 7
136#define INT_BUTTON_RELEASE 8
137#define INT_BUTTON_CANCEL 9
138
139#define STATIC_STATE 0
140#define BLINKINGON_STATE 1
141#define BLINKINGOFF_STATE 2
142#define POWERON_STATE 3
143#define POWEROFF_STATE 4
144
145#define PCI_TO_PCI_BRIDGE_CLASS 0x00060400
146
147/* Error messages */
148#define INTERLOCK_OPEN 0x00000002
149#define ADD_NOT_SUPPORTED 0x00000003
150#define CARD_FUNCTIONING 0x00000005
151#define ADAPTER_NOT_SAME 0x00000006
152#define NO_ADAPTER_PRESENT 0x00000009
153#define NOT_ENOUGH_RESOURCES 0x0000000B
154#define DEVICE_TYPE_NOT_SUPPORTED 0x0000000C
155#define WRONG_BUS_FREQUENCY 0x0000000D
156#define POWER_FAILURE 0x0000000E
157
158#define REMOVE_NOT_SUPPORTED 0x00000003
159
160#define DISABLE_CARD 1
161
162/*
163 * error Messages
164 */
165#define msg_initialization_err "Initialization failure, error=%d\n"
166#define msg_HPC_rev_error "Unsupported revision of the PCI hot plug controller found.\n"
167#define msg_HPC_non_shpc "The PCI hot plug controller is not supported by this driver.\n"
168#define msg_HPC_not_supported "This system is not supported by this version of shpcphd mdoule. Upgrade to a newer version of shpchpd\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#define msg_button_on "PCI slot #%d - powering on due to button press.\n"
170#define msg_button_off "PCI slot #%d - powering off due to button press.\n"
171#define msg_button_cancel "PCI slot #%d - action canceled due to button press.\n"
172#define msg_button_ignore "PCI slot #%d - button press ignored. (action in progress...)\n"
173
174/* sysfs functions for the hotplug controller info */
175extern void shpchp_create_ctrl_files (struct controller *ctrl);
176
177/* controller functions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178extern int shpchp_event_start_thread(void);
179extern void shpchp_event_stop_thread(void);
180extern struct pci_func *shpchp_slot_create(unsigned char busnumber);
181extern struct pci_func *shpchp_slot_find(unsigned char bus, unsigned char device, unsigned char index);
182extern int shpchp_enable_slot(struct slot *slot);
183extern int shpchp_disable_slot(struct slot *slot);
184
185extern u8 shpchp_handle_attention_button(u8 hp_slot, void *inst_id);
186extern u8 shpchp_handle_switch_change(u8 hp_slot, void *inst_id);
187extern u8 shpchp_handle_presence_change(u8 hp_slot, void *inst_id);
188extern u8 shpchp_handle_power_fault(u8 hp_slot, void *inst_id);
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/* pci functions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191extern int shpchp_save_config(struct controller *ctrl, int busnumber, int num_ctlr_slots, int first_device_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192extern int shpchp_save_slot_config(struct controller *ctrl, struct pci_func * new_slot);
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -0700193extern int shpchp_configure_device(struct slot *p_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194extern int shpchp_unconfigure_device(struct pci_func* func);
195
196
197/* Global variables */
198extern struct controller *shpchp_ctrl_list;
199extern struct pci_func *shpchp_slot_list[256];
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201struct ctrl_reg {
202 volatile u32 base_offset;
203 volatile u32 slot_avail1;
204 volatile u32 slot_avail2;
205 volatile u32 slot_config;
206 volatile u16 sec_bus_config;
207 volatile u8 msi_ctrl;
208 volatile u8 prog_interface;
209 volatile u16 cmd;
210 volatile u16 cmd_status;
211 volatile u32 intr_loc;
212 volatile u32 serr_loc;
213 volatile u32 serr_intr_enable;
214 volatile u32 slot1;
215 volatile u32 slot2;
216 volatile u32 slot3;
217 volatile u32 slot4;
218 volatile u32 slot5;
219 volatile u32 slot6;
220 volatile u32 slot7;
221 volatile u32 slot8;
222 volatile u32 slot9;
223 volatile u32 slot10;
224 volatile u32 slot11;
225 volatile u32 slot12;
226} __attribute__ ((packed));
227
228/* offsets to the controller registers based on the above structure layout */
229enum ctrl_offsets {
230 BASE_OFFSET = offsetof(struct ctrl_reg, base_offset),
231 SLOT_AVAIL1 = offsetof(struct ctrl_reg, slot_avail1),
232 SLOT_AVAIL2 = offsetof(struct ctrl_reg, slot_avail2),
233 SLOT_CONFIG = offsetof(struct ctrl_reg, slot_config),
234 SEC_BUS_CONFIG = offsetof(struct ctrl_reg, sec_bus_config),
235 MSI_CTRL = offsetof(struct ctrl_reg, msi_ctrl),
236 PROG_INTERFACE = offsetof(struct ctrl_reg, prog_interface),
237 CMD = offsetof(struct ctrl_reg, cmd),
238 CMD_STATUS = offsetof(struct ctrl_reg, cmd_status),
239 INTR_LOC = offsetof(struct ctrl_reg, intr_loc),
240 SERR_LOC = offsetof(struct ctrl_reg, serr_loc),
241 SERR_INTR_ENABLE = offsetof(struct ctrl_reg, serr_intr_enable),
242 SLOT1 = offsetof(struct ctrl_reg, slot1),
243 SLOT2 = offsetof(struct ctrl_reg, slot2),
244 SLOT3 = offsetof(struct ctrl_reg, slot3),
245 SLOT4 = offsetof(struct ctrl_reg, slot4),
246 SLOT5 = offsetof(struct ctrl_reg, slot5),
247 SLOT6 = offsetof(struct ctrl_reg, slot6),
248 SLOT7 = offsetof(struct ctrl_reg, slot7),
249 SLOT8 = offsetof(struct ctrl_reg, slot8),
250 SLOT9 = offsetof(struct ctrl_reg, slot9),
251 SLOT10 = offsetof(struct ctrl_reg, slot10),
252 SLOT11 = offsetof(struct ctrl_reg, slot11),
253 SLOT12 = offsetof(struct ctrl_reg, slot12),
254};
255typedef u8(*php_intr_callback_t) (unsigned int change_id, void *instance_id);
256struct php_ctlr_state_s {
257 struct php_ctlr_state_s *pnext;
258 struct pci_dev *pci_dev;
259 unsigned int irq;
260 unsigned long flags; /* spinlock's */
261 u32 slot_device_offset;
262 u32 num_slots;
263 struct timer_list int_poll_timer; /* Added for poll event */
264 php_intr_callback_t attention_button_callback;
265 php_intr_callback_t switch_change_callback;
266 php_intr_callback_t presence_change_callback;
267 php_intr_callback_t power_fault_callback;
268 void *callback_instance_id;
269 void __iomem *creg; /* Ptr to controller register space */
270};
271/* Inline functions */
272
273
274/* Inline functions to check the sanity of a pointer that is passed to us */
275static inline int slot_paranoia_check (struct slot *slot, const char *function)
276{
277 if (!slot) {
278 dbg("%s - slot == NULL", function);
279 return -1;
280 }
281 if (slot->magic != SLOT_MAGIC) {
282 dbg("%s - bad magic number for slot", function);
283 return -1;
284 }
285 if (!slot->hotplug_slot) {
286 dbg("%s - slot->hotplug_slot == NULL!", function);
287 return -1;
288 }
289 return 0;
290}
291
292static inline struct slot *get_slot (struct hotplug_slot *hotplug_slot, const char *function)
293{
294 struct slot *slot;
295
296 if (!hotplug_slot) {
297 dbg("%s - hotplug_slot == NULL\n", function);
298 return NULL;
299 }
300
301 slot = (struct slot *)hotplug_slot->private;
302 if (slot_paranoia_check (slot, function))
303 return NULL;
304 return slot;
305}
306
307static inline struct slot *shpchp_find_slot (struct controller *ctrl, u8 device)
308{
309 struct slot *p_slot, *tmp_slot = NULL;
310
311 if (!ctrl)
312 return NULL;
313
314 p_slot = ctrl->slot;
315
316 dbg("p_slot = %p\n", p_slot);
317
318 while (p_slot && (p_slot->device != device)) {
319 tmp_slot = p_slot;
320 p_slot = p_slot->next;
321 dbg("In while loop, p_slot = %p\n", p_slot);
322 }
323 if (p_slot == NULL) {
324 err("ERROR: shpchp_find_slot device=0x%x\n", device);
325 p_slot = tmp_slot;
326 }
327
328 return (p_slot);
329}
330
331static inline int wait_for_ctrl_irq (struct controller *ctrl)
332{
333 DECLARE_WAITQUEUE(wait, current);
334 int retval = 0;
335
336 dbg("%s : start\n",__FUNCTION__);
337
338 add_wait_queue(&ctrl->queue, &wait);
339
340 if (!shpchp_poll_mode) {
341 /* Sleep for up to 1 second */
342 msleep_interruptible(1000);
343 } else {
344 /* Sleep for up to 2 seconds */
345 msleep_interruptible(2000);
346 }
347 remove_wait_queue(&ctrl->queue, &wait);
348 if (signal_pending(current))
349 retval = -EINTR;
350
351 dbg("%s : end\n", __FUNCTION__);
352 return retval;
353}
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355#define SLOT_NAME_SIZE 10
356
357static inline void make_slot_name(char *buffer, int buffer_size, struct slot *slot)
358{
Kristen Accardi1248d632005-08-05 12:16:06 -0700359 snprintf(buffer, buffer_size, "%04d_%04d", slot->bus, slot->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
362enum php_ctlr_type {
363 PCI,
364 ISA,
365 ACPI
366};
367
368int shpc_init( struct controller *ctrl, struct pci_dev *pdev,
369 php_intr_callback_t attention_button_callback,
370 php_intr_callback_t switch_change_callback,
371 php_intr_callback_t presence_change_callback,
372 php_intr_callback_t power_fault_callback);
373
374int shpc_get_ctlr_slot_config( struct controller *ctrl,
375 int *num_ctlr_slots,
376 int *first_device_num,
377 int *physical_slot_num,
378 int *updown,
379 int *flags);
380
381struct hpc_ops {
382 int (*power_on_slot ) (struct slot *slot);
383 int (*slot_enable ) (struct slot *slot);
384 int (*slot_disable ) (struct slot *slot);
385 int (*enable_all_slots) (struct slot *slot);
386 int (*pwr_on_all_slots) (struct slot *slot);
387 int (*set_bus_speed_mode) (struct slot *slot, enum pci_bus_speed speed);
388 int (*get_power_status) (struct slot *slot, u8 *status);
389 int (*get_attention_status) (struct slot *slot, u8 *status);
390 int (*set_attention_status) (struct slot *slot, u8 status);
391 int (*get_latch_status) (struct slot *slot, u8 *status);
392 int (*get_adapter_status) (struct slot *slot, u8 *status);
393
394 int (*get_max_bus_speed) (struct slot *slot, enum pci_bus_speed *speed);
395 int (*get_cur_bus_speed) (struct slot *slot, enum pci_bus_speed *speed);
396 int (*get_adapter_speed) (struct slot *slot, enum pci_bus_speed *speed);
397 int (*get_mode1_ECC_cap) (struct slot *slot, u8 *mode);
398 int (*get_prog_int) (struct slot *slot, u8 *prog_int);
399
400 int (*query_power_fault) (struct slot *slot);
401 void (*green_led_on) (struct slot *slot);
402 void (*green_led_off) (struct slot *slot);
403 void (*green_led_blink) (struct slot *slot);
404 void (*release_ctlr) (struct controller *ctrl);
405 int (*check_cmd_status) (struct controller *ctrl);
406};
407
408#endif /* _SHPCHP_H */