1 // SPDX-License-Identifier: GPL-2.0+
3 * Standard PCI Hot Plug Driver
5 * Copyright (C) 1995,2001 Compaq Computer Corporation
7 * Copyright (C) 2001 IBM Corp.
8 * Copyright (C) 2003-2004 Intel Corporation
10 * All rights reserved.
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/types.h>
19 #include <linux/pci.h>
20 #include <linux/interrupt.h>
24 /* Slot Available Register I field definition */
25 #define SLOT_33MHZ 0x0000001f
26 #define SLOT_66MHZ_PCIX 0x00001f00
27 #define SLOT_100MHZ_PCIX 0x001f0000
28 #define SLOT_133MHZ_PCIX 0x1f000000
30 /* Slot Available Register II field definition */
31 #define SLOT_66MHZ 0x0000001f
32 #define SLOT_66MHZ_PCIX_266 0x00000f00
33 #define SLOT_100MHZ_PCIX_266 0x0000f000
34 #define SLOT_133MHZ_PCIX_266 0x000f0000
35 #define SLOT_66MHZ_PCIX_533 0x00f00000
36 #define SLOT_100MHZ_PCIX_533 0x0f000000
37 #define SLOT_133MHZ_PCIX_533 0xf0000000
39 /* Slot Configuration */
40 #define SLOT_NUM 0x0000001F
41 #define FIRST_DEV_NUM 0x00001F00
42 #define PSN 0x07FF0000
43 #define UPDOWN 0x20000000
44 #define MRLSENSOR 0x40000000
45 #define ATTN_BUTTON 0x80000000
48 * Interrupt Locator Register definitions
50 #define CMD_INTR_PENDING (1 << 0)
51 #define SLOT_INTR_PENDING(i) (1 << (i + 1))
54 * Controller SERR-INT Register
56 #define GLOBAL_INTR_MASK (1 << 0)
57 #define GLOBAL_SERR_MASK (1 << 1)
58 #define COMMAND_INTR_MASK (1 << 2)
59 #define ARBITER_SERR_MASK (1 << 3)
60 #define COMMAND_DETECTED (1 << 16)
61 #define ARBITER_DETECTED (1 << 17)
62 #define SERR_INTR_RSVDZ_MASK 0xfffc0000
65 * Logical Slot Register definitions
67 #define SLOT_REG(i) (SLOT1 + (4 * i))
69 #define SLOT_STATE_SHIFT (0)
70 #define SLOT_STATE_MASK (3 << 0)
71 #define SLOT_STATE_PWRONLY (1)
72 #define SLOT_STATE_ENABLED (2)
73 #define SLOT_STATE_DISABLED (3)
74 #define PWR_LED_STATE_SHIFT (2)
75 #define PWR_LED_STATE_MASK (3 << 2)
76 #define ATN_LED_STATE_SHIFT (4)
77 #define ATN_LED_STATE_MASK (3 << 4)
78 #define ATN_LED_STATE_ON (1)
79 #define ATN_LED_STATE_BLINK (2)
80 #define ATN_LED_STATE_OFF (3)
81 #define POWER_FAULT (1 << 6)
82 #define ATN_BUTTON (1 << 7)
83 #define MRL_SENSOR (1 << 8)
84 #define MHZ66_CAP (1 << 9)
85 #define PRSNT_SHIFT (10)
86 #define PRSNT_MASK (3 << 10)
87 #define PCIX_CAP_SHIFT (12)
88 #define PCIX_CAP_MASK_PI1 (3 << 12)
89 #define PCIX_CAP_MASK_PI2 (7 << 12)
90 #define PRSNT_CHANGE_DETECTED (1 << 16)
91 #define ISO_PFAULT_DETECTED (1 << 17)
92 #define BUTTON_PRESS_DETECTED (1 << 18)
93 #define MRL_CHANGE_DETECTED (1 << 19)
94 #define CON_PFAULT_DETECTED (1 << 20)
95 #define PRSNT_CHANGE_INTR_MASK (1 << 24)
96 #define ISO_PFAULT_INTR_MASK (1 << 25)
97 #define BUTTON_PRESS_INTR_MASK (1 << 26)
98 #define MRL_CHANGE_INTR_MASK (1 << 27)
99 #define CON_PFAULT_INTR_MASK (1 << 28)
100 #define MRL_CHANGE_SERR_MASK (1 << 29)
101 #define CON_PFAULT_SERR_MASK (1 << 30)
102 #define SLOT_REG_RSVDZ_MASK ((1 << 15) | (7 << 21))
105 * SHPC Command Code definitions
107 * Slot Operation 00h - 3Fh
108 * Set Bus Segment Speed/Mode A 40h - 47h
109 * Power-Only All Slots 48h
110 * Enable All Slots 49h
111 * Set Bus Segment Speed/Mode B (PI=2) 50h - 5Fh
112 * Reserved Command Codes 60h - BFh
113 * Vendor Specific Commands C0h - FFh
115 #define SET_SLOT_PWR 0x01 /* Slot Operation */
116 #define SET_SLOT_ENABLE 0x02
117 #define SET_SLOT_DISABLE 0x03
118 #define SET_PWR_ON 0x04
119 #define SET_PWR_BLINK 0x08
120 #define SET_PWR_OFF 0x0c
121 #define SET_ATTN_ON 0x10
122 #define SET_ATTN_BLINK 0x20
123 #define SET_ATTN_OFF 0x30
124 #define SETA_PCI_33MHZ 0x40 /* Set Bus Segment Speed/Mode A */
125 #define SETA_PCI_66MHZ 0x41
126 #define SETA_PCIX_66MHZ 0x42
127 #define SETA_PCIX_100MHZ 0x43
128 #define SETA_PCIX_133MHZ 0x44
129 #define SETA_RESERVED1 0x45
130 #define SETA_RESERVED2 0x46
131 #define SETA_RESERVED3 0x47
132 #define SET_PWR_ONLY_ALL 0x48 /* Power-Only All Slots */
133 #define SET_ENABLE_ALL 0x49 /* Enable All Slots */
134 #define SETB_PCI_33MHZ 0x50 /* Set Bus Segment Speed/Mode B */
135 #define SETB_PCI_66MHZ 0x51
136 #define SETB_PCIX_66MHZ_PM 0x52
137 #define SETB_PCIX_100MHZ_PM 0x53
138 #define SETB_PCIX_133MHZ_PM 0x54
139 #define SETB_PCIX_66MHZ_EM 0x55
140 #define SETB_PCIX_100MHZ_EM 0x56
141 #define SETB_PCIX_133MHZ_EM 0x57
142 #define SETB_PCIX_66MHZ_266 0x58
143 #define SETB_PCIX_100MHZ_266 0x59
144 #define SETB_PCIX_133MHZ_266 0x5a
145 #define SETB_PCIX_66MHZ_533 0x5b
146 #define SETB_PCIX_100MHZ_533 0x5c
147 #define SETB_PCIX_133MHZ_533 0x5d
148 #define SETB_RESERVED1 0x5e
149 #define SETB_RESERVED2 0x5f
152 * SHPC controller command error code
154 #define SWITCH_OPEN 0x1
155 #define INVALID_CMD 0x2
156 #define INVALID_SPEED_MODE 0x4
159 * For accessing SHPC Working Register Set via PCI Configuration Space
161 #define DWORD_SELECT 0x2
162 #define DWORD_DATA 0x4
164 /* Field Offset in Logical Slot Register - byte boundary */
165 #define SLOT_EVENT_LATCH 0x2
166 #define SLOT_SERR_INT_MASK 0x3
168 static irqreturn_t shpc_isr(int irq, void *dev_id);
169 static void start_int_poll_timer(struct controller *ctrl, int sec);
171 static inline u8 shpc_readb(struct controller *ctrl, int reg)
173 return readb(ctrl->creg + reg);
176 static inline u16 shpc_readw(struct controller *ctrl, int reg)
178 return readw(ctrl->creg + reg);
181 static inline void shpc_writew(struct controller *ctrl, int reg, u16 val)
183 writew(val, ctrl->creg + reg);
186 static inline u32 shpc_readl(struct controller *ctrl, int reg)
188 return readl(ctrl->creg + reg);
191 static inline void shpc_writel(struct controller *ctrl, int reg, u32 val)
193 writel(val, ctrl->creg + reg);
196 static inline int shpc_indirect_read(struct controller *ctrl, int index,
200 u32 cap_offset = ctrl->cap_offset;
201 struct pci_dev *pdev = ctrl->pci_dev;
203 rc = pci_write_config_byte(pdev, cap_offset + DWORD_SELECT, index);
206 return pci_read_config_dword(pdev, cap_offset + DWORD_DATA, value);
210 * This is the interrupt polling timeout function.
212 static void int_poll_timeout(struct timer_list *t)
214 struct controller *ctrl = from_timer(ctrl, t, poll_timer);
216 /* Poll for interrupt events. regs == NULL => polling */
219 if (!shpchp_poll_time)
220 shpchp_poll_time = 2; /* default polling interval is 2 sec */
222 start_int_poll_timer(ctrl, shpchp_poll_time);
226 * This function starts the interrupt polling timer.
228 static void start_int_poll_timer(struct controller *ctrl, int sec)
230 /* Clamp to sane value */
231 if ((sec <= 0) || (sec > 60))
234 ctrl->poll_timer.expires = jiffies + sec * HZ;
235 add_timer(&ctrl->poll_timer);
238 static inline int is_ctrl_busy(struct controller *ctrl)
240 u16 cmd_status = shpc_readw(ctrl, CMD_STATUS);
241 return cmd_status & 0x1;
245 * Returns 1 if SHPC finishes executing a command within 1 sec,
246 * otherwise returns 0.
248 static inline int shpc_poll_ctrl_busy(struct controller *ctrl)
252 if (!is_ctrl_busy(ctrl))
255 /* Check every 0.1 sec for a total of 1 sec */
256 for (i = 0; i < 10; i++) {
258 if (!is_ctrl_busy(ctrl))
265 static inline int shpc_wait_cmd(struct controller *ctrl)
268 unsigned long timeout = msecs_to_jiffies(1000);
271 if (shpchp_poll_mode)
272 rc = shpc_poll_ctrl_busy(ctrl);
274 rc = wait_event_interruptible_timeout(ctrl->queue,
275 !is_ctrl_busy(ctrl), timeout);
276 if (!rc && is_ctrl_busy(ctrl)) {
278 ctrl_err(ctrl, "Command not completed in 1000 msec\n");
281 ctrl_info(ctrl, "Command was interrupted by a signal\n");
287 static int shpc_write_cmd(struct slot *slot, u8 t_slot, u8 cmd)
289 struct controller *ctrl = slot->ctrl;
294 mutex_lock(&slot->ctrl->cmd_lock);
296 if (!shpc_poll_ctrl_busy(ctrl)) {
297 /* After 1 sec and the controller is still busy */
298 ctrl_err(ctrl, "Controller is still busy after 1 sec\n");
304 temp_word = (t_slot << 8) | (cmd & 0xFF);
305 ctrl_dbg(ctrl, "%s: t_slot %x cmd %x\n", __func__, t_slot, cmd);
307 /* To make sure the Controller Busy bit is 0 before we send out the
310 shpc_writew(ctrl, CMD, temp_word);
313 * Wait for command completion.
315 retval = shpc_wait_cmd(slot->ctrl);
319 cmd_status = shpchp_check_cmd_status(slot->ctrl);
321 ctrl_err(ctrl, "Failed to issued command 0x%x (error code = %d)\n",
326 mutex_unlock(&slot->ctrl->cmd_lock);
330 int shpchp_check_cmd_status(struct controller *ctrl)
333 u16 cmd_status = shpc_readw(ctrl, CMD_STATUS) & 0x000F;
335 switch (cmd_status >> 1) {
340 retval = SWITCH_OPEN;
341 ctrl_err(ctrl, "Switch opened!\n");
344 retval = INVALID_CMD;
345 ctrl_err(ctrl, "Invalid HPC command!\n");
348 retval = INVALID_SPEED_MODE;
349 ctrl_err(ctrl, "Invalid bus speed/mode!\n");
359 int shpchp_get_attention_status(struct slot *slot, u8 *status)
361 struct controller *ctrl = slot->ctrl;
362 u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
363 u8 state = (slot_reg & ATN_LED_STATE_MASK) >> ATN_LED_STATE_SHIFT;
366 case ATN_LED_STATE_ON:
367 *status = 1; /* On */
369 case ATN_LED_STATE_BLINK:
370 *status = 2; /* Blink */
372 case ATN_LED_STATE_OFF:
373 *status = 0; /* Off */
376 *status = 0xFF; /* Reserved */
383 int shpchp_get_power_status(struct slot *slot, u8 *status)
385 struct controller *ctrl = slot->ctrl;
386 u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
387 u8 state = (slot_reg & SLOT_STATE_MASK) >> SLOT_STATE_SHIFT;
390 case SLOT_STATE_PWRONLY:
391 *status = 2; /* Powered only */
393 case SLOT_STATE_ENABLED:
394 *status = 1; /* Enabled */
396 case SLOT_STATE_DISABLED:
397 *status = 0; /* Disabled */
400 *status = 0xFF; /* Reserved */
408 int shpchp_get_latch_status(struct slot *slot, u8 *status)
410 struct controller *ctrl = slot->ctrl;
411 u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
413 *status = !!(slot_reg & MRL_SENSOR); /* 0 -> close; 1 -> open */
418 int shpchp_get_adapter_status(struct slot *slot, u8 *status)
420 struct controller *ctrl = slot->ctrl;
421 u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
422 u8 state = (slot_reg & PRSNT_MASK) >> PRSNT_SHIFT;
424 *status = (state != 0x3) ? 1 : 0;
429 int shpchp_get_prog_int(struct slot *slot, u8 *prog_int)
431 struct controller *ctrl = slot->ctrl;
433 *prog_int = shpc_readb(ctrl, PROG_INTERFACE);
438 int shpchp_get_adapter_speed(struct slot *slot, enum pci_bus_speed *value)
441 struct controller *ctrl = slot->ctrl;
442 u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
443 u8 m66_cap = !!(slot_reg & MHZ66_CAP);
446 retval = shpchp_get_prog_int(slot, &pi);
452 pcix_cap = (slot_reg & PCIX_CAP_MASK_PI1) >> PCIX_CAP_SHIFT;
455 pcix_cap = (slot_reg & PCIX_CAP_MASK_PI2) >> PCIX_CAP_SHIFT;
461 ctrl_dbg(ctrl, "%s: slot_reg = %x, pcix_cap = %x, m66_cap = %x\n",
462 __func__, slot_reg, pcix_cap, m66_cap);
466 *value = m66_cap ? PCI_SPEED_66MHz : PCI_SPEED_33MHz;
469 *value = PCI_SPEED_66MHz_PCIX;
472 *value = PCI_SPEED_133MHz_PCIX;
475 *value = PCI_SPEED_133MHz_PCIX_266;
478 *value = PCI_SPEED_133MHz_PCIX_533;
482 *value = PCI_SPEED_UNKNOWN;
487 ctrl_dbg(ctrl, "Adapter speed = %d\n", *value);
491 int shpchp_query_power_fault(struct slot *slot)
493 struct controller *ctrl = slot->ctrl;
494 u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
496 /* Note: Logic 0 => fault */
497 return !(slot_reg & POWER_FAULT);
500 int shpchp_set_attention_status(struct slot *slot, u8 value)
506 slot_cmd = SET_ATTN_OFF; /* OFF */
509 slot_cmd = SET_ATTN_ON; /* ON */
512 slot_cmd = SET_ATTN_BLINK; /* BLINK */
518 return shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
522 void shpchp_green_led_on(struct slot *slot)
524 shpc_write_cmd(slot, slot->hp_slot, SET_PWR_ON);
527 void shpchp_green_led_off(struct slot *slot)
529 shpc_write_cmd(slot, slot->hp_slot, SET_PWR_OFF);
532 void shpchp_green_led_blink(struct slot *slot)
534 shpc_write_cmd(slot, slot->hp_slot, SET_PWR_BLINK);
537 void shpchp_release_ctlr(struct controller *ctrl)
540 u32 slot_reg, serr_int;
543 * Mask event interrupts and SERRs of all slots
545 for (i = 0; i < ctrl->num_slots; i++) {
546 slot_reg = shpc_readl(ctrl, SLOT_REG(i));
547 slot_reg |= (PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
548 BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
549 CON_PFAULT_INTR_MASK | MRL_CHANGE_SERR_MASK |
550 CON_PFAULT_SERR_MASK);
551 slot_reg &= ~SLOT_REG_RSVDZ_MASK;
552 shpc_writel(ctrl, SLOT_REG(i), slot_reg);
558 * Mask SERR and System Interrupt generation
560 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
561 serr_int |= (GLOBAL_INTR_MASK | GLOBAL_SERR_MASK |
562 COMMAND_INTR_MASK | ARBITER_SERR_MASK);
563 serr_int &= ~SERR_INTR_RSVDZ_MASK;
564 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
566 if (shpchp_poll_mode)
567 del_timer(&ctrl->poll_timer);
569 free_irq(ctrl->pci_dev->irq, ctrl);
570 pci_disable_msi(ctrl->pci_dev);
574 release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
577 int shpchp_power_on_slot(struct slot *slot)
581 retval = shpc_write_cmd(slot, slot->hp_slot, SET_SLOT_PWR);
583 ctrl_err(slot->ctrl, "%s: Write command failed!\n", __func__);
588 int shpchp_slot_enable(struct slot *slot)
592 /* Slot - Enable, Power Indicator - Blink, Attention Indicator - Off */
593 retval = shpc_write_cmd(slot, slot->hp_slot,
594 SET_SLOT_ENABLE | SET_PWR_BLINK | SET_ATTN_OFF);
596 ctrl_err(slot->ctrl, "%s: Write command failed!\n", __func__);
601 int shpchp_slot_disable(struct slot *slot)
605 /* Slot - Disable, Power Indicator - Off, Attention Indicator - On */
606 retval = shpc_write_cmd(slot, slot->hp_slot,
607 SET_SLOT_DISABLE | SET_PWR_OFF | SET_ATTN_ON);
609 ctrl_err(slot->ctrl, "%s: Write command failed!\n", __func__);
614 static int shpc_get_cur_bus_speed(struct controller *ctrl)
617 struct pci_bus *bus = ctrl->pci_dev->subordinate;
618 enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
619 u16 sec_bus_reg = shpc_readw(ctrl, SEC_BUS_CONFIG);
620 u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
621 u8 speed_mode = (pi == 2) ? (sec_bus_reg & 0xF) : (sec_bus_reg & 0x7);
623 if ((pi == 1) && (speed_mode > 4)) {
628 switch (speed_mode) {
630 bus_speed = PCI_SPEED_33MHz;
633 bus_speed = PCI_SPEED_66MHz;
636 bus_speed = PCI_SPEED_66MHz_PCIX;
639 bus_speed = PCI_SPEED_100MHz_PCIX;
642 bus_speed = PCI_SPEED_133MHz_PCIX;
645 bus_speed = PCI_SPEED_66MHz_PCIX_ECC;
648 bus_speed = PCI_SPEED_100MHz_PCIX_ECC;
651 bus_speed = PCI_SPEED_133MHz_PCIX_ECC;
654 bus_speed = PCI_SPEED_66MHz_PCIX_266;
657 bus_speed = PCI_SPEED_100MHz_PCIX_266;
660 bus_speed = PCI_SPEED_133MHz_PCIX_266;
663 bus_speed = PCI_SPEED_66MHz_PCIX_533;
666 bus_speed = PCI_SPEED_100MHz_PCIX_533;
669 bus_speed = PCI_SPEED_133MHz_PCIX_533;
677 bus->cur_bus_speed = bus_speed;
678 dbg("Current bus speed = %d\n", bus_speed);
683 int shpchp_set_bus_speed_mode(struct slot *slot, enum pci_bus_speed value)
686 struct controller *ctrl = slot->ctrl;
689 pi = shpc_readb(ctrl, PROG_INTERFACE);
690 if ((pi == 1) && (value > PCI_SPEED_133MHz_PCIX))
694 case PCI_SPEED_33MHz:
695 cmd = SETA_PCI_33MHZ;
697 case PCI_SPEED_66MHz:
698 cmd = SETA_PCI_66MHZ;
700 case PCI_SPEED_66MHz_PCIX:
701 cmd = SETA_PCIX_66MHZ;
703 case PCI_SPEED_100MHz_PCIX:
704 cmd = SETA_PCIX_100MHZ;
706 case PCI_SPEED_133MHz_PCIX:
707 cmd = SETA_PCIX_133MHZ;
709 case PCI_SPEED_66MHz_PCIX_ECC:
710 cmd = SETB_PCIX_66MHZ_EM;
712 case PCI_SPEED_100MHz_PCIX_ECC:
713 cmd = SETB_PCIX_100MHZ_EM;
715 case PCI_SPEED_133MHz_PCIX_ECC:
716 cmd = SETB_PCIX_133MHZ_EM;
718 case PCI_SPEED_66MHz_PCIX_266:
719 cmd = SETB_PCIX_66MHZ_266;
721 case PCI_SPEED_100MHz_PCIX_266:
722 cmd = SETB_PCIX_100MHZ_266;
724 case PCI_SPEED_133MHz_PCIX_266:
725 cmd = SETB_PCIX_133MHZ_266;
727 case PCI_SPEED_66MHz_PCIX_533:
728 cmd = SETB_PCIX_66MHZ_533;
730 case PCI_SPEED_100MHz_PCIX_533:
731 cmd = SETB_PCIX_100MHZ_533;
733 case PCI_SPEED_133MHz_PCIX_533:
734 cmd = SETB_PCIX_133MHZ_533;
740 retval = shpc_write_cmd(slot, 0, cmd);
742 ctrl_err(ctrl, "%s: Write command failed!\n", __func__);
744 shpc_get_cur_bus_speed(ctrl);
749 static irqreturn_t shpc_isr(int irq, void *dev_id)
751 struct controller *ctrl = (struct controller *)dev_id;
752 u32 serr_int, slot_reg, intr_loc, intr_loc2;
755 /* Check to see if it was our interrupt */
756 intr_loc = shpc_readl(ctrl, INTR_LOC);
760 ctrl_dbg(ctrl, "%s: intr_loc = %x\n", __func__, intr_loc);
762 if (!shpchp_poll_mode) {
764 * Mask Global Interrupt Mask - see implementation
765 * note on p. 139 of SHPC spec rev 1.0
767 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
768 serr_int |= GLOBAL_INTR_MASK;
769 serr_int &= ~SERR_INTR_RSVDZ_MASK;
770 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
772 intr_loc2 = shpc_readl(ctrl, INTR_LOC);
773 ctrl_dbg(ctrl, "%s: intr_loc2 = %x\n", __func__, intr_loc2);
776 if (intr_loc & CMD_INTR_PENDING) {
778 * Command Complete Interrupt Pending
779 * RO only - clear by writing 1 to the Command Completion
780 * Detect bit in Controller SERR-INT register
782 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
783 serr_int &= ~SERR_INTR_RSVDZ_MASK;
784 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
786 wake_up_interruptible(&ctrl->queue);
789 if (!(intr_loc & ~CMD_INTR_PENDING))
792 for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
793 /* To find out which slot has interrupt pending */
794 if (!(intr_loc & SLOT_INTR_PENDING(hp_slot)))
797 slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
798 ctrl_dbg(ctrl, "Slot %x with intr, slot register = %x\n",
801 if (slot_reg & MRL_CHANGE_DETECTED)
802 shpchp_handle_switch_change(hp_slot, ctrl);
804 if (slot_reg & BUTTON_PRESS_DETECTED)
805 shpchp_handle_attention_button(hp_slot, ctrl);
807 if (slot_reg & PRSNT_CHANGE_DETECTED)
808 shpchp_handle_presence_change(hp_slot, ctrl);
810 if (slot_reg & (ISO_PFAULT_DETECTED | CON_PFAULT_DETECTED))
811 shpchp_handle_power_fault(hp_slot, ctrl);
813 /* Clear all slot events */
814 slot_reg &= ~SLOT_REG_RSVDZ_MASK;
815 shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
818 if (!shpchp_poll_mode) {
819 /* Unmask Global Interrupt Mask */
820 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
821 serr_int &= ~(GLOBAL_INTR_MASK | SERR_INTR_RSVDZ_MASK);
822 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
828 static int shpc_get_max_bus_speed(struct controller *ctrl)
831 struct pci_bus *bus = ctrl->pci_dev->subordinate;
832 enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
833 u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
834 u32 slot_avail1 = shpc_readl(ctrl, SLOT_AVAIL1);
835 u32 slot_avail2 = shpc_readl(ctrl, SLOT_AVAIL2);
838 if (slot_avail2 & SLOT_133MHZ_PCIX_533)
839 bus_speed = PCI_SPEED_133MHz_PCIX_533;
840 else if (slot_avail2 & SLOT_100MHZ_PCIX_533)
841 bus_speed = PCI_SPEED_100MHz_PCIX_533;
842 else if (slot_avail2 & SLOT_66MHZ_PCIX_533)
843 bus_speed = PCI_SPEED_66MHz_PCIX_533;
844 else if (slot_avail2 & SLOT_133MHZ_PCIX_266)
845 bus_speed = PCI_SPEED_133MHz_PCIX_266;
846 else if (slot_avail2 & SLOT_100MHZ_PCIX_266)
847 bus_speed = PCI_SPEED_100MHz_PCIX_266;
848 else if (slot_avail2 & SLOT_66MHZ_PCIX_266)
849 bus_speed = PCI_SPEED_66MHz_PCIX_266;
852 if (bus_speed == PCI_SPEED_UNKNOWN) {
853 if (slot_avail1 & SLOT_133MHZ_PCIX)
854 bus_speed = PCI_SPEED_133MHz_PCIX;
855 else if (slot_avail1 & SLOT_100MHZ_PCIX)
856 bus_speed = PCI_SPEED_100MHz_PCIX;
857 else if (slot_avail1 & SLOT_66MHZ_PCIX)
858 bus_speed = PCI_SPEED_66MHz_PCIX;
859 else if (slot_avail2 & SLOT_66MHZ)
860 bus_speed = PCI_SPEED_66MHz;
861 else if (slot_avail1 & SLOT_33MHZ)
862 bus_speed = PCI_SPEED_33MHz;
867 bus->max_bus_speed = bus_speed;
868 ctrl_dbg(ctrl, "Max bus speed = %d\n", bus_speed);
873 int shpc_init(struct controller *ctrl, struct pci_dev *pdev)
875 int rc = -1, num_slots = 0;
877 u32 shpc_base_offset;
878 u32 tempdword, slot_reg, slot_config;
881 ctrl->pci_dev = pdev; /* pci_dev of the P2P bridge */
882 ctrl_dbg(ctrl, "Hotplug Controller:\n");
884 if (pdev->vendor == PCI_VENDOR_ID_AMD &&
885 pdev->device == PCI_DEVICE_ID_AMD_GOLAM_7450) {
886 /* amd shpc driver doesn't use Base Offset; assume 0 */
887 ctrl->mmio_base = pci_resource_start(pdev, 0);
888 ctrl->mmio_size = pci_resource_len(pdev, 0);
890 ctrl->cap_offset = pci_find_capability(pdev, PCI_CAP_ID_SHPC);
891 if (!ctrl->cap_offset) {
892 ctrl_err(ctrl, "Cannot find PCI capability\n");
895 ctrl_dbg(ctrl, " cap_offset = %x\n", ctrl->cap_offset);
897 rc = shpc_indirect_read(ctrl, 0, &shpc_base_offset);
899 ctrl_err(ctrl, "Cannot read base_offset\n");
903 rc = shpc_indirect_read(ctrl, 3, &tempdword);
905 ctrl_err(ctrl, "Cannot read slot config\n");
908 num_slots = tempdword & SLOT_NUM;
909 ctrl_dbg(ctrl, " num_slots (indirect) %x\n", num_slots);
911 for (i = 0; i < 9 + num_slots; i++) {
912 rc = shpc_indirect_read(ctrl, i, &tempdword);
914 ctrl_err(ctrl, "Cannot read creg (index = %d)\n",
918 ctrl_dbg(ctrl, " offset %d: value %x\n", i, tempdword);
922 pci_resource_start(pdev, 0) + shpc_base_offset;
923 ctrl->mmio_size = 0x24 + 0x4 * num_slots;
926 ctrl_info(ctrl, "HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
927 pdev->vendor, pdev->device, pdev->subsystem_vendor,
928 pdev->subsystem_device);
930 rc = pci_enable_device(pdev);
932 ctrl_err(ctrl, "pci_enable_device failed\n");
936 if (!request_mem_region(ctrl->mmio_base, ctrl->mmio_size, MY_NAME)) {
937 ctrl_err(ctrl, "Cannot reserve MMIO region\n");
942 ctrl->creg = ioremap(ctrl->mmio_base, ctrl->mmio_size);
944 ctrl_err(ctrl, "Cannot remap MMIO region %lx @ %lx\n",
945 ctrl->mmio_size, ctrl->mmio_base);
946 release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
950 ctrl_dbg(ctrl, "ctrl->creg %p\n", ctrl->creg);
952 mutex_init(&ctrl->crit_sect);
953 mutex_init(&ctrl->cmd_lock);
955 /* Setup wait queue */
956 init_waitqueue_head(&ctrl->queue);
958 /* Return PCI Controller Info */
959 slot_config = shpc_readl(ctrl, SLOT_CONFIG);
960 ctrl->slot_device_offset = (slot_config & FIRST_DEV_NUM) >> 8;
961 ctrl->num_slots = slot_config & SLOT_NUM;
962 ctrl->first_slot = (slot_config & PSN) >> 16;
963 ctrl->slot_num_inc = ((slot_config & UPDOWN) >> 29) ? 1 : -1;
965 /* Mask Global Interrupt Mask & Command Complete Interrupt Mask */
966 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
967 ctrl_dbg(ctrl, "SERR_INTR_ENABLE = %x\n", tempdword);
968 tempdword |= (GLOBAL_INTR_MASK | GLOBAL_SERR_MASK |
969 COMMAND_INTR_MASK | ARBITER_SERR_MASK);
970 tempdword &= ~SERR_INTR_RSVDZ_MASK;
971 shpc_writel(ctrl, SERR_INTR_ENABLE, tempdword);
972 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
973 ctrl_dbg(ctrl, "SERR_INTR_ENABLE = %x\n", tempdword);
975 /* Mask the MRL sensor SERR Mask of individual slot in
976 * Slot SERR-INT Mask & clear all the existing event if any
978 for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
979 slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
980 ctrl_dbg(ctrl, "Default Logical Slot Register %d value %x\n",
982 slot_reg |= (PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
983 BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
984 CON_PFAULT_INTR_MASK | MRL_CHANGE_SERR_MASK |
985 CON_PFAULT_SERR_MASK);
986 slot_reg &= ~SLOT_REG_RSVDZ_MASK;
987 shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
990 if (shpchp_poll_mode) {
991 /* Install interrupt polling timer. Start with 10 sec delay */
992 timer_setup(&ctrl->poll_timer, int_poll_timeout, 0);
993 start_int_poll_timer(ctrl, 10);
995 /* Installs the interrupt handler */
996 rc = pci_enable_msi(pdev);
998 ctrl_info(ctrl, "Can't get msi for the hotplug controller\n");
999 ctrl_info(ctrl, "Use INTx for the hotplug controller\n");
1001 pci_set_master(pdev);
1004 rc = request_irq(ctrl->pci_dev->irq, shpc_isr, IRQF_SHARED,
1005 MY_NAME, (void *)ctrl);
1006 ctrl_dbg(ctrl, "request_irq %d (returns %d)\n",
1007 ctrl->pci_dev->irq, rc);
1009 ctrl_err(ctrl, "Can't get irq %d for the hotplug controller\n",
1010 ctrl->pci_dev->irq);
1014 ctrl_dbg(ctrl, "HPC at %s irq=%x\n", pci_name(pdev), pdev->irq);
1016 shpc_get_max_bus_speed(ctrl);
1017 shpc_get_cur_bus_speed(ctrl);
1020 * Unmask all event interrupts of all slots
1022 for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
1023 slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
1024 ctrl_dbg(ctrl, "Default Logical Slot Register %d value %x\n",
1026 slot_reg &= ~(PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
1027 BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
1028 CON_PFAULT_INTR_MASK | SLOT_REG_RSVDZ_MASK);
1029 shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
1031 if (!shpchp_poll_mode) {
1032 /* Unmask all general input interrupts and SERR */
1033 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
1034 tempdword &= ~(GLOBAL_INTR_MASK | COMMAND_INTR_MASK |
1035 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);
1043 /* We end up here for the many possible ways to fail this API. */
1045 iounmap(ctrl->creg);