Kumar Gala | 143b518 | 2008-01-17 01:44:34 -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[] = { |
| 30 | /* TLB for CCSRBAR (IMMR) */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 31 | SET_TLB_ENTRY(1, CONFIG_SYS_CCSRBAR, CONFIG_SYS_CCSRBAR_PHYS, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 32 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 33 | 0, 1, BOOKE_PAGESZ_1M, 1), |
| 34 | |
| 35 | /* TLB for Local Bus stuff, just map the whole 512M */ |
| 36 | /* note that the LBC SDRAM is cache-inhibit and guarded, like everything else */ |
| 37 | |
| 38 | SET_TLB_ENTRY(1, 0xe0000000, 0xe0000000, |
| 39 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 40 | 0, 2, BOOKE_PAGESZ_256M, 1), |
| 41 | |
| 42 | SET_TLB_ENTRY(1, 0xf0000000, 0xf0000000, |
| 43 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 44 | 0, 3, BOOKE_PAGESZ_256M, 1), |
| 45 | |
| 46 | #if !defined(CONFIG_SPD_EEPROM) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 47 | SET_TLB_ENTRY(1, CONFIG_SYS_DDR_SDRAM_BASE, CONFIG_SYS_DDR_SDRAM_BASE, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 48 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 49 | 0, 4, BOOKE_PAGESZ_256M, 1), |
| 50 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 51 | SET_TLB_ENTRY(1, CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000, CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 52 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 53 | 0, 5, BOOKE_PAGESZ_256M, 1), |
| 54 | #endif |
| 55 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 56 | SET_TLB_ENTRY(1, CONFIG_SYS_INIT_RAM_ADDR, CONFIG_SYS_INIT_RAM_ADDR, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 57 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 58 | 0, 6, BOOKE_PAGESZ_16K, 1), |
| 59 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 60 | SET_TLB_ENTRY(1, CONFIG_SYS_PCI_MEM_PHYS, CONFIG_SYS_PCI_MEM_PHYS, |
Kumar Gala | 143b518 | 2008-01-17 01:44:34 -0600 | [diff] [blame] | 61 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 62 | 0, 7, BOOKE_PAGESZ_256M, 1), |
| 63 | }; |
| 64 | |
| 65 | int num_tlb_entries = ARRAY_SIZE(tlb_table); |