]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/blackfin/kernel/setup.c
Blackfin arch: fixup board init function name
[mirror_ubuntu-artful-kernel.git] / arch / blackfin / kernel / setup.c
CommitLineData
1394f032 1/*
550d5538 2 * arch/blackfin/kernel/setup.c
1394f032 3 *
550d5538 4 * Copyright 2004-2006 Analog Devices Inc.
1394f032 5 *
550d5538 6 * Enter bugs at http://blackfin.uclinux.org/
1394f032 7 *
550d5538 8 * Licensed under the GPL-2 or later.
1394f032
BW
9 */
10
11#include <linux/delay.h>
12#include <linux/console.h>
13#include <linux/bootmem.h>
14#include <linux/seq_file.h>
15#include <linux/cpu.h>
259fea42 16#include <linux/mm.h>
1394f032 17#include <linux/module.h>
1394f032 18#include <linux/tty.h>
856783b3 19#include <linux/pfn.h>
1394f032
BW
20
21#include <linux/ext2_fs.h>
22#include <linux/cramfs_fs.h>
23#include <linux/romfs_fs.h>
24
3bebca2d 25#include <asm/cplb.h>
1394f032
BW
26#include <asm/cacheflush.h>
27#include <asm/blackfin.h>
28#include <asm/cplbinit.h>
1754a5d9 29#include <asm/div64.h>
8f65873e 30#include <asm/cpu.h>
7adfb58f 31#include <asm/fixed_code.h>
ce3afa1c 32#include <asm/early_printk.h>
1394f032 33
a9c59c27 34u16 _bfin_swrst;
d45118b1 35EXPORT_SYMBOL(_bfin_swrst);
a9c59c27 36
1394f032 37unsigned long memory_start, memory_end, physical_mem_end;
3132b586 38unsigned long _rambase, _ramstart, _ramend;
1394f032
BW
39unsigned long reserved_mem_dcache_on;
40unsigned long reserved_mem_icache_on;
41EXPORT_SYMBOL(memory_start);
42EXPORT_SYMBOL(memory_end);
43EXPORT_SYMBOL(physical_mem_end);
44EXPORT_SYMBOL(_ramend);
58c35bd3 45EXPORT_SYMBOL(reserved_mem_dcache_on);
1394f032
BW
46
47#ifdef CONFIG_MTD_UCLINUX
48unsigned long memory_mtd_end, memory_mtd_start, mtd_size;
49unsigned long _ebss;
50EXPORT_SYMBOL(memory_mtd_end);
51EXPORT_SYMBOL(memory_mtd_start);
52EXPORT_SYMBOL(mtd_size);
53#endif
54
5e10b4a6 55char __initdata command_line[COMMAND_LINE_SIZE];
0c7a6b21
RG
56void __initdata *init_retx, *init_saved_retx, *init_saved_seqstat,
57 *init_saved_icplb_fault_addr, *init_saved_dcplb_fault_addr;
1394f032 58
856783b3
YL
59/* boot memmap, for parsing "memmap=" */
60#define BFIN_MEMMAP_MAX 128 /* number of entries in bfin_memmap */
61#define BFIN_MEMMAP_RAM 1
62#define BFIN_MEMMAP_RESERVED 2
63struct bfin_memmap {
64 int nr_map;
65 struct bfin_memmap_entry {
66 unsigned long long addr; /* start of memory segment */
67 unsigned long long size;
68 unsigned long type;
69 } map[BFIN_MEMMAP_MAX];
70} bfin_memmap __initdata;
71
72/* for memmap sanitization */
73struct change_member {
74 struct bfin_memmap_entry *pentry; /* pointer to original entry */
75 unsigned long long addr; /* address for this change point */
76};
77static struct change_member change_point_list[2*BFIN_MEMMAP_MAX] __initdata;
78static struct change_member *change_point[2*BFIN_MEMMAP_MAX] __initdata;
79static struct bfin_memmap_entry *overlap_list[BFIN_MEMMAP_MAX] __initdata;
80static struct bfin_memmap_entry new_map[BFIN_MEMMAP_MAX] __initdata;
81
8f65873e
GY
82DEFINE_PER_CPU(struct blackfin_cpudata, cpu_data);
83
7f1e2f98
MF
84static int early_init_clkin_hz(char *buf);
85
3bebca2d 86#if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
8f65873e
GY
87void __init generate_cplb_tables(void)
88{
89 unsigned int cpu;
90
dbdf20db 91 generate_cplb_tables_all();
8f65873e
GY
92 /* Generate per-CPU I&D CPLB tables */
93 for (cpu = 0; cpu < num_possible_cpus(); ++cpu)
94 generate_cplb_tables_cpu(cpu);
95}
1394f032
BW
96#endif
97
8f65873e
GY
98void __cpuinit bfin_setup_caches(unsigned int cpu)
99{
3bebca2d 100#ifdef CONFIG_BFIN_ICACHE
8f65873e 101 bfin_icache_init(icplb_tbl[cpu]);
1394f032
BW
102#endif
103
3bebca2d 104#ifdef CONFIG_BFIN_DCACHE
8f65873e 105 bfin_dcache_init(dcplb_tbl[cpu]);
8f65873e
GY
106#endif
107
108 /*
109 * In cache coherence emulation mode, we need to have the
110 * D-cache enabled before running any atomic operation which
111 * might invove cache invalidation (i.e. spinlock, rwlock).
112 * So printk's are deferred until then.
113 */
114#ifdef CONFIG_BFIN_ICACHE
115 printk(KERN_INFO "Instruction Cache Enabled for CPU%u\n", cpu);
116#endif
117#ifdef CONFIG_BFIN_DCACHE
118 printk(KERN_INFO "Data Cache Enabled for CPU%u"
3bebca2d 119# if defined CONFIG_BFIN_WB
1394f032 120 " (write-back)"
3bebca2d 121# elif defined CONFIG_BFIN_WT
1394f032
BW
122 " (write-through)"
123# endif
8f65873e 124 "\n", cpu);
1394f032
BW
125#endif
126}
127
8f65873e
GY
128void __cpuinit bfin_setup_cpudata(unsigned int cpu)
129{
130 struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu);
131
132 cpudata->idle = current;
133 cpudata->loops_per_jiffy = loops_per_jiffy;
8f65873e
GY
134 cpudata->imemctl = bfin_read_IMEM_CONTROL();
135 cpudata->dmemctl = bfin_read_DMEM_CONTROL();
136}
137
138void __init bfin_cache_init(void)
139{
140#if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
141 generate_cplb_tables();
142#endif
143 bfin_setup_caches(0);
144}
145
5b04f271 146void __init bfin_relocate_l1_mem(void)
1394f032
BW
147{
148 unsigned long l1_code_length;
149 unsigned long l1_data_a_length;
150 unsigned long l1_data_b_length;
262c3825 151 unsigned long l2_length;
1394f032 152
dd3dd384
MF
153 blackfin_dma_early_init();
154
1394f032
BW
155 l1_code_length = _etext_l1 - _stext_l1;
156 if (l1_code_length > L1_CODE_LENGTH)
b85b82d9 157 panic("L1 Instruction SRAM Overflow\n");
1394f032
BW
158 /* cannot complain as printk is not available as yet.
159 * But we can continue booting and complain later!
160 */
161
162 /* Copy _stext_l1 to _etext_l1 to L1 instruction SRAM */
163 dma_memcpy(_stext_l1, _l1_lma_start, l1_code_length);
164
3b1f26a5 165 l1_data_a_length = _sbss_l1 - _sdata_l1;
1394f032 166 if (l1_data_a_length > L1_DATA_A_LENGTH)
b85b82d9 167 panic("L1 Data SRAM Bank A Overflow\n");
1394f032 168
3b1f26a5 169 /* Copy _sdata_l1 to _sbss_l1 to L1 data bank A SRAM */
1394f032
BW
170 dma_memcpy(_sdata_l1, _l1_lma_start + l1_code_length, l1_data_a_length);
171
3b1f26a5 172 l1_data_b_length = _sbss_b_l1 - _sdata_b_l1;
1394f032 173 if (l1_data_b_length > L1_DATA_B_LENGTH)
b85b82d9 174 panic("L1 Data SRAM Bank B Overflow\n");
1394f032 175
3b1f26a5 176 /* Copy _sdata_b_l1 to _sbss_b_l1 to L1 data bank B SRAM */
1394f032
BW
177 dma_memcpy(_sdata_b_l1, _l1_lma_start + l1_code_length +
178 l1_data_a_length, l1_data_b_length);
262c3825 179
07aa7be5 180 if (L2_LENGTH != 0) {
3b1f26a5 181 l2_length = _sbss_l2 - _stext_l2;
07aa7be5
MF
182 if (l2_length > L2_LENGTH)
183 panic("L2 SRAM Overflow\n");
262c3825 184
07aa7be5
MF
185 /* Copy _stext_l2 to _edata_l2 to L2 SRAM */
186 dma_memcpy(_stext_l2, _l2_lma_start, l2_length);
187 }
1394f032
BW
188}
189
856783b3
YL
190/* add_memory_region to memmap */
191static void __init add_memory_region(unsigned long long start,
192 unsigned long long size, int type)
193{
194 int i;
195
196 i = bfin_memmap.nr_map;
197
198 if (i == BFIN_MEMMAP_MAX) {
199 printk(KERN_ERR "Ooops! Too many entries in the memory map!\n");
200 return;
201 }
202
203 bfin_memmap.map[i].addr = start;
204 bfin_memmap.map[i].size = size;
205 bfin_memmap.map[i].type = type;
206 bfin_memmap.nr_map++;
207}
208
209/*
210 * Sanitize the boot memmap, removing overlaps.
211 */
212static int __init sanitize_memmap(struct bfin_memmap_entry *map, int *pnr_map)
213{
214 struct change_member *change_tmp;
215 unsigned long current_type, last_type;
216 unsigned long long last_addr;
217 int chgidx, still_changing;
218 int overlap_entries;
219 int new_entry;
220 int old_nr, new_nr, chg_nr;
221 int i;
222
223 /*
224 Visually we're performing the following (1,2,3,4 = memory types)
225
226 Sample memory map (w/overlaps):
227 ____22__________________
228 ______________________4_
229 ____1111________________
230 _44_____________________
231 11111111________________
232 ____________________33__
233 ___________44___________
234 __________33333_________
235 ______________22________
236 ___________________2222_
237 _________111111111______
238 _____________________11_
239 _________________4______
240
241 Sanitized equivalent (no overlap):
242 1_______________________
243 _44_____________________
244 ___1____________________
245 ____22__________________
246 ______11________________
247 _________1______________
248 __________3_____________
249 ___________44___________
250 _____________33_________
251 _______________2________
252 ________________1_______
253 _________________4______
254 ___________________2____
255 ____________________33__
256 ______________________4_
257 */
258 /* if there's only one memory region, don't bother */
259 if (*pnr_map < 2)
260 return -1;
261
262 old_nr = *pnr_map;
263
264 /* bail out if we find any unreasonable addresses in memmap */
265 for (i = 0; i < old_nr; i++)
266 if (map[i].addr + map[i].size < map[i].addr)
267 return -1;
268
269 /* create pointers for initial change-point information (for sorting) */
270 for (i = 0; i < 2*old_nr; i++)
271 change_point[i] = &change_point_list[i];
272
273 /* record all known change-points (starting and ending addresses),
274 omitting those that are for empty memory regions */
275 chgidx = 0;
8f65873e 276 for (i = 0; i < old_nr; i++) {
856783b3
YL
277 if (map[i].size != 0) {
278 change_point[chgidx]->addr = map[i].addr;
279 change_point[chgidx++]->pentry = &map[i];
280 change_point[chgidx]->addr = map[i].addr + map[i].size;
281 change_point[chgidx++]->pentry = &map[i];
282 }
283 }
8f65873e 284 chg_nr = chgidx; /* true number of change-points */
856783b3
YL
285
286 /* sort change-point list by memory addresses (low -> high) */
287 still_changing = 1;
8f65873e 288 while (still_changing) {
856783b3 289 still_changing = 0;
8f65873e 290 for (i = 1; i < chg_nr; i++) {
856783b3
YL
291 /* if <current_addr> > <last_addr>, swap */
292 /* or, if current=<start_addr> & last=<end_addr>, swap */
293 if ((change_point[i]->addr < change_point[i-1]->addr) ||
294 ((change_point[i]->addr == change_point[i-1]->addr) &&
295 (change_point[i]->addr == change_point[i]->pentry->addr) &&
296 (change_point[i-1]->addr != change_point[i-1]->pentry->addr))
297 ) {
298 change_tmp = change_point[i];
299 change_point[i] = change_point[i-1];
300 change_point[i-1] = change_tmp;
301 still_changing = 1;
302 }
303 }
304 }
305
306 /* create a new memmap, removing overlaps */
8f65873e
GY
307 overlap_entries = 0; /* number of entries in the overlap table */
308 new_entry = 0; /* index for creating new memmap entries */
309 last_type = 0; /* start with undefined memory type */
310 last_addr = 0; /* start with 0 as last starting address */
856783b3
YL
311 /* loop through change-points, determining affect on the new memmap */
312 for (chgidx = 0; chgidx < chg_nr; chgidx++) {
313 /* keep track of all overlapping memmap entries */
314 if (change_point[chgidx]->addr == change_point[chgidx]->pentry->addr) {
315 /* add map entry to overlap list (> 1 entry implies an overlap) */
316 overlap_list[overlap_entries++] = change_point[chgidx]->pentry;
317 } else {
318 /* remove entry from list (order independent, so swap with last) */
319 for (i = 0; i < overlap_entries; i++) {
320 if (overlap_list[i] == change_point[chgidx]->pentry)
321 overlap_list[i] = overlap_list[overlap_entries-1];
322 }
323 overlap_entries--;
324 }
325 /* if there are overlapping entries, decide which "type" to use */
326 /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */
327 current_type = 0;
328 for (i = 0; i < overlap_entries; i++)
329 if (overlap_list[i]->type > current_type)
330 current_type = overlap_list[i]->type;
331 /* continue building up new memmap based on this information */
8f65873e 332 if (current_type != last_type) {
856783b3
YL
333 if (last_type != 0) {
334 new_map[new_entry].size =
335 change_point[chgidx]->addr - last_addr;
336 /* move forward only if the new size was non-zero */
337 if (new_map[new_entry].size != 0)
338 if (++new_entry >= BFIN_MEMMAP_MAX)
8f65873e 339 break; /* no more space left for new entries */
856783b3
YL
340 }
341 if (current_type != 0) {
342 new_map[new_entry].addr = change_point[chgidx]->addr;
343 new_map[new_entry].type = current_type;
344 last_addr = change_point[chgidx]->addr;
345 }
346 last_type = current_type;
347 }
348 }
8f65873e 349 new_nr = new_entry; /* retain count for new entries */
856783b3 350
8f65873e 351 /* copy new mapping into original location */
856783b3
YL
352 memcpy(map, new_map, new_nr*sizeof(struct bfin_memmap_entry));
353 *pnr_map = new_nr;
354
355 return 0;
356}
357
358static void __init print_memory_map(char *who)
359{
360 int i;
361
362 for (i = 0; i < bfin_memmap.nr_map; i++) {
363 printk(KERN_DEBUG " %s: %016Lx - %016Lx ", who,
364 bfin_memmap.map[i].addr,
365 bfin_memmap.map[i].addr + bfin_memmap.map[i].size);
366 switch (bfin_memmap.map[i].type) {
367 case BFIN_MEMMAP_RAM:
368 printk("(usable)\n");
369 break;
370 case BFIN_MEMMAP_RESERVED:
371 printk("(reserved)\n");
372 break;
373 default: printk("type %lu\n", bfin_memmap.map[i].type);
374 break;
375 }
376 }
377}
378
379static __init int parse_memmap(char *arg)
380{
381 unsigned long long start_at, mem_size;
382
383 if (!arg)
384 return -EINVAL;
385
386 mem_size = memparse(arg, &arg);
387 if (*arg == '@') {
388 start_at = memparse(arg+1, &arg);
389 add_memory_region(start_at, mem_size, BFIN_MEMMAP_RAM);
390 } else if (*arg == '$') {
391 start_at = memparse(arg+1, &arg);
392 add_memory_region(start_at, mem_size, BFIN_MEMMAP_RESERVED);
393 }
394
395 return 0;
396}
397
1394f032
BW
398/*
399 * Initial parsing of the command line. Currently, we support:
400 * - Controlling the linux memory size: mem=xxx[KMG]
401 * - Controlling the physical memory size: max_mem=xxx[KMG][$][#]
402 * $ -> reserved memory is dcacheable
403 * # -> reserved memory is icacheable
856783b3
YL
404 * - "memmap=XXX[KkmM][@][$]XXX[KkmM]" defines a memory region
405 * @ from <start> to <start>+<mem>, type RAM
406 * $ from <start> to <start>+<mem>, type RESERVED
1394f032
BW
407 */
408static __init void parse_cmdline_early(char *cmdline_p)
409{
410 char c = ' ', *to = cmdline_p;
411 unsigned int memsize;
412 for (;;) {
413 if (c == ' ') {
1394f032
BW
414 if (!memcmp(to, "mem=", 4)) {
415 to += 4;
416 memsize = memparse(to, &to);
417 if (memsize)
418 _ramend = memsize;
419
420 } else if (!memcmp(to, "max_mem=", 8)) {
421 to += 8;
422 memsize = memparse(to, &to);
423 if (memsize) {
424 physical_mem_end = memsize;
425 if (*to != ' ') {
426 if (*to == '$'
427 || *(to + 1) == '$')
8f65873e 428 reserved_mem_dcache_on = 1;
1394f032
BW
429 if (*to == '#'
430 || *(to + 1) == '#')
8f65873e 431 reserved_mem_icache_on = 1;
1394f032
BW
432 }
433 }
7f1e2f98
MF
434 } else if (!memcmp(to, "clkin_hz=", 9)) {
435 to += 9;
436 early_init_clkin_hz(to);
ce3afa1c
RG
437 } else if (!memcmp(to, "earlyprintk=", 12)) {
438 to += 12;
439 setup_early_printk(to);
856783b3
YL
440 } else if (!memcmp(to, "memmap=", 7)) {
441 to += 7;
442 parse_memmap(to);
1394f032 443 }
1394f032
BW
444 }
445 c = *(to++);
446 if (!c)
447 break;
448 }
449}
450
856783b3
YL
451/*
452 * Setup memory defaults from user config.
453 * The physical memory layout looks like:
454 *
455 * [_rambase, _ramstart]: kernel image
456 * [memory_start, memory_end]: dynamic memory managed by kernel
457 * [memory_end, _ramend]: reserved memory
3094c981 458 * [memory_mtd_start(memory_end),
856783b3
YL
459 * memory_mtd_start + mtd_size]: rootfs (if any)
460 * [_ramend - DMA_UNCACHED_REGION,
461 * _ramend]: uncached DMA region
462 * [_ramend, physical_mem_end]: memory not managed by kernel
856783b3 463 */
8f65873e 464static __init void memory_setup(void)
1394f032 465{
c0eab3b7
MF
466#ifdef CONFIG_MTD_UCLINUX
467 unsigned long mtd_phys = 0;
468#endif
469
856783b3 470 _rambase = (unsigned long)_stext;
b7627acc 471 _ramstart = (unsigned long)_end;
1394f032 472
856783b3
YL
473 if (DMA_UNCACHED_REGION > (_ramend - _ramstart)) {
474 console_init();
475 panic("DMA region exceeds memory limit: %lu.\n",
476 _ramend - _ramstart);
1aafd909 477 }
1394f032
BW
478 memory_end = _ramend - DMA_UNCACHED_REGION;
479
b97b8a99 480#ifdef CONFIG_MPU
8f65873e 481 /* Round up to multiple of 4MB */
b97b8a99
BS
482 memory_start = (_ramstart + 0x3fffff) & ~0x3fffff;
483#else
1394f032 484 memory_start = PAGE_ALIGN(_ramstart);
b97b8a99 485#endif
1394f032
BW
486
487#if defined(CONFIG_MTD_UCLINUX)
488 /* generic memory mapped MTD driver */
489 memory_mtd_end = memory_end;
490
491 mtd_phys = _ramstart;
492 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 8)));
493
494# if defined(CONFIG_EXT2_FS) || defined(CONFIG_EXT3_FS)
495 if (*((unsigned short *)(mtd_phys + 0x438)) == EXT2_SUPER_MAGIC)
496 mtd_size =
497 PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x404)) << 10);
498# endif
499
500# if defined(CONFIG_CRAMFS)
501 if (*((unsigned long *)(mtd_phys)) == CRAMFS_MAGIC)
502 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x4)));
503# endif
504
505# if defined(CONFIG_ROMFS_FS)
506 if (((unsigned long *)mtd_phys)[0] == ROMSB_WORD0
507 && ((unsigned long *)mtd_phys)[1] == ROMSB_WORD1)
508 mtd_size =
509 PAGE_ALIGN(be32_to_cpu(((unsigned long *)mtd_phys)[2]));
3bebca2d 510# if (defined(CONFIG_BFIN_ICACHE) && ANOMALY_05000263)
1394f032
BW
511 /* Due to a Hardware Anomaly we need to limit the size of usable
512 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
513 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
514 */
515# if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
516 if (memory_end >= 56 * 1024 * 1024)
517 memory_end = 56 * 1024 * 1024;
518# else
519 if (memory_end >= 60 * 1024 * 1024)
520 memory_end = 60 * 1024 * 1024;
521# endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
522# endif /* ANOMALY_05000263 */
523# endif /* CONFIG_ROMFS_FS */
524
525 memory_end -= mtd_size;
526
527 if (mtd_size == 0) {
528 console_init();
529 panic("Don't boot kernel without rootfs attached.\n");
530 }
531
532 /* Relocate MTD image to the top of memory after the uncached memory area */
b7627acc 533 dma_memcpy((char *)memory_end, _end, mtd_size);
1394f032
BW
534
535 memory_mtd_start = memory_end;
536 _ebss = memory_mtd_start; /* define _ebss for compatible */
537#endif /* CONFIG_MTD_UCLINUX */
538
3bebca2d 539#if (defined(CONFIG_BFIN_ICACHE) && ANOMALY_05000263)
1394f032
BW
540 /* Due to a Hardware Anomaly we need to limit the size of usable
541 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
542 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
543 */
544#if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
545 if (memory_end >= 56 * 1024 * 1024)
546 memory_end = 56 * 1024 * 1024;
547#else
548 if (memory_end >= 60 * 1024 * 1024)
549 memory_end = 60 * 1024 * 1024;
550#endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
551 printk(KERN_NOTICE "Warning: limiting memory to %liMB due to hardware anomaly 05000263\n", memory_end >> 20);
552#endif /* ANOMALY_05000263 */
553
b97b8a99
BS
554#ifdef CONFIG_MPU
555 page_mask_nelts = ((_ramend >> PAGE_SHIFT) + 31) / 32;
556 page_mask_order = get_order(3 * page_mask_nelts * sizeof(long));
557#endif
558
1394f032 559#if !defined(CONFIG_MTD_UCLINUX)
856783b3
YL
560 /*In case there is no valid CPLB behind memory_end make sure we don't get to close*/
561 memory_end -= SIZE_4K;
1394f032 562#endif
856783b3 563
1394f032
BW
564 init_mm.start_code = (unsigned long)_stext;
565 init_mm.end_code = (unsigned long)_etext;
566 init_mm.end_data = (unsigned long)_edata;
567 init_mm.brk = (unsigned long)0;
568
856783b3
YL
569 printk(KERN_INFO "Board Memory: %ldMB\n", physical_mem_end >> 20);
570 printk(KERN_INFO "Kernel Managed Memory: %ldMB\n", _ramend >> 20);
571
b7627acc 572 printk(KERN_INFO "Memory map:\n"
8929ecf8 573 KERN_INFO " fixedcode = 0x%p-0x%p\n"
856783b3
YL
574 KERN_INFO " text = 0x%p-0x%p\n"
575 KERN_INFO " rodata = 0x%p-0x%p\n"
b7627acc 576 KERN_INFO " bss = 0x%p-0x%p\n"
856783b3
YL
577 KERN_INFO " data = 0x%p-0x%p\n"
578 KERN_INFO " stack = 0x%p-0x%p\n"
579 KERN_INFO " init = 0x%p-0x%p\n"
856783b3
YL
580 KERN_INFO " available = 0x%p-0x%p\n"
581#ifdef CONFIG_MTD_UCLINUX
582 KERN_INFO " rootfs = 0x%p-0x%p\n"
583#endif
584#if DMA_UNCACHED_REGION > 0
585 KERN_INFO " DMA Zone = 0x%p-0x%p\n"
586#endif
8929ecf8
MF
587 , (void *)FIXED_CODE_START, (void *)FIXED_CODE_END,
588 _stext, _etext,
856783b3 589 __start_rodata, __end_rodata,
b7627acc 590 __bss_start, __bss_stop,
856783b3
YL
591 _sdata, _edata,
592 (void *)&init_thread_union,
593 (void *)((int)(&init_thread_union) + 0x2000),
b7627acc
MF
594 __init_begin, __init_end,
595 (void *)_ramstart, (void *)memory_end
856783b3
YL
596#ifdef CONFIG_MTD_UCLINUX
597 , (void *)memory_mtd_start, (void *)(memory_mtd_start + mtd_size)
598#endif
599#if DMA_UNCACHED_REGION > 0
600 , (void *)(_ramend - DMA_UNCACHED_REGION), (void *)(_ramend)
601#endif
602 );
603}
604
2e8d7965
YL
605/*
606 * Find the lowest, highest page frame number we have available
607 */
608void __init find_min_max_pfn(void)
609{
610 int i;
611
612 max_pfn = 0;
613 min_low_pfn = memory_end;
614
615 for (i = 0; i < bfin_memmap.nr_map; i++) {
616 unsigned long start, end;
617 /* RAM? */
618 if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM)
619 continue;
620 start = PFN_UP(bfin_memmap.map[i].addr);
621 end = PFN_DOWN(bfin_memmap.map[i].addr +
622 bfin_memmap.map[i].size);
623 if (start >= end)
624 continue;
625 if (end > max_pfn)
626 max_pfn = end;
627 if (start < min_low_pfn)
628 min_low_pfn = start;
629 }
630}
631
856783b3
YL
632static __init void setup_bootmem_allocator(void)
633{
634 int bootmap_size;
635 int i;
2e8d7965 636 unsigned long start_pfn, end_pfn;
856783b3
YL
637 unsigned long curr_pfn, last_pfn, size;
638
639 /* mark memory between memory_start and memory_end usable */
640 add_memory_region(memory_start,
641 memory_end - memory_start, BFIN_MEMMAP_RAM);
642 /* sanity check for overlap */
643 sanitize_memmap(bfin_memmap.map, &bfin_memmap.nr_map);
644 print_memory_map("boot memmap");
645
2e8d7965
YL
646 /* intialize globals in linux/bootmem.h */
647 find_min_max_pfn();
648 /* pfn of the last usable page frame */
649 if (max_pfn > memory_end >> PAGE_SHIFT)
650 max_pfn = memory_end >> PAGE_SHIFT;
651 /* pfn of last page frame directly mapped by kernel */
652 max_low_pfn = max_pfn;
653 /* pfn of the first usable page frame after kernel image*/
654 if (min_low_pfn < memory_start >> PAGE_SHIFT)
655 min_low_pfn = memory_start >> PAGE_SHIFT;
656
657 start_pfn = PAGE_OFFSET >> PAGE_SHIFT;
658 end_pfn = memory_end >> PAGE_SHIFT;
856783b3
YL
659
660 /*
8f65873e 661 * give all the memory to the bootmap allocator, tell it to put the
856783b3
YL
662 * boot mem_map at the start of memory.
663 */
664 bootmap_size = init_bootmem_node(NODE_DATA(0),
665 memory_start >> PAGE_SHIFT, /* map goes here */
2e8d7965 666 start_pfn, end_pfn);
856783b3
YL
667
668 /* register the memmap regions with the bootmem allocator */
669 for (i = 0; i < bfin_memmap.nr_map; i++) {
670 /*
671 * Reserve usable memory
672 */
673 if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM)
674 continue;
675 /*
676 * We are rounding up the start address of usable memory:
677 */
678 curr_pfn = PFN_UP(bfin_memmap.map[i].addr);
2e8d7965 679 if (curr_pfn >= end_pfn)
856783b3
YL
680 continue;
681 /*
682 * ... and at the end of the usable range downwards:
683 */
684 last_pfn = PFN_DOWN(bfin_memmap.map[i].addr +
685 bfin_memmap.map[i].size);
686
2e8d7965
YL
687 if (last_pfn > end_pfn)
688 last_pfn = end_pfn;
856783b3
YL
689
690 /*
691 * .. finally, did all the rounding and playing
692 * around just make the area go away?
693 */
694 if (last_pfn <= curr_pfn)
695 continue;
696
697 size = last_pfn - curr_pfn;
698 free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(size));
699 }
700
701 /* reserve memory before memory_start, including bootmap */
702 reserve_bootmem(PAGE_OFFSET,
703 memory_start + bootmap_size + PAGE_SIZE - 1 - PAGE_OFFSET,
704 BOOTMEM_DEFAULT);
705}
706
a086ee22
MF
707#define EBSZ_TO_MEG(ebsz) \
708({ \
709 int meg = 0; \
710 switch (ebsz & 0xf) { \
711 case 0x1: meg = 16; break; \
712 case 0x3: meg = 32; break; \
713 case 0x5: meg = 64; break; \
714 case 0x7: meg = 128; break; \
715 case 0x9: meg = 256; break; \
716 case 0xb: meg = 512; break; \
717 } \
718 meg; \
719})
720static inline int __init get_mem_size(void)
721{
99d95bbd
MH
722#if defined(EBIU_SDBCTL)
723# if defined(BF561_FAMILY)
a086ee22
MF
724 int ret = 0;
725 u32 sdbctl = bfin_read_EBIU_SDBCTL();
726 ret += EBSZ_TO_MEG(sdbctl >> 0);
727 ret += EBSZ_TO_MEG(sdbctl >> 8);
728 ret += EBSZ_TO_MEG(sdbctl >> 16);
729 ret += EBSZ_TO_MEG(sdbctl >> 24);
730 return ret;
99d95bbd 731# else
a086ee22 732 return EBSZ_TO_MEG(bfin_read_EBIU_SDBCTL());
99d95bbd
MH
733# endif
734#elif defined(EBIU_DDRCTL1)
1e78042c
MH
735 u32 ddrctl = bfin_read_EBIU_DDRCTL1();
736 int ret = 0;
737 switch (ddrctl & 0xc0000) {
738 case DEVSZ_64: ret = 64 / 8;
739 case DEVSZ_128: ret = 128 / 8;
740 case DEVSZ_256: ret = 256 / 8;
741 case DEVSZ_512: ret = 512 / 8;
742 }
743 switch (ddrctl & 0x30000) {
744 case DEVWD_4: ret *= 2;
745 case DEVWD_8: ret *= 2;
746 case DEVWD_16: break;
a086ee22 747 }
b1b154e5
MF
748 if ((ddrctl & 0xc000) == 0x4000)
749 ret *= 2;
1e78042c 750 return ret;
a086ee22
MF
751#endif
752 BUG();
753}
754
856783b3
YL
755void __init setup_arch(char **cmdline_p)
756{
9f8e895d 757 unsigned long sclk, cclk;
856783b3
YL
758
759#ifdef CONFIG_DUMMY_CONSOLE
760 conswitchp = &dummy_con;
761#endif
762
763#if defined(CONFIG_CMDLINE_BOOL)
764 strncpy(&command_line[0], CONFIG_CMDLINE, sizeof(command_line));
765 command_line[sizeof(command_line) - 1] = 0;
766#endif
767
768 /* Keep a copy of command line */
769 *cmdline_p = &command_line[0];
770 memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
771 boot_command_line[COMMAND_LINE_SIZE - 1] = '\0';
772
773 /* setup memory defaults from the user config */
774 physical_mem_end = 0;
a086ee22 775 _ramend = get_mem_size() * 1024 * 1024;
856783b3
YL
776
777 memset(&bfin_memmap, 0, sizeof(bfin_memmap));
778
779 parse_cmdline_early(&command_line[0]);
780
781 if (physical_mem_end == 0)
782 physical_mem_end = _ramend;
783
784 memory_setup();
785
7e64acab
MF
786 /* Initialize Async memory banks */
787 bfin_write_EBIU_AMBCTL0(AMBCTL0VAL);
788 bfin_write_EBIU_AMBCTL1(AMBCTL1VAL);
789 bfin_write_EBIU_AMGCTL(AMGCTLVAL);
790#ifdef CONFIG_EBIU_MBSCTLVAL
791 bfin_write_EBIU_MBSCTL(CONFIG_EBIU_MBSCTLVAL);
792 bfin_write_EBIU_MODE(CONFIG_EBIU_MODEVAL);
793 bfin_write_EBIU_FCTL(CONFIG_EBIU_FCTLVAL);
794#endif
795
856783b3
YL
796 cclk = get_cclk();
797 sclk = get_sclk();
798
799#if !defined(CONFIG_BFIN_KERNEL_CLOCK)
800 if (ANOMALY_05000273 && cclk == sclk)
801 panic("ANOMALY 05000273, SCLK can not be same as CCLK");
802#endif
803
804#ifdef BF561_FAMILY
805 if (ANOMALY_05000266) {
806 bfin_read_IMDMA_D0_IRQ_STATUS();
807 bfin_read_IMDMA_D1_IRQ_STATUS();
808 }
809#endif
810 printk(KERN_INFO "Hardware Trace ");
811 if (bfin_read_TBUFCTL() & 0x1)
812 printk("Active ");
813 else
814 printk("Off ");
815 if (bfin_read_TBUFCTL() & 0x2)
816 printk("and Enabled\n");
817 else
818 printk("and Disabled\n");
819
820#if defined(CONFIG_CHR_DEV_FLASH) || defined(CONFIG_BLK_DEV_FLASH)
821 /* we need to initialize the Flashrom device here since we might
822 * do things with flash early on in the boot
823 */
824 flash_probe();
825#endif
826
76e8fe4d
RG
827 printk(KERN_INFO "Boot Mode: %i\n", bfin_read_SYSCR() & 0xF);
828
7728ec33
RG
829 _bfin_swrst = bfin_read_SWRST();
830
0c7a6b21
RG
831#ifdef CONFIG_DEBUG_DOUBLEFAULT_PRINT
832 bfin_write_SWRST(_bfin_swrst & ~DOUBLE_FAULT);
833#endif
834#ifdef CONFIG_DEBUG_DOUBLEFAULT_RESET
835 bfin_write_SWRST(_bfin_swrst | DOUBLE_FAULT);
836#endif
2d200980 837
8f65873e
GY
838#ifdef CONFIG_SMP
839 if (_bfin_swrst & SWRST_DBL_FAULT_A) {
840#else
0c7a6b21 841 if (_bfin_swrst & RESET_DOUBLE) {
8f65873e 842#endif
0c7a6b21
RG
843 printk(KERN_EMERG "Recovering from DOUBLE FAULT event\n");
844#ifdef CONFIG_DEBUG_DOUBLEFAULT
845 /* We assume the crashing kernel, and the current symbol table match */
846 printk(KERN_EMERG " While handling exception (EXCAUSE = 0x%x) at %pF\n",
847 (int)init_saved_seqstat & SEQSTAT_EXCAUSE, init_saved_retx);
848 printk(KERN_NOTICE " DCPLB_FAULT_ADDR: %pF\n", init_saved_dcplb_fault_addr);
849 printk(KERN_NOTICE " ICPLB_FAULT_ADDR: %pF\n", init_saved_icplb_fault_addr);
850#endif
851 printk(KERN_NOTICE " The instruction at %pF caused a double exception\n",
852 init_retx);
853 } else if (_bfin_swrst & RESET_WDOG)
7728ec33
RG
854 printk(KERN_INFO "Recovering from Watchdog event\n");
855 else if (_bfin_swrst & RESET_SOFTWARE)
856 printk(KERN_NOTICE "Reset caused by Software reset\n");
857
550d5538 858 printk(KERN_INFO "Blackfin support (C) 2004-2008 Analog Devices, Inc.\n");
de3025f4
JZ
859 if (bfin_compiled_revid() == 0xffff)
860 printk(KERN_INFO "Compiled for ADSP-%s Rev any\n", CPU);
861 else if (bfin_compiled_revid() == -1)
862 printk(KERN_INFO "Compiled for ADSP-%s Rev none\n", CPU);
863 else
864 printk(KERN_INFO "Compiled for ADSP-%s Rev 0.%d\n", CPU, bfin_compiled_revid());
e482cad2
RG
865
866 if (unlikely(CPUID != bfin_cpuid()))
867 printk(KERN_ERR "ERROR: Not running on ADSP-%s: unknown CPUID 0x%04x Rev 0.%d\n",
868 CPU, bfin_cpuid(), bfin_revid());
869 else {
870 if (bfin_revid() != bfin_compiled_revid()) {
871 if (bfin_compiled_revid() == -1)
872 printk(KERN_ERR "Warning: Compiled for Rev none, but running on Rev %d\n",
873 bfin_revid());
7419a327 874 else if (bfin_compiled_revid() != 0xffff) {
e482cad2
RG
875 printk(KERN_ERR "Warning: Compiled for Rev %d, but running on Rev %d\n",
876 bfin_compiled_revid(), bfin_revid());
7419a327
RG
877 if (bfin_compiled_revid() > bfin_revid())
878 panic("Error: you are missing anomaly workarounds for this rev\n");
879 }
e482cad2 880 }
da986b9f 881 if (bfin_revid() < CONFIG_BF_REV_MIN || bfin_revid() > CONFIG_BF_REV_MAX)
e482cad2
RG
882 printk(KERN_ERR "Warning: Unsupported Chip Revision ADSP-%s Rev 0.%d detected\n",
883 CPU, bfin_revid());
de3025f4 884 }
0c0497c2 885
1394f032
BW
886 printk(KERN_INFO "Blackfin Linux support by http://blackfin.uclinux.org/\n");
887
b5c0e2e8 888 printk(KERN_INFO "Processor Speed: %lu MHz core clock and %lu MHz System Clock\n",
8f65873e 889 cclk / 1000000, sclk / 1000000);
1394f032 890
1aafd909 891 if (ANOMALY_05000273 && (cclk >> 1) <= sclk)
1394f032 892 printk("\n\n\nANOMALY_05000273: CCLK must be >= 2*SCLK !!!\n\n\n");
1394f032 893
856783b3 894 setup_bootmem_allocator();
1394f032 895
1394f032
BW
896 paging_init();
897
7adfb58f
BS
898 /* Copy atomic sequences to their fixed location, and sanity check that
899 these locations are the ones that we advertise to userspace. */
900 memcpy((void *)FIXED_CODE_START, &fixed_code_start,
901 FIXED_CODE_END - FIXED_CODE_START);
902 BUG_ON((char *)&sigreturn_stub - (char *)&fixed_code_start
903 != SIGRETURN_STUB - FIXED_CODE_START);
904 BUG_ON((char *)&atomic_xchg32 - (char *)&fixed_code_start
905 != ATOMIC_XCHG32 - FIXED_CODE_START);
906 BUG_ON((char *)&atomic_cas32 - (char *)&fixed_code_start
907 != ATOMIC_CAS32 - FIXED_CODE_START);
908 BUG_ON((char *)&atomic_add32 - (char *)&fixed_code_start
909 != ATOMIC_ADD32 - FIXED_CODE_START);
910 BUG_ON((char *)&atomic_sub32 - (char *)&fixed_code_start
911 != ATOMIC_SUB32 - FIXED_CODE_START);
912 BUG_ON((char *)&atomic_ior32 - (char *)&fixed_code_start
913 != ATOMIC_IOR32 - FIXED_CODE_START);
914 BUG_ON((char *)&atomic_and32 - (char *)&fixed_code_start
915 != ATOMIC_AND32 - FIXED_CODE_START);
916 BUG_ON((char *)&atomic_xor32 - (char *)&fixed_code_start
917 != ATOMIC_XOR32 - FIXED_CODE_START);
9f336a53
RG
918 BUG_ON((char *)&safe_user_instruction - (char *)&fixed_code_start
919 != SAFE_USER_INSTRUCTION - FIXED_CODE_START);
29440a2b 920
8f65873e
GY
921#ifdef CONFIG_SMP
922 platform_init_cpus();
923#endif
8be80ed3 924 init_exception_vectors();
8f65873e 925 bfin_cache_init(); /* Initialize caches for the boot CPU */
1394f032
BW
926}
927
1394f032
BW
928static int __init topology_init(void)
929{
8f65873e
GY
930 unsigned int cpu;
931 /* Record CPU-private information for the boot processor. */
932 bfin_setup_cpudata(0);
6cda2e90
MH
933
934 for_each_possible_cpu(cpu) {
8f65873e 935 register_cpu(&per_cpu(cpu_data, cpu).cpu, cpu);
6cda2e90
MH
936 }
937
1394f032 938 return 0;
1394f032
BW
939}
940
941subsys_initcall(topology_init);
942
7f1e2f98
MF
943/* Get the input clock frequency */
944static u_long cached_clkin_hz = CONFIG_CLKIN_HZ;
945static u_long get_clkin_hz(void)
946{
947 return cached_clkin_hz;
948}
949static int __init early_init_clkin_hz(char *buf)
950{
951 cached_clkin_hz = simple_strtoul(buf, NULL, 0);
508808cd
MF
952#ifdef BFIN_KERNEL_CLOCK
953 if (cached_clkin_hz != CONFIG_CLKIN_HZ)
954 panic("cannot change clkin_hz when reprogramming clocks");
955#endif
7f1e2f98
MF
956 return 1;
957}
958early_param("clkin_hz=", early_init_clkin_hz);
959
3a2521fa 960/* Get the voltage input multiplier */
52a07812 961static u_long get_vco(void)
1394f032 962{
e32f55d9
MF
963 static u_long cached_vco;
964 u_long msel, pll_ctl;
1394f032 965
e32f55d9
MF
966 /* The assumption here is that VCO never changes at runtime.
967 * If, someday, we support that, then we'll have to change this.
968 */
969 if (cached_vco)
3a2521fa 970 return cached_vco;
3a2521fa 971
e32f55d9 972 pll_ctl = bfin_read_PLL_CTL();
3a2521fa 973 msel = (pll_ctl >> 9) & 0x3F;
1394f032
BW
974 if (0 == msel)
975 msel = 64;
976
7f1e2f98 977 cached_vco = get_clkin_hz();
3a2521fa
MF
978 cached_vco >>= (1 & pll_ctl); /* DF bit */
979 cached_vco *= msel;
980 return cached_vco;
1394f032
BW
981}
982
2f6cf7bf 983/* Get the Core clock */
1394f032
BW
984u_long get_cclk(void)
985{
e32f55d9 986 static u_long cached_cclk_pll_div, cached_cclk;
1394f032 987 u_long csel, ssel;
3a2521fa 988
1394f032 989 if (bfin_read_PLL_STAT() & 0x1)
7f1e2f98 990 return get_clkin_hz();
1394f032
BW
991
992 ssel = bfin_read_PLL_DIV();
3a2521fa
MF
993 if (ssel == cached_cclk_pll_div)
994 return cached_cclk;
995 else
996 cached_cclk_pll_div = ssel;
997
1394f032
BW
998 csel = ((ssel >> 4) & 0x03);
999 ssel &= 0xf;
1000 if (ssel && ssel < (1 << csel)) /* SCLK > CCLK */
3a2521fa
MF
1001 cached_cclk = get_vco() / ssel;
1002 else
1003 cached_cclk = get_vco() >> csel;
1004 return cached_cclk;
1394f032 1005}
1394f032
BW
1006EXPORT_SYMBOL(get_cclk);
1007
1008/* Get the System clock */
1009u_long get_sclk(void)
1010{
e32f55d9 1011 static u_long cached_sclk;
1394f032
BW
1012 u_long ssel;
1013
e32f55d9
MF
1014 /* The assumption here is that SCLK never changes at runtime.
1015 * If, someday, we support that, then we'll have to change this.
1016 */
1017 if (cached_sclk)
1018 return cached_sclk;
1019
1394f032 1020 if (bfin_read_PLL_STAT() & 0x1)
7f1e2f98 1021 return get_clkin_hz();
1394f032 1022
e32f55d9 1023 ssel = bfin_read_PLL_DIV() & 0xf;
1394f032
BW
1024 if (0 == ssel) {
1025 printk(KERN_WARNING "Invalid System Clock\n");
1026 ssel = 1;
1027 }
1028
3a2521fa
MF
1029 cached_sclk = get_vco() / ssel;
1030 return cached_sclk;
1394f032 1031}
1394f032
BW
1032EXPORT_SYMBOL(get_sclk);
1033
2f6cf7bf
MF
1034unsigned long sclk_to_usecs(unsigned long sclk)
1035{
1754a5d9
MF
1036 u64 tmp = USEC_PER_SEC * (u64)sclk;
1037 do_div(tmp, get_sclk());
1038 return tmp;
2f6cf7bf
MF
1039}
1040EXPORT_SYMBOL(sclk_to_usecs);
1041
1042unsigned long usecs_to_sclk(unsigned long usecs)
1043{
1754a5d9
MF
1044 u64 tmp = get_sclk() * (u64)usecs;
1045 do_div(tmp, USEC_PER_SEC);
1046 return tmp;
2f6cf7bf
MF
1047}
1048EXPORT_SYMBOL(usecs_to_sclk);
1049
1394f032
BW
1050/*
1051 * Get CPU information for use by the procfs.
1052 */
1053static int show_cpuinfo(struct seq_file *m, void *v)
1054{
066954a3 1055 char *cpu, *mmu, *fpu, *vendor, *cache;
1394f032 1056 uint32_t revid;
275123e8 1057 int cpu_num = *(unsigned int *)v;
a5f0717e 1058 u_long sclk, cclk;
9de3a0b6 1059 u_int icache_size = BFIN_ICACHESIZE / 1024, dcache_size = 0, dsup_banks = 0;
275123e8 1060 struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu_num);
1394f032
BW
1061
1062 cpu = CPU;
1063 mmu = "none";
1064 fpu = "none";
1065 revid = bfin_revid();
1394f032 1066
1394f032 1067 sclk = get_sclk();
a5f0717e 1068 cclk = get_cclk();
1394f032 1069
73b0c0b0 1070 switch (bfin_read_CHIPID() & CHIPID_MANUFACTURE) {
066954a3
MF
1071 case 0xca:
1072 vendor = "Analog Devices";
73b0c0b0
RG
1073 break;
1074 default:
066954a3
MF
1075 vendor = "unknown";
1076 break;
73b0c0b0 1077 }
1394f032 1078
275123e8 1079 seq_printf(m, "processor\t: %d\n" "vendor_id\t: %s\n", cpu_num, vendor);
e482cad2
RG
1080
1081 if (CPUID == bfin_cpuid())
1082 seq_printf(m, "cpu family\t: 0x%04x\n", CPUID);
1083 else
1084 seq_printf(m, "cpu family\t: Compiled for:0x%04x, running on:0x%04x\n",
1085 CPUID, bfin_cpuid());
1086
1087 seq_printf(m, "model name\t: ADSP-%s %lu(MHz CCLK) %lu(MHz SCLK) (%s)\n"
1088 "stepping\t: %d\n",
a5f0717e 1089 cpu, cclk/1000000, sclk/1000000,
253bcf4f
RG
1090#ifdef CONFIG_MPU
1091 "mpu on",
1092#else
1093 "mpu off",
1094#endif
73b0c0b0
RG
1095 revid);
1096
1097 seq_printf(m, "cpu MHz\t\t: %lu.%03lu/%lu.%03lu\n",
a5f0717e 1098 cclk/1000000, cclk%1000000,
73b0c0b0
RG
1099 sclk/1000000, sclk%1000000);
1100 seq_printf(m, "bogomips\t: %lu.%02lu\n"
1101 "Calibration\t: %lu loops\n",
8f65873e
GY
1102 (cpudata->loops_per_jiffy * HZ) / 500000,
1103 ((cpudata->loops_per_jiffy * HZ) / 5000) % 100,
1104 (cpudata->loops_per_jiffy * HZ));
73b0c0b0
RG
1105
1106 /* Check Cache configutation */
8f65873e 1107 switch (cpudata->dmemctl & (1 << DMC0_P | 1 << DMC1_P)) {
1f83b8f1 1108 case ACACHE_BSRAM:
066954a3 1109 cache = "dbank-A/B\t: cache/sram";
1f83b8f1
MF
1110 dcache_size = 16;
1111 dsup_banks = 1;
1112 break;
1113 case ACACHE_BCACHE:
066954a3 1114 cache = "dbank-A/B\t: cache/cache";
1f83b8f1
MF
1115 dcache_size = 32;
1116 dsup_banks = 2;
1117 break;
1118 case ASRAM_BSRAM:
066954a3 1119 cache = "dbank-A/B\t: sram/sram";
1f83b8f1
MF
1120 dcache_size = 0;
1121 dsup_banks = 0;
1122 break;
1123 default:
066954a3 1124 cache = "unknown";
73b0c0b0
RG
1125 dcache_size = 0;
1126 dsup_banks = 0;
1394f032
BW
1127 break;
1128 }
1129
73b0c0b0 1130 /* Is it turned on? */
8f65873e 1131 if ((cpudata->dmemctl & (ENDCPLB | DMC_ENABLE)) != (ENDCPLB | DMC_ENABLE))
73b0c0b0 1132 dcache_size = 0;
1394f032 1133
8f65873e 1134 if ((cpudata->imemctl & (IMC | ENICPLB)) != (IMC | ENICPLB))
9de3a0b6
RG
1135 icache_size = 0;
1136
73b0c0b0
RG
1137 seq_printf(m, "cache size\t: %d KB(L1 icache) "
1138 "%d KB(L1 dcache-%s) %d KB(L2 cache)\n",
9de3a0b6 1139 icache_size, dcache_size,
73b0c0b0
RG
1140#if defined CONFIG_BFIN_WB
1141 "wb"
1142#elif defined CONFIG_BFIN_WT
1143 "wt"
1144#endif
da27abb7 1145 "", 0);
73b0c0b0
RG
1146
1147 seq_printf(m, "%s\n", cache);
1148
9de3a0b6
RG
1149 if (icache_size)
1150 seq_printf(m, "icache setup\t: %d Sub-banks/%d Ways, %d Lines/Way\n",
1151 BFIN_ISUBBANKS, BFIN_IWAYS, BFIN_ILINES);
1152 else
1153 seq_printf(m, "icache setup\t: off\n");
1154
1394f032 1155 seq_printf(m,
73b0c0b0 1156 "dcache setup\t: %d Super-banks/%d Sub-banks/%d Ways, %d Lines/Way\n",
3bebca2d
RG
1157 dsup_banks, BFIN_DSUBBANKS, BFIN_DWAYS,
1158 BFIN_DLINES);
8f65873e 1159#ifdef __ARCH_SYNC_CORE_DCACHE
275123e8 1160 seq_printf(m, "SMP Dcache Flushes\t: %lu\n\n", cpudata->dcache_invld_count);
8f65873e 1161#endif
3bebca2d 1162#ifdef CONFIG_BFIN_ICACHE_LOCK
8f65873e 1163 switch ((cpudata->imemctl >> 3) & WAYALL_L) {
1394f032
BW
1164 case WAY0_L:
1165 seq_printf(m, "Way0 Locked-Down\n");
1166 break;
1167 case WAY1_L:
1168 seq_printf(m, "Way1 Locked-Down\n");
1169 break;
1170 case WAY01_L:
1171 seq_printf(m, "Way0,Way1 Locked-Down\n");
1172 break;
1173 case WAY2_L:
1174 seq_printf(m, "Way2 Locked-Down\n");
1175 break;
1176 case WAY02_L:
1177 seq_printf(m, "Way0,Way2 Locked-Down\n");
1178 break;
1179 case WAY12_L:
1180 seq_printf(m, "Way1,Way2 Locked-Down\n");
1181 break;
1182 case WAY012_L:
1183 seq_printf(m, "Way0,Way1 & Way2 Locked-Down\n");
1184 break;
1185 case WAY3_L:
1186 seq_printf(m, "Way3 Locked-Down\n");
1187 break;
1188 case WAY03_L:
1189 seq_printf(m, "Way0,Way3 Locked-Down\n");
1190 break;
1191 case WAY13_L:
1192 seq_printf(m, "Way1,Way3 Locked-Down\n");
1193 break;
1194 case WAY013_L:
1195 seq_printf(m, "Way 0,Way1,Way3 Locked-Down\n");
1196 break;
1197 case WAY32_L:
1198 seq_printf(m, "Way3,Way2 Locked-Down\n");
1199 break;
1200 case WAY320_L:
1201 seq_printf(m, "Way3,Way2,Way0 Locked-Down\n");
1202 break;
1203 case WAY321_L:
1204 seq_printf(m, "Way3,Way2,Way1 Locked-Down\n");
1205 break;
1206 case WAYALL_L:
1207 seq_printf(m, "All Ways are locked\n");
1208 break;
1209 default:
1210 seq_printf(m, "No Ways are locked\n");
1211 }
8f65873e 1212#endif
275123e8
MF
1213
1214 if (cpu_num != num_possible_cpus() - 1)
8f65873e
GY
1215 return 0;
1216
275123e8
MF
1217 if (L2_LENGTH)
1218 seq_printf(m, "L2 SRAM\t\t: %dKB\n", L2_LENGTH/0x400);
066954a3 1219 seq_printf(m, "board name\t: %s\n", bfin_board_name);
73b0c0b0
RG
1220 seq_printf(m, "board memory\t: %ld kB (0x%p -> 0x%p)\n",
1221 physical_mem_end >> 10, (void *)0, (void *)physical_mem_end);
1222 seq_printf(m, "kernel memory\t: %d kB (0x%p -> 0x%p)\n",
1223 ((int)memory_end - (int)_stext) >> 10,
1224 _stext,
1225 (void *)memory_end);
8f65873e 1226 seq_printf(m, "\n");
73b0c0b0 1227
1394f032
BW
1228 return 0;
1229}
1230
1231static void *c_start(struct seq_file *m, loff_t *pos)
1232{
55f2feae
GY
1233 if (*pos == 0)
1234 *pos = first_cpu(cpu_online_map);
1235 if (*pos >= num_online_cpus())
1236 return NULL;
1237
1238 return pos;
1394f032
BW
1239}
1240
1241static void *c_next(struct seq_file *m, void *v, loff_t *pos)
1242{
55f2feae
GY
1243 *pos = next_cpu(*pos, cpu_online_map);
1244
1394f032
BW
1245 return c_start(m, pos);
1246}
1247
1248static void c_stop(struct seq_file *m, void *v)
1249{
1250}
1251
03a44825 1252const struct seq_operations cpuinfo_op = {
1394f032
BW
1253 .start = c_start,
1254 .next = c_next,
1255 .stop = c_stop,
1256 .show = show_cpuinfo,
1257};
1258
5e10b4a6 1259void __init cmdline_init(const char *r0)
1394f032
BW
1260{
1261 if (r0)
52a07812 1262 strncpy(command_line, r0, COMMAND_LINE_SIZE);
1394f032 1263}