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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __IBMPHP_H
  2. #define __IBMPHP_H
  3. /*
  4.  * IBM Hot Plug Controller Driver
  5.  *
  6.  * Written By: Jyoti Shah, Tong Yu, Irene Zubarev, IBM Corporation
  7.  *
  8.  * Copyright (c) 2001 Greg Kroah-Hartman (greg@kroah.com)
  9.  * Copyright (c) 2001,2002 IBM Corp.
  10.  *
  11.  * All rights reserved.
  12.  *
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or (at
  16.  * your option) any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful, but
  19.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  21.  * NON INFRINGEMENT.  See the GNU General Public License for more
  22.  * details.
  23.  *
  24.  * You should have received a copy of the GNU General Public License
  25.  * along with this program; if not, write to the Free Software
  26.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  27.  *
  28.  * Send feedback to <gregkh@us.ibm.com>
  29.  *
  30.  */
  31. #include "pci_hotplug.h"
  32. extern int ibmphp_debug;
  33. #if !defined(CONFIG_HOTPLUG_PCI_IBM_MODULE)
  34. #define MY_NAME "ibmphpd"
  35. #else
  36. #define MY_NAME THIS_MODULE->name
  37. #endif
  38. #define debug(fmt, arg...) do { if (ibmphp_debug == 1) printk(KERN_DEBUG "%s: " fmt , MY_NAME , ## arg); } while (0)
  39. #define debug_pci(fmt, arg...) do { if (ibmphp_debug) printk(KERN_DEBUG "%s: " fmt , MY_NAME , ## arg); } while (0)
  40. #define err(format, arg...) printk(KERN_ERR "%s: " format , MY_NAME , ## arg)
  41. #define info(format, arg...) printk(KERN_INFO "%s: " format , MY_NAME , ## arg)
  42. #define warn(format, arg...) printk(KERN_WARNING "%s: " format , MY_NAME , ## arg)
  43. /* EBDA stuff */
  44. /***********************************************************
  45. * SLOT CAPABILITY                                          *
  46. ***********************************************************/
  47. #define EBDA_SLOT_133_MAX 0x20
  48. #define EBDA_SLOT_100_MAX 0x10
  49. #define EBDA_SLOT_66_MAX 0x02
  50. #define EBDA_SLOT_PCIX_CAP 0x08
  51. /************************************************************
  52. *  RESOURE TYPE                                             *
  53. ************************************************************/
  54. #define EBDA_RSRC_TYPE_MASK 0x03
  55. #define EBDA_IO_RSRC_TYPE 0x00
  56. #define EBDA_MEM_RSRC_TYPE 0x01
  57. #define EBDA_PFM_RSRC_TYPE 0x03
  58. #define EBDA_RES_RSRC_TYPE 0x02
  59. /*************************************************************
  60. *  IO RESTRICTION TYPE                                       *
  61. *************************************************************/
  62. #define EBDA_IO_RESTRI_MASK 0x0c
  63. #define EBDA_NO_RESTRI 0x00
  64. #define EBDA_AVO_VGA_ADDR 0x04
  65. #define EBDA_AVO_VGA_ADDR_AND_ALIA 0x08
  66. #define EBDA_AVO_ISA_ADDR 0x0c
  67. /**************************************************************
  68. *  DEVICE TYPE DEF                                            *
  69. **************************************************************/
  70. #define EBDA_DEV_TYPE_MASK 0x10
  71. #define EBDA_PCI_DEV 0x10
  72. #define EBDA_NON_PCI_DEV 0x00
  73. /***************************************************************
  74. *  PRIMARY DEF DEFINITION                                      *
  75. ***************************************************************/
  76. #define EBDA_PRI_DEF_MASK 0x20
  77. #define EBDA_PRI_PCI_BUS_INFO 0x20
  78. #define EBDA_NORM_DEV_RSRC_INFO 0x00
  79. //--------------------------------------------------------------
  80. // RIO TABLE DATA STRUCTURE
  81. //--------------------------------------------------------------
  82. struct rio_table_hdr {
  83. u8 ver_num; 
  84. u8 scal_count;
  85. u8 riodev_count;
  86. u16 offset;
  87. };
  88. //-------------------------------------------------------------
  89. // SCALABILITY DETAIL
  90. //-------------------------------------------------------------
  91. struct scal_detail {
  92. u8 node_id;
  93. u32 cbar;
  94. u8 port0_node_connect;
  95. u8 port0_port_connect;
  96. u8 port1_node_connect;
  97. u8 port1_port_connect;
  98. u8 port2_node_connect;
  99. u8 port2_port_connect;
  100. u8 chassis_num;
  101. // struct list_head scal_detail_list;
  102. };
  103. //--------------------------------------------------------------
  104. // RIO DETAIL 
  105. //--------------------------------------------------------------
  106. struct rio_detail {
  107. u8 rio_node_id;
  108. u32 bbar;
  109. u8 rio_type;
  110. u8 owner_id;
  111. u8 port0_node_connect;
  112. u8 port0_port_connect;
  113. u8 port1_node_connect;
  114. u8 port1_port_connect;
  115. u8 first_slot_num;
  116. u8 status;
  117. u8 wpindex;
  118. u8 chassis_num;
  119. struct list_head rio_detail_list;
  120. };
  121. struct opt_rio {
  122. u8 rio_type;
  123. u8 chassis_num;
  124. u8 first_slot_num;
  125. u8 middle_num;
  126. struct list_head opt_rio_list;
  127. };
  128. struct opt_rio_lo {
  129. u8 rio_type;
  130. u8 chassis_num;
  131. u8 first_slot_num;
  132. u8 middle_num;
  133. u8 pack_count;
  134. struct list_head opt_rio_lo_list;
  135. };
  136. /****************************************************************
  137. *  HPC DESCRIPTOR NODE                                          *
  138. ****************************************************************/
  139. struct ebda_hpc_list {
  140. u8 format;
  141. u16 num_ctlrs;
  142. short phys_addr;
  143. //      struct list_head ebda_hpc_list;
  144. };
  145. /*****************************************************************
  146. *   IN HPC DATA STRUCTURE, THE ASSOCIATED SLOT AND BUS           *
  147. *   STRUCTURE                                                    *
  148. *****************************************************************/
  149. struct ebda_hpc_slot {
  150. u8 slot_num;
  151. u32 slot_bus_num;
  152. u8 ctl_index;
  153. u8 slot_cap;
  154. };
  155. struct ebda_hpc_bus {
  156. u32 bus_num;
  157. u8 slots_at_33_conv;
  158. u8 slots_at_66_conv;
  159. u8 slots_at_66_pcix;
  160. u8 slots_at_100_pcix;
  161. u8 slots_at_133_pcix;
  162. };
  163. /********************************************************************
  164. *   THREE TYPE OF HOT PLUG CONTROLER                                *
  165. ********************************************************************/
  166. struct isa_ctlr_access {
  167. u16 io_start;
  168. u16 io_end;
  169. };
  170. struct pci_ctlr_access {
  171. u8 bus;
  172. u8 dev_fun;
  173. };
  174. struct wpeg_i2c_ctlr_access {
  175. ulong wpegbbar;
  176. u8 i2c_addr;
  177. };
  178. #define HPC_DEVICE_ID 0x0246
  179. #define HPC_SUBSYSTEM_ID 0x0247
  180. #define HPC_PCI_OFFSET 0x40
  181. /*************************************************************************
  182. *   RSTC DESCRIPTOR NODE                                                 *
  183. *************************************************************************/
  184. struct ebda_rsrc_list {
  185. u8 format;
  186. u16 num_entries;
  187. u16 phys_addr;
  188. struct ebda_rsrc_list *next;
  189. };
  190. /***************************************************************************
  191. *   PCI RSRC NODE                                                          *
  192. ***************************************************************************/
  193. struct ebda_pci_rsrc {
  194. u8 rsrc_type;
  195. u8 bus_num;
  196. u8 dev_fun;
  197. u32 start_addr;
  198. u32 end_addr;
  199. u8 marked; /* for NVRAM */
  200. struct list_head ebda_pci_rsrc_list;
  201. };
  202. /***********************************************************
  203. * BUS_INFO DATE STRUCTURE                                  *
  204. ***********************************************************/
  205. struct bus_info {
  206. u8 slot_min;
  207. u8 slot_max;
  208. u8 slot_count;
  209. u8 busno;
  210. u8 controller_id;
  211. u8 current_speed;
  212. u8 current_bus_mode;
  213. u8 index;
  214. u8 slots_at_33_conv;
  215. u8 slots_at_66_conv;
  216. u8 slots_at_66_pcix;
  217. u8 slots_at_100_pcix;
  218. u8 slots_at_133_pcix;
  219. struct list_head bus_info_list;
  220. };
  221. /***********************************************************
  222. * GLOBAL VARIABLES                                         *
  223. ***********************************************************/
  224. extern struct list_head ibmphp_ebda_pci_rsrc_head;
  225. extern struct list_head ibmphp_slot_head;
  226. extern struct list_head ibmphp_res_head;
  227. /***********************************************************
  228. * FUNCTION PROTOTYPES                                      *
  229. ***********************************************************/
  230. extern void ibmphp_free_ebda_hpc_queue (void);
  231. extern int ibmphp_access_ebda (void);
  232. extern struct slot *ibmphp_get_slot_from_physical_num (u8);
  233. extern int ibmphp_get_total_hp_slots (void);
  234. extern void ibmphp_free_ibm_slot (struct slot *);
  235. extern void ibmphp_free_bus_info_queue (void);
  236. extern void ibmphp_free_ebda_pci_rsrc_queue (void);
  237. extern struct bus_info *ibmphp_find_same_bus_num (u32);
  238. extern int ibmphp_get_bus_index (u8);
  239. extern u16 ibmphp_get_total_controllers (void);
  240. extern int ibmphp_register_pci (void);
  241. /* passed parameters */
  242. #define MEM 0
  243. #define IO 1
  244. #define PFMEM 2
  245. /* bit masks */
  246. #define RESTYPE 0x03
  247. #define IOMASK 0x00 /* will need to take its complement */
  248. #define MMASK 0x01
  249. #define PFMASK 0x03
  250. #define PCIDEVMASK 0x10 /* we should always have PCI devices */
  251. #define PRIMARYBUSMASK 0x20
  252. /* pci specific defines */
  253. #define PCI_VENDOR_ID_NOTVALID 0xFFFF
  254. #define PCI_HEADER_TYPE_MULTIDEVICE 0x80
  255. #define PCI_HEADER_TYPE_MULTIBRIDGE 0x81
  256. #define LATENCY 0x64
  257. #define CACHE 64
  258. #define DEVICEENABLE 0x015F /* CPQ has 0x0157 */
  259. #define IOBRIDGE 0x1000 /* 4k */
  260. #define MEMBRIDGE 0x100000 /* 1M */
  261. /* irqs */
  262. #define SCSI_IRQ 0x09
  263. #define LAN_IRQ 0x0A
  264. #define OTHER_IRQ 0x0B
  265. /* Data Structures */
  266. /* type is of the form x x xx xx
  267.  *                     | |  |  |_ 00 - I/O, 01 - Memory, 11 - PFMemory
  268.  *                     | |  - 00 - No Restrictions, 01 - Avoid VGA, 10 - Avoid
  269.  *                     | |    VGA and their aliases, 11 - Avoid ISA
  270.  *                     | - 1 - PCI device, 0 - non pci device
  271.  *                     - 1 - Primary PCI Bus Information (0 if Normal device)
  272.  * the IO restrictions [2:3] are only for primary buses
  273.  */
  274. /* we need this struct because there could be several resource blocks
  275.  * allocated per primary bus in the EBDA
  276.  */
  277. struct range_node {
  278. int rangeno;
  279. u32 start;
  280. u32 end;
  281. struct range_node *next;
  282. };
  283. struct bus_node {
  284. u8 busno;
  285. int noIORanges;
  286. struct range_node *rangeIO;
  287. int noMemRanges;
  288. struct range_node *rangeMem;
  289. int noPFMemRanges;
  290. struct range_node *rangePFMem;
  291. int needIOUpdate;
  292. int needMemUpdate;
  293. int needPFMemUpdate;
  294. struct resource_node *firstIO; /* first IO resource on the Bus */
  295. struct resource_node *firstMem; /* first memory resource on the Bus */
  296. struct resource_node *firstPFMem; /* first prefetchable memory resource on the Bus */
  297. struct resource_node *firstPFMemFromMem; /* when run out of pfmem available, taking from Mem */
  298. struct list_head bus_list;
  299. };
  300. struct resource_node {
  301. int rangeno;
  302. u8 busno;
  303. u8 devfunc;
  304. u32 start;
  305. u32 end;
  306. u32 len;
  307. int type; /* MEM, IO, PFMEM */
  308. u8 fromMem; /* this is to indicate that the range is from
  309.  * from the Memory bucket rather than from PFMem */
  310. struct resource_node *next;
  311. struct resource_node *nextRange; /* for the other mem range on bus */
  312. };
  313. struct res_needed {
  314. u32 mem;
  315. u32 pfmem;
  316. u32 io;
  317. u8 not_correct; /* needed for return */
  318. int devices[32]; /* for device numbers behind this bridge */
  319. };
  320. /* functions */
  321. extern int ibmphp_rsrc_init (void);
  322. extern int ibmphp_add_resource (struct resource_node *);
  323. extern int ibmphp_remove_resource (struct resource_node *);
  324. extern int ibmphp_find_resource (struct bus_node *, u32, struct resource_node **, int);
  325. extern int ibmphp_check_resource (struct resource_node *, u8);
  326. extern int ibmphp_remove_bus (struct bus_node *, u8);
  327. extern void ibmphp_free_resources (void);
  328. extern int ibmphp_add_pfmem_from_mem (struct resource_node *);
  329. extern struct bus_node *ibmphp_find_res_bus (u8);
  330. extern void ibmphp_print_test (void); /* for debugging purposes */
  331. extern void ibmphp_hpc_initvars (void);
  332. extern int ibmphp_hpc_readslot (struct slot *, u8, u8 *);
  333. extern int ibmphp_hpc_writeslot (struct slot *, u8);
  334. extern void ibmphp_lock_operations (void);
  335. extern void ibmphp_unlock_operations (void);
  336. extern int ibmphp_hpc_fillhpslotinfo (struct hotplug_slot *);
  337. extern int ibmphp_hpc_start_poll_thread (void);
  338. extern void ibmphp_hpc_stop_poll_thread (void);
  339. //----------------------------------------------------------------------------
  340. //----------------------------------------------------------------------------
  341. // HPC return codes
  342. //----------------------------------------------------------------------------
  343. #define FALSE 0x00
  344. #define TRUE 0x01
  345. #define HPC_ERROR 0xFF
  346. //-----------------------------------------------------------------------------
  347. // BUS INFO
  348. //-----------------------------------------------------------------------------
  349. #define BUS_SPEED 0x30
  350. #define BUS_MODE 0x40
  351. #define BUS_MODE_PCIX 0x01
  352. #define BUS_MODE_PCI 0x00
  353. #define BUS_SPEED_2 0x20
  354. #define BUS_SPEED_1 0x10
  355. #define BUS_SPEED_33 0x00
  356. #define BUS_SPEED_66 0x01
  357. #define BUS_SPEED_100 0x02
  358. #define BUS_SPEED_133 0x03
  359. #define BUS_SPEED_66PCIX 0x04
  360. #define BUS_SPEED_66UNKNOWN 0x05
  361. #define BUS_STATUS_AVAILABLE 0x01
  362. #define BUS_CONTROL_AVAILABLE 0x02
  363. #define SLOT_LATCH_REGS_SUPPORTED 0x10
  364. #define PRGM_MODEL_REV_LEVEL 0xF0
  365. #define MAX_ADAPTER_NONE 0x09
  366. //----------------------------------------------------------------------------
  367. // HPC 'write' operations/commands
  368. //----------------------------------------------------------------------------
  369. // Command Code State Write to reg
  370. // Machine at index
  371. //------------------------- ---- ------- ------------
  372. #define HPC_CTLR_ENABLEIRQ 0x00 // N 15
  373. #define HPC_CTLR_DISABLEIRQ 0x01 // N 15
  374. #define HPC_SLOT_OFF 0x02 // Y 0-14
  375. #define HPC_SLOT_ON 0x03 // Y 0-14
  376. #define HPC_SLOT_ATTNOFF 0x04 // N 0-14
  377. #define HPC_SLOT_ATTNON 0x05 // N 0-14
  378. #define HPC_CTLR_CLEARIRQ 0x06 // N 15
  379. #define HPC_CTLR_RESET 0x07 // Y 15
  380. #define HPC_CTLR_IRQSTEER 0x08 // N 15
  381. #define HPC_BUS_33CONVMODE 0x09 // Y 31-34
  382. #define HPC_BUS_66CONVMODE 0x0A // Y 31-34
  383. #define HPC_BUS_66PCIXMODE 0x0B // Y 31-34
  384. #define HPC_BUS_100PCIXMODE 0x0C // Y 31-34
  385. #define HPC_BUS_133PCIXMODE 0x0D // Y 31-34
  386. #define HPC_ALLSLOT_OFF 0x11 // Y 15
  387. #define HPC_ALLSLOT_ON 0x12 // Y 15
  388. #define HPC_SLOT_BLINKLED 0x13 // N 0-14
  389. //----------------------------------------------------------------------------
  390. // read commands
  391. //----------------------------------------------------------------------------
  392. #define READ_SLOTSTATUS 0x01
  393. #define READ_EXTSLOTSTATUS 0x02
  394. #define READ_BUSSTATUS 0x03
  395. #define READ_CTLRSTATUS 0x04
  396. #define READ_ALLSTAT 0x05
  397. #define READ_ALLSLOT 0x06
  398. #define READ_SLOTLATCHLOWREG 0x07
  399. #define READ_REVLEVEL 0x08
  400. #define READ_HPCOPTIONS 0x09
  401. //----------------------------------------------------------------------------
  402. // slot status
  403. //----------------------------------------------------------------------------
  404. #define HPC_SLOT_POWER 0x01
  405. #define HPC_SLOT_CONNECT 0x02
  406. #define HPC_SLOT_ATTN 0x04
  407. #define HPC_SLOT_PRSNT2 0x08
  408. #define HPC_SLOT_PRSNT1 0x10
  409. #define HPC_SLOT_PWRGD 0x20
  410. #define HPC_SLOT_BUS_SPEED 0x40
  411. #define HPC_SLOT_LATCH 0x80
  412. //----------------------------------------------------------------------------
  413. // HPC_SLOT_POWER status return codes
  414. //----------------------------------------------------------------------------
  415. #define HPC_SLOT_POWER_OFF 0x00
  416. #define HPC_SLOT_POWER_ON 0x01
  417. //----------------------------------------------------------------------------
  418. // HPC_SLOT_CONNECT status return codes
  419. //----------------------------------------------------------------------------
  420. #define HPC_SLOT_CONNECTED 0x00
  421. #define HPC_SLOT_DISCONNECTED 0x01
  422. //----------------------------------------------------------------------------
  423. // HPC_SLOT_ATTN status return codes
  424. //----------------------------------------------------------------------------
  425. #define HPC_SLOT_ATTN_OFF 0x00
  426. #define HPC_SLOT_ATTN_ON 0x01
  427. #define HPC_SLOT_ATTN_BLINK 0x02
  428. //----------------------------------------------------------------------------
  429. // HPC_SLOT_PRSNT status return codes
  430. //----------------------------------------------------------------------------
  431. #define HPC_SLOT_EMPTY 0x00
  432. #define HPC_SLOT_PRSNT_7 0x01
  433. #define HPC_SLOT_PRSNT_15 0x02
  434. #define HPC_SLOT_PRSNT_25 0x03
  435. //----------------------------------------------------------------------------
  436. // HPC_SLOT_PWRGD status return codes
  437. //----------------------------------------------------------------------------
  438. #define HPC_SLOT_PWRGD_FAULT_NONE 0x00
  439. #define HPC_SLOT_PWRGD_GOOD 0x01
  440. //----------------------------------------------------------------------------
  441. // HPC_SLOT_BUS_SPEED status return codes
  442. //----------------------------------------------------------------------------
  443. #define HPC_SLOT_BUS_SPEED_OK 0x00
  444. #define HPC_SLOT_BUS_SPEED_MISM 0x01
  445. //----------------------------------------------------------------------------
  446. // HPC_SLOT_LATCH status return codes
  447. //----------------------------------------------------------------------------
  448. #define HPC_SLOT_LATCH_OPEN 0x01 // NOTE : in PCI spec bit off = open
  449. #define HPC_SLOT_LATCH_CLOSED 0x00 // NOTE : in PCI spec bit on  = closed
  450. //----------------------------------------------------------------------------
  451. // extended slot status
  452. //----------------------------------------------------------------------------
  453. #define HPC_SLOT_PCIX 0x01
  454. #define HPC_SLOT_SPEED1 0x02
  455. #define HPC_SLOT_SPEED2 0x04
  456. #define HPC_SLOT_BLINK_ATTN 0x08
  457. #define HPC_SLOT_RSRVD1 0x10
  458. #define HPC_SLOT_RSRVD2 0x20
  459. #define HPC_SLOT_BUS_MODE 0x40
  460. #define HPC_SLOT_RSRVD3 0x80
  461. //----------------------------------------------------------------------------
  462. // HPC_XSLOT_PCIX_CAP status return codes
  463. //----------------------------------------------------------------------------
  464. #define HPC_SLOT_PCIX_NO 0x00
  465. #define HPC_SLOT_PCIX_YES 0x01
  466. //----------------------------------------------------------------------------
  467. // HPC_XSLOT_SPEED status return codes
  468. //----------------------------------------------------------------------------
  469. #define HPC_SLOT_SPEED_33 0x00
  470. #define HPC_SLOT_SPEED_66 0x01
  471. #define HPC_SLOT_SPEED_133 0x02
  472. //----------------------------------------------------------------------------
  473. // HPC_XSLOT_ATTN_BLINK status return codes
  474. //----------------------------------------------------------------------------
  475. #define HPC_SLOT_ATTN_BLINK_OFF 0x00
  476. #define HPC_SLOT_ATTN_BLINK_ON 0x01
  477. //----------------------------------------------------------------------------
  478. // HPC_XSLOT_BUS_MODE status return codes
  479. //----------------------------------------------------------------------------
  480. #define HPC_SLOT_BUS_MODE_OK 0x00
  481. #define HPC_SLOT_BUS_MODE_MISM 0x01
  482. //----------------------------------------------------------------------------
  483. // Controller status
  484. //----------------------------------------------------------------------------
  485. #define HPC_CTLR_WORKING 0x01
  486. #define HPC_CTLR_FINISHED 0x02
  487. #define HPC_CTLR_RESULT0 0x04
  488. #define HPC_CTLR_RESULT1 0x08
  489. #define HPC_CTLR_RESULE2 0x10
  490. #define HPC_CTLR_RESULT3 0x20
  491. #define HPC_CTLR_IRQ_ROUTG 0x40
  492. #define HPC_CTLR_IRQ_PENDG 0x80
  493. //----------------------------------------------------------------------------
  494. // HPC_CTLR_WROKING status return codes
  495. //----------------------------------------------------------------------------
  496. #define HPC_CTLR_WORKING_NO 0x00
  497. #define HPC_CTLR_WORKING_YES 0x01
  498. //----------------------------------------------------------------------------
  499. // HPC_CTLR_FINISHED status return codes
  500. //----------------------------------------------------------------------------
  501. #define HPC_CTLR_FINISHED_NO 0x00
  502. #define HPC_CTLR_FINISHED_YES 0x01
  503. //----------------------------------------------------------------------------
  504. // HPC_CTLR_RESULT status return codes
  505. //----------------------------------------------------------------------------
  506. #define HPC_CTLR_RESULT_SUCCESS 0x00
  507. #define HPC_CTLR_RESULT_FAILED 0x01
  508. #define HPC_CTLR_RESULT_RSVD 0x02
  509. #define HPC_CTLR_RESULT_NORESP 0x03
  510. //----------------------------------------------------------------------------
  511. // macro for slot info
  512. //----------------------------------------------------------------------------
  513. #define SLOT_POWER(s) ((u8) ((s & HPC_SLOT_POWER) 
  514. ? HPC_SLOT_POWER_ON : HPC_SLOT_POWER_OFF))
  515. #define SLOT_CONNECT(s) ((u8) ((s & HPC_SLOT_CONNECT) 
  516. ? HPC_SLOT_DISCONNECTED : HPC_SLOT_CONNECTED))
  517. #define SLOT_ATTN(s,es) ((u8) ((es & HPC_SLOT_BLINK_ATTN) 
  518. ? HPC_SLOT_ATTN_BLINK 
  519. : ((s & HPC_SLOT_ATTN) ? HPC_SLOT_ATTN_ON : HPC_SLOT_ATTN_OFF)))
  520. #define SLOT_PRESENT(s) ((u8) ((s & HPC_SLOT_PRSNT1) 
  521. ? ((s & HPC_SLOT_PRSNT2) ? HPC_SLOT_EMPTY : HPC_SLOT_PRSNT_15) 
  522. : ((s & HPC_SLOT_PRSNT2) ? HPC_SLOT_PRSNT_25 : HPC_SLOT_PRSNT_7)))
  523. #define SLOT_PWRGD(s) ((u8) ((s & HPC_SLOT_PWRGD) 
  524. ? HPC_SLOT_PWRGD_GOOD : HPC_SLOT_PWRGD_FAULT_NONE))
  525. #define SLOT_BUS_SPEED(s) ((u8) ((s & HPC_SLOT_BUS_SPEED) 
  526. ? HPC_SLOT_BUS_SPEED_MISM : HPC_SLOT_BUS_SPEED_OK))
  527. #define SLOT_LATCH(s) ((u8) ((s & HPC_SLOT_LATCH) 
  528. ? HPC_SLOT_LATCH_CLOSED : HPC_SLOT_LATCH_OPEN))
  529. #define SLOT_PCIX(es) ((u8) ((es & HPC_SLOT_PCIX) 
  530. ? HPC_SLOT_PCIX_YES : HPC_SLOT_PCIX_NO))
  531. #define SLOT_SPEED(es) ((u8) ((es & HPC_SLOT_SPEED2) 
  532. ? ((es & HPC_SLOT_SPEED1) ? HPC_SLOT_SPEED_133   
  533. : HPC_SLOT_SPEED_66)   
  534. : HPC_SLOT_SPEED_33))
  535. #define SLOT_BUS_MODE(es) ((u8) ((es & HPC_SLOT_BUS_MODE) 
  536. ? HPC_SLOT_BUS_MODE_MISM : HPC_SLOT_BUS_MODE_OK))
  537. //--------------------------------------------------------------------------
  538. // macro for bus info
  539. //---------------------------------------------------------------------------
  540. #define CURRENT_BUS_SPEED(s) ((u8) (s & BUS_SPEED_2) 
  541. ? ((s & BUS_SPEED_1) ? BUS_SPEED_133 : BUS_SPEED_100) 
  542. : ((s & BUS_SPEED_1) ? BUS_SPEED_66 : BUS_SPEED_33))
  543. #define CURRENT_BUS_MODE(s) ((u8) (s & BUS_MODE) ? BUS_MODE_PCIX : BUS_MODE_PCI)
  544. #define READ_BUS_STATUS(s) ((u8) (s->options & BUS_STATUS_AVAILABLE))
  545. #define READ_BUS_MODE(s) ((s->revision & PRGM_MODEL_REV_LEVEL) >= 0x20)
  546. #define SET_BUS_STATUS(s) ((u8) (s->options & BUS_CONTROL_AVAILABLE))
  547. #define READ_SLOT_LATCH(s) ((u8) (s->options & SLOT_LATCH_REGS_SUPPORTED))
  548. //----------------------------------------------------------------------------
  549. // macro for controller info
  550. //----------------------------------------------------------------------------
  551. #define CTLR_WORKING(c) ((u8) ((c & HPC_CTLR_WORKING) 
  552. ? HPC_CTLR_WORKING_YES : HPC_CTLR_WORKING_NO))
  553. #define CTLR_FINISHED(c) ((u8) ((c & HPC_CTLR_FINISHED) 
  554. ? HPC_CTLR_FINISHED_YES : HPC_CTLR_FINISHED_NO))
  555. #define CTLR_RESULT(c) ((u8) ((c & HPC_CTLR_RESULT1)  
  556. ? ((c & HPC_CTLR_RESULT0) ? HPC_CTLR_RESULT_NORESP 
  557. : HPC_CTLR_RESULT_RSVD)  
  558. : ((c & HPC_CTLR_RESULT0) ? HPC_CTLR_RESULT_FAILED 
  559. : HPC_CTLR_RESULT_SUCCESS)))
  560. // command that affect the state machine of HPC
  561. #define NEEDTOCHECK_CMDSTATUS(c) ((c == HPC_SLOT_OFF)        || 
  562.   (c == HPC_SLOT_ON)         || 
  563.   (c == HPC_CTLR_RESET)      || 
  564.   (c == HPC_BUS_33CONVMODE)  || 
  565.   (c == HPC_BUS_66CONVMODE)  || 
  566.   (c == HPC_BUS_66PCIXMODE)  || 
  567.   (c == HPC_BUS_100PCIXMODE) || 
  568.   (c == HPC_BUS_133PCIXMODE) || 
  569.   (c == HPC_ALLSLOT_OFF)     || 
  570.   (c == HPC_ALLSLOT_ON))
  571. /* Core part of the driver */
  572. #define ENABLE 1
  573. #define DISABLE 0
  574. #define ADD 0
  575. #define REMOVE 1
  576. #define DETAIL 2
  577. #define MAX_OPS 3
  578. #define CARD_INFO 0x07
  579. #define PCIX133 0x07
  580. #define PCIX66 0x05
  581. #define PCI66 0x04
  582. extern struct pci_ops *ibmphp_pci_root_ops;
  583. /* Variables */
  584. struct pci_func {
  585. struct pci_dev *dev; /* from the OS */
  586. u8 busno;
  587. u8 device;
  588. u8 function;
  589. struct resource_node *io[6];
  590. struct resource_node *mem[6];
  591. struct resource_node *pfmem[6];
  592. struct pci_func *next;
  593. int devices[32]; /* for bridge config */
  594. u8 irq[4]; /* for interrupt config */
  595. u8 bus; /* flag for unconfiguring, to say if PPB */
  596. };
  597. struct slot {
  598. u8 bus;
  599. u8 device;
  600. u8 number;
  601. u8 real_physical_slot_num;
  602. char name[100];
  603. u32 capabilities;
  604. u8 supported_speed;
  605. u8 supported_bus_mode;
  606. struct hotplug_slot *hotplug_slot;
  607. struct controller *ctrl;
  608. struct pci_func *func;
  609. u8 irq[4];
  610. u8 flag; /* this is for disable slot and polling */
  611. int bit_mode; /* 0 = 32, 1 = 64 */
  612. u8 ctlr_index;
  613. struct bus_info *bus_on;
  614. struct list_head ibm_slot_list;
  615. u8 status;
  616. u8 ext_status;
  617. u8 busstatus;
  618. };
  619. struct controller {
  620. struct ebda_hpc_slot *slots;
  621. struct ebda_hpc_bus *buses;
  622. struct pci_dev *ctrl_dev; /* in case where controller is PCI */
  623. u8 starting_slot_num; /* starting and ending slot #'s this ctrl controls*/
  624. u8 ending_slot_num;
  625. u8 revision;
  626. u8 options; /* which options HPC supports */
  627. u8 status;
  628. u8 ctlr_id;
  629. u8 slot_count;
  630. u8 bus_count;
  631. u8 ctlr_relative_id;
  632. u32 irq;
  633. union {
  634. struct isa_ctlr_access isa_ctlr;
  635. struct pci_ctlr_access pci_ctlr;
  636. struct wpeg_i2c_ctlr_access wpeg_ctlr;
  637. } u;
  638. u8 ctlr_type;
  639. struct list_head ebda_hpc_list;
  640. };
  641. /* Functions */
  642. extern int ibmphp_init_devno (struct slot **); /* This function is called from EBDA, so we need it not be static */
  643. extern int ibmphp_disable_slot (struct hotplug_slot *); /* This function is called from HPC, so we need it to not be static */
  644. extern int ibmphp_update_slot_info (struct slot *); /* This function is called from HPC, so we need it to not be be static */
  645. extern int ibmphp_configure_card (struct pci_func *, u8);
  646. extern int ibmphp_unconfigure_card (struct slot **, int);
  647. extern struct hotplug_slot_ops ibmphp_hotplug_slot_ops;
  648. static inline void long_delay (int delay)
  649. {
  650. set_current_state (TASK_INTERRUPTIBLE);
  651. schedule_timeout (delay);
  652. }
  653. #endif //__IBMPHP_H