1 // SPDX-License-Identifier: GPL-2.0+
4 * Sergei Poselenov, Emcraft Systems, sposelenov@emcraft.com.
6 * Copyright 2008 Freescale Semiconductor, Inc.
9 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
15 struct fsl_e_tlb_entry tlb_table[] = {
16 /* TLB 0 - for temp stack in cache */
17 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR, CONFIG_SYS_INIT_RAM_ADDR,
18 MAS3_SX|MAS3_SW|MAS3_SR, 0,
19 0, 0, BOOKE_PAGESZ_4K, 0),
20 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024 , CONFIG_SYS_INIT_RAM_ADDR + 4 * 1024,
21 MAS3_SX|MAS3_SW|MAS3_SR, 0,
22 0, 0, BOOKE_PAGESZ_4K, 0),
23 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024 , CONFIG_SYS_INIT_RAM_ADDR + 8 * 1024,
24 MAS3_SX|MAS3_SW|MAS3_SR, 0,
25 0, 0, BOOKE_PAGESZ_4K, 0),
26 SET_TLB_ENTRY(0, CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024 , CONFIG_SYS_INIT_RAM_ADDR + 12 * 1024,
27 MAS3_SX|MAS3_SW|MAS3_SR, 0,
28 0, 0, BOOKE_PAGESZ_4K, 0),
32 * TLB 1: 64M Non-cacheable, guarded
33 * 0xfc000000 64M FLASH
34 * Out of reset this entry is only 4K.
36 SET_TLB_ENTRY(1, CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE,
37 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
38 0, 1, BOOKE_PAGESZ_64M, 1),
41 * TLB 2: 256M Non-cacheable, guarded
42 * 0x80000000 256M PCI1 MEM First half
44 SET_TLB_ENTRY(1, CONFIG_SYS_PCI1_MEM_PHYS, CONFIG_SYS_PCI1_MEM_PHYS,
45 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
46 0, 2, BOOKE_PAGESZ_256M, 1),
49 * TLB 3: 256M Non-cacheable, guarded
50 * 0x90000000 256M PCI1 MEM Second half
52 SET_TLB_ENTRY(1, CONFIG_SYS_PCI1_MEM_PHYS + 0x10000000, CONFIG_SYS_PCI1_MEM_PHYS + 0x10000000,
53 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
54 0, 3, BOOKE_PAGESZ_256M, 1),
56 #if defined(CONFIG_SYS_FPGA_BASE)
58 * TLB 4: 1M Non-cacheable, guarded
59 * 0xc0000000 1M FPGA and NAND
61 SET_TLB_ENTRY(1, CONFIG_SYS_FPGA_BASE, CONFIG_SYS_FPGA_BASE,
62 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
63 0, 4, BOOKE_PAGESZ_1M, 1),
67 * TLB 5: 64M Non-cacheable, guarded
68 * 0xc8000000 16M LIME GDC framebuffer
69 * 0xc9fc0000 256K LIME GDC MMIO
70 * (0xcbfc0000 256K LIME GDC MMIO)
71 * MMIO is relocatable and could be at 0xcbfc0000
73 SET_TLB_ENTRY(1, CONFIG_SYS_LIME_BASE, CONFIG_SYS_LIME_BASE,
74 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
75 0, 5, BOOKE_PAGESZ_64M, 1),
78 * TLB 6: 64M Non-cacheable, guarded
79 * 0xe000_0000 1M CCSRBAR
80 * 0xe200_0000 16M PCI1 IO
82 SET_TLB_ENTRY(1, CONFIG_SYS_CCSRBAR, CONFIG_SYS_CCSRBAR_PHYS,
83 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
84 0, 6, BOOKE_PAGESZ_64M, 1),
86 #if !defined(CONFIG_SPD_EEPROM)
88 * TLB 7+8: 512M DDR, cache disabled (needed for memory test)
89 * 0x00000000 512M DDR System memory
90 * Without SPD EEPROM configured DDR, this must be setup manually.
91 * Make sure the TLB count at the top of this table is correct.
92 * Likely it needs to be increased by two for these entries.
94 SET_TLB_ENTRY(1, CONFIG_SYS_DDR_SDRAM_BASE, CONFIG_SYS_DDR_SDRAM_BASE,
95 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
96 0, 7, BOOKE_PAGESZ_256M, 1),
98 SET_TLB_ENTRY(1, CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000, CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000,
99 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
100 0, 8, BOOKE_PAGESZ_256M, 1),
104 int num_tlb_entries = ARRAY_SIZE(tlb_table);