Merge branch 'x86-debug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / arch / arm / mach-spear3xx / include / mach / spear.h
CommitLineData
a7e9c452 1/*
2 * arch/arm/mach-spear3xx/include/mach/spear.h
3 *
4 * SPEAr3xx Machine family specific definition
5 *
6 * Copyright (C) 2009 ST Microelectronics
10d8935f 7 * Viresh Kumar <viresh.linux@gmail.com>
a7e9c452 8 *
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
12 */
13
14#ifndef __MACH_SPEAR3XX_H
15#define __MACH_SPEAR3XX_H
16
981a95d3 17#include <asm/memory.h>
a7e9c452 18
19/* ICM1 - Low speed connection */
981a95d3 20#define SPEAR3XX_ICM1_2_BASE UL(0xD0000000)
c5fa4fdc 21#define VA_SPEAR3XX_ICM1_2_BASE UL(0xFD000000)
981a95d3 22#define SPEAR3XX_ICM1_UART_BASE UL(0xD0000000)
c5fa4fdc 23#define VA_SPEAR3XX_ICM1_UART_BASE (VA_SPEAR3XX_ICM1_2_BASE | SPEAR3XX_ICM1_UART_BASE)
981a95d3 24#define SPEAR3XX_ICM1_SSP_BASE UL(0xD0100000)
a7e9c452 25
26/* ML1 - Multi Layer CPU Subsystem */
981a95d3 27#define SPEAR3XX_ICM3_ML1_2_BASE UL(0xF0000000)
5019f0b1 28#define VA_SPEAR6XX_ML_CPU_BASE UL(0xF0000000)
a7e9c452 29
30/* ICM3 - Basic Subsystem */
981a95d3 31#define SPEAR3XX_ICM3_SMI_CTRL_BASE UL(0xFC000000)
c5fa4fdc 32#define VA_SPEAR3XX_ICM3_SMI_CTRL_BASE UL(0xFC000000)
981a95d3 33#define SPEAR3XX_ICM3_DMA_BASE UL(0xFC400000)
981a95d3 34#define SPEAR3XX_ICM3_SYS_CTRL_BASE UL(0xFCA00000)
c5fa4fdc 35#define VA_SPEAR3XX_ICM3_SYS_CTRL_BASE (VA_SPEAR3XX_ICM3_SMI_CTRL_BASE | SPEAR3XX_ICM3_SYS_CTRL_BASE)
981a95d3 36#define SPEAR3XX_ICM3_MISC_REG_BASE UL(0xFCA80000)
c5fa4fdc 37#define VA_SPEAR3XX_ICM3_MISC_REG_BASE (VA_SPEAR3XX_ICM3_SMI_CTRL_BASE | SPEAR3XX_ICM3_MISC_REG_BASE)
a7e9c452 38
39/* Debug uart for linux, will be used for debug and uncompress messages */
40#define SPEAR_DBG_UART_BASE SPEAR3XX_ICM1_UART_BASE
41#define VA_SPEAR_DBG_UART_BASE VA_SPEAR3XX_ICM1_UART_BASE
42
43/* Sysctl base for spear platform */
44#define SPEAR_SYS_CTRL_BASE SPEAR3XX_ICM3_SYS_CTRL_BASE
45#define VA_SPEAR_SYS_CTRL_BASE VA_SPEAR3XX_ICM3_SYS_CTRL_BASE
46
5df33a62
VK
47/* SPEAr320 Macros */
48#define SPEAR320_SOC_CONFIG_BASE UL(0xB3000000)
49#define VA_SPEAR320_SOC_CONFIG_BASE UL(0xFE000000)
50#define SPEAR320_CONTROL_REG IOMEM(VA_SPEAR320_SOC_CONFIG_BASE)
51#define SPEAR320_EXT_CTRL_REG IOMEM(VA_SPEAR320_SOC_CONFIG_BASE + 0x0018)
52 #define SPEAR320_UARTX_PCLK_MASK 0x1
53 #define SPEAR320_UART2_PCLK_SHIFT 8
54 #define SPEAR320_UART3_PCLK_SHIFT 9
55 #define SPEAR320_UART4_PCLK_SHIFT 10
56 #define SPEAR320_UART5_PCLK_SHIFT 11
57 #define SPEAR320_UART6_PCLK_SHIFT 12
58 #define SPEAR320_RS485_PCLK_SHIFT 13
59
a7e9c452 60#endif /* __MACH_SPEAR3XX_H */
This page took 0.149069 seconds and 5 git commands to generate.