blob: 91441e5ae631e9c017ce827b7d67258dcf9e7ba8 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
31#include <linux/kernel.h>
32#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/smp_lock.h>
34#include <linux/pci.h>
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080035#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "../pci.h"
37#include "pciehp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080039static void interrupt_event_handler(struct work_struct *work);
40static int pciehp_enable_slot(struct slot *p_slot);
41static int pciehp_disable_slot(struct slot *p_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080043static int queue_interrupt_event(struct slot *p_slot, u32 event_type)
Kenji Kaneshige49ed2b42006-09-22 10:17:10 -070044{
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080045 struct event_info *info;
46
47 info = kmalloc(sizeof(*info), GFP_ATOMIC);
48 if (!info)
49 return -ENOMEM;
50
51 info->event_type = event_type;
52 info->p_slot = p_slot;
53 INIT_WORK(&info->work, interrupt_event_handler);
54
55 schedule_work(&info->work);
56
57 return 0;
Kenji Kaneshige49ed2b42006-09-22 10:17:10 -070058}
59
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080060u8 pciehp_handle_attention_button(u8 hp_slot, struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 struct slot *p_slot;
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080063 u32 event_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 /* Attention Button Change */
66 dbg("pciehp: Attention button interrupt received.\n");
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 p_slot = pciehp_find_slot(ctrl, hp_slot + ctrl->slot_device_offset);
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 /*
71 * Button pressed - See if need to TAKE ACTION!!!
72 */
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080073 info("Button pressed on Slot(%s)\n", p_slot->name);
74 event_type = INT_BUTTON_PRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080076 queue_interrupt_event(p_slot, event_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080081u8 pciehp_handle_switch_change(u8 hp_slot, struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct slot *p_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 u8 getstatus;
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080085 u32 event_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /* Switch Change */
88 dbg("pciehp: Switch interrupt received.\n");
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 p_slot = pciehp_find_slot(ctrl, hp_slot + ctrl->slot_device_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 p_slot->hpc_ops->get_latch_status(p_slot, &getstatus);
92
93 if (getstatus) {
94 /*
95 * Switch opened
96 */
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080097 info("Latch open on Slot(%s)\n", p_slot->name);
98 event_type = INT_SWITCH_OPEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 } else {
100 /*
101 * Switch closed
102 */
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800103 info("Latch close on Slot(%s)\n", p_slot->name);
104 event_type = INT_SWITCH_CLOSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
106
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800107 queue_interrupt_event(p_slot, event_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800109 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800112u8 pciehp_handle_presence_change(u8 hp_slot, struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct slot *p_slot;
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800115 u32 event_type;
116 u8 presence_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 /* Presence Change */
119 dbg("pciehp: Presence/Notify input change.\n");
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 p_slot = pciehp_find_slot(ctrl, hp_slot + ctrl->slot_device_offset);
122
123 /* Switch is open, assume a presence change
124 * Save the presence state
125 */
rajesh.shah@intel.comed6cbcf2005-10-31 16:20:09 -0800126 p_slot->hpc_ops->get_adapter_status(p_slot, &presence_save);
127 if (presence_save) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /*
129 * Card Present
130 */
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800131 info("Card present on Slot(%s)\n", p_slot->name);
132 event_type = INT_PRESENCE_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 } else {
134 /*
135 * Not Present
136 */
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800137 info("Card not present on Slot(%s)\n", p_slot->name);
138 event_type = INT_PRESENCE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800141 queue_interrupt_event(p_slot, event_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800143 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800146u8 pciehp_handle_power_fault(u8 hp_slot, struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct slot *p_slot;
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800149 u32 event_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 /* power fault */
152 dbg("pciehp: Power fault interrupt received.\n");
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 p_slot = pciehp_find_slot(ctrl, hp_slot + ctrl->slot_device_offset);
155
156 if ( !(p_slot->hpc_ops->query_power_fault(p_slot))) {
157 /*
158 * power fault Cleared
159 */
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800160 info("Power fault cleared on Slot(%s)\n", p_slot->name);
161 event_type = INT_POWER_FAULT_CLEAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 } else {
163 /*
164 * power fault
165 */
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800166 info("Power fault on Slot(%s)\n", p_slot->name);
167 event_type = INT_POWER_FAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 info("power fault bit %x set\n", hp_slot);
169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800171 queue_interrupt_event(p_slot, event_type);
172
173 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/* The following routines constitute the bulk of the
177 hotplug controller logic
178 */
179
180static void set_slot_off(struct controller *ctrl, struct slot * pslot)
181{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* turn off slot, turn on Amber LED, turn off Green LED if supported*/
183 if (POWER_CTRL(ctrl->ctrlcap)) {
184 if (pslot->hpc_ops->power_off_slot(pslot)) {
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800185 err("%s: Issue of Slot Power Off command failed\n",
186 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return;
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800191 if (PWR_LED(ctrl->ctrlcap))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 pslot->hpc_ops->green_led_off(pslot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800194 if (ATTN_LED(ctrl->ctrlcap)) {
195 if (pslot->hpc_ops->set_attention_status(pslot, 1)) {
196 err("%s: Issue of Set Attention Led command failed\n",
197 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return;
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203/**
204 * board_added - Called after a board has been added to the system.
205 *
206 * Turns power on for the board
207 * Configures board
208 *
209 */
rajesh.shah@intel.comed6cbcf2005-10-31 16:20:09 -0800210static int board_added(struct slot *p_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 u8 hp_slot;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800213 int retval = 0;
rajesh.shah@intel.comca22a5e2005-10-31 16:20:08 -0800214 struct controller *ctrl = p_slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
rajesh.shah@intel.comca22a5e2005-10-31 16:20:08 -0800216 hp_slot = p_slot->device - ctrl->slot_device_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
rajesh.shah@intel.com1a9ed1b2005-10-31 16:20:10 -0800218 dbg("%s: slot device, slot offset, hp slot = %d, %d ,%d\n",
219 __FUNCTION__, p_slot->device,
220 ctrl->slot_device_offset, hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (POWER_CTRL(ctrl->ctrlcap)) {
223 /* Power on slot */
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800224 retval = p_slot->hpc_ops->power_on_slot(p_slot);
225 if (retval)
226 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800229 if (PWR_LED(ctrl->ctrlcap))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 p_slot->hpc_ops->green_led_blink(p_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 /* Wait for ~1 second */
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800233 msleep(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800235 /* Check link training status */
236 retval = p_slot->hpc_ops->check_lnk_status(ctrl);
237 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 err("%s: Failed to check link status\n", __FUNCTION__);
239 set_slot_off(ctrl, p_slot);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800240 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /* Check for a power fault */
Rajesh Shah5a49f202005-11-23 15:44:54 -0800244 if (p_slot->hpc_ops->query_power_fault(p_slot)) {
245 dbg("%s: power fault detected\n", __FUNCTION__);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800246 retval = POWER_FAILURE;
rajesh.shah@intel.com71b720c2005-10-31 16:20:06 -0800247 goto err_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800250 retval = pciehp_configure_device(p_slot);
251 if (retval) {
rajesh.shah@intel.com71b720c2005-10-31 16:20:06 -0800252 err("Cannot add device 0x%x:%x\n", p_slot->bus,
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800253 p_slot->device);
rajesh.shah@intel.com71b720c2005-10-31 16:20:06 -0800254 goto err_exit;
255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
rajesh.shah@intel.com71b720c2005-10-31 16:20:06 -0800257 /*
258 * Some PCI Express root ports require fixup after hot-plug operation.
259 */
260 if (pcie_mch_quirk)
261 pci_fixup_device(pci_fixup_final, ctrl->pci_dev);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800262 if (PWR_LED(ctrl->ctrlcap))
rajesh.shah@intel.com71b720c2005-10-31 16:20:06 -0800263 p_slot->hpc_ops->green_led_on(p_slot);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return 0;
rajesh.shah@intel.com71b720c2005-10-31 16:20:06 -0800266
267err_exit:
268 set_slot_off(ctrl, p_slot);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800269 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272/**
273 * remove_board - Turns off slot and LED's
274 *
275 */
rajesh.shah@intel.comed6cbcf2005-10-31 16:20:09 -0800276static int remove_board(struct slot *p_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 u8 device;
279 u8 hp_slot;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800280 int retval = 0;
rajesh.shah@intel.comca22a5e2005-10-31 16:20:08 -0800281 struct controller *ctrl = p_slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800283 retval = pciehp_unconfigure_device(p_slot);
284 if (retval)
285 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
rajesh.shah@intel.comca22a5e2005-10-31 16:20:08 -0800287 device = p_slot->device;
rajesh.shah@intel.comca22a5e2005-10-31 16:20:08 -0800288 hp_slot = p_slot->device - ctrl->slot_device_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 p_slot = pciehp_find_slot(ctrl, hp_slot + ctrl->slot_device_offset);
290
291 dbg("In %s, hp_slot = %d\n", __FUNCTION__, hp_slot);
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (POWER_CTRL(ctrl->ctrlcap)) {
294 /* power off slot */
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800295 retval = p_slot->hpc_ops->power_off_slot(p_slot);
296 if (retval) {
297 err("%s: Issue of Slot Disable command failed\n",
298 __FUNCTION__);
299 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800303 if (PWR_LED(ctrl->ctrlcap))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* turn off Green LED */
305 p_slot->hpc_ops->green_led_off(p_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return 0;
308}
309
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800310struct power_work_info {
311 struct slot *p_slot;
312 struct work_struct work;
313};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315/**
316 * pciehp_pushbutton_thread
317 *
318 * Scheduled procedure to handle blocking stuff for the pushbuttons
319 * Handles all pending events and exits.
320 *
321 */
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800322static void pciehp_power_thread(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800324 struct power_work_info *info =
325 container_of(work, struct power_work_info, work);
326 struct slot *p_slot = info->p_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800328 mutex_lock(&p_slot->lock);
329 switch (p_slot->state) {
330 case POWEROFF_STATE:
331 mutex_unlock(&p_slot->lock);
332 dbg("%s: disabling bus:device(%x:%x)\n",
333 __FUNCTION__, p_slot->bus, p_slot->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 pciehp_disable_slot(p_slot);
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800335 mutex_lock(&p_slot->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 p_slot->state = STATIC_STATE;
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800337 break;
338 case POWERON_STATE:
339 mutex_unlock(&p_slot->lock);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800340 if (pciehp_enable_slot(p_slot) &&
341 PWR_LED(p_slot->ctrl->ctrlcap))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 p_slot->hpc_ops->green_led_off(p_slot);
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800343 mutex_lock(&p_slot->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 p_slot->state = STATIC_STATE;
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800345 break;
346 default:
347 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800349 mutex_unlock(&p_slot->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800351 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800354void queue_pushbutton_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800356 struct slot *p_slot = container_of(work, struct slot, work.work);
357 struct power_work_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800359 info = kmalloc(sizeof(*info), GFP_KERNEL);
360 if (!info) {
361 err("%s: Cannot allocate memory\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return;
363 }
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800364 info->p_slot = p_slot;
365 INIT_WORK(&info->work, pciehp_power_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800367 mutex_lock(&p_slot->lock);
368 switch (p_slot->state) {
369 case BLINKINGOFF_STATE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 p_slot->state = POWEROFF_STATE;
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800371 break;
372 case BLINKINGON_STATE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 p_slot->state = POWERON_STATE;
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800374 break;
375 default:
376 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800378 queue_work(pciehp_wq, &info->work);
379 out:
380 mutex_unlock(&p_slot->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static int update_slot_info(struct slot *slot)
384{
385 struct hotplug_slot_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 int result;
387
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800388 info = kmalloc(sizeof(*info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (!info)
390 return -ENOMEM;
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 slot->hpc_ops->get_power_status(slot, &(info->power_status));
393 slot->hpc_ops->get_attention_status(slot, &(info->attention_status));
394 slot->hpc_ops->get_latch_status(slot, &(info->latch_status));
395 slot->hpc_ops->get_adapter_status(slot, &(info->adapter_status));
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 result = pci_hp_change_slot_info(slot->hotplug_slot, info);
398 kfree (info);
399 return result;
400}
401
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800402/*
403 * Note: This function must be called with slot->lock held
404 */
405static void handle_button_press_event(struct slot *p_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800407 struct controller *ctrl = p_slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 u8 getstatus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800410 switch (p_slot->state) {
411 case STATIC_STATE:
412 p_slot->hpc_ops->get_power_status(p_slot, &getstatus);
413 if (getstatus) {
414 p_slot->state = BLINKINGOFF_STATE;
415 info("PCI slot #%s - powering off due to button "
416 "press.\n", p_slot->name);
417 } else {
418 p_slot->state = BLINKINGON_STATE;
419 info("PCI slot #%s - powering on due to button "
420 "press.\n", p_slot->name);
421 }
422 /* blink green LED and turn off amber */
423 if (PWR_LED(ctrl->ctrlcap))
424 p_slot->hpc_ops->green_led_blink(p_slot);
425 if (ATTN_LED(ctrl->ctrlcap))
426 p_slot->hpc_ops->set_attention_status(p_slot, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800428 schedule_delayed_work(&p_slot->work, 5*HZ);
429 break;
430 case BLINKINGOFF_STATE:
431 case BLINKINGON_STATE:
432 /*
433 * Cancel if we are still blinking; this means that we
434 * press the attention again before the 5 sec. limit
435 * expires to cancel hot-add or hot-remove
436 */
437 info("Button cancel on Slot(%s)\n", p_slot->name);
438 dbg("%s: button cancel\n", __FUNCTION__);
439 cancel_delayed_work(&p_slot->work);
440 if (p_slot->state == BLINKINGOFF_STATE) {
441 if (PWR_LED(ctrl->ctrlcap))
442 p_slot->hpc_ops->green_led_on(p_slot);
443 } else {
444 if (PWR_LED(ctrl->ctrlcap))
445 p_slot->hpc_ops->green_led_off(p_slot);
446 }
447 if (ATTN_LED(ctrl->ctrlcap))
448 p_slot->hpc_ops->set_attention_status(p_slot, 0);
449 info("PCI slot #%s - action canceled due to button press\n",
450 p_slot->name);
451 p_slot->state = STATIC_STATE;
452 break;
453 case POWEROFF_STATE:
454 case POWERON_STATE:
455 /*
456 * Ignore if the slot is on power-on or power-off state;
457 * this means that the previous attention button action
458 * to hot-add or hot-remove is undergoing
459 */
460 info("Button ignore on Slot(%s)\n", p_slot->name);
461 update_slot_info(p_slot);
462 break;
463 default:
464 warn("Not a valid state\n");
465 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467}
468
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800469/*
470 * Note: This function must be called with slot->lock held
471 */
472static void handle_surprise_event(struct slot *p_slot)
473{
474 u8 getstatus;
475 struct power_work_info *info;
476
477 info = kmalloc(sizeof(*info), GFP_KERNEL);
478 if (!info) {
479 err("%s: Cannot allocate memory\n", __FUNCTION__);
480 return;
481 }
482 info->p_slot = p_slot;
483 INIT_WORK(&info->work, pciehp_power_thread);
484
485 p_slot->hpc_ops->get_adapter_status(p_slot, &getstatus);
486 if (!getstatus)
487 p_slot->state = POWEROFF_STATE;
488 else
489 p_slot->state = POWERON_STATE;
490
491 queue_work(pciehp_wq, &info->work);
492}
493
494static void interrupt_event_handler(struct work_struct *work)
495{
496 struct event_info *info = container_of(work, struct event_info, work);
497 struct slot *p_slot = info->p_slot;
498 struct controller *ctrl = p_slot->ctrl;
499
500 mutex_lock(&p_slot->lock);
501 switch (info->event_type) {
502 case INT_BUTTON_PRESS:
503 handle_button_press_event(p_slot);
504 break;
505 case INT_POWER_FAULT:
506 if (!POWER_CTRL(ctrl->ctrlcap))
507 break;
508 if (ATTN_LED(ctrl->ctrlcap))
509 p_slot->hpc_ops->set_attention_status(p_slot, 1);
510 if (PWR_LED(ctrl->ctrlcap))
511 p_slot->hpc_ops->green_led_off(p_slot);
512 break;
513 case INT_PRESENCE_ON:
514 case INT_PRESENCE_OFF:
515 if (!HP_SUPR_RM(ctrl->ctrlcap))
516 break;
517 dbg("Surprise Removal\n");
518 update_slot_info(p_slot);
519 handle_surprise_event(p_slot);
520 break;
521 default:
522 update_slot_info(p_slot);
523 break;
524 }
525 mutex_unlock(&p_slot->lock);
526
527 kfree(info);
528}
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530int pciehp_enable_slot(struct slot *p_slot)
531{
532 u8 getstatus = 0;
533 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /* Check to see if (latch closed, card present, power off) */
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100536 mutex_lock(&p_slot->ctrl->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 rc = p_slot->hpc_ops->get_adapter_status(p_slot, &getstatus);
539 if (rc || !getstatus) {
Kenji Kaneshige49ed2b42006-09-22 10:17:10 -0700540 info("%s: no adapter on slot(%s)\n", __FUNCTION__,
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800541 p_slot->name);
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100542 mutex_unlock(&p_slot->ctrl->crit_sect);
Kenji Kaneshigec9d86d72006-09-19 17:04:33 -0700543 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545 if (MRL_SENS(p_slot->ctrl->ctrlcap)) {
546 rc = p_slot->hpc_ops->get_latch_status(p_slot, &getstatus);
547 if (rc || getstatus) {
Kenji Kaneshige49ed2b42006-09-22 10:17:10 -0700548 info("%s: latch open on slot(%s)\n", __FUNCTION__,
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800549 p_slot->name);
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100550 mutex_unlock(&p_slot->ctrl->crit_sect);
Kenji Kaneshigec9d86d72006-09-19 17:04:33 -0700551 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553 }
554
555 if (POWER_CTRL(p_slot->ctrl->ctrlcap)) {
556 rc = p_slot->hpc_ops->get_power_status(p_slot, &getstatus);
557 if (rc || getstatus) {
Kenji Kaneshige49ed2b42006-09-22 10:17:10 -0700558 info("%s: already enabled on slot(%s)\n", __FUNCTION__,
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800559 p_slot->name);
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100560 mutex_unlock(&p_slot->ctrl->crit_sect);
Kenji Kaneshigec9d86d72006-09-19 17:04:33 -0700561 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 p_slot->hpc_ops->get_latch_status(p_slot, &getstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
rajesh.shah@intel.comca22a5e2005-10-31 16:20:08 -0800567 rc = board_added(p_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 p_slot->hpc_ops->get_latch_status(p_slot, &getstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
Eric Sesterhenn9ef99772006-09-25 00:56:53 +0200572 update_slot_info(p_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Kenji Kaneshigedd5619c2006-09-22 10:17:29 -0700574 mutex_unlock(&p_slot->ctrl->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return rc;
576}
577
578
579int pciehp_disable_slot(struct slot *p_slot)
580{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 u8 getstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 if (!p_slot->ctrl)
585 return 1;
586
587 /* Check to see if (latch closed, card present, power on) */
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100588 mutex_lock(&p_slot->ctrl->crit_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 if (!HP_SUPR_RM(p_slot->ctrl->ctrlcap)) {
591 ret = p_slot->hpc_ops->get_adapter_status(p_slot, &getstatus);
592 if (ret || !getstatus) {
Kenji Kaneshige49ed2b42006-09-22 10:17:10 -0700593 info("%s: no adapter on slot(%s)\n", __FUNCTION__,
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800594 p_slot->name);
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100595 mutex_unlock(&p_slot->ctrl->crit_sect);
Kenji Kaneshigec9d86d72006-09-19 17:04:33 -0700596 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598 }
599
600 if (MRL_SENS(p_slot->ctrl->ctrlcap)) {
601 ret = p_slot->hpc_ops->get_latch_status(p_slot, &getstatus);
602 if (ret || getstatus) {
Kenji Kaneshige49ed2b42006-09-22 10:17:10 -0700603 info("%s: latch open on slot(%s)\n", __FUNCTION__,
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800604 p_slot->name);
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100605 mutex_unlock(&p_slot->ctrl->crit_sect);
Kenji Kaneshigec9d86d72006-09-19 17:04:33 -0700606 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608 }
609
610 if (POWER_CTRL(p_slot->ctrl->ctrlcap)) {
611 ret = p_slot->hpc_ops->get_power_status(p_slot, &getstatus);
612 if (ret || !getstatus) {
Kenji Kaneshige49ed2b42006-09-22 10:17:10 -0700613 info("%s: already disabled slot(%s)\n", __FUNCTION__,
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800614 p_slot->name);
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +0100615 mutex_unlock(&p_slot->ctrl->crit_sect);
Kenji Kaneshigec9d86d72006-09-19 17:04:33 -0700616 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618 }
619
rajesh.shah@intel.comca22a5e2005-10-31 16:20:08 -0800620 ret = remove_board(p_slot);
621 update_slot_info(p_slot);
Kenji Kaneshigedd5619c2006-09-22 10:17:29 -0700622
623 mutex_unlock(&p_slot->ctrl->crit_sect);
rajesh.shah@intel.comca22a5e2005-10-31 16:20:08 -0800624 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800627int pciehp_sysfs_enable_slot(struct slot *p_slot)
628{
629 int retval = -ENODEV;
630
631 mutex_lock(&p_slot->lock);
632 switch (p_slot->state) {
633 case BLINKINGON_STATE:
634 cancel_delayed_work(&p_slot->work);
635 case STATIC_STATE:
636 p_slot->state = POWERON_STATE;
637 mutex_unlock(&p_slot->lock);
638 retval = pciehp_enable_slot(p_slot);
639 mutex_lock(&p_slot->lock);
640 p_slot->state = STATIC_STATE;
641 break;
642 case POWERON_STATE:
643 info("Slot %s is already in powering on state\n",
644 p_slot->name);
645 break;
646 case BLINKINGOFF_STATE:
647 case POWEROFF_STATE:
648 info("Already enabled on slot %s\n", p_slot->name);
649 break;
650 default:
651 err("Not a valid state on slot %s\n", p_slot->name);
652 break;
653 }
654 mutex_unlock(&p_slot->lock);
655
656 return retval;
657}
658
659int pciehp_sysfs_disable_slot(struct slot *p_slot)
660{
661 int retval = -ENODEV;
662
663 mutex_lock(&p_slot->lock);
664 switch (p_slot->state) {
665 case BLINKINGOFF_STATE:
666 cancel_delayed_work(&p_slot->work);
667 case STATIC_STATE:
668 p_slot->state = POWEROFF_STATE;
669 mutex_unlock(&p_slot->lock);
670 retval = pciehp_disable_slot(p_slot);
671 mutex_lock(&p_slot->lock);
672 p_slot->state = STATIC_STATE;
673 break;
674 case POWEROFF_STATE:
675 info("Slot %s is already in powering off state\n",
676 p_slot->name);
677 break;
678 case BLINKINGON_STATE:
679 case POWERON_STATE:
680 info("Already disabled on slot %s\n", p_slot->name);
681 break;
682 default:
683 err("Not a valid state on slot %s\n", p_slot->name);
684 break;
685 }
686 mutex_unlock(&p_slot->lock);
687
688 return retval;
689}