blob: 3e4058166da47392db80d414e7d9b669a914632f [file] [log] [blame]
Duy Truongf3ac7b32013-02-13 01:07:28 -08001/* Copyright (c) 2009-2011, The Linux Foundation. All rights reserved.
Shashank Mittal23b8f422010-04-16 19:27:21 -07002 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are met:
5 * * Redistributions of source code must retain the above copyright
6 * notice, this list of conditions and the following disclaimer.
7 * * Redistributions in binary form must reproduce the above copyright
8 * notice, this list of conditions and the following disclaimer in the
9 * documentation and/or other materials provided with the distribution.
Duy Truongf3ac7b32013-02-13 01:07:28 -080010 * * Neither the name of The Linux Foundation nor
Shashank Mittal23b8f422010-04-16 19:27:21 -070011 * the names of its contributors may be used to endorse or promote
12 * products derived from this software without specific prior written
13 * permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
19 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 *
27 */
28
29#ifndef __ASM_ARCH_MSM_IRQS_8x60_H
30#define __ASM_ARCH_MSM_IRQS_8x60_H
31
32/* MSM ACPU Interrupt Numbers */
33
34#define GIC_PPI_START 16
35#define GIC_SPI_START 32
Amol Jadica4f4c92011-01-13 20:19:34 -080036
Amol Jadic52c8a32011-07-12 11:27:04 -070037#define INT_DEBUG_TIMER_EXP (GIC_PPI_START + 0)
Shashank Mittal23b8f422010-04-16 19:27:21 -070038
Amol Jadic52c8a32011-07-12 11:27:04 -070039#define USB1_HS_BAM_IRQ (GIC_SPI_START + 94)
40#define USB1_HS_IRQ (GIC_SPI_START + 100)
41#define USB2_IRQ (GIC_SPI_START + 141)
42#define USB1_IRQ (GIC_SPI_START + 142)
43
44#define GSBI_QUP_IRQ(id) ((id) <= 8 ? (GIC_SPI_START + 145 + 2*(id)) : \
45 (GIC_SPI_START + 187 + 2*((id)-8)))
Shashank Mittal23b8f422010-04-16 19:27:21 -070046
47/* Retrofit universal macro names */
48#define INT_USB_HS USB1_HS_IRQ
49
50#define NR_MSM_IRQS 256
51#define NR_GPIO_IRQS 173
52#define NR_BOARD_IRQS 0
53
54#define NR_IRQS (NR_MSM_IRQS + NR_GPIO_IRQS + NR_BOARD_IRQS)
55
Ajay Dudanib01e5062011-12-03 23:23:42 -080056#endif /* __ASM_ARCH_MSM_IRQS_8x60_H */