blob: e9480ddd5abfdbc7d36a90a3de43ab754ee0490c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PCI Express 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 Corp.
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 _PCIEHP_H
30#define _PCIEHP_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 <linux/pcieport_if.h>
38#include "pci_hotplug.h"
39
40#define MY_NAME "pciehp"
41
42extern int pciehp_poll_mode;
43extern int pciehp_poll_time;
44extern int pciehp_debug;
45
46/*#define dbg(format, arg...) do { if (pciehp_debug) printk(KERN_DEBUG "%s: " format, MY_NAME , ## arg); } while (0)*/
47#define dbg(format, arg...) do { if (pciehp_debug) printk("%s: " format, MY_NAME , ## arg); } while (0)
48#define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME , ## arg)
49#define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME , ## arg)
50#define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME , ## arg)
51
52struct pci_func {
53 struct pci_func *next;
54 u8 bus;
55 u8 device;
56 u8 function;
57 u8 is_a_board;
58 u16 status;
59 u8 configured;
60 u8 switch_save;
61 u8 presence_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 u16 reserved2;
63 u32 config_space[0x20];
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 struct pci_dev* pci_dev;
65};
66
67struct slot {
68 struct slot *next;
69 u8 bus;
70 u8 device;
71 u32 number;
72 u8 is_a_board;
73 u8 configured;
74 u8 state;
75 u8 switch_save;
76 u8 presence_save;
77 u32 capabilities;
78 u16 reserved2;
79 struct timer_list task_event;
80 u8 hp_slot;
81 struct controller *ctrl;
82 struct hpc_ops *hpc_ops;
83 struct hotplug_slot *hotplug_slot;
84 struct list_head slot_list;
85};
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087struct event_info {
88 u32 event_type;
89 u8 hp_slot;
90};
91
92struct controller {
93 struct controller *next;
94 struct semaphore crit_sect; /* critical section semaphore */
95 void *hpc_ctlr_handle; /* HPC controller handle */
96 int num_slots; /* Number of slots on ctlr */
97 int slot_num_inc; /* 1 or -1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct pci_dev *pci_dev;
99 struct pci_bus *pci_bus;
100 struct event_info event_queue[10];
101 struct slot *slot;
102 struct hpc_ops *hpc_ops;
103 wait_queue_head_t queue; /* sleep & wake process */
104 u8 next_event;
105 u8 seg;
106 u8 bus;
107 u8 device;
108 u8 function;
109 u8 rev;
110 u8 slot_device_offset;
111 u8 add_support;
112 enum pci_bus_speed speed;
113 u32 first_slot; /* First physical slot number */ /* PCIE only has 1 slot */
114 u8 slot_bus; /* Bus where the slots handled by this controller sit */
115 u8 ctrlcap;
116 u16 vendor_id;
Dely Sy8b245e42005-05-06 17:19:09 -0700117 u8 cap_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#define INT_BUTTON_IGNORE 0
121#define INT_PRESENCE_ON 1
122#define INT_PRESENCE_OFF 2
123#define INT_SWITCH_CLOSE 3
124#define INT_SWITCH_OPEN 4
125#define INT_POWER_FAULT 5
126#define INT_POWER_FAULT_CLEAR 6
127#define INT_BUTTON_PRESS 7
128#define INT_BUTTON_RELEASE 8
129#define INT_BUTTON_CANCEL 9
130
131#define STATIC_STATE 0
132#define BLINKINGON_STATE 1
133#define BLINKINGOFF_STATE 2
134#define POWERON_STATE 3
135#define POWEROFF_STATE 4
136
137#define PCI_TO_PCI_BRIDGE_CLASS 0x00060400
138
139/* Error messages */
140#define INTERLOCK_OPEN 0x00000002
141#define ADD_NOT_SUPPORTED 0x00000003
142#define CARD_FUNCTIONING 0x00000005
143#define ADAPTER_NOT_SAME 0x00000006
144#define NO_ADAPTER_PRESENT 0x00000009
145#define NOT_ENOUGH_RESOURCES 0x0000000B
146#define DEVICE_TYPE_NOT_SUPPORTED 0x0000000C
147#define WRONG_BUS_FREQUENCY 0x0000000D
148#define POWER_FAILURE 0x0000000E
149
150#define REMOVE_NOT_SUPPORTED 0x00000003
151
152#define DISABLE_CARD 1
153
154/* Field definitions in Slot Capabilities Register */
155#define ATTN_BUTTN_PRSN 0x00000001
156#define PWR_CTRL_PRSN 0x00000002
157#define MRL_SENS_PRSN 0x00000004
158#define ATTN_LED_PRSN 0x00000008
159#define PWR_LED_PRSN 0x00000010
160#define HP_SUPR_RM_SUP 0x00000020
161
162#define ATTN_BUTTN(cap) (cap & ATTN_BUTTN_PRSN)
163#define POWER_CTRL(cap) (cap & PWR_CTRL_PRSN)
164#define MRL_SENS(cap) (cap & MRL_SENS_PRSN)
165#define ATTN_LED(cap) (cap & ATTN_LED_PRSN)
166#define PWR_LED(cap) (cap & PWR_LED_PRSN)
167#define HP_SUPR_RM(cap) (cap & HP_SUPR_RM_SUP)
168
169/*
170 * error Messages
171 */
172#define msg_initialization_err "Initialization failure, error=%d\n"
173#define msg_HPC_rev_error "Unsupported revision of the PCI hot plug controller found.\n"
174#define msg_HPC_non_pcie "The PCI hot plug controller is not supported by this driver.\n"
175#define msg_HPC_not_supported "This system is not supported by this version of pciephd module. Upgrade to a newer version of pciehpd\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#define msg_button_on "PCI slot #%d - powering on due to button press.\n"
177#define msg_button_off "PCI slot #%d - powering off due to button press.\n"
178#define msg_button_cancel "PCI slot #%d - action canceled due to button press.\n"
179#define msg_button_ignore "PCI slot #%d - button press ignored. (action in progress...)\n"
180
181/* controller functions */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182extern int pciehp_event_start_thread (void);
183extern void pciehp_event_stop_thread (void);
184extern struct pci_func *pciehp_slot_create (unsigned char busnumber);
185extern struct pci_func *pciehp_slot_find (unsigned char bus, unsigned char device, unsigned char index);
186extern int pciehp_enable_slot (struct slot *slot);
187extern int pciehp_disable_slot (struct slot *slot);
188
189extern u8 pciehp_handle_attention_button (u8 hp_slot, void *inst_id);
190extern u8 pciehp_handle_switch_change (u8 hp_slot, void *inst_id);
191extern u8 pciehp_handle_presence_change (u8 hp_slot, void *inst_id);
192extern u8 pciehp_handle_power_fault (u8 hp_slot, void *inst_id);
193/* extern void long_delay (int delay); */
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/* pci functions */
196extern int pciehp_set_irq (u8 bus_num, u8 dev_num, u8 int_pin, u8 irq_num);
197/*extern int pciehp_get_bus_dev (struct controller *ctrl, u8 *bus_num, u8 *dev_num, struct slot *slot);*/
198extern int pciehp_save_config (struct controller *ctrl, int busnumber, int num_ctlr_slots, int first_device_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199extern int pciehp_save_slot_config (struct controller *ctrl, struct pci_func * new_slot);
rajesh.shah@intel.com71b720c2005-10-31 16:20:06 -0800200extern int pciehp_configure_device (struct slot *ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201extern int pciehp_unconfigure_device (struct pci_func* func);
202
203
204/* Global variables */
205extern struct controller *pciehp_ctrl_list;
206extern struct pci_func *pciehp_slot_list[256];
207
208/* Inline functions */
209
210static inline struct slot *pciehp_find_slot(struct controller *ctrl, u8 device)
211{
212 struct slot *p_slot, *tmp_slot = NULL;
213
214 p_slot = ctrl->slot;
215
216 dbg("p_slot = %p\n", p_slot);
217
218 while (p_slot && (p_slot->device != device)) {
219 tmp_slot = p_slot;
220 p_slot = p_slot->next;
221 dbg("In while loop, p_slot = %p\n", p_slot);
222 }
223 if (p_slot == NULL) {
224 err("ERROR: pciehp_find_slot device=0x%x\n", device);
225 p_slot = tmp_slot;
226 }
227
228 return p_slot;
229}
230
231static inline int wait_for_ctrl_irq(struct controller *ctrl)
232{
233 int retval = 0;
234
235 DECLARE_WAITQUEUE(wait, current);
236
237 dbg("%s : start\n", __FUNCTION__);
238 add_wait_queue(&ctrl->queue, &wait);
239 if (!pciehp_poll_mode)
240 /* Sleep for up to 1 second */
241 msleep_interruptible(1000);
242 else
243 msleep_interruptible(2500);
244
245 remove_wait_queue(&ctrl->queue, &wait);
246 if (signal_pending(current))
247 retval = -EINTR;
248
249 dbg("%s : end\n", __FUNCTION__);
250 return retval;
251}
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#define SLOT_NAME_SIZE 10
254
255static inline void make_slot_name(char *buffer, int buffer_size, struct slot *slot)
256{
Kristen Accardi1248d632005-08-05 12:16:06 -0700257 snprintf(buffer, buffer_size, "%04d_%04d", slot->bus, slot->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260enum php_ctlr_type {
261 PCI,
262 ISA,
263 ACPI
264};
265
266typedef u8(*php_intr_callback_t) (unsigned int change_id, void *instance_id);
267
268int pcie_init(struct controller *ctrl, struct pcie_device *dev,
269 php_intr_callback_t attention_button_callback,
270 php_intr_callback_t switch_change_callback,
271 php_intr_callback_t presence_change_callback,
272 php_intr_callback_t power_fault_callback);
273
274
275/* This has no meaning for PCI Express, as there is only 1 slot per port */
276int pcie_get_ctlr_slot_config(struct controller *ctrl,
277 int *num_ctlr_slots,
278 int *first_device_num,
279 int *physical_slot_num,
280 u8 *ctrlcap);
281
282struct hpc_ops {
283 int (*power_on_slot) (struct slot *slot);
284 int (*power_off_slot) (struct slot *slot);
285 int (*get_power_status) (struct slot *slot, u8 *status);
286 int (*get_attention_status) (struct slot *slot, u8 *status);
287 int (*set_attention_status) (struct slot *slot, u8 status);
288 int (*get_latch_status) (struct slot *slot, u8 *status);
289 int (*get_adapter_status) (struct slot *slot, u8 *status);
290
291 int (*get_max_bus_speed) (struct slot *slot, enum pci_bus_speed *speed);
292 int (*get_cur_bus_speed) (struct slot *slot, enum pci_bus_speed *speed);
293
294 int (*get_max_lnk_width) (struct slot *slot, enum pcie_link_width *value);
295 int (*get_cur_lnk_width) (struct slot *slot, enum pcie_link_width *value);
296
297 int (*query_power_fault) (struct slot *slot);
298 void (*green_led_on) (struct slot *slot);
299 void (*green_led_off) (struct slot *slot);
300 void (*green_led_blink) (struct slot *slot);
301 void (*release_ctlr) (struct controller *ctrl);
302 int (*check_lnk_status) (struct controller *ctrl);
303};
304
305#endif /* _PCIEHP_H */