blob: e0f8c1bbaf129930077d70cb1f72aa836f41d9a9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Kristen Accardi8cf4c192005-08-16 15:16:10 -070026 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
28 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/pci.h>
Andrew Mortond4d28dd2005-11-13 16:06:40 -080034#include <linux/interrupt.h>
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "shpchp.h"
37
38#ifdef DEBUG
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
47
48#define DEFINE_DBG_BUFFER char __dbg_str_buf[256];
49
50#define DBG_PRINT( dbg_flags, args... ) \
51 do { \
52 if ( DEBUG_LEVEL & ( dbg_flags ) ) \
53 { \
54 int len; \
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 ); \
59 } \
60 } while (0)
61
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]");
64#else
65#define DEFINE_DBG_BUFFER
66#define DBG_ENTER_ROUTINE
67#define DBG_LEAVE_ROUTINE
68#endif /* DEBUG */
69
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
75
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
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* 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
92
Kenji Kaneshige2b34da72006-05-02 11:09:42 +090093/*
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +090094 * Interrupt Locator Register definitions
95 */
96#define CMD_INTR_PENDING (1 << 0)
97#define SLOT_INTR_PENDING(i) (1 << (i + 1))
98
99/*
Kenji Kaneshigee7138722006-05-02 11:12:37 +0900100 * Controller SERR-INT Register
101 */
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
109
110/*
Kenji Kaneshige2b34da72006-05-02 11:09:42 +0900111 * Logical Slot Register definitions
112 */
113#define SLOT_REG(i) (SLOT1 + (4 * i))
114
Kenji Kaneshige58587592006-05-02 11:10:37 +0900115#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150/* SHPC 'write' operations/commands */
151
152/* Slot operation - 0x00h to 0x3Fh */
153
154#define NO_CHANGE 0x00
155
156/* Slot state - Bits 0 & 1 of controller command register */
157#define SET_SLOT_PWR 0x01
158#define SET_SLOT_ENABLE 0x02
159#define SET_SLOT_DISABLE 0x03
160
161/* Power indicator state - Bits 2 & 3 of controller command register*/
162#define SET_PWR_ON 0x04
163#define SET_PWR_BLINK 0x08
164#define SET_PWR_OFF 0x0C
165
166/* Attention indicator state - Bits 4 & 5 of controller command register*/
167#define SET_ATTN_ON 0x010
168#define SET_ATTN_BLINK 0x020
169#define SET_ATTN_OFF 0x030
170
171/* Set bus speed/mode A - 0x40h to 0x47h */
172#define SETA_PCI_33MHZ 0x40
173#define SETA_PCI_66MHZ 0x41
174#define SETA_PCIX_66MHZ 0x42
175#define SETA_PCIX_100MHZ 0x43
176#define SETA_PCIX_133MHZ 0x44
177#define RESERV_1 0x45
178#define RESERV_2 0x46
179#define RESERV_3 0x47
180
181/* Set bus speed/mode B - 0x50h to 0x5fh */
182#define SETB_PCI_33MHZ 0x50
183#define SETB_PCI_66MHZ 0x51
184#define SETB_PCIX_66MHZ_PM 0x52
185#define SETB_PCIX_100MHZ_PM 0x53
186#define SETB_PCIX_133MHZ_PM 0x54
187#define SETB_PCIX_66MHZ_EM 0x55
188#define SETB_PCIX_100MHZ_EM 0x56
189#define SETB_PCIX_133MHZ_EM 0x57
190#define SETB_PCIX_66MHZ_266 0x58
191#define SETB_PCIX_100MHZ_266 0x59
192#define SETB_PCIX_133MHZ_266 0x5a
193#define SETB_PCIX_66MHZ_533 0x5b
194#define SETB_PCIX_100MHZ_533 0x5c
195#define SETB_PCIX_133MHZ_533 0x5d
196
197
198/* Power-on all slots - 0x48h */
199#define SET_PWR_ON_ALL 0x48
200
201/* Enable all slots - 0x49h */
202#define SET_ENABLE_ALL 0x49
203
204/* SHPC controller command error code */
205#define SWITCH_OPEN 0x1
206#define INVALID_CMD 0x2
207#define INVALID_SPEED_MODE 0x4
208
209/* For accessing SHPC Working Register Set */
210#define DWORD_SELECT 0x2
211#define DWORD_DATA 0x4
212#define BASE_OFFSET 0x0
213
214/* Field Offset in Logical Slot Register - byte boundary */
215#define SLOT_EVENT_LATCH 0x2
216#define SLOT_SERR_INT_MASK 0x3
217
218static spinlock_t hpc_event_lock;
219
220DEFINE_DBG_BUFFER /* Debug string buffer for entire HPC defined here */
221static struct php_ctlr_state_s *php_ctlr_list_head; /* HPC state linked list */
222static int ctlr_seq_num = 0; /* Controller sequenc # */
223static spinlock_t list_lock;
224
Kenji Kaneshige82d5f4a2006-05-03 23:42:04 +0900225static atomic_t shpchp_num_controllers = ATOMIC_INIT(0);
226
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900227static irqreturn_t shpc_isr(int irq, void *dev_id, struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229static void start_int_poll_timer(struct php_ctlr_state_s *php_ctlr, int seconds);
Kenji Kaneshiged29aadd2006-01-26 09:59:24 +0900230static int hpc_check_cmd_status(struct controller *ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900232static inline u8 shpc_readb(struct controller *ctrl, int reg)
233{
234 return readb(ctrl->hpc_ctlr_handle->creg + reg);
235}
236
237static inline void shpc_writeb(struct controller *ctrl, int reg, u8 val)
238{
239 writeb(val, ctrl->hpc_ctlr_handle->creg + reg);
240}
241
242static inline u16 shpc_readw(struct controller *ctrl, int reg)
243{
244 return readw(ctrl->hpc_ctlr_handle->creg + reg);
245}
246
247static inline void shpc_writew(struct controller *ctrl, int reg, u16 val)
248{
249 writew(val, ctrl->hpc_ctlr_handle->creg + reg);
250}
251
252static inline u32 shpc_readl(struct controller *ctrl, int reg)
253{
254 return readl(ctrl->hpc_ctlr_handle->creg + reg);
255}
256
257static inline void shpc_writel(struct controller *ctrl, int reg, u32 val)
258{
259 writel(val, ctrl->hpc_ctlr_handle->creg + reg);
260}
261
262static inline int shpc_indirect_read(struct controller *ctrl, int index,
263 u32 *value)
264{
265 int rc;
266 u32 cap_offset = ctrl->cap_offset;
267 struct pci_dev *pdev = ctrl->pci_dev;
268
269 rc = pci_write_config_byte(pdev, cap_offset + DWORD_SELECT, index);
270 if (rc)
271 return rc;
272 return pci_read_config_dword(pdev, cap_offset + DWORD_DATA, value);
273}
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275/* This is the interrupt polling timeout function. */
276static void int_poll_timeout(unsigned long lphp_ctlr)
277{
278 struct php_ctlr_state_s *php_ctlr = (struct php_ctlr_state_s *)lphp_ctlr;
279
280 DBG_ENTER_ROUTINE
281
282 if ( !php_ctlr ) {
283 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
284 return;
285 }
286
287 /* Poll for interrupt events. regs == NULL => polling */
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900288 shpc_isr(0, php_ctlr->callback_instance_id, NULL );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 init_timer(&php_ctlr->int_poll_timer);
291 if (!shpchp_poll_time)
292 shpchp_poll_time = 2; /* reset timer to poll in 2 secs if user doesn't specify at module installation*/
293
294 start_int_poll_timer(php_ctlr, shpchp_poll_time);
295
296 return;
297}
298
299/* This function starts the interrupt polling timer. */
300static void start_int_poll_timer(struct php_ctlr_state_s *php_ctlr, int seconds)
301{
302 if (!php_ctlr) {
303 err("%s: Invalid HPC controller handle!\n", __FUNCTION__);
304 return;
305 }
306
307 if ( ( seconds <= 0 ) || ( seconds > 60 ) )
308 seconds = 2; /* Clamp to sane value */
309
310 php_ctlr->int_poll_timer.function = &int_poll_timeout;
311 php_ctlr->int_poll_timer.data = (unsigned long)php_ctlr; /* Instance data */
312 php_ctlr->int_poll_timer.expires = jiffies + seconds * HZ;
313 add_timer(&php_ctlr->int_poll_timer);
314
315 return;
316}
317
Kenji Kaneshigebd62e272005-11-25 12:28:53 +0900318static inline int shpc_wait_cmd(struct controller *ctrl)
319{
320 int retval = 0;
321 unsigned int timeout_msec = shpchp_poll_mode ? 2000 : 1000;
322 unsigned long timeout = msecs_to_jiffies(timeout_msec);
323 int rc = wait_event_interruptible_timeout(ctrl->queue,
324 !ctrl->cmd_busy, timeout);
325 if (!rc) {
326 retval = -EIO;
327 err("Command not completed in %d msec\n", timeout_msec);
328 } else if (rc < 0) {
329 retval = -EINTR;
330 info("Command was interrupted by a signal\n");
331 }
332 ctrl->cmd_busy = 0;
333
334 return retval;
335}
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337static int shpc_write_cmd(struct slot *slot, u8 t_slot, u8 cmd)
338{
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900339 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 u16 cmd_status;
341 int retval = 0;
342 u16 temp_word;
343 int i;
344
345 DBG_ENTER_ROUTINE
Kenji Kaneshiged29aadd2006-01-26 09:59:24 +0900346
347 mutex_lock(&slot->ctrl->cmd_lock);
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 for (i = 0; i < 10; i++) {
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900350 cmd_status = shpc_readw(ctrl, CMD_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 if (!(cmd_status & 0x1))
353 break;
354 /* Check every 0.1 sec for a total of 1 sec*/
355 msleep(100);
356 }
357
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900358 cmd_status = shpc_readw(ctrl, CMD_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 if (cmd_status & 0x1) {
361 /* After 1 sec and and the controller is still busy */
362 err("%s : Controller is still busy after 1 sec.\n", __FUNCTION__);
Kenji Kaneshiged29aadd2006-01-26 09:59:24 +0900363 retval = -EBUSY;
364 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366
367 ++t_slot;
368 temp_word = (t_slot << 8) | (cmd & 0xFF);
369 dbg("%s: t_slot %x cmd %x\n", __FUNCTION__, t_slot, cmd);
370
371 /* To make sure the Controller Busy bit is 0 before we send out the
372 * command.
373 */
Kenji Kaneshigebd62e272005-11-25 12:28:53 +0900374 slot->ctrl->cmd_busy = 1;
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900375 shpc_writew(ctrl, CMD, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Kenji Kaneshigebd62e272005-11-25 12:28:53 +0900377 /*
378 * Wait for command completion.
379 */
380 retval = shpc_wait_cmd(slot->ctrl);
Kenji Kaneshiged29aadd2006-01-26 09:59:24 +0900381 if (retval)
382 goto out;
383
384 cmd_status = hpc_check_cmd_status(slot->ctrl);
385 if (cmd_status) {
386 err("%s: Failed to issued command 0x%x (error code = %d)\n",
387 __FUNCTION__, cmd, cmd_status);
388 retval = -EIO;
389 }
390 out:
391 mutex_unlock(&slot->ctrl->cmd_lock);
Kenji Kaneshigebd62e272005-11-25 12:28:53 +0900392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 DBG_LEAVE_ROUTINE
394 return retval;
395}
396
397static int hpc_check_cmd_status(struct controller *ctrl)
398{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 u16 cmd_status;
400 int retval = 0;
401
402 DBG_ENTER_ROUTINE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900404 cmd_status = shpc_readw(ctrl, CMD_STATUS) & 0x000F;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 switch (cmd_status >> 1) {
407 case 0:
408 retval = 0;
409 break;
410 case 1:
411 retval = SWITCH_OPEN;
412 err("%s: Switch opened!\n", __FUNCTION__);
413 break;
414 case 2:
415 retval = INVALID_CMD;
416 err("%s: Invalid HPC command!\n", __FUNCTION__);
417 break;
418 case 4:
419 retval = INVALID_SPEED_MODE;
420 err("%s: Invalid bus speed/mode!\n", __FUNCTION__);
421 break;
422 default:
423 retval = cmd_status;
424 }
425
426 DBG_LEAVE_ROUTINE
427 return retval;
428}
429
430
431static int hpc_get_attention_status(struct slot *slot, u8 *status)
432{
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900433 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 u32 slot_reg;
Kenji Kaneshige58587592006-05-02 11:10:37 +0900435 u8 state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 DBG_ENTER_ROUTINE
438
Kenji Kaneshige2b34da72006-05-02 11:09:42 +0900439 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
Kenji Kaneshige58587592006-05-02 11:10:37 +0900440 state = (slot_reg & ATN_LED_STATE_MASK) >> ATN_LED_STATE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Kenji Kaneshige58587592006-05-02 11:10:37 +0900442 switch (state) {
443 case ATN_LED_STATE_ON:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *status = 1; /* On */
445 break;
Kenji Kaneshige58587592006-05-02 11:10:37 +0900446 case ATN_LED_STATE_BLINK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *status = 2; /* Blink */
448 break;
Kenji Kaneshige58587592006-05-02 11:10:37 +0900449 case ATN_LED_STATE_OFF:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 *status = 0; /* Off */
451 break;
452 default:
Kenji Kaneshige58587592006-05-02 11:10:37 +0900453 *status = 0xFF; /* Reserved */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 break;
455 }
456
457 DBG_LEAVE_ROUTINE
458 return 0;
459}
460
461static int hpc_get_power_status(struct slot * slot, u8 *status)
462{
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900463 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 u32 slot_reg;
Kenji Kaneshige58587592006-05-02 11:10:37 +0900465 u8 state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 DBG_ENTER_ROUTINE
468
Kenji Kaneshige2b34da72006-05-02 11:09:42 +0900469 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
Kenji Kaneshige58587592006-05-02 11:10:37 +0900470 state = (slot_reg & SLOT_STATE_MASK) >> SLOT_STATE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Kenji Kaneshige58587592006-05-02 11:10:37 +0900472 switch (state) {
473 case SLOT_STATE_PWRONLY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 *status = 2; /* Powered only */
475 break;
Kenji Kaneshige58587592006-05-02 11:10:37 +0900476 case SLOT_STATE_ENABLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 *status = 1; /* Enabled */
478 break;
Kenji Kaneshige58587592006-05-02 11:10:37 +0900479 case SLOT_STATE_DISABLED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 *status = 0; /* Disabled */
481 break;
482 default:
Kenji Kaneshige58587592006-05-02 11:10:37 +0900483 *status = 0xFF; /* Reserved */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 break;
485 }
486
487 DBG_LEAVE_ROUTINE
Kenji Kaneshige58587592006-05-02 11:10:37 +0900488 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
491
492static int hpc_get_latch_status(struct slot *slot, u8 *status)
493{
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900494 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 u32 slot_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 DBG_ENTER_ROUTINE
498
Kenji Kaneshige2b34da72006-05-02 11:09:42 +0900499 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
Kenji Kaneshige58587592006-05-02 11:10:37 +0900500 *status = !!(slot_reg & MRL_SENSOR); /* 0 -> close; 1 -> open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 DBG_LEAVE_ROUTINE
503 return 0;
504}
505
506static int hpc_get_adapter_status(struct slot *slot, u8 *status)
507{
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900508 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 u32 slot_reg;
Kenji Kaneshige58587592006-05-02 11:10:37 +0900510 u8 state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 DBG_ENTER_ROUTINE
513
Kenji Kaneshige2b34da72006-05-02 11:09:42 +0900514 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
Kenji Kaneshige58587592006-05-02 11:10:37 +0900515 state = (slot_reg & PRSNT_MASK) >> PRSNT_SHIFT;
516 *status = (state != 0x3) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 DBG_LEAVE_ROUTINE
519 return 0;
520}
521
522static int hpc_get_prog_int(struct slot *slot, u8 *prog_int)
523{
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900524 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 DBG_ENTER_ROUTINE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900528 *prog_int = shpc_readb(ctrl, PROG_INTERFACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 DBG_LEAVE_ROUTINE
531 return 0;
532}
533
534static int hpc_get_adapter_speed(struct slot *slot, enum pci_bus_speed *value)
535{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int retval = 0;
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900537 struct controller *ctrl = slot->ctrl;
Kenji Kaneshige2b34da72006-05-02 11:09:42 +0900538 u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
Kenji Kaneshige58587592006-05-02 11:10:37 +0900539 u8 m66_cap = !!(slot_reg & MHZ66_CAP);
Kenji Kaneshige795eb5c2006-05-02 11:11:54 +0900540 u8 pi, pcix_cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 DBG_ENTER_ROUTINE
543
Kenji Kaneshige795eb5c2006-05-02 11:11:54 +0900544 if ((retval = hpc_get_prog_int(slot, &pi)))
545 return retval;
546
547 switch (pi) {
548 case 1:
549 pcix_cap = (slot_reg & PCIX_CAP_MASK_PI1) >> PCIX_CAP_SHIFT;
550 break;
551 case 2:
552 pcix_cap = (slot_reg & PCIX_CAP_MASK_PI2) >> PCIX_CAP_SHIFT;
553 break;
554 default:
555 return -ENODEV;
556 }
557
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900558 dbg("%s: slot_reg = %x, pcix_cap = %x, m66_cap = %x\n",
559 __FUNCTION__, slot_reg, pcix_cap, m66_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900561 switch (pcix_cap) {
562 case 0x0:
563 *value = m66_cap ? PCI_SPEED_66MHz : PCI_SPEED_33MHz;
564 break;
565 case 0x1:
566 *value = PCI_SPEED_66MHz_PCIX;
567 break;
568 case 0x3:
569 *value = PCI_SPEED_133MHz_PCIX;
570 break;
571 case 0x4:
572 *value = PCI_SPEED_133MHz_PCIX_266;
573 break;
574 case 0x5:
575 *value = PCI_SPEED_133MHz_PCIX_533;
576 break;
577 case 0x2:
578 default:
579 *value = PCI_SPEED_UNKNOWN;
580 retval = -ENODEV;
581 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583
584 dbg("Adapter speed = %d\n", *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 DBG_LEAVE_ROUTINE
586 return retval;
587}
588
589static int hpc_get_mode1_ECC_cap(struct slot *slot, u8 *mode)
590{
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900591 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 u16 sec_bus_status;
593 u8 pi;
594 int retval = 0;
595
596 DBG_ENTER_ROUTINE
597
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900598 pi = shpc_readb(ctrl, PROG_INTERFACE);
599 sec_bus_status = shpc_readw(ctrl, SEC_BUS_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 if (pi == 2) {
Kenji Kaneshige87d6c552005-11-24 11:35:05 +0900602 *mode = (sec_bus_status & 0x0100) >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 } else {
604 retval = -1;
605 }
606
607 dbg("Mode 1 ECC cap = %d\n", *mode);
608
609 DBG_LEAVE_ROUTINE
610 return retval;
611}
612
613static int hpc_query_power_fault(struct slot * slot)
614{
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900615 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 u32 slot_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 DBG_ENTER_ROUTINE
619
Kenji Kaneshige2b34da72006-05-02 11:09:42 +0900620 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 DBG_LEAVE_ROUTINE
623 /* Note: Logic 0 => fault */
Kenji Kaneshige58587592006-05-02 11:10:37 +0900624 return !(slot_reg & POWER_FAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
627static int hpc_set_attention_status(struct slot *slot, u8 value)
628{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 u8 slot_cmd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 switch (value) {
632 case 0 :
633 slot_cmd = 0x30; /* OFF */
634 break;
635 case 1:
636 slot_cmd = 0x10; /* ON */
637 break;
638 case 2:
639 slot_cmd = 0x20; /* BLINK */
640 break;
641 default:
642 return -1;
643 }
644
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900645 return shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
648
649static void hpc_set_green_led_on(struct slot *slot)
650{
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900651 shpc_write_cmd(slot, slot->hp_slot, 0x04);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
654static void hpc_set_green_led_off(struct slot *slot)
655{
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900656 shpc_write_cmd(slot, slot->hp_slot, 0x0c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659static void hpc_set_green_led_blink(struct slot *slot)
660{
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900661 shpc_write_cmd(slot, slot->hp_slot, 0x08);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
664int shpc_get_ctlr_slot_config(struct controller *ctrl,
665 int *num_ctlr_slots, /* number of slots in this HPC */
666 int *first_device_num, /* PCI dev num of the first slot in this SHPC */
667 int *physical_slot_num, /* phy slot num of the first slot in this SHPC */
668 int *updown, /* physical_slot_num increament: 1 or -1 */
669 int *flags)
670{
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900671 u32 slot_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 DBG_ENTER_ROUTINE
674
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900675 slot_config = shpc_readl(ctrl, SLOT_CONFIG);
676 *first_device_num = (slot_config & FIRST_DEV_NUM) >> 8;
677 *num_ctlr_slots = slot_config & SLOT_NUM;
678 *physical_slot_num = (slot_config & PSN) >> 16;
679 *updown = ((slot_config & UPDOWN) >> 29) ? 1 : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 dbg("%s: physical_slot_num = %x\n", __FUNCTION__, *physical_slot_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 DBG_LEAVE_ROUTINE
684 return 0;
685}
686
687static void hpc_release_ctlr(struct controller *ctrl)
688{
rajesh.shah@intel.comee138332005-10-13 12:05:42 -0700689 struct php_ctlr_state_s *php_ctlr = ctrl->hpc_ctlr_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 struct php_ctlr_state_s *p, *p_prev;
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800691 int i;
Kenji Kaneshiged49f2c42006-05-03 23:34:17 +0900692 u32 slot_reg, serr_int;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 DBG_ENTER_ROUTINE
695
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800696 /*
Kenji Kaneshige795eb5c2006-05-02 11:11:54 +0900697 * Mask event interrupts and SERRs of all slots
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800698 */
Kenji Kaneshige795eb5c2006-05-02 11:11:54 +0900699 for (i = 0; i < ctrl->num_slots; i++) {
700 slot_reg = shpc_readl(ctrl, SLOT_REG(i));
701 slot_reg |= (PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
702 BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
703 CON_PFAULT_INTR_MASK | MRL_CHANGE_SERR_MASK |
704 CON_PFAULT_SERR_MASK);
705 slot_reg &= ~SLOT_REG_RSVDZ_MASK;
706 shpc_writel(ctrl, SLOT_REG(i), slot_reg);
707 }
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800708
709 cleanup_slots(ctrl);
710
Kenji Kaneshiged49f2c42006-05-03 23:34:17 +0900711 /*
712 * Mask SERR and System Interrut generation
713 */
714 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
715 serr_int |= (GLOBAL_INTR_MASK | GLOBAL_SERR_MASK |
716 COMMAND_INTR_MASK | ARBITER_SERR_MASK);
717 serr_int &= ~SERR_INTR_RSVDZ_MASK;
718 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (shpchp_poll_mode) {
721 del_timer(&php_ctlr->int_poll_timer);
722 } else {
723 if (php_ctlr->irq) {
724 free_irq(php_ctlr->irq, ctrl);
725 php_ctlr->irq = 0;
726 pci_disable_msi(php_ctlr->pci_dev);
727 }
728 }
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (php_ctlr->pci_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 iounmap(php_ctlr->creg);
Kenji Kaneshige04559862005-11-24 11:36:59 +0900732 release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 php_ctlr->pci_dev = NULL;
734 }
735
736 spin_lock(&list_lock);
737 p = php_ctlr_list_head;
738 p_prev = NULL;
739 while (p) {
740 if (p == php_ctlr) {
741 if (p_prev)
742 p_prev->pnext = p->pnext;
743 else
744 php_ctlr_list_head = p->pnext;
745 break;
746 } else {
747 p_prev = p;
748 p = p->pnext;
749 }
750 }
751 spin_unlock(&list_lock);
752
753 kfree(php_ctlr);
754
Kenji Kaneshige82d5f4a2006-05-03 23:42:04 +0900755 /*
756 * If this is the last controller to be released, destroy the
757 * shpchpd work queue
758 */
759 if (atomic_dec_and_test(&shpchp_num_controllers))
760 destroy_workqueue(shpchp_wq);
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762DBG_LEAVE_ROUTINE
763
764}
765
766static int hpc_power_on_slot(struct slot * slot)
767{
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900768 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 DBG_ENTER_ROUTINE
771
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900772 retval = shpc_write_cmd(slot, slot->hp_slot, 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (retval) {
774 err("%s: Write command failed!\n", __FUNCTION__);
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900775 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777
778 DBG_LEAVE_ROUTINE
779
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900780 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783static int hpc_slot_enable(struct slot * slot)
784{
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900785 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 DBG_ENTER_ROUTINE
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 /* 3A => Slot - Enable, Power Indicator - Blink, Attention Indicator - Off */
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900790 retval = shpc_write_cmd(slot, slot->hp_slot, 0x3a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (retval) {
792 err("%s: Write command failed!\n", __FUNCTION__);
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900793 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
796 DBG_LEAVE_ROUTINE
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900797 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
800static int hpc_slot_disable(struct slot * slot)
801{
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900802 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 DBG_ENTER_ROUTINE
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* 1F => Slot - Disable, Power Indicator - Off, Attention Indicator - On */
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900807 retval = shpc_write_cmd(slot, slot->hp_slot, 0x1f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (retval) {
809 err("%s: Write command failed!\n", __FUNCTION__);
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900810 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
813 DBG_LEAVE_ROUTINE
Kenji Kaneshiged4fbf602006-05-12 11:05:59 +0900814 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817static int hpc_set_bus_speed_mode(struct slot * slot, enum pci_bus_speed value)
818{
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900819 int retval;
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900820 struct controller *ctrl = slot->ctrl;
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900821 u8 pi, cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 DBG_ENTER_ROUTINE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900825 pi = shpc_readb(ctrl, PROG_INTERFACE);
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900826 if ((pi == 1) && (value > PCI_SPEED_133MHz_PCIX))
827 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900829 switch (value) {
830 case PCI_SPEED_33MHz:
831 cmd = SETA_PCI_33MHZ;
832 break;
833 case PCI_SPEED_66MHz:
834 cmd = SETA_PCI_66MHZ;
835 break;
836 case PCI_SPEED_66MHz_PCIX:
837 cmd = SETA_PCIX_66MHZ;
838 break;
839 case PCI_SPEED_100MHz_PCIX:
840 cmd = SETA_PCIX_100MHZ;
841 break;
842 case PCI_SPEED_133MHz_PCIX:
843 cmd = SETA_PCIX_133MHZ;
844 break;
845 case PCI_SPEED_66MHz_PCIX_ECC:
846 cmd = SETB_PCIX_66MHZ_EM;
847 break;
848 case PCI_SPEED_100MHz_PCIX_ECC:
849 cmd = SETB_PCIX_100MHZ_EM;
850 break;
851 case PCI_SPEED_133MHz_PCIX_ECC:
852 cmd = SETB_PCIX_133MHZ_EM;
853 break;
854 case PCI_SPEED_66MHz_PCIX_266:
855 cmd = SETB_PCIX_66MHZ_266;
856 break;
857 case PCI_SPEED_100MHz_PCIX_266:
858 cmd = SETB_PCIX_100MHZ_266;
859 break;
860 case PCI_SPEED_133MHz_PCIX_266:
861 cmd = SETB_PCIX_133MHZ_266;
862 break;
863 case PCI_SPEED_66MHz_PCIX_533:
864 cmd = SETB_PCIX_66MHZ_533;
865 break;
866 case PCI_SPEED_100MHz_PCIX_533:
867 cmd = SETB_PCIX_100MHZ_533;
868 break;
869 case PCI_SPEED_133MHz_PCIX_533:
870 cmd = SETB_PCIX_133MHZ_533;
871 break;
872 default:
873 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900875
876 retval = shpc_write_cmd(slot, 0, cmd);
877 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 err("%s: Write command failed!\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 DBG_LEAVE_ROUTINE
881 return retval;
882}
883
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900884static irqreturn_t shpc_isr(int irq, void *dev_id, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900886 struct controller *ctrl = (struct controller *)dev_id;
887 struct php_ctlr_state_s *php_ctlr = ctrl->hpc_ctlr_handle;
888 u32 serr_int, slot_reg, intr_loc, intr_loc2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 int hp_slot;
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 /* Check to see if it was our interrupt */
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900892 intr_loc = shpc_readl(ctrl, INTR_LOC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (!intr_loc)
894 return IRQ_NONE;
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 dbg("%s: intr_loc = %x\n",__FUNCTION__, intr_loc);
897
898 if(!shpchp_poll_mode) {
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900899 /*
900 * Mask Global Interrupt Mask - see implementation
901 * note on p. 139 of SHPC spec rev 1.0
902 */
903 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
904 serr_int |= GLOBAL_INTR_MASK;
905 serr_int &= ~SERR_INTR_RSVDZ_MASK;
906 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900908 intr_loc2 = shpc_readl(ctrl, INTR_LOC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 dbg("%s: intr_loc2 = %x\n",__FUNCTION__, intr_loc2);
910 }
911
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900912 if (intr_loc & CMD_INTR_PENDING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /*
914 * Command Complete Interrupt Pending
Kenji Kaneshigef467f612005-11-24 11:39:29 +0900915 * RO only - clear by writing 1 to the Command Completion
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 * Detect bit in Controller SERR-INT register
917 */
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900918 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
919 serr_int &= ~SERR_INTR_RSVDZ_MASK;
920 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
921
Kenji Kaneshigebd62e272005-11-25 12:28:53 +0900922 ctrl->cmd_busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 wake_up_interruptible(&ctrl->queue);
924 }
925
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900926 if (!(intr_loc & ~CMD_INTR_PENDING))
Kenji Kaneshigee4e73042006-01-26 10:05:57 +0900927 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900930 /* To find out which slot has interrupt pending */
931 if (!(intr_loc & SLOT_INTR_PENDING(hp_slot)))
932 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900934 slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
935 dbg("%s: Slot %x with intr, slot register = %x\n",
936 __FUNCTION__, hp_slot, slot_reg);
937
938 if (slot_reg & MRL_CHANGE_DETECTED)
939 php_ctlr->switch_change_callback(
940 hp_slot, php_ctlr->callback_instance_id);
941
942 if (slot_reg & BUTTON_PRESS_DETECTED)
943 php_ctlr->attention_button_callback(
944 hp_slot, php_ctlr->callback_instance_id);
945
946 if (slot_reg & PRSNT_CHANGE_DETECTED)
947 php_ctlr->presence_change_callback(
948 hp_slot , php_ctlr->callback_instance_id);
949
950 if (slot_reg & (ISO_PFAULT_DETECTED | CON_PFAULT_DETECTED))
951 php_ctlr->power_fault_callback(
952 hp_slot, php_ctlr->callback_instance_id);
953
954 /* Clear all slot events */
955 slot_reg &= ~SLOT_REG_RSVDZ_MASK;
956 shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
Kenji Kaneshigee4e73042006-01-26 10:05:57 +0900958 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (!shpchp_poll_mode) {
960 /* Unmask Global Interrupt Mask */
Kenji Kaneshigec4cecc12006-05-12 11:10:56 +0900961 serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
962 serr_int &= ~(GLOBAL_INTR_MASK | SERR_INTR_RSVDZ_MASK);
963 shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
965
966 return IRQ_HANDLED;
967}
968
969static int hpc_get_max_bus_speed (struct slot *slot, enum pci_bus_speed *value)
970{
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900971 int retval = 0;
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900972 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
Kenji Kaneshige75d97c52006-05-02 11:08:42 +0900974 u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
975 u32 slot_avail1 = shpc_readl(ctrl, SLOT_AVAIL1);
976 u32 slot_avail2 = shpc_readl(ctrl, SLOT_AVAIL2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 DBG_ENTER_ROUTINE
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (pi == 2) {
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +0900981 if (slot_avail2 & SLOT_133MHZ_PCIX_533)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900982 bus_speed = PCI_SPEED_133MHz_PCIX_533;
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +0900983 else if (slot_avail2 & SLOT_100MHZ_PCIX_533)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900984 bus_speed = PCI_SPEED_100MHz_PCIX_533;
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +0900985 else if (slot_avail2 & SLOT_66MHZ_PCIX_533)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900986 bus_speed = PCI_SPEED_66MHz_PCIX_533;
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +0900987 else if (slot_avail2 & SLOT_133MHZ_PCIX_266)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900988 bus_speed = PCI_SPEED_133MHz_PCIX_266;
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +0900989 else if (slot_avail2 & SLOT_100MHZ_PCIX_266)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900990 bus_speed = PCI_SPEED_100MHz_PCIX_266;
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +0900991 else if (slot_avail2 & SLOT_66MHZ_PCIX_266)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900992 bus_speed = PCI_SPEED_66MHz_PCIX_266;
993 }
994
995 if (bus_speed == PCI_SPEED_UNKNOWN) {
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +0900996 if (slot_avail1 & SLOT_133MHZ_PCIX)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900997 bus_speed = PCI_SPEED_133MHz_PCIX;
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +0900998 else if (slot_avail1 & SLOT_100MHZ_PCIX)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +0900999 bus_speed = PCI_SPEED_100MHz_PCIX;
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +09001000 else if (slot_avail1 & SLOT_66MHZ_PCIX)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +09001001 bus_speed = PCI_SPEED_66MHz_PCIX;
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +09001002 else if (slot_avail2 & SLOT_66MHZ)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +09001003 bus_speed = PCI_SPEED_66MHz;
Kenji Kaneshige6558b6a2005-11-24 13:44:01 +09001004 else if (slot_avail1 & SLOT_33MHZ)
Kenji Kaneshige0afabe92006-03-01 14:55:11 +09001005 bus_speed = PCI_SPEED_33MHz;
1006 else
1007 retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009
1010 *value = bus_speed;
1011 dbg("Max bus speed = %d\n", bus_speed);
1012 DBG_LEAVE_ROUTINE
1013 return retval;
1014}
1015
1016static int hpc_get_cur_bus_speed (struct slot *slot, enum pci_bus_speed *value)
1017{
Kenji Kaneshige0afabe92006-03-01 14:55:11 +09001018 int retval = 0;
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001019 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001021 u16 sec_bus_reg = shpc_readw(ctrl, SEC_BUS_CONFIG);
1022 u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
Kenji Kaneshige0afabe92006-03-01 14:55:11 +09001023 u8 speed_mode = (pi == 2) ? (sec_bus_reg & 0xF) : (sec_bus_reg & 0x7);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 DBG_ENTER_ROUTINE
1026
Kenji Kaneshige0afabe92006-03-01 14:55:11 +09001027 if ((pi == 1) && (speed_mode > 4)) {
1028 *value = PCI_SPEED_UNKNOWN;
1029 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031
Kenji Kaneshige0afabe92006-03-01 14:55:11 +09001032 switch (speed_mode) {
1033 case 0x0:
1034 *value = PCI_SPEED_33MHz;
1035 break;
1036 case 0x1:
1037 *value = PCI_SPEED_66MHz;
1038 break;
1039 case 0x2:
1040 *value = PCI_SPEED_66MHz_PCIX;
1041 break;
1042 case 0x3:
1043 *value = PCI_SPEED_100MHz_PCIX;
1044 break;
1045 case 0x4:
1046 *value = PCI_SPEED_133MHz_PCIX;
1047 break;
1048 case 0x5:
1049 *value = PCI_SPEED_66MHz_PCIX_ECC;
1050 break;
1051 case 0x6:
1052 *value = PCI_SPEED_100MHz_PCIX_ECC;
1053 break;
1054 case 0x7:
1055 *value = PCI_SPEED_133MHz_PCIX_ECC;
1056 break;
1057 case 0x8:
1058 *value = PCI_SPEED_66MHz_PCIX_266;
1059 break;
1060 case 0x9:
1061 *value = PCI_SPEED_100MHz_PCIX_266;
1062 break;
1063 case 0xa:
1064 *value = PCI_SPEED_133MHz_PCIX_266;
1065 break;
1066 case 0xb:
1067 *value = PCI_SPEED_66MHz_PCIX_533;
1068 break;
1069 case 0xc:
1070 *value = PCI_SPEED_100MHz_PCIX_533;
1071 break;
1072 case 0xd:
1073 *value = PCI_SPEED_133MHz_PCIX_533;
1074 break;
1075 default:
1076 *value = PCI_SPEED_UNKNOWN;
1077 retval = -ENODEV;
1078 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 dbg("Current bus speed = %d\n", bus_speed);
1082 DBG_LEAVE_ROUTINE
1083 return retval;
1084}
1085
1086static struct hpc_ops shpchp_hpc_ops = {
1087 .power_on_slot = hpc_power_on_slot,
1088 .slot_enable = hpc_slot_enable,
1089 .slot_disable = hpc_slot_disable,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 .set_bus_speed_mode = hpc_set_bus_speed_mode,
1091 .set_attention_status = hpc_set_attention_status,
1092 .get_power_status = hpc_get_power_status,
1093 .get_attention_status = hpc_get_attention_status,
1094 .get_latch_status = hpc_get_latch_status,
1095 .get_adapter_status = hpc_get_adapter_status,
1096
1097 .get_max_bus_speed = hpc_get_max_bus_speed,
1098 .get_cur_bus_speed = hpc_get_cur_bus_speed,
1099 .get_adapter_speed = hpc_get_adapter_speed,
1100 .get_mode1_ECC_cap = hpc_get_mode1_ECC_cap,
1101 .get_prog_int = hpc_get_prog_int,
1102
1103 .query_power_fault = hpc_query_power_fault,
1104 .green_led_on = hpc_set_green_led_on,
1105 .green_led_off = hpc_set_green_led_off,
1106 .green_led_blink = hpc_set_green_led_blink,
1107
1108 .release_ctlr = hpc_release_ctlr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109};
1110
rajesh.shah@intel.comee138332005-10-13 12:05:42 -07001111int shpc_init(struct controller * ctrl, struct pci_dev * pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
1113 struct php_ctlr_state_s *php_ctlr, *p;
1114 void *instance_id = ctrl;
Kenji Kaneshige04559862005-11-24 11:36:59 +09001115 int rc, num_slots = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 u8 hp_slot;
1117 static int first = 1;
Kenji Kaneshige04559862005-11-24 11:36:59 +09001118 u32 shpc_base_offset;
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001119 u32 tempdword, slot_reg, slot_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 u8 i;
1121
1122 DBG_ENTER_ROUTINE
1123
Kenji Kaneshige04559862005-11-24 11:36:59 +09001124 ctrl->pci_dev = pdev; /* pci_dev of the P2P bridge */
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 spin_lock_init(&list_lock);
Kenji Kaneshige57c95c02006-01-26 10:02:41 +09001127 php_ctlr = kzalloc(sizeof(*php_ctlr), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 if (!php_ctlr) { /* allocate controller state data */
1130 err("%s: HPC controller memory allocation error!\n", __FUNCTION__);
1131 goto abort;
1132 }
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 php_ctlr->pci_dev = pdev; /* save pci_dev in context */
1135
rajesh.shah@intel.comee138332005-10-13 12:05:42 -07001136 if ((pdev->vendor == PCI_VENDOR_ID_AMD) || (pdev->device ==
1137 PCI_DEVICE_ID_AMD_GOLAM_7450)) {
Kenji Kaneshige04559862005-11-24 11:36:59 +09001138 /* amd shpc driver doesn't use Base Offset; assume 0 */
1139 ctrl->mmio_base = pci_resource_start(pdev, 0);
1140 ctrl->mmio_size = pci_resource_len(pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 } else {
Kenji Kaneshige04559862005-11-24 11:36:59 +09001142 ctrl->cap_offset = pci_find_capability(pdev, PCI_CAP_ID_SHPC);
1143 if (!ctrl->cap_offset) {
1144 err("%s : cap_offset == 0\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 goto abort_free_ctlr;
1146 }
Kenji Kaneshige04559862005-11-24 11:36:59 +09001147 dbg("%s: cap_offset = %x\n", __FUNCTION__, ctrl->cap_offset);
1148
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001149 rc = shpc_indirect_read(ctrl, 0, &shpc_base_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (rc) {
Kenji Kaneshige04559862005-11-24 11:36:59 +09001151 err("%s: cannot read base_offset\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 goto abort_free_ctlr;
1153 }
1154
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001155 rc = shpc_indirect_read(ctrl, 3, &tempdword);
Kenji Kaneshige04559862005-11-24 11:36:59 +09001156 if (rc) {
1157 err("%s: cannot read slot config\n", __FUNCTION__);
1158 goto abort_free_ctlr;
1159 }
1160 num_slots = tempdword & SLOT_NUM;
1161 dbg("%s: num_slots (indirect) %x\n", __FUNCTION__, num_slots);
1162
1163 for (i = 0; i < 9 + num_slots; i++) {
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001164 rc = shpc_indirect_read(ctrl, i, &tempdword);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (rc) {
Kenji Kaneshige04559862005-11-24 11:36:59 +09001166 err("%s: cannot read creg (index = %d)\n",
1167 __FUNCTION__, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 goto abort_free_ctlr;
1169 }
rajesh.shah@intel.com7c8942f2005-10-13 12:05:43 -07001170 dbg("%s: offset %d: value %x\n", __FUNCTION__,i,
1171 tempdword);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
Kenji Kaneshige04559862005-11-24 11:36:59 +09001173
1174 ctrl->mmio_base =
1175 pci_resource_start(pdev, 0) + shpc_base_offset;
1176 ctrl->mmio_size = 0x24 + 0x4 * num_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178
1179 if (first) {
1180 spin_lock_init(&hpc_event_lock);
1181 first = 0;
1182 }
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n", pdev->vendor, pdev->device, pdev->subsystem_vendor,
1185 pdev->subsystem_device);
1186
1187 if (pci_enable_device(pdev))
1188 goto abort_free_ctlr;
1189
Kenji Kaneshige04559862005-11-24 11:36:59 +09001190 if (!request_mem_region(ctrl->mmio_base, ctrl->mmio_size, MY_NAME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 err("%s: cannot reserve MMIO region\n", __FUNCTION__);
1192 goto abort_free_ctlr;
1193 }
1194
Kenji Kaneshige04559862005-11-24 11:36:59 +09001195 php_ctlr->creg = ioremap(ctrl->mmio_base, ctrl->mmio_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (!php_ctlr->creg) {
Kenji Kaneshige04559862005-11-24 11:36:59 +09001197 err("%s: cannot remap MMIO region %lx @ %lx\n", __FUNCTION__,
1198 ctrl->mmio_size, ctrl->mmio_base);
1199 release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 goto abort_free_ctlr;
1201 }
1202 dbg("%s: php_ctlr->creg %p\n", __FUNCTION__, php_ctlr->creg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001204 mutex_init(&ctrl->crit_sect);
Kenji Kaneshiged29aadd2006-01-26 09:59:24 +09001205 mutex_init(&ctrl->cmd_lock);
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 /* Setup wait queue */
1208 init_waitqueue_head(&ctrl->queue);
1209
1210 /* Find the IRQ */
1211 php_ctlr->irq = pdev->irq;
rajesh.shah@intel.comee138332005-10-13 12:05:42 -07001212 php_ctlr->attention_button_callback = shpchp_handle_attention_button,
1213 php_ctlr->switch_change_callback = shpchp_handle_switch_change;
1214 php_ctlr->presence_change_callback = shpchp_handle_presence_change;
1215 php_ctlr->power_fault_callback = shpchp_handle_power_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 php_ctlr->callback_instance_id = instance_id;
1217
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001218 ctrl->hpc_ctlr_handle = php_ctlr;
1219 ctrl->hpc_ops = &shpchp_hpc_ops;
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 /* Return PCI Controller Info */
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001222 slot_config = shpc_readl(ctrl, SLOT_CONFIG);
1223 php_ctlr->slot_device_offset = (slot_config & FIRST_DEV_NUM) >> 8;
1224 php_ctlr->num_slots = slot_config & SLOT_NUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 dbg("%s: slot_device_offset %x\n", __FUNCTION__, php_ctlr->slot_device_offset);
1226 dbg("%s: num_slots %x\n", __FUNCTION__, php_ctlr->num_slots);
1227
1228 /* Mask Global Interrupt Mask & Command Complete Interrupt Mask */
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001229 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 dbg("%s: SERR_INTR_ENABLE = %x\n", __FUNCTION__, tempdword);
Kenji Kaneshigee7138722006-05-02 11:12:37 +09001231 tempdword |= (GLOBAL_INTR_MASK | GLOBAL_SERR_MASK |
1232 COMMAND_INTR_MASK | ARBITER_SERR_MASK);
1233 tempdword &= ~SERR_INTR_RSVDZ_MASK;
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001234 shpc_writel(ctrl, SERR_INTR_ENABLE, tempdword);
1235 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 dbg("%s: SERR_INTR_ENABLE = %x\n", __FUNCTION__, tempdword);
1237
1238 /* Mask the MRL sensor SERR Mask of individual slot in
1239 * Slot SERR-INT Mask & clear all the existing event if any
1240 */
1241 for (hp_slot = 0; hp_slot < php_ctlr->num_slots; hp_slot++) {
Kenji Kaneshige2b34da72006-05-02 11:09:42 +09001242 slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 dbg("%s: Default Logical Slot Register %d value %x\n", __FUNCTION__,
1244 hp_slot, slot_reg);
Kenji Kaneshige795eb5c2006-05-02 11:11:54 +09001245 slot_reg |= (PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
1246 BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
1247 CON_PFAULT_INTR_MASK | MRL_CHANGE_SERR_MASK |
1248 CON_PFAULT_SERR_MASK);
1249 slot_reg &= ~SLOT_REG_RSVDZ_MASK;
1250 shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
1252
1253 if (shpchp_poll_mode) {/* Install interrupt polling code */
1254 /* Install and start the interrupt polling timer */
1255 init_timer(&php_ctlr->int_poll_timer);
1256 start_int_poll_timer( php_ctlr, 10 ); /* start with 10 second delay */
1257 } else {
1258 /* Installs the interrupt handler */
1259 rc = pci_enable_msi(pdev);
1260 if (rc) {
1261 info("Can't get msi for the hotplug controller\n");
1262 info("Use INTx for the hotplug controller\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 } else
1264 php_ctlr->irq = pdev->irq;
1265
1266 rc = request_irq(php_ctlr->irq, shpc_isr, SA_SHIRQ, MY_NAME, (void *) ctrl);
1267 dbg("%s: request_irq %d for hpc%d (returns %d)\n", __FUNCTION__, php_ctlr->irq, ctlr_seq_num, rc);
1268 if (rc) {
1269 err("Can't get irq %d for the hotplug controller\n", php_ctlr->irq);
1270 goto abort_free_ctlr;
1271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
rajesh.shah@intel.com7c8942f2005-10-13 12:05:43 -07001273 dbg("%s: HPC at b:d:f:irq=0x%x:%x:%x:%x\n", __FUNCTION__,
1274 pdev->bus->number, PCI_SLOT(pdev->devfn),
1275 PCI_FUNC(pdev->devfn), pdev->irq);
rajesh.shah@intel.com424600f2005-10-13 12:05:38 -07001276 get_hp_hw_control_from_firmware(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 /* Add this HPC instance into the HPC list */
1279 spin_lock(&list_lock);
1280 if (php_ctlr_list_head == 0) {
1281 php_ctlr_list_head = php_ctlr;
1282 p = php_ctlr_list_head;
1283 p->pnext = NULL;
1284 } else {
1285 p = php_ctlr_list_head;
1286
1287 while (p->pnext)
1288 p = p->pnext;
1289
1290 p->pnext = php_ctlr;
1291 }
1292 spin_unlock(&list_lock);
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 ctlr_seq_num++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Kenji Kaneshige795eb5c2006-05-02 11:11:54 +09001296 /*
Kenji Kaneshige82d5f4a2006-05-03 23:42:04 +09001297 * If this is the first controller to be initialized,
1298 * initialize the shpchpd work queue
1299 */
1300 if (atomic_add_return(1, &shpchp_num_controllers) == 1) {
1301 shpchp_wq = create_singlethread_workqueue("shpchpd");
1302 if (!shpchp_wq)
1303 return -ENOMEM;
1304 }
1305
1306 /*
Kenji Kaneshige795eb5c2006-05-02 11:11:54 +09001307 * Unmask all event interrupts of all slots
1308 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 for (hp_slot = 0; hp_slot < php_ctlr->num_slots; hp_slot++) {
Kenji Kaneshige2b34da72006-05-02 11:09:42 +09001310 slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 dbg("%s: Default Logical Slot Register %d value %x\n", __FUNCTION__,
1312 hp_slot, slot_reg);
Kenji Kaneshige795eb5c2006-05-02 11:11:54 +09001313 slot_reg &= ~(PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
1314 BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
1315 CON_PFAULT_INTR_MASK | SLOT_REG_RSVDZ_MASK);
1316 shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 }
1318 if (!shpchp_poll_mode) {
1319 /* Unmask all general input interrupts and SERR */
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001320 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
Kenji Kaneshigee7138722006-05-02 11:12:37 +09001321 tempdword &= ~(GLOBAL_INTR_MASK | COMMAND_INTR_MASK |
1322 SERR_INTR_RSVDZ_MASK);
Kenji Kaneshige75d97c52006-05-02 11:08:42 +09001323 shpc_writel(ctrl, SERR_INTR_ENABLE, tempdword);
1324 tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 dbg("%s: SERR_INTR_ENABLE = %x\n", __FUNCTION__, tempdword);
1326 }
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 DBG_LEAVE_ROUTINE
1329 return 0;
1330
1331 /* We end up here for the many possible ways to fail this API. */
1332abort_free_ctlr:
1333 kfree(php_ctlr);
1334abort:
1335 DBG_LEAVE_ROUTINE
1336 return -1;
1337}