pciehp: wait for 1000ms before LED operation after power off
[deliverable/linux.git] / drivers / pci / hotplug / pciehp_hpc.c
CommitLineData
1da177e4
LT
1/*
2 * PCI Express PCI Hot Plug 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 *
8cf4c195 26 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
1da177e4
LT
27 *
28 */
29
1da177e4
LT
30#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/types.h>
de25968c
TS
33#include <linux/signal.h>
34#include <linux/jiffies.h>
35#include <linux/timer.h>
1da177e4 36#include <linux/pci.h>
5d1b8c9e 37#include <linux/interrupt.h>
34d03419 38#include <linux/time.h>
5d1b8c9e 39
1da177e4
LT
40#include "../pci.h"
41#include "pciehp.h"
1da177e4 42
5d386e1a
KK
43static atomic_t pciehp_num_controllers = ATOMIC_INIT(0);
44
1da177e4
LT
45struct ctrl_reg {
46 u8 cap_id;
47 u8 nxt_ptr;
48 u16 cap_reg;
49 u32 dev_cap;
50 u16 dev_ctrl;
51 u16 dev_status;
52 u32 lnk_cap;
53 u16 lnk_ctrl;
54 u16 lnk_status;
55 u32 slot_cap;
56 u16 slot_ctrl;
57 u16 slot_status;
58 u16 root_ctrl;
59 u16 rsvp;
60 u32 root_status;
61} __attribute__ ((packed));
62
63/* offsets to the controller registers based on the above structure layout */
64enum ctrl_offsets {
65 PCIECAPID = offsetof(struct ctrl_reg, cap_id),
66 NXTCAPPTR = offsetof(struct ctrl_reg, nxt_ptr),
67 CAPREG = offsetof(struct ctrl_reg, cap_reg),
68 DEVCAP = offsetof(struct ctrl_reg, dev_cap),
69 DEVCTRL = offsetof(struct ctrl_reg, dev_ctrl),
70 DEVSTATUS = offsetof(struct ctrl_reg, dev_status),
71 LNKCAP = offsetof(struct ctrl_reg, lnk_cap),
72 LNKCTRL = offsetof(struct ctrl_reg, lnk_ctrl),
73 LNKSTATUS = offsetof(struct ctrl_reg, lnk_status),
74 SLOTCAP = offsetof(struct ctrl_reg, slot_cap),
75 SLOTCTRL = offsetof(struct ctrl_reg, slot_ctrl),
76 SLOTSTATUS = offsetof(struct ctrl_reg, slot_status),
77 ROOTCTRL = offsetof(struct ctrl_reg, root_ctrl),
78 ROOTSTATUS = offsetof(struct ctrl_reg, root_status),
79};
1da177e4 80
a0f018da
KK
81static inline int pciehp_readw(struct controller *ctrl, int reg, u16 *value)
82{
83 struct pci_dev *dev = ctrl->pci_dev;
84 return pci_read_config_word(dev, ctrl->cap_base + reg, value);
85}
86
87static inline int pciehp_readl(struct controller *ctrl, int reg, u32 *value)
88{
89 struct pci_dev *dev = ctrl->pci_dev;
90 return pci_read_config_dword(dev, ctrl->cap_base + reg, value);
91}
92
93static inline int pciehp_writew(struct controller *ctrl, int reg, u16 value)
94{
95 struct pci_dev *dev = ctrl->pci_dev;
96 return pci_write_config_word(dev, ctrl->cap_base + reg, value);
97}
98
99static inline int pciehp_writel(struct controller *ctrl, int reg, u32 value)
100{
101 struct pci_dev *dev = ctrl->pci_dev;
102 return pci_write_config_dword(dev, ctrl->cap_base + reg, value);
103}
1da177e4
LT
104
105/* Field definitions in PCI Express Capabilities Register */
106#define CAP_VER 0x000F
107#define DEV_PORT_TYPE 0x00F0
108#define SLOT_IMPL 0x0100
109#define MSG_NUM 0x3E00
110
111/* Device or Port Type */
112#define NAT_ENDPT 0x00
113#define LEG_ENDPT 0x01
114#define ROOT_PORT 0x04
115#define UP_STREAM 0x05
116#define DN_STREAM 0x06
117#define PCIE_PCI_BRDG 0x07
118#define PCI_PCIE_BRDG 0x10
119
120/* Field definitions in Device Capabilities Register */
121#define DATTN_BUTTN_PRSN 0x1000
122#define DATTN_LED_PRSN 0x2000
123#define DPWR_LED_PRSN 0x4000
124
125/* Field definitions in Link Capabilities Register */
126#define MAX_LNK_SPEED 0x000F
127#define MAX_LNK_WIDTH 0x03F0
128
129/* Link Width Encoding */
130#define LNK_X1 0x01
131#define LNK_X2 0x02
71ad556d 132#define LNK_X4 0x04
1da177e4
LT
133#define LNK_X8 0x08
134#define LNK_X12 0x0C
71ad556d 135#define LNK_X16 0x10
1da177e4
LT
136#define LNK_X32 0x20
137
138/*Field definitions of Link Status Register */
139#define LNK_SPEED 0x000F
140#define NEG_LINK_WD 0x03F0
141#define LNK_TRN_ERR 0x0400
142#define LNK_TRN 0x0800
143#define SLOT_CLK_CONF 0x1000
144
145/* Field definitions in Slot Capabilities Register */
146#define ATTN_BUTTN_PRSN 0x00000001
147#define PWR_CTRL_PRSN 0x00000002
148#define MRL_SENS_PRSN 0x00000004
149#define ATTN_LED_PRSN 0x00000008
150#define PWR_LED_PRSN 0x00000010
151#define HP_SUPR_RM_SUP 0x00000020
152#define HP_CAP 0x00000040
153#define SLOT_PWR_VALUE 0x000003F8
154#define SLOT_PWR_LIMIT 0x00000C00
155#define PSN 0xFFF80000 /* PSN: Physical Slot Number */
156
157/* Field definitions in Slot Control Register */
158#define ATTN_BUTTN_ENABLE 0x0001
159#define PWR_FAULT_DETECT_ENABLE 0x0002
160#define MRL_DETECT_ENABLE 0x0004
161#define PRSN_DETECT_ENABLE 0x0008
162#define CMD_CMPL_INTR_ENABLE 0x0010
163#define HP_INTR_ENABLE 0x0020
164#define ATTN_LED_CTRL 0x00C0
165#define PWR_LED_CTRL 0x0300
166#define PWR_CTRL 0x0400
34d03419 167#define EMI_CTRL 0x0800
1da177e4
LT
168
169/* Attention indicator and Power indicator states */
170#define LED_ON 0x01
171#define LED_BLINK 0x10
172#define LED_OFF 0x11
173
174/* Power Control Command */
175#define POWER_ON 0
176#define POWER_OFF 0x0400
177
34d03419
KCA
178/* EMI Status defines */
179#define EMI_DISENGAGED 0
180#define EMI_ENGAGED 1
181
1da177e4
LT
182/* Field definitions in Slot Status Register */
183#define ATTN_BUTTN_PRESSED 0x0001
184#define PWR_FAULT_DETECTED 0x0002
185#define MRL_SENS_CHANGED 0x0004
186#define PRSN_DETECT_CHANGED 0x0008
187#define CMD_COMPLETED 0x0010
188#define MRL_STATE 0x0020
189#define PRSN_STATE 0x0040
34d03419
KCA
190#define EMI_STATE 0x0080
191#define EMI_STATUS_BIT 7
1da177e4 192
48fe3915
KK
193static irqreturn_t pcie_isr(int irq, void *dev_id);
194static void start_int_poll_timer(struct controller *ctrl, int sec);
1da177e4
LT
195
196/* This is the interrupt polling timeout function. */
48fe3915 197static void int_poll_timeout(unsigned long data)
1da177e4 198{
48fe3915 199 struct controller *ctrl = (struct controller *)data;
1da177e4 200
1da177e4 201 /* Poll for interrupt events. regs == NULL => polling */
48fe3915 202 pcie_isr(0, ctrl);
1da177e4 203
48fe3915 204 init_timer(&ctrl->poll_timer);
1da177e4 205 if (!pciehp_poll_time)
40730d10 206 pciehp_poll_time = 2; /* default polling interval is 2 sec */
1da177e4 207
48fe3915 208 start_int_poll_timer(ctrl, pciehp_poll_time);
1da177e4
LT
209}
210
211/* This function starts the interrupt polling timer. */
48fe3915 212static void start_int_poll_timer(struct controller *ctrl, int sec)
1da177e4 213{
48fe3915
KK
214 /* Clamp to sane value */
215 if ((sec <= 0) || (sec > 60))
216 sec = 2;
217
218 ctrl->poll_timer.function = &int_poll_timeout;
219 ctrl->poll_timer.data = (unsigned long)ctrl;
220 ctrl->poll_timer.expires = jiffies + sec * HZ;
221 add_timer(&ctrl->poll_timer);
1da177e4
LT
222}
223
44ef4cef
KK
224static inline int pcie_wait_cmd(struct controller *ctrl)
225{
262303fe
KK
226 int retval = 0;
227 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
228 unsigned long timeout = msecs_to_jiffies(msecs);
229 int rc;
230
231 rc = wait_event_interruptible_timeout(ctrl->queue,
232 !ctrl->cmd_busy, timeout);
233 if (!rc)
234 dbg("Command not completed in 1000 msec\n");
235 else if (rc < 0) {
236 retval = -EINTR;
237 info("Command was interrupted by a signal\n");
238 }
44ef4cef 239
262303fe 240 return retval;
44ef4cef
KK
241}
242
f4778364
KK
243/**
244 * pcie_write_cmd - Issue controller command
245 * @slot: slot to which the command is issued
246 * @cmd: command value written to slot control register
247 * @mask: bitmask of slot control register to be modified
248 */
249static int pcie_write_cmd(struct slot *slot, u16 cmd, u16 mask)
1da177e4 250{
48fe3915 251 struct controller *ctrl = slot->ctrl;
1da177e4
LT
252 int retval = 0;
253 u16 slot_status;
f4778364
KK
254 u16 slot_ctrl;
255 unsigned long flags;
1da177e4 256
44ef4cef
KK
257 mutex_lock(&ctrl->ctrl_lock);
258
a0f018da 259 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1da177e4 260 if (retval) {
a0f018da 261 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
44ef4cef 262 goto out;
a0f018da
KK
263 }
264
71ad556d 265 if ((slot_status & CMD_COMPLETED) == CMD_COMPLETED ) {
44ef4cef
KK
266 /* After 1 sec and CMD_COMPLETED still not set, just
267 proceed forward to issue the next command according
268 to spec. Just print out the error message */
269 dbg("%s: CMD_COMPLETED not clear after 1 sec.\n",
270 __FUNCTION__);
1da177e4
LT
271 }
272
f4778364
KK
273 spin_lock_irqsave(&ctrl->lock, flags);
274 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
1da177e4 275 if (retval) {
f4778364
KK
276 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
277 goto out_spin_unlock;
1da177e4 278 }
1da177e4 279
f4778364
KK
280 slot_ctrl &= ~mask;
281 slot_ctrl |= ((cmd & mask) | CMD_CMPL_INTR_ENABLE);
282
283 ctrl->cmd_busy = 1;
284 retval = pciehp_writew(ctrl, SLOTCTRL, slot_ctrl);
285 if (retval)
286 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
287
288 out_spin_unlock:
289 spin_unlock_irqrestore(&ctrl->lock, flags);
290
44ef4cef
KK
291 /*
292 * Wait for command completion.
293 */
f4778364
KK
294 if (!retval)
295 retval = pcie_wait_cmd(ctrl);
44ef4cef
KK
296 out:
297 mutex_unlock(&ctrl->ctrl_lock);
1da177e4
LT
298 return retval;
299}
300
301static int hpc_check_lnk_status(struct controller *ctrl)
302{
1da177e4
LT
303 u16 lnk_status;
304 int retval = 0;
305
a0f018da 306 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
1da177e4 307 if (retval) {
a0f018da 308 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
1da177e4
LT
309 return retval;
310 }
311
312 dbg("%s: lnk_status = %x\n", __FUNCTION__, lnk_status);
71ad556d 313 if ( (lnk_status & LNK_TRN) || (lnk_status & LNK_TRN_ERR) ||
1da177e4
LT
314 !(lnk_status & NEG_LINK_WD)) {
315 err("%s : Link Training Error occurs \n", __FUNCTION__);
316 retval = -1;
317 return retval;
318 }
319
1da177e4
LT
320 return retval;
321}
322
1da177e4
LT
323static int hpc_get_attention_status(struct slot *slot, u8 *status)
324{
48fe3915 325 struct controller *ctrl = slot->ctrl;
1da177e4
LT
326 u16 slot_ctrl;
327 u8 atten_led_state;
328 int retval = 0;
1da177e4 329
a0f018da 330 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
1da177e4 331 if (retval) {
a0f018da 332 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
1da177e4
LT
333 return retval;
334 }
335
a0f018da
KK
336 dbg("%s: SLOTCTRL %x, value read %x\n",
337 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
1da177e4
LT
338
339 atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6;
340
341 switch (atten_led_state) {
342 case 0:
343 *status = 0xFF; /* Reserved */
344 break;
345 case 1:
346 *status = 1; /* On */
347 break;
348 case 2:
349 *status = 2; /* Blink */
350 break;
351 case 3:
352 *status = 0; /* Off */
353 break;
354 default:
355 *status = 0xFF;
356 break;
357 }
358
1da177e4
LT
359 return 0;
360}
361
48fe3915 362static int hpc_get_power_status(struct slot *slot, u8 *status)
1da177e4 363{
48fe3915 364 struct controller *ctrl = slot->ctrl;
1da177e4
LT
365 u16 slot_ctrl;
366 u8 pwr_state;
367 int retval = 0;
1da177e4 368
a0f018da 369 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
1da177e4 370 if (retval) {
a0f018da 371 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
1da177e4
LT
372 return retval;
373 }
a0f018da
KK
374 dbg("%s: SLOTCTRL %x value read %x\n",
375 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
1da177e4
LT
376
377 pwr_state = (slot_ctrl & PWR_CTRL) >> 10;
378
379 switch (pwr_state) {
380 case 0:
381 *status = 1;
382 break;
383 case 1:
71ad556d 384 *status = 0;
1da177e4
LT
385 break;
386 default:
387 *status = 0xFF;
388 break;
389 }
390
1da177e4
LT
391 return retval;
392}
393
1da177e4
LT
394static int hpc_get_latch_status(struct slot *slot, u8 *status)
395{
48fe3915 396 struct controller *ctrl = slot->ctrl;
1da177e4
LT
397 u16 slot_status;
398 int retval = 0;
399
a0f018da 400 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1da177e4 401 if (retval) {
a0f018da 402 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
1da177e4
LT
403 return retval;
404 }
405
71ad556d 406 *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1;
1da177e4 407
1da177e4
LT
408 return 0;
409}
410
411static int hpc_get_adapter_status(struct slot *slot, u8 *status)
412{
48fe3915 413 struct controller *ctrl = slot->ctrl;
1da177e4
LT
414 u16 slot_status;
415 u8 card_state;
416 int retval = 0;
417
a0f018da 418 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1da177e4 419 if (retval) {
a0f018da 420 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
1da177e4
LT
421 return retval;
422 }
423 card_state = (u8)((slot_status & PRSN_STATE) >> 6);
424 *status = (card_state == 1) ? 1 : 0;
425
1da177e4
LT
426 return 0;
427}
428
48fe3915 429static int hpc_query_power_fault(struct slot *slot)
1da177e4 430{
48fe3915 431 struct controller *ctrl = slot->ctrl;
1da177e4
LT
432 u16 slot_status;
433 u8 pwr_fault;
434 int retval = 0;
1da177e4 435
a0f018da 436 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1da177e4 437 if (retval) {
a0f018da 438 err("%s: Cannot check for power fault\n", __FUNCTION__);
1da177e4
LT
439 return retval;
440 }
441 pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
71ad556d 442
8239def1 443 return pwr_fault;
1da177e4
LT
444}
445
34d03419
KCA
446static int hpc_get_emi_status(struct slot *slot, u8 *status)
447{
448 struct controller *ctrl = slot->ctrl;
449 u16 slot_status;
450 int retval = 0;
451
34d03419
KCA
452 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
453 if (retval) {
454 err("%s : Cannot check EMI status\n", __FUNCTION__);
455 return retval;
456 }
457 *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT;
458
34d03419
KCA
459 return retval;
460}
461
462static int hpc_toggle_emi(struct slot *slot)
463{
f4778364
KK
464 u16 slot_cmd;
465 u16 cmd_mask;
466 int rc;
34d03419 467
f4778364
KK
468 slot_cmd = EMI_CTRL;
469 cmd_mask = EMI_CTRL;
470 if (!pciehp_poll_mode) {
34d03419 471 slot_cmd = slot_cmd | HP_INTR_ENABLE;
f4778364
KK
472 cmd_mask = cmd_mask | HP_INTR_ENABLE;
473 }
34d03419 474
f4778364 475 rc = pcie_write_cmd(slot, slot_cmd, cmd_mask);
34d03419 476 slot->last_emi_toggle = get_seconds();
c8426483 477
34d03419
KCA
478 return rc;
479}
480
1da177e4
LT
481static int hpc_set_attention_status(struct slot *slot, u8 value)
482{
48fe3915 483 struct controller *ctrl = slot->ctrl;
f4778364
KK
484 u16 slot_cmd;
485 u16 cmd_mask;
486 int rc;
1da177e4 487
f4778364 488 cmd_mask = ATTN_LED_CTRL;
1da177e4
LT
489 switch (value) {
490 case 0 : /* turn off */
f4778364 491 slot_cmd = 0x00C0;
1da177e4
LT
492 break;
493 case 1: /* turn on */
f4778364 494 slot_cmd = 0x0040;
1da177e4
LT
495 break;
496 case 2: /* turn blink */
f4778364 497 slot_cmd = 0x0080;
1da177e4
LT
498 break;
499 default:
500 return -1;
501 }
f4778364
KK
502 if (!pciehp_poll_mode) {
503 slot_cmd = slot_cmd | HP_INTR_ENABLE;
504 cmd_mask = cmd_mask | HP_INTR_ENABLE;
505 }
1da177e4 506
f4778364 507 rc = pcie_write_cmd(slot, slot_cmd, cmd_mask);
a0f018da
KK
508 dbg("%s: SLOTCTRL %x write cmd %x\n",
509 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
71ad556d 510
1da177e4
LT
511 return rc;
512}
513
1da177e4
LT
514static void hpc_set_green_led_on(struct slot *slot)
515{
48fe3915 516 struct controller *ctrl = slot->ctrl;
1da177e4 517 u16 slot_cmd;
f4778364 518 u16 cmd_mask;
71ad556d 519
f4778364
KK
520 slot_cmd = 0x0100;
521 cmd_mask = PWR_LED_CTRL;
522 if (!pciehp_poll_mode) {
523 slot_cmd = slot_cmd | HP_INTR_ENABLE;
524 cmd_mask = cmd_mask | HP_INTR_ENABLE;
1da177e4 525 }
1da177e4 526
f4778364 527 pcie_write_cmd(slot, slot_cmd, cmd_mask);
1da177e4 528
a0f018da
KK
529 dbg("%s: SLOTCTRL %x write cmd %x\n",
530 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
1da177e4
LT
531}
532
533static void hpc_set_green_led_off(struct slot *slot)
534{
48fe3915 535 struct controller *ctrl = slot->ctrl;
1da177e4 536 u16 slot_cmd;
f4778364 537 u16 cmd_mask;
1da177e4 538
f4778364
KK
539 slot_cmd = 0x0300;
540 cmd_mask = PWR_LED_CTRL;
541 if (!pciehp_poll_mode) {
542 slot_cmd = slot_cmd | HP_INTR_ENABLE;
543 cmd_mask = cmd_mask | HP_INTR_ENABLE;
1da177e4 544 }
1da177e4 545
f4778364 546 pcie_write_cmd(slot, slot_cmd, cmd_mask);
a0f018da
KK
547 dbg("%s: SLOTCTRL %x write cmd %x\n",
548 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
1da177e4
LT
549}
550
551static void hpc_set_green_led_blink(struct slot *slot)
552{
48fe3915 553 struct controller *ctrl = slot->ctrl;
1da177e4 554 u16 slot_cmd;
f4778364 555 u16 cmd_mask;
71ad556d 556
f4778364
KK
557 slot_cmd = 0x0200;
558 cmd_mask = PWR_LED_CTRL;
559 if (!pciehp_poll_mode) {
560 slot_cmd = slot_cmd | HP_INTR_ENABLE;
561 cmd_mask = cmd_mask | HP_INTR_ENABLE;
1da177e4 562 }
1da177e4 563
f4778364 564 pcie_write_cmd(slot, slot_cmd, cmd_mask);
1da177e4 565
a0f018da
KK
566 dbg("%s: SLOTCTRL %x write cmd %x\n",
567 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
1da177e4
LT
568}
569
1da177e4
LT
570static void hpc_release_ctlr(struct controller *ctrl)
571{
48fe3915
KK
572 if (pciehp_poll_mode)
573 del_timer(&ctrl->poll_timer);
574 else
575 free_irq(ctrl->pci_dev->irq, ctrl);
1da177e4 576
5d386e1a
KK
577 /*
578 * If this is the last controller to be released, destroy the
579 * pciehp work queue
580 */
581 if (atomic_dec_and_test(&pciehp_num_controllers))
582 destroy_workqueue(pciehp_wq);
1da177e4
LT
583}
584
585static int hpc_power_on_slot(struct slot * slot)
586{
48fe3915 587 struct controller *ctrl = slot->ctrl;
1da177e4 588 u16 slot_cmd;
f4778364
KK
589 u16 cmd_mask;
590 u16 slot_status;
1da177e4
LT
591 int retval = 0;
592
1da177e4 593 dbg("%s: slot->hp_slot %x\n", __FUNCTION__, slot->hp_slot);
1da177e4 594
5a49f203 595 /* Clear sticky power-fault bit from previous power failures */
a0f018da
KK
596 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
597 if (retval) {
598 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
599 return retval;
600 }
5a49f203 601 slot_status &= PWR_FAULT_DETECTED;
a0f018da
KK
602 if (slot_status) {
603 retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status);
604 if (retval) {
605 err("%s: Cannot write to SLOTSTATUS register\n",
606 __FUNCTION__);
607 return retval;
608 }
609 }
1da177e4 610
f4778364
KK
611 slot_cmd = POWER_ON;
612 cmd_mask = PWR_CTRL;
c7ab337f 613 /* Enable detection that we turned off at slot power-off time */
f4778364 614 if (!pciehp_poll_mode) {
c7ab337f
TS
615 slot_cmd = slot_cmd |
616 PWR_FAULT_DETECT_ENABLE |
617 MRL_DETECT_ENABLE |
618 PRSN_DETECT_ENABLE |
619 HP_INTR_ENABLE;
f4778364
KK
620 cmd_mask = cmd_mask |
621 PWR_FAULT_DETECT_ENABLE |
622 MRL_DETECT_ENABLE |
623 PRSN_DETECT_ENABLE |
624 HP_INTR_ENABLE;
625 }
1da177e4 626
f4778364 627 retval = pcie_write_cmd(slot, slot_cmd, cmd_mask);
1da177e4
LT
628
629 if (retval) {
630 err("%s: Write %x command failed!\n", __FUNCTION__, slot_cmd);
631 return -1;
632 }
a0f018da
KK
633 dbg("%s: SLOTCTRL %x write cmd %x\n",
634 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
1da177e4 635
1da177e4
LT
636 return retval;
637}
638
639static int hpc_power_off_slot(struct slot * slot)
640{
48fe3915 641 struct controller *ctrl = slot->ctrl;
1da177e4 642 u16 slot_cmd;
f4778364 643 u16 cmd_mask;
1da177e4
LT
644 int retval = 0;
645
1da177e4 646 dbg("%s: slot->hp_slot %x\n", __FUNCTION__, slot->hp_slot);
1da177e4 647
f4778364
KK
648 slot_cmd = POWER_OFF;
649 cmd_mask = PWR_CTRL;
c7ab337f
TS
650 /*
651 * If we get MRL or presence detect interrupts now, the isr
652 * will notice the sticky power-fault bit too and issue power
653 * indicator change commands. This will lead to an endless loop
654 * of command completions, since the power-fault bit remains on
655 * till the slot is powered on again.
656 */
f4778364 657 if (!pciehp_poll_mode) {
c7ab337f
TS
658 slot_cmd = (slot_cmd &
659 ~PWR_FAULT_DETECT_ENABLE &
660 ~MRL_DETECT_ENABLE &
661 ~PRSN_DETECT_ENABLE) | HP_INTR_ENABLE;
f4778364
KK
662 cmd_mask = cmd_mask |
663 PWR_FAULT_DETECT_ENABLE |
664 MRL_DETECT_ENABLE |
665 PRSN_DETECT_ENABLE |
666 HP_INTR_ENABLE;
667 }
1da177e4 668
f4778364 669 retval = pcie_write_cmd(slot, slot_cmd, cmd_mask);
1da177e4
LT
670 if (retval) {
671 err("%s: Write command failed!\n", __FUNCTION__);
672 return -1;
673 }
a0f018da
KK
674 dbg("%s: SLOTCTRL %x write cmd %x\n",
675 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
1da177e4 676
8bb7c7af
KK
677 /*
678 * After turning power off, we must wait for at least 1 second
679 * before taking any action that relies on power having been
680 * removed from the slot/adapter.
681 */
682 msleep(1000);
683
1da177e4
LT
684 return retval;
685}
686
48fe3915 687static irqreturn_t pcie_isr(int irq, void *dev_id)
1da177e4 688{
48fe3915 689 struct controller *ctrl = (struct controller *)dev_id;
1da177e4
LT
690 u16 slot_status, intr_detect, intr_loc;
691 u16 temp_word;
692 int hp_slot = 0; /* only 1 slot per PCI Express port */
693 int rc = 0;
f4778364 694 unsigned long flags;
1da177e4 695
a0f018da 696 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1da177e4 697 if (rc) {
a0f018da 698 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
1da177e4
LT
699 return IRQ_NONE;
700 }
701
40730d10
KK
702 intr_detect = (ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED |
703 MRL_SENS_CHANGED | PRSN_DETECT_CHANGED | CMD_COMPLETED);
1da177e4
LT
704
705 intr_loc = slot_status & intr_detect;
706
707 /* Check to see if it was our interrupt */
708 if ( !intr_loc )
709 return IRQ_NONE;
710
711 dbg("%s: intr_loc %x\n", __FUNCTION__, intr_loc);
712 /* Mask Hot-plug Interrupt Enable */
713 if (!pciehp_poll_mode) {
f4778364 714 spin_lock_irqsave(&ctrl->lock, flags);
a0f018da 715 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
1da177e4 716 if (rc) {
a0f018da
KK
717 err("%s: Cannot read SLOT_CTRL register\n",
718 __FUNCTION__);
f4778364 719 spin_unlock_irqrestore(&ctrl->lock, flags);
1da177e4
LT
720 return IRQ_NONE;
721 }
722
a0f018da
KK
723 dbg("%s: pciehp_readw(SLOTCTRL) with value %x\n",
724 __FUNCTION__, temp_word);
40730d10
KK
725 temp_word = (temp_word & ~HP_INTR_ENABLE &
726 ~CMD_CMPL_INTR_ENABLE) | 0x00;
a0f018da 727 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
1da177e4 728 if (rc) {
a0f018da
KK
729 err("%s: Cannot write to SLOTCTRL register\n",
730 __FUNCTION__);
f4778364 731 spin_unlock_irqrestore(&ctrl->lock, flags);
1da177e4
LT
732 return IRQ_NONE;
733 }
f4778364 734 spin_unlock_irqrestore(&ctrl->lock, flags);
a0f018da
KK
735
736 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1da177e4 737 if (rc) {
a0f018da
KK
738 err("%s: Cannot read SLOT_STATUS register\n",
739 __FUNCTION__);
1da177e4
LT
740 return IRQ_NONE;
741 }
a0f018da
KK
742 dbg("%s: pciehp_readw(SLOTSTATUS) with value %x\n",
743 __FUNCTION__, slot_status);
71ad556d 744
1da177e4
LT
745 /* Clear command complete interrupt caused by this write */
746 temp_word = 0x1f;
a0f018da 747 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
1da177e4 748 if (rc) {
a0f018da
KK
749 err("%s: Cannot write to SLOTSTATUS register\n",
750 __FUNCTION__);
1da177e4
LT
751 return IRQ_NONE;
752 }
1da177e4 753 }
71ad556d 754
1da177e4 755 if (intr_loc & CMD_COMPLETED) {
71ad556d
KK
756 /*
757 * Command Complete Interrupt Pending
1da177e4 758 */
262303fe 759 ctrl->cmd_busy = 0;
1da177e4
LT
760 wake_up_interruptible(&ctrl->queue);
761 }
762
48fe3915
KK
763 if (intr_loc & MRL_SENS_CHANGED)
764 pciehp_handle_switch_change(hp_slot, ctrl);
765
766 if (intr_loc & ATTN_BUTTN_PRESSED)
767 pciehp_handle_attention_button(hp_slot, ctrl);
768
769 if (intr_loc & PRSN_DETECT_CHANGED)
770 pciehp_handle_presence_change(hp_slot, ctrl);
771
772 if (intr_loc & PWR_FAULT_DETECTED)
773 pciehp_handle_power_fault(hp_slot, ctrl);
1da177e4
LT
774
775 /* Clear all events after serving them */
776 temp_word = 0x1F;
a0f018da 777 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
1da177e4 778 if (rc) {
a0f018da 779 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
1da177e4
LT
780 return IRQ_NONE;
781 }
782 /* Unmask Hot-plug Interrupt Enable */
783 if (!pciehp_poll_mode) {
f4778364 784 spin_lock_irqsave(&ctrl->lock, flags);
a0f018da 785 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
1da177e4 786 if (rc) {
a0f018da
KK
787 err("%s: Cannot read SLOTCTRL register\n",
788 __FUNCTION__);
f4778364 789 spin_unlock_irqrestore(&ctrl->lock, flags);
1da177e4
LT
790 return IRQ_NONE;
791 }
792
793 dbg("%s: Unmask Hot-plug Interrupt Enable\n", __FUNCTION__);
1da177e4
LT
794 temp_word = (temp_word & ~HP_INTR_ENABLE) | HP_INTR_ENABLE;
795
a0f018da 796 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
1da177e4 797 if (rc) {
a0f018da
KK
798 err("%s: Cannot write to SLOTCTRL register\n",
799 __FUNCTION__);
f4778364 800 spin_unlock_irqrestore(&ctrl->lock, flags);
1da177e4
LT
801 return IRQ_NONE;
802 }
f4778364 803 spin_unlock_irqrestore(&ctrl->lock, flags);
a0f018da
KK
804
805 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1da177e4 806 if (rc) {
a0f018da
KK
807 err("%s: Cannot read SLOT_STATUS register\n",
808 __FUNCTION__);
1da177e4
LT
809 return IRQ_NONE;
810 }
71ad556d 811
1da177e4
LT
812 /* Clear command complete interrupt caused by this write */
813 temp_word = 0x1F;
a0f018da 814 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
1da177e4 815 if (rc) {
a0f018da
KK
816 err("%s: Cannot write to SLOTSTATUS failed\n",
817 __FUNCTION__);
1da177e4
LT
818 return IRQ_NONE;
819 }
a0f018da
KK
820 dbg("%s: pciehp_writew(SLOTSTATUS) with value %x\n",
821 __FUNCTION__, temp_word);
1da177e4 822 }
71ad556d 823
1da177e4
LT
824 return IRQ_HANDLED;
825}
826
40730d10 827static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
1da177e4 828{
48fe3915 829 struct controller *ctrl = slot->ctrl;
1da177e4
LT
830 enum pcie_link_speed lnk_speed;
831 u32 lnk_cap;
832 int retval = 0;
833
a0f018da 834 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
1da177e4 835 if (retval) {
a0f018da 836 err("%s: Cannot read LNKCAP register\n", __FUNCTION__);
1da177e4
LT
837 return retval;
838 }
839
840 switch (lnk_cap & 0x000F) {
841 case 1:
842 lnk_speed = PCIE_2PT5GB;
843 break;
844 default:
845 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
846 break;
847 }
848
849 *value = lnk_speed;
850 dbg("Max link speed = %d\n", lnk_speed);
c8426483 851
1da177e4
LT
852 return retval;
853}
854
40730d10
KK
855static int hpc_get_max_lnk_width(struct slot *slot,
856 enum pcie_link_width *value)
1da177e4 857{
48fe3915 858 struct controller *ctrl = slot->ctrl;
1da177e4
LT
859 enum pcie_link_width lnk_wdth;
860 u32 lnk_cap;
861 int retval = 0;
862
a0f018da 863 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
1da177e4 864 if (retval) {
a0f018da 865 err("%s: Cannot read LNKCAP register\n", __FUNCTION__);
1da177e4
LT
866 return retval;
867 }
868
869 switch ((lnk_cap & 0x03F0) >> 4){
870 case 0:
871 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
872 break;
873 case 1:
874 lnk_wdth = PCIE_LNK_X1;
875 break;
876 case 2:
877 lnk_wdth = PCIE_LNK_X2;
878 break;
879 case 4:
880 lnk_wdth = PCIE_LNK_X4;
881 break;
882 case 8:
883 lnk_wdth = PCIE_LNK_X8;
884 break;
885 case 12:
886 lnk_wdth = PCIE_LNK_X12;
887 break;
888 case 16:
889 lnk_wdth = PCIE_LNK_X16;
890 break;
891 case 32:
892 lnk_wdth = PCIE_LNK_X32;
893 break;
894 default:
895 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
896 break;
897 }
898
899 *value = lnk_wdth;
900 dbg("Max link width = %d\n", lnk_wdth);
c8426483 901
1da177e4
LT
902 return retval;
903}
904
40730d10 905static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
1da177e4 906{
48fe3915 907 struct controller *ctrl = slot->ctrl;
1da177e4
LT
908 enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
909 int retval = 0;
910 u16 lnk_status;
911
a0f018da 912 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
1da177e4 913 if (retval) {
a0f018da 914 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
1da177e4
LT
915 return retval;
916 }
917
918 switch (lnk_status & 0x0F) {
919 case 1:
920 lnk_speed = PCIE_2PT5GB;
921 break;
922 default:
923 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
924 break;
925 }
926
927 *value = lnk_speed;
928 dbg("Current link speed = %d\n", lnk_speed);
c8426483 929
1da177e4
LT
930 return retval;
931}
932
40730d10
KK
933static int hpc_get_cur_lnk_width(struct slot *slot,
934 enum pcie_link_width *value)
1da177e4 935{
48fe3915 936 struct controller *ctrl = slot->ctrl;
1da177e4
LT
937 enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
938 int retval = 0;
939 u16 lnk_status;
940
a0f018da 941 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
1da177e4 942 if (retval) {
a0f018da 943 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
1da177e4
LT
944 return retval;
945 }
71ad556d 946
1da177e4
LT
947 switch ((lnk_status & 0x03F0) >> 4){
948 case 0:
949 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
950 break;
951 case 1:
952 lnk_wdth = PCIE_LNK_X1;
953 break;
954 case 2:
955 lnk_wdth = PCIE_LNK_X2;
956 break;
957 case 4:
958 lnk_wdth = PCIE_LNK_X4;
959 break;
960 case 8:
961 lnk_wdth = PCIE_LNK_X8;
962 break;
963 case 12:
964 lnk_wdth = PCIE_LNK_X12;
965 break;
966 case 16:
967 lnk_wdth = PCIE_LNK_X16;
968 break;
969 case 32:
970 lnk_wdth = PCIE_LNK_X32;
971 break;
972 default:
973 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
974 break;
975 }
976
977 *value = lnk_wdth;
978 dbg("Current link width = %d\n", lnk_wdth);
c8426483 979
1da177e4
LT
980 return retval;
981}
982
983static struct hpc_ops pciehp_hpc_ops = {
984 .power_on_slot = hpc_power_on_slot,
985 .power_off_slot = hpc_power_off_slot,
986 .set_attention_status = hpc_set_attention_status,
987 .get_power_status = hpc_get_power_status,
988 .get_attention_status = hpc_get_attention_status,
989 .get_latch_status = hpc_get_latch_status,
990 .get_adapter_status = hpc_get_adapter_status,
34d03419
KCA
991 .get_emi_status = hpc_get_emi_status,
992 .toggle_emi = hpc_toggle_emi,
1da177e4
LT
993
994 .get_max_bus_speed = hpc_get_max_lnk_speed,
995 .get_cur_bus_speed = hpc_get_cur_lnk_speed,
996 .get_max_lnk_width = hpc_get_max_lnk_width,
997 .get_cur_lnk_width = hpc_get_cur_lnk_width,
71ad556d 998
1da177e4
LT
999 .query_power_fault = hpc_query_power_fault,
1000 .green_led_on = hpc_set_green_led_on,
1001 .green_led_off = hpc_set_green_led_off,
1002 .green_led_blink = hpc_set_green_led_blink,
71ad556d 1003
1da177e4
LT
1004 .release_ctlr = hpc_release_ctlr,
1005 .check_lnk_status = hpc_check_lnk_status,
1006};
1007
783c49fc
KA
1008#ifdef CONFIG_ACPI
1009int pciehp_acpi_get_hp_hw_control_from_firmware(struct pci_dev *dev)
1010{
1011 acpi_status status;
1012 acpi_handle chandle, handle = DEVICE_ACPI_HANDLE(&(dev->dev));
1013 struct pci_dev *pdev = dev;
1014 struct pci_bus *parent;
b2e6e3ba 1015 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
783c49fc
KA
1016
1017 /*
1018 * Per PCI firmware specification, we should run the ACPI _OSC
1019 * method to get control of hotplug hardware before using it.
1020 * If an _OSC is missing, we look for an OSHP to do the same thing.
1021 * To handle different BIOS behavior, we look for _OSC and OSHP
1022 * within the scope of the hotplug controller and its parents, upto
1023 * the host bridge under which this controller exists.
1024 */
1025 while (!handle) {
1026 /*
1027 * This hotplug controller was not listed in the ACPI name
1028 * space at all. Try to get acpi handle of parent pci bus.
1029 */
1030 if (!pdev || !pdev->bus->parent)
1031 break;
1032 parent = pdev->bus->parent;
1033 dbg("Could not find %s in acpi namespace, trying parent\n",
1034 pci_name(pdev));
1035 if (!parent->self)
1036 /* Parent must be a host bridge */
1037 handle = acpi_get_pci_rootbridge_handle(
1038 pci_domain_nr(parent),
1039 parent->number);
1040 else
1041 handle = DEVICE_ACPI_HANDLE(
1042 &(parent->self->dev));
1043 pdev = parent->self;
1044 }
1045
1046 while (handle) {
b2e6e3ba
MT
1047 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
1048 dbg("Trying to get hotplug control for %s \n",
1049 (char *)string.pointer);
783c49fc 1050 status = pci_osc_control_set(handle,
57d90c02 1051 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL |
783c49fc
KA
1052 OSC_PCI_EXPRESS_NATIVE_HP_CONTROL);
1053 if (status == AE_NOT_FOUND)
1054 status = acpi_run_oshp(handle);
1055 if (ACPI_SUCCESS(status)) {
1056 dbg("Gained control for hotplug HW for pci %s (%s)\n",
b2e6e3ba 1057 pci_name(dev), (char *)string.pointer);
81b26bca 1058 kfree(string.pointer);
783c49fc
KA
1059 return 0;
1060 }
1061 if (acpi_root_bridge(handle))
1062 break;
1063 chandle = handle;
1064 status = acpi_get_parent(chandle, &handle);
1065 if (ACPI_FAILURE(status))
1066 break;
1067 }
1068
1069 err("Cannot get control of hotplug hardware for pci %s\n",
1070 pci_name(dev));
b2e6e3ba 1071
81b26bca 1072 kfree(string.pointer);
783c49fc
KA
1073 return -1;
1074}
1075#endif
1076
ecdde939
ML
1077static int pcie_init_hardware_part1(struct controller *ctrl,
1078 struct pcie_device *dev)
1da177e4 1079{
1da177e4 1080 int rc;
1da177e4 1081 u16 temp_word;
1da177e4 1082 u32 slot_cap;
08e7a7d2 1083 u16 slot_status;
1da177e4 1084
a0f018da 1085 rc = pciehp_readl(ctrl, SLOTCAP, &slot_cap);
1da177e4 1086 if (rc) {
a0f018da 1087 err("%s: Cannot read SLOTCAP register\n", __FUNCTION__);
ecdde939 1088 return -1;
1da177e4 1089 }
1da177e4
LT
1090
1091 /* Mask Hot-plug Interrupt Enable */
a0f018da 1092 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
1da177e4 1093 if (rc) {
a0f018da 1094 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
ecdde939 1095 return -1;
1da177e4
LT
1096 }
1097
a0f018da
KK
1098 dbg("%s: SLOTCTRL %x value read %x\n",
1099 __FUNCTION__, ctrl->cap_base + SLOTCTRL, temp_word);
40730d10
KK
1100 temp_word = (temp_word & ~HP_INTR_ENABLE & ~CMD_CMPL_INTR_ENABLE) |
1101 0x00;
1da177e4 1102
a0f018da 1103 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
1da177e4 1104 if (rc) {
a0f018da 1105 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
ecdde939 1106 return -1;
1da177e4 1107 }
1da177e4 1108
a0f018da 1109 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1da177e4 1110 if (rc) {
a0f018da 1111 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
ecdde939 1112 return -1;
1da177e4 1113 }
1da177e4
LT
1114
1115 temp_word = 0x1F; /* Clear all events */
a0f018da 1116 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
1da177e4 1117 if (rc) {
a0f018da 1118 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
ecdde939 1119 return -1;
1da177e4 1120 }
ecdde939
ML
1121 return 0;
1122}
1a9ed1bf 1123
ecdde939
ML
1124int pcie_init_hardware_part2(struct controller *ctrl, struct pcie_device *dev)
1125{
1126 int rc;
1127 u16 temp_word;
1128 u16 intr_enable = 0;
1129 u32 slot_cap;
1130 u16 slot_status;
5d386e1a 1131
a0f018da 1132 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
1da177e4 1133 if (rc) {
a0f018da 1134 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
ecdde939 1135 goto abort;
1da177e4 1136 }
1da177e4
LT
1137
1138 intr_enable = intr_enable | PRSN_DETECT_ENABLE;
1139
ecdde939
ML
1140 rc = pciehp_readl(ctrl, SLOTCAP, &slot_cap);
1141 if (rc) {
1142 err("%s: Cannot read SLOTCAP register\n", __FUNCTION__);
1143 goto abort;
1144 }
1145
1da177e4
LT
1146 if (ATTN_BUTTN(slot_cap))
1147 intr_enable = intr_enable | ATTN_BUTTN_ENABLE;
71ad556d 1148
1da177e4
LT
1149 if (POWER_CTRL(slot_cap))
1150 intr_enable = intr_enable | PWR_FAULT_DETECT_ENABLE;
71ad556d 1151
1da177e4
LT
1152 if (MRL_SENS(slot_cap))
1153 intr_enable = intr_enable | MRL_DETECT_ENABLE;
1154
71ad556d 1155 temp_word = (temp_word & ~intr_enable) | intr_enable;
1da177e4
LT
1156
1157 if (pciehp_poll_mode) {
1158 temp_word = (temp_word & ~HP_INTR_ENABLE) | 0x0;
1159 } else {
1160 temp_word = (temp_word & ~HP_INTR_ENABLE) | HP_INTR_ENABLE;
1161 }
1da177e4 1162
40730d10
KK
1163 /*
1164 * Unmask Hot-plug Interrupt Enable for the interrupt
1165 * notification mechanism case.
1166 */
a0f018da 1167 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
1da177e4 1168 if (rc) {
a0f018da 1169 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
ecdde939 1170 goto abort;
1da177e4 1171 }
a0f018da 1172 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1da177e4 1173 if (rc) {
a0f018da 1174 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
9c64f977 1175 goto abort_disable_intr;
1da177e4 1176 }
71ad556d 1177
1da177e4 1178 temp_word = 0x1F; /* Clear all events */
a0f018da 1179 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
1da177e4 1180 if (rc) {
a0f018da 1181 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
9c64f977 1182 goto abort_disable_intr;
1da177e4 1183 }
71ad556d 1184
a3a45ec8 1185 if (pciehp_force) {
1186 dbg("Bypassing BIOS check for pciehp use on %s\n",
1187 pci_name(ctrl->pci_dev));
1188 } else {
6560aa5c 1189 rc = pciehp_get_hp_hw_control_from_firmware(ctrl->pci_dev);
a3a45ec8 1190 if (rc)
9c64f977 1191 goto abort_disable_intr;
a3a45ec8 1192 }
a8a2be94 1193
1da177e4
LT
1194 return 0;
1195
40730d10 1196 /* We end up here for the many possible ways to fail this API. */
9c64f977 1197abort_disable_intr:
a0f018da 1198 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
9c64f977
JB
1199 if (!rc) {
1200 temp_word &= ~(intr_enable | HP_INTR_ENABLE);
a0f018da 1201 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
9c64f977
JB
1202 }
1203 if (rc)
1204 err("%s : disabling interrupts failed\n", __FUNCTION__);
ecdde939 1205abort:
1da177e4
LT
1206 return -1;
1207}
08e7a7d2
ML
1208
1209int pcie_init(struct controller *ctrl, struct pcie_device *dev)
1210{
1211 int rc;
1212 u16 cap_reg;
1213 u32 slot_cap;
1214 int cap_base;
1215 u16 slot_status, slot_ctrl;
1216 struct pci_dev *pdev;
1217
1218 pdev = dev->port;
1219 ctrl->pci_dev = pdev; /* save pci_dev in context */
1220
1221 dbg("%s: hotplug controller vendor id 0x%x device id 0x%x\n",
1222 __FUNCTION__, pdev->vendor, pdev->device);
1223
1224 cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1225 if (cap_base == 0) {
1226 dbg("%s: Can't find PCI_CAP_ID_EXP (0x10)\n", __FUNCTION__);
1227 goto abort;
1228 }
1229
1230 ctrl->cap_base = cap_base;
1231
1232 dbg("%s: pcie_cap_base %x\n", __FUNCTION__, cap_base);
1233
1234 rc = pciehp_readw(ctrl, CAPREG, &cap_reg);
1235 if (rc) {
1236 err("%s: Cannot read CAPREG register\n", __FUNCTION__);
1237 goto abort;
1238 }
1239 dbg("%s: CAPREG offset %x cap_reg %x\n",
1240 __FUNCTION__, ctrl->cap_base + CAPREG, cap_reg);
1241
1242 if (((cap_reg & SLOT_IMPL) == 0) ||
1243 (((cap_reg & DEV_PORT_TYPE) != 0x0040)
1244 && ((cap_reg & DEV_PORT_TYPE) != 0x0060))) {
1245 dbg("%s : This is not a root port or the port is not "
1246 "connected to a slot\n", __FUNCTION__);
1247 goto abort;
1248 }
1249
1250 rc = pciehp_readl(ctrl, SLOTCAP, &slot_cap);
1251 if (rc) {
1252 err("%s: Cannot read SLOTCAP register\n", __FUNCTION__);
1253 goto abort;
1254 }
1255 dbg("%s: SLOTCAP offset %x slot_cap %x\n",
1256 __FUNCTION__, ctrl->cap_base + SLOTCAP, slot_cap);
1257
1258 if (!(slot_cap & HP_CAP)) {
1259 dbg("%s : This slot is not hot-plug capable\n", __FUNCTION__);
1260 goto abort;
1261 }
1262 /* For debugging purpose */
1263 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1264 if (rc) {
1265 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
1266 goto abort;
1267 }
1268 dbg("%s: SLOTSTATUS offset %x slot_status %x\n",
1269 __FUNCTION__, ctrl->cap_base + SLOTSTATUS, slot_status);
1270
1271 rc = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
1272 if (rc) {
1273 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
1274 goto abort;
1275 }
1276 dbg("%s: SLOTCTRL offset %x slot_ctrl %x\n",
1277 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
1278
1279 for (rc = 0; rc < DEVICE_COUNT_RESOURCE; rc++)
1280 if (pci_resource_len(pdev, rc) > 0)
1281 dbg("pci resource[%d] start=0x%llx(len=0x%llx)\n", rc,
1282 (unsigned long long)pci_resource_start(pdev, rc),
1283 (unsigned long long)pci_resource_len(pdev, rc));
1284
1285 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
1286 pdev->vendor, pdev->device,
1287 pdev->subsystem_vendor, pdev->subsystem_device);
1288
1289 mutex_init(&ctrl->crit_sect);
1290 mutex_init(&ctrl->ctrl_lock);
1291 spin_lock_init(&ctrl->lock);
1292
1293 /* setup wait queue */
1294 init_waitqueue_head(&ctrl->queue);
1295
1296 /* return PCI Controller Info */
1297 ctrl->slot_device_offset = 0;
1298 ctrl->num_slots = 1;
1299 ctrl->first_slot = slot_cap >> 19;
1300 ctrl->ctrlcap = slot_cap & 0x0000007f;
1301
ecdde939
ML
1302 rc = pcie_init_hardware_part1(ctrl, dev);
1303 if (rc)
1304 goto abort;
1305
1306 if (pciehp_poll_mode) {
1307 /* Install interrupt polling timer. Start with 10 sec delay */
1308 init_timer(&ctrl->poll_timer);
1309 start_int_poll_timer(ctrl, 10);
1310 } else {
1311 /* Installs the interrupt handler */
1312 rc = request_irq(ctrl->pci_dev->irq, pcie_isr, IRQF_SHARED,
1313 MY_NAME, (void *)ctrl);
1314 dbg("%s: request_irq %d for hpc%d (returns %d)\n",
1315 __FUNCTION__, ctrl->pci_dev->irq,
1316 atomic_read(&pciehp_num_controllers), rc);
1317 if (rc) {
1318 err("Can't get irq %d for the hotplug controller\n",
1319 ctrl->pci_dev->irq);
1320 goto abort;
1321 }
1322 }
1323 dbg("pciehp ctrl b:d:f:irq=0x%x:%x:%x:%x\n", pdev->bus->number,
1324 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn), dev->irq);
1325
1326 /*
1327 * If this is the first controller to be initialized,
1328 * initialize the pciehp work queue
1329 */
1330 if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
1331 pciehp_wq = create_singlethread_workqueue("pciehpd");
1332 if (!pciehp_wq) {
1333 rc = -ENOMEM;
1334 goto abort_free_irq;
1335 }
1336 }
1337
1338 rc = pcie_init_hardware_part2(ctrl, dev);
08e7a7d2
ML
1339 if (rc == 0) {
1340 ctrl->hpc_ops = &pciehp_hpc_ops;
1341 return 0;
1342 }
ecdde939
ML
1343abort_free_irq:
1344 if (pciehp_poll_mode)
1345 del_timer_sync(&ctrl->poll_timer);
1346 else
1347 free_irq(ctrl->pci_dev->irq, ctrl);
08e7a7d2
ML
1348abort:
1349 return -1;
1350}
This page took 0.405696 seconds and 5 git commands to generate.