18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci * IO mappings for OMAP2+ 38c2ecf20Sopenharmony_ci * 48c2ecf20Sopenharmony_ci * IO definitions for TI OMAP processors and boards 58c2ecf20Sopenharmony_ci * 68c2ecf20Sopenharmony_ci * Copied from arch/arm/mach-sa1100/include/mach/io.h 78c2ecf20Sopenharmony_ci * Copyright (C) 1997-1999 Russell King 88c2ecf20Sopenharmony_ci * 98c2ecf20Sopenharmony_ci * Copyright (C) 2009-2012 Texas Instruments 108c2ecf20Sopenharmony_ci * Added OMAP4/5 support - Santosh Shilimkar <santosh.shilimkar@ti.com> 118c2ecf20Sopenharmony_ci * 128c2ecf20Sopenharmony_ci * This program is free software; you can redistribute it and/or modify it 138c2ecf20Sopenharmony_ci * under the terms of the GNU General Public License as published by the 148c2ecf20Sopenharmony_ci * Free Software Foundation; either version 2 of the License, or (at your 158c2ecf20Sopenharmony_ci * option) any later version. 168c2ecf20Sopenharmony_ci * 178c2ecf20Sopenharmony_ci * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 188c2ecf20Sopenharmony_ci * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 198c2ecf20Sopenharmony_ci * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 208c2ecf20Sopenharmony_ci * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 218c2ecf20Sopenharmony_ci * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 228c2ecf20Sopenharmony_ci * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 238c2ecf20Sopenharmony_ci * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 248c2ecf20Sopenharmony_ci * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 258c2ecf20Sopenharmony_ci * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 268c2ecf20Sopenharmony_ci * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 278c2ecf20Sopenharmony_ci * 288c2ecf20Sopenharmony_ci * You should have received a copy of the GNU General Public License along 298c2ecf20Sopenharmony_ci * with this program; if not, write to the Free Software Foundation, Inc., 308c2ecf20Sopenharmony_ci * 675 Mass Ave, Cambridge, MA 02139, USA. 318c2ecf20Sopenharmony_ci */ 328c2ecf20Sopenharmony_ci 338c2ecf20Sopenharmony_ci#define OMAP2_L3_IO_OFFSET 0x90000000 348c2ecf20Sopenharmony_ci#define OMAP2_L3_IO_ADDRESS(pa) IOMEM((pa) + OMAP2_L3_IO_OFFSET) /* L3 */ 358c2ecf20Sopenharmony_ci 368c2ecf20Sopenharmony_ci#define OMAP2_L4_IO_OFFSET 0xb2000000 378c2ecf20Sopenharmony_ci#define OMAP2_L4_IO_ADDRESS(pa) IOMEM((pa) + OMAP2_L4_IO_OFFSET) /* L4 */ 388c2ecf20Sopenharmony_ci 398c2ecf20Sopenharmony_ci#define OMAP4_L3_IO_OFFSET 0xb4000000 408c2ecf20Sopenharmony_ci#define OMAP4_L3_IO_ADDRESS(pa) IOMEM((pa) + OMAP4_L3_IO_OFFSET) /* L3 */ 418c2ecf20Sopenharmony_ci 428c2ecf20Sopenharmony_ci#define AM33XX_L4_WK_IO_OFFSET 0xb5000000 438c2ecf20Sopenharmony_ci#define AM33XX_L4_WK_IO_ADDRESS(pa) IOMEM((pa) + AM33XX_L4_WK_IO_OFFSET) 448c2ecf20Sopenharmony_ci 458c2ecf20Sopenharmony_ci#define OMAP4_L3_PER_IO_OFFSET 0xb1100000 468c2ecf20Sopenharmony_ci#define OMAP4_L3_PER_IO_ADDRESS(pa) IOMEM((pa) + OMAP4_L3_PER_IO_OFFSET) 478c2ecf20Sopenharmony_ci 488c2ecf20Sopenharmony_ci#define OMAP2_EMU_IO_OFFSET 0xaa800000 /* Emulation */ 498c2ecf20Sopenharmony_ci#define OMAP2_EMU_IO_ADDRESS(pa) IOMEM((pa) + OMAP2_EMU_IO_OFFSET) 508c2ecf20Sopenharmony_ci 518c2ecf20Sopenharmony_ci/* 528c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 538c2ecf20Sopenharmony_ci * Omap2 specific IO mapping 548c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 558c2ecf20Sopenharmony_ci */ 568c2ecf20Sopenharmony_ci 578c2ecf20Sopenharmony_ci/* We map both L3 and L4 on OMAP2 */ 588c2ecf20Sopenharmony_ci#define L3_24XX_PHYS L3_24XX_BASE /* 0x68000000 --> 0xf8000000*/ 598c2ecf20Sopenharmony_ci#define L3_24XX_VIRT (L3_24XX_PHYS + OMAP2_L3_IO_OFFSET) 608c2ecf20Sopenharmony_ci#define L3_24XX_SIZE SZ_1M /* 44kB of 128MB used, want 1MB sect */ 618c2ecf20Sopenharmony_ci#define L4_24XX_PHYS L4_24XX_BASE /* 0x48000000 --> 0xfa000000 */ 628c2ecf20Sopenharmony_ci#define L4_24XX_VIRT (L4_24XX_PHYS + OMAP2_L4_IO_OFFSET) 638c2ecf20Sopenharmony_ci#define L4_24XX_SIZE SZ_1M /* 1MB of 128MB used, want 1MB sect */ 648c2ecf20Sopenharmony_ci 658c2ecf20Sopenharmony_ci#define L4_WK_243X_PHYS L4_WK_243X_BASE /* 0x49000000 --> 0xfb000000 */ 668c2ecf20Sopenharmony_ci#define L4_WK_243X_VIRT (L4_WK_243X_PHYS + OMAP2_L4_IO_OFFSET) 678c2ecf20Sopenharmony_ci#define L4_WK_243X_SIZE SZ_1M 688c2ecf20Sopenharmony_ci#define OMAP243X_GPMC_PHYS OMAP243X_GPMC_BASE 698c2ecf20Sopenharmony_ci#define OMAP243X_GPMC_VIRT (OMAP243X_GPMC_PHYS + OMAP2_L3_IO_OFFSET) 708c2ecf20Sopenharmony_ci /* 0x6e000000 --> 0xfe000000 */ 718c2ecf20Sopenharmony_ci#define OMAP243X_GPMC_SIZE SZ_1M 728c2ecf20Sopenharmony_ci#define OMAP243X_SDRC_PHYS OMAP243X_SDRC_BASE 738c2ecf20Sopenharmony_ci /* 0x6D000000 --> 0xfd000000 */ 748c2ecf20Sopenharmony_ci#define OMAP243X_SDRC_VIRT (OMAP243X_SDRC_PHYS + OMAP2_L3_IO_OFFSET) 758c2ecf20Sopenharmony_ci#define OMAP243X_SDRC_SIZE SZ_1M 768c2ecf20Sopenharmony_ci#define OMAP243X_SMS_PHYS OMAP243X_SMS_BASE 778c2ecf20Sopenharmony_ci /* 0x6c000000 --> 0xfc000000 */ 788c2ecf20Sopenharmony_ci#define OMAP243X_SMS_VIRT (OMAP243X_SMS_PHYS + OMAP2_L3_IO_OFFSET) 798c2ecf20Sopenharmony_ci#define OMAP243X_SMS_SIZE SZ_1M 808c2ecf20Sopenharmony_ci 818c2ecf20Sopenharmony_ci/* 2420 IVA */ 828c2ecf20Sopenharmony_ci#define DSP_MEM_2420_PHYS OMAP2420_DSP_MEM_BASE 838c2ecf20Sopenharmony_ci /* 0x58000000 --> 0xfc100000 */ 848c2ecf20Sopenharmony_ci#define DSP_MEM_2420_VIRT 0xfc100000 858c2ecf20Sopenharmony_ci#define DSP_MEM_2420_SIZE 0x28000 868c2ecf20Sopenharmony_ci#define DSP_IPI_2420_PHYS OMAP2420_DSP_IPI_BASE 878c2ecf20Sopenharmony_ci /* 0x59000000 --> 0xfc128000 */ 888c2ecf20Sopenharmony_ci#define DSP_IPI_2420_VIRT 0xfc128000 898c2ecf20Sopenharmony_ci#define DSP_IPI_2420_SIZE SZ_4K 908c2ecf20Sopenharmony_ci#define DSP_MMU_2420_PHYS OMAP2420_DSP_MMU_BASE 918c2ecf20Sopenharmony_ci /* 0x5a000000 --> 0xfc129000 */ 928c2ecf20Sopenharmony_ci#define DSP_MMU_2420_VIRT 0xfc129000 938c2ecf20Sopenharmony_ci#define DSP_MMU_2420_SIZE SZ_4K 948c2ecf20Sopenharmony_ci 958c2ecf20Sopenharmony_ci/* 2430 IVA2.1 - currently unmapped */ 968c2ecf20Sopenharmony_ci 978c2ecf20Sopenharmony_ci/* 988c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 998c2ecf20Sopenharmony_ci * Omap3 specific IO mapping 1008c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 1018c2ecf20Sopenharmony_ci */ 1028c2ecf20Sopenharmony_ci 1038c2ecf20Sopenharmony_ci/* We map both L3 and L4 on OMAP3 */ 1048c2ecf20Sopenharmony_ci#define L3_34XX_PHYS L3_34XX_BASE /* 0x68000000 --> 0xf8000000 */ 1058c2ecf20Sopenharmony_ci#define L3_34XX_VIRT (L3_34XX_PHYS + OMAP2_L3_IO_OFFSET) 1068c2ecf20Sopenharmony_ci#define L3_34XX_SIZE SZ_1M /* 44kB of 128MB used, want 1MB sect */ 1078c2ecf20Sopenharmony_ci 1088c2ecf20Sopenharmony_ci#define L4_34XX_PHYS L4_34XX_BASE /* 0x48000000 --> 0xfa000000 */ 1098c2ecf20Sopenharmony_ci#define L4_34XX_VIRT (L4_34XX_PHYS + OMAP2_L4_IO_OFFSET) 1108c2ecf20Sopenharmony_ci#define L4_34XX_SIZE SZ_4M /* 1MB of 128MB used, want 1MB sect */ 1118c2ecf20Sopenharmony_ci 1128c2ecf20Sopenharmony_ci/* 1138c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 1148c2ecf20Sopenharmony_ci * AM33XX specific IO mapping 1158c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 1168c2ecf20Sopenharmony_ci */ 1178c2ecf20Sopenharmony_ci#define L4_WK_AM33XX_PHYS L4_WK_AM33XX_BASE 1188c2ecf20Sopenharmony_ci#define L4_WK_AM33XX_VIRT (L4_WK_AM33XX_PHYS + AM33XX_L4_WK_IO_OFFSET) 1198c2ecf20Sopenharmony_ci#define L4_WK_AM33XX_SIZE SZ_4M /* 1MB of 128MB used, want 1MB sect */ 1208c2ecf20Sopenharmony_ci 1218c2ecf20Sopenharmony_ci/* 1228c2ecf20Sopenharmony_ci * Need to look at the Size 4M for L4. 1238c2ecf20Sopenharmony_ci * VPOM3430 was not working for Int controller 1248c2ecf20Sopenharmony_ci */ 1258c2ecf20Sopenharmony_ci 1268c2ecf20Sopenharmony_ci#define L4_PER_34XX_PHYS L4_PER_34XX_BASE 1278c2ecf20Sopenharmony_ci /* 0x49000000 --> 0xfb000000 */ 1288c2ecf20Sopenharmony_ci#define L4_PER_34XX_VIRT (L4_PER_34XX_PHYS + OMAP2_L4_IO_OFFSET) 1298c2ecf20Sopenharmony_ci#define L4_PER_34XX_SIZE SZ_1M 1308c2ecf20Sopenharmony_ci 1318c2ecf20Sopenharmony_ci#define L4_EMU_34XX_PHYS L4_EMU_34XX_BASE 1328c2ecf20Sopenharmony_ci /* 0x54000000 --> 0xfe800000 */ 1338c2ecf20Sopenharmony_ci#define L4_EMU_34XX_VIRT (L4_EMU_34XX_PHYS + OMAP2_EMU_IO_OFFSET) 1348c2ecf20Sopenharmony_ci#define L4_EMU_34XX_SIZE SZ_8M 1358c2ecf20Sopenharmony_ci 1368c2ecf20Sopenharmony_ci#define OMAP34XX_GPMC_PHYS OMAP34XX_GPMC_BASE 1378c2ecf20Sopenharmony_ci /* 0x6e000000 --> 0xfe000000 */ 1388c2ecf20Sopenharmony_ci#define OMAP34XX_GPMC_VIRT (OMAP34XX_GPMC_PHYS + OMAP2_L3_IO_OFFSET) 1398c2ecf20Sopenharmony_ci#define OMAP34XX_GPMC_SIZE SZ_1M 1408c2ecf20Sopenharmony_ci 1418c2ecf20Sopenharmony_ci#define OMAP343X_SMS_PHYS OMAP343X_SMS_BASE 1428c2ecf20Sopenharmony_ci /* 0x6c000000 --> 0xfc000000 */ 1438c2ecf20Sopenharmony_ci#define OMAP343X_SMS_VIRT (OMAP343X_SMS_PHYS + OMAP2_L3_IO_OFFSET) 1448c2ecf20Sopenharmony_ci#define OMAP343X_SMS_SIZE SZ_1M 1458c2ecf20Sopenharmony_ci 1468c2ecf20Sopenharmony_ci#define OMAP343X_SDRC_PHYS OMAP343X_SDRC_BASE 1478c2ecf20Sopenharmony_ci /* 0x6D000000 --> 0xfd000000 */ 1488c2ecf20Sopenharmony_ci#define OMAP343X_SDRC_VIRT (OMAP343X_SDRC_PHYS + OMAP2_L3_IO_OFFSET) 1498c2ecf20Sopenharmony_ci#define OMAP343X_SDRC_SIZE SZ_1M 1508c2ecf20Sopenharmony_ci 1518c2ecf20Sopenharmony_ci/* 3430 IVA - currently unmapped */ 1528c2ecf20Sopenharmony_ci 1538c2ecf20Sopenharmony_ci/* 1548c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 1558c2ecf20Sopenharmony_ci * Omap4 specific IO mapping 1568c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 1578c2ecf20Sopenharmony_ci */ 1588c2ecf20Sopenharmony_ci 1598c2ecf20Sopenharmony_ci/* We map both L3 and L4 on OMAP4 */ 1608c2ecf20Sopenharmony_ci#define L3_44XX_PHYS L3_44XX_BASE /* 0x44000000 --> 0xf8000000 */ 1618c2ecf20Sopenharmony_ci#define L3_44XX_VIRT (L3_44XX_PHYS + OMAP4_L3_IO_OFFSET) 1628c2ecf20Sopenharmony_ci#define L3_44XX_SIZE SZ_1M 1638c2ecf20Sopenharmony_ci 1648c2ecf20Sopenharmony_ci#define L4_44XX_PHYS L4_44XX_BASE /* 0x4a000000 --> 0xfc000000 */ 1658c2ecf20Sopenharmony_ci#define L4_44XX_VIRT (L4_44XX_PHYS + OMAP2_L4_IO_OFFSET) 1668c2ecf20Sopenharmony_ci#define L4_44XX_SIZE SZ_4M 1678c2ecf20Sopenharmony_ci 1688c2ecf20Sopenharmony_ci#define L4_PER_44XX_PHYS L4_PER_44XX_BASE 1698c2ecf20Sopenharmony_ci /* 0x48000000 --> 0xfa000000 */ 1708c2ecf20Sopenharmony_ci#define L4_PER_44XX_VIRT (L4_PER_44XX_PHYS + OMAP2_L4_IO_OFFSET) 1718c2ecf20Sopenharmony_ci#define L4_PER_44XX_SIZE SZ_4M 1728c2ecf20Sopenharmony_ci 1738c2ecf20Sopenharmony_ci#define L4_ABE_44XX_PHYS L4_ABE_44XX_BASE 1748c2ecf20Sopenharmony_ci /* 0x49000000 --> 0xfb000000 */ 1758c2ecf20Sopenharmony_ci#define L4_ABE_44XX_VIRT (L4_ABE_44XX_PHYS + OMAP2_L4_IO_OFFSET) 1768c2ecf20Sopenharmony_ci#define L4_ABE_44XX_SIZE SZ_1M 1778c2ecf20Sopenharmony_ci/* 1788c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 1798c2ecf20Sopenharmony_ci * Omap5 specific IO mapping 1808c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 1818c2ecf20Sopenharmony_ci */ 1828c2ecf20Sopenharmony_ci#define L3_54XX_PHYS L3_54XX_BASE /* 0x44000000 --> 0xf8000000 */ 1838c2ecf20Sopenharmony_ci#define L3_54XX_VIRT (L3_54XX_PHYS + OMAP4_L3_IO_OFFSET) 1848c2ecf20Sopenharmony_ci#define L3_54XX_SIZE SZ_1M 1858c2ecf20Sopenharmony_ci 1868c2ecf20Sopenharmony_ci#define L4_54XX_PHYS L4_54XX_BASE /* 0x4a000000 --> 0xfc000000 */ 1878c2ecf20Sopenharmony_ci#define L4_54XX_VIRT (L4_54XX_PHYS + OMAP2_L4_IO_OFFSET) 1888c2ecf20Sopenharmony_ci#define L4_54XX_SIZE SZ_4M 1898c2ecf20Sopenharmony_ci 1908c2ecf20Sopenharmony_ci#define L4_WK_54XX_PHYS L4_WK_54XX_BASE /* 0x4ae00000 --> 0xfce00000 */ 1918c2ecf20Sopenharmony_ci#define L4_WK_54XX_VIRT (L4_WK_54XX_PHYS + OMAP2_L4_IO_OFFSET) 1928c2ecf20Sopenharmony_ci#define L4_WK_54XX_SIZE SZ_2M 1938c2ecf20Sopenharmony_ci 1948c2ecf20Sopenharmony_ci#define L4_PER_54XX_PHYS L4_PER_54XX_BASE /* 0x48000000 --> 0xfa000000 */ 1958c2ecf20Sopenharmony_ci#define L4_PER_54XX_VIRT (L4_PER_54XX_PHYS + OMAP2_L4_IO_OFFSET) 1968c2ecf20Sopenharmony_ci#define L4_PER_54XX_SIZE SZ_4M 1978c2ecf20Sopenharmony_ci 1988c2ecf20Sopenharmony_ci/* 1998c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 2008c2ecf20Sopenharmony_ci * DRA7xx specific IO mapping 2018c2ecf20Sopenharmony_ci * ---------------------------------------------------------------------------- 2028c2ecf20Sopenharmony_ci */ 2038c2ecf20Sopenharmony_ci/* 2048c2ecf20Sopenharmony_ci * L3_MAIN_SN_DRA7XX_PHYS 0x44000000 --> 0xf8000000 2058c2ecf20Sopenharmony_ci * The overall space is 24MiB (0x4400_0000<->0x457F_FFFF), but mapping 2068c2ecf20Sopenharmony_ci * everything is just inefficient, since, there are too many address holes. 2078c2ecf20Sopenharmony_ci */ 2088c2ecf20Sopenharmony_ci#define L3_MAIN_SN_DRA7XX_PHYS L3_MAIN_SN_DRA7XX_BASE 2098c2ecf20Sopenharmony_ci#define L3_MAIN_SN_DRA7XX_VIRT (L3_MAIN_SN_DRA7XX_PHYS + OMAP4_L3_IO_OFFSET) 2108c2ecf20Sopenharmony_ci#define L3_MAIN_SN_DRA7XX_SIZE SZ_1M 2118c2ecf20Sopenharmony_ci 2128c2ecf20Sopenharmony_ci/* 2138c2ecf20Sopenharmony_ci * L4_PER1_DRA7XX_PHYS (0x4800_000<>0x480D_2FFF) -> 0.82MiB (alloc 1MiB) 2148c2ecf20Sopenharmony_ci * (0x48000000<->0x48100000) <=> (0xFA000000<->0xFA100000) 2158c2ecf20Sopenharmony_ci */ 2168c2ecf20Sopenharmony_ci#define L4_PER1_DRA7XX_PHYS L4_PER1_DRA7XX_BASE 2178c2ecf20Sopenharmony_ci#define L4_PER1_DRA7XX_VIRT (L4_PER1_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET) 2188c2ecf20Sopenharmony_ci#define L4_PER1_DRA7XX_SIZE SZ_1M 2198c2ecf20Sopenharmony_ci 2208c2ecf20Sopenharmony_ci/* 2218c2ecf20Sopenharmony_ci * L4_CFG_MPU_DRA7XX_PHYS (0x48210000<>0x482A_F2FF) -> 0.62MiB (alloc 1MiB) 2228c2ecf20Sopenharmony_ci * (0x48210000<->0x48310000) <=> (0xFA210000<->0xFA310000) 2238c2ecf20Sopenharmony_ci * NOTE: This is a bit of an orphan memory map sitting isolated in TRM 2248c2ecf20Sopenharmony_ci */ 2258c2ecf20Sopenharmony_ci#define L4_CFG_MPU_DRA7XX_PHYS L4_CFG_MPU_DRA7XX_BASE 2268c2ecf20Sopenharmony_ci#define L4_CFG_MPU_DRA7XX_VIRT (L4_CFG_MPU_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET) 2278c2ecf20Sopenharmony_ci#define L4_CFG_MPU_DRA7XX_SIZE SZ_1M 2288c2ecf20Sopenharmony_ci 2298c2ecf20Sopenharmony_ci/* 2308c2ecf20Sopenharmony_ci * L4_PER2_DRA7XX_PHYS (0x4840_0000<>0x4848_8FFF) -> .53MiB (alloc 1MiB) 2318c2ecf20Sopenharmony_ci * (0x48400000<->0x48500000) <=> (0xFA400000<->0xFA500000) 2328c2ecf20Sopenharmony_ci */ 2338c2ecf20Sopenharmony_ci#define L4_PER2_DRA7XX_PHYS L4_PER2_DRA7XX_BASE 2348c2ecf20Sopenharmony_ci#define L4_PER2_DRA7XX_VIRT (L4_PER2_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET) 2358c2ecf20Sopenharmony_ci#define L4_PER2_DRA7XX_SIZE SZ_1M 2368c2ecf20Sopenharmony_ci 2378c2ecf20Sopenharmony_ci/* 2388c2ecf20Sopenharmony_ci * L4_PER3_DRA7XX_PHYS (0x4880_0000<>0x489E_0FFF) -> 1.87MiB (alloc 2MiB) 2398c2ecf20Sopenharmony_ci * (0x48800000<->0x48A00000) <=> (0xFA800000<->0xFAA00000) 2408c2ecf20Sopenharmony_ci */ 2418c2ecf20Sopenharmony_ci#define L4_PER3_DRA7XX_PHYS L4_PER3_DRA7XX_BASE 2428c2ecf20Sopenharmony_ci#define L4_PER3_DRA7XX_VIRT (L4_PER3_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET) 2438c2ecf20Sopenharmony_ci#define L4_PER3_DRA7XX_SIZE SZ_2M 2448c2ecf20Sopenharmony_ci 2458c2ecf20Sopenharmony_ci/* 2468c2ecf20Sopenharmony_ci * L4_CFG_DRA7XX_PHYS (0x4A00_0000<>0x4A22_BFFF) ->2.17MiB (alloc 3MiB)? 2478c2ecf20Sopenharmony_ci * (0x4A000000<->0x4A300000) <=> (0xFC000000<->0xFC300000) 2488c2ecf20Sopenharmony_ci */ 2498c2ecf20Sopenharmony_ci#define L4_CFG_DRA7XX_PHYS L4_CFG_DRA7XX_BASE 2508c2ecf20Sopenharmony_ci#define L4_CFG_DRA7XX_VIRT (L4_CFG_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET) 2518c2ecf20Sopenharmony_ci#define L4_CFG_DRA7XX_SIZE (SZ_1M + SZ_2M) 2528c2ecf20Sopenharmony_ci 2538c2ecf20Sopenharmony_ci/* 2548c2ecf20Sopenharmony_ci * L4_WKUP_DRA7XX_PHYS (0x4AE0_0000<>0x4AE3_EFFF) -> .24 mb (alloc 1MiB)? 2558c2ecf20Sopenharmony_ci * (0x4AE00000<->4AF00000) <=> (0xFCE00000<->0xFCF00000) 2568c2ecf20Sopenharmony_ci */ 2578c2ecf20Sopenharmony_ci#define L4_WKUP_DRA7XX_PHYS L4_WKUP_DRA7XX_BASE 2588c2ecf20Sopenharmony_ci#define L4_WKUP_DRA7XX_VIRT (L4_WKUP_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET) 2598c2ecf20Sopenharmony_ci#define L4_WKUP_DRA7XX_SIZE SZ_1M 260