cpqphp.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:21k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Compaq Hot Plug Controller 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
  7.  *
  8.  * All rights reserved.
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or (at
  13.  * your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful, but
  16.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  18.  * NON INFRINGEMENT.  See the GNU General Public License for more
  19.  * details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  *
  25.  * Send feedback to <greg@kroah.com>
  26.  *
  27.  */
  28. #ifndef _CPQPHP_H
  29. #define _CPQPHP_H
  30. #include "pci_hotplug.h"
  31. #include <asm/io.h> /* for read? and write? functions */
  32. #if !defined(CONFIG_HOTPLUG_PCI_COMPAQ_MODULE)
  33. #define MY_NAME "cpqphp.o"
  34. #else
  35. #define MY_NAME THIS_MODULE->name
  36. #endif
  37. #define dbg(fmt, arg...) do { if (cpqhp_debug) printk(KERN_DEBUG "%s: " fmt , MY_NAME , ## arg); } while (0)
  38. #define err(format, arg...) printk(KERN_ERR "%s: " format , MY_NAME , ## arg)
  39. #define info(format, arg...) printk(KERN_INFO "%s: " format , MY_NAME , ## arg)
  40. #define warn(format, arg...) printk(KERN_WARNING "%s: " format , MY_NAME , ## arg)
  41. struct smbios_system_slot {
  42. u8 type;
  43. u8 length;
  44. u16 handle;
  45. u8 name_string_num;
  46. u8 slot_type;
  47. u8 slot_width;
  48. u8 slot_current_usage;
  49. u8 slot_length;
  50. u16 slot_number;
  51. u8 properties1;
  52. u8 properties2;
  53. } __attribute__ ((packed));
  54. /* offsets to the smbios generic type based on the above structure layout */
  55. enum smbios_system_slot_offsets {
  56. SMBIOS_SLOT_GENERIC_TYPE = offsetof(struct smbios_system_slot, type),
  57. SMBIOS_SLOT_GENERIC_LENGTH = offsetof(struct smbios_system_slot, length),
  58. SMBIOS_SLOT_GENERIC_HANDLE = offsetof(struct smbios_system_slot, handle),
  59. SMBIOS_SLOT_NAME_STRING_NUM = offsetof(struct smbios_system_slot, name_string_num),
  60. SMBIOS_SLOT_TYPE = offsetof(struct smbios_system_slot, slot_type),
  61. SMBIOS_SLOT_WIDTH = offsetof(struct smbios_system_slot, slot_width),
  62. SMBIOS_SLOT_CURRENT_USAGE = offsetof(struct smbios_system_slot, slot_current_usage),
  63. SMBIOS_SLOT_LENGTH = offsetof(struct smbios_system_slot, slot_length),
  64. SMBIOS_SLOT_NUMBER = offsetof(struct smbios_system_slot, slot_number),
  65. SMBIOS_SLOT_PROPERTIES1 = offsetof(struct smbios_system_slot, properties1),
  66. SMBIOS_SLOT_PROPERTIES2 = offsetof(struct smbios_system_slot, properties2),
  67. };
  68. struct smbios_generic {
  69. u8 type;
  70. u8 length;
  71. u16 handle;
  72. } __attribute__ ((packed));
  73. /* offsets to the smbios generic type based on the above structure layout */
  74. enum smbios_generic_offsets {
  75. SMBIOS_GENERIC_TYPE = offsetof(struct smbios_generic, type),
  76. SMBIOS_GENERIC_LENGTH = offsetof(struct smbios_generic, length),
  77. SMBIOS_GENERIC_HANDLE = offsetof(struct smbios_generic, handle),
  78. };
  79. struct smbios_entry_point {
  80. char anchor[4];
  81. u8 ep_checksum;
  82. u8 ep_length;
  83. u8 major_version;
  84. u8 minor_version;
  85. u16 max_size_entry;
  86. u8 ep_rev;
  87. u8 reserved[5];
  88. char int_anchor[5];
  89. u8 int_checksum;
  90. u16 st_length;
  91. u32 st_address;
  92. u16 number_of_entrys;
  93. u8 bcd_rev;
  94. } __attribute__ ((packed));
  95. /* offsets to the smbios entry point based on the above structure layout */
  96. enum smbios_entry_point_offsets {
  97. ANCHOR = offsetof(struct smbios_entry_point, anchor[0]),
  98. EP_CHECKSUM = offsetof(struct smbios_entry_point, ep_checksum),
  99. EP_LENGTH = offsetof(struct smbios_entry_point, ep_length),
  100. MAJOR_VERSION = offsetof(struct smbios_entry_point, major_version),
  101. MINOR_VERSION = offsetof(struct smbios_entry_point, minor_version),
  102. MAX_SIZE_ENTRY = offsetof(struct smbios_entry_point, max_size_entry),
  103. EP_REV = offsetof(struct smbios_entry_point, ep_rev),
  104. INT_ANCHOR = offsetof(struct smbios_entry_point, int_anchor[0]),
  105. INT_CHECKSUM = offsetof(struct smbios_entry_point, int_checksum),
  106. ST_LENGTH = offsetof(struct smbios_entry_point, st_length),
  107. ST_ADDRESS = offsetof(struct smbios_entry_point, st_address),
  108. NUMBER_OF_ENTRYS = offsetof(struct smbios_entry_point, number_of_entrys),
  109. BCD_REV = offsetof(struct smbios_entry_point, bcd_rev),
  110. };
  111. struct ctrl_reg { /* offset */
  112. u8 slot_RST; /* 0x00 */
  113. u8 slot_enable; /* 0x01 */
  114. u16 misc; /* 0x02 */
  115. u32 led_control; /* 0x04 */
  116. u32 int_input_clear; /* 0x08 */
  117. u32 int_mask; /* 0x0a */
  118. u8 reserved0; /* 0x10 */
  119. u8 reserved1; /* 0x11 */
  120. u8 reserved2; /* 0x12 */
  121. u8 gen_output_AB; /* 0x13 */
  122. u32 non_int_input; /* 0x14 */
  123. u32 reserved3; /* 0x18 */
  124. u32 reserved4; /* 0x1a */
  125. u32 reserved5; /* 0x20 */
  126. u8 reserved6; /* 0x24 */
  127. u8 reserved7; /* 0x25 */
  128. u16 reserved8; /* 0x26 */
  129. u8 slot_mask; /* 0x28 */
  130. u8 reserved9; /* 0x29 */
  131. u8 reserved10; /* 0x2a */
  132. u8 reserved11; /* 0x2b */
  133. u8 slot_SERR; /* 0x2c */
  134. u8 slot_power; /* 0x2d */
  135. } __attribute__ ((packed));
  136. /* offsets to the controller registers based on the above structure layout */
  137. enum ctrl_offsets {
  138. SLOT_RST =  offsetof(struct ctrl_reg, slot_RST),
  139. SLOT_ENABLE = offsetof(struct ctrl_reg, slot_enable),
  140. MISC = offsetof(struct ctrl_reg, misc),
  141. LED_CONTROL = offsetof(struct ctrl_reg, led_control),
  142. INT_INPUT_CLEAR = offsetof(struct ctrl_reg, int_input_clear),
  143. INT_MASK =  offsetof(struct ctrl_reg, int_mask),
  144. CTRL_RESERVED0 =  offsetof(struct ctrl_reg, reserved0),
  145. CTRL_RESERVED1 = offsetof(struct ctrl_reg, reserved1),
  146. CTRL_RESERVED2 = offsetof(struct ctrl_reg, reserved1),
  147. GEN_OUTPUT_AB =  offsetof(struct ctrl_reg, gen_output_AB),
  148. NON_INT_INPUT =  offsetof(struct ctrl_reg, non_int_input),
  149. CTRL_RESERVED3 = offsetof(struct ctrl_reg, reserved3),
  150. CTRL_RESERVED4 = offsetof(struct ctrl_reg, reserved4),
  151. CTRL_RESERVED5 = offsetof(struct ctrl_reg, reserved5),
  152. CTRL_RESERVED6 = offsetof(struct ctrl_reg, reserved6),
  153. CTRL_RESERVED7 = offsetof(struct ctrl_reg, reserved7),
  154. CTRL_RESERVED8 = offsetof(struct ctrl_reg, reserved8),
  155. SLOT_MASK =  offsetof(struct ctrl_reg, slot_mask),
  156. CTRL_RESERVED9 =  offsetof(struct ctrl_reg, reserved9),
  157. CTRL_RESERVED10 = offsetof(struct ctrl_reg, reserved10),
  158. CTRL_RESERVED11 = offsetof(struct ctrl_reg, reserved11),
  159. SLOT_SERR = offsetof(struct ctrl_reg, slot_SERR),
  160. SLOT_POWER = offsetof(struct ctrl_reg, slot_power),
  161. };
  162. struct hrt {
  163. char sig0;
  164. char sig1;
  165. char sig2;
  166. char sig3;
  167. u16 unused_IRQ;
  168. u16 PCIIRQ;
  169. u8 number_of_entries;
  170. u8 revision;
  171. u16 reserved1;
  172. u32 reserved2;
  173. } __attribute__ ((packed));
  174. /* offsets to the hotplug resource table registers based on the above structure layout */
  175. enum hrt_offsets {
  176. SIG0 = offsetof(struct hrt, sig0),
  177. SIG1 = offsetof(struct hrt, sig1),
  178. SIG2 = offsetof(struct hrt, sig2),
  179. SIG3 = offsetof(struct hrt, sig3),
  180. UNUSED_IRQ = offsetof(struct hrt, unused_IRQ),
  181. PCIIRQ = offsetof(struct hrt, PCIIRQ),
  182. NUMBER_OF_ENTRIES = offsetof(struct hrt, number_of_entries),
  183. REVISION = offsetof(struct hrt, revision),
  184. HRT_RESERVED1 = offsetof(struct hrt, reserved1),
  185. HRT_RESERVED2 = offsetof(struct hrt, reserved2),
  186. };
  187. struct slot_rt {
  188. u8 dev_func;
  189. u8 primary_bus;
  190. u8 secondary_bus;
  191. u8 max_bus;
  192. u16 io_base;
  193. u16 io_length;
  194. u16 mem_base;
  195. u16 mem_length;
  196. u16 pre_mem_base;
  197. u16 pre_mem_length;
  198. } __attribute__ ((packed));
  199. /* offsets to the hotplug slot resource table registers based on the above structure layout */
  200. enum slot_rt_offsets {
  201. DEV_FUNC = offsetof(struct slot_rt, dev_func),
  202. PRIMARY_BUS =  offsetof(struct slot_rt, primary_bus),
  203. SECONDARY_BUS =  offsetof(struct slot_rt, secondary_bus),
  204. MAX_BUS =  offsetof(struct slot_rt, max_bus),
  205. IO_BASE =  offsetof(struct slot_rt, io_base),
  206. IO_LENGTH =  offsetof(struct slot_rt, io_length),
  207. MEM_BASE =  offsetof(struct slot_rt, mem_base),
  208. MEM_LENGTH =  offsetof(struct slot_rt, mem_length),
  209. PRE_MEM_BASE =  offsetof(struct slot_rt, pre_mem_base),
  210. PRE_MEM_LENGTH =  offsetof(struct slot_rt, pre_mem_length),
  211. };
  212. struct pci_func {
  213. struct pci_func *next;
  214. u8 bus;
  215. u8 device;
  216. u8 function;
  217. u8 is_a_board;
  218. u16 status;
  219. u8 configured;
  220. u8 switch_save;
  221. u8 presence_save;
  222. u32 base_length[0x06];
  223. u8 base_type[0x06];
  224. u16 reserved2;
  225. u32 config_space[0x20];
  226. struct pci_resource *mem_head;
  227. struct pci_resource *p_mem_head;
  228. struct pci_resource *io_head;
  229. struct pci_resource *bus_head;
  230. struct timer_list *p_task_event;
  231. struct pci_dev* pci_dev;
  232. };
  233. #define SLOT_MAGIC 0x67267321
  234. struct slot {
  235. u32 magic;
  236. struct slot *next;
  237. u8 bus;
  238. u8 device;
  239. u8 number;
  240. u8 is_a_board;
  241. u8 configured;
  242. u8 state;
  243. u8 switch_save;
  244. u8 presence_save;
  245. u32 capabilities;
  246. u16 reserved2;
  247. struct timer_list task_event;
  248. u8 hp_slot;
  249. struct controller *ctrl;
  250. void *p_sm_slot;
  251. struct hotplug_slot *hotplug_slot;
  252. };
  253. struct pci_resource {
  254. struct pci_resource * next;
  255. u32 base;
  256. u32 length;
  257. };
  258. struct event_info {
  259. u32 event_type;
  260. u8 hp_slot;
  261. };
  262. struct controller {
  263. struct controller *next;
  264. u32 ctrl_int_comp;
  265. struct semaphore crit_sect; /* critical section semaphore */
  266. void *hpc_reg; /* cookie for our pci controller location */
  267. struct pci_resource *mem_head;
  268. struct pci_resource *p_mem_head;
  269. struct pci_resource *io_head;
  270. struct pci_resource *bus_head;
  271. struct pci_dev *pci_dev;
  272. struct pci_ops *pci_ops;
  273. struct proc_dir_entry* proc_entry;
  274. struct proc_dir_entry* proc_entry2;
  275. struct event_info event_queue[10];
  276. struct slot *slot;
  277. u8 next_event;
  278. u8 interrupt;
  279. u8 bus;
  280. u8 device;
  281. u8 function;
  282. u8 rev;
  283. u8 slot_device_offset;
  284. u8 first_slot;
  285. u8 add_support;
  286. u8 push_flag;
  287. enum pci_bus_speed speed;
  288. enum pci_bus_speed speed_capability;
  289. u8 push_button; /* 0 = no pushbutton, 1 = pushbutton present */
  290. u8 slot_switch_type; /* 0 = no switch, 1 = switch present */
  291. u8 defeature_PHP; /* 0 = PHP not supported, 1 = PHP supported */
  292. u8 alternate_base_address; /* 0 = not supported, 1 = supported */
  293. u8 pci_config_space; /* Index/data access to working registers 0 = not supported, 1 = supported */
  294. u8 pcix_speed_capability; /* PCI-X */
  295. u8 pcix_support; /* PCI-X */
  296. u16 vendor_id;
  297. char proc_name[20];
  298. char proc_name2[20];
  299. struct tq_struct int_task_event;
  300. wait_queue_head_t queue; /* sleep & wake process */
  301. };
  302. struct irq_mapping {
  303. u8 barber_pole;
  304. u8 valid_INT;
  305. u8 interrupt[4];
  306. };
  307. struct resource_lists {
  308. struct pci_resource *mem_head;
  309. struct pci_resource *p_mem_head;
  310. struct pci_resource *io_head;
  311. struct pci_resource *bus_head;
  312. struct irq_mapping *irqs;
  313. };
  314. #define ROM_PHY_ADDR 0x0F0000
  315. #define ROM_PHY_LEN 0x00ffff
  316. #define PCI_HPC_ID 0xA0F7
  317. #define PCI_SUB_HPC_ID 0xA2F7
  318. #define PCI_SUB_HPC_ID2 0xA2F8
  319. #define PCI_SUB_HPC_ID3 0xA2F9
  320. #define PCI_SUB_HPC_ID_INTC 0xA2FA
  321. #define INT_BUTTON_IGNORE 0
  322. #define INT_PRESENCE_ON 1
  323. #define INT_PRESENCE_OFF 2
  324. #define INT_SWITCH_CLOSE 3
  325. #define INT_SWITCH_OPEN 4
  326. #define INT_POWER_FAULT 5
  327. #define INT_POWER_FAULT_CLEAR 6
  328. #define INT_BUTTON_PRESS 7
  329. #define INT_BUTTON_RELEASE 8
  330. #define INT_BUTTON_CANCEL 9
  331. #define STATIC_STATE 0
  332. #define BLINKINGON_STATE 1
  333. #define BLINKINGOFF_STATE 2
  334. #define POWERON_STATE 3
  335. #define POWEROFF_STATE 4
  336. #define PCISLOT_INTERLOCK_CLOSED 0x00000001
  337. #define PCISLOT_ADAPTER_PRESENT 0x00000002
  338. #define PCISLOT_POWERED 0x00000004
  339. #define PCISLOT_66_MHZ_OPERATION 0x00000008
  340. #define PCISLOT_64_BIT_OPERATION 0x00000010
  341. #define PCISLOT_REPLACE_SUPPORTED 0x00000020
  342. #define PCISLOT_ADD_SUPPORTED 0x00000040
  343. #define PCISLOT_INTERLOCK_SUPPORTED 0x00000080
  344. #define PCISLOT_66_MHZ_SUPPORTED 0x00000100
  345. #define PCISLOT_64_BIT_SUPPORTED 0x00000200
  346. #define PCI_TO_PCI_BRIDGE_CLASS 0x00060400
  347. #define INTERLOCK_OPEN 0x00000002
  348. #define ADD_NOT_SUPPORTED 0x00000003
  349. #define CARD_FUNCTIONING 0x00000005
  350. #define ADAPTER_NOT_SAME 0x00000006
  351. #define NO_ADAPTER_PRESENT 0x00000009
  352. #define NOT_ENOUGH_RESOURCES 0x0000000B
  353. #define DEVICE_TYPE_NOT_SUPPORTED 0x0000000C
  354. #define POWER_FAILURE 0x0000000E
  355. #define REMOVE_NOT_SUPPORTED 0x00000003
  356. /*
  357.  * error Messages
  358.  */
  359. #define msg_initialization_err "Initialization failure, error=%dn"
  360. #define msg_HPC_rev_error "Unsupported revision of the PCI hot plug controller found.n"
  361. #define msg_HPC_non_compaq_or_intel "The PCI hot plug controller is not supported by this driver.n"
  362. #define msg_HPC_not_supported "this system is not supported by this version of cpqphpd. Upgrade to a newer version of cpqphpdn"
  363. #define msg_unable_to_save "unable to store PCI hot plug add resource information. This system must be rebooted before adding any PCI devices.n"
  364. #define msg_button_on "PCI slot #%d - powering on due to button press.n"
  365. #define msg_button_off "PCI slot #%d - powering off due to button press.n"
  366. #define msg_button_cancel "PCI slot #%d - action canceled due to button press.n"
  367. #define msg_button_ignore "PCI slot #%d - button press ignored.  (action in progress...)n"
  368. /* Proc functions for the hotplug controller info */
  369. #ifdef CONFIG_PROC_FS
  370. extern int cpqhp_proc_init_ctrl (void);
  371. extern int cpqhp_proc_destroy_ctrl (void);
  372. extern int cpqhp_proc_create_ctrl (struct controller *ctrl);
  373. extern int cpqhp_proc_remove_ctrl (struct controller *ctrl);
  374. #else
  375. static inline int cpqhp_proc_init_ctrl (void)
  376. {
  377. return 0;
  378. }
  379. static inline int cpqhp_proc_destroy_ctrl (void)
  380. {
  381. return 0;
  382. }
  383. static inline int cpqhp_proc_create_ctrl (struct controller *ctrl)
  384. {
  385. return 0;
  386. }
  387. static inline int cpqhp_proc_remove_ctrl (struct controller *ctrl)
  388. {
  389. return 0;
  390. }
  391. #endif
  392. /* controller functions */
  393. extern void cpqhp_pushbutton_thread (unsigned long event_pointer);
  394. extern void cpqhp_ctrl_intr (int IRQ, struct controller *ctrl_input, struct pt_regs *regs);
  395. extern int cpqhp_find_available_resources (struct controller *ctrl, void *rom_start);
  396. extern int cpqhp_event_start_thread (void);
  397. extern void cpqhp_event_stop_thread (void);
  398. extern struct pci_func *cpqhp_slot_create (unsigned char busnumber);
  399. extern struct pci_func *cpqhp_slot_find (unsigned char bus, unsigned char device, unsigned char index);
  400. extern int cpqhp_process_SI (struct controller *ctrl, struct pci_func *func);
  401. extern int cpqhp_process_SS (struct controller *ctrl, struct pci_func *func);
  402. extern int cpqhp_hardware_test (struct controller *ctrl, int test_num);
  403. /* resource functions */
  404. extern int cpqhp_resource_sort_and_combine (struct pci_resource **head);
  405. /* pci functions */
  406. extern int cpqhp_set_irq (u8 bus_num, u8 dev_num, u8 int_pin, u8 irq_num);
  407. extern int cpqhp_get_bus_dev (struct controller *ctrl, u8 *bus_num, u8 *dev_num, u8 slot);
  408. extern int cpqhp_save_config (struct controller *ctrl, int busnumber, int is_hot_plug);
  409. extern int cpqhp_save_base_addr_length (struct controller *ctrl, struct pci_func * func);
  410. extern int cpqhp_save_used_resources (struct controller *ctrl, struct pci_func * func);
  411. extern int cpqhp_configure_board (struct controller *ctrl, struct pci_func * func);
  412. extern int cpqhp_save_slot_config (struct controller *ctrl, struct pci_func * new_slot);
  413. extern int cpqhp_valid_replace (struct controller *ctrl, struct pci_func * func);
  414. extern void cpqhp_destroy_board_resources (struct pci_func * func);
  415. extern int cpqhp_return_board_resources (struct pci_func * func, struct resource_lists * resources);
  416. extern void cpqhp_destroy_resource_list (struct resource_lists * resources);
  417. extern int cpqhp_configure_device (struct controller* ctrl, struct pci_func* func);
  418. extern int cpqhp_unconfigure_device (struct pci_func* func);
  419. /* Global variables */
  420. extern int cpqhp_debug;
  421. extern struct controller *cpqhp_ctrl_list;
  422. extern struct pci_func *cpqhp_slot_list[256];
  423. /* these can be gotten rid of, but for debugging they are purty */
  424. extern u8 cpqhp_nic_irq;
  425. extern u8 cpqhp_disk_irq;
  426. /* inline functions */
  427. /* Inline functions to check the sanity of a pointer that is passed to us */
  428. static inline int slot_paranoia_check (struct slot *slot, const char *function)
  429. {
  430. if (!slot) {
  431. dbg("%s - slot == NULL", function);
  432. return -1;
  433. }
  434. if (slot->magic != SLOT_MAGIC) {
  435. dbg("%s - bad magic number for slot", function);
  436. return -1;
  437. }
  438. if (!slot->hotplug_slot) {
  439. dbg("%s - slot->hotplug_slot == NULL!", function);
  440. return -1;
  441. }
  442. return 0;
  443. }
  444. static inline struct slot *get_slot (struct hotplug_slot *hotplug_slot, const char *function)
  445. struct slot *slot;
  446. if (!hotplug_slot) {
  447. dbg("%s - hotplug_slot == NULLn", function);
  448. return NULL;
  449. }
  450. slot = (struct slot *)hotplug_slot->private;
  451. if (slot_paranoia_check (slot, function))
  452.                 return NULL;
  453. return slot;
  454. }               
  455. /*
  456.  * return_resource
  457.  *
  458.  * Puts node back in the resource list pointed to by head
  459.  *
  460.  */
  461. static inline void return_resource (struct pci_resource **head, struct pci_resource *node)
  462. {
  463. if (!node || !head)
  464. return;
  465. node->next = *head;
  466. *head = node;
  467. }
  468. static inline void set_SOGO (struct controller *ctrl)
  469. {
  470. u16 misc;
  471. misc = readw(ctrl->hpc_reg + MISC);
  472. misc = (misc | 0x0001) & 0xFFFB;
  473. writew(misc, ctrl->hpc_reg + MISC);
  474. }
  475. static inline void amber_LED_on (struct controller *ctrl, u8 slot)
  476. {
  477. u32 led_control;
  478. led_control = readl(ctrl->hpc_reg + LED_CONTROL);
  479. led_control |= (0x01010000L << slot);
  480. writel(led_control, ctrl->hpc_reg + LED_CONTROL);
  481. }
  482. static inline void amber_LED_off (struct controller *ctrl, u8 slot)
  483. {
  484. u32 led_control;
  485. led_control = readl(ctrl->hpc_reg + LED_CONTROL);
  486. led_control &= ~(0x01010000L << slot);
  487. writel(led_control, ctrl->hpc_reg + LED_CONTROL);
  488. }
  489. static inline int read_amber_LED (struct controller *ctrl, u8 slot)
  490. {
  491. u32 led_control;
  492. led_control = readl(ctrl->hpc_reg + LED_CONTROL);
  493. led_control &= (0x01010000L << slot);
  494. return led_control ? 1 : 0;
  495. }
  496. static inline void green_LED_on (struct controller *ctrl, u8 slot)
  497. {
  498. u32 led_control;
  499. led_control = readl(ctrl->hpc_reg + LED_CONTROL);
  500. led_control |= 0x0101L << slot;
  501. writel(led_control, ctrl->hpc_reg + LED_CONTROL);
  502. }
  503. static inline void green_LED_off (struct controller *ctrl, u8 slot)
  504. {
  505. u32 led_control;
  506. led_control = readl(ctrl->hpc_reg + LED_CONTROL);
  507. led_control &= ~(0x0101L << slot);
  508. writel(led_control, ctrl->hpc_reg + LED_CONTROL);
  509. }
  510. static inline void green_LED_blink (struct controller *ctrl, u8 slot)
  511. {
  512. u32 led_control;
  513. led_control = readl(ctrl->hpc_reg + LED_CONTROL);
  514. led_control |= (0x0001L << slot);
  515. writel(led_control, ctrl->hpc_reg + LED_CONTROL);
  516. }
  517. static inline void slot_disable (struct controller *ctrl, u8 slot)
  518. {
  519. u8 slot_enable;
  520. slot_enable = readb(ctrl->hpc_reg + SLOT_ENABLE);
  521. slot_enable &= ~(0x01 << slot);
  522. writeb(slot_enable, ctrl->hpc_reg + SLOT_ENABLE);
  523. }
  524. static inline void slot_enable (struct controller *ctrl, u8 slot)
  525. {
  526. u8 slot_enable;
  527. slot_enable = readb(ctrl->hpc_reg + SLOT_ENABLE);
  528. slot_enable |= (0x01 << slot);
  529. writeb(slot_enable, ctrl->hpc_reg + SLOT_ENABLE);
  530. }
  531. static inline u8 is_slot_enabled (struct controller *ctrl, u8 slot)
  532. {
  533. u8 slot_enable;
  534. slot_enable = readb(ctrl->hpc_reg + SLOT_ENABLE);
  535. slot_enable &= (0x01 << slot);
  536. return slot_enable ? 1 : 0;
  537. }
  538. static inline u8 read_slot_enable (struct controller *ctrl)
  539. {
  540. return readb(ctrl->hpc_reg + SLOT_ENABLE);
  541. }
  542. static inline u8 get_controller_speed (struct controller *ctrl)
  543. {
  544. u16 misc;
  545. misc = readw(ctrl->hpc_reg + MISC);
  546. return (misc & 0x0800) ? PCI_SPEED_66MHz : PCI_SPEED_33MHz;
  547. }
  548. static inline void enable_slot_power (struct controller *ctrl, u8 slot)
  549. {
  550. u8 slot_power;
  551. slot_power = readb(ctrl->hpc_reg + SLOT_POWER);
  552. slot_power |= (0x01 << slot);
  553. writeb(slot_power, ctrl->hpc_reg + SLOT_POWER);
  554. }
  555. static inline void disable_slot_power (struct controller *ctrl, u8 slot)
  556. {
  557. u8 slot_power;
  558. slot_power = readb(ctrl->hpc_reg + SLOT_POWER);
  559. slot_power &= ~(0x01 << slot);
  560. writeb(slot_power, ctrl->hpc_reg + SLOT_POWER);
  561. }
  562. static inline int cpq_get_attention_status (struct controller *ctrl, struct slot *slot)
  563. {
  564. u8 hp_slot;
  565. if (slot == NULL)
  566. return 1;
  567. hp_slot = slot->device - ctrl->slot_device_offset;
  568. return read_amber_LED (ctrl, hp_slot);
  569. }
  570. static inline int get_slot_enabled (struct controller *ctrl, struct slot *slot)
  571. {
  572. u8 hp_slot;
  573. if (slot == NULL)
  574. return 1;
  575. hp_slot = slot->device - ctrl->slot_device_offset;
  576. return is_slot_enabled (ctrl, hp_slot);
  577. }
  578. static inline int cpq_get_latch_status (struct controller *ctrl, struct slot *slot)
  579. {
  580. u32 status;
  581. u8 hp_slot;
  582. if (slot == NULL)
  583. return 1;
  584. hp_slot = slot->device - ctrl->slot_device_offset;
  585. dbg(__FUNCTION__": slot->device = %d, ctrl->slot_device_offset = %d n", slot->device, ctrl->slot_device_offset);
  586. status = (readl(ctrl->hpc_reg + INT_INPUT_CLEAR) & (0x01L << hp_slot));
  587. return(status == 0) ? 1 : 0;
  588. }
  589. static inline int get_presence_status (struct controller *ctrl, struct slot *slot)
  590. {
  591. int presence_save = 0;
  592. u8 hp_slot;
  593. u32 tempdword;
  594. if (slot == NULL)
  595. return 0;
  596. hp_slot = slot->device - ctrl->slot_device_offset;
  597. tempdword = readl(ctrl->hpc_reg + INT_INPUT_CLEAR);
  598. presence_save = (int) ((((~tempdword) >> 23) | ((~tempdword) >> 15)) >> hp_slot) & 0x02;
  599. return presence_save;
  600. }
  601. #define SLOT_NAME_SIZE 10
  602. static inline void make_slot_name (char *buffer, int buffer_size, struct slot *slot)
  603. {
  604. snprintf (buffer, buffer_size, "%d", slot->number);
  605. }
  606. static inline int wait_for_ctrl_irq (struct controller *ctrl)
  607. {
  608.         DECLARE_WAITQUEUE(wait, current);
  609. int retval = 0;
  610. dbg(__FUNCTION__" - startn");
  611. add_wait_queue(&ctrl->queue, &wait);
  612. set_current_state(TASK_INTERRUPTIBLE);
  613. /* Sleep for up to 1 second to wait for the LED to change. */
  614. schedule_timeout(1*HZ);
  615. set_current_state(TASK_RUNNING);
  616. remove_wait_queue(&ctrl->queue, &wait);
  617. if (signal_pending(current))
  618. retval =  -EINTR;
  619. dbg(__FUNCTION__" - endn");
  620. return retval;
  621. }
  622. #endif