Linux Audio

Check our new training course

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