xref: /linux/arch/mips/include/asm/msc01_ic.h (revision e5451c8f8330e03ad3cfa16048b4daf961af434f)
1*384740dcSRalf Baechle /*
2*384740dcSRalf Baechle  * PCI Register definitions for the MIPS System Controller.
3*384740dcSRalf Baechle  *
4*384740dcSRalf Baechle  * Copyright (C) 2004 MIPS Technologies, Inc.  All rights reserved.
5*384740dcSRalf Baechle  *
6*384740dcSRalf Baechle  * This file is subject to the terms and conditions of the GNU General Public
7*384740dcSRalf Baechle  * License.  See the file "COPYING" in the main directory of this archive
8*384740dcSRalf Baechle  * for more details.
9*384740dcSRalf Baechle  */
10*384740dcSRalf Baechle 
11*384740dcSRalf Baechle #ifndef __ASM_MIPS_BOARDS_MSC01_IC_H
12*384740dcSRalf Baechle #define __ASM_MIPS_BOARDS_MSC01_IC_H
13*384740dcSRalf Baechle 
14*384740dcSRalf Baechle /*****************************************************************************
15*384740dcSRalf Baechle  * Register offset addresses
16*384740dcSRalf Baechle  *****************************************************************************/
17*384740dcSRalf Baechle 
18*384740dcSRalf Baechle #define MSC01_IC_RST_OFS     0x00008	/* Software reset	       */
19*384740dcSRalf Baechle #define MSC01_IC_ENAL_OFS    0x00100	/* Int_in enable mask 31:0     */
20*384740dcSRalf Baechle #define MSC01_IC_ENAH_OFS    0x00108	/* Int_in enable mask 63:32    */
21*384740dcSRalf Baechle #define MSC01_IC_DISL_OFS    0x00120	/* Int_in disable mask 31:0    */
22*384740dcSRalf Baechle #define MSC01_IC_DISH_OFS    0x00128	/* Int_in disable mask 63:32   */
23*384740dcSRalf Baechle #define MSC01_IC_ISBL_OFS    0x00140	/* Raw int_in 31:0	       */
24*384740dcSRalf Baechle #define MSC01_IC_ISBH_OFS    0x00148	/* Raw int_in 63:32	       */
25*384740dcSRalf Baechle #define MSC01_IC_ISAL_OFS    0x00160	/* Masked int_in 31:0	       */
26*384740dcSRalf Baechle #define MSC01_IC_ISAH_OFS    0x00168	/* Masked int_in 63:32	       */
27*384740dcSRalf Baechle #define MSC01_IC_LVL_OFS     0x00180	/* Disable priority int_out    */
28*384740dcSRalf Baechle #define MSC01_IC_RAMW_OFS    0x00180	/* Shadow set RAM (EI)	       */
29*384740dcSRalf Baechle #define MSC01_IC_OSB_OFS     0x00188	/* Raw int_out		       */
30*384740dcSRalf Baechle #define MSC01_IC_OSA_OFS     0x00190	/* Masked int_out	       */
31*384740dcSRalf Baechle #define MSC01_IC_GENA_OFS    0x00198	/* Global HW int enable	       */
32*384740dcSRalf Baechle #define MSC01_IC_BASE_OFS    0x001a0	/* Base address of IC_VEC      */
33*384740dcSRalf Baechle #define MSC01_IC_VEC_OFS     0x001b0	/* Active int's vector address */
34*384740dcSRalf Baechle #define MSC01_IC_EOI_OFS     0x001c0	/* Enable lower level ints     */
35*384740dcSRalf Baechle #define MSC01_IC_CFG_OFS     0x001c8	/* Configuration register      */
36*384740dcSRalf Baechle #define MSC01_IC_TRLD_OFS    0x001d0	/* Interval timer reload val   */
37*384740dcSRalf Baechle #define MSC01_IC_TVAL_OFS    0x001e0	/* Interval timer current val  */
38*384740dcSRalf Baechle #define MSC01_IC_TCFG_OFS    0x001f0	/* Interval timer config       */
39*384740dcSRalf Baechle #define MSC01_IC_SUP_OFS     0x00200	/* Set up int_in line 0	       */
40*384740dcSRalf Baechle #define MSC01_IC_ENA_OFS     0x00800	/* Int_in enable mask 63:0     */
41*384740dcSRalf Baechle #define MSC01_IC_DIS_OFS     0x00820	/* Int_in disable mask 63:0    */
42*384740dcSRalf Baechle #define MSC01_IC_ISB_OFS     0x00840	/* Raw int_in 63:0	       */
43*384740dcSRalf Baechle #define MSC01_IC_ISA_OFS     0x00860	/* Masked int_in 63:0	       */
44*384740dcSRalf Baechle 
45*384740dcSRalf Baechle /*****************************************************************************
46*384740dcSRalf Baechle  * Register field encodings
47*384740dcSRalf Baechle  *****************************************************************************/
48*384740dcSRalf Baechle 
49*384740dcSRalf Baechle #define MSC01_IC_RST_RST_SHF	  0
50*384740dcSRalf Baechle #define MSC01_IC_RST_RST_MSK	  0x00000001
51*384740dcSRalf Baechle #define MSC01_IC_RST_RST_BIT	  MSC01_IC_RST_RST_MSK
52*384740dcSRalf Baechle #define MSC01_IC_LVL_LVL_SHF	  0
53*384740dcSRalf Baechle #define MSC01_IC_LVL_LVL_MSK	  0x000000ff
54*384740dcSRalf Baechle #define MSC01_IC_LVL_SPUR_SHF	  16
55*384740dcSRalf Baechle #define MSC01_IC_LVL_SPUR_MSK	  0x00010000
56*384740dcSRalf Baechle #define MSC01_IC_LVL_SPUR_BIT	  MSC01_IC_LVL_SPUR_MSK
57*384740dcSRalf Baechle #define MSC01_IC_RAMW_RIPL_SHF	  0
58*384740dcSRalf Baechle #define MSC01_IC_RAMW_RIPL_MSK	  0x0000003f
59*384740dcSRalf Baechle #define MSC01_IC_RAMW_DATA_SHF	  6
60*384740dcSRalf Baechle #define MSC01_IC_RAMW_DATA_MSK	  0x00000fc0
61*384740dcSRalf Baechle #define MSC01_IC_RAMW_ADDR_SHF	  25
62*384740dcSRalf Baechle #define MSC01_IC_RAMW_ADDR_MSK	  0x7e000000
63*384740dcSRalf Baechle #define MSC01_IC_RAMW_READ_SHF	  31
64*384740dcSRalf Baechle #define MSC01_IC_RAMW_READ_MSK	  0x80000000
65*384740dcSRalf Baechle #define MSC01_IC_RAMW_READ_BIT	  MSC01_IC_RAMW_READ_MSK
66*384740dcSRalf Baechle #define MSC01_IC_OSB_OSB_SHF	  0
67*384740dcSRalf Baechle #define MSC01_IC_OSB_OSB_MSK	  0x000000ff
68*384740dcSRalf Baechle #define MSC01_IC_OSA_OSA_SHF	  0
69*384740dcSRalf Baechle #define MSC01_IC_OSA_OSA_MSK	  0x000000ff
70*384740dcSRalf Baechle #define MSC01_IC_GENA_GENA_SHF	  0
71*384740dcSRalf Baechle #define MSC01_IC_GENA_GENA_MSK	  0x00000001
72*384740dcSRalf Baechle #define MSC01_IC_GENA_GENA_BIT	  MSC01_IC_GENA_GENA_MSK
73*384740dcSRalf Baechle #define MSC01_IC_CFG_DIS_SHF	  0
74*384740dcSRalf Baechle #define MSC01_IC_CFG_DIS_MSK	  0x00000001
75*384740dcSRalf Baechle #define MSC01_IC_CFG_DIS_BIT	  MSC01_IC_CFG_DIS_MSK
76*384740dcSRalf Baechle #define MSC01_IC_CFG_SHFT_SHF	  8
77*384740dcSRalf Baechle #define MSC01_IC_CFG_SHFT_MSK	  0x00000f00
78*384740dcSRalf Baechle #define MSC01_IC_TCFG_ENA_SHF	  0
79*384740dcSRalf Baechle #define MSC01_IC_TCFG_ENA_MSK	  0x00000001
80*384740dcSRalf Baechle #define MSC01_IC_TCFG_ENA_BIT	  MSC01_IC_TCFG_ENA_MSK
81*384740dcSRalf Baechle #define MSC01_IC_TCFG_INT_SHF	  8
82*384740dcSRalf Baechle #define MSC01_IC_TCFG_INT_MSK	  0x00000100
83*384740dcSRalf Baechle #define MSC01_IC_TCFG_INT_BIT	  MSC01_IC_TCFG_INT_MSK
84*384740dcSRalf Baechle #define MSC01_IC_TCFG_EDGE_SHF	  16
85*384740dcSRalf Baechle #define MSC01_IC_TCFG_EDGE_MSK	  0x00010000
86*384740dcSRalf Baechle #define MSC01_IC_TCFG_EDGE_BIT	  MSC01_IC_TCFG_EDGE_MSK
87*384740dcSRalf Baechle #define MSC01_IC_SUP_PRI_SHF	  0
88*384740dcSRalf Baechle #define MSC01_IC_SUP_PRI_MSK	  0x00000007
89*384740dcSRalf Baechle #define MSC01_IC_SUP_EDGE_SHF	  8
90*384740dcSRalf Baechle #define MSC01_IC_SUP_EDGE_MSK	  0x00000100
91*384740dcSRalf Baechle #define MSC01_IC_SUP_EDGE_BIT	  MSC01_IC_SUP_EDGE_MSK
92*384740dcSRalf Baechle #define MSC01_IC_SUP_STEP	  8
93*384740dcSRalf Baechle 
94*384740dcSRalf Baechle /*
95*384740dcSRalf Baechle  * MIPS System controller interrupt register base.
96*384740dcSRalf Baechle  *
97*384740dcSRalf Baechle  */
98*384740dcSRalf Baechle 
99*384740dcSRalf Baechle /*****************************************************************************
100*384740dcSRalf Baechle  * Absolute register addresses
101*384740dcSRalf Baechle  *****************************************************************************/
102*384740dcSRalf Baechle 
103*384740dcSRalf Baechle #define MSC01_IC_RST	 (MSC01_IC_REG_BASE + MSC01_IC_RST_OFS)
104*384740dcSRalf Baechle #define MSC01_IC_ENAL	 (MSC01_IC_REG_BASE + MSC01_IC_ENAL_OFS)
105*384740dcSRalf Baechle #define MSC01_IC_ENAH	 (MSC01_IC_REG_BASE + MSC01_IC_ENAH_OFS)
106*384740dcSRalf Baechle #define MSC01_IC_DISL	 (MSC01_IC_REG_BASE + MSC01_IC_DISL_OFS)
107*384740dcSRalf Baechle #define MSC01_IC_DISH	 (MSC01_IC_REG_BASE + MSC01_IC_DISH_OFS)
108*384740dcSRalf Baechle #define MSC01_IC_ISBL	 (MSC01_IC_REG_BASE + MSC01_IC_ISBL_OFS)
109*384740dcSRalf Baechle #define MSC01_IC_ISBH	 (MSC01_IC_REG_BASE + MSC01_IC_ISBH_OFS)
110*384740dcSRalf Baechle #define MSC01_IC_ISAL	 (MSC01_IC_REG_BASE + MSC01_IC_ISAL_OFS)
111*384740dcSRalf Baechle #define MSC01_IC_ISAH	 (MSC01_IC_REG_BASE + MSC01_IC_ISAH_OFS)
112*384740dcSRalf Baechle #define MSC01_IC_LVL	 (MSC01_IC_REG_BASE + MSC01_IC_LVL_OFS)
113*384740dcSRalf Baechle #define MSC01_IC_RAMW	 (MSC01_IC_REG_BASE + MSC01_IC_RAMW_OFS)
114*384740dcSRalf Baechle #define MSC01_IC_OSB	 (MSC01_IC_REG_BASE + MSC01_IC_OSB_OFS)
115*384740dcSRalf Baechle #define MSC01_IC_OSA	 (MSC01_IC_REG_BASE + MSC01_IC_OSA_OFS)
116*384740dcSRalf Baechle #define MSC01_IC_GENA	 (MSC01_IC_REG_BASE + MSC01_IC_GENA_OFS)
117*384740dcSRalf Baechle #define MSC01_IC_BASE	 (MSC01_IC_REG_BASE + MSC01_IC_BASE_OFS)
118*384740dcSRalf Baechle #define MSC01_IC_VEC	 (MSC01_IC_REG_BASE + MSC01_IC_VEC_OFS)
119*384740dcSRalf Baechle #define MSC01_IC_EOI	 (MSC01_IC_REG_BASE + MSC01_IC_EOI_OFS)
120*384740dcSRalf Baechle #define MSC01_IC_CFG	 (MSC01_IC_REG_BASE + MSC01_IC_CFG_OFS)
121*384740dcSRalf Baechle #define MSC01_IC_TRLD	 (MSC01_IC_REG_BASE + MSC01_IC_TRLD_OFS)
122*384740dcSRalf Baechle #define MSC01_IC_TVAL	 (MSC01_IC_REG_BASE + MSC01_IC_TVAL_OFS)
123*384740dcSRalf Baechle #define MSC01_IC_TCFG	 (MSC01_IC_REG_BASE + MSC01_IC_TCFG_OFS)
124*384740dcSRalf Baechle #define MSC01_IC_SUP	 (MSC01_IC_REG_BASE + MSC01_IC_SUP_OFS)
125*384740dcSRalf Baechle #define MSC01_IC_ENA	 (MSC01_IC_REG_BASE + MSC01_IC_ENA_OFS)
126*384740dcSRalf Baechle #define MSC01_IC_DIS	 (MSC01_IC_REG_BASE + MSC01_IC_DIS_OFS)
127*384740dcSRalf Baechle #define MSC01_IC_ISB	 (MSC01_IC_REG_BASE + MSC01_IC_ISB_OFS)
128*384740dcSRalf Baechle #define MSC01_IC_ISA	 (MSC01_IC_REG_BASE + MSC01_IC_ISA_OFS)
129*384740dcSRalf Baechle 
130*384740dcSRalf Baechle /*
131*384740dcSRalf Baechle  * Soc-it interrupts are configurable.
132*384740dcSRalf Baechle  * Every board describes its IRQ mapping with this table.
133*384740dcSRalf Baechle  */
134*384740dcSRalf Baechle typedef struct msc_irqmap {
135*384740dcSRalf Baechle 	int	im_irq;
136*384740dcSRalf Baechle 	int	im_type;
137*384740dcSRalf Baechle 	int	im_lvl;
138*384740dcSRalf Baechle } msc_irqmap_t;
139*384740dcSRalf Baechle 
140*384740dcSRalf Baechle /* im_type */
141*384740dcSRalf Baechle #define MSC01_IRQ_LEVEL		0
142*384740dcSRalf Baechle #define MSC01_IRQ_EDGE		1
143*384740dcSRalf Baechle 
144*384740dcSRalf Baechle extern void __init init_msc_irqs(unsigned long icubase, unsigned int base, msc_irqmap_t *imp, int nirq);
145*384740dcSRalf Baechle extern void ll_msc_irq(void);
146*384740dcSRalf Baechle 
147*384740dcSRalf Baechle #endif /* __ASM_MIPS_BOARDS_MSC01_IC_H */
148