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