| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License.  See the file "COPYING" in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2000, 07 MIPS Technologies, Inc. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | #ifndef __LINUX_IRQCHIP_MIPS_GIC_H
 | 
					
						
							|  |  |  | #define __LINUX_IRQCHIP_MIPS_GIC_H
 | 
					
						
							| 
									
										
										
										
											2014-01-15 10:31:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | #include <linux/clocksource.h>
 | 
					
						
							| 
									
										
										
										
											2014-07-17 09:20:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-18 14:47:25 -07:00
										 |  |  | #define GIC_MAX_INTRS			256
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | /* Constants */ | 
					
						
							|  |  |  | #define GIC_POL_POS			1
 | 
					
						
							|  |  |  | #define GIC_POL_NEG			0
 | 
					
						
							|  |  |  | #define GIC_TRIG_EDGE			1
 | 
					
						
							|  |  |  | #define GIC_TRIG_LEVEL			0
 | 
					
						
							| 
									
										
										
										
											2014-09-18 14:47:21 -07:00
										 |  |  | #define GIC_TRIG_DUAL_ENABLE		1
 | 
					
						
							|  |  |  | #define GIC_TRIG_DUAL_DISABLE		0
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MSK(n) ((1 << (n)) - 1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Accessors */ | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:52 -07:00
										 |  |  | #define GIC_REG(segment, offset) (segment##_##SECTION_OFS + offset##_##OFS)
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* GIC Address Space */ | 
					
						
							|  |  |  | #define SHARED_SECTION_OFS		0x0000
 | 
					
						
							|  |  |  | #define SHARED_SECTION_SIZE		0x8000
 | 
					
						
							|  |  |  | #define VPE_LOCAL_SECTION_OFS		0x8000
 | 
					
						
							|  |  |  | #define VPE_LOCAL_SECTION_SIZE		0x4000
 | 
					
						
							|  |  |  | #define VPE_OTHER_SECTION_OFS		0xc000
 | 
					
						
							|  |  |  | #define VPE_OTHER_SECTION_SIZE		0x4000
 | 
					
						
							|  |  |  | #define USM_VISIBLE_SECTION_OFS		0x10000
 | 
					
						
							|  |  |  | #define USM_VISIBLE_SECTION_SIZE	0x10000
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Register Map for Shared Section */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | #define GIC_SH_CONFIG_OFS		0x0000
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Shared Global Counter */ | 
					
						
							|  |  |  | #define GIC_SH_COUNTER_31_00_OFS	0x0010
 | 
					
						
							|  |  |  | #define GIC_SH_COUNTER_63_32_OFS	0x0014
 | 
					
						
							| 
									
										
										
										
											2009-07-10 01:54:09 -07:00
										 |  |  | #define GIC_SH_REVISIONID_OFS		0x0020
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | /* Convert an interrupt number to a byte offset/bit for multi-word registers */ | 
					
						
							|  |  |  | #define GIC_INTR_OFS(intr)		(((intr) / 32) * 4)
 | 
					
						
							|  |  |  | #define GIC_INTR_BIT(intr)		((intr) % 32)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Polarity : Reset Value is always 0 */ | 
					
						
							|  |  |  | #define GIC_SH_SET_POLARITY_OFS		0x0100
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Triggering : Reset Value is always 0 */ | 
					
						
							|  |  |  | #define GIC_SH_SET_TRIGGER_OFS		0x0180
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Dual edge triggering : Reset Value is always 0 */ | 
					
						
							|  |  |  | #define GIC_SH_SET_DUAL_OFS		0x0200
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Set/Clear corresponding bit in Edge Detect Register */ | 
					
						
							|  |  |  | #define GIC_SH_WEDGE_OFS		0x0280
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | /* Mask manipulation */ | 
					
						
							|  |  |  | #define GIC_SH_RMASK_OFS		0x0300
 | 
					
						
							|  |  |  | #define GIC_SH_SMASK_OFS		0x0380
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Global Interrupt Mask Register (RO) - Bit Set == Interrupt enabled */ | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | #define GIC_SH_MASK_OFS			0x0400
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Pending Global Interrupts (RO) */ | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | #define GIC_SH_PEND_OFS			0x0480
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Maps Interrupt X to a Pin */ | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | #define GIC_SH_INTR_MAP_TO_PIN_BASE_OFS 0x0500
 | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:52 -07:00
										 |  |  | #define GIC_SH_MAP_TO_PIN(intr)		(4 * (intr))
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Maps Interrupt X to a VPE */ | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | #define GIC_SH_INTR_MAP_TO_VPE_BASE_OFS 0x2000
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | #define GIC_SH_MAP_TO_VPE_REG_OFF(intr, vpe) \
 | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:52 -07:00
										 |  |  | 	((32 * (intr)) + (((vpe) / 32) * 4)) | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | #define GIC_SH_MAP_TO_VPE_REG_BIT(vpe)	(1 << ((vpe) % 32))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Register Map for Local Section */ | 
					
						
							|  |  |  | #define GIC_VPE_CTL_OFS			0x0000
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_OFS		0x0004
 | 
					
						
							|  |  |  | #define GIC_VPE_MASK_OFS		0x0008
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_OFS		0x000c
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_OFS		0x0010
 | 
					
						
							|  |  |  | #define GIC_VPE_WD_MAP_OFS		0x0040
 | 
					
						
							|  |  |  | #define GIC_VPE_COMPARE_MAP_OFS		0x0044
 | 
					
						
							|  |  |  | #define GIC_VPE_TIMER_MAP_OFS		0x0048
 | 
					
						
							| 
									
										
										
										
											2014-09-18 14:47:27 -07:00
										 |  |  | #define GIC_VPE_FDC_MAP_OFS		0x004c
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | #define GIC_VPE_PERFCTR_MAP_OFS		0x0050
 | 
					
						
							|  |  |  | #define GIC_VPE_SWINT0_MAP_OFS		0x0054
 | 
					
						
							|  |  |  | #define GIC_VPE_SWINT1_MAP_OFS		0x0058
 | 
					
						
							|  |  |  | #define GIC_VPE_OTHER_ADDR_OFS		0x0080
 | 
					
						
							|  |  |  | #define GIC_VPE_WD_CONFIG0_OFS		0x0090
 | 
					
						
							|  |  |  | #define GIC_VPE_WD_COUNT0_OFS		0x0094
 | 
					
						
							|  |  |  | #define GIC_VPE_WD_INITIAL0_OFS		0x0098
 | 
					
						
							|  |  |  | #define GIC_VPE_COMPARE_LO_OFS		0x00a0
 | 
					
						
							| 
									
										
										
										
											2013-04-10 16:30:12 -05:00
										 |  |  | #define GIC_VPE_COMPARE_HI_OFS		0x00a4
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:52 -07:00
										 |  |  | #define GIC_VPE_EIC_SHADOW_SET_BASE_OFS	0x0100
 | 
					
						
							|  |  |  | #define GIC_VPE_EIC_SS(intr)		(4 * (intr))
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:52 -07:00
										 |  |  | #define GIC_VPE_EIC_VEC_BASE_OFS	0x0800
 | 
					
						
							|  |  |  | #define GIC_VPE_EIC_VEC(intr)		(4 * (intr))
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define GIC_VPE_TENABLE_NMI_OFS		0x1000
 | 
					
						
							|  |  |  | #define GIC_VPE_TENABLE_YQ_OFS		0x1004
 | 
					
						
							|  |  |  | #define GIC_VPE_TENABLE_INT_31_0_OFS	0x1080
 | 
					
						
							|  |  |  | #define GIC_VPE_TENABLE_INT_63_32_OFS	0x1084
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* User Mode Visible Section Register Map */ | 
					
						
							|  |  |  | #define GIC_UMV_SH_COUNTER_31_00_OFS	0x0000
 | 
					
						
							|  |  |  | #define GIC_UMV_SH_COUNTER_63_32_OFS	0x0004
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Masks */ | 
					
						
							|  |  |  | #define GIC_SH_CONFIG_COUNTSTOP_SHF	28
 | 
					
						
							|  |  |  | #define GIC_SH_CONFIG_COUNTSTOP_MSK	(MSK(1) << GIC_SH_CONFIG_COUNTSTOP_SHF)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define GIC_SH_CONFIG_COUNTBITS_SHF	24
 | 
					
						
							|  |  |  | #define GIC_SH_CONFIG_COUNTBITS_MSK	(MSK(4) << GIC_SH_CONFIG_COUNTBITS_SHF)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define GIC_SH_CONFIG_NUMINTRS_SHF	16
 | 
					
						
							|  |  |  | #define GIC_SH_CONFIG_NUMINTRS_MSK	(MSK(8) << GIC_SH_CONFIG_NUMINTRS_SHF)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define GIC_SH_CONFIG_NUMVPES_SHF	0
 | 
					
						
							|  |  |  | #define GIC_SH_CONFIG_NUMVPES_MSK	(MSK(8) << GIC_SH_CONFIG_NUMVPES_SHF)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | #define GIC_SH_WEDGE_SET(intr)		((intr) | (0x1 << 31))
 | 
					
						
							|  |  |  | #define GIC_SH_WEDGE_CLR(intr)		((intr) & ~(0x1 << 31))
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define GIC_MAP_TO_PIN_SHF		31
 | 
					
						
							|  |  |  | #define GIC_MAP_TO_PIN_MSK		(MSK(1) << GIC_MAP_TO_PIN_SHF)
 | 
					
						
							|  |  |  | #define GIC_MAP_TO_NMI_SHF		30
 | 
					
						
							|  |  |  | #define GIC_MAP_TO_NMI_MSK		(MSK(1) << GIC_MAP_TO_NMI_SHF)
 | 
					
						
							|  |  |  | #define GIC_MAP_TO_YQ_SHF		29
 | 
					
						
							|  |  |  | #define GIC_MAP_TO_YQ_MSK		(MSK(1) << GIC_MAP_TO_YQ_SHF)
 | 
					
						
							|  |  |  | #define GIC_MAP_SHF			0
 | 
					
						
							|  |  |  | #define GIC_MAP_MSK			(MSK(6) << GIC_MAP_SHF)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* GIC_VPE_CTL Masks */ | 
					
						
							| 
									
										
										
										
											2014-09-18 14:47:27 -07:00
										 |  |  | #define GIC_VPE_CTL_FDC_RTBL_SHF	4
 | 
					
						
							|  |  |  | #define GIC_VPE_CTL_FDC_RTBL_MSK	(MSK(1) << GIC_VPE_CTL_FDC_RTBL_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_CTL_SWINT_RTBL_SHF	3
 | 
					
						
							|  |  |  | #define GIC_VPE_CTL_SWINT_RTBL_MSK	(MSK(1) << GIC_VPE_CTL_SWINT_RTBL_SHF)
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | #define GIC_VPE_CTL_PERFCNT_RTBL_SHF	2
 | 
					
						
							|  |  |  | #define GIC_VPE_CTL_PERFCNT_RTBL_MSK	(MSK(1) << GIC_VPE_CTL_PERFCNT_RTBL_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_CTL_TIMER_RTBL_SHF	1
 | 
					
						
							|  |  |  | #define GIC_VPE_CTL_TIMER_RTBL_MSK	(MSK(1) << GIC_VPE_CTL_TIMER_RTBL_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_CTL_EIC_MODE_SHF	0
 | 
					
						
							|  |  |  | #define GIC_VPE_CTL_EIC_MODE_MSK	(MSK(1) << GIC_VPE_CTL_EIC_MODE_SHF)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* GIC_VPE_PEND Masks */ | 
					
						
							|  |  |  | #define GIC_VPE_PEND_WD_SHF		0
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_WD_MSK		(MSK(1) << GIC_VPE_PEND_WD_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_CMP_SHF		1
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_CMP_MSK		(MSK(1) << GIC_VPE_PEND_CMP_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_TIMER_SHF		2
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_TIMER_MSK		(MSK(1) << GIC_VPE_PEND_TIMER_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_PERFCOUNT_SHF	3
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_PERFCOUNT_MSK	(MSK(1) << GIC_VPE_PEND_PERFCOUNT_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_SWINT0_SHF		4
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_SWINT0_MSK		(MSK(1) << GIC_VPE_PEND_SWINT0_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_SWINT1_SHF		5
 | 
					
						
							|  |  |  | #define GIC_VPE_PEND_SWINT1_MSK		(MSK(1) << GIC_VPE_PEND_SWINT1_SHF)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* GIC_VPE_RMASK Masks */ | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_WD_SHF		0
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_WD_MSK		(MSK(1) << GIC_VPE_RMASK_WD_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_CMP_SHF		1
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_CMP_MSK		(MSK(1) << GIC_VPE_RMASK_CMP_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_TIMER_SHF		2
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_TIMER_MSK		(MSK(1) << GIC_VPE_RMASK_TIMER_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_PERFCNT_SHF	3
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_PERFCNT_MSK	(MSK(1) << GIC_VPE_RMASK_PERFCNT_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_SWINT0_SHF	4
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_SWINT0_MSK	(MSK(1) << GIC_VPE_RMASK_SWINT0_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_SWINT1_SHF	5
 | 
					
						
							|  |  |  | #define GIC_VPE_RMASK_SWINT1_MSK	(MSK(1) << GIC_VPE_RMASK_SWINT1_SHF)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* GIC_VPE_SMASK Masks */ | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_WD_SHF		0
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_WD_MSK		(MSK(1) << GIC_VPE_SMASK_WD_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_CMP_SHF		1
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_CMP_MSK		(MSK(1) << GIC_VPE_SMASK_CMP_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_TIMER_SHF		2
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_TIMER_MSK		(MSK(1) << GIC_VPE_SMASK_TIMER_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_PERFCNT_SHF	3
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_PERFCNT_MSK	(MSK(1) << GIC_VPE_SMASK_PERFCNT_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_SWINT0_SHF	4
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_SWINT0_MSK	(MSK(1) << GIC_VPE_SMASK_SWINT0_SHF)
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_SWINT1_SHF	5
 | 
					
						
							|  |  |  | #define GIC_VPE_SMASK_SWINT1_MSK	(MSK(1) << GIC_VPE_SMASK_SWINT1_SHF)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-31 16:05:37 -05:00
										 |  |  | /* GIC nomenclature for Core Interrupt Pins. */ | 
					
						
							|  |  |  | #define GIC_CPU_INT0		0 /* Core Interrupt 2 */
 | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  | #define GIC_CPU_INT1		1 /* .		      */
 | 
					
						
							|  |  |  | #define GIC_CPU_INT2		2 /* .		      */
 | 
					
						
							|  |  |  | #define GIC_CPU_INT3		3 /* .		      */
 | 
					
						
							|  |  |  | #define GIC_CPU_INT4		4 /* .		      */
 | 
					
						
							| 
									
										
										
										
											2013-06-21 10:09:23 +00:00
										 |  |  | #define GIC_CPU_INT5		5 /* Core Interrupt 7 */
 | 
					
						
							| 
									
										
										
										
											2012-08-31 16:05:37 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-18 14:47:24 -07:00
										 |  |  | /* Add 2 to convert GIC CPU pin to core interrupt */ | 
					
						
							|  |  |  | #define GIC_CPU_PIN_OFFSET	2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-31 16:05:37 -05:00
										 |  |  | /* Add 2 to convert non-EIC hardware interrupt to EIC vector number. */ | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | #define GIC_CPU_TO_VEC_OFFSET	2
 | 
					
						
							| 
									
										
										
										
											2012-08-31 16:05:37 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Mapped interrupt to pin X, then GIC will generate the vector (X+1). */ | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | #define GIC_PIN_TO_VEC_OFFSET	1
 | 
					
						
							| 
									
										
										
										
											2012-08-31 16:05:37 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-18 14:47:27 -07:00
										 |  |  | /* Local GIC interrupts. */ | 
					
						
							|  |  |  | #define GIC_LOCAL_INT_WD	0 /* GIC watchdog */
 | 
					
						
							|  |  |  | #define GIC_LOCAL_INT_COMPARE	1 /* GIC count and compare timer */
 | 
					
						
							|  |  |  | #define GIC_LOCAL_INT_TIMER	2 /* CPU timer interrupt */
 | 
					
						
							|  |  |  | #define GIC_LOCAL_INT_PERFCTR	3 /* CPU performance counter */
 | 
					
						
							|  |  |  | #define GIC_LOCAL_INT_SWINT0	4 /* CPU software interrupt 0 */
 | 
					
						
							|  |  |  | #define GIC_LOCAL_INT_SWINT1	5 /* CPU software interrupt 1 */
 | 
					
						
							|  |  |  | #define GIC_LOCAL_INT_FDC	6 /* CPU fast debug channel */
 | 
					
						
							|  |  |  | #define GIC_NUM_LOCAL_INTRS	7
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Convert between local/shared IRQ number and GIC HW IRQ number. */ | 
					
						
							|  |  |  | #define GIC_LOCAL_HWIRQ_BASE	0
 | 
					
						
							|  |  |  | #define GIC_LOCAL_TO_HWIRQ(x)	(GIC_LOCAL_HWIRQ_BASE + (x))
 | 
					
						
							|  |  |  | #define GIC_HWIRQ_TO_LOCAL(x)	((x) - GIC_LOCAL_HWIRQ_BASE)
 | 
					
						
							|  |  |  | #define GIC_SHARED_HWIRQ_BASE	GIC_NUM_LOCAL_INTRS
 | 
					
						
							|  |  |  | #define GIC_SHARED_TO_HWIRQ(x)	(GIC_SHARED_HWIRQ_BASE + (x))
 | 
					
						
							|  |  |  | #define GIC_HWIRQ_TO_SHARED(x)	((x) - GIC_SHARED_HWIRQ_BASE)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-10 16:27:04 -05:00
										 |  |  | extern unsigned int gic_present; | 
					
						
							| 
									
										
										
										
											2012-08-31 16:05:37 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | extern void gic_init(unsigned long gic_base_addr, | 
					
						
							| 
									
										
										
										
											2014-09-18 14:47:24 -07:00
										 |  |  | 	unsigned long gic_addrspace_size, unsigned int cpu_vec, | 
					
						
							|  |  |  | 	unsigned int irqbase); | 
					
						
							| 
									
										
										
										
											2012-08-31 16:05:37 -05:00
										 |  |  | extern void gic_clocksource_init(unsigned int); | 
					
						
							| 
									
										
										
										
											2013-04-10 16:28:36 -05:00
										 |  |  | extern cycle_t gic_read_count(void); | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:49 -07:00
										 |  |  | extern unsigned int gic_get_count_width(void); | 
					
						
							| 
									
										
										
										
											2013-04-10 16:30:12 -05:00
										 |  |  | extern cycle_t gic_read_compare(void); | 
					
						
							|  |  |  | extern void gic_write_compare(cycle_t cnt); | 
					
						
							| 
									
										
										
										
											2014-03-05 11:35:53 +00:00
										 |  |  | extern void gic_write_cpu_compare(cycle_t cnt, int cpu); | 
					
						
							| 
									
										
										
										
											2008-04-28 17:14:26 +01:00
										 |  |  | extern void gic_send_ipi(unsigned int intr); | 
					
						
							| 
									
										
										
										
											2009-06-17 16:22:53 -07:00
										 |  |  | extern unsigned int plat_ipi_call_int_xlate(unsigned int); | 
					
						
							|  |  |  | extern unsigned int plat_ipi_resched_int_xlate(unsigned int); | 
					
						
							| 
									
										
										
										
											2012-07-06 23:56:00 +02:00
										 |  |  | extern unsigned int gic_get_timer_pending(void); | 
					
						
							| 
									
										
										
										
											2014-09-18 14:47:27 -07:00
										 |  |  | extern int gic_get_c0_compare_int(void); | 
					
						
							|  |  |  | extern int gic_get_c0_perfcount_int(void); | 
					
						
							| 
									
										
										
										
											2014-10-20 12:03:54 -07:00
										 |  |  | #endif /* __LINUX_IRQCHIP_MIPS_GIC_H */
 |