71 lines
1.8 KiB
C
71 lines
1.8 KiB
C
|
/*
|
||
|
* arch/arm/mach-spear3xx/include/mach/spear320.h
|
||
|
*
|
||
|
* SPEAr320 Machine specific definition
|
||
|
*
|
||
|
* Copyright (C) 2009 ST Microelectronics
|
||
|
* Viresh Kumar<viresh.kumar@st.com>
|
||
|
*
|
||
|
* This file is licensed under the terms of the GNU General Public
|
||
|
* License version 2. This program is licensed "as is" without any
|
||
|
* warranty of any kind, whether express or implied.
|
||
|
*/
|
||
|
|
||
|
#ifdef CONFIG_MACH_SPEAR320
|
||
|
|
||
|
#ifndef __MACH_SPEAR320_H
|
||
|
#define __MACH_SPEAR320_H
|
||
|
|
||
|
#define SPEAR320_EMI_CTRL_BASE 0x40000000
|
||
|
#define SPEAR320_EMI_CTRL_SIZE 0x08000000
|
||
|
|
||
|
#define SPEAR320_FSMC_BASE 0x4C000000
|
||
|
#define SPEAR320_FSMC_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_I2S_BASE 0x60000000
|
||
|
#define SPEAR320_I2S_SIZE 0x10000000
|
||
|
|
||
|
#define SPEAR320_SDIO_BASE 0x70000000
|
||
|
#define SPEAR320_SDIO_SIZE 0x10000000
|
||
|
|
||
|
#define SPEAR320_CLCD_BASE 0x90000000
|
||
|
#define SPEAR320_CLCD_SIZE 0x10000000
|
||
|
|
||
|
#define SPEAR320_PAR_PORT_BASE 0xA0000000
|
||
|
#define SPEAR320_PAR_PORT_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_CAN0_BASE 0xA1000000
|
||
|
#define SPEAR320_CAN0_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_CAN1_BASE 0xA2000000
|
||
|
#define SPEAR320_CAN1_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_UART1_BASE 0xA3000000
|
||
|
#define SPEAR320_UART2_BASE 0xA4000000
|
||
|
#define SPEAR320_UART_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_SSP0_BASE 0xA5000000
|
||
|
#define SPEAR320_SSP0_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_SSP1_BASE 0xA6000000
|
||
|
#define SPEAR320_SSP1_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_I2C_BASE 0xA7000000
|
||
|
#define SPEAR320_I2C_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_PWM_BASE 0xA8000000
|
||
|
#define SPEAR320_PWM_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_SMII0_BASE 0xAA000000
|
||
|
#define SPEAR320_SMII0_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_SMII1_BASE 0xAB000000
|
||
|
#define SPEAR320_SMII1_SIZE 0x01000000
|
||
|
|
||
|
#define SPEAR320_SOC_CONFIG_BASE 0xB4000000
|
||
|
#define SPEAR320_SOC_CONFIG_SIZE 0x00000070
|
||
|
|
||
|
#endif /* __MACH_SPEAR320_H */
|
||
|
|
||
|
#endif /* CONFIG_MACH_SPEAR320 */
|