shpchp_hpc.c 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135
  1. /*
  2. * Standard PCI Hot Plug Driver
  3. *
  4. * Copyright (C) 1995,2001 Compaq Computer Corporation
  5. * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
  6. * Copyright (C) 2001 IBM Corp.
  7. * Copyright (C) 2003-2004 Intel Corporation
  8. *
  9. * All rights reserved.
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or (at
  14. * your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  19. * NON INFRINGEMENT. See the GNU General Public License for more
  20. * details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25. *
  26. * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
  27. *
  28. */
  29. #include <linux/kernel.h>
  30. #include <linux/module.h>
  31. #include <linux/types.h>
  32. #include <linux/pci.h>
  33. #include <linux/interrupt.h>
  34. #include "shpchp.h"
  35. /* Slot Available Register I field definition */
  36. #define SLOT_33MHZ 0x0000001f
  37. #define SLOT_66MHZ_PCIX 0x00001f00
  38. #define SLOT_100MHZ_PCIX 0x001f0000
  39. #define SLOT_133MHZ_PCIX 0x1f000000
  40. /* Slot Available Register II field definition */
  41. #define SLOT_66MHZ 0x0000001f
  42. #define SLOT_66MHZ_PCIX_266 0x00000f00
  43. #define SLOT_100MHZ_PCIX_266 0x0000f000
  44. #define SLOT_133MHZ_PCIX_266 0x000f0000
  45. #define SLOT_66MHZ_PCIX_533 0x00f00000
  46. #define SLOT_100MHZ_PCIX_533 0x0f000000
  47. #define SLOT_133MHZ_PCIX_533 0xf0000000
  48. /* Slot Configuration */
  49. #define SLOT_NUM 0x0000001F
  50. #define FIRST_DEV_NUM 0x00001F00
  51. #define PSN 0x07FF0000
  52. #define UPDOWN 0x20000000
  53. #define MRLSENSOR 0x40000000
  54. #define ATTN_BUTTON 0x80000000
  55. /*
  56. * Interrupt Locator Register definitions
  57. */
  58. #define CMD_INTR_PENDING (1 << 0)
  59. #define SLOT_INTR_PENDING(i) (1 << (i + 1))
  60. /*
  61. * Controller SERR-INT Register
  62. */
  63. #define GLOBAL_INTR_MASK (1 << 0)
  64. #define GLOBAL_SERR_MASK (1 << 1)
  65. #define COMMAND_INTR_MASK (1 << 2)
  66. #define ARBITER_SERR_MASK (1 << 3)
  67. #define COMMAND_DETECTED (1 << 16)
  68. #define ARBITER_DETECTED (1 << 17)
  69. #define SERR_INTR_RSVDZ_MASK 0xfffc0000
  70. /*
  71. * Logical Slot Register definitions
  72. */
  73. #define SLOT_REG(i) (SLOT1 + (4 * i))
  74. #define SLOT_STATE_SHIFT (0)
  75. #define SLOT_STATE_MASK (3 << 0)
  76. #define SLOT_STATE_PWRONLY (1)
  77. #define SLOT_STATE_ENABLED (2)
  78. #define SLOT_STATE_DISABLED (3)
  79. #define PWR_LED_STATE_SHIFT (2)
  80. #define PWR_LED_STATE_MASK (3 << 2)
  81. #define ATN_LED_STATE_SHIFT (4)
  82. #define ATN_LED_STATE_MASK (3 << 4)
  83. #define ATN_LED_STATE_ON (1)
  84. #define ATN_LED_STATE_BLINK (2)
  85. #define ATN_LED_STATE_OFF (3)
  86. #define POWER_FAULT (1 << 6)
  87. #define ATN_BUTTON (1 << 7)
  88. #define MRL_SENSOR (1 << 8)
  89. #define MHZ66_CAP (1 << 9)
  90. #define PRSNT_SHIFT (10)
  91. #define PRSNT_MASK (3 << 10)
  92. #define PCIX_CAP_SHIFT (12)
  93. #define PCIX_CAP_MASK_PI1 (3 << 12)
  94. #define PCIX_CAP_MASK_PI2 (7 << 12)
  95. #define PRSNT_CHANGE_DETECTED (1 << 16)
  96. #define ISO_PFAULT_DETECTED (1 << 17)
  97. #define BUTTON_PRESS_DETECTED (1 << 18)
  98. #define MRL_CHANGE_DETECTED (1 << 19)
  99. #define CON_PFAULT_DETECTED (1 << 20)
  100. #define PRSNT_CHANGE_INTR_MASK (1 << 24)
  101. #define ISO_PFAULT_INTR_MASK (1 << 25)
  102. #define BUTTON_PRESS_INTR_MASK (1 << 26)
  103. #define MRL_CHANGE_INTR_MASK (1 << 27)
  104. #define CON_PFAULT_INTR_MASK (1 << 28)
  105. #define MRL_CHANGE_SERR_MASK (1 << 29)
  106. #define CON_PFAULT_SERR_MASK (1 << 30)
  107. #define SLOT_REG_RSVDZ_MASK (1 << 15) | (7 << 21)
  108. /*
  109. * SHPC Command Code definitnions
  110. *
  111. * Slot Operation 00h - 3Fh
  112. * Set Bus Segment Speed/Mode A 40h - 47h
  113. * Power-Only All Slots 48h
  114. * Enable All Slots 49h
  115. * Set Bus Segment Speed/Mode B (PI=2) 50h - 5Fh
  116. * Reserved Command Codes 60h - BFh
  117. * Vendor Specific Commands C0h - FFh
  118. */
  119. #define SET_SLOT_PWR 0x01 /* Slot Operation */
  120. #define SET_SLOT_ENABLE 0x02
  121. #define SET_SLOT_DISABLE 0x03
  122. #define SET_PWR_ON 0x04
  123. #define SET_PWR_BLINK 0x08
  124. #define SET_PWR_OFF 0x0c
  125. #define SET_ATTN_ON 0x10
  126. #define SET_ATTN_BLINK 0x20
  127. #define SET_ATTN_OFF 0x30
  128. #define SETA_PCI_33MHZ 0x40 /* Set Bus Segment Speed/Mode A */
  129. #define SETA_PCI_66MHZ 0x41
  130. #define SETA_PCIX_66MHZ 0x42
  131. #define SETA_PCIX_100MHZ 0x43
  132. #define SETA_PCIX_133MHZ 0x44
  133. #define SETA_RESERVED1 0x45
  134. #define SETA_RESERVED2 0x46
  135. #define SETA_RESERVED3 0x47
  136. #define SET_PWR_ONLY_ALL 0x48 /* Power-Only All Slots */
  137. #define SET_ENABLE_ALL 0x49 /* Enable All Slots */
  138. #define SETB_PCI_33MHZ 0x50 /* Set Bus Segment Speed/Mode B */
  139. #define SETB_PCI_66MHZ 0x51
  140. #define SETB_PCIX_66MHZ_PM 0x52
  141. #define SETB_PCIX_100MHZ_PM 0x53
  142. #define SETB_PCIX_133MHZ_PM 0x54
  143. #define SETB_PCIX_66MHZ_EM 0x55
  144. #define SETB_PCIX_100MHZ_EM 0x56
  145. #define SETB_PCIX_133MHZ_EM 0x57
  146. #define SETB_PCIX_66MHZ_266 0x58
  147. #define SETB_PCIX_100MHZ_266 0x59
  148. #define SETB_PCIX_133MHZ_266 0x5a
  149. #define SETB_PCIX_66MHZ_533 0x5b
  150. #define SETB_PCIX_100MHZ_533 0x5c
  151. #define SETB_PCIX_133MHZ_533 0x5d
  152. #define SETB_RESERVED1 0x5e
  153. #define SETB_RESERVED2 0x5f
  154. /*
  155. * SHPC controller command error code
  156. */
  157. #define SWITCH_OPEN 0x1
  158. #define INVALID_CMD 0x2
  159. #define INVALID_SPEED_MODE 0x4
  160. /*
  161. * For accessing SHPC Working Register Set via PCI Configuration Space
  162. */
  163. #define DWORD_SELECT 0x2
  164. #define DWORD_DATA 0x4
  165. /* Field Offset in Logical Slot Register - byte boundary */
  166. #define SLOT_EVENT_LATCH 0x2
  167. #define SLOT_SERR_INT_MASK 0x3
  168. static atomic_t shpchp_num_controllers = ATOMIC_INIT(0);
  169. static irqreturn_t shpc_isr(int irq, void *dev_id);
  170. static void start_int_poll_timer(struct controller *ctrl, int sec);
  171. static int hpc_check_cmd_status(struct controller *ctrl);
  172. static inline u8 shpc_readb(struct controller *ctrl, int reg)
  173. {
  174. return readb(ctrl->creg + reg);
  175. }
  176. static inline void shpc_writeb(struct controller *ctrl, int reg, u8 val)
  177. {
  178. writeb(val, ctrl->creg + reg);
  179. }
  180. static inline u16 shpc_readw(struct controller *ctrl, int reg)
  181. {
  182. return readw(ctrl->creg + reg);
  183. }
  184. static inline void shpc_writew(struct controller *ctrl, int reg, u16 val)
  185. {
  186. writew(val, ctrl->creg + reg);
  187. }
  188. static inline u32 shpc_readl(struct controller *ctrl, int reg)
  189. {
  190. return readl(ctrl->creg + reg);
  191. }
  192. static inline void shpc_writel(struct controller *ctrl, int reg, u32 val)
  193. {
  194. writel(val, ctrl->creg + reg);
  195. }
  196. static inline int shpc_indirect_read(struct controller *ctrl, int index,
  197. u32 *value)
  198. {
  199. int rc;
  200. u32 cap_offset = ctrl->cap_offset;
  201. struct pci_dev *pdev = ctrl->pci_dev;
  202. rc = pci_write_config_byte(pdev, cap_offset + DWORD_SELECT, index);
  203. if (rc)
  204. return rc;
  205. return pci_read_config_dword(pdev, cap_offset + DWORD_DATA, value);
  206. }
  207. /*
  208. * This is the interrupt polling timeout function.
  209. */
  210. static void int_poll_timeout(unsigned long data)
  211. {
  212. struct controller *ctrl = (struct controller *)data;
  213. /* Poll for interrupt events. regs == NULL => polling */
  214. shpc_isr(0, ctrl);
  215. init_timer(&ctrl->poll_timer);
  216. if (!shpchp_poll_time)
  217. shpchp_poll_time = 2; /* default polling interval is 2 sec */
  218. start_int_poll_timer(ctrl, shpchp_poll_time);
  219. }
  220. /*
  221. * This function starts the interrupt polling timer.
  222. */
  223. static void start_int_poll_timer(struct controller *ctrl, int sec)
  224. {
  225. /* Clamp to sane value */
  226. if ((sec <= 0) || (sec > 60))
  227. sec = 2;
  228. ctrl->poll_timer.function = &int_poll_timeout;
  229. ctrl->poll_timer.data = (unsigned long)ctrl;
  230. ctrl->poll_timer.expires = jiffies + sec * HZ;
  231. add_timer(&ctrl->poll_timer);
  232. }
  233. static inline int is_ctrl_busy(struct controller *ctrl)
  234. {
  235. u16 cmd_status = shpc_readw(ctrl, CMD_STATUS);
  236. return cmd_status & 0x1;
  237. }
  238. /*
  239. * Returns 1 if SHPC finishes executing a command within 1 sec,
  240. * otherwise returns 0.
  241. */
  242. static inline int shpc_poll_ctrl_busy(struct controller *ctrl)
  243. {
  244. int i;
  245. if (!is_ctrl_busy(ctrl))
  246. return 1;
  247. /* Check every 0.1 sec for a total of 1 sec */
  248. for (i = 0; i < 10; i++) {
  249. msleep(100);
  250. if (!is_ctrl_busy(ctrl))
  251. return 1;
  252. }
  253. return 0;
  254. }
  255. static inline int shpc_wait_cmd(struct controller *ctrl)
  256. {
  257. int retval = 0;
  258. unsigned long timeout = msecs_to_jiffies(1000);
  259. int rc;
  260. if (shpchp_poll_mode)
  261. rc = shpc_poll_ctrl_busy(ctrl);
  262. else
  263. rc = wait_event_interruptible_timeout(ctrl->queue,
  264. !is_ctrl_busy(ctrl), timeout);
  265. if (!rc && is_ctrl_busy(ctrl)) {
  266. retval = -EIO;
  267. ctrl_err(ctrl, "Command not completed in 1000 msec\n");
  268. } else if (rc < 0) {
  269. retval = -EINTR;
  270. ctrl_info(ctrl, "Command was interrupted by a signal\n");
  271. }
  272. return retval;
  273. }
  274. static int shpc_write_cmd(struct slot *slot, u8 t_slot, u8 cmd)
  275. {
  276. struct controller *ctrl = slot->ctrl;
  277. u16 cmd_status;
  278. int retval = 0;
  279. u16 temp_word;
  280. mutex_lock(&slot->ctrl->cmd_lock);
  281. if (!shpc_poll_ctrl_busy(ctrl)) {
  282. /* After 1 sec and and the controller is still busy */
  283. ctrl_err(ctrl, "Controller is still busy after 1 sec\n");
  284. retval = -EBUSY;
  285. goto out;
  286. }
  287. ++t_slot;
  288. temp_word = (t_slot << 8) | (cmd & 0xFF);
  289. ctrl_dbg(ctrl, "%s: t_slot %x cmd %x\n", __func__, t_slot, cmd);
  290. /* To make sure the Controller Busy bit is 0 before we send out the
  291. * command.
  292. */
  293. shpc_writew(ctrl, CMD, temp_word);
  294. /*
  295. * Wait for command completion.
  296. */
  297. retval = shpc_wait_cmd(slot->ctrl);
  298. if (retval)
  299. goto out;
  300. cmd_status = hpc_check_cmd_status(slot->ctrl);
  301. if (cmd_status) {
  302. ctrl_err(ctrl,
  303. "Failed to issued command 0x%x (error code = %d)\n",
  304. cmd, cmd_status);
  305. retval = -EIO;
  306. }
  307. out:
  308. mutex_unlock(&slot->ctrl->cmd_lock);
  309. return retval;
  310. }
  311. static int hpc_check_cmd_status(struct controller *ctrl)
  312. {
  313. int retval = 0;
  314. u16 cmd_status = shpc_readw(ctrl, CMD_STATUS) & 0x000F;
  315. switch (cmd_status >> 1) {
  316. case 0:
  317. retval = 0;
  318. break;
  319. case 1:
  320. retval = SWITCH_OPEN;
  321. ctrl_err(ctrl, "Switch opened!\n");
  322. break;
  323. case 2:
  324. retval = INVALID_CMD;
  325. ctrl_err(ctrl, "Invalid HPC command!\n");
  326. break;
  327. case 4:
  328. retval = INVALID_SPEED_MODE;
  329. ctrl_err(ctrl, "Invalid bus speed/mode!\n");
  330. break;
  331. default:
  332. retval = cmd_status;
  333. }
  334. return retval;
  335. }
  336. static int hpc_get_attention_status(struct slot *slot, u8 *status)
  337. {
  338. struct controller *ctrl = slot->ctrl;
  339. u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
  340. u8 state = (slot_reg & ATN_LED_STATE_MASK) >> ATN_LED_STATE_SHIFT;
  341. switch (state) {
  342. case ATN_LED_STATE_ON:
  343. *status = 1; /* On */
  344. break;
  345. case ATN_LED_STATE_BLINK:
  346. *status = 2; /* Blink */
  347. break;
  348. case ATN_LED_STATE_OFF:
  349. *status = 0; /* Off */
  350. break;
  351. default:
  352. *status = 0xFF; /* Reserved */
  353. break;
  354. }
  355. return 0;
  356. }
  357. static int hpc_get_power_status(struct slot * slot, u8 *status)
  358. {
  359. struct controller *ctrl = slot->ctrl;
  360. u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
  361. u8 state = (slot_reg & SLOT_STATE_MASK) >> SLOT_STATE_SHIFT;
  362. switch (state) {
  363. case SLOT_STATE_PWRONLY:
  364. *status = 2; /* Powered only */
  365. break;
  366. case SLOT_STATE_ENABLED:
  367. *status = 1; /* Enabled */
  368. break;
  369. case SLOT_STATE_DISABLED:
  370. *status = 0; /* Disabled */
  371. break;
  372. default:
  373. *status = 0xFF; /* Reserved */
  374. break;
  375. }
  376. return 0;
  377. }
  378. static int hpc_get_latch_status(struct slot *slot, u8 *status)
  379. {
  380. struct controller *ctrl = slot->ctrl;
  381. u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
  382. *status = !!(slot_reg & MRL_SENSOR); /* 0 -> close; 1 -> open */
  383. return 0;
  384. }
  385. static int hpc_get_adapter_status(struct slot *slot, u8 *status)
  386. {
  387. struct controller *ctrl = slot->ctrl;
  388. u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
  389. u8 state = (slot_reg & PRSNT_MASK) >> PRSNT_SHIFT;
  390. *status = (state != 0x3) ? 1 : 0;
  391. return 0;
  392. }
  393. static int hpc_get_prog_int(struct slot *slot, u8 *prog_int)
  394. {
  395. struct controller *ctrl = slot->ctrl;
  396. *prog_int = shpc_readb(ctrl, PROG_INTERFACE);
  397. return 0;
  398. }
  399. static int hpc_get_adapter_speed(struct slot *slot, enum pci_bus_speed *value)
  400. {
  401. int retval = 0;
  402. struct controller *ctrl = slot->ctrl;
  403. u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
  404. u8 m66_cap = !!(slot_reg & MHZ66_CAP);
  405. u8 pi, pcix_cap;
  406. if ((retval = hpc_get_prog_int(slot, &pi)))
  407. return retval;
  408. switch (pi) {
  409. case 1:
  410. pcix_cap = (slot_reg & PCIX_CAP_MASK_PI1) >> PCIX_CAP_SHIFT;
  411. break;
  412. case 2:
  413. pcix_cap = (slot_reg & PCIX_CAP_MASK_PI2) >> PCIX_CAP_SHIFT;
  414. break;
  415. default:
  416. return -ENODEV;
  417. }
  418. ctrl_dbg(ctrl, "%s: slot_reg = %x, pcix_cap = %x, m66_cap = %x\n",
  419. __func__, slot_reg, pcix_cap, m66_cap);
  420. switch (pcix_cap) {
  421. case 0x0:
  422. *value = m66_cap ? PCI_SPEED_66MHz : PCI_SPEED_33MHz;
  423. break;
  424. case 0x1:
  425. *value = PCI_SPEED_66MHz_PCIX;
  426. break;
  427. case 0x3:
  428. *value = PCI_SPEED_133MHz_PCIX;
  429. break;
  430. case 0x4:
  431. *value = PCI_SPEED_133MHz_PCIX_266;
  432. break;
  433. case 0x5:
  434. *value = PCI_SPEED_133MHz_PCIX_533;
  435. break;
  436. case 0x2:
  437. default:
  438. *value = PCI_SPEED_UNKNOWN;
  439. retval = -ENODEV;
  440. break;
  441. }
  442. ctrl_dbg(ctrl, "Adapter speed = %d\n", *value);
  443. return retval;
  444. }
  445. static int hpc_get_mode1_ECC_cap(struct slot *slot, u8 *mode)
  446. {
  447. int retval = 0;
  448. struct controller *ctrl = slot->ctrl;
  449. u16 sec_bus_status = shpc_readw(ctrl, SEC_BUS_CONFIG);
  450. u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
  451. if (pi == 2) {
  452. *mode = (sec_bus_status & 0x0100) >> 8;
  453. } else {
  454. retval = -1;
  455. }
  456. ctrl_dbg(ctrl, "Mode 1 ECC cap = %d\n", *mode);
  457. return retval;
  458. }
  459. static int hpc_query_power_fault(struct slot * slot)
  460. {
  461. struct controller *ctrl = slot->ctrl;
  462. u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
  463. /* Note: Logic 0 => fault */
  464. return !(slot_reg & POWER_FAULT);
  465. }
  466. static int hpc_set_attention_status(struct slot *slot, u8 value)
  467. {
  468. u8 slot_cmd = 0;
  469. switch (value) {
  470. case 0 :
  471. slot_cmd = SET_ATTN_OFF; /* OFF */
  472. break;
  473. case 1:
  474. slot_cmd = SET_ATTN_ON; /* ON */
  475. break;
  476. case 2:
  477. slot_cmd = SET_ATTN_BLINK; /* BLINK */
  478. break;
  479. default:
  480. return -1;
  481. }
  482. return shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
  483. }
  484. static void hpc_set_green_led_on(struct slot *slot)
  485. {
  486. shpc_write_cmd(slot, slot->hp_slot, SET_PWR_ON);
  487. }
  488. static void hpc_set_green_led_off(struct slot *slot)
  489. {
  490. shpc_write_cmd(slot, slot->hp_slot, SET_PWR_OFF);
  491. }
  492. static void hpc_set_green_led_blink(struct slot *slot)
  493. {
  494. shpc_write_cmd(slot, slot->hp_slot, SET_PWR_BLINK);
  495. }
  496. static void hpc_release_ctlr(struct controller *ctrl)
  497. {
  498. int i;
  499. u32 slot_reg, serr_int;
  500. /*
  501. * Mask event interrupts and SERRs of all slots
  502. */
  503. for (i = 0; i < ctrl->num_slots; i++) {
  504. slot_reg = shpc_readl(ctrl, SLOT_REG(i));
  505. slot_reg |= (PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
  506. BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
  507. CON_PFAULT_INTR_MASK | MRL_CHANGE_SERR_MASK |
  508. CON_PFAULT_SERR_MASK);
  509. slot_reg &= ~SLOT_REG_RSVDZ_MASK;
  510. shpc_writel(ctrl, SLOT_REG(i), slot_reg);
  511. }
  512. cleanup_slots(ctrl);
  513. /*
  514. * Mask SERR and System Interrupt generation
  515. */
  516. serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
  517. serr_int |= (GLOBAL_INTR_MASK | GLOBAL_SERR_MASK |
  518. COMMAND_INTR_MASK | ARBITER_SERR_MASK);
  519. serr_int &= ~SERR_INTR_RSVDZ_MASK;
  520. shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
  521. if (shpchp_poll_mode)
  522. del_timer(&ctrl->poll_timer);
  523. else {
  524. free_irq(ctrl->pci_dev->irq, ctrl);
  525. pci_disable_msi(ctrl->pci_dev);
  526. }
  527. iounmap(ctrl->creg);
  528. release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
  529. /*
  530. * If this is the last controller to be released, destroy the
  531. * shpchpd work queue
  532. */
  533. if (atomic_dec_and_test(&shpchp_num_controllers))
  534. destroy_workqueue(shpchp_wq);
  535. }
  536. static int hpc_power_on_slot(struct slot * slot)
  537. {
  538. int retval;
  539. retval = shpc_write_cmd(slot, slot->hp_slot, SET_SLOT_PWR);
  540. if (retval)
  541. ctrl_err(slot->ctrl, "%s: Write command failed!\n", __func__);
  542. return retval;
  543. }
  544. static int hpc_slot_enable(struct slot * slot)
  545. {
  546. int retval;
  547. /* Slot - Enable, Power Indicator - Blink, Attention Indicator - Off */
  548. retval = shpc_write_cmd(slot, slot->hp_slot,
  549. SET_SLOT_ENABLE | SET_PWR_BLINK | SET_ATTN_OFF);
  550. if (retval)
  551. ctrl_err(slot->ctrl, "%s: Write command failed!\n", __func__);
  552. return retval;
  553. }
  554. static int hpc_slot_disable(struct slot * slot)
  555. {
  556. int retval;
  557. /* Slot - Disable, Power Indicator - Off, Attention Indicator - On */
  558. retval = shpc_write_cmd(slot, slot->hp_slot,
  559. SET_SLOT_DISABLE | SET_PWR_OFF | SET_ATTN_ON);
  560. if (retval)
  561. ctrl_err(slot->ctrl, "%s: Write command failed!\n", __func__);
  562. return retval;
  563. }
  564. static int shpc_get_cur_bus_speed(struct controller *ctrl)
  565. {
  566. int retval = 0;
  567. struct pci_bus *bus = ctrl->pci_dev->subordinate;
  568. enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
  569. u16 sec_bus_reg = shpc_readw(ctrl, SEC_BUS_CONFIG);
  570. u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
  571. u8 speed_mode = (pi == 2) ? (sec_bus_reg & 0xF) : (sec_bus_reg & 0x7);
  572. if ((pi == 1) && (speed_mode > 4)) {
  573. retval = -ENODEV;
  574. goto out;
  575. }
  576. switch (speed_mode) {
  577. case 0x0:
  578. bus_speed = PCI_SPEED_33MHz;
  579. break;
  580. case 0x1:
  581. bus_speed = PCI_SPEED_66MHz;
  582. break;
  583. case 0x2:
  584. bus_speed = PCI_SPEED_66MHz_PCIX;
  585. break;
  586. case 0x3:
  587. bus_speed = PCI_SPEED_100MHz_PCIX;
  588. break;
  589. case 0x4:
  590. bus_speed = PCI_SPEED_133MHz_PCIX;
  591. break;
  592. case 0x5:
  593. bus_speed = PCI_SPEED_66MHz_PCIX_ECC;
  594. break;
  595. case 0x6:
  596. bus_speed = PCI_SPEED_100MHz_PCIX_ECC;
  597. break;
  598. case 0x7:
  599. bus_speed = PCI_SPEED_133MHz_PCIX_ECC;
  600. break;
  601. case 0x8:
  602. bus_speed = PCI_SPEED_66MHz_PCIX_266;
  603. break;
  604. case 0x9:
  605. bus_speed = PCI_SPEED_100MHz_PCIX_266;
  606. break;
  607. case 0xa:
  608. bus_speed = PCI_SPEED_133MHz_PCIX_266;
  609. break;
  610. case 0xb:
  611. bus_speed = PCI_SPEED_66MHz_PCIX_533;
  612. break;
  613. case 0xc:
  614. bus_speed = PCI_SPEED_100MHz_PCIX_533;
  615. break;
  616. case 0xd:
  617. bus_speed = PCI_SPEED_133MHz_PCIX_533;
  618. break;
  619. default:
  620. retval = -ENODEV;
  621. break;
  622. }
  623. out:
  624. bus->cur_bus_speed = bus_speed;
  625. dbg("Current bus speed = %d\n", bus_speed);
  626. return retval;
  627. }
  628. static int hpc_set_bus_speed_mode(struct slot * slot, enum pci_bus_speed value)
  629. {
  630. int retval;
  631. struct controller *ctrl = slot->ctrl;
  632. u8 pi, cmd;
  633. pi = shpc_readb(ctrl, PROG_INTERFACE);
  634. if ((pi == 1) && (value > PCI_SPEED_133MHz_PCIX))
  635. return -EINVAL;
  636. switch (value) {
  637. case PCI_SPEED_33MHz:
  638. cmd = SETA_PCI_33MHZ;
  639. break;
  640. case PCI_SPEED_66MHz:
  641. cmd = SETA_PCI_66MHZ;
  642. break;
  643. case PCI_SPEED_66MHz_PCIX:
  644. cmd = SETA_PCIX_66MHZ;
  645. break;
  646. case PCI_SPEED_100MHz_PCIX:
  647. cmd = SETA_PCIX_100MHZ;
  648. break;
  649. case PCI_SPEED_133MHz_PCIX:
  650. cmd = SETA_PCIX_133MHZ;
  651. break;
  652. case PCI_SPEED_66MHz_PCIX_ECC:
  653. cmd = SETB_PCIX_66MHZ_EM;
  654. break;
  655. case PCI_SPEED_100MHz_PCIX_ECC:
  656. cmd = SETB_PCIX_100MHZ_EM;
  657. break;
  658. case PCI_SPEED_133MHz_PCIX_ECC:
  659. cmd = SETB_PCIX_133MHZ_EM;
  660. break;
  661. case PCI_SPEED_66MHz_PCIX_266:
  662. cmd = SETB_PCIX_66MHZ_266;
  663. break;
  664. case PCI_SPEED_100MHz_PCIX_266:
  665. cmd = SETB_PCIX_100MHZ_266;
  666. break;
  667. case PCI_SPEED_133MHz_PCIX_266:
  668. cmd = SETB_PCIX_133MHZ_266;
  669. break;
  670. case PCI_SPEED_66MHz_PCIX_533:
  671. cmd = SETB_PCIX_66MHZ_533;
  672. break;
  673. case PCI_SPEED_100MHz_PCIX_533:
  674. cmd = SETB_PCIX_100MHZ_533;
  675. break;
  676. case PCI_SPEED_133MHz_PCIX_533:
  677. cmd = SETB_PCIX_133MHZ_533;
  678. break;
  679. default:
  680. return -EINVAL;
  681. }
  682. retval = shpc_write_cmd(slot, 0, cmd);
  683. if (retval)
  684. ctrl_err(ctrl, "%s: Write command failed!\n", __func__);
  685. else
  686. shpc_get_cur_bus_speed(ctrl);
  687. return retval;
  688. }
  689. static irqreturn_t shpc_isr(int irq, void *dev_id)
  690. {
  691. struct controller *ctrl = (struct controller *)dev_id;
  692. u32 serr_int, slot_reg, intr_loc, intr_loc2;
  693. int hp_slot;
  694. /* Check to see if it was our interrupt */
  695. intr_loc = shpc_readl(ctrl, INTR_LOC);
  696. if (!intr_loc)
  697. return IRQ_NONE;
  698. ctrl_dbg(ctrl, "%s: intr_loc = %x\n", __func__, intr_loc);
  699. if(!shpchp_poll_mode) {
  700. /*
  701. * Mask Global Interrupt Mask - see implementation
  702. * note on p. 139 of SHPC spec rev 1.0
  703. */
  704. serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
  705. serr_int |= GLOBAL_INTR_MASK;
  706. serr_int &= ~SERR_INTR_RSVDZ_MASK;
  707. shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
  708. intr_loc2 = shpc_readl(ctrl, INTR_LOC);
  709. ctrl_dbg(ctrl, "%s: intr_loc2 = %x\n", __func__, intr_loc2);
  710. }
  711. if (intr_loc & CMD_INTR_PENDING) {
  712. /*
  713. * Command Complete Interrupt Pending
  714. * RO only - clear by writing 1 to the Command Completion
  715. * Detect bit in Controller SERR-INT register
  716. */
  717. serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
  718. serr_int &= ~SERR_INTR_RSVDZ_MASK;
  719. shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
  720. wake_up_interruptible(&ctrl->queue);
  721. }
  722. if (!(intr_loc & ~CMD_INTR_PENDING))
  723. goto out;
  724. for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
  725. /* To find out which slot has interrupt pending */
  726. if (!(intr_loc & SLOT_INTR_PENDING(hp_slot)))
  727. continue;
  728. slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
  729. ctrl_dbg(ctrl, "Slot %x with intr, slot register = %x\n",
  730. hp_slot, slot_reg);
  731. if (slot_reg & MRL_CHANGE_DETECTED)
  732. shpchp_handle_switch_change(hp_slot, ctrl);
  733. if (slot_reg & BUTTON_PRESS_DETECTED)
  734. shpchp_handle_attention_button(hp_slot, ctrl);
  735. if (slot_reg & PRSNT_CHANGE_DETECTED)
  736. shpchp_handle_presence_change(hp_slot, ctrl);
  737. if (slot_reg & (ISO_PFAULT_DETECTED | CON_PFAULT_DETECTED))
  738. shpchp_handle_power_fault(hp_slot, ctrl);
  739. /* Clear all slot events */
  740. slot_reg &= ~SLOT_REG_RSVDZ_MASK;
  741. shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
  742. }
  743. out:
  744. if (!shpchp_poll_mode) {
  745. /* Unmask Global Interrupt Mask */
  746. serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
  747. serr_int &= ~(GLOBAL_INTR_MASK | SERR_INTR_RSVDZ_MASK);
  748. shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
  749. }
  750. return IRQ_HANDLED;
  751. }
  752. static int shpc_get_max_bus_speed(struct controller *ctrl)
  753. {
  754. int retval = 0;
  755. struct pci_bus *bus = ctrl->pci_dev->subordinate;
  756. enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
  757. u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
  758. u32 slot_avail1 = shpc_readl(ctrl, SLOT_AVAIL1);
  759. u32 slot_avail2 = shpc_readl(ctrl, SLOT_AVAIL2);
  760. if (pi == 2) {
  761. if (slot_avail2 & SLOT_133MHZ_PCIX_533)
  762. bus_speed = PCI_SPEED_133MHz_PCIX_533;
  763. else if (slot_avail2 & SLOT_100MHZ_PCIX_533)
  764. bus_speed = PCI_SPEED_100MHz_PCIX_533;
  765. else if (slot_avail2 & SLOT_66MHZ_PCIX_533)
  766. bus_speed = PCI_SPEED_66MHz_PCIX_533;
  767. else if (slot_avail2 & SLOT_133MHZ_PCIX_266)
  768. bus_speed = PCI_SPEED_133MHz_PCIX_266;
  769. else if (slot_avail2 & SLOT_100MHZ_PCIX_266)
  770. bus_speed = PCI_SPEED_100MHz_PCIX_266;
  771. else if (slot_avail2 & SLOT_66MHZ_PCIX_266)
  772. bus_speed = PCI_SPEED_66MHz_PCIX_266;
  773. }
  774. if (bus_speed == PCI_SPEED_UNKNOWN) {
  775. if (slot_avail1 & SLOT_133MHZ_PCIX)
  776. bus_speed = PCI_SPEED_133MHz_PCIX;
  777. else if (slot_avail1 & SLOT_100MHZ_PCIX)
  778. bus_speed = PCI_SPEED_100MHz_PCIX;
  779. else if (slot_avail1 & SLOT_66MHZ_PCIX)
  780. bus_speed = PCI_SPEED_66MHz_PCIX;
  781. else if (slot_avail2 & SLOT_66MHZ)
  782. bus_speed = PCI_SPEED_66MHz;
  783. else if (slot_avail1 & SLOT_33MHZ)
  784. bus_speed = PCI_SPEED_33MHz;
  785. else
  786. retval = -ENODEV;
  787. }
  788. bus->max_bus_speed = bus_speed;
  789. ctrl_dbg(ctrl, "Max bus speed = %d\n", bus_speed);
  790. return retval;
  791. }
  792. static struct hpc_ops shpchp_hpc_ops = {
  793. .power_on_slot = hpc_power_on_slot,
  794. .slot_enable = hpc_slot_enable,
  795. .slot_disable = hpc_slot_disable,
  796. .set_bus_speed_mode = hpc_set_bus_speed_mode,
  797. .set_attention_status = hpc_set_attention_status,
  798. .get_power_status = hpc_get_power_status,
  799. .get_attention_status = hpc_get_attention_status,
  800. .get_latch_status = hpc_get_latch_status,
  801. .get_adapter_status = hpc_get_adapter_status,
  802. .get_adapter_speed = hpc_get_adapter_speed,
  803. .get_mode1_ECC_cap = hpc_get_mode1_ECC_cap,
  804. .get_prog_int = hpc_get_prog_int,
  805. .query_power_fault = hpc_query_power_fault,
  806. .green_led_on = hpc_set_green_led_on,
  807. .green_led_off = hpc_set_green_led_off,
  808. .green_led_blink = hpc_set_green_led_blink,
  809. .release_ctlr = hpc_release_ctlr,
  810. };
  811. int shpc_init(struct controller *ctrl, struct pci_dev *pdev)
  812. {
  813. int rc = -1, num_slots = 0;
  814. u8 hp_slot;
  815. u32 shpc_base_offset;
  816. u32 tempdword, slot_reg, slot_config;
  817. u8 i;
  818. ctrl->pci_dev = pdev; /* pci_dev of the P2P bridge */
  819. ctrl_dbg(ctrl, "Hotplug Controller:\n");
  820. if ((pdev->vendor == PCI_VENDOR_ID_AMD) || (pdev->device ==
  821. PCI_DEVICE_ID_AMD_GOLAM_7450)) {
  822. /* amd shpc driver doesn't use Base Offset; assume 0 */
  823. ctrl->mmio_base = pci_resource_start(pdev, 0);
  824. ctrl->mmio_size = pci_resource_len(pdev, 0);
  825. } else {
  826. ctrl->cap_offset = pci_find_capability(pdev, PCI_CAP_ID_SHPC);
  827. if (!ctrl->cap_offset) {
  828. ctrl_err(ctrl, "Cannot find PCI capability\n");
  829. goto abort;
  830. }
  831. ctrl_dbg(ctrl, " cap_offset = %x\n", ctrl->cap_offset);
  832. rc = shpc_indirect_read(ctrl, 0, &shpc_base_offset);
  833. if (rc) {
  834. ctrl_err(ctrl, "Cannot read base_offset\n");
  835. goto abort;
  836. }
  837. rc = shpc_indirect_read(ctrl, 3, &tempdword);
  838. if (rc) {
  839. ctrl_err(ctrl, "Cannot read slot config\n");
  840. goto abort;
  841. }
  842. num_slots = tempdword & SLOT_NUM;
  843. ctrl_dbg(ctrl, " num_slots (indirect) %x\n", num_slots);
  844. for (i = 0; i < 9 + num_slots; i++) {
  845. rc = shpc_indirect_read(ctrl, i, &tempdword);
  846. if (rc) {
  847. ctrl_err(ctrl,
  848. "Cannot read creg (index = %d)\n", i);
  849. goto abort;
  850. }
  851. ctrl_dbg(ctrl, " offset %d: value %x\n", i, tempdword);
  852. }
  853. ctrl->mmio_base =
  854. pci_resource_start(pdev, 0) + shpc_base_offset;
  855. ctrl->mmio_size = 0x24 + 0x4 * num_slots;
  856. }
  857. ctrl_info(ctrl, "HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
  858. pdev->vendor, pdev->device, pdev->subsystem_vendor,
  859. pdev->subsystem_device);
  860. rc = pci_enable_device(pdev);
  861. if (rc) {
  862. ctrl_err(ctrl, "pci_enable_device failed\n");
  863. goto abort;
  864. }
  865. if (!request_mem_region(ctrl->mmio_base, ctrl->mmio_size, MY_NAME)) {
  866. ctrl_err(ctrl, "Cannot reserve MMIO region\n");
  867. rc = -1;
  868. goto abort;
  869. }
  870. ctrl->creg = ioremap(ctrl->mmio_base, ctrl->mmio_size);
  871. if (!ctrl->creg) {
  872. ctrl_err(ctrl, "Cannot remap MMIO region %lx @ %lx\n",
  873. ctrl->mmio_size, ctrl->mmio_base);
  874. release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
  875. rc = -1;
  876. goto abort;
  877. }
  878. ctrl_dbg(ctrl, "ctrl->creg %p\n", ctrl->creg);
  879. mutex_init(&ctrl->crit_sect);
  880. mutex_init(&ctrl->cmd_lock);
  881. /* Setup wait queue */
  882. init_waitqueue_head(&ctrl->queue);
  883. ctrl->hpc_ops = &shpchp_hpc_ops;
  884. /* Return PCI Controller Info */
  885. slot_config = shpc_readl(ctrl, SLOT_CONFIG);
  886. ctrl->slot_device_offset = (slot_config & FIRST_DEV_NUM) >> 8;
  887. ctrl->num_slots = slot_config & SLOT_NUM;
  888. ctrl->first_slot = (slot_config & PSN) >> 16;
  889. ctrl->slot_num_inc = ((slot_config & UPDOWN) >> 29) ? 1 : -1;
  890. /* Mask Global Interrupt Mask & Command Complete Interrupt Mask */
  891. tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
  892. ctrl_dbg(ctrl, "SERR_INTR_ENABLE = %x\n", tempdword);
  893. tempdword |= (GLOBAL_INTR_MASK | GLOBAL_SERR_MASK |
  894. COMMAND_INTR_MASK | ARBITER_SERR_MASK);
  895. tempdword &= ~SERR_INTR_RSVDZ_MASK;
  896. shpc_writel(ctrl, SERR_INTR_ENABLE, tempdword);
  897. tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
  898. ctrl_dbg(ctrl, "SERR_INTR_ENABLE = %x\n", tempdword);
  899. /* Mask the MRL sensor SERR Mask of individual slot in
  900. * Slot SERR-INT Mask & clear all the existing event if any
  901. */
  902. for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
  903. slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
  904. ctrl_dbg(ctrl, "Default Logical Slot Register %d value %x\n",
  905. hp_slot, slot_reg);
  906. slot_reg |= (PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
  907. BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
  908. CON_PFAULT_INTR_MASK | MRL_CHANGE_SERR_MASK |
  909. CON_PFAULT_SERR_MASK);
  910. slot_reg &= ~SLOT_REG_RSVDZ_MASK;
  911. shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
  912. }
  913. if (shpchp_poll_mode) {
  914. /* Install interrupt polling timer. Start with 10 sec delay */
  915. init_timer(&ctrl->poll_timer);
  916. start_int_poll_timer(ctrl, 10);
  917. } else {
  918. /* Installs the interrupt handler */
  919. rc = pci_enable_msi(pdev);
  920. if (rc) {
  921. ctrl_info(ctrl,
  922. "Can't get msi for the hotplug controller\n");
  923. ctrl_info(ctrl,
  924. "Use INTx for the hotplug controller\n");
  925. }
  926. rc = request_irq(ctrl->pci_dev->irq, shpc_isr, IRQF_SHARED,
  927. MY_NAME, (void *)ctrl);
  928. ctrl_dbg(ctrl, "request_irq %d for hpc%d (returns %d)\n",
  929. ctrl->pci_dev->irq,
  930. atomic_read(&shpchp_num_controllers), rc);
  931. if (rc) {
  932. ctrl_err(ctrl, "Can't get irq %d for the hotplug "
  933. "controller\n", ctrl->pci_dev->irq);
  934. goto abort_iounmap;
  935. }
  936. }
  937. ctrl_dbg(ctrl, "HPC at %s irq=%x\n", pci_name(pdev), pdev->irq);
  938. shpc_get_max_bus_speed(ctrl);
  939. shpc_get_cur_bus_speed(ctrl);
  940. /*
  941. * If this is the first controller to be initialized,
  942. * initialize the shpchpd work queue
  943. */
  944. if (atomic_add_return(1, &shpchp_num_controllers) == 1) {
  945. shpchp_wq = create_singlethread_workqueue("shpchpd");
  946. if (!shpchp_wq) {
  947. rc = -ENOMEM;
  948. goto abort_iounmap;
  949. }
  950. }
  951. /*
  952. * Unmask all event interrupts of all slots
  953. */
  954. for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
  955. slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
  956. ctrl_dbg(ctrl, "Default Logical Slot Register %d value %x\n",
  957. hp_slot, slot_reg);
  958. slot_reg &= ~(PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
  959. BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
  960. CON_PFAULT_INTR_MASK | SLOT_REG_RSVDZ_MASK);
  961. shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
  962. }
  963. if (!shpchp_poll_mode) {
  964. /* Unmask all general input interrupts and SERR */
  965. tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
  966. tempdword &= ~(GLOBAL_INTR_MASK | COMMAND_INTR_MASK |
  967. SERR_INTR_RSVDZ_MASK);
  968. shpc_writel(ctrl, SERR_INTR_ENABLE, tempdword);
  969. tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
  970. ctrl_dbg(ctrl, "SERR_INTR_ENABLE = %x\n", tempdword);
  971. }
  972. return 0;
  973. /* We end up here for the many possible ways to fail this API. */
  974. abort_iounmap:
  975. iounmap(ctrl->creg);
  976. abort:
  977. return rc;
  978. }