blob: 732aaff1d6be46249f503c81315980633d1f2604 [file] [log] [blame]
Ravi Kumar V8834dad2012-08-31 22:49:55 +05301/*
2 * Copyright (c) 2012, Code Aurora Forum. All rights reserved.
3 *
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#ifndef __ASM_ARCH_MSM_IOMAP_8092_H
15#define __ASM_ARCH_MSM_IOMAP_8092_H
16
17/* Physical base address and size of peripherals.
18 * Ordered by the virtual base addresses they will be mapped at.
19 *
20 * If you add or remove entries here, you'll want to edit the
21 * io desc array in arch/arm/mach-msm/io.c to reflect your
22 * changes.
23 *
24 */
25
Ravi Kumar V8485af62012-09-21 13:15:17 +053026#define MPQ8092_MSM_SHARED_RAM_PHYS 0x0FA00000
Ravi Kumar V8834dad2012-08-31 22:49:55 +053027
28#define MPQ8092_QGIC_DIST_PHYS 0xF9000000
29#define MPQ8092_QGIC_DIST_SIZE SZ_4K
30
31#define MPQ8092_QGIC_CPU_PHYS 0xF9002000
32#define MPQ8092_QGIC_CPU_SIZE SZ_4K
33
34#define MPQ8092_APCS_GCC_PHYS 0xF9011000
35#define MPQ8092_APCS_GCC_SIZE SZ_4K
36
37#define MPQ8092_TLMM_PHYS 0xFD510000
38#define MPQ8092_TLMM_SIZE SZ_16K
39
40#ifdef CONFIG_DEBUG_MPQ8092_UART
41#define MSM_DEBUG_UART_BASE IOMEM(0xFA71E000)
42#define MSM_DEBUG_UART_PHYS 0xF991E000
43#endif
44
45#endif