1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved. 4 * Copyright 2008 Juergen Beisert, kernel@pengutronix.de 5 * 6 * This contains i.MX27-specific hardware definitions. For those 7 * hardware pieces that are common between i.MX21 and i.MX27, have a 8 * look at mx2x.h. 9 */ 10 11 #ifndef __MACH_MX27_H__ 12 #define __MACH_MX27_H__ 13 14 #define MX27_AIPI_BASE_ADDR 0x10000000 15 #define MX27_AIPI_SIZE SZ_1M 16 17 #define MX27_SAHB1_BASE_ADDR 0x80000000 18 #define MX27_SAHB1_SIZE SZ_1M 19 20 #define MX27_X_MEMC_BASE_ADDR 0xd8000000 21 #define MX27_X_MEMC_SIZE SZ_1M 22 23 #define MX27_IO_P2V(x) IMX_IO_P2V(x) 24 25 #endif /* ifndef __MACH_MX27_H__ */ 26