2 * Standard PCI Hot Plug Driver
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
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.
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
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.
26 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/types.h>
33 #include <linux/pci.h>
34 #include <linux/interrupt.h>
38 /* Slot Available Register I field definition */
39 #define SLOT_33MHZ 0x0000001f
40 #define SLOT_66MHZ_PCIX 0x00001f00
41 #define SLOT_100MHZ_PCIX 0x001f0000
42 #define SLOT_133MHZ_PCIX 0x1f000000
44 /* Slot Available Register II field definition */
45 #define SLOT_66MHZ 0x0000001f
46 #define SLOT_66MHZ_PCIX_266 0x00000f00
47 #define SLOT_100MHZ_PCIX_266 0x0000f000
48 #define SLOT_133MHZ_PCIX_266 0x000f0000
49 #define SLOT_66MHZ_PCIX_533 0x00f00000
50 #define SLOT_100MHZ_PCIX_533 0x0f000000
51 #define SLOT_133MHZ_PCIX_533 0xf0000000
53 /* Slot Configuration */
54 #define SLOT_NUM 0x0000001F
55 #define FIRST_DEV_NUM 0x00001F00
56 #define PSN 0x07FF0000
57 #define UPDOWN 0x20000000
58 #define MRLSENSOR 0x40000000
59 #define ATTN_BUTTON 0x80000000
62 * Interrupt Locator Register definitions
64 #define CMD_INTR_PENDING (1 << 0)
65 #define SLOT_INTR_PENDING(i) (1 << (i + 1))
68 * Controller SERR-INT Register
70 #define GLOBAL_INTR_MASK (1 << 0)
71 #define GLOBAL_SERR_MASK (1 << 1)
72 #define COMMAND_INTR_MASK (1 << 2)
73 #define ARBITER_SERR_MASK (1 << 3)
74 #define COMMAND_DETECTED (1 << 16)
75 #define ARBITER_DETECTED (1 << 17)
76 #define SERR_INTR_RSVDZ_MASK 0xfffc0000
79 * Logical Slot Register definitions
81 #define SLOT_REG(i) (SLOT1 + (4 * i))
83 #define SLOT_STATE_SHIFT (0)
84 #define SLOT_STATE_MASK (3 << 0)
85 #define SLOT_STATE_PWRONLY (1)
86 #define SLOT_STATE_ENABLED (2)
87 #define SLOT_STATE_DISABLED (3)
88 #define PWR_LED_STATE_SHIFT (2)
89 #define PWR_LED_STATE_MASK (3 << 2)
90 #define ATN_LED_STATE_SHIFT (4)
91 #define ATN_LED_STATE_MASK (3 << 4)
92 #define ATN_LED_STATE_ON (1)
93 #define ATN_LED_STATE_BLINK (2)
94 #define ATN_LED_STATE_OFF (3)
95 #define POWER_FAULT (1 << 6)
96 #define ATN_BUTTON (1 << 7)
97 #define MRL_SENSOR (1 << 8)
98 #define MHZ66_CAP (1 << 9)
99 #define PRSNT_SHIFT (10)
100 #define PRSNT_MASK (3 << 10)
101 #define PCIX_CAP_SHIFT (12)
102 #define PCIX_CAP_MASK_PI1 (3 << 12)
103 #define PCIX_CAP_MASK_PI2 (7 << 12)
104 #define PRSNT_CHANGE_DETECTED (1 << 16)
105 #define ISO_PFAULT_DETECTED (1 << 17)
106 #define BUTTON_PRESS_DETECTED (1 << 18)
107 #define MRL_CHANGE_DETECTED (1 << 19)
108 #define CON_PFAULT_DETECTED (1 << 20)
109 #define PRSNT_CHANGE_INTR_MASK (1 << 24)
110 #define ISO_PFAULT_INTR_MASK (1 << 25)
111 #define BUTTON_PRESS_INTR_MASK (1 << 26)
112 #define MRL_CHANGE_INTR_MASK (1 << 27)
113 #define CON_PFAULT_INTR_MASK (1 << 28)
114 #define MRL_CHANGE_SERR_MASK (1 << 29)
115 #define CON_PFAULT_SERR_MASK (1 << 30)
116 #define SLOT_REG_RSVDZ_MASK ((1 << 15) | (7 << 21))
119 * SHPC Command Code definitions
121 * Slot Operation 00h - 3Fh
122 * Set Bus Segment Speed/Mode A 40h - 47h
123 * Power-Only All Slots 48h
124 * Enable All Slots 49h
125 * Set Bus Segment Speed/Mode B (PI=2) 50h - 5Fh
126 * Reserved Command Codes 60h - BFh
127 * Vendor Specific Commands C0h - FFh
129 #define SET_SLOT_PWR 0x01 /* Slot Operation */
130 #define SET_SLOT_ENABLE 0x02
131 #define SET_SLOT_DISABLE 0x03
132 #define SET_PWR_ON 0x04
133 #define SET_PWR_BLINK 0x08
134 #define SET_PWR_OFF 0x0c
135 #define SET_ATTN_ON 0x10
136 #define SET_ATTN_BLINK 0x20
137 #define SET_ATTN_OFF 0x30
138 #define SETA_PCI_33MHZ 0x40 /* Set Bus Segment Speed/Mode A */
139 #define SETA_PCI_66MHZ 0x41
140 #define SETA_PCIX_66MHZ 0x42
141 #define SETA_PCIX_100MHZ 0x43
142 #define SETA_PCIX_133MHZ 0x44
143 #define SETA_RESERVED1 0x45
144 #define SETA_RESERVED2 0x46
145 #define SETA_RESERVED3 0x47
146 #define SET_PWR_ONLY_ALL 0x48 /* Power-Only All Slots */
147 #define SET_ENABLE_ALL 0x49 /* Enable All Slots */
148 #define SETB_PCI_33MHZ 0x50 /* Set Bus Segment Speed/Mode B */
149 #define SETB_PCI_66MHZ 0x51
150 #define SETB_PCIX_66MHZ_PM 0x52
151 #define SETB_PCIX_100MHZ_PM 0x53
152 #define SETB_PCIX_133MHZ_PM 0x54
153 #define SETB_PCIX_66MHZ_EM 0x55
154 #define SETB_PCIX_100MHZ_EM 0x56
155 #define SETB_PCIX_133MHZ_EM 0x57
156 #define SETB_PCIX_66MHZ_266 0x58
157 #define SETB_PCIX_100MHZ_266 0x59
158 #define SETB_PCIX_133MHZ_266 0x5a
159 #define SETB_PCIX_66MHZ_533 0x5b
160 #define SETB_PCIX_100MHZ_533 0x5c
161 #define SETB_PCIX_133MHZ_533 0x5d
162 #define SETB_RESERVED1 0x5e
163 #define SETB_RESERVED2 0x5f
166 * SHPC controller command error code
168 #define SWITCH_OPEN 0x1
169 #define INVALID_CMD 0x2
170 #define INVALID_SPEED_MODE 0x4
173 * For accessing SHPC Working Register Set via PCI Configuration Space
175 #define DWORD_SELECT 0x2
176 #define DWORD_DATA 0x4
178 /* Field Offset in Logical Slot Register - byte boundary */
179 #define SLOT_EVENT_LATCH 0x2
180 #define SLOT_SERR_INT_MASK 0x3
182 static irqreturn_t
shpc_isr(int irq
, void *dev_id
);
183 static void start_int_poll_timer(struct controller
*ctrl
, int sec
);
184 static int hpc_check_cmd_status(struct controller
*ctrl
);
186 static inline u8
shpc_readb(struct controller
*ctrl
, int reg
)
188 return readb(ctrl
->creg
+ reg
);
191 static inline void shpc_writeb(struct controller
*ctrl
, int reg
, u8 val
)
193 writeb(val
, ctrl
->creg
+ reg
);
196 static inline u16
shpc_readw(struct controller
*ctrl
, int reg
)
198 return readw(ctrl
->creg
+ reg
);
201 static inline void shpc_writew(struct controller
*ctrl
, int reg
, u16 val
)
203 writew(val
, ctrl
->creg
+ reg
);
206 static inline u32
shpc_readl(struct controller
*ctrl
, int reg
)
208 return readl(ctrl
->creg
+ reg
);
211 static inline void shpc_writel(struct controller
*ctrl
, int reg
, u32 val
)
213 writel(val
, ctrl
->creg
+ reg
);
216 static inline int shpc_indirect_read(struct controller
*ctrl
, int index
,
220 u32 cap_offset
= ctrl
->cap_offset
;
221 struct pci_dev
*pdev
= ctrl
->pci_dev
;
223 rc
= pci_write_config_byte(pdev
, cap_offset
+ DWORD_SELECT
, index
);
226 return pci_read_config_dword(pdev
, cap_offset
+ DWORD_DATA
, value
);
230 * This is the interrupt polling timeout function.
232 static void int_poll_timeout(unsigned long data
)
234 struct controller
*ctrl
= (struct controller
*)data
;
236 /* Poll for interrupt events. regs == NULL => polling */
239 init_timer(&ctrl
->poll_timer
);
240 if (!shpchp_poll_time
)
241 shpchp_poll_time
= 2; /* default polling interval is 2 sec */
243 start_int_poll_timer(ctrl
, shpchp_poll_time
);
247 * This function starts the interrupt polling timer.
249 static void start_int_poll_timer(struct controller
*ctrl
, int sec
)
251 /* Clamp to sane value */
252 if ((sec
<= 0) || (sec
> 60))
255 ctrl
->poll_timer
.function
= &int_poll_timeout
;
256 ctrl
->poll_timer
.data
= (unsigned long)ctrl
;
257 ctrl
->poll_timer
.expires
= jiffies
+ sec
* HZ
;
258 add_timer(&ctrl
->poll_timer
);
261 static inline int is_ctrl_busy(struct controller
*ctrl
)
263 u16 cmd_status
= shpc_readw(ctrl
, CMD_STATUS
);
264 return cmd_status
& 0x1;
268 * Returns 1 if SHPC finishes executing a command within 1 sec,
269 * otherwise returns 0.
271 static inline int shpc_poll_ctrl_busy(struct controller
*ctrl
)
275 if (!is_ctrl_busy(ctrl
))
278 /* Check every 0.1 sec for a total of 1 sec */
279 for (i
= 0; i
< 10; i
++) {
281 if (!is_ctrl_busy(ctrl
))
288 static inline int shpc_wait_cmd(struct controller
*ctrl
)
291 unsigned long timeout
= msecs_to_jiffies(1000);
294 if (shpchp_poll_mode
)
295 rc
= shpc_poll_ctrl_busy(ctrl
);
297 rc
= wait_event_interruptible_timeout(ctrl
->queue
,
298 !is_ctrl_busy(ctrl
), timeout
);
299 if (!rc
&& is_ctrl_busy(ctrl
)) {
301 ctrl_err(ctrl
, "Command not completed in 1000 msec\n");
304 ctrl_info(ctrl
, "Command was interrupted by a signal\n");
310 static int shpc_write_cmd(struct slot
*slot
, u8 t_slot
, u8 cmd
)
312 struct controller
*ctrl
= slot
->ctrl
;
317 mutex_lock(&slot
->ctrl
->cmd_lock
);
319 if (!shpc_poll_ctrl_busy(ctrl
)) {
320 /* After 1 sec and and the controller is still busy */
321 ctrl_err(ctrl
, "Controller is still busy after 1 sec\n");
327 temp_word
= (t_slot
<< 8) | (cmd
& 0xFF);
328 ctrl_dbg(ctrl
, "%s: t_slot %x cmd %x\n", __func__
, t_slot
, cmd
);
330 /* To make sure the Controller Busy bit is 0 before we send out the
333 shpc_writew(ctrl
, CMD
, temp_word
);
336 * Wait for command completion.
338 retval
= shpc_wait_cmd(slot
->ctrl
);
342 cmd_status
= hpc_check_cmd_status(slot
->ctrl
);
344 ctrl_err(ctrl
, "Failed to issued command 0x%x (error code = %d)\n",
349 mutex_unlock(&slot
->ctrl
->cmd_lock
);
353 static int hpc_check_cmd_status(struct controller
*ctrl
)
356 u16 cmd_status
= shpc_readw(ctrl
, CMD_STATUS
) & 0x000F;
358 switch (cmd_status
>> 1) {
363 retval
= SWITCH_OPEN
;
364 ctrl_err(ctrl
, "Switch opened!\n");
367 retval
= INVALID_CMD
;
368 ctrl_err(ctrl
, "Invalid HPC command!\n");
371 retval
= INVALID_SPEED_MODE
;
372 ctrl_err(ctrl
, "Invalid bus speed/mode!\n");
382 static int hpc_get_attention_status(struct slot
*slot
, u8
*status
)
384 struct controller
*ctrl
= slot
->ctrl
;
385 u32 slot_reg
= shpc_readl(ctrl
, SLOT_REG(slot
->hp_slot
));
386 u8 state
= (slot_reg
& ATN_LED_STATE_MASK
) >> ATN_LED_STATE_SHIFT
;
389 case ATN_LED_STATE_ON
:
390 *status
= 1; /* On */
392 case ATN_LED_STATE_BLINK
:
393 *status
= 2; /* Blink */
395 case ATN_LED_STATE_OFF
:
396 *status
= 0; /* Off */
399 *status
= 0xFF; /* Reserved */
406 static int hpc_get_power_status(struct slot
*slot
, u8
*status
)
408 struct controller
*ctrl
= slot
->ctrl
;
409 u32 slot_reg
= shpc_readl(ctrl
, SLOT_REG(slot
->hp_slot
));
410 u8 state
= (slot_reg
& SLOT_STATE_MASK
) >> SLOT_STATE_SHIFT
;
413 case SLOT_STATE_PWRONLY
:
414 *status
= 2; /* Powered only */
416 case SLOT_STATE_ENABLED
:
417 *status
= 1; /* Enabled */
419 case SLOT_STATE_DISABLED
:
420 *status
= 0; /* Disabled */
423 *status
= 0xFF; /* Reserved */
431 static int hpc_get_latch_status(struct slot
*slot
, u8
*status
)
433 struct controller
*ctrl
= slot
->ctrl
;
434 u32 slot_reg
= shpc_readl(ctrl
, SLOT_REG(slot
->hp_slot
));
436 *status
= !!(slot_reg
& MRL_SENSOR
); /* 0 -> close; 1 -> open */
441 static int hpc_get_adapter_status(struct slot
*slot
, u8
*status
)
443 struct controller
*ctrl
= slot
->ctrl
;
444 u32 slot_reg
= shpc_readl(ctrl
, SLOT_REG(slot
->hp_slot
));
445 u8 state
= (slot_reg
& PRSNT_MASK
) >> PRSNT_SHIFT
;
447 *status
= (state
!= 0x3) ? 1 : 0;
452 static int hpc_get_prog_int(struct slot
*slot
, u8
*prog_int
)
454 struct controller
*ctrl
= slot
->ctrl
;
456 *prog_int
= shpc_readb(ctrl
, PROG_INTERFACE
);
461 static int hpc_get_adapter_speed(struct slot
*slot
, enum pci_bus_speed
*value
)
464 struct controller
*ctrl
= slot
->ctrl
;
465 u32 slot_reg
= shpc_readl(ctrl
, SLOT_REG(slot
->hp_slot
));
466 u8 m66_cap
= !!(slot_reg
& MHZ66_CAP
);
469 retval
= hpc_get_prog_int(slot
, &pi
);
475 pcix_cap
= (slot_reg
& PCIX_CAP_MASK_PI1
) >> PCIX_CAP_SHIFT
;
478 pcix_cap
= (slot_reg
& PCIX_CAP_MASK_PI2
) >> PCIX_CAP_SHIFT
;
484 ctrl_dbg(ctrl
, "%s: slot_reg = %x, pcix_cap = %x, m66_cap = %x\n",
485 __func__
, slot_reg
, pcix_cap
, m66_cap
);
489 *value
= m66_cap
? PCI_SPEED_66MHz
: PCI_SPEED_33MHz
;
492 *value
= PCI_SPEED_66MHz_PCIX
;
495 *value
= PCI_SPEED_133MHz_PCIX
;
498 *value
= PCI_SPEED_133MHz_PCIX_266
;
501 *value
= PCI_SPEED_133MHz_PCIX_533
;
505 *value
= PCI_SPEED_UNKNOWN
;
510 ctrl_dbg(ctrl
, "Adapter speed = %d\n", *value
);
514 static int hpc_get_mode1_ECC_cap(struct slot
*slot
, u8
*mode
)
517 struct controller
*ctrl
= slot
->ctrl
;
518 u16 sec_bus_status
= shpc_readw(ctrl
, SEC_BUS_CONFIG
);
519 u8 pi
= shpc_readb(ctrl
, PROG_INTERFACE
);
522 *mode
= (sec_bus_status
& 0x0100) >> 8;
527 ctrl_dbg(ctrl
, "Mode 1 ECC cap = %d\n", *mode
);
531 static int hpc_query_power_fault(struct slot
*slot
)
533 struct controller
*ctrl
= slot
->ctrl
;
534 u32 slot_reg
= shpc_readl(ctrl
, SLOT_REG(slot
->hp_slot
));
536 /* Note: Logic 0 => fault */
537 return !(slot_reg
& POWER_FAULT
);
540 static int hpc_set_attention_status(struct slot
*slot
, u8 value
)
546 slot_cmd
= SET_ATTN_OFF
; /* OFF */
549 slot_cmd
= SET_ATTN_ON
; /* ON */
552 slot_cmd
= SET_ATTN_BLINK
; /* BLINK */
558 return shpc_write_cmd(slot
, slot
->hp_slot
, slot_cmd
);
562 static void hpc_set_green_led_on(struct slot
*slot
)
564 shpc_write_cmd(slot
, slot
->hp_slot
, SET_PWR_ON
);
567 static void hpc_set_green_led_off(struct slot
*slot
)
569 shpc_write_cmd(slot
, slot
->hp_slot
, SET_PWR_OFF
);
572 static void hpc_set_green_led_blink(struct slot
*slot
)
574 shpc_write_cmd(slot
, slot
->hp_slot
, SET_PWR_BLINK
);
577 static void hpc_release_ctlr(struct controller
*ctrl
)
580 u32 slot_reg
, serr_int
;
583 * Mask event interrupts and SERRs of all slots
585 for (i
= 0; i
< ctrl
->num_slots
; i
++) {
586 slot_reg
= shpc_readl(ctrl
, SLOT_REG(i
));
587 slot_reg
|= (PRSNT_CHANGE_INTR_MASK
| ISO_PFAULT_INTR_MASK
|
588 BUTTON_PRESS_INTR_MASK
| MRL_CHANGE_INTR_MASK
|
589 CON_PFAULT_INTR_MASK
| MRL_CHANGE_SERR_MASK
|
590 CON_PFAULT_SERR_MASK
);
591 slot_reg
&= ~SLOT_REG_RSVDZ_MASK
;
592 shpc_writel(ctrl
, SLOT_REG(i
), slot_reg
);
598 * Mask SERR and System Interrupt generation
600 serr_int
= shpc_readl(ctrl
, SERR_INTR_ENABLE
);
601 serr_int
|= (GLOBAL_INTR_MASK
| GLOBAL_SERR_MASK
|
602 COMMAND_INTR_MASK
| ARBITER_SERR_MASK
);
603 serr_int
&= ~SERR_INTR_RSVDZ_MASK
;
604 shpc_writel(ctrl
, SERR_INTR_ENABLE
, serr_int
);
606 if (shpchp_poll_mode
)
607 del_timer(&ctrl
->poll_timer
);
609 free_irq(ctrl
->pci_dev
->irq
, ctrl
);
610 pci_disable_msi(ctrl
->pci_dev
);
614 release_mem_region(ctrl
->mmio_base
, ctrl
->mmio_size
);
617 static int hpc_power_on_slot(struct slot
*slot
)
621 retval
= shpc_write_cmd(slot
, slot
->hp_slot
, SET_SLOT_PWR
);
623 ctrl_err(slot
->ctrl
, "%s: Write command failed!\n", __func__
);
628 static int hpc_slot_enable(struct slot
*slot
)
632 /* Slot - Enable, Power Indicator - Blink, Attention Indicator - Off */
633 retval
= shpc_write_cmd(slot
, slot
->hp_slot
,
634 SET_SLOT_ENABLE
| SET_PWR_BLINK
| SET_ATTN_OFF
);
636 ctrl_err(slot
->ctrl
, "%s: Write command failed!\n", __func__
);
641 static int hpc_slot_disable(struct slot
*slot
)
645 /* Slot - Disable, Power Indicator - Off, Attention Indicator - On */
646 retval
= shpc_write_cmd(slot
, slot
->hp_slot
,
647 SET_SLOT_DISABLE
| SET_PWR_OFF
| SET_ATTN_ON
);
649 ctrl_err(slot
->ctrl
, "%s: Write command failed!\n", __func__
);
654 static int shpc_get_cur_bus_speed(struct controller
*ctrl
)
657 struct pci_bus
*bus
= ctrl
->pci_dev
->subordinate
;
658 enum pci_bus_speed bus_speed
= PCI_SPEED_UNKNOWN
;
659 u16 sec_bus_reg
= shpc_readw(ctrl
, SEC_BUS_CONFIG
);
660 u8 pi
= shpc_readb(ctrl
, PROG_INTERFACE
);
661 u8 speed_mode
= (pi
== 2) ? (sec_bus_reg
& 0xF) : (sec_bus_reg
& 0x7);
663 if ((pi
== 1) && (speed_mode
> 4)) {
668 switch (speed_mode
) {
670 bus_speed
= PCI_SPEED_33MHz
;
673 bus_speed
= PCI_SPEED_66MHz
;
676 bus_speed
= PCI_SPEED_66MHz_PCIX
;
679 bus_speed
= PCI_SPEED_100MHz_PCIX
;
682 bus_speed
= PCI_SPEED_133MHz_PCIX
;
685 bus_speed
= PCI_SPEED_66MHz_PCIX_ECC
;
688 bus_speed
= PCI_SPEED_100MHz_PCIX_ECC
;
691 bus_speed
= PCI_SPEED_133MHz_PCIX_ECC
;
694 bus_speed
= PCI_SPEED_66MHz_PCIX_266
;
697 bus_speed
= PCI_SPEED_100MHz_PCIX_266
;
700 bus_speed
= PCI_SPEED_133MHz_PCIX_266
;
703 bus_speed
= PCI_SPEED_66MHz_PCIX_533
;
706 bus_speed
= PCI_SPEED_100MHz_PCIX_533
;
709 bus_speed
= PCI_SPEED_133MHz_PCIX_533
;
717 bus
->cur_bus_speed
= bus_speed
;
718 dbg("Current bus speed = %d\n", bus_speed
);
723 static int hpc_set_bus_speed_mode(struct slot
*slot
, enum pci_bus_speed value
)
726 struct controller
*ctrl
= slot
->ctrl
;
729 pi
= shpc_readb(ctrl
, PROG_INTERFACE
);
730 if ((pi
== 1) && (value
> PCI_SPEED_133MHz_PCIX
))
734 case PCI_SPEED_33MHz
:
735 cmd
= SETA_PCI_33MHZ
;
737 case PCI_SPEED_66MHz
:
738 cmd
= SETA_PCI_66MHZ
;
740 case PCI_SPEED_66MHz_PCIX
:
741 cmd
= SETA_PCIX_66MHZ
;
743 case PCI_SPEED_100MHz_PCIX
:
744 cmd
= SETA_PCIX_100MHZ
;
746 case PCI_SPEED_133MHz_PCIX
:
747 cmd
= SETA_PCIX_133MHZ
;
749 case PCI_SPEED_66MHz_PCIX_ECC
:
750 cmd
= SETB_PCIX_66MHZ_EM
;
752 case PCI_SPEED_100MHz_PCIX_ECC
:
753 cmd
= SETB_PCIX_100MHZ_EM
;
755 case PCI_SPEED_133MHz_PCIX_ECC
:
756 cmd
= SETB_PCIX_133MHZ_EM
;
758 case PCI_SPEED_66MHz_PCIX_266
:
759 cmd
= SETB_PCIX_66MHZ_266
;
761 case PCI_SPEED_100MHz_PCIX_266
:
762 cmd
= SETB_PCIX_100MHZ_266
;
764 case PCI_SPEED_133MHz_PCIX_266
:
765 cmd
= SETB_PCIX_133MHZ_266
;
767 case PCI_SPEED_66MHz_PCIX_533
:
768 cmd
= SETB_PCIX_66MHZ_533
;
770 case PCI_SPEED_100MHz_PCIX_533
:
771 cmd
= SETB_PCIX_100MHZ_533
;
773 case PCI_SPEED_133MHz_PCIX_533
:
774 cmd
= SETB_PCIX_133MHZ_533
;
780 retval
= shpc_write_cmd(slot
, 0, cmd
);
782 ctrl_err(ctrl
, "%s: Write command failed!\n", __func__
);
784 shpc_get_cur_bus_speed(ctrl
);
789 static irqreturn_t
shpc_isr(int irq
, void *dev_id
)
791 struct controller
*ctrl
= (struct controller
*)dev_id
;
792 u32 serr_int
, slot_reg
, intr_loc
, intr_loc2
;
795 /* Check to see if it was our interrupt */
796 intr_loc
= shpc_readl(ctrl
, INTR_LOC
);
800 ctrl_dbg(ctrl
, "%s: intr_loc = %x\n", __func__
, intr_loc
);
802 if (!shpchp_poll_mode
) {
804 * Mask Global Interrupt Mask - see implementation
805 * note on p. 139 of SHPC spec rev 1.0
807 serr_int
= shpc_readl(ctrl
, SERR_INTR_ENABLE
);
808 serr_int
|= GLOBAL_INTR_MASK
;
809 serr_int
&= ~SERR_INTR_RSVDZ_MASK
;
810 shpc_writel(ctrl
, SERR_INTR_ENABLE
, serr_int
);
812 intr_loc2
= shpc_readl(ctrl
, INTR_LOC
);
813 ctrl_dbg(ctrl
, "%s: intr_loc2 = %x\n", __func__
, intr_loc2
);
816 if (intr_loc
& CMD_INTR_PENDING
) {
818 * Command Complete Interrupt Pending
819 * RO only - clear by writing 1 to the Command Completion
820 * Detect bit in Controller SERR-INT register
822 serr_int
= shpc_readl(ctrl
, SERR_INTR_ENABLE
);
823 serr_int
&= ~SERR_INTR_RSVDZ_MASK
;
824 shpc_writel(ctrl
, SERR_INTR_ENABLE
, serr_int
);
826 wake_up_interruptible(&ctrl
->queue
);
829 if (!(intr_loc
& ~CMD_INTR_PENDING
))
832 for (hp_slot
= 0; hp_slot
< ctrl
->num_slots
; hp_slot
++) {
833 /* To find out which slot has interrupt pending */
834 if (!(intr_loc
& SLOT_INTR_PENDING(hp_slot
)))
837 slot_reg
= shpc_readl(ctrl
, SLOT_REG(hp_slot
));
838 ctrl_dbg(ctrl
, "Slot %x with intr, slot register = %x\n",
841 if (slot_reg
& MRL_CHANGE_DETECTED
)
842 shpchp_handle_switch_change(hp_slot
, ctrl
);
844 if (slot_reg
& BUTTON_PRESS_DETECTED
)
845 shpchp_handle_attention_button(hp_slot
, ctrl
);
847 if (slot_reg
& PRSNT_CHANGE_DETECTED
)
848 shpchp_handle_presence_change(hp_slot
, ctrl
);
850 if (slot_reg
& (ISO_PFAULT_DETECTED
| CON_PFAULT_DETECTED
))
851 shpchp_handle_power_fault(hp_slot
, ctrl
);
853 /* Clear all slot events */
854 slot_reg
&= ~SLOT_REG_RSVDZ_MASK
;
855 shpc_writel(ctrl
, SLOT_REG(hp_slot
), slot_reg
);
858 if (!shpchp_poll_mode
) {
859 /* Unmask Global Interrupt Mask */
860 serr_int
= shpc_readl(ctrl
, SERR_INTR_ENABLE
);
861 serr_int
&= ~(GLOBAL_INTR_MASK
| SERR_INTR_RSVDZ_MASK
);
862 shpc_writel(ctrl
, SERR_INTR_ENABLE
, serr_int
);
868 static int shpc_get_max_bus_speed(struct controller
*ctrl
)
871 struct pci_bus
*bus
= ctrl
->pci_dev
->subordinate
;
872 enum pci_bus_speed bus_speed
= PCI_SPEED_UNKNOWN
;
873 u8 pi
= shpc_readb(ctrl
, PROG_INTERFACE
);
874 u32 slot_avail1
= shpc_readl(ctrl
, SLOT_AVAIL1
);
875 u32 slot_avail2
= shpc_readl(ctrl
, SLOT_AVAIL2
);
878 if (slot_avail2
& SLOT_133MHZ_PCIX_533
)
879 bus_speed
= PCI_SPEED_133MHz_PCIX_533
;
880 else if (slot_avail2
& SLOT_100MHZ_PCIX_533
)
881 bus_speed
= PCI_SPEED_100MHz_PCIX_533
;
882 else if (slot_avail2
& SLOT_66MHZ_PCIX_533
)
883 bus_speed
= PCI_SPEED_66MHz_PCIX_533
;
884 else if (slot_avail2
& SLOT_133MHZ_PCIX_266
)
885 bus_speed
= PCI_SPEED_133MHz_PCIX_266
;
886 else if (slot_avail2
& SLOT_100MHZ_PCIX_266
)
887 bus_speed
= PCI_SPEED_100MHz_PCIX_266
;
888 else if (slot_avail2
& SLOT_66MHZ_PCIX_266
)
889 bus_speed
= PCI_SPEED_66MHz_PCIX_266
;
892 if (bus_speed
== PCI_SPEED_UNKNOWN
) {
893 if (slot_avail1
& SLOT_133MHZ_PCIX
)
894 bus_speed
= PCI_SPEED_133MHz_PCIX
;
895 else if (slot_avail1
& SLOT_100MHZ_PCIX
)
896 bus_speed
= PCI_SPEED_100MHz_PCIX
;
897 else if (slot_avail1
& SLOT_66MHZ_PCIX
)
898 bus_speed
= PCI_SPEED_66MHz_PCIX
;
899 else if (slot_avail2
& SLOT_66MHZ
)
900 bus_speed
= PCI_SPEED_66MHz
;
901 else if (slot_avail1
& SLOT_33MHZ
)
902 bus_speed
= PCI_SPEED_33MHz
;
907 bus
->max_bus_speed
= bus_speed
;
908 ctrl_dbg(ctrl
, "Max bus speed = %d\n", bus_speed
);
913 static struct hpc_ops shpchp_hpc_ops
= {
914 .power_on_slot
= hpc_power_on_slot
,
915 .slot_enable
= hpc_slot_enable
,
916 .slot_disable
= hpc_slot_disable
,
917 .set_bus_speed_mode
= hpc_set_bus_speed_mode
,
918 .set_attention_status
= hpc_set_attention_status
,
919 .get_power_status
= hpc_get_power_status
,
920 .get_attention_status
= hpc_get_attention_status
,
921 .get_latch_status
= hpc_get_latch_status
,
922 .get_adapter_status
= hpc_get_adapter_status
,
924 .get_adapter_speed
= hpc_get_adapter_speed
,
925 .get_mode1_ECC_cap
= hpc_get_mode1_ECC_cap
,
926 .get_prog_int
= hpc_get_prog_int
,
928 .query_power_fault
= hpc_query_power_fault
,
929 .green_led_on
= hpc_set_green_led_on
,
930 .green_led_off
= hpc_set_green_led_off
,
931 .green_led_blink
= hpc_set_green_led_blink
,
933 .release_ctlr
= hpc_release_ctlr
,
936 int shpc_init(struct controller
*ctrl
, struct pci_dev
*pdev
)
938 int rc
= -1, num_slots
= 0;
940 u32 shpc_base_offset
;
941 u32 tempdword
, slot_reg
, slot_config
;
944 ctrl
->pci_dev
= pdev
; /* pci_dev of the P2P bridge */
945 ctrl_dbg(ctrl
, "Hotplug Controller:\n");
947 if (pdev
->vendor
== PCI_VENDOR_ID_AMD
&&
948 pdev
->device
== PCI_DEVICE_ID_AMD_GOLAM_7450
) {
949 /* amd shpc driver doesn't use Base Offset; assume 0 */
950 ctrl
->mmio_base
= pci_resource_start(pdev
, 0);
951 ctrl
->mmio_size
= pci_resource_len(pdev
, 0);
953 ctrl
->cap_offset
= pci_find_capability(pdev
, PCI_CAP_ID_SHPC
);
954 if (!ctrl
->cap_offset
) {
955 ctrl_err(ctrl
, "Cannot find PCI capability\n");
958 ctrl_dbg(ctrl
, " cap_offset = %x\n", ctrl
->cap_offset
);
960 rc
= shpc_indirect_read(ctrl
, 0, &shpc_base_offset
);
962 ctrl_err(ctrl
, "Cannot read base_offset\n");
966 rc
= shpc_indirect_read(ctrl
, 3, &tempdword
);
968 ctrl_err(ctrl
, "Cannot read slot config\n");
971 num_slots
= tempdword
& SLOT_NUM
;
972 ctrl_dbg(ctrl
, " num_slots (indirect) %x\n", num_slots
);
974 for (i
= 0; i
< 9 + num_slots
; i
++) {
975 rc
= shpc_indirect_read(ctrl
, i
, &tempdword
);
977 ctrl_err(ctrl
, "Cannot read creg (index = %d)\n",
981 ctrl_dbg(ctrl
, " offset %d: value %x\n", i
, tempdword
);
985 pci_resource_start(pdev
, 0) + shpc_base_offset
;
986 ctrl
->mmio_size
= 0x24 + 0x4 * num_slots
;
989 ctrl_info(ctrl
, "HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
990 pdev
->vendor
, pdev
->device
, pdev
->subsystem_vendor
,
991 pdev
->subsystem_device
);
993 rc
= pci_enable_device(pdev
);
995 ctrl_err(ctrl
, "pci_enable_device failed\n");
999 if (!request_mem_region(ctrl
->mmio_base
, ctrl
->mmio_size
, MY_NAME
)) {
1000 ctrl_err(ctrl
, "Cannot reserve MMIO region\n");
1005 ctrl
->creg
= ioremap(ctrl
->mmio_base
, ctrl
->mmio_size
);
1007 ctrl_err(ctrl
, "Cannot remap MMIO region %lx @ %lx\n",
1008 ctrl
->mmio_size
, ctrl
->mmio_base
);
1009 release_mem_region(ctrl
->mmio_base
, ctrl
->mmio_size
);
1013 ctrl_dbg(ctrl
, "ctrl->creg %p\n", ctrl
->creg
);
1015 mutex_init(&ctrl
->crit_sect
);
1016 mutex_init(&ctrl
->cmd_lock
);
1018 /* Setup wait queue */
1019 init_waitqueue_head(&ctrl
->queue
);
1021 ctrl
->hpc_ops
= &shpchp_hpc_ops
;
1023 /* Return PCI Controller Info */
1024 slot_config
= shpc_readl(ctrl
, SLOT_CONFIG
);
1025 ctrl
->slot_device_offset
= (slot_config
& FIRST_DEV_NUM
) >> 8;
1026 ctrl
->num_slots
= slot_config
& SLOT_NUM
;
1027 ctrl
->first_slot
= (slot_config
& PSN
) >> 16;
1028 ctrl
->slot_num_inc
= ((slot_config
& UPDOWN
) >> 29) ? 1 : -1;
1030 /* Mask Global Interrupt Mask & Command Complete Interrupt Mask */
1031 tempdword
= shpc_readl(ctrl
, SERR_INTR_ENABLE
);
1032 ctrl_dbg(ctrl
, "SERR_INTR_ENABLE = %x\n", tempdword
);
1033 tempdword
|= (GLOBAL_INTR_MASK
| GLOBAL_SERR_MASK
|
1034 COMMAND_INTR_MASK
| ARBITER_SERR_MASK
);
1035 tempdword
&= ~SERR_INTR_RSVDZ_MASK
;
1036 shpc_writel(ctrl
, SERR_INTR_ENABLE
, tempdword
);
1037 tempdword
= shpc_readl(ctrl
, SERR_INTR_ENABLE
);
1038 ctrl_dbg(ctrl
, "SERR_INTR_ENABLE = %x\n", tempdword
);
1040 /* Mask the MRL sensor SERR Mask of individual slot in
1041 * Slot SERR-INT Mask & clear all the existing event if any
1043 for (hp_slot
= 0; hp_slot
< ctrl
->num_slots
; hp_slot
++) {
1044 slot_reg
= shpc_readl(ctrl
, SLOT_REG(hp_slot
));
1045 ctrl_dbg(ctrl
, "Default Logical Slot Register %d value %x\n",
1047 slot_reg
|= (PRSNT_CHANGE_INTR_MASK
| ISO_PFAULT_INTR_MASK
|
1048 BUTTON_PRESS_INTR_MASK
| MRL_CHANGE_INTR_MASK
|
1049 CON_PFAULT_INTR_MASK
| MRL_CHANGE_SERR_MASK
|
1050 CON_PFAULT_SERR_MASK
);
1051 slot_reg
&= ~SLOT_REG_RSVDZ_MASK
;
1052 shpc_writel(ctrl
, SLOT_REG(hp_slot
), slot_reg
);
1055 if (shpchp_poll_mode
) {
1056 /* Install interrupt polling timer. Start with 10 sec delay */
1057 init_timer(&ctrl
->poll_timer
);
1058 start_int_poll_timer(ctrl
, 10);
1060 /* Installs the interrupt handler */
1061 rc
= pci_enable_msi(pdev
);
1063 ctrl_info(ctrl
, "Can't get msi for the hotplug controller\n");
1064 ctrl_info(ctrl
, "Use INTx for the hotplug controller\n");
1067 rc
= request_irq(ctrl
->pci_dev
->irq
, shpc_isr
, IRQF_SHARED
,
1068 MY_NAME
, (void *)ctrl
);
1069 ctrl_dbg(ctrl
, "request_irq %d (returns %d)\n",
1070 ctrl
->pci_dev
->irq
, rc
);
1072 ctrl_err(ctrl
, "Can't get irq %d for the hotplug controller\n",
1073 ctrl
->pci_dev
->irq
);
1077 ctrl_dbg(ctrl
, "HPC at %s irq=%x\n", pci_name(pdev
), pdev
->irq
);
1079 shpc_get_max_bus_speed(ctrl
);
1080 shpc_get_cur_bus_speed(ctrl
);
1083 * Unmask all event interrupts of all slots
1085 for (hp_slot
= 0; hp_slot
< ctrl
->num_slots
; hp_slot
++) {
1086 slot_reg
= shpc_readl(ctrl
, SLOT_REG(hp_slot
));
1087 ctrl_dbg(ctrl
, "Default Logical Slot Register %d value %x\n",
1089 slot_reg
&= ~(PRSNT_CHANGE_INTR_MASK
| ISO_PFAULT_INTR_MASK
|
1090 BUTTON_PRESS_INTR_MASK
| MRL_CHANGE_INTR_MASK
|
1091 CON_PFAULT_INTR_MASK
| SLOT_REG_RSVDZ_MASK
);
1092 shpc_writel(ctrl
, SLOT_REG(hp_slot
), slot_reg
);
1094 if (!shpchp_poll_mode
) {
1095 /* Unmask all general input interrupts and SERR */
1096 tempdword
= shpc_readl(ctrl
, SERR_INTR_ENABLE
);
1097 tempdword
&= ~(GLOBAL_INTR_MASK
| COMMAND_INTR_MASK
|
1098 SERR_INTR_RSVDZ_MASK
);
1099 shpc_writel(ctrl
, SERR_INTR_ENABLE
, tempdword
);
1100 tempdword
= shpc_readl(ctrl
, SERR_INTR_ENABLE
);
1101 ctrl_dbg(ctrl
, "SERR_INTR_ENABLE = %x\n", tempdword
);
1106 /* We end up here for the many possible ways to fail this API. */
1108 iounmap(ctrl
->creg
);