blob: 2ad747e909fb6bdedae841839383e8459f9e844e [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Mike Frysingerbe1577e2010-05-10 05:21:50 +00002 * Copyright 2004-2010 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -07003 *
Mike Frysinger550d5532008-02-02 15:55:37 +08004 * Licensed under the GPL-2 or later.
Bryan Wu1394f032007-05-06 14:50:22 -07005 */
6
7#include <linux/delay.h>
8#include <linux/console.h>
9#include <linux/bootmem.h>
10#include <linux/seq_file.h>
11#include <linux/cpu.h>
Mike Frysinger259fea42009-01-07 23:14:39 +080012#include <linux/mm.h>
Bryan Wu1394f032007-05-06 14:50:22 -070013#include <linux/module.h>
Bryan Wu1394f032007-05-06 14:50:22 -070014#include <linux/tty.h>
Yi Li856783b2008-02-09 02:26:01 +080015#include <linux/pfn.h>
Bryan Wu1394f032007-05-06 14:50:22 -070016
Mike Frysinger79df1b62009-05-26 23:34:51 +000017#ifdef CONFIG_MTD_UCLINUX
18#include <linux/mtd/map.h>
Bryan Wu1394f032007-05-06 14:50:22 -070019#include <linux/ext2_fs.h>
20#include <linux/cramfs_fs.h>
21#include <linux/romfs_fs.h>
Mike Frysinger79df1b62009-05-26 23:34:51 +000022#endif
Bryan Wu1394f032007-05-06 14:50:22 -070023
Robin Getz3bebca22007-10-10 23:55:26 +080024#include <asm/cplb.h>
Bryan Wu1394f032007-05-06 14:50:22 -070025#include <asm/cacheflush.h>
26#include <asm/blackfin.h>
27#include <asm/cplbinit.h>
Mike Frysinger1754a5d2007-11-23 11:28:11 +080028#include <asm/div64.h>
Graf Yang8f658732008-11-18 17:48:22 +080029#include <asm/cpu.h>
Bernd Schmidt7adfb582007-06-21 11:34:16 +080030#include <asm/fixed_code.h>
Robin Getzce3afa12007-10-09 17:28:36 +080031#include <asm/early_printk.h>
Mike Frysinger6327a572011-04-15 03:06:59 -040032#include <asm/irq_handler.h>
David Howells3bed8d62012-03-12 23:36:56 +000033#include <asm/pda.h>
Bryan Wu1394f032007-05-06 14:50:22 -070034
Mike Frysingera9c59c22007-05-21 18:09:32 +080035u16 _bfin_swrst;
Mike Frysingerd45118b2008-02-25 12:24:44 +080036EXPORT_SYMBOL(_bfin_swrst);
Mike Frysingera9c59c22007-05-21 18:09:32 +080037
Bryan Wu1394f032007-05-06 14:50:22 -070038unsigned long memory_start, memory_end, physical_mem_end;
Mike Frysinger3132b582008-04-24 05:12:09 +080039unsigned long _rambase, _ramstart, _ramend;
Bryan Wu1394f032007-05-06 14:50:22 -070040unsigned long reserved_mem_dcache_on;
41unsigned long reserved_mem_icache_on;
42EXPORT_SYMBOL(memory_start);
43EXPORT_SYMBOL(memory_end);
44EXPORT_SYMBOL(physical_mem_end);
45EXPORT_SYMBOL(_ramend);
Vitja Makarov58c35bd2008-10-13 15:23:56 +080046EXPORT_SYMBOL(reserved_mem_dcache_on);
Bryan Wu1394f032007-05-06 14:50:22 -070047
48#ifdef CONFIG_MTD_UCLINUX
Mike Frysinger79df1b62009-05-26 23:34:51 +000049extern struct map_info uclinux_ram_map;
Bryan Wu1394f032007-05-06 14:50:22 -070050unsigned long memory_mtd_end, memory_mtd_start, mtd_size;
51unsigned long _ebss;
52EXPORT_SYMBOL(memory_mtd_end);
53EXPORT_SYMBOL(memory_mtd_start);
54EXPORT_SYMBOL(mtd_size);
55#endif
56
Mike Frysinger5e10b4a2007-06-11 16:44:09 +080057char __initdata command_line[COMMAND_LINE_SIZE];
Mike Frysingerfb1d9be2011-05-29 23:12:51 -040058struct blackfin_initial_pda __initdata initial_pda;
Bryan Wu1394f032007-05-06 14:50:22 -070059
Yi Li856783b2008-02-09 02:26:01 +080060/* boot memmap, for parsing "memmap=" */
61#define BFIN_MEMMAP_MAX 128 /* number of entries in bfin_memmap */
62#define BFIN_MEMMAP_RAM 1
63#define BFIN_MEMMAP_RESERVED 2
Mike Frysingeraf4c7d42009-02-04 16:49:45 +080064static struct bfin_memmap {
Yi Li856783b2008-02-09 02:26:01 +080065 int nr_map;
66 struct bfin_memmap_entry {
67 unsigned long long addr; /* start of memory segment */
68 unsigned long long size;
69 unsigned long type;
70 } map[BFIN_MEMMAP_MAX];
71} bfin_memmap __initdata;
72
73/* for memmap sanitization */
74struct change_member {
75 struct bfin_memmap_entry *pentry; /* pointer to original entry */
76 unsigned long long addr; /* address for this change point */
77};
78static struct change_member change_point_list[2*BFIN_MEMMAP_MAX] __initdata;
79static struct change_member *change_point[2*BFIN_MEMMAP_MAX] __initdata;
80static struct bfin_memmap_entry *overlap_list[BFIN_MEMMAP_MAX] __initdata;
81static struct bfin_memmap_entry new_map[BFIN_MEMMAP_MAX] __initdata;
82
Graf Yang8f658732008-11-18 17:48:22 +080083DEFINE_PER_CPU(struct blackfin_cpudata, cpu_data);
84
Mike Frysinger7f1e2f92009-01-07 23:14:38 +080085static int early_init_clkin_hz(char *buf);
86
Robin Getz3bebca22007-10-10 23:55:26 +080087#if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
Graf Yang8f658732008-11-18 17:48:22 +080088void __init generate_cplb_tables(void)
89{
90 unsigned int cpu;
91
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +080092 generate_cplb_tables_all();
Graf Yang8f658732008-11-18 17:48:22 +080093 /* Generate per-CPU I&D CPLB tables */
94 for (cpu = 0; cpu < num_possible_cpus(); ++cpu)
95 generate_cplb_tables_cpu(cpu);
96}
Bryan Wu1394f032007-05-06 14:50:22 -070097#endif
98
Graf Yang8f658732008-11-18 17:48:22 +080099void __cpuinit bfin_setup_caches(unsigned int cpu)
100{
Robin Getz3bebca22007-10-10 23:55:26 +0800101#ifdef CONFIG_BFIN_ICACHE
Graf Yang8f658732008-11-18 17:48:22 +0800102 bfin_icache_init(icplb_tbl[cpu]);
Bryan Wu1394f032007-05-06 14:50:22 -0700103#endif
104
Robin Getz3bebca22007-10-10 23:55:26 +0800105#ifdef CONFIG_BFIN_DCACHE
Graf Yang8f658732008-11-18 17:48:22 +0800106 bfin_dcache_init(dcplb_tbl[cpu]);
Graf Yang8f658732008-11-18 17:48:22 +0800107#endif
108
Mike Frysinger44491fb2011-04-13 18:57:57 -0400109 bfin_setup_cpudata(cpu);
110
Graf Yang8f658732008-11-18 17:48:22 +0800111 /*
112 * In cache coherence emulation mode, we need to have the
113 * D-cache enabled before running any atomic operation which
Michael Hennerich05d17df2009-08-21 03:49:19 +0000114 * might involve cache invalidation (i.e. spinlock, rwlock).
Graf Yang8f658732008-11-18 17:48:22 +0800115 * So printk's are deferred until then.
116 */
117#ifdef CONFIG_BFIN_ICACHE
118 printk(KERN_INFO "Instruction Cache Enabled for CPU%u\n", cpu);
Jie Zhang41ba6532009-06-16 09:48:33 +0000119 printk(KERN_INFO " External memory:"
120# ifdef CONFIG_BFIN_EXTMEM_ICACHEABLE
121 " cacheable"
122# else
123 " uncacheable"
Bryan Wu1394f032007-05-06 14:50:22 -0700124# endif
Jie Zhang41ba6532009-06-16 09:48:33 +0000125 " in instruction cache\n");
126 if (L2_LENGTH)
127 printk(KERN_INFO " L2 SRAM :"
128# ifdef CONFIG_BFIN_L2_ICACHEABLE
129 " cacheable"
130# else
131 " uncacheable"
132# endif
133 " in instruction cache\n");
134
135#else
136 printk(KERN_INFO "Instruction Cache Disabled for CPU%u\n", cpu);
137#endif
138
139#ifdef CONFIG_BFIN_DCACHE
140 printk(KERN_INFO "Data Cache Enabled for CPU%u\n", cpu);
141 printk(KERN_INFO " External memory:"
142# if defined CONFIG_BFIN_EXTMEM_WRITEBACK
143 " cacheable (write-back)"
144# elif defined CONFIG_BFIN_EXTMEM_WRITETHROUGH
145 " cacheable (write-through)"
146# else
147 " uncacheable"
148# endif
149 " in data cache\n");
150 if (L2_LENGTH)
151 printk(KERN_INFO " L2 SRAM :"
152# if defined CONFIG_BFIN_L2_WRITEBACK
153 " cacheable (write-back)"
154# elif defined CONFIG_BFIN_L2_WRITETHROUGH
155 " cacheable (write-through)"
156# else
157 " uncacheable"
158# endif
159 " in data cache\n");
160#else
161 printk(KERN_INFO "Data Cache Disabled for CPU%u\n", cpu);
Bryan Wu1394f032007-05-06 14:50:22 -0700162#endif
163}
164
Graf Yang8f658732008-11-18 17:48:22 +0800165void __cpuinit bfin_setup_cpudata(unsigned int cpu)
166{
167 struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu);
168
Graf Yang8f658732008-11-18 17:48:22 +0800169 cpudata->imemctl = bfin_read_IMEM_CONTROL();
170 cpudata->dmemctl = bfin_read_DMEM_CONTROL();
171}
172
173void __init bfin_cache_init(void)
174{
175#if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
176 generate_cplb_tables();
177#endif
178 bfin_setup_caches(0);
179}
180
Graf Yang5b04f272008-10-08 17:32:57 +0800181void __init bfin_relocate_l1_mem(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700182{
Mike Frysinger5cd82a62009-09-23 20:34:48 +0000183 unsigned long text_l1_len = (unsigned long)_text_l1_len;
184 unsigned long data_l1_len = (unsigned long)_data_l1_len;
185 unsigned long data_b_l1_len = (unsigned long)_data_b_l1_len;
186 unsigned long l2_len = (unsigned long)_l2_len;
Bryan Wu1394f032007-05-06 14:50:22 -0700187
Robin Getz837ec2d2009-07-07 20:17:09 +0000188 early_shadow_stamp();
189
Robin Getzfecbd732009-04-23 20:49:43 +0000190 /*
191 * due to the ALIGN(4) in the arch/blackfin/kernel/vmlinux.lds.S
192 * we know that everything about l1 text/data is nice and aligned,
193 * so copy by 4 byte chunks, and don't worry about overlapping
194 * src/dest.
195 *
196 * We can't use the dma_memcpy functions, since they can call
197 * scheduler functions which might be in L1 :( and core writes
198 * into L1 instruction cause bad access errors, so we are stuck,
199 * we are required to use DMA, but can't use the common dma
200 * functions. We can't use memcpy either - since that might be
201 * going to be in the relocated L1
Bryan Wu1394f032007-05-06 14:50:22 -0700202 */
203
Robin Getzfecbd732009-04-23 20:49:43 +0000204 blackfin_dma_early_init();
Bryan Wu1394f032007-05-06 14:50:22 -0700205
Mike Frysinger5cd82a62009-09-23 20:34:48 +0000206 /* if necessary, copy L1 text to L1 instruction SRAM */
207 if (L1_CODE_LENGTH && text_l1_len)
208 early_dma_memcpy(_stext_l1, _text_l1_lma, text_l1_len);
Robin Getzfecbd732009-04-23 20:49:43 +0000209
Mike Frysinger5cd82a62009-09-23 20:34:48 +0000210 /* if necessary, copy L1 data to L1 data bank A SRAM */
211 if (L1_DATA_A_LENGTH && data_l1_len)
212 early_dma_memcpy(_sdata_l1, _data_l1_lma, data_l1_len);
Bryan Wu1394f032007-05-06 14:50:22 -0700213
Mike Frysinger5cd82a62009-09-23 20:34:48 +0000214 /* if necessary, copy L1 data B to L1 data bank B SRAM */
215 if (L1_DATA_B_LENGTH && data_b_l1_len)
216 early_dma_memcpy(_sdata_b_l1, _data_b_l1_lma, data_b_l1_len);
Sonic Zhang262c3822008-07-19 15:42:41 +0800217
Robin Getzfecbd732009-04-23 20:49:43 +0000218 early_dma_memcpy_done();
219
Sonic Zhangc6345ab2010-08-05 07:49:26 +0000220#if defined(CONFIG_SMP) && defined(CONFIG_ICACHE_FLUSH_L1)
221 blackfin_iflush_l1_entry[0] = (unsigned long)blackfin_icache_flush_range_l1;
222#endif
223
Mike Frysinger5cd82a62009-09-23 20:34:48 +0000224 /* if necessary, copy L2 text/data to L2 SRAM */
225 if (L2_LENGTH && l2_len)
226 memcpy(_stext_l2, _l2_lma, l2_len);
Bryan Wu1394f032007-05-06 14:50:22 -0700227}
228
Sonic Zhangc6345ab2010-08-05 07:49:26 +0000229#ifdef CONFIG_SMP
230void __init bfin_relocate_coreb_l1_mem(void)
231{
232 unsigned long text_l1_len = (unsigned long)_text_l1_len;
233 unsigned long data_l1_len = (unsigned long)_data_l1_len;
234 unsigned long data_b_l1_len = (unsigned long)_data_b_l1_len;
235
236 blackfin_dma_early_init();
237
238 /* if necessary, copy L1 text to L1 instruction SRAM */
239 if (L1_CODE_LENGTH && text_l1_len)
240 early_dma_memcpy((void *)COREB_L1_CODE_START, _text_l1_lma,
241 text_l1_len);
242
243 /* if necessary, copy L1 data to L1 data bank A SRAM */
244 if (L1_DATA_A_LENGTH && data_l1_len)
245 early_dma_memcpy((void *)COREB_L1_DATA_A_START, _data_l1_lma,
246 data_l1_len);
247
248 /* if necessary, copy L1 data B to L1 data bank B SRAM */
249 if (L1_DATA_B_LENGTH && data_b_l1_len)
250 early_dma_memcpy((void *)COREB_L1_DATA_B_START, _data_b_l1_lma,
251 data_b_l1_len);
252
253 early_dma_memcpy_done();
254
255#ifdef CONFIG_ICACHE_FLUSH_L1
256 blackfin_iflush_l1_entry[1] = (unsigned long)blackfin_icache_flush_range_l1 -
257 (unsigned long)_stext_l1 + COREB_L1_CODE_START;
258#endif
259}
260#endif
261
Barry Songd86bfb12010-01-07 04:11:17 +0000262#ifdef CONFIG_ROMKERNEL
263void __init bfin_relocate_xip_data(void)
264{
265 early_shadow_stamp();
266
267 memcpy(_sdata, _data_lma, (unsigned long)_data_len - THREAD_SIZE + sizeof(struct thread_info));
268 memcpy(_sinitdata, _init_data_lma, (unsigned long)_init_data_len);
269}
270#endif
271
Yi Li856783b2008-02-09 02:26:01 +0800272/* add_memory_region to memmap */
273static void __init add_memory_region(unsigned long long start,
274 unsigned long long size, int type)
275{
276 int i;
277
278 i = bfin_memmap.nr_map;
279
280 if (i == BFIN_MEMMAP_MAX) {
281 printk(KERN_ERR "Ooops! Too many entries in the memory map!\n");
282 return;
283 }
284
285 bfin_memmap.map[i].addr = start;
286 bfin_memmap.map[i].size = size;
287 bfin_memmap.map[i].type = type;
288 bfin_memmap.nr_map++;
289}
290
291/*
292 * Sanitize the boot memmap, removing overlaps.
293 */
294static int __init sanitize_memmap(struct bfin_memmap_entry *map, int *pnr_map)
295{
296 struct change_member *change_tmp;
297 unsigned long current_type, last_type;
298 unsigned long long last_addr;
299 int chgidx, still_changing;
300 int overlap_entries;
301 int new_entry;
302 int old_nr, new_nr, chg_nr;
303 int i;
304
305 /*
306 Visually we're performing the following (1,2,3,4 = memory types)
307
308 Sample memory map (w/overlaps):
309 ____22__________________
310 ______________________4_
311 ____1111________________
312 _44_____________________
313 11111111________________
314 ____________________33__
315 ___________44___________
316 __________33333_________
317 ______________22________
318 ___________________2222_
319 _________111111111______
320 _____________________11_
321 _________________4______
322
323 Sanitized equivalent (no overlap):
324 1_______________________
325 _44_____________________
326 ___1____________________
327 ____22__________________
328 ______11________________
329 _________1______________
330 __________3_____________
331 ___________44___________
332 _____________33_________
333 _______________2________
334 ________________1_______
335 _________________4______
336 ___________________2____
337 ____________________33__
338 ______________________4_
339 */
340 /* if there's only one memory region, don't bother */
341 if (*pnr_map < 2)
342 return -1;
343
344 old_nr = *pnr_map;
345
346 /* bail out if we find any unreasonable addresses in memmap */
347 for (i = 0; i < old_nr; i++)
348 if (map[i].addr + map[i].size < map[i].addr)
349 return -1;
350
351 /* create pointers for initial change-point information (for sorting) */
352 for (i = 0; i < 2*old_nr; i++)
353 change_point[i] = &change_point_list[i];
354
355 /* record all known change-points (starting and ending addresses),
356 omitting those that are for empty memory regions */
357 chgidx = 0;
Graf Yang8f658732008-11-18 17:48:22 +0800358 for (i = 0; i < old_nr; i++) {
Yi Li856783b2008-02-09 02:26:01 +0800359 if (map[i].size != 0) {
360 change_point[chgidx]->addr = map[i].addr;
361 change_point[chgidx++]->pentry = &map[i];
362 change_point[chgidx]->addr = map[i].addr + map[i].size;
363 change_point[chgidx++]->pentry = &map[i];
364 }
365 }
Graf Yang8f658732008-11-18 17:48:22 +0800366 chg_nr = chgidx; /* true number of change-points */
Yi Li856783b2008-02-09 02:26:01 +0800367
368 /* sort change-point list by memory addresses (low -> high) */
369 still_changing = 1;
Graf Yang8f658732008-11-18 17:48:22 +0800370 while (still_changing) {
Yi Li856783b2008-02-09 02:26:01 +0800371 still_changing = 0;
Graf Yang8f658732008-11-18 17:48:22 +0800372 for (i = 1; i < chg_nr; i++) {
Yi Li856783b2008-02-09 02:26:01 +0800373 /* if <current_addr> > <last_addr>, swap */
374 /* or, if current=<start_addr> & last=<end_addr>, swap */
375 if ((change_point[i]->addr < change_point[i-1]->addr) ||
376 ((change_point[i]->addr == change_point[i-1]->addr) &&
377 (change_point[i]->addr == change_point[i]->pentry->addr) &&
378 (change_point[i-1]->addr != change_point[i-1]->pentry->addr))
379 ) {
380 change_tmp = change_point[i];
381 change_point[i] = change_point[i-1];
382 change_point[i-1] = change_tmp;
383 still_changing = 1;
384 }
385 }
386 }
387
388 /* create a new memmap, removing overlaps */
Graf Yang8f658732008-11-18 17:48:22 +0800389 overlap_entries = 0; /* number of entries in the overlap table */
390 new_entry = 0; /* index for creating new memmap entries */
391 last_type = 0; /* start with undefined memory type */
392 last_addr = 0; /* start with 0 as last starting address */
Yi Li856783b2008-02-09 02:26:01 +0800393 /* loop through change-points, determining affect on the new memmap */
394 for (chgidx = 0; chgidx < chg_nr; chgidx++) {
395 /* keep track of all overlapping memmap entries */
396 if (change_point[chgidx]->addr == change_point[chgidx]->pentry->addr) {
397 /* add map entry to overlap list (> 1 entry implies an overlap) */
398 overlap_list[overlap_entries++] = change_point[chgidx]->pentry;
399 } else {
400 /* remove entry from list (order independent, so swap with last) */
401 for (i = 0; i < overlap_entries; i++) {
402 if (overlap_list[i] == change_point[chgidx]->pentry)
403 overlap_list[i] = overlap_list[overlap_entries-1];
404 }
405 overlap_entries--;
406 }
407 /* if there are overlapping entries, decide which "type" to use */
408 /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */
409 current_type = 0;
410 for (i = 0; i < overlap_entries; i++)
411 if (overlap_list[i]->type > current_type)
412 current_type = overlap_list[i]->type;
413 /* continue building up new memmap based on this information */
Graf Yang8f658732008-11-18 17:48:22 +0800414 if (current_type != last_type) {
Yi Li856783b2008-02-09 02:26:01 +0800415 if (last_type != 0) {
416 new_map[new_entry].size =
417 change_point[chgidx]->addr - last_addr;
418 /* move forward only if the new size was non-zero */
419 if (new_map[new_entry].size != 0)
420 if (++new_entry >= BFIN_MEMMAP_MAX)
Graf Yang8f658732008-11-18 17:48:22 +0800421 break; /* no more space left for new entries */
Yi Li856783b2008-02-09 02:26:01 +0800422 }
423 if (current_type != 0) {
424 new_map[new_entry].addr = change_point[chgidx]->addr;
425 new_map[new_entry].type = current_type;
426 last_addr = change_point[chgidx]->addr;
427 }
428 last_type = current_type;
429 }
430 }
Graf Yang8f658732008-11-18 17:48:22 +0800431 new_nr = new_entry; /* retain count for new entries */
Yi Li856783b2008-02-09 02:26:01 +0800432
Graf Yang8f658732008-11-18 17:48:22 +0800433 /* copy new mapping into original location */
Yi Li856783b2008-02-09 02:26:01 +0800434 memcpy(map, new_map, new_nr*sizeof(struct bfin_memmap_entry));
435 *pnr_map = new_nr;
436
437 return 0;
438}
439
440static void __init print_memory_map(char *who)
441{
442 int i;
443
444 for (i = 0; i < bfin_memmap.nr_map; i++) {
445 printk(KERN_DEBUG " %s: %016Lx - %016Lx ", who,
446 bfin_memmap.map[i].addr,
447 bfin_memmap.map[i].addr + bfin_memmap.map[i].size);
448 switch (bfin_memmap.map[i].type) {
449 case BFIN_MEMMAP_RAM:
Joe Perchesad361c92009-07-06 13:05:40 -0700450 printk(KERN_CONT "(usable)\n");
451 break;
Yi Li856783b2008-02-09 02:26:01 +0800452 case BFIN_MEMMAP_RESERVED:
Joe Perchesad361c92009-07-06 13:05:40 -0700453 printk(KERN_CONT "(reserved)\n");
454 break;
455 default:
456 printk(KERN_CONT "type %lu\n", bfin_memmap.map[i].type);
457 break;
Yi Li856783b2008-02-09 02:26:01 +0800458 }
459 }
460}
461
462static __init int parse_memmap(char *arg)
463{
464 unsigned long long start_at, mem_size;
465
466 if (!arg)
467 return -EINVAL;
468
469 mem_size = memparse(arg, &arg);
470 if (*arg == '@') {
471 start_at = memparse(arg+1, &arg);
472 add_memory_region(start_at, mem_size, BFIN_MEMMAP_RAM);
473 } else if (*arg == '$') {
474 start_at = memparse(arg+1, &arg);
475 add_memory_region(start_at, mem_size, BFIN_MEMMAP_RESERVED);
476 }
477
478 return 0;
479}
480
Bryan Wu1394f032007-05-06 14:50:22 -0700481/*
482 * Initial parsing of the command line. Currently, we support:
483 * - Controlling the linux memory size: mem=xxx[KMG]
484 * - Controlling the physical memory size: max_mem=xxx[KMG][$][#]
485 * $ -> reserved memory is dcacheable
486 * # -> reserved memory is icacheable
Yi Li856783b2008-02-09 02:26:01 +0800487 * - "memmap=XXX[KkmM][@][$]XXX[KkmM]" defines a memory region
488 * @ from <start> to <start>+<mem>, type RAM
489 * $ from <start> to <start>+<mem>, type RESERVED
Bryan Wu1394f032007-05-06 14:50:22 -0700490 */
491static __init void parse_cmdline_early(char *cmdline_p)
492{
493 char c = ' ', *to = cmdline_p;
494 unsigned int memsize;
495 for (;;) {
496 if (c == ' ') {
Bryan Wu1394f032007-05-06 14:50:22 -0700497 if (!memcmp(to, "mem=", 4)) {
498 to += 4;
499 memsize = memparse(to, &to);
500 if (memsize)
501 _ramend = memsize;
502
503 } else if (!memcmp(to, "max_mem=", 8)) {
504 to += 8;
505 memsize = memparse(to, &to);
506 if (memsize) {
507 physical_mem_end = memsize;
508 if (*to != ' ') {
509 if (*to == '$'
510 || *(to + 1) == '$')
Graf Yang8f658732008-11-18 17:48:22 +0800511 reserved_mem_dcache_on = 1;
Bryan Wu1394f032007-05-06 14:50:22 -0700512 if (*to == '#'
513 || *(to + 1) == '#')
Graf Yang8f658732008-11-18 17:48:22 +0800514 reserved_mem_icache_on = 1;
Bryan Wu1394f032007-05-06 14:50:22 -0700515 }
516 }
Mike Frysinger7f1e2f92009-01-07 23:14:38 +0800517 } else if (!memcmp(to, "clkin_hz=", 9)) {
518 to += 9;
519 early_init_clkin_hz(to);
Robin Getzbd854c02009-06-18 22:53:43 +0000520#ifdef CONFIG_EARLY_PRINTK
Robin Getzce3afa12007-10-09 17:28:36 +0800521 } else if (!memcmp(to, "earlyprintk=", 12)) {
522 to += 12;
523 setup_early_printk(to);
Robin Getzbd854c02009-06-18 22:53:43 +0000524#endif
Yi Li856783b2008-02-09 02:26:01 +0800525 } else if (!memcmp(to, "memmap=", 7)) {
526 to += 7;
527 parse_memmap(to);
Bryan Wu1394f032007-05-06 14:50:22 -0700528 }
Bryan Wu1394f032007-05-06 14:50:22 -0700529 }
530 c = *(to++);
531 if (!c)
532 break;
533 }
534}
535
Yi Li856783b2008-02-09 02:26:01 +0800536/*
537 * Setup memory defaults from user config.
538 * The physical memory layout looks like:
539 *
540 * [_rambase, _ramstart]: kernel image
541 * [memory_start, memory_end]: dynamic memory managed by kernel
542 * [memory_end, _ramend]: reserved memory
Bryan Wu3094c982008-10-10 21:22:01 +0800543 * [memory_mtd_start(memory_end),
Yi Li856783b2008-02-09 02:26:01 +0800544 * memory_mtd_start + mtd_size]: rootfs (if any)
545 * [_ramend - DMA_UNCACHED_REGION,
546 * _ramend]: uncached DMA region
547 * [_ramend, physical_mem_end]: memory not managed by kernel
Yi Li856783b2008-02-09 02:26:01 +0800548 */
Graf Yang8f658732008-11-18 17:48:22 +0800549static __init void memory_setup(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700550{
Mike Frysingerc0eab3b2008-02-02 15:36:11 +0800551#ifdef CONFIG_MTD_UCLINUX
552 unsigned long mtd_phys = 0;
Al Viro39429c52012-03-23 16:36:45 -0400553 unsigned long n;
Mike Frysingerc0eab3b2008-02-02 15:36:11 +0800554#endif
Robin Getz2f812c02009-06-26 12:52:46 +0000555 unsigned long max_mem;
Mike Frysingerc0eab3b2008-02-02 15:36:11 +0800556
Barry Songd86bfb12010-01-07 04:11:17 +0000557 _rambase = CONFIG_BOOT_LOAD;
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800558 _ramstart = (unsigned long)_end;
Bryan Wu1394f032007-05-06 14:50:22 -0700559
Yi Li856783b2008-02-09 02:26:01 +0800560 if (DMA_UNCACHED_REGION > (_ramend - _ramstart)) {
561 console_init();
Mike Frysingerd8804ad2009-04-29 06:26:46 +0000562 panic("DMA region exceeds memory limit: %lu.",
Yi Li856783b2008-02-09 02:26:01 +0800563 _ramend - _ramstart);
Mike Frysinger1aafd902007-07-25 11:19:14 +0800564 }
Robin Getz2f812c02009-06-26 12:52:46 +0000565 max_mem = memory_end = _ramend - DMA_UNCACHED_REGION;
566
567#if (defined(CONFIG_BFIN_EXTMEM_ICACHEABLE) && ANOMALY_05000263)
568 /* Due to a Hardware Anomaly we need to limit the size of usable
569 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
570 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
571 */
572# if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
573 if (max_mem >= 56 * 1024 * 1024)
574 max_mem = 56 * 1024 * 1024;
575# else
576 if (max_mem >= 60 * 1024 * 1024)
577 max_mem = 60 * 1024 * 1024;
578# endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
579#endif /* ANOMALY_05000263 */
580
Bryan Wu1394f032007-05-06 14:50:22 -0700581
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800582#ifdef CONFIG_MPU
Graf Yang8f658732008-11-18 17:48:22 +0800583 /* Round up to multiple of 4MB */
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800584 memory_start = (_ramstart + 0x3fffff) & ~0x3fffff;
585#else
Bryan Wu1394f032007-05-06 14:50:22 -0700586 memory_start = PAGE_ALIGN(_ramstart);
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800587#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700588
589#if defined(CONFIG_MTD_UCLINUX)
590 /* generic memory mapped MTD driver */
591 memory_mtd_end = memory_end;
592
593 mtd_phys = _ramstart;
594 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 8)));
595
596# if defined(CONFIG_EXT2_FS) || defined(CONFIG_EXT3_FS)
Al Viro39429c52012-03-23 16:36:45 -0400597 n = ext2_image_size((void *)(mtd_phys + 0x400));
598 if (n)
599 mtd_size = PAGE_ALIGN(n * 1024);
Bryan Wu1394f032007-05-06 14:50:22 -0700600# endif
601
602# if defined(CONFIG_CRAMFS)
603 if (*((unsigned long *)(mtd_phys)) == CRAMFS_MAGIC)
604 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x4)));
605# endif
606
607# if defined(CONFIG_ROMFS_FS)
608 if (((unsigned long *)mtd_phys)[0] == ROMSB_WORD0
Robin Getz2f812c02009-06-26 12:52:46 +0000609 && ((unsigned long *)mtd_phys)[1] == ROMSB_WORD1) {
Bryan Wu1394f032007-05-06 14:50:22 -0700610 mtd_size =
611 PAGE_ALIGN(be32_to_cpu(((unsigned long *)mtd_phys)[2]));
Robin Getz2f812c02009-06-26 12:52:46 +0000612
613 /* ROM_FS is XIP, so if we found it, we need to limit memory */
614 if (memory_end > max_mem) {
615 pr_info("Limiting kernel memory to %liMB due to anomaly 05000263\n", max_mem >> 20);
616 memory_end = max_mem;
617 }
618 }
Bryan Wu1394f032007-05-06 14:50:22 -0700619# endif /* CONFIG_ROMFS_FS */
620
Robin Getzdc437b12009-06-26 12:23:51 +0000621 /* Since the default MTD_UCLINUX has no magic number, we just blindly
622 * read 8 past the end of the kernel's image, and look at it.
623 * When no image is attached, mtd_size is set to a random number
624 * Do some basic sanity checks before operating on things
625 */
626 if (mtd_size == 0 || memory_end <= mtd_size) {
627 pr_emerg("Could not find valid ram mtd attached.\n");
628 } else {
629 memory_end -= mtd_size;
Bryan Wu1394f032007-05-06 14:50:22 -0700630
Robin Getzdc437b12009-06-26 12:23:51 +0000631 /* Relocate MTD image to the top of memory after the uncached memory area */
632 uclinux_ram_map.phys = memory_mtd_start = memory_end;
633 uclinux_ram_map.size = mtd_size;
634 pr_info("Found mtd parition at 0x%p, (len=0x%lx), moving to 0x%p\n",
635 _end, mtd_size, (void *)memory_mtd_start);
636 dma_memcpy((void *)uclinux_ram_map.phys, _end, uclinux_ram_map.size);
Bryan Wu1394f032007-05-06 14:50:22 -0700637 }
Bryan Wu1394f032007-05-06 14:50:22 -0700638#endif /* CONFIG_MTD_UCLINUX */
639
Robin Getz2f812c02009-06-26 12:52:46 +0000640 /* We need lo limit memory, since everything could have a text section
641 * of userspace in it, and expose anomaly 05000263. If the anomaly
642 * doesn't exist, or we don't need to - then dont.
Bryan Wu1394f032007-05-06 14:50:22 -0700643 */
Robin Getz2f812c02009-06-26 12:52:46 +0000644 if (memory_end > max_mem) {
645 pr_info("Limiting kernel memory to %liMB due to anomaly 05000263\n", max_mem >> 20);
646 memory_end = max_mem;
647 }
Bryan Wu1394f032007-05-06 14:50:22 -0700648
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800649#ifdef CONFIG_MPU
Barry Songe18e7dd2009-12-07 10:05:58 +0000650#if defined(CONFIG_ROMFS_ON_MTD) && defined(CONFIG_MTD_ROM)
651 page_mask_nelts = (((_ramend + ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE -
652 ASYNC_BANK0_BASE) >> PAGE_SHIFT) + 31) / 32;
653#else
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800654 page_mask_nelts = ((_ramend >> PAGE_SHIFT) + 31) / 32;
Barry Songe18e7dd2009-12-07 10:05:58 +0000655#endif
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800656 page_mask_order = get_order(3 * page_mask_nelts * sizeof(long));
657#endif
658
Bryan Wu1394f032007-05-06 14:50:22 -0700659 init_mm.start_code = (unsigned long)_stext;
660 init_mm.end_code = (unsigned long)_etext;
661 init_mm.end_data = (unsigned long)_edata;
662 init_mm.brk = (unsigned long)0;
663
Yi Li856783b2008-02-09 02:26:01 +0800664 printk(KERN_INFO "Board Memory: %ldMB\n", physical_mem_end >> 20);
665 printk(KERN_INFO "Kernel Managed Memory: %ldMB\n", _ramend >> 20);
666
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800667 printk(KERN_INFO "Memory map:\n"
Joe Perchesad361c92009-07-06 13:05:40 -0700668 " fixedcode = 0x%p-0x%p\n"
669 " text = 0x%p-0x%p\n"
670 " rodata = 0x%p-0x%p\n"
671 " bss = 0x%p-0x%p\n"
672 " data = 0x%p-0x%p\n"
673 " stack = 0x%p-0x%p\n"
674 " init = 0x%p-0x%p\n"
675 " available = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800676#ifdef CONFIG_MTD_UCLINUX
Joe Perchesad361c92009-07-06 13:05:40 -0700677 " rootfs = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800678#endif
679#if DMA_UNCACHED_REGION > 0
Joe Perchesad361c92009-07-06 13:05:40 -0700680 " DMA Zone = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800681#endif
Mike Frysinger8929ecf82008-02-22 16:35:20 +0800682 , (void *)FIXED_CODE_START, (void *)FIXED_CODE_END,
683 _stext, _etext,
Yi Li856783b2008-02-09 02:26:01 +0800684 __start_rodata, __end_rodata,
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800685 __bss_start, __bss_stop,
Yi Li856783b2008-02-09 02:26:01 +0800686 _sdata, _edata,
687 (void *)&init_thread_union,
Barry Song6feda3a2010-01-05 07:05:50 +0000688 (void *)((int)(&init_thread_union) + THREAD_SIZE),
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800689 __init_begin, __init_end,
690 (void *)_ramstart, (void *)memory_end
Yi Li856783b2008-02-09 02:26:01 +0800691#ifdef CONFIG_MTD_UCLINUX
692 , (void *)memory_mtd_start, (void *)(memory_mtd_start + mtd_size)
693#endif
694#if DMA_UNCACHED_REGION > 0
695 , (void *)(_ramend - DMA_UNCACHED_REGION), (void *)(_ramend)
696#endif
697 );
698}
699
Yi Li2e8d7962008-03-26 07:08:12 +0800700/*
701 * Find the lowest, highest page frame number we have available
702 */
703void __init find_min_max_pfn(void)
704{
705 int i;
706
707 max_pfn = 0;
708 min_low_pfn = memory_end;
709
710 for (i = 0; i < bfin_memmap.nr_map; i++) {
711 unsigned long start, end;
712 /* RAM? */
713 if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM)
714 continue;
715 start = PFN_UP(bfin_memmap.map[i].addr);
716 end = PFN_DOWN(bfin_memmap.map[i].addr +
717 bfin_memmap.map[i].size);
718 if (start >= end)
719 continue;
720 if (end > max_pfn)
721 max_pfn = end;
722 if (start < min_low_pfn)
723 min_low_pfn = start;
724 }
725}
726
Yi Li856783b2008-02-09 02:26:01 +0800727static __init void setup_bootmem_allocator(void)
728{
729 int bootmap_size;
730 int i;
Yi Li2e8d7962008-03-26 07:08:12 +0800731 unsigned long start_pfn, end_pfn;
Yi Li856783b2008-02-09 02:26:01 +0800732 unsigned long curr_pfn, last_pfn, size;
733
734 /* mark memory between memory_start and memory_end usable */
735 add_memory_region(memory_start,
736 memory_end - memory_start, BFIN_MEMMAP_RAM);
737 /* sanity check for overlap */
738 sanitize_memmap(bfin_memmap.map, &bfin_memmap.nr_map);
739 print_memory_map("boot memmap");
740
Michael Hennerich05d17df2009-08-21 03:49:19 +0000741 /* initialize globals in linux/bootmem.h */
Yi Li2e8d7962008-03-26 07:08:12 +0800742 find_min_max_pfn();
743 /* pfn of the last usable page frame */
744 if (max_pfn > memory_end >> PAGE_SHIFT)
745 max_pfn = memory_end >> PAGE_SHIFT;
746 /* pfn of last page frame directly mapped by kernel */
747 max_low_pfn = max_pfn;
748 /* pfn of the first usable page frame after kernel image*/
749 if (min_low_pfn < memory_start >> PAGE_SHIFT)
750 min_low_pfn = memory_start >> PAGE_SHIFT;
751
752 start_pfn = PAGE_OFFSET >> PAGE_SHIFT;
753 end_pfn = memory_end >> PAGE_SHIFT;
Yi Li856783b2008-02-09 02:26:01 +0800754
755 /*
Graf Yang8f658732008-11-18 17:48:22 +0800756 * give all the memory to the bootmap allocator, tell it to put the
Yi Li856783b2008-02-09 02:26:01 +0800757 * boot mem_map at the start of memory.
758 */
759 bootmap_size = init_bootmem_node(NODE_DATA(0),
760 memory_start >> PAGE_SHIFT, /* map goes here */
Yi Li2e8d7962008-03-26 07:08:12 +0800761 start_pfn, end_pfn);
Yi Li856783b2008-02-09 02:26:01 +0800762
763 /* register the memmap regions with the bootmem allocator */
764 for (i = 0; i < bfin_memmap.nr_map; i++) {
765 /*
766 * Reserve usable memory
767 */
768 if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM)
769 continue;
770 /*
771 * We are rounding up the start address of usable memory:
772 */
773 curr_pfn = PFN_UP(bfin_memmap.map[i].addr);
Yi Li2e8d7962008-03-26 07:08:12 +0800774 if (curr_pfn >= end_pfn)
Yi Li856783b2008-02-09 02:26:01 +0800775 continue;
776 /*
777 * ... and at the end of the usable range downwards:
778 */
779 last_pfn = PFN_DOWN(bfin_memmap.map[i].addr +
780 bfin_memmap.map[i].size);
781
Yi Li2e8d7962008-03-26 07:08:12 +0800782 if (last_pfn > end_pfn)
783 last_pfn = end_pfn;
Yi Li856783b2008-02-09 02:26:01 +0800784
785 /*
786 * .. finally, did all the rounding and playing
787 * around just make the area go away?
788 */
789 if (last_pfn <= curr_pfn)
790 continue;
791
792 size = last_pfn - curr_pfn;
793 free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(size));
794 }
795
796 /* reserve memory before memory_start, including bootmap */
797 reserve_bootmem(PAGE_OFFSET,
798 memory_start + bootmap_size + PAGE_SIZE - 1 - PAGE_OFFSET,
799 BOOTMEM_DEFAULT);
800}
801
Mike Frysingera086ee22008-04-25 02:04:05 +0800802#define EBSZ_TO_MEG(ebsz) \
803({ \
804 int meg = 0; \
805 switch (ebsz & 0xf) { \
806 case 0x1: meg = 16; break; \
807 case 0x3: meg = 32; break; \
808 case 0x5: meg = 64; break; \
809 case 0x7: meg = 128; break; \
810 case 0x9: meg = 256; break; \
811 case 0xb: meg = 512; break; \
812 } \
813 meg; \
814})
815static inline int __init get_mem_size(void)
816{
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800817#if defined(EBIU_SDBCTL)
818# if defined(BF561_FAMILY)
Mike Frysingera086ee22008-04-25 02:04:05 +0800819 int ret = 0;
820 u32 sdbctl = bfin_read_EBIU_SDBCTL();
821 ret += EBSZ_TO_MEG(sdbctl >> 0);
822 ret += EBSZ_TO_MEG(sdbctl >> 8);
823 ret += EBSZ_TO_MEG(sdbctl >> 16);
824 ret += EBSZ_TO_MEG(sdbctl >> 24);
825 return ret;
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800826# else
Mike Frysingera086ee22008-04-25 02:04:05 +0800827 return EBSZ_TO_MEG(bfin_read_EBIU_SDBCTL());
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800828# endif
829#elif defined(EBIU_DDRCTL1)
Michael Hennerich1e780422008-04-25 04:31:23 +0800830 u32 ddrctl = bfin_read_EBIU_DDRCTL1();
831 int ret = 0;
832 switch (ddrctl & 0xc0000) {
Steven Miao4dbeccd2011-11-30 11:42:49 +0800833 case DEVSZ_64:
834 ret = 64 / 8;
835 break;
836 case DEVSZ_128:
837 ret = 128 / 8;
838 break;
839 case DEVSZ_256:
840 ret = 256 / 8;
841 break;
842 case DEVSZ_512:
843 ret = 512 / 8;
844 break;
Mike Frysingera086ee22008-04-25 02:04:05 +0800845 }
Michael Hennerich1e780422008-04-25 04:31:23 +0800846 switch (ddrctl & 0x30000) {
847 case DEVWD_4: ret *= 2;
848 case DEVWD_8: ret *= 2;
849 case DEVWD_16: break;
850 }
Mike Frysingerb1b154e2008-07-26 18:02:05 +0800851 if ((ddrctl & 0xc000) == 0x4000)
852 ret *= 2;
Michael Hennerich1e780422008-04-25 04:31:23 +0800853 return ret;
Mike Frysingera086ee22008-04-25 02:04:05 +0800854#endif
855 BUG();
856}
857
Sonic Zhangb635f192009-09-23 08:06:25 +0000858__attribute__((weak))
859void __init native_machine_early_platform_add_devices(void)
860{
861}
862
Yi Li856783b2008-02-09 02:26:01 +0800863void __init setup_arch(char **cmdline_p)
864{
Mike Frysinger00b5c502011-04-18 18:37:38 -0400865 u32 mmr;
Mike Frysinger9f8e8952008-04-24 06:20:11 +0800866 unsigned long sclk, cclk;
Yi Li856783b2008-02-09 02:26:01 +0800867
Sonic Zhangb635f192009-09-23 08:06:25 +0000868 native_machine_early_platform_add_devices();
869
Robin Getz3f871fe2009-07-06 14:53:19 +0000870 enable_shadow_console();
871
Robin Getzbd854c02009-06-18 22:53:43 +0000872 /* Check to make sure we are running on the right processor */
873 if (unlikely(CPUID != bfin_cpuid()))
874 printk(KERN_ERR "ERROR: Not running on ADSP-%s: unknown CPUID 0x%04x Rev 0.%d\n",
875 CPU, bfin_cpuid(), bfin_revid());
876
Yi Li856783b2008-02-09 02:26:01 +0800877#ifdef CONFIG_DUMMY_CONSOLE
878 conswitchp = &dummy_con;
879#endif
880
881#if defined(CONFIG_CMDLINE_BOOL)
882 strncpy(&command_line[0], CONFIG_CMDLINE, sizeof(command_line));
883 command_line[sizeof(command_line) - 1] = 0;
884#endif
885
886 /* Keep a copy of command line */
887 *cmdline_p = &command_line[0];
888 memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
889 boot_command_line[COMMAND_LINE_SIZE - 1] = '\0';
890
Yi Li856783b2008-02-09 02:26:01 +0800891 memset(&bfin_memmap, 0, sizeof(bfin_memmap));
892
Robin Getzbd854c02009-06-18 22:53:43 +0000893 /* If the user does not specify things on the command line, use
894 * what the bootloader set things up as
895 */
896 physical_mem_end = 0;
Yi Li856783b2008-02-09 02:26:01 +0800897 parse_cmdline_early(&command_line[0]);
898
Robin Getzbd854c02009-06-18 22:53:43 +0000899 if (_ramend == 0)
900 _ramend = get_mem_size() * 1024 * 1024;
901
Yi Li856783b2008-02-09 02:26:01 +0800902 if (physical_mem_end == 0)
903 physical_mem_end = _ramend;
904
905 memory_setup();
906
Mike Frysinger7e64aca2008-08-06 17:17:10 +0800907 /* Initialize Async memory banks */
908 bfin_write_EBIU_AMBCTL0(AMBCTL0VAL);
909 bfin_write_EBIU_AMBCTL1(AMBCTL1VAL);
910 bfin_write_EBIU_AMGCTL(AMGCTLVAL);
911#ifdef CONFIG_EBIU_MBSCTLVAL
912 bfin_write_EBIU_MBSCTL(CONFIG_EBIU_MBSCTLVAL);
913 bfin_write_EBIU_MODE(CONFIG_EBIU_MODEVAL);
914 bfin_write_EBIU_FCTL(CONFIG_EBIU_FCTLVAL);
915#endif
Michael Hennerich7a4a2072010-07-05 13:39:16 +0000916#ifdef CONFIG_BFIN_HYSTERESIS_CONTROL
Mike Frysinger3086fd22011-04-14 03:48:56 -0400917 bfin_write_PORTF_HYSTERESIS(HYST_PORTF_0_15);
918 bfin_write_PORTG_HYSTERESIS(HYST_PORTG_0_15);
919 bfin_write_PORTH_HYSTERESIS(HYST_PORTH_0_15);
920 bfin_write_MISCPORT_HYSTERESIS((bfin_read_MISCPORT_HYSTERESIS() &
Michael Hennerich7a4a2072010-07-05 13:39:16 +0000921 ~HYST_NONEGPIO_MASK) | HYST_NONEGPIO);
922#endif
Mike Frysinger7e64aca2008-08-06 17:17:10 +0800923
Yi Li856783b2008-02-09 02:26:01 +0800924 cclk = get_cclk();
925 sclk = get_sclk();
926
Sonic Zhang7f3aee32009-05-07 10:04:19 +0000927 if ((ANOMALY_05000273 || ANOMALY_05000274) && (cclk >> 1) < sclk)
928 panic("ANOMALY 05000273 or 05000274: CCLK must be >= 2*SCLK");
Yi Li856783b2008-02-09 02:26:01 +0800929
930#ifdef BF561_FAMILY
931 if (ANOMALY_05000266) {
932 bfin_read_IMDMA_D0_IRQ_STATUS();
933 bfin_read_IMDMA_D1_IRQ_STATUS();
934 }
935#endif
Yi Li856783b2008-02-09 02:26:01 +0800936
Mike Frysinger00b5c502011-04-18 18:37:38 -0400937 mmr = bfin_read_TBUFCTL();
938 printk(KERN_INFO "Hardware Trace %s and %sabled\n",
939 (mmr & 0x1) ? "active" : "off",
940 (mmr & 0x2) ? "en" : "dis");
941
942 mmr = bfin_read_SYSCR();
943 printk(KERN_INFO "Boot Mode: %i\n", mmr & 0xF);
Robin Getz76e8fe42009-02-04 16:49:45 +0800944
Mike Frysingered1fb602009-02-04 16:49:45 +0800945 /* Newer parts mirror SWRST bits in SYSCR */
946#if defined(CONFIG_BF53x) || defined(CONFIG_BF561) || \
947 defined(CONFIG_BF538) || defined(CONFIG_BF539)
Robin Getz7728ec32007-10-29 18:12:15 +0800948 _bfin_swrst = bfin_read_SWRST();
Mike Frysingered1fb602009-02-04 16:49:45 +0800949#else
Sonic Zhang0de4adf2009-06-15 07:39:19 +0000950 /* Clear boot mode field */
Mike Frysinger00b5c502011-04-18 18:37:38 -0400951 _bfin_swrst = mmr & ~0xf;
Mike Frysingered1fb602009-02-04 16:49:45 +0800952#endif
Robin Getz7728ec32007-10-29 18:12:15 +0800953
Robin Getz0c7a6b22008-10-08 16:27:12 +0800954#ifdef CONFIG_DEBUG_DOUBLEFAULT_PRINT
955 bfin_write_SWRST(_bfin_swrst & ~DOUBLE_FAULT);
956#endif
957#ifdef CONFIG_DEBUG_DOUBLEFAULT_RESET
958 bfin_write_SWRST(_bfin_swrst | DOUBLE_FAULT);
959#endif
Robin Getz2d200982008-07-26 19:41:40 +0800960
Graf Yang8f658732008-11-18 17:48:22 +0800961#ifdef CONFIG_SMP
962 if (_bfin_swrst & SWRST_DBL_FAULT_A) {
963#else
Robin Getz0c7a6b22008-10-08 16:27:12 +0800964 if (_bfin_swrst & RESET_DOUBLE) {
Graf Yang8f658732008-11-18 17:48:22 +0800965#endif
Robin Getz0c7a6b22008-10-08 16:27:12 +0800966 printk(KERN_EMERG "Recovering from DOUBLE FAULT event\n");
967#ifdef CONFIG_DEBUG_DOUBLEFAULT
968 /* We assume the crashing kernel, and the current symbol table match */
Mike Frysingerfb1d9be2011-05-29 23:12:51 -0400969 printk(KERN_EMERG " While handling exception (EXCAUSE = %#x) at %pF\n",
970 initial_pda.seqstat_doublefault & SEQSTAT_EXCAUSE,
971 initial_pda.retx_doublefault);
972 printk(KERN_NOTICE " DCPLB_FAULT_ADDR: %pF\n",
973 initial_pda.dcplb_doublefault_addr);
974 printk(KERN_NOTICE " ICPLB_FAULT_ADDR: %pF\n",
975 initial_pda.icplb_doublefault_addr);
Robin Getz0c7a6b22008-10-08 16:27:12 +0800976#endif
977 printk(KERN_NOTICE " The instruction at %pF caused a double exception\n",
Mike Frysingerfb1d9be2011-05-29 23:12:51 -0400978 initial_pda.retx);
Robin Getz0c7a6b22008-10-08 16:27:12 +0800979 } else if (_bfin_swrst & RESET_WDOG)
Robin Getz7728ec32007-10-29 18:12:15 +0800980 printk(KERN_INFO "Recovering from Watchdog event\n");
981 else if (_bfin_swrst & RESET_SOFTWARE)
982 printk(KERN_NOTICE "Reset caused by Software reset\n");
983
Mike Frysingerbe1577e2010-05-10 05:21:50 +0000984 printk(KERN_INFO "Blackfin support (C) 2004-2010 Analog Devices, Inc.\n");
Jie Zhangde3025f2007-06-25 18:04:12 +0800985 if (bfin_compiled_revid() == 0xffff)
Robin Getz7a1a8cc2009-10-20 17:22:18 +0000986 printk(KERN_INFO "Compiled for ADSP-%s Rev any, running on 0.%d\n", CPU, bfin_revid());
Jie Zhangde3025f2007-06-25 18:04:12 +0800987 else if (bfin_compiled_revid() == -1)
988 printk(KERN_INFO "Compiled for ADSP-%s Rev none\n", CPU);
989 else
990 printk(KERN_INFO "Compiled for ADSP-%s Rev 0.%d\n", CPU, bfin_compiled_revid());
Robin Getze482cad2008-10-10 18:21:45 +0800991
Robin Getzbd854c02009-06-18 22:53:43 +0000992 if (likely(CPUID == bfin_cpuid())) {
Robin Getze482cad2008-10-10 18:21:45 +0800993 if (bfin_revid() != bfin_compiled_revid()) {
994 if (bfin_compiled_revid() == -1)
995 printk(KERN_ERR "Warning: Compiled for Rev none, but running on Rev %d\n",
996 bfin_revid());
Robin Getz7419a322009-01-07 23:14:39 +0800997 else if (bfin_compiled_revid() != 0xffff) {
Robin Getze482cad2008-10-10 18:21:45 +0800998 printk(KERN_ERR "Warning: Compiled for Rev %d, but running on Rev %d\n",
999 bfin_compiled_revid(), bfin_revid());
Robin Getz7419a322009-01-07 23:14:39 +08001000 if (bfin_compiled_revid() > bfin_revid())
Mike Frysingerd8804ad2009-04-29 06:26:46 +00001001 panic("Error: you are missing anomaly workarounds for this rev");
Robin Getz7419a322009-01-07 23:14:39 +08001002 }
Robin Getze482cad2008-10-10 18:21:45 +08001003 }
Mike Frysingerda986b92008-10-28 13:58:15 +08001004 if (bfin_revid() < CONFIG_BF_REV_MIN || bfin_revid() > CONFIG_BF_REV_MAX)
Robin Getze482cad2008-10-10 18:21:45 +08001005 printk(KERN_ERR "Warning: Unsupported Chip Revision ADSP-%s Rev 0.%d detected\n",
1006 CPU, bfin_revid());
Jie Zhangde3025f2007-06-25 18:04:12 +08001007 }
Mike Frysinger0c0497c2008-10-09 17:32:28 +08001008
Bryan Wu1394f032007-05-06 14:50:22 -07001009 printk(KERN_INFO "Blackfin Linux support by http://blackfin.uclinux.org/\n");
1010
Mike Frysingerb5c0e2e2007-09-12 17:31:59 +08001011 printk(KERN_INFO "Processor Speed: %lu MHz core clock and %lu MHz System Clock\n",
Graf Yang8f658732008-11-18 17:48:22 +08001012 cclk / 1000000, sclk / 1000000);
Bryan Wu1394f032007-05-06 14:50:22 -07001013
Yi Li856783b2008-02-09 02:26:01 +08001014 setup_bootmem_allocator();
Bryan Wu1394f032007-05-06 14:50:22 -07001015
Bryan Wu1394f032007-05-06 14:50:22 -07001016 paging_init();
1017
Bernd Schmidt7adfb582007-06-21 11:34:16 +08001018 /* Copy atomic sequences to their fixed location, and sanity check that
1019 these locations are the ones that we advertise to userspace. */
1020 memcpy((void *)FIXED_CODE_START, &fixed_code_start,
1021 FIXED_CODE_END - FIXED_CODE_START);
1022 BUG_ON((char *)&sigreturn_stub - (char *)&fixed_code_start
1023 != SIGRETURN_STUB - FIXED_CODE_START);
1024 BUG_ON((char *)&atomic_xchg32 - (char *)&fixed_code_start
1025 != ATOMIC_XCHG32 - FIXED_CODE_START);
1026 BUG_ON((char *)&atomic_cas32 - (char *)&fixed_code_start
1027 != ATOMIC_CAS32 - FIXED_CODE_START);
1028 BUG_ON((char *)&atomic_add32 - (char *)&fixed_code_start
1029 != ATOMIC_ADD32 - FIXED_CODE_START);
1030 BUG_ON((char *)&atomic_sub32 - (char *)&fixed_code_start
1031 != ATOMIC_SUB32 - FIXED_CODE_START);
1032 BUG_ON((char *)&atomic_ior32 - (char *)&fixed_code_start
1033 != ATOMIC_IOR32 - FIXED_CODE_START);
1034 BUG_ON((char *)&atomic_and32 - (char *)&fixed_code_start
1035 != ATOMIC_AND32 - FIXED_CODE_START);
1036 BUG_ON((char *)&atomic_xor32 - (char *)&fixed_code_start
1037 != ATOMIC_XOR32 - FIXED_CODE_START);
Robin Getz9f336a52007-10-29 18:23:28 +08001038 BUG_ON((char *)&safe_user_instruction - (char *)&fixed_code_start
1039 != SAFE_USER_INSTRUCTION - FIXED_CODE_START);
Bernd Schmidt29440a22007-07-12 16:25:29 +08001040
Graf Yang8f658732008-11-18 17:48:22 +08001041#ifdef CONFIG_SMP
1042 platform_init_cpus();
1043#endif
Bernd Schmidt8be80ed2007-07-25 14:44:49 +08001044 init_exception_vectors();
Graf Yang8f658732008-11-18 17:48:22 +08001045 bfin_cache_init(); /* Initialize caches for the boot CPU */
Bryan Wu1394f032007-05-06 14:50:22 -07001046}
1047
Bryan Wu1394f032007-05-06 14:50:22 -07001048static int __init topology_init(void)
1049{
Graf Yang8f658732008-11-18 17:48:22 +08001050 unsigned int cpu;
Michael Hennerich6cda2e92008-02-02 15:10:51 +08001051
1052 for_each_possible_cpu(cpu) {
Graf Yang8f658732008-11-18 17:48:22 +08001053 register_cpu(&per_cpu(cpu_data, cpu).cpu, cpu);
Michael Hennerich6cda2e92008-02-02 15:10:51 +08001054 }
1055
Bryan Wu1394f032007-05-06 14:50:22 -07001056 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001057}
1058
1059subsys_initcall(topology_init);
1060
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001061/* Get the input clock frequency */
1062static u_long cached_clkin_hz = CONFIG_CLKIN_HZ;
1063static u_long get_clkin_hz(void)
1064{
1065 return cached_clkin_hz;
1066}
1067static int __init early_init_clkin_hz(char *buf)
1068{
1069 cached_clkin_hz = simple_strtoul(buf, NULL, 0);
Mike Frysinger508808c2009-01-07 23:14:38 +08001070#ifdef BFIN_KERNEL_CLOCK
1071 if (cached_clkin_hz != CONFIG_CLKIN_HZ)
1072 panic("cannot change clkin_hz when reprogramming clocks");
1073#endif
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001074 return 1;
1075}
1076early_param("clkin_hz=", early_init_clkin_hz);
1077
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001078/* Get the voltage input multiplier */
Mike Frysinger52a07812007-06-11 15:31:30 +08001079static u_long get_vco(void)
Bryan Wu1394f032007-05-06 14:50:22 -07001080{
Mike Frysingere32f55d2009-01-07 23:14:39 +08001081 static u_long cached_vco;
1082 u_long msel, pll_ctl;
Bryan Wu1394f032007-05-06 14:50:22 -07001083
Mike Frysingere32f55d2009-01-07 23:14:39 +08001084 /* The assumption here is that VCO never changes at runtime.
1085 * If, someday, we support that, then we'll have to change this.
1086 */
1087 if (cached_vco)
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001088 return cached_vco;
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001089
Mike Frysingere32f55d2009-01-07 23:14:39 +08001090 pll_ctl = bfin_read_PLL_CTL();
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001091 msel = (pll_ctl >> 9) & 0x3F;
Bryan Wu1394f032007-05-06 14:50:22 -07001092 if (0 == msel)
1093 msel = 64;
1094
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001095 cached_vco = get_clkin_hz();
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001096 cached_vco >>= (1 & pll_ctl); /* DF bit */
1097 cached_vco *= msel;
1098 return cached_vco;
Bryan Wu1394f032007-05-06 14:50:22 -07001099}
1100
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001101/* Get the Core clock */
Bryan Wu1394f032007-05-06 14:50:22 -07001102u_long get_cclk(void)
1103{
Mike Frysingere32f55d2009-01-07 23:14:39 +08001104 static u_long cached_cclk_pll_div, cached_cclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001105 u_long csel, ssel;
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001106
Bryan Wu1394f032007-05-06 14:50:22 -07001107 if (bfin_read_PLL_STAT() & 0x1)
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001108 return get_clkin_hz();
Bryan Wu1394f032007-05-06 14:50:22 -07001109
1110 ssel = bfin_read_PLL_DIV();
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001111 if (ssel == cached_cclk_pll_div)
1112 return cached_cclk;
1113 else
1114 cached_cclk_pll_div = ssel;
1115
Bryan Wu1394f032007-05-06 14:50:22 -07001116 csel = ((ssel >> 4) & 0x03);
1117 ssel &= 0xf;
1118 if (ssel && ssel < (1 << csel)) /* SCLK > CCLK */
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001119 cached_cclk = get_vco() / ssel;
1120 else
1121 cached_cclk = get_vco() >> csel;
1122 return cached_cclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001123}
Bryan Wu1394f032007-05-06 14:50:22 -07001124EXPORT_SYMBOL(get_cclk);
1125
1126/* Get the System clock */
1127u_long get_sclk(void)
1128{
Mike Frysingere32f55d2009-01-07 23:14:39 +08001129 static u_long cached_sclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001130 u_long ssel;
1131
Mike Frysingere32f55d2009-01-07 23:14:39 +08001132 /* The assumption here is that SCLK never changes at runtime.
1133 * If, someday, we support that, then we'll have to change this.
1134 */
1135 if (cached_sclk)
1136 return cached_sclk;
1137
Bryan Wu1394f032007-05-06 14:50:22 -07001138 if (bfin_read_PLL_STAT() & 0x1)
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001139 return get_clkin_hz();
Bryan Wu1394f032007-05-06 14:50:22 -07001140
Mike Frysingere32f55d2009-01-07 23:14:39 +08001141 ssel = bfin_read_PLL_DIV() & 0xf;
Bryan Wu1394f032007-05-06 14:50:22 -07001142 if (0 == ssel) {
1143 printk(KERN_WARNING "Invalid System Clock\n");
1144 ssel = 1;
1145 }
1146
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001147 cached_sclk = get_vco() / ssel;
1148 return cached_sclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001149}
Bryan Wu1394f032007-05-06 14:50:22 -07001150EXPORT_SYMBOL(get_sclk);
1151
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001152unsigned long sclk_to_usecs(unsigned long sclk)
1153{
Mike Frysinger1754a5d2007-11-23 11:28:11 +08001154 u64 tmp = USEC_PER_SEC * (u64)sclk;
1155 do_div(tmp, get_sclk());
1156 return tmp;
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001157}
1158EXPORT_SYMBOL(sclk_to_usecs);
1159
1160unsigned long usecs_to_sclk(unsigned long usecs)
1161{
Mike Frysinger1754a5d2007-11-23 11:28:11 +08001162 u64 tmp = get_sclk() * (u64)usecs;
1163 do_div(tmp, USEC_PER_SEC);
1164 return tmp;
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001165}
1166EXPORT_SYMBOL(usecs_to_sclk);
1167
Bryan Wu1394f032007-05-06 14:50:22 -07001168/*
1169 * Get CPU information for use by the procfs.
1170 */
1171static int show_cpuinfo(struct seq_file *m, void *v)
1172{
Mike Frysinger066954a2007-10-21 22:36:06 +08001173 char *cpu, *mmu, *fpu, *vendor, *cache;
Bryan Wu1394f032007-05-06 14:50:22 -07001174 uint32_t revid;
Mike Frysinger275123e2009-01-07 23:14:39 +08001175 int cpu_num = *(unsigned int *)v;
Michael Hennericha5f07172008-11-18 18:04:31 +08001176 u_long sclk, cclk;
Robin Getz9de3a0b2008-07-26 19:39:19 +08001177 u_int icache_size = BFIN_ICACHESIZE / 1024, dcache_size = 0, dsup_banks = 0;
Mike Frysinger275123e2009-01-07 23:14:39 +08001178 struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu_num);
Bryan Wu1394f032007-05-06 14:50:22 -07001179
1180 cpu = CPU;
1181 mmu = "none";
1182 fpu = "none";
1183 revid = bfin_revid();
Bryan Wu1394f032007-05-06 14:50:22 -07001184
Bryan Wu1394f032007-05-06 14:50:22 -07001185 sclk = get_sclk();
Michael Hennericha5f07172008-11-18 18:04:31 +08001186 cclk = get_cclk();
Bryan Wu1394f032007-05-06 14:50:22 -07001187
Robin Getz73b0c0b2007-10-21 17:03:31 +08001188 switch (bfin_read_CHIPID() & CHIPID_MANUFACTURE) {
Mike Frysinger066954a2007-10-21 22:36:06 +08001189 case 0xca:
1190 vendor = "Analog Devices";
Robin Getz73b0c0b2007-10-21 17:03:31 +08001191 break;
1192 default:
Mike Frysinger066954a2007-10-21 22:36:06 +08001193 vendor = "unknown";
1194 break;
Robin Getz73b0c0b2007-10-21 17:03:31 +08001195 }
Bryan Wu1394f032007-05-06 14:50:22 -07001196
Mike Frysinger275123e2009-01-07 23:14:39 +08001197 seq_printf(m, "processor\t: %d\n" "vendor_id\t: %s\n", cpu_num, vendor);
Robin Getze482cad2008-10-10 18:21:45 +08001198
1199 if (CPUID == bfin_cpuid())
1200 seq_printf(m, "cpu family\t: 0x%04x\n", CPUID);
1201 else
1202 seq_printf(m, "cpu family\t: Compiled for:0x%04x, running on:0x%04x\n",
1203 CPUID, bfin_cpuid());
1204
1205 seq_printf(m, "model name\t: ADSP-%s %lu(MHz CCLK) %lu(MHz SCLK) (%s)\n"
Robin Getz2466ac62009-06-08 17:52:27 +00001206 "stepping\t: %d ",
Michael Hennericha5f07172008-11-18 18:04:31 +08001207 cpu, cclk/1000000, sclk/1000000,
Robin Getz253bcf42008-04-24 05:57:13 +08001208#ifdef CONFIG_MPU
1209 "mpu on",
1210#else
1211 "mpu off",
1212#endif
Robin Getz73b0c0b2007-10-21 17:03:31 +08001213 revid);
Bryan Wu1394f032007-05-06 14:50:22 -07001214
Robin Getz2466ac62009-06-08 17:52:27 +00001215 if (bfin_revid() != bfin_compiled_revid()) {
1216 if (bfin_compiled_revid() == -1)
1217 seq_printf(m, "(Compiled for Rev none)");
1218 else if (bfin_compiled_revid() == 0xffff)
1219 seq_printf(m, "(Compiled for Rev any)");
1220 else
1221 seq_printf(m, "(Compiled for Rev %d)", bfin_compiled_revid());
1222 }
1223
1224 seq_printf(m, "\ncpu MHz\t\t: %lu.%03lu/%lu.%03lu\n",
Michael Hennericha5f07172008-11-18 18:04:31 +08001225 cclk/1000000, cclk%1000000,
Robin Getz73b0c0b2007-10-21 17:03:31 +08001226 sclk/1000000, sclk%1000000);
1227 seq_printf(m, "bogomips\t: %lu.%02lu\n"
1228 "Calibration\t: %lu loops\n",
Michael Hennerichc70c7542009-07-09 09:58:52 +00001229 (loops_per_jiffy * HZ) / 500000,
1230 ((loops_per_jiffy * HZ) / 5000) % 100,
1231 (loops_per_jiffy * HZ));
Robin Getz73b0c0b2007-10-21 17:03:31 +08001232
1233 /* Check Cache configutation */
Graf Yang8f658732008-11-18 17:48:22 +08001234 switch (cpudata->dmemctl & (1 << DMC0_P | 1 << DMC1_P)) {
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001235 case ACACHE_BSRAM:
Mike Frysinger066954a2007-10-21 22:36:06 +08001236 cache = "dbank-A/B\t: cache/sram";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001237 dcache_size = 16;
1238 dsup_banks = 1;
1239 break;
1240 case ACACHE_BCACHE:
Mike Frysinger066954a2007-10-21 22:36:06 +08001241 cache = "dbank-A/B\t: cache/cache";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001242 dcache_size = 32;
1243 dsup_banks = 2;
1244 break;
1245 case ASRAM_BSRAM:
Mike Frysinger066954a2007-10-21 22:36:06 +08001246 cache = "dbank-A/B\t: sram/sram";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001247 dcache_size = 0;
1248 dsup_banks = 0;
1249 break;
1250 default:
Mike Frysinger066954a2007-10-21 22:36:06 +08001251 cache = "unknown";
Robin Getz73b0c0b2007-10-21 17:03:31 +08001252 dcache_size = 0;
1253 dsup_banks = 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001254 break;
1255 }
1256
Robin Getz73b0c0b2007-10-21 17:03:31 +08001257 /* Is it turned on? */
Graf Yang8f658732008-11-18 17:48:22 +08001258 if ((cpudata->dmemctl & (ENDCPLB | DMC_ENABLE)) != (ENDCPLB | DMC_ENABLE))
Robin Getz73b0c0b2007-10-21 17:03:31 +08001259 dcache_size = 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001260
Graf Yang8f658732008-11-18 17:48:22 +08001261 if ((cpudata->imemctl & (IMC | ENICPLB)) != (IMC | ENICPLB))
Robin Getz9de3a0b2008-07-26 19:39:19 +08001262 icache_size = 0;
1263
Robin Getz73b0c0b2007-10-21 17:03:31 +08001264 seq_printf(m, "cache size\t: %d KB(L1 icache) "
Jie Zhang41ba6532009-06-16 09:48:33 +00001265 "%d KB(L1 dcache) %d KB(L2 cache)\n",
1266 icache_size, dcache_size, 0);
Robin Getz73b0c0b2007-10-21 17:03:31 +08001267 seq_printf(m, "%s\n", cache);
Jie Zhang41ba6532009-06-16 09:48:33 +00001268 seq_printf(m, "external memory\t: "
1269#if defined(CONFIG_BFIN_EXTMEM_ICACHEABLE)
1270 "cacheable"
1271#else
1272 "uncacheable"
1273#endif
1274 " in instruction cache\n");
1275 seq_printf(m, "external memory\t: "
1276#if defined(CONFIG_BFIN_EXTMEM_WRITEBACK)
1277 "cacheable (write-back)"
1278#elif defined(CONFIG_BFIN_EXTMEM_WRITETHROUGH)
1279 "cacheable (write-through)"
1280#else
1281 "uncacheable"
1282#endif
1283 " in data cache\n");
Robin Getz73b0c0b2007-10-21 17:03:31 +08001284
Robin Getz9de3a0b2008-07-26 19:39:19 +08001285 if (icache_size)
1286 seq_printf(m, "icache setup\t: %d Sub-banks/%d Ways, %d Lines/Way\n",
1287 BFIN_ISUBBANKS, BFIN_IWAYS, BFIN_ILINES);
1288 else
1289 seq_printf(m, "icache setup\t: off\n");
1290
Bryan Wu1394f032007-05-06 14:50:22 -07001291 seq_printf(m,
Robin Getz73b0c0b2007-10-21 17:03:31 +08001292 "dcache setup\t: %d Super-banks/%d Sub-banks/%d Ways, %d Lines/Way\n",
Robin Getz3bebca22007-10-10 23:55:26 +08001293 dsup_banks, BFIN_DSUBBANKS, BFIN_DWAYS,
1294 BFIN_DLINES);
Graf Yang8f658732008-11-18 17:48:22 +08001295#ifdef __ARCH_SYNC_CORE_DCACHE
Mike Frysinger8d011f72011-04-13 17:13:23 -04001296 seq_printf(m, "dcache flushes\t: %lu\n", dcache_invld_count[cpu_num]);
Graf Yang8f658732008-11-18 17:48:22 +08001297#endif
Sonic Zhang47e9ded2009-06-10 08:57:08 +00001298#ifdef __ARCH_SYNC_CORE_ICACHE
Mike Frysinger8d011f72011-04-13 17:13:23 -04001299 seq_printf(m, "icache flushes\t: %lu\n", icache_invld_count[cpu_num]);
Sonic Zhang47e9ded2009-06-10 08:57:08 +00001300#endif
Mike Frysinger275123e2009-01-07 23:14:39 +08001301
Mike Frysinger8d011f72011-04-13 17:13:23 -04001302 seq_printf(m, "\n");
1303
Mike Frysinger275123e2009-01-07 23:14:39 +08001304 if (cpu_num != num_possible_cpus() - 1)
Graf Yang8f658732008-11-18 17:48:22 +08001305 return 0;
1306
Jie Zhang41ba6532009-06-16 09:48:33 +00001307 if (L2_LENGTH) {
Mike Frysinger275123e2009-01-07 23:14:39 +08001308 seq_printf(m, "L2 SRAM\t\t: %dKB\n", L2_LENGTH/0x400);
Jie Zhang41ba6532009-06-16 09:48:33 +00001309 seq_printf(m, "L2 SRAM\t\t: "
1310#if defined(CONFIG_BFIN_L2_ICACHEABLE)
1311 "cacheable"
1312#else
1313 "uncacheable"
1314#endif
1315 " in instruction cache\n");
1316 seq_printf(m, "L2 SRAM\t\t: "
1317#if defined(CONFIG_BFIN_L2_WRITEBACK)
1318 "cacheable (write-back)"
1319#elif defined(CONFIG_BFIN_L2_WRITETHROUGH)
1320 "cacheable (write-through)"
1321#else
1322 "uncacheable"
1323#endif
1324 " in data cache\n");
1325 }
Mike Frysinger066954a2007-10-21 22:36:06 +08001326 seq_printf(m, "board name\t: %s\n", bfin_board_name);
Mike Frysinger8d011f72011-04-13 17:13:23 -04001327 seq_printf(m, "board memory\t: %ld kB (0x%08lx -> 0x%08lx)\n",
1328 physical_mem_end >> 10, 0ul, physical_mem_end);
1329 seq_printf(m, "kernel memory\t: %d kB (0x%08lx -> 0x%08lx)\n",
Barry Songd86bfb12010-01-07 04:11:17 +00001330 ((int)memory_end - (int)_rambase) >> 10,
Mike Frysinger8d011f72011-04-13 17:13:23 -04001331 _rambase, memory_end);
Robin Getz73b0c0b2007-10-21 17:03:31 +08001332
Bryan Wu1394f032007-05-06 14:50:22 -07001333 return 0;
1334}
1335
1336static void *c_start(struct seq_file *m, loff_t *pos)
1337{
Graf Yang55f2fea2008-10-09 15:37:47 +08001338 if (*pos == 0)
KOSAKI Motohirofecedc82011-04-26 10:57:27 +09001339 *pos = cpumask_first(cpu_online_mask);
Graf Yang55f2fea2008-10-09 15:37:47 +08001340 if (*pos >= num_online_cpus())
1341 return NULL;
1342
1343 return pos;
Bryan Wu1394f032007-05-06 14:50:22 -07001344}
1345
1346static void *c_next(struct seq_file *m, void *v, loff_t *pos)
1347{
KOSAKI Motohirofecedc82011-04-26 10:57:27 +09001348 *pos = cpumask_next(*pos, cpu_online_mask);
Graf Yang55f2fea2008-10-09 15:37:47 +08001349
Bryan Wu1394f032007-05-06 14:50:22 -07001350 return c_start(m, pos);
1351}
1352
1353static void c_stop(struct seq_file *m, void *v)
1354{
1355}
1356
Jan Engelhardt03a44822008-02-08 04:21:19 -08001357const struct seq_operations cpuinfo_op = {
Bryan Wu1394f032007-05-06 14:50:22 -07001358 .start = c_start,
1359 .next = c_next,
1360 .stop = c_stop,
1361 .show = show_cpuinfo,
1362};
1363
Mike Frysinger5e10b4a2007-06-11 16:44:09 +08001364void __init cmdline_init(const char *r0)
Bryan Wu1394f032007-05-06 14:50:22 -07001365{
Robin Getz837ec2d2009-07-07 20:17:09 +00001366 early_shadow_stamp();
Bryan Wu1394f032007-05-06 14:50:22 -07001367 if (r0)
Mike Frysinger52a07812007-06-11 15:31:30 +08001368 strncpy(command_line, r0, COMMAND_LINE_SIZE);
Bryan Wu1394f032007-05-06 14:50:22 -07001369}