blob: 8ad01d10e49b7f8693a153a8799b575a9a744a1a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala143b5182008-01-17 01:44:34 -06002/*
3 * Copyright 2008 Freescale Semiconductor, Inc.
4 *
5 * (C) Copyright 2000
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Kumar Gala143b5182008-01-17 01:44:34 -06007 */
8
9#include <common.h>
10#include <asm/mmu.h>
11
12struct fsl_e_tlb_entry tlb_table[] = {
13 /* TLB 0 - for temp stack in cache */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020014 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR, CONFIG_SYS_INIT_RAM_ADDR,
Kumar Gala143b5182008-01-17 01:44:34 -060015 MAS3_SX|MAS3_SW|MAS3_SR, 0,
16 0, 0, BOOKE_PAGESZ_4K, 0),
Paul Gortmakerded58f42009-09-23 17:30:57 -040017 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024,
18 CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024,
Kumar Gala143b5182008-01-17 01:44:34 -060019 MAS3_SX|MAS3_SW|MAS3_SR, 0,
20 0, 0, BOOKE_PAGESZ_4K, 0),
Paul Gortmakerded58f42009-09-23 17:30:57 -040021 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024,
22 CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024,
Kumar Gala143b5182008-01-17 01:44:34 -060023 MAS3_SX|MAS3_SW|MAS3_SR, 0,
24 0, 0, BOOKE_PAGESZ_4K, 0),
Paul Gortmakerded58f42009-09-23 17:30:57 -040025 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024,
26 CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024,
Kumar Gala143b5182008-01-17 01:44:34 -060027 MAS3_SX|MAS3_SW|MAS3_SR, 0,
28 0, 0, BOOKE_PAGESZ_4K, 0),
29
30 /*
Paul Gortmaker9b3ba242009-09-18 19:08:41 -040031 * TLB 0: 64M Non-cacheable, guarded
Paul Gortmaker3fd673c2011-12-30 23:53:07 -050032 * 0xfc000000 56M unused
Paul Gortmaker9b3ba242009-09-18 19:08:41 -040033 * 0xff800000 8M boot FLASH
Paul Gortmaker3fd673c2011-12-30 23:53:07 -050034 * .... or ....
35 * 0xfc000000 64M user flash
36 *
Kumar Gala143b5182008-01-17 01:44:34 -060037 * Out of reset this entry is only 4K.
38 */
Paul Gortmaker3fd673c2011-12-30 23:53:07 -050039 SET_TLB_ENTRY(1, 0xfc000000, 0xfc000000,
Kumar Gala143b5182008-01-17 01:44:34 -060040 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
Paul Gortmaker9b3ba242009-09-18 19:08:41 -040041 0, 0, BOOKE_PAGESZ_64M, 1),
Kumar Gala143b5182008-01-17 01:44:34 -060042
43 /*
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -040044 * TLB 1: 1G Non-cacheable, guarded
45 * 0x80000000 512M PCI1 MEM
46 * 0xa0000000 512M PCIe MEM
Kumar Gala143b5182008-01-17 01:44:34 -060047 */
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -040048 SET_TLB_ENTRY(1, CONFIG_SYS_PCI1_MEM_VIRT, CONFIG_SYS_PCI1_MEM_PHYS,
Kumar Gala143b5182008-01-17 01:44:34 -060049 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -040050 0, 1, BOOKE_PAGESZ_1G, 1),
Kumar Gala143b5182008-01-17 01:44:34 -060051
52 /*
Becky Bruce38dba0c2010-12-17 17:17:56 -060053 * TLB 2: 64M Non-cacheable, guarded
Kumar Gala143b5182008-01-17 01:44:34 -060054 * 0xe0000000 1M CCSRBAR
Paul Gortmakerfdc7eb92009-09-20 20:36:05 -040055 * 0xe2000000 8M PCI1 IO
56 * 0xe2800000 8M PCIe IO
Kumar Gala143b5182008-01-17 01:44:34 -060057 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058 SET_TLB_ENTRY(1, CONFIG_SYS_CCSRBAR, CONFIG_SYS_CCSRBAR_PHYS,
Kumar Gala143b5182008-01-17 01:44:34 -060059 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
Becky Bruce38dba0c2010-12-17 17:17:56 -060060 0, 2, BOOKE_PAGESZ_64M, 1),
Kumar Gala143b5182008-01-17 01:44:34 -060061
Paul Gortmaker7e44f2b2011-12-30 23:53:10 -050062#ifdef CONFIG_SYS_LBC_SDRAM_BASE
Kumar Gala143b5182008-01-17 01:44:34 -060063 /*
Becky Bruce38dba0c2010-12-17 17:17:56 -060064 * TLB 3: 64M Cacheable, non-guarded
Paul Gortmaker11d5a622009-09-20 20:36:04 -040065 * 0xf0000000 64M LBC SDRAM First half
Kumar Gala143b5182008-01-17 01:44:34 -060066 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067 SET_TLB_ENTRY(1, CONFIG_SYS_LBC_SDRAM_BASE, CONFIG_SYS_LBC_SDRAM_BASE,
York Sun316f0d02017-12-05 10:57:54 -080068 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_M,
Becky Bruce38dba0c2010-12-17 17:17:56 -060069 0, 3, BOOKE_PAGESZ_64M, 1),
Kumar Gala143b5182008-01-17 01:44:34 -060070
71 /*
Becky Bruce38dba0c2010-12-17 17:17:56 -060072 * TLB 4: 64M Cacheable, non-guarded
Paul Gortmaker11d5a622009-09-20 20:36:04 -040073 * 0xf4000000 64M LBC SDRAM Second half
74 */
75 SET_TLB_ENTRY(1, CONFIG_SYS_LBC_SDRAM_BASE + 0x4000000,
76 CONFIG_SYS_LBC_SDRAM_BASE + 0x4000000,
York Sun316f0d02017-12-05 10:57:54 -080077 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_M,
Becky Bruce38dba0c2010-12-17 17:17:56 -060078 0, 4, BOOKE_PAGESZ_64M, 1),
Paul Gortmaker7e44f2b2011-12-30 23:53:10 -050079#endif
Paul Gortmaker11d5a622009-09-20 20:36:04 -040080
81 /*
Becky Bruce38dba0c2010-12-17 17:17:56 -060082 * TLB 5: 16M Cacheable, non-guarded
Kumar Gala143b5182008-01-17 01:44:34 -060083 * 0xf8000000 1M 7-segment LED display
84 * 0xf8100000 1M User switches
85 * 0xf8300000 1M Board revision
86 * 0xf8b00000 1M EEPROM
87 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020088 SET_TLB_ENTRY(1, CONFIG_SYS_EPLD_BASE, CONFIG_SYS_EPLD_BASE,
Kumar Gala143b5182008-01-17 01:44:34 -060089 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
Becky Bruce38dba0c2010-12-17 17:17:56 -060090 0, 5, BOOKE_PAGESZ_16M, 1),
Paul Gortmaker9b3ba242009-09-18 19:08:41 -040091
Paul Gortmakerf0aec4e2011-12-30 23:53:08 -050092#ifndef CONFIG_SYS_ALT_BOOT
Paul Gortmaker9b3ba242009-09-18 19:08:41 -040093 /*
Paul Gortmaker3fd673c2011-12-30 23:53:07 -050094 * TLB 6: 64M Non-cacheable, guarded
95 * 0xec000000 64M 64MB user FLASH
Paul Gortmaker9b3ba242009-09-18 19:08:41 -040096 */
97 SET_TLB_ENTRY(1, CONFIG_SYS_ALT_FLASH, CONFIG_SYS_ALT_FLASH,
98 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
Paul Gortmaker3fd673c2011-12-30 23:53:07 -050099 0, 6, BOOKE_PAGESZ_64M, 1),
Paul Gortmakerf0aec4e2011-12-30 23:53:08 -0500100#else
101 /*
102 * TLB 6: 4M Non-cacheable, guarded
103 * 0xef800000 4M 1st 1/2 8MB soldered FLASH
104 */
105 SET_TLB_ENTRY(1, CONFIG_SYS_ALT_FLASH, CONFIG_SYS_ALT_FLASH,
106 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
107 0, 6, BOOKE_PAGESZ_4M, 1),
108
109 /*
110 * TLB 7: 4M Non-cacheable, guarded
111 * 0xefc00000 4M 2nd half 8MB soldered FLASH
112 */
113 SET_TLB_ENTRY(1, CONFIG_SYS_ALT_FLASH + 0x400000,
114 CONFIG_SYS_ALT_FLASH + 0x400000,
115 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
116 0, 7, BOOKE_PAGESZ_4M, 1),
117#endif
Paul Gortmaker9b3ba242009-09-18 19:08:41 -0400118
Kumar Gala143b5182008-01-17 01:44:34 -0600119};
120
121int num_tlb_entries = ARRAY_SIZE(tlb_table);