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>
39 #define DBG_K_TRACE_ENTRY ((unsigned int)0x00000001) /* On function entry */
40 #define DBG_K_TRACE_EXIT ((unsigned int)0x00000002) /* On function exit */
41 #define DBG_K_INFO ((unsigned int)0x00000004) /* Info messages */
42 #define DBG_K_ERROR ((unsigned int)0x00000008) /* Error messages */
43 #define DBG_K_TRACE (DBG_K_TRACE_ENTRY|DBG_K_TRACE_EXIT)
44 #define DBG_K_STANDARD (DBG_K_INFO|DBG_K_ERROR|DBG_K_TRACE)
45 /* Redefine this flagword to set debug level */
46 #define DEBUG_LEVEL DBG_K_STANDARD
48 #define DEFINE_DBG_BUFFER char __dbg_str_buf[256];
50 #define DBG_PRINT( dbg_flags, args... ) \
52 if ( DEBUG_LEVEL & ( dbg_flags ) ) \
55 len = sprintf( __dbg_str_buf, "%s:%d: %s: ", \
56 __FILE__, __LINE__, __FUNCTION__ ); \
57 sprintf( __dbg_str_buf + len, args ); \
58 printk( KERN_NOTICE "%s\n", __dbg_str_buf ); \
62 #define DBG_ENTER_ROUTINE DBG_PRINT (DBG_K_TRACE_ENTRY, "%s", "[Entry]");
63 #define DBG_LEAVE_ROUTINE DBG_PRINT (DBG_K_TRACE_EXIT, "%s", "[Exit]");
65 #define DEFINE_DBG_BUFFER
66 #define DBG_ENTER_ROUTINE
67 #define DBG_LEAVE_ROUTINE
70 /* Slot Available Register I field definition */
71 #define SLOT_33MHZ 0x0000001f
72 #define SLOT_66MHZ_PCIX 0x00001f00
73 #define SLOT_100MHZ_PCIX 0x001f0000
74 #define SLOT_133MHZ_PCIX 0x1f000000
76 /* Slot Available Register II field definition */
77 #define SLOT_66MHZ 0x0000001f
78 #define SLOT_66MHZ_PCIX_266 0x00000f00
79 #define SLOT_100MHZ_PCIX_266 0x0000f000
80 #define SLOT_133MHZ_PCIX_266 0x000f0000
81 #define SLOT_66MHZ_PCIX_533 0x00f00000
82 #define SLOT_100MHZ_PCIX_533 0x0f000000
83 #define SLOT_133MHZ_PCIX_533 0xf0000000
86 /* Secondary Bus Configuration Register */
87 /* For PI = 1, Bits 0 to 2 have been encoded as follows to show current bus speed/mode */
90 #define PCIX_66MHZ 0x2
91 #define PCIX_100MHZ 0x3
92 #define PCIX_133MHZ 0x4
94 /* For PI = 2, Bits 0 to 3 have been encoded as follows to show current bus speed/mode */
97 #define PCIX_66MHZ 0x2
98 #define PCIX_100MHZ 0x3
99 #define PCIX_133MHZ 0x4
100 #define PCIX_66MHZ_ECC 0x5
101 #define PCIX_100MHZ_ECC 0x6
102 #define PCIX_133MHZ_ECC 0x7
103 #define PCIX_66MHZ_266 0x9
104 #define PCIX_100MHZ_266 0xa
105 #define PCIX_133MHZ_266 0xb
106 #define PCIX_66MHZ_533 0x11
107 #define PCIX_100MHZ_533 0x12
108 #define PCIX_133MHZ_533 0x13
110 /* Slot Configuration */
111 #define SLOT_NUM 0x0000001F
112 #define FIRST_DEV_NUM 0x00001F00
113 #define PSN 0x07FF0000
114 #define UPDOWN 0x20000000
115 #define MRLSENSOR 0x40000000
116 #define ATTN_BUTTON 0x80000000
118 /* Slot Status Field Definitions */
120 #define PWR_ONLY 0x0001
121 #define ENABLED 0x0002
122 #define DISABLED 0x0003
124 /* Power Indicator State */
125 #define PWR_LED_ON 0x0004
126 #define PWR_LED_BLINK 0x0008
127 #define PWR_LED_OFF 0x000c
129 /* Attention Indicator State */
130 #define ATTEN_LED_ON 0x0010
131 #define ATTEN_LED_BLINK 0x0020
132 #define ATTEN_LED_OFF 0x0030
135 #define pwr_fault 0x0040
137 /* Attention Button */
138 #define ATTEN_BUTTON 0x0080
141 #define MRL_SENSOR 0x0100
144 #define IS_66MHZ_CAP 0x0200
146 /* PRSNT1#/PRSNT2# */
147 #define SLOT_EMP 0x0c00
149 /* PCI-X Capability */
150 #define NON_PCIX 0x0000
151 #define PCIX_66 0x1000
152 #define PCIX_133 0x3000
153 #define PCIX_266 0x4000 /* For PI = 2 only */
154 #define PCIX_533 0x5000 /* For PI = 2 only */
156 /* SHPC 'write' operations/commands */
158 /* Slot operation - 0x00h to 0x3Fh */
160 #define NO_CHANGE 0x00
162 /* Slot state - Bits 0 & 1 of controller command register */
163 #define SET_SLOT_PWR 0x01
164 #define SET_SLOT_ENABLE 0x02
165 #define SET_SLOT_DISABLE 0x03
167 /* Power indicator state - Bits 2 & 3 of controller command register*/
168 #define SET_PWR_ON 0x04
169 #define SET_PWR_BLINK 0x08
170 #define SET_PWR_OFF 0x0C
172 /* Attention indicator state - Bits 4 & 5 of controller command register*/
173 #define SET_ATTN_ON 0x010
174 #define SET_ATTN_BLINK 0x020
175 #define SET_ATTN_OFF 0x030
177 /* Set bus speed/mode A - 0x40h to 0x47h */
178 #define SETA_PCI_33MHZ 0x40
179 #define SETA_PCI_66MHZ 0x41
180 #define SETA_PCIX_66MHZ 0x42
181 #define SETA_PCIX_100MHZ 0x43
182 #define SETA_PCIX_133MHZ 0x44
183 #define RESERV_1 0x45
184 #define RESERV_2 0x46
185 #define RESERV_3 0x47
187 /* Set bus speed/mode B - 0x50h to 0x5fh */
188 #define SETB_PCI_33MHZ 0x50
189 #define SETB_PCI_66MHZ 0x51
190 #define SETB_PCIX_66MHZ_PM 0x52
191 #define SETB_PCIX_100MHZ_PM 0x53
192 #define SETB_PCIX_133MHZ_PM 0x54
193 #define SETB_PCIX_66MHZ_EM 0x55
194 #define SETB_PCIX_100MHZ_EM 0x56
195 #define SETB_PCIX_133MHZ_EM 0x57
196 #define SETB_PCIX_66MHZ_266 0x58
197 #define SETB_PCIX_100MHZ_266 0x59
198 #define SETB_PCIX_133MHZ_266 0x5a
199 #define SETB_PCIX_66MHZ_533 0x5b
200 #define SETB_PCIX_100MHZ_533 0x5c
201 #define SETB_PCIX_133MHZ_533 0x5d
204 /* Power-on all slots - 0x48h */
205 #define SET_PWR_ON_ALL 0x48
207 /* Enable all slots - 0x49h */
208 #define SET_ENABLE_ALL 0x49
210 /* SHPC controller command error code */
211 #define SWITCH_OPEN 0x1
212 #define INVALID_CMD 0x2
213 #define INVALID_SPEED_MODE 0x4
215 /* For accessing SHPC Working Register Set */
216 #define DWORD_SELECT 0x2
217 #define DWORD_DATA 0x4
218 #define BASE_OFFSET 0x0
220 /* Field Offset in Logical Slot Register - byte boundary */
221 #define SLOT_EVENT_LATCH 0x2
222 #define SLOT_SERR_INT_MASK 0x3
224 static spinlock_t hpc_event_lock;
226 DEFINE_DBG_BUFFER /* Debug string buffer for entire HPC defined here */
227 static struct php_ctlr_state_s *php_ctlr_list_head; /* HPC state linked list */
228 static int ctlr_seq_num = 0; /* Controller sequenc # */
229 static spinlock_t list_lock;
231 static irqreturn_t shpc_isr(int IRQ, void *dev_id, struct pt_regs *regs);
233 static void start_int_poll_timer(struct php_ctlr_state_s *php_ctlr, int seconds);
235 /* This is the interrupt polling timeout function. */
236 static void int_poll_timeout(unsigned long lphp_ctlr)
238 struct php_ctlr_state_s *php_ctlr = (struct php_ctlr_state_s *)lphp_ctlr;
243 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
247 /* Poll for interrupt events. regs == NULL => polling */
248 shpc_isr( 0, (void *)php_ctlr, NULL );
250 init_timer(&php_ctlr->int_poll_timer);
251 if (!shpchp_poll_time)
252 shpchp_poll_time = 2; /* reset timer to poll in 2 secs if user doesn't specify at module installation*/
254 start_int_poll_timer(php_ctlr, shpchp_poll_time);
259 /* This function starts the interrupt polling timer. */
260 static void start_int_poll_timer(struct php_ctlr_state_s *php_ctlr, int seconds)
263 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
267 if ( ( seconds <= 0 ) || ( seconds > 60 ) )
268 seconds = 2; /* Clamp to sane value */
270 php_ctlr->int_poll_timer.function = &int_poll_timeout;
271 php_ctlr->int_poll_timer.data = (unsigned long)php_ctlr; /* Instance data */
272 php_ctlr->int_poll_timer.expires = jiffies + seconds * HZ;
273 add_timer(&php_ctlr->int_poll_timer);
278 static int shpc_write_cmd(struct slot *slot, u8 t_slot, u8 cmd)
280 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
289 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
293 for (i = 0; i < 10; i++) {
294 cmd_status = readw(php_ctlr->creg + CMD_STATUS);
296 if (!(cmd_status & 0x1))
298 /* Check every 0.1 sec for a total of 1 sec*/
302 cmd_status = readw(php_ctlr->creg + CMD_STATUS);
304 if (cmd_status & 0x1) {
305 /* After 1 sec and and the controller is still busy */
306 err("%s : Controller is still busy after 1 sec.\n", __FUNCTION__);
311 temp_word = (t_slot << 8) | (cmd & 0xFF);
312 dbg("%s: t_slot %x cmd %x\n", __FUNCTION__, t_slot, cmd);
314 /* To make sure the Controller Busy bit is 0 before we send out the
317 writew(temp_word, php_ctlr->creg + CMD);
323 static int hpc_check_cmd_status(struct controller *ctrl)
325 struct php_ctlr_state_s *php_ctlr = ctrl->hpc_ctlr_handle;
331 if (!ctrl->hpc_ctlr_handle) {
332 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
336 cmd_status = readw(php_ctlr->creg + CMD_STATUS) & 0x000F;
338 switch (cmd_status >> 1) {
343 retval = SWITCH_OPEN;
344 err("%s: Switch opened!\n", __FUNCTION__);
347 retval = INVALID_CMD;
348 err("%s: Invalid HPC command!\n", __FUNCTION__);
351 retval = INVALID_SPEED_MODE;
352 err("%s: Invalid bus speed/mode!\n", __FUNCTION__);
363 static int hpc_get_attention_status(struct slot *slot, u8 *status)
365 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
372 if (!slot->ctrl->hpc_ctlr_handle) {
373 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
377 slot_reg = readl(php_ctlr->creg + SLOT1 + 4*(slot->hp_slot));
378 slot_status = (u16) slot_reg;
379 atten_led_state = (slot_status & 0x0030) >> 4;
381 switch (atten_led_state) {
383 *status = 0xFF; /* Reserved */
386 *status = 1; /* On */
389 *status = 2; /* Blink */
392 *status = 0; /* Off */
403 static int hpc_get_power_status(struct slot * slot, u8 *status)
405 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
413 if (!slot->ctrl->hpc_ctlr_handle) {
414 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
418 slot_reg = readl(php_ctlr->creg + SLOT1 + 4*(slot->hp_slot));
419 slot_status = (u16) slot_reg;
420 slot_state = (slot_status & 0x0003);
422 switch (slot_state) {
427 *status = 2; /* Powered only */
430 *status = 1; /* Enabled */
433 *status = 0; /* Disabled */
445 static int hpc_get_latch_status(struct slot *slot, u8 *status)
447 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
453 if (!slot->ctrl->hpc_ctlr_handle) {
454 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
458 slot_reg = readl(php_ctlr->creg + SLOT1 + 4*(slot->hp_slot));
459 slot_status = (u16)slot_reg;
461 *status = ((slot_status & 0x0100) == 0) ? 0 : 1; /* 0 -> close; 1 -> open */
468 static int hpc_get_adapter_status(struct slot *slot, u8 *status)
470 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
477 if (!slot->ctrl->hpc_ctlr_handle) {
478 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
482 slot_reg = readl(php_ctlr->creg + SLOT1 + 4*(slot->hp_slot));
483 slot_status = (u16)slot_reg;
484 card_state = (u8)((slot_status & 0x0C00) >> 10);
485 *status = (card_state != 0x3) ? 1 : 0;
491 static int hpc_get_prog_int(struct slot *slot, u8 *prog_int)
493 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
497 if (!slot->ctrl->hpc_ctlr_handle) {
498 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
502 *prog_int = readb(php_ctlr->creg + PROG_INTERFACE);
508 static int hpc_get_adapter_speed(struct slot *slot, enum pci_bus_speed *value)
510 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
512 u16 slot_status, sec_bus_status;
513 u8 m66_cap, pcix_cap, pi;
518 if (!slot->ctrl->hpc_ctlr_handle) {
519 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
523 if (slot->hp_slot >= php_ctlr->num_slots) {
524 err("%s: Invalid HPC slot number!\n", __FUNCTION__);
528 pi = readb(php_ctlr->creg + PROG_INTERFACE);
529 slot_reg = readl(php_ctlr->creg + SLOT1 + 4*(slot->hp_slot));
530 dbg("%s: pi = %d, slot_reg = %x\n", __FUNCTION__, pi, slot_reg);
531 slot_status = (u16) slot_reg;
532 dbg("%s: slot_status = %x\n", __FUNCTION__, slot_status);
533 sec_bus_status = readw(php_ctlr->creg + SEC_BUS_CONFIG);
535 pcix_cap = (u8) ((slot_status & 0x3000) >> 12);
536 dbg("%s: pcix_cap = %x\n", __FUNCTION__, pcix_cap);
537 m66_cap = (u8) ((slot_status & 0x0200) >> 9);
538 dbg("%s: m66_cap = %x\n", __FUNCTION__, m66_cap);
544 *value = m66_cap ? PCI_SPEED_66MHz : PCI_SPEED_33MHz;
547 *value = PCI_SPEED_66MHz_PCIX;
550 *value = PCI_SPEED_133MHz_PCIX;
553 *value = PCI_SPEED_133MHz_PCIX_266;
556 *value = PCI_SPEED_133MHz_PCIX_533;
558 case 2: /* Reserved */
560 *value = PCI_SPEED_UNKNOWN;
567 *value = m66_cap ? PCI_SPEED_66MHz : PCI_SPEED_33MHz;
570 *value = PCI_SPEED_66MHz_PCIX;
573 *value = PCI_SPEED_133MHz_PCIX;
575 case 2: /* Reserved */
577 *value = PCI_SPEED_UNKNOWN;
583 dbg("Adapter speed = %d\n", *value);
589 static int hpc_get_mode1_ECC_cap(struct slot *slot, u8 *mode)
591 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
598 if (!slot->ctrl->hpc_ctlr_handle) {
599 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
603 pi = readb(php_ctlr->creg + PROG_INTERFACE);
604 sec_bus_status = readw(php_ctlr->creg + SEC_BUS_CONFIG);
607 *mode = (sec_bus_status & 0x0100) >> 8;
612 dbg("Mode 1 ECC cap = %d\n", *mode);
618 static int hpc_query_power_fault(struct slot * slot)
620 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
623 u8 pwr_fault_state, status;
627 if (!slot->ctrl->hpc_ctlr_handle) {
628 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
632 slot_reg = readl(php_ctlr->creg + SLOT1 + 4*(slot->hp_slot));
633 slot_status = (u16) slot_reg;
634 pwr_fault_state = (slot_status & 0x0040) >> 7;
635 status = (pwr_fault_state == 1) ? 0 : 1;
638 /* Note: Logic 0 => fault */
642 static int hpc_set_attention_status(struct slot *slot, u8 value)
644 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
648 if (!slot->ctrl->hpc_ctlr_handle) {
649 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
653 if (slot->hp_slot >= php_ctlr->num_slots) {
654 err("%s: Invalid HPC slot number!\n", __FUNCTION__);
660 slot_cmd = 0x30; /* OFF */
663 slot_cmd = 0x10; /* ON */
666 slot_cmd = 0x20; /* BLINK */
672 shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
678 static void hpc_set_green_led_on(struct slot *slot)
680 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
683 if (!slot->ctrl->hpc_ctlr_handle) {
684 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
688 if (slot->hp_slot >= php_ctlr->num_slots) {
689 err("%s: Invalid HPC slot number!\n", __FUNCTION__);
695 shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
700 static void hpc_set_green_led_off(struct slot *slot)
702 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
705 if (!slot->ctrl->hpc_ctlr_handle) {
706 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
710 if (slot->hp_slot >= php_ctlr->num_slots) {
711 err("%s: Invalid HPC slot number!\n", __FUNCTION__);
717 shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
722 static void hpc_set_green_led_blink(struct slot *slot)
724 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
727 if (!slot->ctrl->hpc_ctlr_handle) {
728 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
732 if (slot->hp_slot >= php_ctlr->num_slots) {
733 err("%s: Invalid HPC slot number!\n", __FUNCTION__);
739 shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
744 int shpc_get_ctlr_slot_config(struct controller *ctrl,
745 int *num_ctlr_slots, /* number of slots in this HPC */
746 int *first_device_num, /* PCI dev num of the first slot in this SHPC */
747 int *physical_slot_num, /* phy slot num of the first slot in this SHPC */
748 int *updown, /* physical_slot_num increament: 1 or -1 */
751 struct php_ctlr_state_s *php_ctlr = ctrl->hpc_ctlr_handle;
755 if (!ctrl->hpc_ctlr_handle) {
756 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
760 *first_device_num = php_ctlr->slot_device_offset; /* Obtained in shpc_init() */
761 *num_ctlr_slots = php_ctlr->num_slots; /* Obtained in shpc_init() */
763 *physical_slot_num = (readl(php_ctlr->creg + SLOT_CONFIG) & PSN) >> 16;
764 dbg("%s: physical_slot_num = %x\n", __FUNCTION__, *physical_slot_num);
765 *updown = ((readl(php_ctlr->creg + SLOT_CONFIG) & UPDOWN ) >> 29) ? 1 : -1;
771 static void hpc_release_ctlr(struct controller *ctrl)
773 struct php_ctlr_state_s *php_ctlr = ctrl->hpc_ctlr_handle;
774 struct php_ctlr_state_s *p, *p_prev;
778 if (!ctrl->hpc_ctlr_handle) {
779 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
783 if (shpchp_poll_mode) {
784 del_timer(&php_ctlr->int_poll_timer);
787 free_irq(php_ctlr->irq, ctrl);
789 pci_disable_msi(php_ctlr->pci_dev);
792 if (php_ctlr->pci_dev) {
793 iounmap(php_ctlr->creg);
794 release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
795 php_ctlr->pci_dev = NULL;
798 spin_lock(&list_lock);
799 p = php_ctlr_list_head;
804 p_prev->pnext = p->pnext;
806 php_ctlr_list_head = p->pnext;
813 spin_unlock(&list_lock);
821 static int hpc_power_on_slot(struct slot * slot)
823 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
829 if (!slot->ctrl->hpc_ctlr_handle) {
830 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
834 if (slot->hp_slot >= php_ctlr->num_slots) {
835 err("%s: Invalid HPC slot number!\n", __FUNCTION__);
840 retval = shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
843 err("%s: Write command failed!\n", __FUNCTION__);
852 static int hpc_slot_enable(struct slot * slot)
854 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
860 if (!slot->ctrl->hpc_ctlr_handle) {
861 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
865 if (slot->hp_slot >= php_ctlr->num_slots) {
866 err("%s: Invalid HPC slot number!\n", __FUNCTION__);
869 /* 3A => Slot - Enable, Power Indicator - Blink, Attention Indicator - Off */
872 retval = shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
875 err("%s: Write command failed!\n", __FUNCTION__);
883 static int hpc_slot_disable(struct slot * slot)
885 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
891 if (!slot->ctrl->hpc_ctlr_handle) {
892 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
896 if (slot->hp_slot >= php_ctlr->num_slots) {
897 err("%s: Invalid HPC slot number!\n", __FUNCTION__);
901 /* 1F => Slot - Disable, Power Indicator - Off, Attention Indicator - On */
904 retval = shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
907 err("%s: Write command failed!\n", __FUNCTION__);
915 static int hpc_set_bus_speed_mode(struct slot * slot, enum pci_bus_speed value)
920 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
924 if (!slot->ctrl->hpc_ctlr_handle) {
925 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
929 pi = readb(php_ctlr->creg + PROG_INTERFACE);
934 slot_cmd = SETA_PCI_33MHZ;
937 slot_cmd = SETA_PCI_66MHZ;
940 slot_cmd = SETA_PCIX_66MHZ;
943 slot_cmd = SETA_PCIX_100MHZ;
946 slot_cmd = SETA_PCIX_133MHZ;
949 slot_cmd = PCI_SPEED_UNKNOWN;
956 slot_cmd = SETB_PCI_33MHZ;
959 slot_cmd = SETB_PCI_66MHZ;
962 slot_cmd = SETB_PCIX_66MHZ_PM;
965 slot_cmd = SETB_PCIX_100MHZ_PM;
968 slot_cmd = SETB_PCIX_133MHZ_PM;
971 slot_cmd = SETB_PCIX_66MHZ_EM;
974 slot_cmd = SETB_PCIX_100MHZ_EM;
977 slot_cmd = SETB_PCIX_133MHZ_EM;
980 slot_cmd = SETB_PCIX_66MHZ_266;
983 slot_cmd = SETB_PCIX_100MHZ_266;
986 slot_cmd = SETB_PCIX_133MHZ_266;
989 slot_cmd = SETB_PCIX_66MHZ_533;
992 slot_cmd = SETB_PCIX_100MHZ_533;
995 slot_cmd = SETB_PCIX_133MHZ_533;
998 slot_cmd = PCI_SPEED_UNKNOWN;
1004 retval = shpc_write_cmd(slot, 0, slot_cmd);
1006 err("%s: Write command failed!\n", __FUNCTION__);
1014 static irqreturn_t shpc_isr(int IRQ, void *dev_id, struct pt_regs *regs)
1016 struct controller *ctrl = NULL;
1017 struct php_ctlr_state_s *php_ctlr;
1018 u8 schedule_flag = 0;
1020 u32 temp_dword, intr_loc, intr_loc2;
1026 if (!shpchp_poll_mode) {
1027 ctrl = (struct controller *)dev_id;
1028 php_ctlr = ctrl->hpc_ctlr_handle;
1030 php_ctlr = (struct php_ctlr_state_s *) dev_id;
1031 ctrl = (struct controller *)php_ctlr->callback_instance_id;
1037 if (!php_ctlr || !php_ctlr->creg)
1040 /* Check to see if it was our interrupt */
1041 intr_loc = readl(php_ctlr->creg + INTR_LOC);
1045 dbg("%s: intr_loc = %x\n",__FUNCTION__, intr_loc);
1047 if(!shpchp_poll_mode) {
1048 /* Mask Global Interrupt Mask - see implementation note on p. 139 */
1049 /* of SHPC spec rev 1.0*/
1050 temp_dword = readl(php_ctlr->creg + SERR_INTR_ENABLE);
1051 temp_dword |= 0x00000001;
1052 writel(temp_dword, php_ctlr->creg + SERR_INTR_ENABLE);
1054 intr_loc2 = readl(php_ctlr->creg + INTR_LOC);
1055 dbg("%s: intr_loc2 = %x\n",__FUNCTION__, intr_loc2);
1058 if (intr_loc & 0x0001) {
1060 * Command Complete Interrupt Pending
1061 * RO only - clear by writing 0 to the Command Completion
1062 * Detect bit in Controller SERR-INT register
1064 temp_dword = readl(php_ctlr->creg + SERR_INTR_ENABLE);
1065 temp_dword &= 0xfffeffff;
1066 writel(temp_dword, php_ctlr->creg + SERR_INTR_ENABLE);
1067 wake_up_interruptible(&ctrl->queue);
1070 if ((intr_loc = (intr_loc >> 1)) == 0) {
1071 /* Unmask Global Interrupt Mask */
1072 temp_dword = readl(php_ctlr->creg + SERR_INTR_ENABLE);
1073 temp_dword &= 0xfffffffe;
1074 writel(temp_dword, php_ctlr->creg + SERR_INTR_ENABLE);
1079 for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
1080 /* To find out which slot has interrupt pending */
1081 if ((intr_loc >> hp_slot) & 0x01) {
1082 temp_dword = readl(php_ctlr->creg + SLOT1 + (4*hp_slot));
1083 dbg("%s: Slot %x with intr, slot register = %x\n",
1084 __FUNCTION__, hp_slot, temp_dword);
1085 temp_byte = (temp_dword >> 16) & 0xFF;
1086 if ((php_ctlr->switch_change_callback) && (temp_byte & 0x08))
1087 schedule_flag += php_ctlr->switch_change_callback(
1088 hp_slot, php_ctlr->callback_instance_id);
1089 if ((php_ctlr->attention_button_callback) && (temp_byte & 0x04))
1090 schedule_flag += php_ctlr->attention_button_callback(
1091 hp_slot, php_ctlr->callback_instance_id);
1092 if ((php_ctlr->presence_change_callback) && (temp_byte & 0x01))
1093 schedule_flag += php_ctlr->presence_change_callback(
1094 hp_slot , php_ctlr->callback_instance_id);
1095 if ((php_ctlr->power_fault_callback) && (temp_byte & 0x12))
1096 schedule_flag += php_ctlr->power_fault_callback(
1097 hp_slot, php_ctlr->callback_instance_id);
1099 /* Clear all slot events */
1100 temp_dword = 0xe01f3fff;
1101 writel(temp_dword, php_ctlr->creg + SLOT1 + (4*hp_slot));
1103 intr_loc2 = readl(php_ctlr->creg + INTR_LOC);
1104 dbg("%s: intr_loc2 = %x\n",__FUNCTION__, intr_loc2);
1107 if (!shpchp_poll_mode) {
1108 /* Unmask Global Interrupt Mask */
1109 temp_dword = readl(php_ctlr->creg + SERR_INTR_ENABLE);
1110 temp_dword &= 0xfffffffe;
1111 writel(temp_dword, php_ctlr->creg + SERR_INTR_ENABLE);
1117 static int hpc_get_max_bus_speed (struct slot *slot, enum pci_bus_speed *value)
1119 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
1120 enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
1123 u32 slot_avail1, slot_avail2;
1127 if (!slot->ctrl->hpc_ctlr_handle) {
1128 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
1132 if (slot->hp_slot >= php_ctlr->num_slots) {
1133 err("%s: Invalid HPC slot number!\n", __FUNCTION__);
1137 pi = readb(php_ctlr->creg + PROG_INTERFACE);
1138 slot_avail1 = readl(php_ctlr->creg + SLOT_AVAIL1);
1139 slot_avail2 = readl(php_ctlr->creg + SLOT_AVAIL2);
1142 if (slot_avail2 & SLOT_133MHZ_PCIX_533)
1143 bus_speed = PCIX_133MHZ_533;
1144 else if (slot_avail2 & SLOT_100MHZ_PCIX_533)
1145 bus_speed = PCIX_100MHZ_533;
1146 else if (slot_avail2 & SLOT_66MHZ_PCIX_533)
1147 bus_speed = PCIX_66MHZ_533;
1148 else if (slot_avail2 & SLOT_133MHZ_PCIX_266)
1149 bus_speed = PCIX_133MHZ_266;
1150 else if (slot_avail2 & SLOT_100MHZ_PCIX_266)
1151 bus_speed = PCIX_100MHZ_266;
1152 else if (slot_avail2 & SLOT_66MHZ_PCIX_266)
1153 bus_speed = PCIX_66MHZ_266;
1154 else if (slot_avail1 & SLOT_133MHZ_PCIX)
1155 bus_speed = PCIX_133MHZ;
1156 else if (slot_avail1 & SLOT_100MHZ_PCIX)
1157 bus_speed = PCIX_100MHZ;
1158 else if (slot_avail1 & SLOT_66MHZ_PCIX)
1159 bus_speed = PCIX_66MHZ;
1160 else if (slot_avail2 & SLOT_66MHZ)
1161 bus_speed = PCI_66MHZ;
1162 else if (slot_avail1 & SLOT_33MHZ)
1163 bus_speed = PCI_33MHZ;
1164 else bus_speed = PCI_SPEED_UNKNOWN;
1166 if (slot_avail1 & SLOT_133MHZ_PCIX)
1167 bus_speed = PCIX_133MHZ;
1168 else if (slot_avail1 & SLOT_100MHZ_PCIX)
1169 bus_speed = PCIX_100MHZ;
1170 else if (slot_avail1 & SLOT_66MHZ_PCIX)
1171 bus_speed = PCIX_66MHZ;
1172 else if (slot_avail2 & SLOT_66MHZ)
1173 bus_speed = PCI_66MHZ;
1174 else if (slot_avail1 & SLOT_33MHZ)
1175 bus_speed = PCI_33MHZ;
1176 else bus_speed = PCI_SPEED_UNKNOWN;
1180 dbg("Max bus speed = %d\n", bus_speed);
1185 static int hpc_get_cur_bus_speed (struct slot *slot, enum pci_bus_speed *value)
1187 struct php_ctlr_state_s *php_ctlr = slot->ctrl->hpc_ctlr_handle;
1188 enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
1195 if (!slot->ctrl->hpc_ctlr_handle) {
1196 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
1200 if (slot->hp_slot >= php_ctlr->num_slots) {
1201 err("%s: Invalid HPC slot number!\n", __FUNCTION__);
1205 pi = readb(php_ctlr->creg + PROG_INTERFACE);
1206 sec_bus_status = readw(php_ctlr->creg + SEC_BUS_CONFIG);
1209 switch (sec_bus_status & 0x000f) {
1211 bus_speed = PCI_SPEED_33MHz;
1214 bus_speed = PCI_SPEED_66MHz;
1217 bus_speed = PCI_SPEED_66MHz_PCIX;
1220 bus_speed = PCI_SPEED_100MHz_PCIX;
1223 bus_speed = PCI_SPEED_133MHz_PCIX;
1226 bus_speed = PCI_SPEED_66MHz_PCIX_ECC;
1229 bus_speed = PCI_SPEED_100MHz_PCIX_ECC;
1232 bus_speed = PCI_SPEED_133MHz_PCIX_ECC;
1235 bus_speed = PCI_SPEED_66MHz_PCIX_266;
1238 bus_speed = PCI_SPEED_100MHz_PCIX_266;
1241 bus_speed = PCI_SPEED_133MHz_PCIX_266;
1244 bus_speed = PCI_SPEED_66MHz_PCIX_533;
1247 bus_speed = PCI_SPEED_100MHz_PCIX_533;
1250 bus_speed = PCI_SPEED_133MHz_PCIX_533;
1255 bus_speed = PCI_SPEED_UNKNOWN;
1259 /* In the case where pi is undefined, default it to 1 */
1260 switch (sec_bus_status & 0x0007) {
1262 bus_speed = PCI_SPEED_33MHz;
1265 bus_speed = PCI_SPEED_66MHz;
1268 bus_speed = PCI_SPEED_66MHz_PCIX;
1271 bus_speed = PCI_SPEED_100MHz_PCIX;
1274 bus_speed = PCI_SPEED_133MHz_PCIX;
1277 bus_speed = PCI_SPEED_UNKNOWN; /* Reserved */
1280 bus_speed = PCI_SPEED_UNKNOWN; /* Reserved */
1283 bus_speed = PCI_SPEED_UNKNOWN; /* Reserved */
1286 bus_speed = PCI_SPEED_UNKNOWN;
1292 dbg("Current bus speed = %d\n", bus_speed);
1297 static struct hpc_ops shpchp_hpc_ops = {
1298 .power_on_slot = hpc_power_on_slot,
1299 .slot_enable = hpc_slot_enable,
1300 .slot_disable = hpc_slot_disable,
1301 .set_bus_speed_mode = hpc_set_bus_speed_mode,
1302 .set_attention_status = hpc_set_attention_status,
1303 .get_power_status = hpc_get_power_status,
1304 .get_attention_status = hpc_get_attention_status,
1305 .get_latch_status = hpc_get_latch_status,
1306 .get_adapter_status = hpc_get_adapter_status,
1308 .get_max_bus_speed = hpc_get_max_bus_speed,
1309 .get_cur_bus_speed = hpc_get_cur_bus_speed,
1310 .get_adapter_speed = hpc_get_adapter_speed,
1311 .get_mode1_ECC_cap = hpc_get_mode1_ECC_cap,
1312 .get_prog_int = hpc_get_prog_int,
1314 .query_power_fault = hpc_query_power_fault,
1315 .green_led_on = hpc_set_green_led_on,
1316 .green_led_off = hpc_set_green_led_off,
1317 .green_led_blink = hpc_set_green_led_blink,
1319 .release_ctlr = hpc_release_ctlr,
1320 .check_cmd_status = hpc_check_cmd_status,
1323 inline static int shpc_indirect_creg_read(struct controller *ctrl, int index,
1327 u32 cap_offset = ctrl->cap_offset;
1328 struct pci_dev *pdev = ctrl->pci_dev;
1330 rc = pci_write_config_byte(pdev, cap_offset + DWORD_SELECT, index);
1333 return pci_read_config_dword(pdev, cap_offset + DWORD_DATA, value);
1336 int shpc_init(struct controller * ctrl, struct pci_dev * pdev)
1338 struct php_ctlr_state_s *php_ctlr, *p;
1339 void *instance_id = ctrl;
1340 int rc, num_slots = 0;
1342 static int first = 1;
1343 u32 shpc_base_offset;
1344 u32 tempdword, slot_reg;
1349 ctrl->pci_dev = pdev; /* pci_dev of the P2P bridge */
1351 spin_lock_init(&list_lock);
1352 php_ctlr = (struct php_ctlr_state_s *) kmalloc(sizeof(struct php_ctlr_state_s), GFP_KERNEL);
1354 if (!php_ctlr) { /* allocate controller state data */
1355 err("%s: HPC controller memory allocation error!\n", __FUNCTION__);
1359 memset(php_ctlr, 0, sizeof(struct php_ctlr_state_s));
1361 php_ctlr->pci_dev = pdev; /* save pci_dev in context */
1363 if ((pdev->vendor == PCI_VENDOR_ID_AMD) || (pdev->device ==
1364 PCI_DEVICE_ID_AMD_GOLAM_7450)) {
1365 /* amd shpc driver doesn't use Base Offset; assume 0 */
1366 ctrl->mmio_base = pci_resource_start(pdev, 0);
1367 ctrl->mmio_size = pci_resource_len(pdev, 0);
1369 ctrl->cap_offset = pci_find_capability(pdev, PCI_CAP_ID_SHPC);
1370 if (!ctrl->cap_offset) {
1371 err("%s : cap_offset == 0\n", __FUNCTION__);
1372 goto abort_free_ctlr;
1374 dbg("%s: cap_offset = %x\n", __FUNCTION__, ctrl->cap_offset);
1376 rc = shpc_indirect_creg_read(ctrl, 0, &shpc_base_offset);
1378 err("%s: cannot read base_offset\n", __FUNCTION__);
1379 goto abort_free_ctlr;
1382 rc = shpc_indirect_creg_read(ctrl, 3, &tempdword);
1384 err("%s: cannot read slot config\n", __FUNCTION__);
1385 goto abort_free_ctlr;
1387 num_slots = tempdword & SLOT_NUM;
1388 dbg("%s: num_slots (indirect) %x\n", __FUNCTION__, num_slots);
1390 for (i = 0; i < 9 + num_slots; i++) {
1391 rc = shpc_indirect_creg_read(ctrl, i, &tempdword);
1393 err("%s: cannot read creg (index = %d)\n",
1395 goto abort_free_ctlr;
1397 dbg("%s: offset %d: value %x\n", __FUNCTION__,i,
1402 pci_resource_start(pdev, 0) + shpc_base_offset;
1403 ctrl->mmio_size = 0x24 + 0x4 * num_slots;
1407 spin_lock_init(&hpc_event_lock);
1411 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n", pdev->vendor, pdev->device, pdev->subsystem_vendor,
1412 pdev->subsystem_device);
1414 if (pci_enable_device(pdev))
1415 goto abort_free_ctlr;
1417 if (!request_mem_region(ctrl->mmio_base, ctrl->mmio_size, MY_NAME)) {
1418 err("%s: cannot reserve MMIO region\n", __FUNCTION__);
1419 goto abort_free_ctlr;
1422 php_ctlr->creg = ioremap(ctrl->mmio_base, ctrl->mmio_size);
1423 if (!php_ctlr->creg) {
1424 err("%s: cannot remap MMIO region %lx @ %lx\n", __FUNCTION__,
1425 ctrl->mmio_size, ctrl->mmio_base);
1426 release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
1427 goto abort_free_ctlr;
1429 dbg("%s: php_ctlr->creg %p\n", __FUNCTION__, php_ctlr->creg);
1431 init_MUTEX(&ctrl->crit_sect);
1432 /* Setup wait queue */
1433 init_waitqueue_head(&ctrl->queue);
1436 php_ctlr->irq = pdev->irq;
1437 php_ctlr->attention_button_callback = shpchp_handle_attention_button,
1438 php_ctlr->switch_change_callback = shpchp_handle_switch_change;
1439 php_ctlr->presence_change_callback = shpchp_handle_presence_change;
1440 php_ctlr->power_fault_callback = shpchp_handle_power_fault;
1441 php_ctlr->callback_instance_id = instance_id;
1443 /* Return PCI Controller Info */
1444 php_ctlr->slot_device_offset = (readl(php_ctlr->creg + SLOT_CONFIG) & FIRST_DEV_NUM ) >> 8;
1445 php_ctlr->num_slots = readl(php_ctlr->creg + SLOT_CONFIG) & SLOT_NUM;
1446 dbg("%s: slot_device_offset %x\n", __FUNCTION__, php_ctlr->slot_device_offset);
1447 dbg("%s: num_slots %x\n", __FUNCTION__, php_ctlr->num_slots);
1449 /* Mask Global Interrupt Mask & Command Complete Interrupt Mask */
1450 tempdword = readl(php_ctlr->creg + SERR_INTR_ENABLE);
1451 dbg("%s: SERR_INTR_ENABLE = %x\n", __FUNCTION__, tempdword);
1452 tempdword = 0x0003000f;
1453 writel(tempdword, php_ctlr->creg + SERR_INTR_ENABLE);
1454 tempdword = readl(php_ctlr->creg + SERR_INTR_ENABLE);
1455 dbg("%s: SERR_INTR_ENABLE = %x\n", __FUNCTION__, tempdword);
1457 /* Mask the MRL sensor SERR Mask of individual slot in
1458 * Slot SERR-INT Mask & clear all the existing event if any
1460 for (hp_slot = 0; hp_slot < php_ctlr->num_slots; hp_slot++) {
1461 slot_reg = readl(php_ctlr->creg + SLOT1 + 4*hp_slot );
1462 dbg("%s: Default Logical Slot Register %d value %x\n", __FUNCTION__,
1464 tempdword = 0xffff3fff;
1465 writel(tempdword, php_ctlr->creg + SLOT1 + (4*hp_slot));
1468 if (shpchp_poll_mode) {/* Install interrupt polling code */
1469 /* Install and start the interrupt polling timer */
1470 init_timer(&php_ctlr->int_poll_timer);
1471 start_int_poll_timer( php_ctlr, 10 ); /* start with 10 second delay */
1473 /* Installs the interrupt handler */
1474 rc = pci_enable_msi(pdev);
1476 info("Can't get msi for the hotplug controller\n");
1477 info("Use INTx for the hotplug controller\n");
1479 php_ctlr->irq = pdev->irq;
1481 rc = request_irq(php_ctlr->irq, shpc_isr, SA_SHIRQ, MY_NAME, (void *) ctrl);
1482 dbg("%s: request_irq %d for hpc%d (returns %d)\n", __FUNCTION__, php_ctlr->irq, ctlr_seq_num, rc);
1484 err("Can't get irq %d for the hotplug controller\n", php_ctlr->irq);
1485 goto abort_free_ctlr;
1488 dbg("%s: HPC at b:d:f:irq=0x%x:%x:%x:%x\n", __FUNCTION__,
1489 pdev->bus->number, PCI_SLOT(pdev->devfn),
1490 PCI_FUNC(pdev->devfn), pdev->irq);
1491 get_hp_hw_control_from_firmware(pdev);
1493 /* Add this HPC instance into the HPC list */
1494 spin_lock(&list_lock);
1495 if (php_ctlr_list_head == 0) {
1496 php_ctlr_list_head = php_ctlr;
1497 p = php_ctlr_list_head;
1500 p = php_ctlr_list_head;
1505 p->pnext = php_ctlr;
1507 spin_unlock(&list_lock);
1511 ctrl->hpc_ctlr_handle = php_ctlr;
1512 ctrl->hpc_ops = &shpchp_hpc_ops;
1514 for (hp_slot = 0; hp_slot < php_ctlr->num_slots; hp_slot++) {
1515 slot_reg = readl(php_ctlr->creg + SLOT1 + 4*hp_slot );
1516 dbg("%s: Default Logical Slot Register %d value %x\n", __FUNCTION__,
1518 tempdword = 0xe01f3fff;
1519 writel(tempdword, php_ctlr->creg + SLOT1 + (4*hp_slot));
1521 if (!shpchp_poll_mode) {
1522 /* Unmask all general input interrupts and SERR */
1523 tempdword = readl(php_ctlr->creg + SERR_INTR_ENABLE);
1524 tempdword = 0x0000000a;
1525 writel(tempdword, php_ctlr->creg + SERR_INTR_ENABLE);
1526 tempdword = readl(php_ctlr->creg + SERR_INTR_ENABLE);
1527 dbg("%s: SERR_INTR_ENABLE = %x\n", __FUNCTION__, tempdword);
1533 /* We end up here for the many possible ways to fail this API. */