Home | History | Annotate | Line # | Download | only in xscale
i80312reg.h revision 1.2.4.1
      1  1.2.4.1  thorpej /*	$NetBSD: i80312reg.h,v 1.2.4.1 2001/11/12 21:16:35 thorpej Exp $	*/
      2  1.2.4.1  thorpej 
      3      1.1     matt /*-
      4      1.1     matt  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5      1.1     matt  * All rights reserved.
      6      1.1     matt  *
      7      1.1     matt  * This code is derived from software contributed to The NetBSD Foundation
      8  1.2.4.1  thorpej  * by Matt Thomas <matt (at) 3am-software.com>.
      9      1.1     matt  *
     10      1.1     matt  * Redistribution and use in source and binary forms, with or without
     11      1.1     matt  * modification, are permitted provided that the following conditions
     12      1.1     matt  * are met:
     13      1.1     matt  * 1. Redistributions of source code must retain the above copyright
     14      1.1     matt  *    notice, this list of conditions and the following disclaimer.
     15      1.1     matt  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1     matt  *    notice, this list of conditions and the following disclaimer in the
     17      1.1     matt  *    documentation and/or other materials provided with the distribution.
     18      1.1     matt  * 3. All advertising materials mentioning features or use of this software
     19      1.1     matt  *    must display the following acknowledgement:
     20      1.1     matt  *        This product includes software developed by the NetBSD
     21      1.1     matt  *        Foundation, Inc. and its contributors.
     22      1.1     matt  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.1     matt  *    contributors may be used to endorse or promote products derived
     24      1.1     matt  *    from this software without specific prior written permission.
     25      1.1     matt  *
     26      1.1     matt  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.1     matt  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.1     matt  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.1     matt  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.1     matt  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.1     matt  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.1     matt  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.1     matt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.1     matt  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.1     matt  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.1     matt  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1     matt  */
     38      1.1     matt 
     39      1.1     matt #ifndef _ARM_XSCALE_I80312REG_H_
     40      1.1     matt #define _ARM_XSCALE_I80312REG_H_
     41  1.2.4.1  thorpej 
     42  1.2.4.1  thorpej /*
     43  1.2.4.1  thorpej  * Register definitions for the Intel 80310 I/O Companion Chip.
     44  1.2.4.1  thorpej  */
     45  1.2.4.1  thorpej 
     46      1.1     matt /*
     47      1.1     matt  * Physical addresses 0x1000..0x1fff are used by the Periphial Memory
     48      1.1     matt  * Mapped Registers.
     49      1.1     matt  */
     50      1.1     matt 
     51  1.2.4.1  thorpej #define	I80312_PMMR_BASE	0x00001000UL
     52  1.2.4.1  thorpej #define	I80312_PMMR_SIZE	0x00001000UL
     53  1.2.4.1  thorpej 
     54  1.2.4.1  thorpej /*
     55  1.2.4.1  thorpej  * The PMMR registers below are defined as offsets from the i80312 PMMR
     56  1.2.4.1  thorpej  * base.
     57  1.2.4.1  thorpej  */
     58      1.1     matt 
     59      1.1     matt /*
     60      1.1     matt  * PCI-to-PCI Bridge Unit
     61      1.1     matt  */
     62  1.2.4.1  thorpej #define	I80312_PPB_BASE		(0)
     63      1.1     matt #define	I80312_PPB_SIZE		0x100
     64      1.1     matt /*
     65      1.1     matt  * Performance Monitoring Unit
     66      1.1     matt  */
     67      1.1     matt #define	I80312_PMU_BASE		(I80312_PPB_BASE  + I80312_PPB_SIZE) /* 0x100 */
     68      1.1     matt #define	I80312_PMU_SIZE		0x100
     69      1.1     matt /*
     70      1.1     matt  * Address Translation Unit
     71      1.1     matt  */
     72      1.1     matt #define	I80312_ATU_BASE		(I80312_PMU_BASE  + I80312_PMU_SIZE) /* 0x200 */
     73      1.1     matt #define	I80312_ATU_SIZE		0x100
     74      1.1     matt /*
     75      1.1     matt  * Messaging Unit
     76      1.1     matt  */
     77      1.1     matt #define	I80312_MSG_BASE		(I80312_ATU_BASE  + I80312_ATU_SIZE) /* 0x300 */
     78      1.1     matt #define	I80312_MSG_SIZE		0x100
     79      1.1     matt /*
     80      1.1     matt  * DMA Controller
     81      1.1     matt  */
     82      1.1     matt #define	I80312_DMA_BASE		(I80312_MSG_BASE  + I80312_MSG_SIZE) /* 0x400 */
     83      1.1     matt #define	I80312_DMA_SIZE		0x100
     84      1.1     matt /*
     85      1.1     matt  * Memory Controller
     86      1.1     matt  */
     87      1.1     matt #define	I80312_MEM_BASE		(I80312_DMA_BASE  + I80312_DMA_SIZE) /* 0x500 */
     88      1.1     matt #define	I80312_MEM_SIZE		0x100
     89      1.1     matt /*
     90      1.1     matt  * Internal Arbitration Unit
     91      1.1     matt  */
     92      1.1     matt #define	I80312_IARB_BASE	(I80312_MEM_BASE  + I80312_MEM_SIZE) /* 0x600 */
     93      1.1     matt #define	I80312_IARB_SIZE	0x040
     94      1.1     matt /*
     95      1.1     matt  * Bus Interface Unit
     96      1.1     matt  */
     97      1.1     matt #define	I80312_BUS_BASE		(I80312_IARB_BASE + I80312_IARB_SIZE)/* 0x640 */
     98      1.1     matt #define	I80312_BUS_SIZE		0x040
     99      1.1     matt /*
    100      1.1     matt  * I2C Unit
    101      1.1     matt  */
    102      1.1     matt #define	I80312_IIC_BASE		(I80312_BUS_BASE  + I80312_BUS_SIZE) /* 0x680 */
    103      1.1     matt #define	I80312_IIC_SIZE		0x080
    104      1.1     matt /*
    105      1.1     matt  * Interrupt Controller
    106      1.1     matt  */
    107      1.1     matt #define	I80312_INTC_BASE	(I80312_IIC_BASE  + I80312_IIC_SIZE) /* 0x700 */
    108      1.1     matt #define	I80312_INTC_SIZE	0x100
    109      1.1     matt /*
    110      1.1     matt  * Application Accelerator Unit
    111      1.1     matt  */
    112      1.1     matt #define	I80312_AAU_BASE		(I80312_INTC_BASE + I80312_INTC_SIZE)/* 0x800 */
    113      1.1     matt #define	I80312_AAU_SIZE		0x100
    114      1.1     matt 
    115      1.1     matt /*
    116  1.2.4.1  thorpej  * PCI-PCI Bridge Unit
    117  1.2.4.1  thorpej  *
    118  1.2.4.1  thorpej  * The PCI-PCI Bridge Unit supports both public (accessible to the
    119  1.2.4.1  thorpej  * host) and private (accessible only to the local system) devices:
    120  1.2.4.1  thorpej  *
    121  1.2.4.1  thorpej  *	---------
    122  1.2.4.1  thorpej  *		S_AD[11]
    123  1.2.4.1  thorpej  *		S_AD[12]
    124  1.2.4.1  thorpej  * Private	S_AD[13]
    125  1.2.4.1  thorpej  *		S_AD[14]
    126  1.2.4.1  thorpej  *		S_AD[15]
    127  1.2.4.1  thorpej  *	---------
    128  1.2.4.1  thorpej  *		S_AD[16]	SISR bit 9
    129  1.2.4.1  thorpej  *		S_AD[17]	SISR bit 8
    130  1.2.4.1  thorpej  *		S_AD[18]	SISR bit 7
    131  1.2.4.1  thorpej  * Public	S_AD[19]	SISR bit 6
    132  1.2.4.1  thorpej  * or		S_AD[20]	SISR bit 5
    133  1.2.4.1  thorpej  * Private	S_AD[21]	SISR bit 4
    134  1.2.4.1  thorpej  *		S_AD[22]	SISR bit 3
    135  1.2.4.1  thorpej  *		S_AD[23]	SISR bit 2
    136  1.2.4.1  thorpej  *		S_AD[24]	SISR bit 1
    137  1.2.4.1  thorpej  *		S_AD[25]	SISR bit 0
    138  1.2.4.1  thorpej  *	---------
    139  1.2.4.1  thorpej  *		S_AD[26]
    140  1.2.4.1  thorpej  *		S_AD[27]
    141  1.2.4.1  thorpej  * Public	S_AD[28]
    142  1.2.4.1  thorpej  *		S_AD[29]
    143  1.2.4.1  thorpej  *		S_AD[30]
    144  1.2.4.1  thorpej  *		S_AD[31]
    145  1.2.4.1  thorpej  *	---------
    146  1.2.4.1  thorpej  *
    147  1.2.4.1  thorpej  * Setting the specified SISR bit makes the corresponding S_AD line
    148  1.2.4.1  thorpej  * a private sevice.
    149  1.2.4.1  thorpej  */
    150  1.2.4.1  thorpej #define	I80312_PPB_EBCR		0x40	/* Extended Bridge Control */
    151  1.2.4.1  thorpej #define	I80312_PPB_SISR		0x42	/* Secondary ID Select Register */
    152  1.2.4.1  thorpej #define	I80312_PPB_PBISR	0x44	/* Primary Bridge Int. Stat. */
    153  1.2.4.1  thorpej #define	I80312_PPB_SBISR	0x48	/* Secondary Bridge Int. Stat. */
    154  1.2.4.1  thorpej #define	I80312_PPB_SACR		XXX	/* Secondary Arb. Control */
    155  1.2.4.1  thorpej #define	I80312_PPB_PIRSR	XXX	/* PCI Int. Routing Select */
    156  1.2.4.1  thorpej #define	I80312_PPB_SIOBR	0x54	/* Secondary I/O Base Register */
    157  1.2.4.1  thorpej #define	I80312_PPB_SIOLR	0x55	/* Secondary I/O Limit Register */
    158  1.2.4.1  thorpej #define	I80312_PPB_SCDR		0x56	/* Secondary Clock Disable Register */
    159  1.2.4.1  thorpej #define	I80312_PPB_SMBR		0x58	/* Secondary Memory Base Register */
    160  1.2.4.1  thorpej #define	I80312_PPB_SMLR		0x5a	/* Secondary Memory Limit Register */
    161  1.2.4.1  thorpej #define	I80312_PPB_SDER		0x5c	/* Secondary Decode Enable Register */
    162  1.2.4.1  thorpej #define	I80312_PPB_QCR		0x5e	/* Queue Control Register */
    163  1.2.4.1  thorpej 
    164  1.2.4.1  thorpej #define	PPB_SDER_PMSE		(1U << 2) /* Private Memory Space Enable */
    165  1.2.4.1  thorpej 
    166  1.2.4.1  thorpej /*
    167      1.1     matt  * Performance Monitoring Unit
    168      1.1     matt  */
    169  1.2.4.1  thorpej #define	I80312_PMU_GTMR		0x00
    170  1.2.4.1  thorpej #define	I80312_PMU_ESR		0x04
    171  1.2.4.1  thorpej #define	I80312_PMU_EMISR	0x08
    172  1.2.4.1  thorpej #define	I80312_PMU_GTSR		0x10
    173  1.2.4.1  thorpej #define	I80312_PMU_PECR1	0x14
    174  1.2.4.1  thorpej #define	I80312_PMU_PECR2	0x18
    175  1.2.4.1  thorpej #define	I80312_PMU_PECR3	0x1c
    176  1.2.4.1  thorpej #define	I80312_PMU_PECR4	0x20
    177  1.2.4.1  thorpej #define	I80312_PMU_PECR5	0x24
    178  1.2.4.1  thorpej #define	I80312_PMU_PECR6	0x28
    179  1.2.4.1  thorpej #define	I80312_PMU_PECR7	0x2c
    180  1.2.4.1  thorpej #define	I80312_PMU_PECR8	0x30
    181  1.2.4.1  thorpej #define	I80312_PMU_PECR9	0x34
    182  1.2.4.1  thorpej #define	I80312_PMU_PECR10	0x38
    183  1.2.4.1  thorpej #define	I80312_PMU_PECR11	0x3c
    184  1.2.4.1  thorpej #define	I80312_PMU_PECR12	0x40
    185  1.2.4.1  thorpej #define	I80312_PMU_PECR13	0x44
    186  1.2.4.1  thorpej #define	I80312_PMU_PECR14	0x48
    187      1.1     matt 
    188      1.1     matt /*
    189  1.2.4.1  thorpej  * Address Translation Unit
    190      1.1     matt  * The first 64 bytes are identical to a PCI device's config space.
    191      1.1     matt  */
    192  1.2.4.1  thorpej /*	BAR #0			0x10	Primary Inbound ATU Base Address */
    193      1.1     matt #define	I80312_ATU_PIAL		0x40	/* Pri. Inbound ATU Limit */
    194      1.1     matt #define	I80312_ATU_PIATV	0x44	/* Pri. Inbound ATU Translate Value */
    195      1.1     matt #define	I80312_ATU_SIAM		0x48	/* Sec. Inbound ATU Base Address */
    196      1.1     matt #define	I80312_ATU_SIAL		0x4c	/* Sec. Inbound ATU Limit */
    197      1.1     matt #define	I80312_ATU_SIATV	0x50	/* Sec. Inbound ATU Translate Value */
    198      1.1     matt #define	I80312_ATU_POMWV	0x54	/* Pri. Outbound Memory Window Value */
    199      1.1     matt      /* not used		0x58 */
    200      1.1     matt #define	I80312_ATU_POIOWV	0x5c	/* Pri. Outbound I/O Window Value */
    201      1.1     matt #define	I80312_ATU_PODACWVL	0x60	/* Pri. Outbound DAC Window Value (Lo)*/
    202      1.1     matt #define	I80312_ATU_PODACWVH	0x64	/* Pri. Outbound DAC Window Value (Hi)*/
    203      1.1     matt #define	I80312_ATU_SOMWV	0x68	/* Sec. Outbound Memory Window Value */
    204      1.1     matt #define	I80312_ATU_SOIOWV	0x6c	/* Sec. Outbound I/O Window Value */
    205      1.1     matt      /* not used		0x70 */
    206      1.1     matt #define	I80312_ATU_ERL		0x74	/* Expansion ROM Limit */
    207      1.1     matt #define	I80312_ATU_ERTV		0x78	/* Expansion ROM Translate Value */
    208      1.1     matt      /* not used		0x7c */
    209      1.1     matt #define	I80312_ATU_ACI		0x74	/* ATU Capability Identifier */
    210      1.1     matt #define	I80312_ATU_ATNIP	0x78	/* ATU Next Item Pointer */
    211      1.1     matt #define	I80312_ATU_APM		0x7c	/* ATU Power Management */
    212      1.1     matt      /* not used		0x84 */
    213      1.1     matt #define	I80312_ATU_ACR		0x88	/* ATU Configuration */
    214      1.1     matt      /* not used		0x8c */
    215      1.1     matt #define	I80312_ATU_PAIS		0x90	/* Pri. ATU Interrupt Status */
    216      1.1     matt #define	I80312_ATU_SAIS		0x94	/* Sec. ATU Interrupt Status */
    217      1.1     matt #define	I80312_ATU_SACS		0x98	/* Sec. ATU Command/Status */
    218      1.1     matt #define	I80312_ATU_SODACWVL	0x9c	/* Sec. Outbound DAC Window Value (lo)*/
    219      1.1     matt #define	I80312_ATU_SODACWVH	0xa0	/* Sec. Outbound DAC Window Value (hi)*/
    220      1.1     matt #define	I80312_ATU_POCCA	0xa4	/* Pri. Outbound Config Address Data */
    221      1.1     matt #define	I80312_ATU_SOCCA	0xa8	/* Sec. Outbound Config Address Data */
    222      1.1     matt #define	I80312_ATU_POCCD	0xac	/* Pri. Outbound Config Cycle Data */
    223      1.1     matt #define	I80312_ATU_SOCCD	0xb0	/* Sec. Outbound Config Cycle Data */
    224      1.1     matt #define	I80312_ATU_PAQC		0xb4	/* Pri. ATU Queue Control */
    225      1.1     matt #define	I80312_ATU_SAQC		0xb8	/* Sec. ATU Queue Control */
    226      1.1     matt #define	I80312_ATU_PAIM		0xbc	/* Pri. ATU Interrupt Mask */
    227      1.1     matt #define	I80312_ATU_SAIM		0xc0	/* Sec. ATU Interrupt Mask */
    228      1.1     matt      /* not used		0xc4 .. 0xfc */
    229      1.1     matt 
    230  1.2.4.1  thorpej #define	ATU_LIMIT(x) \
    231  1.2.4.1  thorpej 	((0xffffffffUL - ((x) - 1)) & 0xfffffff0UL)
    232  1.2.4.1  thorpej 
    233  1.2.4.1  thorpej #define	ATU_ACR_POAE		(1U << 1)
    234  1.2.4.1  thorpej #define	ATU_ACR_SOAE		(1U << 2)
    235  1.2.4.1  thorpej #define	ATU_ACR_SDAS		(1U << 7)
    236  1.2.4.1  thorpej #define	ATU_ACR_DAE		(1U << 8)
    237  1.2.4.1  thorpej #define	ATU_ACR_PSERRIE		(1U << 9)
    238  1.2.4.1  thorpej #define	ATU_ACR_SSERRIE		(1U << 10)
    239  1.2.4.1  thorpej #define	ATU_ACR_SBMUAE		(1U << 12)
    240  1.2.4.1  thorpej #define	ATU_ACR_ADTS		(1U << 15)
    241  1.2.4.1  thorpej #define	ATU_ACR_PSERRMA		(1U << 16)
    242  1.2.4.1  thorpej #define	ATU_ACR_SSERRMA		(1U << 17)
    243  1.2.4.1  thorpej #define	ATU_ACR_DAU2GTE		(1U << 18)
    244  1.2.4.1  thorpej #define	ATU_ACR_PATUDRCA	(1U << 19)
    245  1.2.4.1  thorpej #define	ATU_ACR_SATUDRCA	(1U << 20)
    246  1.2.4.1  thorpej #define	ATU_ACR_BFN		(1U << 21)
    247  1.2.4.1  thorpej 
    248  1.2.4.1  thorpej #define	ATU_AIM_AETAE		(1U << 0)
    249  1.2.4.1  thorpej #define	ATU_AIM_AIESE		(1U << 1)
    250  1.2.4.1  thorpej #define	ATU_AIM_MPEIM		(1U << 2)
    251  1.2.4.1  thorpej #define	ATU_AIM_TATIM		(1U << 3)
    252  1.2.4.1  thorpej #define	ATU_AIM_TAMIM		(1U << 4)
    253  1.2.4.1  thorpej #define	ATU_AIM_MAIM		(1U << 5)
    254  1.2.4.1  thorpej #define	ATU_AIM_SAIM		(1U << 6)
    255  1.2.4.1  thorpej #define	ATU_AIM_DPEIM		(1U << 7)
    256  1.2.4.1  thorpej #define	ATU_AIM_PSTIM		(1U << 8)
    257  1.2.4.1  thorpej 
    258  1.2.4.1  thorpej /*
    259  1.2.4.1  thorpej  * Messaging Unit
    260  1.2.4.1  thorpej  */
    261      1.1     matt      /* not used		0x00 .. 0x0c */
    262      1.1     matt #define	I80312_MSG_IM0		0x10	/* Inbound Message 0 */
    263      1.1     matt #define	I80312_MSG_IM1		0x14	/* Inbound Message 1 */
    264      1.1     matt #define	I80312_MSG_OM0		0x18	/* Outbound Message 0 */
    265      1.1     matt #define	I80312_MSG_OM1		0x1c	/* Outbound Message 1 */
    266      1.1     matt #define	I80312_MSG_ID		0x20	/* Inbound Doorbell */
    267      1.1     matt #define	I80312_MSG_IIS		0x24	/* Inbound Interrupt Status */
    268      1.1     matt #define	I80312_MSG_IIM		0x28	/* Inbound Interrupt Mask */
    269      1.1     matt #define	I80312_MSG_OD		0x2c	/* Outbound Doorbell */
    270      1.1     matt #define	I80312_MSG_OIS		0x30	/* Outbound Interrupt Status */
    271      1.1     matt #define	I80312_MSG_OIM		0x34	/* Outbound Interrupt Mask */
    272      1.1     matt      /* not used		0x38 .. 0x4c */
    273      1.1     matt #define	I80312_MSG_MC		0x50	/* MU Configuration */
    274      1.1     matt #define	I80312_MSG_QBA		0x54	/* Queue Base Address */
    275      1.1     matt      /* not used		0x58 .. 0x5c */
    276      1.1     matt #define	I80312_MSG_IFHP		0x60	/* Inbound Free Head Pointer */
    277      1.1     matt #define	I80312_MSG_IFTP		0x64	/* Inbound Free Tail Pointer */
    278      1.1     matt #define	I80312_MSG_IPHP		0x68	/* Inbound Post Head Pointer */
    279      1.1     matt #define	I80312_MSG_IPTP		0x6c	/* Inbound Post Tail Pointer */
    280      1.1     matt #define	I80312_MSG_OFHP		0x70	/* Outbound Free Head Pointer */
    281      1.1     matt #define	I80312_MSG_OFTP		0x74	/* Outbound Free Tail Pointer */
    282      1.1     matt #define	I80312_MSG_OPHP		0x78	/* Outbound Post Head Pointer */
    283      1.1     matt #define	I80312_MSG_OPTP		0x7c	/* Outbound Post Tail Pointer */
    284      1.1     matt #define	I80312_MSG_IA		0x80	/* Index Address */
    285      1.1     matt      /* not used		0x84 .. 0xfc */
    286      1.1     matt 
    287      1.1     matt /*
    288      1.1     matt  * DMA Controller
    289      1.1     matt  */
    290      1.1     matt #define	I80312_DMA_CHAN0	0x00	/* Channel 0 */
    291      1.1     matt #define	I80312_DMA_CHAN1	0x40	/* Channel 1 */
    292      1.1     matt #define	I80312_DMA_CHAN2	0x80	/* Channel 2 */
    293      1.1     matt      /* not used		0xc0 .. 0xfc */
    294      1.1     matt 
    295      1.1     matt #define	I80312_DMA_CC		0x00	/* Channel Control */
    296      1.1     matt #define	I80312_DMA_CS		0x04	/* Channel Status */
    297      1.1     matt      /* not used		0x08 */
    298      1.1     matt #define	I80312_DMA_DA		0x0c	/* Descriptor Address */
    299      1.1     matt #define	I80312_DMA_NDA		0x10	/* Next Descriptor Address */
    300      1.1     matt #define	I80312_DMA_PA		0x14	/* PCI Address */
    301      1.1     matt #define	I80312_DMA_PUA		0x18	/* PCI Upper Address */
    302      1.1     matt #define	I80312_DMA_IBA		0x1c	/* Internal Bus Address */
    303      1.1     matt #define	I80312_DMA_BC		0x20	/* Byte Count */
    304      1.1     matt #define	I80312_DMA_DC		0x24	/* Descriptor Control */
    305      1.1     matt      /* not used		0x28 .. 0x3c */
    306      1.1     matt 
    307      1.1     matt /*
    308      1.1     matt  * Memory Controller
    309      1.1     matt  */
    310      1.1     matt #define	I80312_MEM_SI		0x00	/* SDRAM Initialization */
    311      1.1     matt #define	I80312_MEM_SC		0x04	/* SDRAM Control */
    312      1.1     matt #define	I80312_MEM_SB		0x08	/* SDRAM Base */
    313      1.1     matt #define	I80312_MEM_SB0		0x0c	/* SDRAM Bank 0 Size */
    314      1.1     matt #define	I80312_MEM_SB1		0x10	/* SDRAM Bank 1 Size */
    315      1.1     matt      /* not used		0x14 .. 0x30 */
    316      1.1     matt #define	I80312_MEM_EC		0x34	/* ECC Control */
    317      1.1     matt #define	I80312_MEM_EL0		0x38	/* ECC Log 0 */
    318      1.1     matt #define	I80312_MEM_EL1		0x3c	/* ECC Log 1 */
    319      1.1     matt #define	I80312_MEM_EA0		0x40	/* ECC Address 0 */
    320      1.1     matt #define	I80312_MEM_EA1		0x44	/* ECC Address 1 */
    321      1.1     matt #define	I80312_MEM_ET		0x48	/* ECC Test */
    322      1.1     matt #define	I80312_MEM_FB0		0x4c	/* ECC Flash Base 0 */
    323      1.1     matt #define	I80312_MEM_FB1		0x50	/* ECC Flash Base 1 */
    324      1.1     matt #define	I80312_MEM_FB0S		0x54	/* ECC Flash Bank 0 Size */
    325      1.1     matt #define	I80312_MEM_FB1S		0x58	/* ECC Flash Bank 1 Size */
    326      1.1     matt #define	I80312_MEM_FWS1		0x5c	/* ECC Wait State 1 Size */
    327      1.1     matt #define	I80312_MEM_FWS0		0x60	/* ECC Wait State 0 Size */
    328      1.1     matt #define	I80312_MEM_IS		0x65	/* ECC Interrupt Status */
    329      1.1     matt #define	I80312_MEM_RF		0x68	/* ECC Refresh Frequency */
    330      1.1     matt #define	I80312_MEM_RF		0x68	/* ECC Refresh Frequency */
    331      1.1     matt #define	I80312_MEM_RF		0x68	/* ECC Refresh Frequency */
    332      1.1     matt #define	I80312_MEM_RF		0x68	/* ECC Refresh Frequency */
    333      1.1     matt      /* not used		0x6c .. 0xfc */
    334      1.1     matt 
    335      1.1     matt /*
    336      1.1     matt  * Internal Arbitration Unit
    337      1.1     matt  */
    338      1.1     matt #define	I80312_ARB_IAC		0x00	/* Internal Aribtration Control */
    339      1.1     matt #define	I80312_ARB_MLT		0x04	/* Master Latency Timer */
    340      1.1     matt #define	I80312_ARB_MTT		0x08	/* Multi-Transaction Timer */
    341      1.1     matt      /* not used		0x0c .. 0x3c */
    342      1.1     matt 
    343      1.1     matt /*
    344      1.1     matt  * Bus(Core) Interface Unit
    345      1.1     matt  */
    346      1.1     matt      /* not used		0x40 */
    347      1.1     matt #define	I80312_BUS_IS		0x44	/* Interrupt Status */
    348      1.1     matt      /* not used		0x4c .. 0x7c */
    349      1.1     matt 
    350      1.1     matt /*
    351      1.1     matt  * I2C Bus Interface Unit
    352      1.1     matt  */
    353      1.1     matt #define	I80312_IIC_CTL		0x80	/* Control */
    354      1.1     matt #define	I80312_IIC_STS		0x84	/* Status */
    355      1.1     matt #define	I80312_IIC_SA		0x88	/* Slave Address */
    356      1.1     matt #define	I80312_IIC_DB		0x8c	/* Data Buffer */
    357      1.1     matt #define	I80312_IIC_CC		0x90	/* Clock Control */
    358      1.1     matt #define	I80312_IIC_BM		0x94	/* Bus Monitor */
    359      1.1     matt      /* not used		0x98 .. 0xfc */
    360      1.1     matt 
    361      1.1     matt /*
    362      1.1     matt  * PCI And Peripheral Interrupt (GPIO) Unit
    363      1.1     matt  */
    364      1.1     matt #define	I80312_INTC_IIS		0x00	/* IRQ Interrupt Status */
    365      1.1     matt #define	I80312_INTC_F2IS	0x04	/* FIQ2 Interrupt Status */
    366      1.1     matt #define	I80312_INTC_F1IS	0x08	/* FIQ1 Interrupt Status */
    367      1.1     matt      /* not used		0x0c */
    368      1.1     matt #define	I80312_INTC_PDI		0x10	/* Processor Device ID */
    369      1.1     matt      /* not used		0x14 .. 0x18 */
    370      1.1     matt #define	I80312_INTC_GOE		0x1c	/* GPIO Output Enable */
    371      1.1     matt #define	I80312_INTC_GID		0x20	/* GPIO Input Data */
    372      1.1     matt #define	I80312_INTC_GOD		0x24	/* GPIO Output Data */
    373      1.1     matt      /* not used		0x28 .. 0xfc */
    374      1.1     matt 
    375      1.1     matt /*
    376      1.1     matt  * Application Accelerator Registers
    377      1.1     matt  */
    378      1.1     matt #define	I80312_AAU_CTL		0x00	/* Control */
    379      1.1     matt #define	I80312_AAU_STS		0x04	/* Status */
    380      1.2     matt #define	I80312_AAU_DSCA		0x08	/* Descriptor Address */
    381      1.1     matt #define	I80312_AAU_NDA		0x0c	/* Next Descriptor Address */
    382      1.1     matt #define	I80312_AAU_SA1		0x10	/* i80200 Source Address 1 */
    383      1.1     matt #define	I80312_AAU_SA2		0x14	/* i80200 Source Address 2 */
    384      1.1     matt #define	I80312_AAU_SA3		0x18	/* i80200 Source Address 3 */
    385      1.1     matt #define	I80312_AAU_SA4		0x1c	/* i80200 Source Address 4 */
    386      1.2     matt #define	I80312_AAU_DSTA		0x20	/* i80200 Destination Address */
    387      1.1     matt #define	I80312_AAU_ABC		0x24	/* Accelerator Byte Count */
    388      1.1     matt #define	I80312_AAU_ADC		0x28	/* Accelerator Descriptor Count */
    389      1.1     matt #define	I80312_AAU_SA5		0x2c	/* i80200 Source Address 5 */
    390      1.1     matt #define	I80312_AAU_SA6		0x30	/* i80200 Source Address 6 */
    391      1.1     matt #define	I80312_AAU_SA7		0x34	/* i80200 Source Address 7 */
    392      1.1     matt #define	I80312_AAU_SA8		0x38	/* i80200 Source Address 8 */
    393      1.1     matt      /* not used		0x3c .. 0xfc */
    394  1.2.4.1  thorpej 
    395  1.2.4.1  thorpej /*
    396  1.2.4.1  thorpej  * Physical addresses 0x00002000..0x7fffffff are used by the
    397  1.2.4.1  thorpej  * ATU Outbound Direct Addressing Window.
    398  1.2.4.1  thorpej  */
    399  1.2.4.1  thorpej #define	I80312_PCI_DIRECT_BASE	0x00002000UL
    400  1.2.4.1  thorpej #define	I80312_PCI_DIRECT_SIZE	0x7fffe000UL
    401  1.2.4.1  thorpej 
    402  1.2.4.1  thorpej /*
    403  1.2.4.1  thorpej  * Physical addresses 0x80000000..0x9001ffff are used by the
    404  1.2.4.1  thorpej  * ATU Outbound Transaction Windows.
    405  1.2.4.1  thorpej  */
    406  1.2.4.1  thorpej #define	I80312_PCI_XLATE_BASE	0x80000000UL
    407  1.2.4.1  thorpej #define	I80312_PCI_XLATE_SIZE	0x10020000UL
    408  1.2.4.1  thorpej 
    409  1.2.4.1  thorpej #define	I80312_PCI_XLATE_MSIZE	0x04000000UL	/* 64M */
    410  1.2.4.1  thorpej #define	I80312_PCI_XLATE_IOSIZE	0x00010000UL	/* 64K */
    411  1.2.4.1  thorpej 
    412  1.2.4.1  thorpej #define	I80312_PCI_XLATE_PMW_BASE  (I80312_PCI_XLATE_BASE)
    413  1.2.4.1  thorpej 
    414  1.2.4.1  thorpej #define	I80312_PCI_XLATE_PDW_BASE  (I80312_PCI_XLATE_PMW_BASE + \
    415  1.2.4.1  thorpej 				    I80312_PCI_XLATE_MSIZE)
    416  1.2.4.1  thorpej 
    417  1.2.4.1  thorpej #define	I80312_PCI_XLATE_SMW_BASE  (I80312_PCI_XLATE_PDW_BASE + \
    418  1.2.4.1  thorpej 				    I80312_PCI_XLATE_MSIZE)
    419  1.2.4.1  thorpej 
    420  1.2.4.1  thorpej #define	I80312_PCI_XLATE_SDW_BASE  (I80312_PCI_XLATE_SMW_BASE + \
    421  1.2.4.1  thorpej 				    I80312_PCI_XLATE_MSIZE)
    422  1.2.4.1  thorpej 
    423  1.2.4.1  thorpej #define	I80312_PCI_XLATE_PIOW_BASE (I80312_PCI_XLATE_SDW_BASE + \
    424  1.2.4.1  thorpej 				    I80312_PCI_XLATE_MSIZE)
    425  1.2.4.1  thorpej 
    426  1.2.4.1  thorpej #define	I80312_PCI_XLATE_SIOW_BASE (I80312_PCI_XLATE_PIOW_BASE + \
    427  1.2.4.1  thorpej 				    I80312_PCI_XLATE_IOSIZE)
    428      1.1     matt 
    429      1.1     matt #endif /* _ARM_XSCALE_I80312REG_H_ */
    430