blob: d4ed51c543836ed24cc57792942c5bdf31374a36 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala0db37dc2008-01-17 01:01:09 -06002/*
3 * Copyright 2008 Freescale Semiconductor, Inc.
4 *
5 * (C) Copyright 2000
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Kumar Gala0db37dc2008-01-17 01:01:09 -06007 */
8
9#include <common.h>
10#include <asm/mmu.h>
11
12struct fsl_e_tlb_entry tlb_table[] = {
13 /* TLB 0 - for temp stack in cache */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020014 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR, CONFIG_SYS_INIT_RAM_ADDR,
Kumar Gala0db37dc2008-01-17 01:01:09 -060015 MAS3_SX|MAS3_SW|MAS3_SR, 0,
16 0, 0, BOOKE_PAGESZ_4K, 0),
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020017 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024 , CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024,
Kumar Gala0db37dc2008-01-17 01:01:09 -060018 MAS3_SX|MAS3_SW|MAS3_SR, 0,
19 0, 0, BOOKE_PAGESZ_4K, 0),
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020020 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024 , CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024,
Kumar Gala0db37dc2008-01-17 01:01:09 -060021 MAS3_SX|MAS3_SW|MAS3_SR, 0,
22 0, 0, BOOKE_PAGESZ_4K, 0),
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020023 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024 , CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024,
Kumar Gala0db37dc2008-01-17 01:01:09 -060024 MAS3_SX|MAS3_SW|MAS3_SR, 0,
25 0, 0, BOOKE_PAGESZ_4K, 0),
26
27 /*
28 * TLB 0: 16M Non-cacheable, guarded
29 * 0xff000000 16M FLASH
30 * Out of reset this entry is only 4K.
31 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020032 SET_TLB_ENTRY(1, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE,
Kumar Gala0db37dc2008-01-17 01:01:09 -060033 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
34 0, 0, BOOKE_PAGESZ_16M, 1),
35
36 /*
37 * TLB 1: 256M Non-cacheable, guarded
38 * 0x80000000 256M PCI1 MEM First half
39 */
Kumar Gala5af0fdd2008-12-02 16:08:39 -060040 SET_TLB_ENTRY(1, CONFIG_SYS_PCI1_MEM_VIRT, CONFIG_SYS_PCI1_MEM_PHYS,
Kumar Gala0db37dc2008-01-17 01:01:09 -060041 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
42 0, 1, BOOKE_PAGESZ_256M, 1),
43
44 /*
45 * TLB 2: 256M Non-cacheable, guarded
46 * 0x90000000 256M PCI1 MEM Second half
47 */
Kumar Gala5af0fdd2008-12-02 16:08:39 -060048 SET_TLB_ENTRY(1, CONFIG_SYS_PCI1_MEM_VIRT + 0x10000000, CONFIG_SYS_PCI1_MEM_PHYS + 0x10000000,
Kumar Gala0db37dc2008-01-17 01:01:09 -060049 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
50 0, 2, BOOKE_PAGESZ_256M, 1),
51
52 /*
53 * TLB 3: 256M Non-cacheable, guarded
54 * 0xa0000000 256M PCI2 MEM First half
55 */
Kumar Gala5af0fdd2008-12-02 16:08:39 -060056 SET_TLB_ENTRY(1, CONFIG_SYS_PCI2_MEM_VIRT, CONFIG_SYS_PCI2_MEM_PHYS,
Kumar Gala0db37dc2008-01-17 01:01:09 -060057 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
58 0, 3, BOOKE_PAGESZ_256M, 1),
59
60 /*
61 * TLB 4: 256M Non-cacheable, guarded
62 * 0xb0000000 256M PCI2 MEM Second half
63 */
Kumar Gala5af0fdd2008-12-02 16:08:39 -060064 SET_TLB_ENTRY(1, CONFIG_SYS_PCI2_MEM_VIRT + 0x10000000, CONFIG_SYS_PCI2_MEM_PHYS + 0x10000000,
Kumar Gala0db37dc2008-01-17 01:01:09 -060065 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
66 0, 4, BOOKE_PAGESZ_256M, 1),
67
68 /*
69 * TLB 5: 64M Non-cacheable, guarded
70 * 0xe000_0000 1M CCSRBAR
71 * 0xe200_0000 16M PCI1 IO
72 * 0xe300_0000 16M PCI2 IO
73 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020074 SET_TLB_ENTRY(1, CONFIG_SYS_CCSRBAR, CONFIG_SYS_CCSRBAR_PHYS,
Kumar Gala0db37dc2008-01-17 01:01:09 -060075 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
76 0, 5, BOOKE_PAGESZ_64M, 1),
77
78 /*
79 * TLB 6: 64M Cacheable, non-guarded
80 * 0xf000_0000 64M LBC SDRAM
81 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082 SET_TLB_ENTRY(1, CONFIG_SYS_LBC_SDRAM_BASE, CONFIG_SYS_LBC_SDRAM_BASE,
York Sun316f0d02017-12-05 10:57:54 -080083 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_M,
Kumar Gala0db37dc2008-01-17 01:01:09 -060084 0, 6, BOOKE_PAGESZ_64M, 1),
85
86 /*
87 * TLB 7: 1M Non-cacheable, guarded
88 * 0xf8000000 1M CADMUS registers
89 */
90 SET_TLB_ENTRY(1, CADMUS_BASE_ADDR, CADMUS_BASE_ADDR,
91 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
92 0, 7, BOOKE_PAGESZ_1M, 1),
93};
94
95int num_tlb_entries = ARRAY_SIZE(tlb_table);