Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2008 Freescale Semiconductor, Inc. |
| 3 | * |
| 4 | * (C) Copyright 2000 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
| 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
| 24 | */ |
| 25 | |
| 26 | #include <common.h> |
| 27 | #include <asm/mmu.h> |
| 28 | |
| 29 | struct fsl_e_tlb_entry tlb_table[] = { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 30 | SET_TLB_ENTRY(1, CONFIG_SYS_CCSRBAR, CONFIG_SYS_CCSRBAR_PHYS, |
Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 31 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 32 | 0, 1, BOOKE_PAGESZ_1M, 1), |
| 33 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 34 | #if defined(CONFIG_SYS_FLASH_PORT_WIDTH_16) |
| 35 | SET_TLB_ENTRY(1, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE, |
Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 36 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 37 | 0, 2, BOOKE_PAGESZ_4M, 1), |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 38 | SET_TLB_ENTRY(1, CONFIG_SYS_FLASH_BASE + 0x400000, CONFIG_SYS_FLASH_BASE + 0x400000, |
Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 39 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 40 | 0, 3, BOOKE_PAGESZ_4M, 1), |
| 41 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 42 | SET_TLB_ENTRY(1, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE, |
Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 43 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 44 | 0, 2, BOOKE_PAGESZ_16M, 1), |
| 45 | #endif |
| 46 | |
| 47 | #if !defined(CONFIG_SPD_EEPROM) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 48 | SET_TLB_ENTRY(1, CONFIG_SYS_DDR_SDRAM_BASE, CONFIG_SYS_DDR_SDRAM_BASE, |
Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 49 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 50 | 0, 4, BOOKE_PAGESZ_64M, 1), |
| 51 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 52 | SET_TLB_ENTRY(1, CONFIG_SYS_DDR_SDRAM_BASE + 0x4000000, CONFIG_SYS_DDR_SDRAM_BASE + 0x4000000, |
Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 53 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 54 | 0, 5, BOOKE_PAGESZ_64M, 1), |
| 55 | #endif |
| 56 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 57 | SET_TLB_ENTRY(1, CONFIG_SYS_LBC_SDRAM_BASE, CONFIG_SYS_LBC_SDRAM_BASE, |
Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 58 | #if defined(CONFIG_RAM_AS_FLASH) |
| 59 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 60 | #else |
| 61 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 62 | #endif |
| 63 | 0, 6, BOOKE_PAGESZ_64M, 1), |
| 64 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 65 | SET_TLB_ENTRY(1, CONFIG_SYS_INIT_RAM_ADDR, CONFIG_SYS_INIT_RAM_ADDR, |
Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 66 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 67 | 0, 7, BOOKE_PAGESZ_16K, 1), |
| 68 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 69 | SET_TLB_ENTRY(1, CONFIG_SYS_PCI_MEM_PHYS, CONFIG_SYS_PCI_MEM_PHYS, |
Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 70 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 71 | 0, 8, BOOKE_PAGESZ_256M, 1), |
| 72 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 73 | SET_TLB_ENTRY(1, CONFIG_SYS_BCSR, CONFIG_SYS_BCSR, |
Kumar Gala | ff4681c | 2008-01-17 01:25:33 -0600 | [diff] [blame] | 74 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 75 | 0, 9, BOOKE_PAGESZ_16K, 1), |
| 76 | }; |
| 77 | |
| 78 | int num_tlb_entries = ARRAY_SIZE(tlb_table); |