3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 #if defined(CONFIG_440)
33 typedef struct region {
36 unsigned long tlb_word2_i_value;
39 static int add_tlb_entry(unsigned long base_addr,
40 unsigned long tlb_word0_size_value,
41 unsigned long tlb_word2_i_value)
44 unsigned long tlb_word0_value;
45 unsigned long tlb_word1_value;
46 unsigned long tlb_word2_value;
48 /* First, find the index of a TLB entry not being used */
49 for (i=0; i<PPC4XX_TLB_SIZE; i++) {
50 tlb_word0_value = mftlb1(i);
51 if ((tlb_word0_value & TLB_WORD0_V_MASK) == TLB_WORD0_V_DISABLE)
54 if (i >= PPC4XX_TLB_SIZE)
57 /* Second, create the TLB entry */
58 tlb_word0_value = TLB_WORD0_EPN_ENCODE(base_addr) | TLB_WORD0_V_ENABLE |
59 TLB_WORD0_TS_0 | tlb_word0_size_value;
60 tlb_word1_value = TLB_WORD1_RPN_ENCODE(base_addr) | TLB_WORD1_ERPN_ENCODE(0);
61 tlb_word2_value = TLB_WORD2_U0_DISABLE | TLB_WORD2_U1_DISABLE |
62 TLB_WORD2_U2_DISABLE | TLB_WORD2_U3_DISABLE |
63 TLB_WORD2_W_DISABLE | tlb_word2_i_value |
64 TLB_WORD2_M_DISABLE | TLB_WORD2_G_DISABLE |
65 TLB_WORD2_E_DISABLE | TLB_WORD2_UX_ENABLE |
66 TLB_WORD2_UW_ENABLE | TLB_WORD2_UR_ENABLE |
67 TLB_WORD2_SX_ENABLE | TLB_WORD2_SW_ENABLE |
70 /* Wait for all memory accesses to complete */
73 /* Third, add the TLB entries */
74 mttlb1(i, tlb_word0_value);
75 mttlb2(i, tlb_word1_value);
76 mttlb3(i, tlb_word2_value);
78 /* Execute an ISYNC instruction so that the new TLB entry takes effect */
84 static void program_tlb_addr(unsigned long base_addr, unsigned long mem_size,
85 unsigned long tlb_word2_i_value)
90 tlb_i = tlb_word2_i_value;
91 while (mem_size != 0) {
93 /* Add the TLB entries in to map the region. */
94 if (((base_addr & TLB_256MB_ALIGN_MASK) == base_addr) &&
95 (mem_size >= TLB_256MB_SIZE)) {
96 /* Add a 256MB TLB entry */
97 if ((rc = add_tlb_entry(base_addr, TLB_WORD0_SIZE_256MB, tlb_i)) == 0) {
98 mem_size -= TLB_256MB_SIZE;
99 base_addr += TLB_256MB_SIZE;
101 } else if (((base_addr & TLB_16MB_ALIGN_MASK) == base_addr) &&
102 (mem_size >= TLB_16MB_SIZE)) {
103 /* Add a 16MB TLB entry */
104 if ((rc = add_tlb_entry(base_addr, TLB_WORD0_SIZE_16MB, tlb_i)) == 0) {
105 mem_size -= TLB_16MB_SIZE;
106 base_addr += TLB_16MB_SIZE;
108 } else if (((base_addr & TLB_1MB_ALIGN_MASK) == base_addr) &&
109 (mem_size >= TLB_1MB_SIZE)) {
110 /* Add a 1MB TLB entry */
111 if ((rc = add_tlb_entry(base_addr, TLB_WORD0_SIZE_1MB, tlb_i)) == 0) {
112 mem_size -= TLB_1MB_SIZE;
113 base_addr += TLB_1MB_SIZE;
115 } else if (((base_addr & TLB_256KB_ALIGN_MASK) == base_addr) &&
116 (mem_size >= TLB_256KB_SIZE)) {
117 /* Add a 256KB TLB entry */
118 if ((rc = add_tlb_entry(base_addr, TLB_WORD0_SIZE_256KB, tlb_i)) == 0) {
119 mem_size -= TLB_256KB_SIZE;
120 base_addr += TLB_256KB_SIZE;
122 } else if (((base_addr & TLB_64KB_ALIGN_MASK) == base_addr) &&
123 (mem_size >= TLB_64KB_SIZE)) {
124 /* Add a 64KB TLB entry */
125 if ((rc = add_tlb_entry(base_addr, TLB_WORD0_SIZE_64KB, tlb_i)) == 0) {
126 mem_size -= TLB_64KB_SIZE;
127 base_addr += TLB_64KB_SIZE;
129 } else if (((base_addr & TLB_16KB_ALIGN_MASK) == base_addr) &&
130 (mem_size >= TLB_16KB_SIZE)) {
131 /* Add a 16KB TLB entry */
132 if ((rc = add_tlb_entry(base_addr, TLB_WORD0_SIZE_16KB, tlb_i)) == 0) {
133 mem_size -= TLB_16KB_SIZE;
134 base_addr += TLB_16KB_SIZE;
136 } else if (((base_addr & TLB_4KB_ALIGN_MASK) == base_addr) &&
137 (mem_size >= TLB_4KB_SIZE)) {
138 /* Add a 4KB TLB entry */
139 if ((rc = add_tlb_entry(base_addr, TLB_WORD0_SIZE_4KB, tlb_i)) == 0) {
140 mem_size -= TLB_4KB_SIZE;
141 base_addr += TLB_4KB_SIZE;
143 } else if (((base_addr & TLB_1KB_ALIGN_MASK) == base_addr) &&
144 (mem_size >= TLB_1KB_SIZE)) {
145 /* Add a 1KB TLB entry */
146 if ((rc = add_tlb_entry(base_addr, TLB_WORD0_SIZE_1KB, tlb_i)) == 0) {
147 mem_size -= TLB_1KB_SIZE;
148 base_addr += TLB_1KB_SIZE;
151 printf("ERROR: no TLB size exists for the base address 0x%0X.\n",
156 printf("ERROR: no TLB entries available for the base addr 0x%0X.\n",
164 * Program one (or multiple) TLB entries for one memory region
166 * Common usage for boards with SDRAM DIMM modules to dynamically
167 * configure the TLB's for the SDRAM
169 void program_tlb(u32 start, u32 size, u32 tlb_word2_i_value)
171 region_t region_array;
173 region_array.base = start;
174 region_array.size = size;
175 region_array.tlb_word2_i_value = tlb_word2_i_value; /* en-/disable cache */
177 /* Call the routine to add in the tlb entries for the memory regions */
178 program_tlb_addr(region_array.base, region_array.size,
179 region_array.tlb_word2_i_value);
184 #endif /* CONFIG_440 */