Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2008 Freescale Semiconductor, Inc. |
| 4 | * |
| 5 | * (C) Copyright 2000 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <asm/mmu.h> |
| 11 | |
| 12 | struct fsl_e_tlb_entry tlb_table[] = { |
| 13 | /* TLB 0 - for temp stack in cache */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 14 | SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR, CONFIG_SYS_INIT_RAM_ADDR, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 15 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 16 | 0, 0, BOOKE_PAGESZ_4K, 0), |
Paul Gortmaker | ded58f4 | 2009-09-23 17:30:57 -0400 | [diff] [blame] | 17 | SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024, |
| 18 | CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 19 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 20 | 0, 0, BOOKE_PAGESZ_4K, 0), |
Paul Gortmaker | ded58f4 | 2009-09-23 17:30:57 -0400 | [diff] [blame] | 21 | SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024, |
| 22 | CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 23 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 24 | 0, 0, BOOKE_PAGESZ_4K, 0), |
Paul Gortmaker | ded58f4 | 2009-09-23 17:30:57 -0400 | [diff] [blame] | 25 | SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024, |
| 26 | CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 27 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 28 | 0, 0, BOOKE_PAGESZ_4K, 0), |
| 29 | |
| 30 | /* |
Paul Gortmaker | 9b3ba24 | 2009-09-18 19:08:41 -0400 | [diff] [blame] | 31 | * TLB 0: 64M Non-cacheable, guarded |
Paul Gortmaker | 3fd673c | 2011-12-30 23:53:07 -0500 | [diff] [blame] | 32 | * 0xfc000000 56M unused |
Paul Gortmaker | 9b3ba24 | 2009-09-18 19:08:41 -0400 | [diff] [blame] | 33 | * 0xff800000 8M boot FLASH |
Paul Gortmaker | 3fd673c | 2011-12-30 23:53:07 -0500 | [diff] [blame] | 34 | * .... or .... |
| 35 | * 0xfc000000 64M user flash |
| 36 | * |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 37 | * Out of reset this entry is only 4K. |
| 38 | */ |
Paul Gortmaker | 3fd673c | 2011-12-30 23:53:07 -0500 | [diff] [blame] | 39 | SET_TLB_ENTRY(1, 0xfc000000, 0xfc000000, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 40 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
Paul Gortmaker | 9b3ba24 | 2009-09-18 19:08:41 -0400 | [diff] [blame] | 41 | 0, 0, BOOKE_PAGESZ_64M, 1), |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 42 | |
| 43 | /* |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 44 | * TLB 1: 1G Non-cacheable, guarded |
| 45 | * 0x80000000 512M PCI1 MEM |
| 46 | * 0xa0000000 512M PCIe MEM |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 47 | */ |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 48 | SET_TLB_ENTRY(1, CONFIG_SYS_PCI1_MEM_VIRT, CONFIG_SYS_PCI1_MEM_PHYS, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 49 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 50 | 0, 1, BOOKE_PAGESZ_1G, 1), |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 51 | |
| 52 | /* |
Becky Bruce | 38dba0c | 2010-12-17 17:17:56 -0600 | [diff] [blame] | 53 | * TLB 2: 64M Non-cacheable, guarded |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 54 | * 0xe0000000 1M CCSRBAR |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 55 | * 0xe2000000 8M PCI1 IO |
| 56 | * 0xe2800000 8M PCIe IO |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 57 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 58 | SET_TLB_ENTRY(1, CONFIG_SYS_CCSRBAR, CONFIG_SYS_CCSRBAR_PHYS, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 59 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
Becky Bruce | 38dba0c | 2010-12-17 17:17:56 -0600 | [diff] [blame] | 60 | 0, 2, BOOKE_PAGESZ_64M, 1), |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 61 | |
Paul Gortmaker | 7e44f2b | 2011-12-30 23:53:10 -0500 | [diff] [blame] | 62 | #ifdef CONFIG_SYS_LBC_SDRAM_BASE |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 63 | /* |
Becky Bruce | 38dba0c | 2010-12-17 17:17:56 -0600 | [diff] [blame] | 64 | * TLB 3: 64M Cacheable, non-guarded |
Paul Gortmaker | 11d5a62 | 2009-09-20 20:36:04 -0400 | [diff] [blame] | 65 | * 0xf0000000 64M LBC SDRAM First half |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 66 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 67 | SET_TLB_ENTRY(1, CONFIG_SYS_LBC_SDRAM_BASE, CONFIG_SYS_LBC_SDRAM_BASE, |
York Sun | 316f0d0 | 2017-12-05 10:57:54 -0800 | [diff] [blame] | 68 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_M, |
Becky Bruce | 38dba0c | 2010-12-17 17:17:56 -0600 | [diff] [blame] | 69 | 0, 3, BOOKE_PAGESZ_64M, 1), |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 70 | |
| 71 | /* |
Becky Bruce | 38dba0c | 2010-12-17 17:17:56 -0600 | [diff] [blame] | 72 | * TLB 4: 64M Cacheable, non-guarded |
Paul Gortmaker | 11d5a62 | 2009-09-20 20:36:04 -0400 | [diff] [blame] | 73 | * 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 Sun | 316f0d0 | 2017-12-05 10:57:54 -0800 | [diff] [blame] | 77 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_M, |
Becky Bruce | 38dba0c | 2010-12-17 17:17:56 -0600 | [diff] [blame] | 78 | 0, 4, BOOKE_PAGESZ_64M, 1), |
Paul Gortmaker | 7e44f2b | 2011-12-30 23:53:10 -0500 | [diff] [blame] | 79 | #endif |
Paul Gortmaker | 11d5a62 | 2009-09-20 20:36:04 -0400 | [diff] [blame] | 80 | |
| 81 | /* |
Becky Bruce | 38dba0c | 2010-12-17 17:17:56 -0600 | [diff] [blame] | 82 | * TLB 5: 16M Cacheable, non-guarded |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 83 | * 0xf8000000 1M 7-segment LED display |
| 84 | * 0xf8100000 1M User switches |
| 85 | * 0xf8300000 1M Board revision |
| 86 | * 0xf8b00000 1M EEPROM |
| 87 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 88 | SET_TLB_ENTRY(1, CONFIG_SYS_EPLD_BASE, CONFIG_SYS_EPLD_BASE, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 89 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
Becky Bruce | 38dba0c | 2010-12-17 17:17:56 -0600 | [diff] [blame] | 90 | 0, 5, BOOKE_PAGESZ_16M, 1), |
Paul Gortmaker | 9b3ba24 | 2009-09-18 19:08:41 -0400 | [diff] [blame] | 91 | |
Paul Gortmaker | f0aec4e | 2011-12-30 23:53:08 -0500 | [diff] [blame] | 92 | #ifndef CONFIG_SYS_ALT_BOOT |
Paul Gortmaker | 9b3ba24 | 2009-09-18 19:08:41 -0400 | [diff] [blame] | 93 | /* |
Paul Gortmaker | 3fd673c | 2011-12-30 23:53:07 -0500 | [diff] [blame] | 94 | * TLB 6: 64M Non-cacheable, guarded |
| 95 | * 0xec000000 64M 64MB user FLASH |
Paul Gortmaker | 9b3ba24 | 2009-09-18 19:08:41 -0400 | [diff] [blame] | 96 | */ |
| 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 Gortmaker | 3fd673c | 2011-12-30 23:53:07 -0500 | [diff] [blame] | 99 | 0, 6, BOOKE_PAGESZ_64M, 1), |
Paul Gortmaker | f0aec4e | 2011-12-30 23:53:08 -0500 | [diff] [blame] | 100 | #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 Gortmaker | 9b3ba24 | 2009-09-18 19:08:41 -0400 | [diff] [blame] | 118 | |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 119 | }; |
| 120 | |
| 121 | int num_tlb_entries = ARRAY_SIZE(tlb_table); |