Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 1 | /* |
Kumar Gala | cb14e93 | 2010-11-12 08:22:01 -0600 | [diff] [blame] | 2 | * Copyright 2008-2010 Freescale Semiconductor, Inc. |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 3 | * |
| 4 | * (C) Copyright 2000 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <asm/mmu.h> |
| 12 | |
| 13 | struct fsl_e_tlb_entry tlb_table[] = { |
| 14 | /* TLB 0 - for temp stack in cache */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 15 | SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR, CONFIG_SYS_INIT_RAM_ADDR, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 16 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 17 | 0, 0, BOOKE_PAGESZ_4K, 0), |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 18 | SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024 , CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 19 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 20 | 0, 0, BOOKE_PAGESZ_4K, 0), |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 21 | SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024 , CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 22 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 23 | 0, 0, BOOKE_PAGESZ_4K, 0), |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 24 | SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024 , CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 25 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 26 | 0, 0, BOOKE_PAGESZ_4K, 0), |
| 27 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 28 | /* TLB 1 */ |
| 29 | /* *I*** - Covers boot page */ |
| 30 | SET_TLB_ENTRY(1, 0xfffff000, 0xfffff000, |
Kumar Gala | abc76eb | 2009-11-17 20:21:20 -0600 | [diff] [blame] | 31 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 32 | 0, 0, BOOKE_PAGESZ_4K, 1), |
| 33 | |
| 34 | /* *I*G* - CCSRBAR */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 35 | SET_TLB_ENTRY(1, CONFIG_SYS_CCSRBAR, CONFIG_SYS_CCSRBAR_PHYS, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 36 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 37 | 0, 1, BOOKE_PAGESZ_1M, 1), |
| 38 | |
| 39 | /* W**G* - Flash/promjet, localbus */ |
| 40 | /* This will be changed to *I*G* after relocation to RAM. */ |
Kumar Gala | c953ddf | 2008-12-02 14:19:34 -0600 | [diff] [blame] | 41 | SET_TLB_ENTRY(1, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE_PHYS, |
Kumar Gala | 7c0d4a7 | 2008-09-22 14:11:11 -0500 | [diff] [blame] | 42 | MAS3_SX|MAS3_SR, MAS2_W|MAS2_G, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 43 | 0, 2, BOOKE_PAGESZ_256M, 1), |
| 44 | |
Kumar Gala | e4382ac | 2011-11-08 11:03:54 -0600 | [diff] [blame] | 45 | #ifndef CONFIG_NAND_SPL |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 46 | /* *I*G* - PCI */ |
Kumar Gala | 5af0fdd | 2008-12-02 16:08:39 -0600 | [diff] [blame] | 47 | SET_TLB_ENTRY(1, CONFIG_SYS_PCIE3_MEM_VIRT, CONFIG_SYS_PCIE3_MEM_PHYS, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 48 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 49 | 0, 3, BOOKE_PAGESZ_1G, 1), |
| 50 | |
| 51 | /* *I*G* - PCI */ |
Kumar Gala | 5af0fdd | 2008-12-02 16:08:39 -0600 | [diff] [blame] | 52 | SET_TLB_ENTRY(1, CONFIG_SYS_PCIE3_MEM_VIRT + 0x40000000, CONFIG_SYS_PCIE3_MEM_PHYS + 0x40000000, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 53 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 54 | 0, 4, BOOKE_PAGESZ_256M, 1), |
| 55 | |
Kumar Gala | 5af0fdd | 2008-12-02 16:08:39 -0600 | [diff] [blame] | 56 | SET_TLB_ENTRY(1, CONFIG_SYS_PCIE3_MEM_VIRT + 0x50000000, CONFIG_SYS_PCIE3_MEM_PHYS + 0x50000000, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 57 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 58 | 0, 5, BOOKE_PAGESZ_256M, 1), |
| 59 | |
| 60 | /* *I*G* - PCI I/O */ |
Kumar Gala | aca5f01 | 2008-12-02 16:08:40 -0600 | [diff] [blame] | 61 | SET_TLB_ENTRY(1, CONFIG_SYS_PCIE3_IO_VIRT, CONFIG_SYS_PCIE3_IO_PHYS, |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 62 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 63 | 0, 6, BOOKE_PAGESZ_256K, 1), |
Kumar Gala | e4382ac | 2011-11-08 11:03:54 -0600 | [diff] [blame] | 64 | #endif |
Haiying Wang | c013b74 | 2008-10-29 13:32:59 -0400 | [diff] [blame] | 65 | |
| 66 | /* *I*G - NAND */ |
| 67 | SET_TLB_ENTRY(1, CONFIG_SYS_NAND_BASE, CONFIG_SYS_NAND_BASE_PHYS, |
| 68 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 69 | 0, 7, BOOKE_PAGESZ_1M, 1), |
| 70 | |
Kumar Gala | 52b565f | 2008-12-02 14:19:33 -0600 | [diff] [blame] | 71 | SET_TLB_ENTRY(1, PIXIS_BASE, PIXIS_BASE_PHYS, |
Haiying Wang | b5f65df | 2009-01-13 16:29:28 -0500 | [diff] [blame] | 72 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 73 | 0, 8, BOOKE_PAGESZ_4K, 1), |
Kumar Gala | cb14e93 | 2010-11-12 08:22:01 -0600 | [diff] [blame] | 74 | |
| 75 | #if defined(CONFIG_SYS_RAMBOOT) && defined(CONFIG_SYS_INIT_L2_ADDR) |
| 76 | /* *I*G - L2SRAM */ |
| 77 | SET_TLB_ENTRY(1, CONFIG_SYS_INIT_L2_ADDR, |
| 78 | CONFIG_SYS_INIT_L2_ADDR_PHYS, |
| 79 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 80 | 0, 9, BOOKE_PAGESZ_256K, 1), |
| 81 | SET_TLB_ENTRY(1, CONFIG_SYS_INIT_L2_ADDR + 0x40000, |
| 82 | CONFIG_SYS_INIT_L2_ADDR_PHYS + 0x40000, |
| 83 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 84 | 0, 10, BOOKE_PAGESZ_256K, 1), |
| 85 | #endif |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | int num_tlb_entries = ARRAY_SIZE(tlb_table); |