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
85 /* Slot Configuration */
86 #define SLOT_NUM 0x0000001F
87 #define FIRST_DEV_NUM 0x00001F00
88 #define PSN 0x07FF0000
89 #define UPDOWN 0x20000000
90 #define MRLSENSOR 0x40000000
91 #define ATTN_BUTTON 0x80000000
94 * Interrupt Locator Register definitions
96 #define CMD_INTR_PENDING (1 << 0)
97 #define SLOT_INTR_PENDING(i) (1 << (i + 1))
100 * Controller SERR-INT Register
102 #define GLOBAL_INTR_MASK (1 << 0)
103 #define GLOBAL_SERR_MASK (1 << 1)
104 #define COMMAND_INTR_MASK (1 << 2)
105 #define ARBITER_SERR_MASK (1 << 3)
106 #define COMMAND_DETECTED (1 << 16)
107 #define ARBITER_DETECTED (1 << 17)
108 #define SERR_INTR_RSVDZ_MASK 0xfffc0000
111 * Logical Slot Register definitions
113 #define SLOT_REG(i) (SLOT1 + (4 * i))
115 #define SLOT_STATE_SHIFT (0)
116 #define SLOT_STATE_MASK (3 << 0)
117 #define SLOT_STATE_PWRONLY (1)
118 #define SLOT_STATE_ENABLED (2)
119 #define SLOT_STATE_DISABLED (3)
120 #define PWR_LED_STATE_SHIFT (2)
121 #define PWR_LED_STATE_MASK (3 << 2)
122 #define ATN_LED_STATE_SHIFT (4)
123 #define ATN_LED_STATE_MASK (3 << 4)
124 #define ATN_LED_STATE_ON (1)
125 #define ATN_LED_STATE_BLINK (2)
126 #define ATN_LED_STATE_OFF (3)
127 #define POWER_FAULT (1 << 6)
128 #define ATN_BUTTON (1 << 7)
129 #define MRL_SENSOR (1 << 8)
130 #define MHZ66_CAP (1 << 9)
131 #define PRSNT_SHIFT (10)
132 #define PRSNT_MASK (3 << 10)
133 #define PCIX_CAP_SHIFT (12)
134 #define PCIX_CAP_MASK_PI1 (3 << 12)
135 #define PCIX_CAP_MASK_PI2 (7 << 12)
136 #define PRSNT_CHANGE_DETECTED (1 << 16)
137 #define ISO_PFAULT_DETECTED (1 << 17)
138 #define BUTTON_PRESS_DETECTED (1 << 18)
139 #define MRL_CHANGE_DETECTED (1 << 19)
140 #define CON_PFAULT_DETECTED (1 << 20)
141 #define PRSNT_CHANGE_INTR_MASK (1 << 24)
142 #define ISO_PFAULT_INTR_MASK (1 << 25)
143 #define BUTTON_PRESS_INTR_MASK (1 << 26)
144 #define MRL_CHANGE_INTR_MASK (1 << 27)
145 #define CON_PFAULT_INTR_MASK (1 << 28)
146 #define MRL_CHANGE_SERR_MASK (1 << 29)
147 #define CON_PFAULT_SERR_MASK (1 << 30)
148 #define SLOT_REG_RSVDZ_MASK (1 << 15) | (7 << 21)
151 * SHPC Command Code definitnions
153 * Slot Operation 00h - 3Fh
154 * Set Bus Segment Speed/Mode A 40h - 47h
155 * Power-Only All Slots 48h
156 * Enable All Slots 49h
157 * Set Bus Segment Speed/Mode B (PI=2) 50h - 5Fh
158 * Reserved Command Codes 60h - BFh
159 * Vendor Specific Commands C0h - FFh
161 #define SET_SLOT_PWR 0x01 /* Slot Operation */
162 #define SET_SLOT_ENABLE 0x02
163 #define SET_SLOT_DISABLE 0x03
164 #define SET_PWR_ON 0x04
165 #define SET_PWR_BLINK 0x08
166 #define SET_PWR_OFF 0x0c
167 #define SET_ATTN_ON 0x10
168 #define SET_ATTN_BLINK 0x20
169 #define SET_ATTN_OFF 0x30
170 #define SETA_PCI_33MHZ 0x40 /* Set Bus Segment Speed/Mode A */
171 #define SETA_PCI_66MHZ 0x41
172 #define SETA_PCIX_66MHZ 0x42
173 #define SETA_PCIX_100MHZ 0x43
174 #define SETA_PCIX_133MHZ 0x44
175 #define SETA_RESERVED1 0x45
176 #define SETA_RESERVED2 0x46
177 #define SETA_RESERVED3 0x47
178 #define SET_PWR_ONLY_ALL 0x48 /* Power-Only All Slots */
179 #define SET_ENABLE_ALL 0x49 /* Enable All Slots */
180 #define SETB_PCI_33MHZ 0x50 /* Set Bus Segment Speed/Mode B */
181 #define SETB_PCI_66MHZ 0x51
182 #define SETB_PCIX_66MHZ_PM 0x52
183 #define SETB_PCIX_100MHZ_PM 0x53
184 #define SETB_PCIX_133MHZ_PM 0x54
185 #define SETB_PCIX_66MHZ_EM 0x55
186 #define SETB_PCIX_100MHZ_EM 0x56
187 #define SETB_PCIX_133MHZ_EM 0x57
188 #define SETB_PCIX_66MHZ_266 0x58
189 #define SETB_PCIX_100MHZ_266 0x59
190 #define SETB_PCIX_133MHZ_266 0x5a
191 #define SETB_PCIX_66MHZ_533 0x5b
192 #define SETB_PCIX_100MHZ_533 0x5c
193 #define SETB_PCIX_133MHZ_533 0x5d
194 #define SETB_RESERVED1 0x5e
195 #define SETB_RESERVED2 0x5f
198 * SHPC controller command error code
200 #define SWITCH_OPEN 0x1
201 #define INVALID_CMD 0x2
202 #define INVALID_SPEED_MODE 0x4
205 * For accessing SHPC Working Register Set via PCI Configuration Space
207 #define DWORD_SELECT 0x2
208 #define DWORD_DATA 0x4
210 /* Field Offset in Logical Slot Register - byte boundary */
211 #define SLOT_EVENT_LATCH 0x2
212 #define SLOT_SERR_INT_MASK 0x3
214 DEFINE_DBG_BUFFER /* Debug string buffer for entire HPC defined here */
215 static atomic_t shpchp_num_controllers = ATOMIC_INIT(0);
217 static irqreturn_t shpc_isr(int irq, void *dev_id);
218 static void start_int_poll_timer(struct controller *ctrl, int sec);
219 static int hpc_check_cmd_status(struct controller *ctrl);
221 static inline u8 shpc_readb(struct controller *ctrl, int reg)
223 return readb(ctrl->creg + reg);
226 static inline void shpc_writeb(struct controller *ctrl, int reg, u8 val)
228 writeb(val, ctrl->creg + reg);
231 static inline u16 shpc_readw(struct controller *ctrl, int reg)
233 return readw(ctrl->creg + reg);
236 static inline void shpc_writew(struct controller *ctrl, int reg, u16 val)
238 writew(val, ctrl->creg + reg);
241 static inline u32 shpc_readl(struct controller *ctrl, int reg)
243 return readl(ctrl->creg + reg);
246 static inline void shpc_writel(struct controller *ctrl, int reg, u32 val)
248 writel(val, ctrl->creg + reg);
251 static inline int shpc_indirect_read(struct controller *ctrl, int index,
255 u32 cap_offset = ctrl->cap_offset;
256 struct pci_dev *pdev = ctrl->pci_dev;
258 rc = pci_write_config_byte(pdev, cap_offset + DWORD_SELECT, index);
261 return pci_read_config_dword(pdev, cap_offset + DWORD_DATA, value);
265 * This is the interrupt polling timeout function.
267 static void int_poll_timeout(unsigned long data)
269 struct controller *ctrl = (struct controller *)data;
273 /* Poll for interrupt events. regs == NULL => polling */
276 init_timer(&ctrl->poll_timer);
277 if (!shpchp_poll_time)
278 shpchp_poll_time = 2; /* default polling interval is 2 sec */
280 start_int_poll_timer(ctrl, shpchp_poll_time);
286 * This function starts the interrupt polling timer.
288 static void start_int_poll_timer(struct controller *ctrl, int sec)
290 /* Clamp to sane value */
291 if ((sec <= 0) || (sec > 60))
294 ctrl->poll_timer.function = &int_poll_timeout;
295 ctrl->poll_timer.data = (unsigned long)ctrl;
296 ctrl->poll_timer.expires = jiffies + sec * HZ;
297 add_timer(&ctrl->poll_timer);
300 static inline int is_ctrl_busy(struct controller *ctrl)
302 u16 cmd_status = shpc_readw(ctrl, CMD_STATUS);
303 return cmd_status & 0x1;
307 * Returns 1 if SHPC finishes executing a command within 1 sec,
308 * otherwise returns 0.
310 static inline int shpc_poll_ctrl_busy(struct controller *ctrl)
314 if (!is_ctrl_busy(ctrl))
317 /* Check every 0.1 sec for a total of 1 sec */
318 for (i = 0; i < 10; i++) {
320 if (!is_ctrl_busy(ctrl))
327 static inline int shpc_wait_cmd(struct controller *ctrl)
330 unsigned long timeout = msecs_to_jiffies(1000);
333 if (shpchp_poll_mode)
334 rc = shpc_poll_ctrl_busy(ctrl);
336 rc = wait_event_interruptible_timeout(ctrl->queue,
337 !is_ctrl_busy(ctrl), timeout);
338 if (!rc && is_ctrl_busy(ctrl)) {
340 err("Command not completed in 1000 msec\n");
343 info("Command was interrupted by a signal\n");
349 static int shpc_write_cmd(struct slot *slot, u8 t_slot, u8 cmd)
351 struct controller *ctrl = slot->ctrl;
358 mutex_lock(&slot->ctrl->cmd_lock);
360 if (!shpc_poll_ctrl_busy(ctrl)) {
361 /* After 1 sec and and the controller is still busy */
362 err("%s : Controller is still busy after 1 sec.\n",
369 temp_word = (t_slot << 8) | (cmd & 0xFF);
370 dbg("%s: t_slot %x cmd %x\n", __FUNCTION__, t_slot, cmd);
372 /* To make sure the Controller Busy bit is 0 before we send out the
375 shpc_writew(ctrl, CMD, temp_word);
378 * Wait for command completion.
380 retval = shpc_wait_cmd(slot->ctrl);
384 cmd_status = hpc_check_cmd_status(slot->ctrl);
386 err("%s: Failed to issued command 0x%x (error code = %d)\n",
387 __FUNCTION__, cmd, cmd_status);
391 mutex_unlock(&slot->ctrl->cmd_lock);
397 static int hpc_check_cmd_status(struct controller *ctrl)
404 cmd_status = shpc_readw(ctrl, CMD_STATUS) & 0x000F;
406 switch (cmd_status >> 1) {
411 retval = SWITCH_OPEN;
412 err("%s: Switch opened!\n", __FUNCTION__);
415 retval = INVALID_CMD;
416 err("%s: Invalid HPC command!\n", __FUNCTION__);
419 retval = INVALID_SPEED_MODE;
420 err("%s: Invalid bus speed/mode!\n", __FUNCTION__);
431 static int hpc_get_attention_status(struct slot *slot, u8 *status)
433 struct controller *ctrl = slot->ctrl;
439 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
440 state = (slot_reg & ATN_LED_STATE_MASK) >> ATN_LED_STATE_SHIFT;
443 case ATN_LED_STATE_ON:
444 *status = 1; /* On */
446 case ATN_LED_STATE_BLINK:
447 *status = 2; /* Blink */
449 case ATN_LED_STATE_OFF:
450 *status = 0; /* Off */
453 *status = 0xFF; /* Reserved */
461 static int hpc_get_power_status(struct slot * slot, u8 *status)
463 struct controller *ctrl = slot->ctrl;
469 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
470 state = (slot_reg & SLOT_STATE_MASK) >> SLOT_STATE_SHIFT;
473 case SLOT_STATE_PWRONLY:
474 *status = 2; /* Powered only */
476 case SLOT_STATE_ENABLED:
477 *status = 1; /* Enabled */
479 case SLOT_STATE_DISABLED:
480 *status = 0; /* Disabled */
483 *status = 0xFF; /* Reserved */
492 static int hpc_get_latch_status(struct slot *slot, u8 *status)
494 struct controller *ctrl = slot->ctrl;
499 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
500 *status = !!(slot_reg & MRL_SENSOR); /* 0 -> close; 1 -> open */
506 static int hpc_get_adapter_status(struct slot *slot, u8 *status)
508 struct controller *ctrl = slot->ctrl;
514 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
515 state = (slot_reg & PRSNT_MASK) >> PRSNT_SHIFT;
516 *status = (state != 0x3) ? 1 : 0;
522 static int hpc_get_prog_int(struct slot *slot, u8 *prog_int)
524 struct controller *ctrl = slot->ctrl;
528 *prog_int = shpc_readb(ctrl, PROG_INTERFACE);
534 static int hpc_get_adapter_speed(struct slot *slot, enum pci_bus_speed *value)
537 struct controller *ctrl = slot->ctrl;
538 u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
539 u8 m66_cap = !!(slot_reg & MHZ66_CAP);
544 if ((retval = hpc_get_prog_int(slot, &pi)))
549 pcix_cap = (slot_reg & PCIX_CAP_MASK_PI1) >> PCIX_CAP_SHIFT;
552 pcix_cap = (slot_reg & PCIX_CAP_MASK_PI2) >> PCIX_CAP_SHIFT;
558 dbg("%s: slot_reg = %x, pcix_cap = %x, m66_cap = %x\n",
559 __FUNCTION__, slot_reg, pcix_cap, m66_cap);
563 *value = m66_cap ? PCI_SPEED_66MHz : PCI_SPEED_33MHz;
566 *value = PCI_SPEED_66MHz_PCIX;
569 *value = PCI_SPEED_133MHz_PCIX;
572 *value = PCI_SPEED_133MHz_PCIX_266;
575 *value = PCI_SPEED_133MHz_PCIX_533;
579 *value = PCI_SPEED_UNKNOWN;
584 dbg("Adapter speed = %d\n", *value);
589 static int hpc_get_mode1_ECC_cap(struct slot *slot, u8 *mode)
591 struct controller *ctrl = slot->ctrl;
598 pi = shpc_readb(ctrl, PROG_INTERFACE);
599 sec_bus_status = shpc_readw(ctrl, SEC_BUS_CONFIG);
602 *mode = (sec_bus_status & 0x0100) >> 8;
607 dbg("Mode 1 ECC cap = %d\n", *mode);
613 static int hpc_query_power_fault(struct slot * slot)
615 struct controller *ctrl = slot->ctrl;
620 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
623 /* Note: Logic 0 => fault */
624 return !(slot_reg & POWER_FAULT);
627 static int hpc_set_attention_status(struct slot *slot, u8 value)
633 slot_cmd = SET_ATTN_OFF; /* OFF */
636 slot_cmd = SET_ATTN_ON; /* ON */
639 slot_cmd = SET_ATTN_BLINK; /* BLINK */
645 return shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
649 static void hpc_set_green_led_on(struct slot *slot)
651 shpc_write_cmd(slot, slot->hp_slot, SET_PWR_ON);
654 static void hpc_set_green_led_off(struct slot *slot)
656 shpc_write_cmd(slot, slot->hp_slot, SET_PWR_OFF);
659 static void hpc_set_green_led_blink(struct slot *slot)
661 shpc_write_cmd(slot, slot->hp_slot, SET_PWR_BLINK);
664 static void hpc_release_ctlr(struct controller *ctrl)
667 u32 slot_reg, serr_int;
672 * Mask event interrupts and SERRs of all slots
674 for (i = 0; i < ctrl->num_slots; i++) {
675 slot_reg = shpc_readl(ctrl, SLOT_REG(i));
676 slot_reg |= (PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
677 BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
678 CON_PFAULT_INTR_MASK | MRL_CHANGE_SERR_MASK |
679 CON_PFAULT_SERR_MASK);
680 slot_reg &= ~SLOT_REG_RSVDZ_MASK;
681 shpc_writel(ctrl, SLOT_REG(i), slot_reg);
687 * Mask SERR and System Interrut generation
689 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
690 serr_int |= (GLOBAL_INTR_MASK | GLOBAL_SERR_MASK |
691 COMMAND_INTR_MASK | ARBITER_SERR_MASK);
692 serr_int &= ~SERR_INTR_RSVDZ_MASK;
693 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
695 if (shpchp_poll_mode)
696 del_timer(&ctrl->poll_timer);
698 free_irq(ctrl->pci_dev->irq, ctrl);
699 pci_disable_msi(ctrl->pci_dev);
703 release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
706 * If this is the last controller to be released, destroy the
709 if (atomic_dec_and_test(&shpchp_num_controllers))
710 destroy_workqueue(shpchp_wq);
715 static int hpc_power_on_slot(struct slot * slot)
721 retval = shpc_write_cmd(slot, slot->hp_slot, SET_SLOT_PWR);
723 err("%s: Write command failed!\n", __FUNCTION__);
732 static int hpc_slot_enable(struct slot * slot)
738 /* Slot - Enable, Power Indicator - Blink, Attention Indicator - Off */
739 retval = shpc_write_cmd(slot, slot->hp_slot,
740 SET_SLOT_ENABLE | SET_PWR_BLINK | SET_ATTN_OFF);
742 err("%s: Write command failed!\n", __FUNCTION__);
750 static int hpc_slot_disable(struct slot * slot)
756 /* Slot - Disable, Power Indicator - Off, Attention Indicator - On */
757 retval = shpc_write_cmd(slot, slot->hp_slot,
758 SET_SLOT_DISABLE | SET_PWR_OFF | SET_ATTN_ON);
760 err("%s: Write command failed!\n", __FUNCTION__);
768 static int hpc_set_bus_speed_mode(struct slot * slot, enum pci_bus_speed value)
771 struct controller *ctrl = slot->ctrl;
776 pi = shpc_readb(ctrl, PROG_INTERFACE);
777 if ((pi == 1) && (value > PCI_SPEED_133MHz_PCIX))
781 case PCI_SPEED_33MHz:
782 cmd = SETA_PCI_33MHZ;
784 case PCI_SPEED_66MHz:
785 cmd = SETA_PCI_66MHZ;
787 case PCI_SPEED_66MHz_PCIX:
788 cmd = SETA_PCIX_66MHZ;
790 case PCI_SPEED_100MHz_PCIX:
791 cmd = SETA_PCIX_100MHZ;
793 case PCI_SPEED_133MHz_PCIX:
794 cmd = SETA_PCIX_133MHZ;
796 case PCI_SPEED_66MHz_PCIX_ECC:
797 cmd = SETB_PCIX_66MHZ_EM;
799 case PCI_SPEED_100MHz_PCIX_ECC:
800 cmd = SETB_PCIX_100MHZ_EM;
802 case PCI_SPEED_133MHz_PCIX_ECC:
803 cmd = SETB_PCIX_133MHZ_EM;
805 case PCI_SPEED_66MHz_PCIX_266:
806 cmd = SETB_PCIX_66MHZ_266;
808 case PCI_SPEED_100MHz_PCIX_266:
809 cmd = SETB_PCIX_100MHZ_266;
811 case PCI_SPEED_133MHz_PCIX_266:
812 cmd = SETB_PCIX_133MHZ_266;
814 case PCI_SPEED_66MHz_PCIX_533:
815 cmd = SETB_PCIX_66MHZ_533;
817 case PCI_SPEED_100MHz_PCIX_533:
818 cmd = SETB_PCIX_100MHZ_533;
820 case PCI_SPEED_133MHz_PCIX_533:
821 cmd = SETB_PCIX_133MHZ_533;
827 retval = shpc_write_cmd(slot, 0, cmd);
829 err("%s: Write command failed!\n", __FUNCTION__);
835 static irqreturn_t shpc_isr(int irq, void *dev_id)
837 struct controller *ctrl = (struct controller *)dev_id;
838 u32 serr_int, slot_reg, intr_loc, intr_loc2;
841 /* Check to see if it was our interrupt */
842 intr_loc = shpc_readl(ctrl, INTR_LOC);
846 dbg("%s: intr_loc = %x\n",__FUNCTION__, intr_loc);
848 if(!shpchp_poll_mode) {
850 * Mask Global Interrupt Mask - see implementation
851 * note on p. 139 of SHPC spec rev 1.0
853 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
854 serr_int |= GLOBAL_INTR_MASK;
855 serr_int &= ~SERR_INTR_RSVDZ_MASK;
856 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
858 intr_loc2 = shpc_readl(ctrl, INTR_LOC);
859 dbg("%s: intr_loc2 = %x\n",__FUNCTION__, intr_loc2);
862 if (intr_loc & CMD_INTR_PENDING) {
864 * Command Complete Interrupt Pending
865 * RO only - clear by writing 1 to the Command Completion
866 * Detect bit in Controller SERR-INT register
868 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
869 serr_int &= ~SERR_INTR_RSVDZ_MASK;
870 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
872 wake_up_interruptible(&ctrl->queue);
875 if (!(intr_loc & ~CMD_INTR_PENDING))
878 for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
879 /* To find out which slot has interrupt pending */
880 if (!(intr_loc & SLOT_INTR_PENDING(hp_slot)))
883 slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
884 dbg("%s: Slot %x with intr, slot register = %x\n",
885 __FUNCTION__, hp_slot, slot_reg);
887 if (slot_reg & MRL_CHANGE_DETECTED)
888 shpchp_handle_switch_change(hp_slot, ctrl);
890 if (slot_reg & BUTTON_PRESS_DETECTED)
891 shpchp_handle_attention_button(hp_slot, ctrl);
893 if (slot_reg & PRSNT_CHANGE_DETECTED)
894 shpchp_handle_presence_change(hp_slot, ctrl);
896 if (slot_reg & (ISO_PFAULT_DETECTED | CON_PFAULT_DETECTED))
897 shpchp_handle_power_fault(hp_slot, ctrl);
899 /* Clear all slot events */
900 slot_reg &= ~SLOT_REG_RSVDZ_MASK;
901 shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
904 if (!shpchp_poll_mode) {
905 /* Unmask Global Interrupt Mask */
906 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
907 serr_int &= ~(GLOBAL_INTR_MASK | SERR_INTR_RSVDZ_MASK);
908 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
914 static int hpc_get_max_bus_speed (struct slot *slot, enum pci_bus_speed *value)
917 struct controller *ctrl = slot->ctrl;
918 enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
919 u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
920 u32 slot_avail1 = shpc_readl(ctrl, SLOT_AVAIL1);
921 u32 slot_avail2 = shpc_readl(ctrl, SLOT_AVAIL2);
926 if (slot_avail2 & SLOT_133MHZ_PCIX_533)
927 bus_speed = PCI_SPEED_133MHz_PCIX_533;
928 else if (slot_avail2 & SLOT_100MHZ_PCIX_533)
929 bus_speed = PCI_SPEED_100MHz_PCIX_533;
930 else if (slot_avail2 & SLOT_66MHZ_PCIX_533)
931 bus_speed = PCI_SPEED_66MHz_PCIX_533;
932 else if (slot_avail2 & SLOT_133MHZ_PCIX_266)
933 bus_speed = PCI_SPEED_133MHz_PCIX_266;
934 else if (slot_avail2 & SLOT_100MHZ_PCIX_266)
935 bus_speed = PCI_SPEED_100MHz_PCIX_266;
936 else if (slot_avail2 & SLOT_66MHZ_PCIX_266)
937 bus_speed = PCI_SPEED_66MHz_PCIX_266;
940 if (bus_speed == PCI_SPEED_UNKNOWN) {
941 if (slot_avail1 & SLOT_133MHZ_PCIX)
942 bus_speed = PCI_SPEED_133MHz_PCIX;
943 else if (slot_avail1 & SLOT_100MHZ_PCIX)
944 bus_speed = PCI_SPEED_100MHz_PCIX;
945 else if (slot_avail1 & SLOT_66MHZ_PCIX)
946 bus_speed = PCI_SPEED_66MHz_PCIX;
947 else if (slot_avail2 & SLOT_66MHZ)
948 bus_speed = PCI_SPEED_66MHz;
949 else if (slot_avail1 & SLOT_33MHZ)
950 bus_speed = PCI_SPEED_33MHz;
956 dbg("Max bus speed = %d\n", bus_speed);
961 static int hpc_get_cur_bus_speed (struct slot *slot, enum pci_bus_speed *value)
964 struct controller *ctrl = slot->ctrl;
965 enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
966 u16 sec_bus_reg = shpc_readw(ctrl, SEC_BUS_CONFIG);
967 u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
968 u8 speed_mode = (pi == 2) ? (sec_bus_reg & 0xF) : (sec_bus_reg & 0x7);
972 if ((pi == 1) && (speed_mode > 4)) {
973 *value = PCI_SPEED_UNKNOWN;
977 switch (speed_mode) {
979 *value = PCI_SPEED_33MHz;
982 *value = PCI_SPEED_66MHz;
985 *value = PCI_SPEED_66MHz_PCIX;
988 *value = PCI_SPEED_100MHz_PCIX;
991 *value = PCI_SPEED_133MHz_PCIX;
994 *value = PCI_SPEED_66MHz_PCIX_ECC;
997 *value = PCI_SPEED_100MHz_PCIX_ECC;
1000 *value = PCI_SPEED_133MHz_PCIX_ECC;
1003 *value = PCI_SPEED_66MHz_PCIX_266;
1006 *value = PCI_SPEED_100MHz_PCIX_266;
1009 *value = PCI_SPEED_133MHz_PCIX_266;
1012 *value = PCI_SPEED_66MHz_PCIX_533;
1015 *value = PCI_SPEED_100MHz_PCIX_533;
1018 *value = PCI_SPEED_133MHz_PCIX_533;
1021 *value = PCI_SPEED_UNKNOWN;
1026 dbg("Current bus speed = %d\n", bus_speed);
1031 static struct hpc_ops shpchp_hpc_ops = {
1032 .power_on_slot = hpc_power_on_slot,
1033 .slot_enable = hpc_slot_enable,
1034 .slot_disable = hpc_slot_disable,
1035 .set_bus_speed_mode = hpc_set_bus_speed_mode,
1036 .set_attention_status = hpc_set_attention_status,
1037 .get_power_status = hpc_get_power_status,
1038 .get_attention_status = hpc_get_attention_status,
1039 .get_latch_status = hpc_get_latch_status,
1040 .get_adapter_status = hpc_get_adapter_status,
1042 .get_max_bus_speed = hpc_get_max_bus_speed,
1043 .get_cur_bus_speed = hpc_get_cur_bus_speed,
1044 .get_adapter_speed = hpc_get_adapter_speed,
1045 .get_mode1_ECC_cap = hpc_get_mode1_ECC_cap,
1046 .get_prog_int = hpc_get_prog_int,
1048 .query_power_fault = hpc_query_power_fault,
1049 .green_led_on = hpc_set_green_led_on,
1050 .green_led_off = hpc_set_green_led_off,
1051 .green_led_blink = hpc_set_green_led_blink,
1053 .release_ctlr = hpc_release_ctlr,
1056 int shpc_init(struct controller *ctrl, struct pci_dev *pdev)
1058 int rc = -1, num_slots = 0;
1060 u32 shpc_base_offset;
1061 u32 tempdword, slot_reg, slot_config;
1066 ctrl->pci_dev = pdev; /* pci_dev of the P2P bridge */
1068 if ((pdev->vendor == PCI_VENDOR_ID_AMD) || (pdev->device ==
1069 PCI_DEVICE_ID_AMD_GOLAM_7450)) {
1070 /* amd shpc driver doesn't use Base Offset; assume 0 */
1071 ctrl->mmio_base = pci_resource_start(pdev, 0);
1072 ctrl->mmio_size = pci_resource_len(pdev, 0);
1074 ctrl->cap_offset = pci_find_capability(pdev, PCI_CAP_ID_SHPC);
1075 if (!ctrl->cap_offset) {
1076 err("%s : cap_offset == 0\n", __FUNCTION__);
1079 dbg("%s: cap_offset = %x\n", __FUNCTION__, ctrl->cap_offset);
1081 rc = shpc_indirect_read(ctrl, 0, &shpc_base_offset);
1083 err("%s: cannot read base_offset\n", __FUNCTION__);
1087 rc = shpc_indirect_read(ctrl, 3, &tempdword);
1089 err("%s: cannot read slot config\n", __FUNCTION__);
1092 num_slots = tempdword & SLOT_NUM;
1093 dbg("%s: num_slots (indirect) %x\n", __FUNCTION__, num_slots);
1095 for (i = 0; i < 9 + num_slots; i++) {
1096 rc = shpc_indirect_read(ctrl, i, &tempdword);
1098 err("%s: cannot read creg (index = %d)\n",
1102 dbg("%s: offset %d: value %x\n", __FUNCTION__,i,
1107 pci_resource_start(pdev, 0) + shpc_base_offset;
1108 ctrl->mmio_size = 0x24 + 0x4 * num_slots;
1111 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n", pdev->vendor, pdev->device, pdev->subsystem_vendor,
1112 pdev->subsystem_device);
1114 rc = pci_enable_device(pdev);
1116 err("%s: pci_enable_device failed\n", __FUNCTION__);
1120 if (!request_mem_region(ctrl->mmio_base, ctrl->mmio_size, MY_NAME)) {
1121 err("%s: cannot reserve MMIO region\n", __FUNCTION__);
1126 ctrl->creg = ioremap(ctrl->mmio_base, ctrl->mmio_size);
1128 err("%s: cannot remap MMIO region %lx @ %lx\n", __FUNCTION__,
1129 ctrl->mmio_size, ctrl->mmio_base);
1130 release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
1134 dbg("%s: ctrl->creg %p\n", __FUNCTION__, ctrl->creg);
1136 mutex_init(&ctrl->crit_sect);
1137 mutex_init(&ctrl->cmd_lock);
1139 /* Setup wait queue */
1140 init_waitqueue_head(&ctrl->queue);
1142 ctrl->hpc_ops = &shpchp_hpc_ops;
1144 /* Return PCI Controller Info */
1145 slot_config = shpc_readl(ctrl, SLOT_CONFIG);
1146 ctrl->slot_device_offset = (slot_config & FIRST_DEV_NUM) >> 8;
1147 ctrl->num_slots = slot_config & SLOT_NUM;
1148 ctrl->first_slot = (slot_config & PSN) >> 16;
1149 ctrl->slot_num_inc = ((slot_config & UPDOWN) >> 29) ? 1 : -1;
1151 /* Mask Global Interrupt Mask & Command Complete Interrupt Mask */
1152 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
1153 dbg("%s: SERR_INTR_ENABLE = %x\n", __FUNCTION__, tempdword);
1154 tempdword |= (GLOBAL_INTR_MASK | GLOBAL_SERR_MASK |
1155 COMMAND_INTR_MASK | ARBITER_SERR_MASK);
1156 tempdword &= ~SERR_INTR_RSVDZ_MASK;
1157 shpc_writel(ctrl, SERR_INTR_ENABLE, tempdword);
1158 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
1159 dbg("%s: SERR_INTR_ENABLE = %x\n", __FUNCTION__, tempdword);
1161 /* Mask the MRL sensor SERR Mask of individual slot in
1162 * Slot SERR-INT Mask & clear all the existing event if any
1164 for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
1165 slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
1166 dbg("%s: Default Logical Slot Register %d value %x\n", __FUNCTION__,
1168 slot_reg |= (PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
1169 BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
1170 CON_PFAULT_INTR_MASK | MRL_CHANGE_SERR_MASK |
1171 CON_PFAULT_SERR_MASK);
1172 slot_reg &= ~SLOT_REG_RSVDZ_MASK;
1173 shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
1176 if (shpchp_poll_mode) {
1177 /* Install interrupt polling timer. Start with 10 sec delay */
1178 init_timer(&ctrl->poll_timer);
1179 start_int_poll_timer(ctrl, 10);
1181 /* Installs the interrupt handler */
1182 rc = pci_enable_msi(pdev);
1184 info("Can't get msi for the hotplug controller\n");
1185 info("Use INTx for the hotplug controller\n");
1188 rc = request_irq(ctrl->pci_dev->irq, shpc_isr, IRQF_SHARED,
1189 MY_NAME, (void *)ctrl);
1190 dbg("%s: request_irq %d for hpc%d (returns %d)\n",
1191 __FUNCTION__, ctrl->pci_dev->irq,
1192 atomic_read(&shpchp_num_controllers), rc);
1194 err("Can't get irq %d for the hotplug controller\n",
1195 ctrl->pci_dev->irq);
1199 dbg("%s: HPC at b:d:f:irq=0x%x:%x:%x:%x\n", __FUNCTION__,
1200 pdev->bus->number, PCI_SLOT(pdev->devfn),
1201 PCI_FUNC(pdev->devfn), pdev->irq);
1202 get_hp_hw_control_from_firmware(pdev);
1205 * If this is the first controller to be initialized,
1206 * initialize the shpchpd work queue
1208 if (atomic_add_return(1, &shpchp_num_controllers) == 1) {
1209 shpchp_wq = create_singlethread_workqueue("shpchpd");
1217 * Unmask all event interrupts of all slots
1219 for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
1220 slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
1221 dbg("%s: Default Logical Slot Register %d value %x\n", __FUNCTION__,
1223 slot_reg &= ~(PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
1224 BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
1225 CON_PFAULT_INTR_MASK | SLOT_REG_RSVDZ_MASK);
1226 shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
1228 if (!shpchp_poll_mode) {
1229 /* Unmask all general input interrupts and SERR */
1230 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
1231 tempdword &= ~(GLOBAL_INTR_MASK | COMMAND_INTR_MASK |
1232 SERR_INTR_RSVDZ_MASK);
1233 shpc_writel(ctrl, SERR_INTR_ENABLE, tempdword);
1234 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
1235 dbg("%s: SERR_INTR_ENABLE = %x\n", __FUNCTION__, tempdword);
1241 /* We end up here for the many possible ways to fail this API. */
1243 iounmap(ctrl->creg);