Home | History | Annotate | Line # | Download | only in dev
psychoreg.h revision 1.13
      1  1.13       wiz /*	$NetBSD: psychoreg.h,v 1.13 2006/02/25 00:58:35 wiz Exp $ */
      2   1.1       mrg 
      3   1.1       mrg /*
      4   1.2       mrg  * Copyright (c) 1998, 1999 Eduardo E. Horvath
      5   1.2       mrg  * Copyright (c) 1999 Matthew R. Green
      6   1.2       mrg  * All rights reserved.
      7   1.1       mrg  *
      8   1.1       mrg  * Redistribution and use in source and binary forms, with or without
      9   1.1       mrg  * modification, are permitted provided that the following conditions
     10   1.1       mrg  * are met:
     11   1.1       mrg  * 1. Redistributions of source code must retain the above copyright
     12   1.1       mrg  *    notice, this list of conditions and the following disclaimer.
     13   1.1       mrg  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1       mrg  *    notice, this list of conditions and the following disclaimer in the
     15   1.1       mrg  *    documentation and/or other materials provided with the distribution.
     16   1.2       mrg  * 3. The name of the author may not be used to endorse or promote products
     17   1.2       mrg  *    derived from this software without specific prior written permission.
     18   1.1       mrg  *
     19   1.2       mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     20   1.2       mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     21   1.2       mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     22   1.2       mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     23   1.2       mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     24   1.2       mrg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     25   1.2       mrg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     26   1.2       mrg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     27   1.2       mrg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       mrg  * SUCH DAMAGE.
     30   1.1       mrg  */
     31   1.1       mrg #ifndef _SPARC64_DEV_PSYCHOREG_H_
     32   1.1       mrg #define _SPARC64_DEV_PSYCHOREG_H_
     33   1.1       mrg 
     34   1.1       mrg /*
     35   1.1       mrg  * Sun4u PCI definitions.  Here's where we deal w/the machine
     36   1.1       mrg  * dependencies of psycho and the PCI controller on the UltraIIi.
     37   1.1       mrg  *
     38   1.1       mrg  * All PCI registers are bit-swapped, however they are not byte-swapped.
     39   1.1       mrg  * This means that they must be accessed using little-endian access modes,
     40   1.1       mrg  * either map the pages little-endian or use little-endian ASIs.
     41   1.1       mrg  *
     42   1.1       mrg  * PSYCHO implements two PCI buses, A and B.
     43   1.1       mrg  */
     44   1.1       mrg 
     45   1.1       mrg struct psychoreg {
     46   1.1       mrg 	struct upareg {
     47  1.12       cdi 		uint64_t	upa_portid;	/* UPA port ID register */		/* 1fe.0000.0000 */
     48  1.12       cdi 		uint64_t	upa_config;	/* UPA config register */		/* 1fe.0000.0008 */
     49   1.1       mrg 	} sys_upa;
     50   1.1       mrg 
     51  1.12       cdi 	uint64_t	psy_csr;		/* PSYCHO control/status register */	/* 1fe.0000.0010 */
     52   1.6        pk 	/*
     53   1.6        pk 	 * 63     59     55     50     45     4        3       2     1      0
     54   1.6        pk 	 * +------+------+------+------+--//---+--------+-------+-----+------+
     55   1.6        pk 	 * | IMPL | VERS | MID  | IGN  |  xxx  | APCKEN | APERR | IAP | MODE |
     56   1.6        pk 	 * +------+------+------+------+--//---+--------+-------+-----+------+
     57   1.6        pk 	 *
     58   1.6        pk 	 */
     59   1.6        pk #define PSYCHO_GCSR_IMPL(csr)	((u_int)(((csr) >> 60) & 0xf))
     60   1.6        pk #define PSYCHO_GCSR_VERS(csr)	((u_int)(((csr) >> 56) & 0xf))
     61   1.6        pk #define PSYCHO_GCSR_MID(csr)	((u_int)(((csr) >> 51) & 0x1f))
     62   1.6        pk #define PSYCHO_GCSR_IGN(csr)	((u_int)(((csr) >> 46) & 0x1f))
     63   1.6        pk #define PSYCHO_CSR_APCKEN	8	/* UPA addr parity check enable */
     64   1.6        pk #define PSYCHO_CSR_APERR	4	/* UPA addr parity error */
     65   1.6        pk #define PSYCHO_CSR_IAP		2	/* invert UPA address parity */
     66   1.6        pk #define PSYCHO_CSR_MODE		1	/* UPA/PCI handshake */
     67   1.6        pk 
     68  1.12       cdi 	uint64_t	pad0;
     69  1.12       cdi 	uint64_t	psy_ecccr;		/* ECC control register */		/* 1fe.0000.0020 */
     70  1.12       cdi 	uint64_t	reserved;							/* 1fe.0000.0028 */
     71  1.12       cdi 	uint64_t	psy_ue_afsr;		/* Uncorrectable Error AFSR */		/* 1fe.0000.0030 */
     72   1.9       eeh #define	PSYCHO_UE_AFSR_BITS	"\177\020"				\
     73   1.9       eeh 	"b\27BLK\0b\070P_DTE\0b\071S_DTE\0b\072S_DWR\0b\073S_DRD\0b"	\
     74   1.9       eeh 	"\075P_DWR\0b\076P_DRD\0\0"
     75  1.12       cdi 	uint64_t	psy_ue_afar;		/* Uncorrectable Error AFAR */		/* 1fe.0000.0038 */
     76  1.12       cdi 	uint64_t	psy_ce_afsr;		/* Correctable Error AFSR */		/* 1fe.0000.0040 */
     77  1.12       cdi 	uint64_t	psy_ce_afar;		/* Correctable Error AFAR */		/* 1fe.0000.0048 */
     78   1.1       mrg 
     79  1.12       cdi 	uint64_t	pad1[22];
     80   1.1       mrg 
     81   1.1       mrg 	struct perfmon {
     82  1.12       cdi 		uint64_t	pm_cr;		/* Performance monitor control reg */	/* 1fe.0000.0100 */
     83  1.12       cdi 		uint64_t	pm_count;	/* Performance monitor counter reg */	/* 1fe.0000.0108 */
     84   1.1       mrg 	} psy_pm;
     85   1.1       mrg 
     86  1.12       cdi 	uint64_t	pad2[30];
     87   1.1       mrg 
     88   1.1       mrg 	struct iommureg psy_iommu;							/* 1fe.0000.0200,0210 */
     89   1.1       mrg 
     90  1.12       cdi 	uint64_t	pad3[317];
     91   1.1       mrg 
     92  1.12       cdi 	uint64_t	pcia_slot0_int;		/* PCI bus a slot 0 irq map reg */	/* 1fe.0000.0c00 */
     93  1.12       cdi 	uint64_t	pcia_slot1_int;		/* PCI bus a slot 1 irq map reg */	/* 1fe.0000.0c08 */
     94  1.12       cdi 	uint64_t	pcia_slot2_int;		/* PCI bus a slot 2 irq map reg (IIi)*/	/* 1fe.0000.0c10 */
     95  1.12       cdi 	uint64_t	pcia_slot3_int;		/* PCI bus a slot 3 irq map reg (IIi)*/	/* 1fe.0000.0c18 */
     96  1.12       cdi 	uint64_t	pcib_slot0_int;		/* PCI bus b slot 0 irq map reg */	/* 1fe.0000.0c20 */
     97  1.12       cdi 	uint64_t	pcib_slot1_int;		/* PCI bus b slot 1 irq map reg */	/* 1fe.0000.0c28 */
     98  1.12       cdi 	uint64_t	pcib_slot2_int;		/* PCI bus b slot 2 irq map reg */	/* 1fe.0000.0c30 */
     99  1.12       cdi 	uint64_t	pcib_slot3_int;		/* PCI bus b slot 3 irq map reg */	/* 1fe.0000.0c38 */
    100  1.12       cdi 
    101  1.12       cdi 	uint64_t	pad4[120];
    102  1.12       cdi 
    103  1.12       cdi 	uint64_t	scsi_int_map;		/* SCSI interrupt map reg */		/* 1fe.0000.1000 */
    104  1.12       cdi 	uint64_t	ether_int_map;		/* ethernet interrupt map reg */	/* 1fe.0000.1008 */
    105  1.12       cdi 	uint64_t	bpp_int_map;		/* parallel interrupt map reg */	/* 1fe.0000.1010 */
    106  1.12       cdi 	uint64_t	audior_int_map;		/* audio record interrupt map reg */	/* 1fe.0000.1018 */
    107  1.12       cdi 	uint64_t	audiop_int_map;		/* audio playback interrupt map reg */	/* 1fe.0000.1020 */
    108  1.12       cdi 	uint64_t	power_int_map;		/* power fail interrupt map reg */	/* 1fe.0000.1028 */
    109  1.12       cdi 	uint64_t	ser_kbd_ms_int_map;	/* serial/kbd/mouse interrupt map reg *//* 1fe.0000.1030 */
    110  1.12       cdi 	uint64_t	fd_int_map;		/* floppy interrupt map reg */		/* 1fe.0000.1038 */
    111  1.12       cdi 	uint64_t	spare_int_map;		/* spare interrupt map reg */		/* 1fe.0000.1040 */
    112  1.12       cdi 	uint64_t	kbd_int_map;		/* kbd [unused] interrupt map reg */	/* 1fe.0000.1048 */
    113  1.12       cdi 	uint64_t	mouse_int_map;		/* mouse [unused] interrupt map reg */	/* 1fe.0000.1050 */
    114  1.12       cdi 	uint64_t	serial_int_map;		/* second serial interrupt map reg */	/* 1fe.0000.1058 */
    115  1.12       cdi 	uint64_t	timer0_int_map;		/* timer 0 interrupt map reg */		/* 1fe.0000.1060 */
    116  1.12       cdi 	uint64_t	timer1_int_map;		/* timer 1 interrupt map reg */		/* 1fe.0000.1068 */
    117  1.12       cdi 	uint64_t	ue_int_map;		/* UE interrupt map reg */		/* 1fe.0000.1070 */
    118  1.12       cdi 	uint64_t	ce_int_map;		/* CE interrupt map reg */		/* 1fe.0000.1078 */
    119  1.12       cdi 	uint64_t	pciaerr_int_map;	/* PCI bus a error interrupt map reg */	/* 1fe.0000.1080 */
    120  1.12       cdi 	uint64_t	pciberr_int_map;	/* PCI bus b error interrupt map reg */	/* 1fe.0000.1088 */
    121  1.12       cdi 	uint64_t	pwrmgt_int_map;		/* power mgmt wake interrupt map reg */	/* 1fe.0000.1090 */
    122  1.12       cdi 	uint64_t	ffb0_int_map;		/* FFB0 graphics interrupt map reg */	/* 1fe.0000.1098 */
    123  1.12       cdi 	uint64_t	ffb1_int_map;		/* FFB1 graphics interrupt map reg */	/* 1fe.0000.10a0 */
    124   1.1       mrg 
    125  1.12       cdi 	uint64_t	pad5[107];
    126   1.1       mrg 
    127   1.1       mrg 	/* Note: clear interrupt 0 registers are not really used */
    128  1.12       cdi 	uint64_t	pcia0_clr_int[4];	/* PCI a slot 0 clear int regs 0..7 */	/* 1fe.0000.1400-1418 */
    129  1.12       cdi 	uint64_t	pcia1_clr_int[4];	/* PCI a slot 1 clear int regs 0..7 */	/* 1fe.0000.1420-1438 */
    130  1.12       cdi 	uint64_t	pcia2_clr_int[4];	/* PCI a slot 2 clear int regs 0..7 */	/* 1fe.0000.1440-1458 */
    131  1.12       cdi 	uint64_t	pcia3_clr_int[4];	/* PCI a slot 3 clear int regs 0..7 */	/* 1fe.0000.1480-1478 */
    132  1.12       cdi 	uint64_t	pcib0_clr_int[4];	/* PCI b slot 0 clear int regs 0..7 */	/* 1fe.0000.1480-1498 */
    133  1.12       cdi 	uint64_t	pcib1_clr_int[4];	/* PCI b slot 1 clear int regs 0..7 */	/* 1fe.0000.14a0-14b8 */
    134  1.12       cdi 	uint64_t	pcib2_clr_int[4];	/* PCI b slot 2 clear int regs 0..7 */	/* 1fe.0000.14c0-14d8 */
    135  1.12       cdi 	uint64_t	pcib3_clr_int[4];	/* PCI b slot 3 clear int regs 0..7 */	/* 1fe.0000.14d0-14f8 */
    136  1.12       cdi 
    137  1.12       cdi 	uint64_t	pad6[96];
    138  1.12       cdi 
    139  1.12       cdi 	uint64_t	scsi_clr_int;		/* SCSI clear int reg */		/* 1fe.0000.1800 */
    140  1.12       cdi 	uint64_t	ether_clr_int;		/* ethernet clear int reg */		/* 1fe.0000.1808 */
    141  1.12       cdi 	uint64_t	bpp_clr_int;		/* parallel clear int reg */		/* 1fe.0000.1810 */
    142  1.12       cdi 	uint64_t	audior_clr_int;		/* audio record clear int reg */	/* 1fe.0000.1818 */
    143  1.12       cdi 	uint64_t	audiop_clr_int;		/* audio playback clear int reg */	/* 1fe.0000.1820 */
    144  1.12       cdi 	uint64_t	power_clr_int;		/* power fail clear int reg */		/* 1fe.0000.1828 */
    145  1.12       cdi 	uint64_t	ser_kb_ms_clr_int;	/* serial/kbd/mouse clear int reg */	/* 1fe.0000.1830 */
    146  1.12       cdi 	uint64_t	fd_clr_int;		/* floppy clear int reg */		/* 1fe.0000.1838 */
    147  1.12       cdi 	uint64_t	spare_clr_int;		/* spare clear int reg */		/* 1fe.0000.1840 */
    148  1.12       cdi 	uint64_t	kbd_clr_int;		/* kbd [unused] clear int reg */	/* 1fe.0000.1848 */
    149  1.12       cdi 	uint64_t	mouse_clr_int;		/* mouse [unused] clear int reg */	/* 1fe.0000.1850 */
    150  1.12       cdi 	uint64_t	serial_clr_int;		/* second serial clear int reg */	/* 1fe.0000.1858 */
    151  1.12       cdi 	uint64_t	timer0_clr_int;		/* timer 0 clear int reg */		/* 1fe.0000.1860 */
    152  1.12       cdi 	uint64_t	timer1_clr_int;		/* timer 1 clear int reg */		/* 1fe.0000.1868 */
    153  1.12       cdi 	uint64_t	ue_clr_int;		/* UE clear int reg */			/* 1fe.0000.1870 */
    154  1.12       cdi 	uint64_t	ce_clr_int;		/* CE clear int reg */			/* 1fe.0000.1878 */
    155  1.12       cdi 	uint64_t	pciaerr_clr_int;	/* PCI bus a error clear int reg */	/* 1fe.0000.1880 */
    156  1.12       cdi 	uint64_t	pciberr_clr_int;	/* PCI bus b error clear int reg */	/* 1fe.0000.1888 */
    157  1.12       cdi 	uint64_t	pwrmgt_clr_int;		/* power mgmt wake clr interrupt reg */	/* 1fe.0000.1890 */
    158   1.1       mrg 
    159  1.12       cdi 	uint64_t	pad7[45];
    160   1.1       mrg 
    161  1.12       cdi 	uint64_t	intr_retry_timer;	/* interrupt retry timer */		/* 1fe.0000.1a00 */
    162   1.1       mrg 
    163  1.12       cdi 	uint64_t	pad8[63];
    164   1.1       mrg 
    165   1.1       mrg 	struct timer_counter {
    166  1.12       cdi 		uint64_t	tc_count;	/* timer/counter 0/1 count register */	/* 1fe.0000.1c00,1c10 */
    167  1.12       cdi 		uint64_t	tc_limit;	/* timer/counter 0/1 limit register */	/* 1fe.0000.1c08,1c18 */
    168   1.1       mrg 	} tc[2];
    169   1.1       mrg 
    170  1.12       cdi 	uint64_t	pci_dma_write_sync;	/* PCI DMA write sync register (IIi) */	/* 1fe.0000.1c20 */
    171   1.1       mrg 
    172  1.12       cdi 	uint64_t	pad9[123];
    173   1.1       mrg 
    174   1.1       mrg 	struct pci_ctl {
    175  1.12       cdi 		uint64_t	pci_csr;	/* PCI a/b control/status register */	/* 1fe.0000.2000,4000 */
    176  1.12       cdi 		uint64_t	pad10;
    177  1.12       cdi 		uint64_t	pci_afsr;	/* PCI a/b AFSR register */		/* 1fe.0000.2010,4010 */
    178  1.12       cdi 		uint64_t	pci_afar;	/* PCI a/b AFAR register */		/* 1fe.0000.2018,4018 */
    179  1.12       cdi 		uint64_t	pci_diag;	/* PCI a/b diagnostic register */	/* 1fe.0000.2020,4020 */
    180  1.12       cdi 		uint64_t	pci_tasr;	/* PCI target address space reg (IIi)*/	/* 1fe.0000.2028,4028 */
    181   1.1       mrg 
    182  1.12       cdi 		uint64_t	pad11[250];
    183   1.1       mrg 
    184   1.1       mrg 		/* This is really the IOMMU's, not the PCI bus's */
    185   1.1       mrg 		struct iommu_strbuf pci_strbuf;						/* 1fe.0000.2800-210 */
    186   1.1       mrg #define psy_iommu_strbuf psy_pcictl[0].pci_strbuf
    187   1.1       mrg 
    188  1.12       cdi 		uint64_t	pad12[765];
    189   1.1       mrg 	} psy_pcictl[2];			/* For PCI a and b */
    190   1.1       mrg 
    191   1.1       mrg 	/* NB: FFB0 and FFB1 intr map regs also appear at 1fe.0000.6000 and 1fe.0000.8000 respectively */
    192  1.12       cdi 	uint64_t	pad13[2048];
    193   1.1       mrg 
    194  1.12       cdi 	uint64_t	dma_scb_diag0;		/* DMA scoreboard diag reg 0 */		/* 1fe.0000.a000 */
    195  1.12       cdi 	uint64_t	dma_scb_diag1;		/* DMA scoreboard diag reg 1 */		/* 1fe.0000.a008 */
    196   1.1       mrg 
    197  1.12       cdi 	uint64_t	pad14[126];
    198   1.1       mrg 
    199  1.12       cdi 	uint64_t	iommu_svadiag;		/* IOMMU virtual addr diag reg */	/* 1fe.0000.a400 */
    200  1.12       cdi 	uint64_t	iommu_tlb_comp_diag;	/* IOMMU TLB tag compare diag reg */	/* 1fe.0000.a408 */
    201   1.1       mrg 
    202  1.12       cdi 	uint64_t	pad15[30];
    203   1.1       mrg 
    204  1.12       cdi 	uint64_t	iommu_queue_diag[16];	/* IOMMU LRU queue diag */		/* 1fe.0000.a500-a578 */
    205  1.12       cdi 	uint64_t	tlb_tag_diag[16];	/* TLB tag diag */			/* 1fe.0000.a580-a5f8 */
    206  1.12       cdi 	uint64_t	tlb_data_diag[16];	/* TLB data RAM diag */			/* 1fe.0000.a600-a678 */
    207   1.1       mrg 
    208  1.12       cdi 	uint64_t	pad16[48];
    209   1.1       mrg 
    210  1.12       cdi 	uint64_t	pci_int_diag;		/* PCI int state diag reg */		/* 1fe.0000.a800 */
    211  1.12       cdi 	uint64_t	obio_int_diag;		/* OBIO and misc int state diag reg */	/* 1fe.0000.a808 */
    212   1.1       mrg 
    213  1.12       cdi 	uint64_t	pad17[254];
    214   1.1       mrg 
    215   1.1       mrg 	struct strbuf_diag {
    216  1.12       cdi 		uint64_t	strbuf_data_diag[128];	/* streaming buffer data RAM diag */	/* 1fe.0000.b000-b3f8 */
    217  1.12       cdi 		uint64_t	strbuf_error_diag[128];	/* streaming buffer error status diag *//* 1fe.0000.b400-b7f8 */
    218  1.12       cdi 		uint64_t	strbuf_pg_tag_diag[16];	/* streaming buffer page tag diag */	/* 1fe.0000.b800-b878 */
    219  1.12       cdi 		uint64_t	pad18[16];
    220  1.12       cdi 		uint64_t	strbuf_ln_tag_diag[16];	/* streaming buffer line tag diag */	/* 1fe.0000.b900-b978 */
    221  1.12       cdi 		uint64_t	pad19[208];
    222   1.1       mrg 	} psy_strbufdiag[2];					/* For PCI a and b */
    223   1.1       mrg 
    224   1.1       mrg 	/*
    225   1.1       mrg 	 * Here is the rest of the map, which we're not specifying:
    226   1.1       mrg 	 *
    227   1.1       mrg 	 * 1fe.0100.0000 - 1fe.01ff.ffff	PCI configuration space
    228   1.1       mrg 	 * 1fe.0100.0000 - 1fe.0100.00ff	PCI B configuration header
    229   1.1       mrg 	 * 1fe.0101.0000 - 1fe.0101.00ff	PCI A configuration header
    230   1.1       mrg 	 * 1fe.0200.0000 - 1fe.0200.ffff	PCI A I/O space
    231   1.1       mrg 	 * 1fe.0201.0000 - 1fe.0201.ffff	PCI B I/O space
    232   1.1       mrg 	 * 1ff.0000.0000 - 1ff.7fff.ffff	PCI A memory space
    233   1.1       mrg 	 * 1ff.8000.0000 - 1ff.ffff.ffff	PCI B memory space
    234   1.1       mrg 	 *
    235   1.7       eeh 	 * NB: config and I/O space can use 1-4 byte accesses, not 8 byte
    236   1.7       eeh 	 * accesses.  Memory space can use any sized accesses.
    237   1.1       mrg 	 *
    238   1.2       mrg 	 * Note that the SUNW,sabre/SUNW,simba combinations found on the
    239   1.2       mrg 	 * Ultra5 and Ultra10 machines uses slightly differrent addresses
    240   1.1       mrg 	 * than the above.  This is mostly due to the fact that the APB is
    241   1.1       mrg 	 * a multi-function PCI device with two PCI bridges, and the U2P is
    242   1.2       mrg 	 * two separate PCI bridges.  It uses the same PCI configuration
    243   1.2       mrg 	 * space, though the configuration header for each PCI bus is
    244   1.2       mrg 	 * located differently due to the SUNW,simba PCI busses being
    245   1.2       mrg 	 * function 0 and function 1 of the APB, whereas the psycho's are
    246   1.2       mrg 	 * each their own PCI device.  The I/O and memory spaces are each
    247   1.2       mrg 	 * split into 8 equally sized areas (8x2MB blocks for I/O space,
    248   1.2       mrg 	 * and 8x512MB blocks for memory space).  These are allocated in to
    249   1.2       mrg 	 * either PCI A or PCI B, or neither in the APB's `I/O Address Map
    250   1.2       mrg 	 * Register A/B' (0xde) and `Memory Address Map Register A/B' (0xdf)
    251   1.2       mrg 	 * registers of each simba.  We must ensure that both of the
    252   1.2       mrg 	 * following are correct (the prom should do this for us):
    253   1.1       mrg 	 *
    254   1.1       mrg 	 *    (PCI A Memory Address Map) & (PCI B Memory Address Map) == 0
    255   1.1       mrg 	 *
    256   1.1       mrg 	 *    (PCI A I/O Address Map) & (PCI B I/O Address Map) == 0
    257   1.1       mrg 	 *
    258   1.1       mrg 	 * 1fe.0100.0000 - 1fe.01ff.ffff	PCI configuration space
    259   1.1       mrg 	 * 1fe.0100.0800 - 1fe.0100.08ff	PCI B configuration header
    260   1.1       mrg 	 * 1fe.0100.0900 - 1fe.0100.09ff	PCI A configuration header
    261   1.1       mrg 	 * 1fe.0200.0000 - 1fe.02ff.ffff	PCI I/O space (divided)
    262   1.7       eeh 	 * 1ff.0000.0000 - 1ff.ffff.ffff	PCI memory space (divided)
    263   1.1       mrg 	 */
    264   1.1       mrg };
    265   1.1       mrg 
    266   1.1       mrg /* what the bits mean! */
    267   1.1       mrg 
    268   1.1       mrg /* PCI [a|b] control/status register */
    269   1.1       mrg /* note that the sabre only has one set of PCI control/status registers */
    270  1.11  nakayama #define	PCICTL_MRLM	0x0000001000000000LL	/* Memory Read Line/Multiple */
    271  1.11  nakayama #define	PCICTL_SERR	0x0000000400000000LL	/* SERR asserted; W1C */
    272  1.11  nakayama #define	PCICTL_ARB_PARK	0x0000000000200000LL	/* PCI arbitration parking */
    273  1.11  nakayama #define	PCICTL_CPU_PRIO	0x0000000000100000LL	/* PCI arbitration parking */
    274  1.11  nakayama #define	PCICTL_ARB_PRIO	0x00000000000f0000LL	/* PCI arbitration parking */
    275  1.11  nakayama #define	PCICTL_ERRINTEN	0x0000000000000100LL	/* PCI error interrupt enable */
    276  1.11  nakayama #define	PCICTL_RTRYWAIT 0x0000000000000080LL	/* PCI error interrupt enable */
    277  1.11  nakayama #define	PCICTL_4ENABLE	0x000000000000000fLL	/* enable 4 PCI slots */
    278  1.11  nakayama #define	PCICTL_6ENABLE	0x000000000000003fLL	/* enable 6 PCI slots */
    279   1.1       mrg 
    280   1.1       mrg /*
    281   1.1       mrg  * these are the PROM structures we grovel
    282   1.1       mrg  */
    283   1.1       mrg 
    284   1.1       mrg /*
    285  1.13       wiz  * For the physical addresses split into 3 32 bit values, we deocde
    286   1.2       mrg  * them like the following (IEEE1275 PCI Bus binding 2.0, 2.2.1.1
    287   1.2       mrg  * Numerical Representation):
    288   1.1       mrg  *
    289   1.1       mrg  * 	phys.hi cell:	npt000ss bbbbbbbb dddddfff rrrrrrrr
    290   1.1       mrg  * 	phys.mid cell:	hhhhhhhh hhhhhhhh hhhhhhhh hhhhhhhh
    291   1.1       mrg  * 	phys.lo cell:	llllllll llllllll llllllll llllllll
    292   1.1       mrg  *
    293   1.1       mrg  * where these bits affect the address' properties:
    294   1.1       mrg  *	n	not-relocatable
    295   1.1       mrg  *	p	prefetchable
    296   1.1       mrg  *	t	aliased (non-relocatable IO), below 1MB (memory) or
    297   1.1       mrg  *		below 64KB (reloc. IO)
    298   1.1       mrg  *	ss	address space code:
    299   1.1       mrg  *		00 - configuration space
    300   1.1       mrg  *		01 - I/O space
    301   1.1       mrg  *		10 - 32 bit memory space
    302   1.1       mrg  *		11 - 64 bit memory space
    303   1.1       mrg  *	bb..bb	8 bit bus number
    304   1.1       mrg  *	ddddd	5 bit device number
    305   1.1       mrg  *	fff	3 bit function number
    306   1.1       mrg  *	rr..rr	8 bit register number
    307   1.1       mrg  *	hh..hh	32 bit unsigned value
    308   1.1       mrg  *	ll..ll	32 bit unsigned value
    309   1.1       mrg  * the values of hh..hh and ll..ll are combined to form a larger number.
    310   1.1       mrg  *
    311   1.1       mrg  * For config space, we don't have to do much special.  For I/O space,
    312   1.1       mrg  * hh..hh must be zero, and if n == 0 ll..ll is the offset from the
    313   1.1       mrg  * start of I/O space, otherwise ll..ll is the I/O space.  For memory
    314   1.1       mrg  * space, hh..hh must be zero for the 32 bit space, and is the high 32
    315   1.1       mrg  * bits in 64 bit space, with ll..ll being the low 32 bits in both cases,
    316   1.1       mrg  * with offset handling being driver via `n == 0' as for I/O space.
    317   1.1       mrg  */
    318   1.4       eeh 
    319   1.4       eeh /* commonly used */
    320   1.4       eeh #define TAG2BUS(tag)	((tag) >> 16) & 0xff;
    321   1.4       eeh #define TAG2DEV(tag)	((tag) >> 11) & 0x1f;
    322   1.4       eeh #define TAG2FN(tag)	((tag) >> 8) & 0x7;
    323   1.1       mrg 
    324   1.1       mrg struct psycho_registers {
    325  1.12       cdi 	uint32_t	phys_hi;
    326  1.12       cdi 	uint32_t	phys_mid;
    327  1.12       cdi 	uint32_t	phys_lo;
    328  1.12       cdi 	uint32_t	size_hi;
    329  1.12       cdi 	uint32_t	size_lo;
    330   1.1       mrg };
    331   1.1       mrg 
    332   1.1       mrg struct psycho_ranges {
    333  1.12       cdi 	uint32_t	cspace;
    334  1.12       cdi 	uint32_t	child_hi;
    335  1.12       cdi 	uint32_t	child_lo;
    336  1.12       cdi 	uint32_t	phys_hi;
    337  1.12       cdi 	uint32_t	phys_lo;
    338  1.12       cdi 	uint32_t	size_hi;
    339  1.12       cdi 	uint32_t	size_lo;
    340   1.1       mrg };
    341   1.1       mrg 
    342   1.1       mrg struct psycho_interrupt_map {
    343  1.12       cdi 	uint32_t	phys_hi;
    344  1.12       cdi 	uint32_t	phys_mid;
    345  1.12       cdi 	uint32_t	phys_lo;
    346  1.12       cdi 	uint32_t	intr;
    347   1.1       mrg 	int32_t		child_node;
    348  1.12       cdi 	uint32_t	child_intr;
    349   1.1       mrg };
    350   1.1       mrg 
    351   1.1       mrg struct psycho_interrupt_map_mask {
    352  1.12       cdi 	uint32_t	phys_hi;
    353  1.12       cdi 	uint32_t	phys_mid;
    354  1.12       cdi 	uint32_t	phys_lo;
    355  1.12       cdi 	uint32_t	intr;
    356   1.1       mrg };
    357   1.1       mrg 
    358   1.1       mrg #endif /* _SPARC64_DEV_PSYCHOREG_H_ */
    359