mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
50f2de6126
It moves a bunch of header files included in hardware.h and itself from mach-imx/include/mach to mach-imx, and updates users to include hardware.h rather than mach/hardware.h. The files in mach-imx/devices will need to include "../hardware.h". Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Arnd Bergmann <arnd@arndb.de>
36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
/*
|
|
* Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
|
|
* Copyright 2011 Linaro Ltd.
|
|
*
|
|
* The code contained herein is licensed under the GNU General Public
|
|
* License. You may obtain a copy of the GNU General Public License
|
|
* Version 2 or later at the following locations:
|
|
*
|
|
* http://www.opensource.org/licenses/gpl-license.html
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*/
|
|
|
|
#ifndef __MACH_MX6Q_H__
|
|
#define __MACH_MX6Q_H__
|
|
|
|
#define MX6Q_IO_P2V(x) IMX_IO_P2V(x)
|
|
#define MX6Q_IO_ADDRESS(x) IOMEM(MX6Q_IO_P2V(x))
|
|
|
|
/*
|
|
* The following are the blocks that need to be statically mapped.
|
|
* For other blocks, the base address really should be retrieved from
|
|
* device tree.
|
|
*/
|
|
#define MX6Q_SCU_BASE_ADDR 0x00a00000
|
|
#define MX6Q_SCU_SIZE 0x1000
|
|
#define MX6Q_CCM_BASE_ADDR 0x020c4000
|
|
#define MX6Q_CCM_SIZE 0x4000
|
|
#define MX6Q_ANATOP_BASE_ADDR 0x020c8000
|
|
#define MX6Q_ANATOP_SIZE 0x1000
|
|
#define MX6Q_UART2_BASE_ADDR 0x021e8000
|
|
#define MX6Q_UART2_SIZE 0x4000
|
|
#define MX6Q_UART4_BASE_ADDR 0x021f0000
|
|
#define MX6Q_UART4_SIZE 0x4000
|
|
|
|
#endif /* __MACH_MX6Q_H__ */
|