Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 26 | * Send feedback to <greg@kroah.com>, <kristen.c.accardi@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | * |
| 28 | */ |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/module.h> |
| 31 | #include <linux/kernel.h> |
| 32 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/smp_lock.h> |
| 34 | #include <linux/pci.h> |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 35 | #include <linux/workqueue.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include "../pci.h" |
| 37 | #include "pciehp.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 39 | static void interrupt_event_handler(struct work_struct *work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 41 | static int queue_interrupt_event(struct slot *p_slot, u32 event_type) |
Kenji Kaneshige | 49ed2b4 | 2006-09-22 10:17:10 -0700 | [diff] [blame] | 42 | { |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 43 | struct event_info *info; |
| 44 | |
| 45 | info = kmalloc(sizeof(*info), GFP_ATOMIC); |
| 46 | if (!info) |
| 47 | return -ENOMEM; |
| 48 | |
| 49 | info->event_type = event_type; |
| 50 | info->p_slot = p_slot; |
| 51 | INIT_WORK(&info->work, interrupt_event_handler); |
| 52 | |
| 53 | schedule_work(&info->work); |
| 54 | |
| 55 | return 0; |
Kenji Kaneshige | 49ed2b4 | 2006-09-22 10:17:10 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 58 | u8 pciehp_handle_attention_button(u8 hp_slot, struct controller *ctrl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | struct slot *p_slot; |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 61 | u32 event_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | /* Attention Button Change */ |
| 64 | dbg("pciehp: Attention button interrupt received.\n"); |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | p_slot = pciehp_find_slot(ctrl, hp_slot + ctrl->slot_device_offset); |
| 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | /* |
| 69 | * Button pressed - See if need to TAKE ACTION!!! |
| 70 | */ |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 71 | info("Button pressed on Slot(%s)\n", p_slot->name); |
| 72 | event_type = INT_BUTTON_PRESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 74 | queue_interrupt_event(p_slot, event_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 79 | u8 pciehp_handle_switch_change(u8 hp_slot, struct controller *ctrl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | struct slot *p_slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | u8 getstatus; |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 83 | u32 event_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | /* Switch Change */ |
| 86 | dbg("pciehp: Switch interrupt received.\n"); |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | p_slot = pciehp_find_slot(ctrl, hp_slot + ctrl->slot_device_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | p_slot->hpc_ops->get_latch_status(p_slot, &getstatus); |
| 90 | |
| 91 | if (getstatus) { |
| 92 | /* |
| 93 | * Switch opened |
| 94 | */ |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 95 | info("Latch open on Slot(%s)\n", p_slot->name); |
| 96 | event_type = INT_SWITCH_OPEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } else { |
| 98 | /* |
| 99 | * Switch closed |
| 100 | */ |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 101 | info("Latch close on Slot(%s)\n", p_slot->name); |
| 102 | event_type = INT_SWITCH_CLOSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 105 | queue_interrupt_event(p_slot, event_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 107 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | } |
| 109 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 110 | u8 pciehp_handle_presence_change(u8 hp_slot, struct controller *ctrl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | struct slot *p_slot; |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 113 | u32 event_type; |
| 114 | u8 presence_save; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
| 116 | /* Presence Change */ |
| 117 | dbg("pciehp: Presence/Notify input change.\n"); |
| 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | p_slot = pciehp_find_slot(ctrl, hp_slot + ctrl->slot_device_offset); |
| 120 | |
| 121 | /* Switch is open, assume a presence change |
| 122 | * Save the presence state |
| 123 | */ |
rajesh.shah@intel.com | ed6cbcf | 2005-10-31 16:20:09 -0800 | [diff] [blame] | 124 | p_slot->hpc_ops->get_adapter_status(p_slot, &presence_save); |
| 125 | if (presence_save) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | /* |
| 127 | * Card Present |
| 128 | */ |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 129 | info("Card present on Slot(%s)\n", p_slot->name); |
| 130 | event_type = INT_PRESENCE_ON; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } else { |
| 132 | /* |
| 133 | * Not Present |
| 134 | */ |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 135 | info("Card not present on Slot(%s)\n", p_slot->name); |
| 136 | event_type = INT_PRESENCE_OFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | } |
| 138 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 139 | queue_interrupt_event(p_slot, event_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 141 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 144 | u8 pciehp_handle_power_fault(u8 hp_slot, struct controller *ctrl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | struct slot *p_slot; |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 147 | u32 event_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
| 149 | /* power fault */ |
| 150 | dbg("pciehp: Power fault interrupt received.\n"); |
| 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | p_slot = pciehp_find_slot(ctrl, hp_slot + ctrl->slot_device_offset); |
| 153 | |
| 154 | if ( !(p_slot->hpc_ops->query_power_fault(p_slot))) { |
| 155 | /* |
| 156 | * power fault Cleared |
| 157 | */ |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 158 | info("Power fault cleared on Slot(%s)\n", p_slot->name); |
| 159 | event_type = INT_POWER_FAULT_CLEAR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } else { |
| 161 | /* |
| 162 | * power fault |
| 163 | */ |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 164 | info("Power fault on Slot(%s)\n", p_slot->name); |
| 165 | event_type = INT_POWER_FAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | info("power fault bit %x set\n", hp_slot); |
| 167 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 169 | queue_interrupt_event(p_slot, event_type); |
| 170 | |
| 171 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | |
Kenji Kaneshige | 36ed27b | 2007-08-09 16:09:36 -0700 | [diff] [blame] | 174 | /* The following routines constitute the bulk of the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | hotplug controller logic |
| 176 | */ |
| 177 | |
| 178 | static void set_slot_off(struct controller *ctrl, struct slot * pslot) |
| 179 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | /* turn off slot, turn on Amber LED, turn off Green LED if supported*/ |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 181 | if (POWER_CTRL(ctrl)) { |
Kenji Kaneshige | 36ed27b | 2007-08-09 16:09:36 -0700 | [diff] [blame] | 182 | if (pslot->hpc_ops->power_off_slot(pslot)) { |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 183 | err("%s: Issue of Slot Power Off command failed\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 184 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | return; |
| 186 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | } |
| 188 | |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 189 | if (PWR_LED(ctrl)) |
Kenji Kaneshige | 36ed27b | 2007-08-09 16:09:36 -0700 | [diff] [blame] | 190 | pslot->hpc_ops->green_led_off(pslot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 192 | if (ATTN_LED(ctrl)) { |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 193 | if (pslot->hpc_ops->set_attention_status(pslot, 1)) { |
| 194 | err("%s: Issue of Set Attention Led command failed\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 195 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | return; |
| 197 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | /** |
| 202 | * board_added - Called after a board has been added to the system. |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 203 | * @p_slot: &slot where board is added |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 205 | * Turns power on for the board. |
| 206 | * Configures board. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | */ |
rajesh.shah@intel.com | ed6cbcf | 2005-10-31 16:20:09 -0800 | [diff] [blame] | 208 | static int board_added(struct slot *p_slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | { |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 210 | int retval = 0; |
rajesh.shah@intel.com | ca22a5e | 2005-10-31 16:20:08 -0800 | [diff] [blame] | 211 | struct controller *ctrl = p_slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
rajesh.shah@intel.com | 1a9ed1b | 2005-10-31 16:20:10 -0800 | [diff] [blame] | 213 | dbg("%s: slot device, slot offset, hp slot = %d, %d ,%d\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 214 | __func__, p_slot->device, |
Kenji Kaneshige | 941f10e | 2007-11-09 17:29:42 +0900 | [diff] [blame] | 215 | ctrl->slot_device_offset, p_slot->hp_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 217 | if (POWER_CTRL(ctrl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | /* Power on slot */ |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 219 | retval = p_slot->hpc_ops->power_on_slot(p_slot); |
| 220 | if (retval) |
| 221 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } |
Kenji Kaneshige | 36ed27b | 2007-08-09 16:09:36 -0700 | [diff] [blame] | 223 | |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 224 | if (PWR_LED(ctrl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | p_slot->hpc_ops->green_led_blink(p_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | /* Wait for ~1 second */ |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 228 | msleep(1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 230 | /* Check link training status */ |
| 231 | retval = p_slot->hpc_ops->check_lnk_status(ctrl); |
| 232 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 233 | err("%s: Failed to check link status\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | set_slot_off(ctrl, p_slot); |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 235 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } |
| 237 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | /* Check for a power fault */ |
Rajesh Shah | 5a49f20 | 2005-11-23 15:44:54 -0800 | [diff] [blame] | 239 | if (p_slot->hpc_ops->query_power_fault(p_slot)) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 240 | dbg("%s: power fault detected\n", __func__); |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 241 | retval = POWER_FAILURE; |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 242 | goto err_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } |
| 244 | |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 245 | retval = pciehp_configure_device(p_slot); |
| 246 | if (retval) { |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 247 | err("Cannot add device 0x%x:%x\n", p_slot->bus, |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 248 | p_slot->device); |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 249 | goto err_exit; |
| 250 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 252 | /* |
| 253 | * Some PCI Express root ports require fixup after hot-plug operation. |
| 254 | */ |
| 255 | if (pcie_mch_quirk) |
| 256 | pci_fixup_device(pci_fixup_final, ctrl->pci_dev); |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 257 | if (PWR_LED(ctrl)) |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 258 | p_slot->hpc_ops->green_led_on(p_slot); |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | return 0; |
rajesh.shah@intel.com | 71b720c | 2005-10-31 16:20:06 -0800 | [diff] [blame] | 261 | |
| 262 | err_exit: |
| 263 | set_slot_off(ctrl, p_slot); |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 264 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | /** |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 268 | * remove_board - Turns off slot and LEDs |
| 269 | * @p_slot: slot where board is being removed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | */ |
rajesh.shah@intel.com | ed6cbcf | 2005-10-31 16:20:09 -0800 | [diff] [blame] | 271 | static int remove_board(struct slot *p_slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | { |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 273 | int retval = 0; |
rajesh.shah@intel.com | ca22a5e | 2005-10-31 16:20:08 -0800 | [diff] [blame] | 274 | struct controller *ctrl = p_slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 276 | retval = pciehp_unconfigure_device(p_slot); |
| 277 | if (retval) |
| 278 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 280 | dbg("In %s, hp_slot = %d\n", __func__, p_slot->hp_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 282 | if (POWER_CTRL(ctrl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | /* power off slot */ |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 284 | retval = p_slot->hpc_ops->power_off_slot(p_slot); |
| 285 | if (retval) { |
| 286 | err("%s: Issue of Slot Disable command failed\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 287 | __func__); |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 288 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
| 291 | |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 292 | if (PWR_LED(ctrl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | /* turn off Green LED */ |
| 294 | p_slot->hpc_ops->green_led_off(p_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | return 0; |
| 297 | } |
| 298 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 299 | struct power_work_info { |
| 300 | struct slot *p_slot; |
| 301 | struct work_struct work; |
| 302 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
| 304 | /** |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 305 | * pciehp_power_thread - handle pushbutton events |
| 306 | * @work: &struct work_struct describing work to be done |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | * |
Randy Dunlap | 26e6c66 | 2007-11-28 09:04:30 -0800 | [diff] [blame] | 308 | * Scheduled procedure to handle blocking stuff for the pushbuttons. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | * Handles all pending events and exits. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | */ |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 311 | static void pciehp_power_thread(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | { |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 313 | struct power_work_info *info = |
| 314 | container_of(work, struct power_work_info, work); |
| 315 | struct slot *p_slot = info->p_slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 317 | mutex_lock(&p_slot->lock); |
| 318 | switch (p_slot->state) { |
| 319 | case POWEROFF_STATE: |
| 320 | mutex_unlock(&p_slot->lock); |
| 321 | dbg("%s: disabling bus:device(%x:%x)\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 322 | __func__, p_slot->bus, p_slot->device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | pciehp_disable_slot(p_slot); |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 324 | mutex_lock(&p_slot->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | p_slot->state = STATIC_STATE; |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 326 | break; |
| 327 | case POWERON_STATE: |
| 328 | mutex_unlock(&p_slot->lock); |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 329 | if (pciehp_enable_slot(p_slot) && |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 330 | PWR_LED(p_slot->ctrl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | p_slot->hpc_ops->green_led_off(p_slot); |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 332 | mutex_lock(&p_slot->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | p_slot->state = STATIC_STATE; |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 334 | break; |
| 335 | default: |
| 336 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | } |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 338 | mutex_unlock(&p_slot->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 340 | kfree(info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Kristen Carlson Accardi | e325e1f | 2007-03-21 11:45:31 -0700 | [diff] [blame] | 343 | void pciehp_queue_pushbutton_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | { |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 345 | struct slot *p_slot = container_of(work, struct slot, work.work); |
| 346 | struct power_work_info *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 348 | info = kmalloc(sizeof(*info), GFP_KERNEL); |
| 349 | if (!info) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 350 | err("%s: Cannot allocate memory\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | return; |
| 352 | } |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 353 | info->p_slot = p_slot; |
| 354 | INIT_WORK(&info->work, pciehp_power_thread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 356 | mutex_lock(&p_slot->lock); |
| 357 | switch (p_slot->state) { |
| 358 | case BLINKINGOFF_STATE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | p_slot->state = POWEROFF_STATE; |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 360 | break; |
| 361 | case BLINKINGON_STATE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | p_slot->state = POWERON_STATE; |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 363 | break; |
| 364 | default: |
| 365 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | } |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 367 | queue_work(pciehp_wq, &info->work); |
| 368 | out: |
| 369 | mutex_unlock(&p_slot->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | } |
| 371 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | static int update_slot_info(struct slot *slot) |
| 373 | { |
| 374 | struct hotplug_slot_info *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | int result; |
| 376 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 377 | info = kmalloc(sizeof(*info), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | if (!info) |
| 379 | return -ENOMEM; |
| 380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | slot->hpc_ops->get_power_status(slot, &(info->power_status)); |
| 382 | slot->hpc_ops->get_attention_status(slot, &(info->attention_status)); |
| 383 | slot->hpc_ops->get_latch_status(slot, &(info->latch_status)); |
| 384 | slot->hpc_ops->get_adapter_status(slot, &(info->adapter_status)); |
| 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | result = pci_hp_change_slot_info(slot->hotplug_slot, info); |
| 387 | kfree (info); |
| 388 | return result; |
| 389 | } |
| 390 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 391 | /* |
| 392 | * Note: This function must be called with slot->lock held |
| 393 | */ |
| 394 | static void handle_button_press_event(struct slot *p_slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | { |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 396 | struct controller *ctrl = p_slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | u8 getstatus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 399 | switch (p_slot->state) { |
| 400 | case STATIC_STATE: |
| 401 | p_slot->hpc_ops->get_power_status(p_slot, &getstatus); |
| 402 | if (getstatus) { |
| 403 | p_slot->state = BLINKINGOFF_STATE; |
| 404 | info("PCI slot #%s - powering off due to button " |
| 405 | "press.\n", p_slot->name); |
| 406 | } else { |
| 407 | p_slot->state = BLINKINGON_STATE; |
| 408 | info("PCI slot #%s - powering on due to button " |
| 409 | "press.\n", p_slot->name); |
| 410 | } |
| 411 | /* blink green LED and turn off amber */ |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 412 | if (PWR_LED(ctrl)) |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 413 | p_slot->hpc_ops->green_led_blink(p_slot); |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 414 | if (ATTN_LED(ctrl)) |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 415 | p_slot->hpc_ops->set_attention_status(p_slot, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 417 | schedule_delayed_work(&p_slot->work, 5*HZ); |
| 418 | break; |
| 419 | case BLINKINGOFF_STATE: |
| 420 | case BLINKINGON_STATE: |
| 421 | /* |
| 422 | * Cancel if we are still blinking; this means that we |
| 423 | * press the attention again before the 5 sec. limit |
| 424 | * expires to cancel hot-add or hot-remove |
| 425 | */ |
| 426 | info("Button cancel on Slot(%s)\n", p_slot->name); |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 427 | dbg("%s: button cancel\n", __func__); |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 428 | cancel_delayed_work(&p_slot->work); |
| 429 | if (p_slot->state == BLINKINGOFF_STATE) { |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 430 | if (PWR_LED(ctrl)) |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 431 | p_slot->hpc_ops->green_led_on(p_slot); |
| 432 | } else { |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 433 | if (PWR_LED(ctrl)) |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 434 | p_slot->hpc_ops->green_led_off(p_slot); |
| 435 | } |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 436 | if (ATTN_LED(ctrl)) |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 437 | p_slot->hpc_ops->set_attention_status(p_slot, 0); |
| 438 | info("PCI slot #%s - action canceled due to button press\n", |
| 439 | p_slot->name); |
| 440 | p_slot->state = STATIC_STATE; |
| 441 | break; |
| 442 | case POWEROFF_STATE: |
| 443 | case POWERON_STATE: |
| 444 | /* |
| 445 | * Ignore if the slot is on power-on or power-off state; |
| 446 | * this means that the previous attention button action |
| 447 | * to hot-add or hot-remove is undergoing |
| 448 | */ |
| 449 | info("Button ignore on Slot(%s)\n", p_slot->name); |
| 450 | update_slot_info(p_slot); |
| 451 | break; |
| 452 | default: |
| 453 | warn("Not a valid state\n"); |
| 454 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | } |
| 456 | } |
| 457 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 458 | /* |
| 459 | * Note: This function must be called with slot->lock held |
| 460 | */ |
| 461 | static void handle_surprise_event(struct slot *p_slot) |
| 462 | { |
| 463 | u8 getstatus; |
| 464 | struct power_work_info *info; |
| 465 | |
| 466 | info = kmalloc(sizeof(*info), GFP_KERNEL); |
| 467 | if (!info) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 468 | err("%s: Cannot allocate memory\n", __func__); |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 469 | return; |
| 470 | } |
| 471 | info->p_slot = p_slot; |
| 472 | INIT_WORK(&info->work, pciehp_power_thread); |
| 473 | |
| 474 | p_slot->hpc_ops->get_adapter_status(p_slot, &getstatus); |
| 475 | if (!getstatus) |
| 476 | p_slot->state = POWEROFF_STATE; |
| 477 | else |
| 478 | p_slot->state = POWERON_STATE; |
| 479 | |
| 480 | queue_work(pciehp_wq, &info->work); |
| 481 | } |
| 482 | |
| 483 | static void interrupt_event_handler(struct work_struct *work) |
| 484 | { |
| 485 | struct event_info *info = container_of(work, struct event_info, work); |
| 486 | struct slot *p_slot = info->p_slot; |
| 487 | struct controller *ctrl = p_slot->ctrl; |
| 488 | |
| 489 | mutex_lock(&p_slot->lock); |
| 490 | switch (info->event_type) { |
| 491 | case INT_BUTTON_PRESS: |
| 492 | handle_button_press_event(p_slot); |
| 493 | break; |
| 494 | case INT_POWER_FAULT: |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 495 | if (!POWER_CTRL(ctrl)) |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 496 | break; |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 497 | if (ATTN_LED(ctrl)) |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 498 | p_slot->hpc_ops->set_attention_status(p_slot, 1); |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 499 | if (PWR_LED(ctrl)) |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 500 | p_slot->hpc_ops->green_led_off(p_slot); |
| 501 | break; |
| 502 | case INT_PRESENCE_ON: |
| 503 | case INT_PRESENCE_OFF: |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 504 | if (!HP_SUPR_RM(ctrl)) |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 505 | break; |
| 506 | dbg("Surprise Removal\n"); |
| 507 | update_slot_info(p_slot); |
| 508 | handle_surprise_event(p_slot); |
| 509 | break; |
| 510 | default: |
| 511 | update_slot_info(p_slot); |
| 512 | break; |
| 513 | } |
| 514 | mutex_unlock(&p_slot->lock); |
| 515 | |
| 516 | kfree(info); |
| 517 | } |
| 518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | int pciehp_enable_slot(struct slot *p_slot) |
| 520 | { |
| 521 | u8 getstatus = 0; |
| 522 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
| 524 | /* Check to see if (latch closed, card present, power off) */ |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 525 | mutex_lock(&p_slot->ctrl->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
| 527 | rc = p_slot->hpc_ops->get_adapter_status(p_slot, &getstatus); |
| 528 | if (rc || !getstatus) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 529 | info("%s: no adapter on slot(%s)\n", __func__, |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 530 | p_slot->name); |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 531 | mutex_unlock(&p_slot->ctrl->crit_sect); |
Kenji Kaneshige | c9d86d7 | 2006-09-19 17:04:33 -0700 | [diff] [blame] | 532 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | } |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 534 | if (MRL_SENS(p_slot->ctrl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | rc = p_slot->hpc_ops->get_latch_status(p_slot, &getstatus); |
| 536 | if (rc || getstatus) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 537 | info("%s: latch open on slot(%s)\n", __func__, |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 538 | p_slot->name); |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 539 | mutex_unlock(&p_slot->ctrl->crit_sect); |
Kenji Kaneshige | c9d86d7 | 2006-09-19 17:04:33 -0700 | [diff] [blame] | 540 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | } |
Kenji Kaneshige | 36ed27b | 2007-08-09 16:09:36 -0700 | [diff] [blame] | 543 | |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 544 | if (POWER_CTRL(p_slot->ctrl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | rc = p_slot->hpc_ops->get_power_status(p_slot, &getstatus); |
| 546 | if (rc || getstatus) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 547 | info("%s: already enabled on slot(%s)\n", __func__, |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 548 | p_slot->name); |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 549 | mutex_unlock(&p_slot->ctrl->crit_sect); |
Kenji Kaneshige | c9d86d7 | 2006-09-19 17:04:33 -0700 | [diff] [blame] | 550 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | } |
| 552 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | p_slot->hpc_ops->get_latch_status(p_slot, &getstatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | |
rajesh.shah@intel.com | ca22a5e | 2005-10-31 16:20:08 -0800 | [diff] [blame] | 556 | rc = board_added(p_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | if (rc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | p_slot->hpc_ops->get_latch_status(p_slot, &getstatus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | } |
| 560 | |
Eric Sesterhenn | 9ef9977 | 2006-09-25 00:56:53 +0200 | [diff] [blame] | 561 | update_slot_info(p_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
Kenji Kaneshige | dd5619c | 2006-09-22 10:17:29 -0700 | [diff] [blame] | 563 | mutex_unlock(&p_slot->ctrl->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | return rc; |
| 565 | } |
| 566 | |
| 567 | |
| 568 | int pciehp_disable_slot(struct slot *p_slot) |
| 569 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | u8 getstatus = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
| 573 | if (!p_slot->ctrl) |
| 574 | return 1; |
| 575 | |
| 576 | /* Check to see if (latch closed, card present, power on) */ |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 577 | mutex_lock(&p_slot->ctrl->crit_sect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 579 | if (!HP_SUPR_RM(p_slot->ctrl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | ret = p_slot->hpc_ops->get_adapter_status(p_slot, &getstatus); |
| 581 | if (ret || !getstatus) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 582 | info("%s: no adapter on slot(%s)\n", __func__, |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 583 | p_slot->name); |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 584 | mutex_unlock(&p_slot->ctrl->crit_sect); |
Kenji Kaneshige | c9d86d7 | 2006-09-19 17:04:33 -0700 | [diff] [blame] | 585 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | } |
| 587 | } |
| 588 | |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 589 | if (MRL_SENS(p_slot->ctrl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | ret = p_slot->hpc_ops->get_latch_status(p_slot, &getstatus); |
| 591 | if (ret || getstatus) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 592 | info("%s: latch open on slot(%s)\n", __func__, |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 593 | p_slot->name); |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 594 | mutex_unlock(&p_slot->ctrl->crit_sect); |
Kenji Kaneshige | c9d86d7 | 2006-09-19 17:04:33 -0700 | [diff] [blame] | 595 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | } |
| 597 | } |
| 598 | |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame^] | 599 | if (POWER_CTRL(p_slot->ctrl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | ret = p_slot->hpc_ops->get_power_status(p_slot, &getstatus); |
| 601 | if (ret || !getstatus) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 602 | info("%s: already disabled slot(%s)\n", __func__, |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 603 | p_slot->name); |
Ingo Molnar | 6aa4cdd | 2006-01-13 16:02:15 +0100 | [diff] [blame] | 604 | mutex_unlock(&p_slot->ctrl->crit_sect); |
Kenji Kaneshige | c9d86d7 | 2006-09-19 17:04:33 -0700 | [diff] [blame] | 605 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } |
| 607 | } |
| 608 | |
rajesh.shah@intel.com | ca22a5e | 2005-10-31 16:20:08 -0800 | [diff] [blame] | 609 | ret = remove_board(p_slot); |
| 610 | update_slot_info(p_slot); |
Kenji Kaneshige | dd5619c | 2006-09-22 10:17:29 -0700 | [diff] [blame] | 611 | |
| 612 | mutex_unlock(&p_slot->ctrl->crit_sect); |
rajesh.shah@intel.com | ca22a5e | 2005-10-31 16:20:08 -0800 | [diff] [blame] | 613 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | } |
| 615 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 616 | int pciehp_sysfs_enable_slot(struct slot *p_slot) |
| 617 | { |
| 618 | int retval = -ENODEV; |
| 619 | |
| 620 | mutex_lock(&p_slot->lock); |
| 621 | switch (p_slot->state) { |
| 622 | case BLINKINGON_STATE: |
| 623 | cancel_delayed_work(&p_slot->work); |
| 624 | case STATIC_STATE: |
| 625 | p_slot->state = POWERON_STATE; |
| 626 | mutex_unlock(&p_slot->lock); |
| 627 | retval = pciehp_enable_slot(p_slot); |
| 628 | mutex_lock(&p_slot->lock); |
| 629 | p_slot->state = STATIC_STATE; |
| 630 | break; |
| 631 | case POWERON_STATE: |
| 632 | info("Slot %s is already in powering on state\n", |
| 633 | p_slot->name); |
| 634 | break; |
| 635 | case BLINKINGOFF_STATE: |
| 636 | case POWEROFF_STATE: |
| 637 | info("Already enabled on slot %s\n", p_slot->name); |
| 638 | break; |
| 639 | default: |
| 640 | err("Not a valid state on slot %s\n", p_slot->name); |
| 641 | break; |
| 642 | } |
| 643 | mutex_unlock(&p_slot->lock); |
| 644 | |
| 645 | return retval; |
| 646 | } |
| 647 | |
| 648 | int pciehp_sysfs_disable_slot(struct slot *p_slot) |
| 649 | { |
| 650 | int retval = -ENODEV; |
| 651 | |
| 652 | mutex_lock(&p_slot->lock); |
| 653 | switch (p_slot->state) { |
| 654 | case BLINKINGOFF_STATE: |
| 655 | cancel_delayed_work(&p_slot->work); |
| 656 | case STATIC_STATE: |
| 657 | p_slot->state = POWEROFF_STATE; |
| 658 | mutex_unlock(&p_slot->lock); |
| 659 | retval = pciehp_disable_slot(p_slot); |
| 660 | mutex_lock(&p_slot->lock); |
| 661 | p_slot->state = STATIC_STATE; |
| 662 | break; |
| 663 | case POWEROFF_STATE: |
| 664 | info("Slot %s is already in powering off state\n", |
| 665 | p_slot->name); |
| 666 | break; |
| 667 | case BLINKINGON_STATE: |
| 668 | case POWERON_STATE: |
| 669 | info("Already disabled on slot %s\n", p_slot->name); |
| 670 | break; |
| 671 | default: |
| 672 | err("Not a valid state on slot %s\n", p_slot->name); |
| 673 | break; |
| 674 | } |
| 675 | mutex_unlock(&p_slot->lock); |
| 676 | |
| 677 | return retval; |
| 678 | } |