blob: 6dbf21930a91cae15c18c69cd25b22fb55f0c389 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Mike Frysinger550d5532008-02-02 15:55:37 +08002 * arch/blackfin/kernel/setup.c
Bryan Wu1394f032007-05-06 14:50:22 -07003 *
Mike Frysinger550d5532008-02-02 15:55:37 +08004 * Copyright 2004-2006 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -07005 *
Mike Frysinger550d5532008-02-02 15:55:37 +08006 * Enter bugs at http://blackfin.uclinux.org/
Bryan Wu1394f032007-05-06 14:50:22 -07007 *
Mike Frysinger550d5532008-02-02 15:55:37 +08008 * Licensed under the GPL-2 or later.
Bryan Wu1394f032007-05-06 14:50:22 -07009 */
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>
Mike Frysinger259fea42009-01-07 23:14:39 +080016#include <linux/mm.h>
Bryan Wu1394f032007-05-06 14:50:22 -070017#include <linux/module.h>
Bryan Wu1394f032007-05-06 14:50:22 -070018#include <linux/tty.h>
Yi Li856783b2008-02-09 02:26:01 +080019#include <linux/pfn.h>
Bryan Wu1394f032007-05-06 14:50:22 -070020
Mike Frysinger79df1b62009-05-26 23:34:51 +000021#ifdef CONFIG_MTD_UCLINUX
22#include <linux/mtd/map.h>
Bryan Wu1394f032007-05-06 14:50:22 -070023#include <linux/ext2_fs.h>
24#include <linux/cramfs_fs.h>
25#include <linux/romfs_fs.h>
Mike Frysinger79df1b62009-05-26 23:34:51 +000026#endif
Bryan Wu1394f032007-05-06 14:50:22 -070027
Robin Getz3bebca22007-10-10 23:55:26 +080028#include <asm/cplb.h>
Bryan Wu1394f032007-05-06 14:50:22 -070029#include <asm/cacheflush.h>
30#include <asm/blackfin.h>
31#include <asm/cplbinit.h>
Mike Frysinger1754a5d2007-11-23 11:28:11 +080032#include <asm/div64.h>
Graf Yang8f658732008-11-18 17:48:22 +080033#include <asm/cpu.h>
Bernd Schmidt7adfb582007-06-21 11:34:16 +080034#include <asm/fixed_code.h>
Robin Getzce3afa12007-10-09 17:28:36 +080035#include <asm/early_printk.h>
Bryan Wu1394f032007-05-06 14:50:22 -070036
Mike Frysingera9c59c22007-05-21 18:09:32 +080037u16 _bfin_swrst;
Mike Frysingerd45118b2008-02-25 12:24:44 +080038EXPORT_SYMBOL(_bfin_swrst);
Mike Frysingera9c59c22007-05-21 18:09:32 +080039
Bryan Wu1394f032007-05-06 14:50:22 -070040unsigned long memory_start, memory_end, physical_mem_end;
Mike Frysinger3132b582008-04-24 05:12:09 +080041unsigned long _rambase, _ramstart, _ramend;
Bryan Wu1394f032007-05-06 14:50:22 -070042unsigned long reserved_mem_dcache_on;
43unsigned long reserved_mem_icache_on;
44EXPORT_SYMBOL(memory_start);
45EXPORT_SYMBOL(memory_end);
46EXPORT_SYMBOL(physical_mem_end);
47EXPORT_SYMBOL(_ramend);
Vitja Makarov58c35bd2008-10-13 15:23:56 +080048EXPORT_SYMBOL(reserved_mem_dcache_on);
Bryan Wu1394f032007-05-06 14:50:22 -070049
50#ifdef CONFIG_MTD_UCLINUX
Mike Frysinger79df1b62009-05-26 23:34:51 +000051extern struct map_info uclinux_ram_map;
Bryan Wu1394f032007-05-06 14:50:22 -070052unsigned long memory_mtd_end, memory_mtd_start, mtd_size;
53unsigned long _ebss;
54EXPORT_SYMBOL(memory_mtd_end);
55EXPORT_SYMBOL(memory_mtd_start);
56EXPORT_SYMBOL(mtd_size);
57#endif
58
Mike Frysinger5e10b4a2007-06-11 16:44:09 +080059char __initdata command_line[COMMAND_LINE_SIZE];
Robin Getz0c7a6b22008-10-08 16:27:12 +080060void __initdata *init_retx, *init_saved_retx, *init_saved_seqstat,
61 *init_saved_icplb_fault_addr, *init_saved_dcplb_fault_addr;
Bryan Wu1394f032007-05-06 14:50:22 -070062
Yi Li856783b2008-02-09 02:26:01 +080063/* boot memmap, for parsing "memmap=" */
64#define BFIN_MEMMAP_MAX 128 /* number of entries in bfin_memmap */
65#define BFIN_MEMMAP_RAM 1
66#define BFIN_MEMMAP_RESERVED 2
Mike Frysingeraf4c7d42009-02-04 16:49:45 +080067static struct bfin_memmap {
Yi Li856783b2008-02-09 02:26:01 +080068 int nr_map;
69 struct bfin_memmap_entry {
70 unsigned long long addr; /* start of memory segment */
71 unsigned long long size;
72 unsigned long type;
73 } map[BFIN_MEMMAP_MAX];
74} bfin_memmap __initdata;
75
76/* for memmap sanitization */
77struct change_member {
78 struct bfin_memmap_entry *pentry; /* pointer to original entry */
79 unsigned long long addr; /* address for this change point */
80};
81static struct change_member change_point_list[2*BFIN_MEMMAP_MAX] __initdata;
82static struct change_member *change_point[2*BFIN_MEMMAP_MAX] __initdata;
83static struct bfin_memmap_entry *overlap_list[BFIN_MEMMAP_MAX] __initdata;
84static struct bfin_memmap_entry new_map[BFIN_MEMMAP_MAX] __initdata;
85
Graf Yang8f658732008-11-18 17:48:22 +080086DEFINE_PER_CPU(struct blackfin_cpudata, cpu_data);
87
Mike Frysinger7f1e2f92009-01-07 23:14:38 +080088static int early_init_clkin_hz(char *buf);
89
Robin Getz3bebca22007-10-10 23:55:26 +080090#if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
Graf Yang8f658732008-11-18 17:48:22 +080091void __init generate_cplb_tables(void)
92{
93 unsigned int cpu;
94
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +080095 generate_cplb_tables_all();
Graf Yang8f658732008-11-18 17:48:22 +080096 /* Generate per-CPU I&D CPLB tables */
97 for (cpu = 0; cpu < num_possible_cpus(); ++cpu)
98 generate_cplb_tables_cpu(cpu);
99}
Bryan Wu1394f032007-05-06 14:50:22 -0700100#endif
101
Graf Yang8f658732008-11-18 17:48:22 +0800102void __cpuinit bfin_setup_caches(unsigned int cpu)
103{
Robin Getz3bebca22007-10-10 23:55:26 +0800104#ifdef CONFIG_BFIN_ICACHE
Graf Yang8f658732008-11-18 17:48:22 +0800105 bfin_icache_init(icplb_tbl[cpu]);
Bryan Wu1394f032007-05-06 14:50:22 -0700106#endif
107
Robin Getz3bebca22007-10-10 23:55:26 +0800108#ifdef CONFIG_BFIN_DCACHE
Graf Yang8f658732008-11-18 17:48:22 +0800109 bfin_dcache_init(dcplb_tbl[cpu]);
Graf Yang8f658732008-11-18 17:48:22 +0800110#endif
111
112 /*
113 * In cache coherence emulation mode, we need to have the
114 * D-cache enabled before running any atomic operation which
115 * might invove cache invalidation (i.e. spinlock, rwlock).
116 * So printk's are deferred until then.
117 */
118#ifdef CONFIG_BFIN_ICACHE
119 printk(KERN_INFO "Instruction Cache Enabled for CPU%u\n", cpu);
Jie Zhang41ba6532009-06-16 09:48:33 +0000120 printk(KERN_INFO " External memory:"
121# ifdef CONFIG_BFIN_EXTMEM_ICACHEABLE
122 " cacheable"
123# else
124 " uncacheable"
Bryan Wu1394f032007-05-06 14:50:22 -0700125# endif
Jie Zhang41ba6532009-06-16 09:48:33 +0000126 " in instruction cache\n");
127 if (L2_LENGTH)
128 printk(KERN_INFO " L2 SRAM :"
129# ifdef CONFIG_BFIN_L2_ICACHEABLE
130 " cacheable"
131# else
132 " uncacheable"
133# endif
134 " in instruction cache\n");
135
136#else
137 printk(KERN_INFO "Instruction Cache Disabled for CPU%u\n", cpu);
138#endif
139
140#ifdef CONFIG_BFIN_DCACHE
141 printk(KERN_INFO "Data Cache Enabled for CPU%u\n", cpu);
142 printk(KERN_INFO " External memory:"
143# if defined CONFIG_BFIN_EXTMEM_WRITEBACK
144 " cacheable (write-back)"
145# elif defined CONFIG_BFIN_EXTMEM_WRITETHROUGH
146 " cacheable (write-through)"
147# else
148 " uncacheable"
149# endif
150 " in data cache\n");
151 if (L2_LENGTH)
152 printk(KERN_INFO " L2 SRAM :"
153# if defined CONFIG_BFIN_L2_WRITEBACK
154 " cacheable (write-back)"
155# elif defined CONFIG_BFIN_L2_WRITETHROUGH
156 " cacheable (write-through)"
157# else
158 " uncacheable"
159# endif
160 " in data cache\n");
161#else
162 printk(KERN_INFO "Data Cache Disabled for CPU%u\n", cpu);
Bryan Wu1394f032007-05-06 14:50:22 -0700163#endif
164}
165
Graf Yang8f658732008-11-18 17:48:22 +0800166void __cpuinit bfin_setup_cpudata(unsigned int cpu)
167{
168 struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu);
169
170 cpudata->idle = current;
Graf Yang8f658732008-11-18 17:48:22 +0800171 cpudata->imemctl = bfin_read_IMEM_CONTROL();
172 cpudata->dmemctl = bfin_read_DMEM_CONTROL();
173}
174
175void __init bfin_cache_init(void)
176{
177#if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
178 generate_cplb_tables();
179#endif
180 bfin_setup_caches(0);
181}
182
Graf Yang5b04f272008-10-08 17:32:57 +0800183void __init bfin_relocate_l1_mem(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700184{
185 unsigned long l1_code_length;
186 unsigned long l1_data_a_length;
187 unsigned long l1_data_b_length;
Sonic Zhang262c3822008-07-19 15:42:41 +0800188 unsigned long l2_length;
Bryan Wu1394f032007-05-06 14:50:22 -0700189
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
Robin Getzfecbd732009-04-23 20:49:43 +0000206 /* if necessary, copy _stext_l1 to _etext_l1 to L1 instruction SRAM */
207 l1_code_length = _etext_l1 - _stext_l1;
208 if (l1_code_length)
209 early_dma_memcpy(_stext_l1, _l1_lma_start, l1_code_length);
210
211 /* if necessary, copy _sdata_l1 to _sbss_l1 to L1 data bank A SRAM */
Mike Frysinger3b1f26a2008-10-27 18:21:43 +0800212 l1_data_a_length = _sbss_l1 - _sdata_l1;
Robin Getzfecbd732009-04-23 20:49:43 +0000213 if (l1_data_a_length)
214 early_dma_memcpy(_sdata_l1, _l1_lma_start + l1_code_length, l1_data_a_length);
Bryan Wu1394f032007-05-06 14:50:22 -0700215
Robin Getzfecbd732009-04-23 20:49:43 +0000216 /* if necessary, copy _sdata_b_l1 to _sbss_b_l1 to L1 data bank B SRAM */
Mike Frysinger3b1f26a2008-10-27 18:21:43 +0800217 l1_data_b_length = _sbss_b_l1 - _sdata_b_l1;
Robin Getzfecbd732009-04-23 20:49:43 +0000218 if (l1_data_b_length)
219 early_dma_memcpy(_sdata_b_l1, _l1_lma_start + l1_code_length +
Bryan Wu1394f032007-05-06 14:50:22 -0700220 l1_data_a_length, l1_data_b_length);
Sonic Zhang262c3822008-07-19 15:42:41 +0800221
Robin Getzfecbd732009-04-23 20:49:43 +0000222 early_dma_memcpy_done();
223
224 /* if necessary, copy _stext_l2 to _edata_l2 to L2 SRAM */
Mike Frysinger07aa7be2008-08-13 16:16:11 +0800225 if (L2_LENGTH != 0) {
Mike Frysinger3b1f26a2008-10-27 18:21:43 +0800226 l2_length = _sbss_l2 - _stext_l2;
Robin Getzfecbd732009-04-23 20:49:43 +0000227 if (l2_length)
228 memcpy(_stext_l2, _l2_lma_start, l2_length);
Mike Frysinger07aa7be2008-08-13 16:16:11 +0800229 }
Bryan Wu1394f032007-05-06 14:50:22 -0700230}
231
Yi Li856783b2008-02-09 02:26:01 +0800232/* add_memory_region to memmap */
233static void __init add_memory_region(unsigned long long start,
234 unsigned long long size, int type)
235{
236 int i;
237
238 i = bfin_memmap.nr_map;
239
240 if (i == BFIN_MEMMAP_MAX) {
241 printk(KERN_ERR "Ooops! Too many entries in the memory map!\n");
242 return;
243 }
244
245 bfin_memmap.map[i].addr = start;
246 bfin_memmap.map[i].size = size;
247 bfin_memmap.map[i].type = type;
248 bfin_memmap.nr_map++;
249}
250
251/*
252 * Sanitize the boot memmap, removing overlaps.
253 */
254static int __init sanitize_memmap(struct bfin_memmap_entry *map, int *pnr_map)
255{
256 struct change_member *change_tmp;
257 unsigned long current_type, last_type;
258 unsigned long long last_addr;
259 int chgidx, still_changing;
260 int overlap_entries;
261 int new_entry;
262 int old_nr, new_nr, chg_nr;
263 int i;
264
265 /*
266 Visually we're performing the following (1,2,3,4 = memory types)
267
268 Sample memory map (w/overlaps):
269 ____22__________________
270 ______________________4_
271 ____1111________________
272 _44_____________________
273 11111111________________
274 ____________________33__
275 ___________44___________
276 __________33333_________
277 ______________22________
278 ___________________2222_
279 _________111111111______
280 _____________________11_
281 _________________4______
282
283 Sanitized equivalent (no overlap):
284 1_______________________
285 _44_____________________
286 ___1____________________
287 ____22__________________
288 ______11________________
289 _________1______________
290 __________3_____________
291 ___________44___________
292 _____________33_________
293 _______________2________
294 ________________1_______
295 _________________4______
296 ___________________2____
297 ____________________33__
298 ______________________4_
299 */
300 /* if there's only one memory region, don't bother */
301 if (*pnr_map < 2)
302 return -1;
303
304 old_nr = *pnr_map;
305
306 /* bail out if we find any unreasonable addresses in memmap */
307 for (i = 0; i < old_nr; i++)
308 if (map[i].addr + map[i].size < map[i].addr)
309 return -1;
310
311 /* create pointers for initial change-point information (for sorting) */
312 for (i = 0; i < 2*old_nr; i++)
313 change_point[i] = &change_point_list[i];
314
315 /* record all known change-points (starting and ending addresses),
316 omitting those that are for empty memory regions */
317 chgidx = 0;
Graf Yang8f658732008-11-18 17:48:22 +0800318 for (i = 0; i < old_nr; i++) {
Yi Li856783b2008-02-09 02:26:01 +0800319 if (map[i].size != 0) {
320 change_point[chgidx]->addr = map[i].addr;
321 change_point[chgidx++]->pentry = &map[i];
322 change_point[chgidx]->addr = map[i].addr + map[i].size;
323 change_point[chgidx++]->pentry = &map[i];
324 }
325 }
Graf Yang8f658732008-11-18 17:48:22 +0800326 chg_nr = chgidx; /* true number of change-points */
Yi Li856783b2008-02-09 02:26:01 +0800327
328 /* sort change-point list by memory addresses (low -> high) */
329 still_changing = 1;
Graf Yang8f658732008-11-18 17:48:22 +0800330 while (still_changing) {
Yi Li856783b2008-02-09 02:26:01 +0800331 still_changing = 0;
Graf Yang8f658732008-11-18 17:48:22 +0800332 for (i = 1; i < chg_nr; i++) {
Yi Li856783b2008-02-09 02:26:01 +0800333 /* if <current_addr> > <last_addr>, swap */
334 /* or, if current=<start_addr> & last=<end_addr>, swap */
335 if ((change_point[i]->addr < change_point[i-1]->addr) ||
336 ((change_point[i]->addr == change_point[i-1]->addr) &&
337 (change_point[i]->addr == change_point[i]->pentry->addr) &&
338 (change_point[i-1]->addr != change_point[i-1]->pentry->addr))
339 ) {
340 change_tmp = change_point[i];
341 change_point[i] = change_point[i-1];
342 change_point[i-1] = change_tmp;
343 still_changing = 1;
344 }
345 }
346 }
347
348 /* create a new memmap, removing overlaps */
Graf Yang8f658732008-11-18 17:48:22 +0800349 overlap_entries = 0; /* number of entries in the overlap table */
350 new_entry = 0; /* index for creating new memmap entries */
351 last_type = 0; /* start with undefined memory type */
352 last_addr = 0; /* start with 0 as last starting address */
Yi Li856783b2008-02-09 02:26:01 +0800353 /* loop through change-points, determining affect on the new memmap */
354 for (chgidx = 0; chgidx < chg_nr; chgidx++) {
355 /* keep track of all overlapping memmap entries */
356 if (change_point[chgidx]->addr == change_point[chgidx]->pentry->addr) {
357 /* add map entry to overlap list (> 1 entry implies an overlap) */
358 overlap_list[overlap_entries++] = change_point[chgidx]->pentry;
359 } else {
360 /* remove entry from list (order independent, so swap with last) */
361 for (i = 0; i < overlap_entries; i++) {
362 if (overlap_list[i] == change_point[chgidx]->pentry)
363 overlap_list[i] = overlap_list[overlap_entries-1];
364 }
365 overlap_entries--;
366 }
367 /* if there are overlapping entries, decide which "type" to use */
368 /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */
369 current_type = 0;
370 for (i = 0; i < overlap_entries; i++)
371 if (overlap_list[i]->type > current_type)
372 current_type = overlap_list[i]->type;
373 /* continue building up new memmap based on this information */
Graf Yang8f658732008-11-18 17:48:22 +0800374 if (current_type != last_type) {
Yi Li856783b2008-02-09 02:26:01 +0800375 if (last_type != 0) {
376 new_map[new_entry].size =
377 change_point[chgidx]->addr - last_addr;
378 /* move forward only if the new size was non-zero */
379 if (new_map[new_entry].size != 0)
380 if (++new_entry >= BFIN_MEMMAP_MAX)
Graf Yang8f658732008-11-18 17:48:22 +0800381 break; /* no more space left for new entries */
Yi Li856783b2008-02-09 02:26:01 +0800382 }
383 if (current_type != 0) {
384 new_map[new_entry].addr = change_point[chgidx]->addr;
385 new_map[new_entry].type = current_type;
386 last_addr = change_point[chgidx]->addr;
387 }
388 last_type = current_type;
389 }
390 }
Graf Yang8f658732008-11-18 17:48:22 +0800391 new_nr = new_entry; /* retain count for new entries */
Yi Li856783b2008-02-09 02:26:01 +0800392
Graf Yang8f658732008-11-18 17:48:22 +0800393 /* copy new mapping into original location */
Yi Li856783b2008-02-09 02:26:01 +0800394 memcpy(map, new_map, new_nr*sizeof(struct bfin_memmap_entry));
395 *pnr_map = new_nr;
396
397 return 0;
398}
399
400static void __init print_memory_map(char *who)
401{
402 int i;
403
404 for (i = 0; i < bfin_memmap.nr_map; i++) {
405 printk(KERN_DEBUG " %s: %016Lx - %016Lx ", who,
406 bfin_memmap.map[i].addr,
407 bfin_memmap.map[i].addr + bfin_memmap.map[i].size);
408 switch (bfin_memmap.map[i].type) {
409 case BFIN_MEMMAP_RAM:
Joe Perchesad361c92009-07-06 13:05:40 -0700410 printk(KERN_CONT "(usable)\n");
411 break;
Yi Li856783b2008-02-09 02:26:01 +0800412 case BFIN_MEMMAP_RESERVED:
Joe Perchesad361c92009-07-06 13:05:40 -0700413 printk(KERN_CONT "(reserved)\n");
414 break;
415 default:
416 printk(KERN_CONT "type %lu\n", bfin_memmap.map[i].type);
417 break;
Yi Li856783b2008-02-09 02:26:01 +0800418 }
419 }
420}
421
422static __init int parse_memmap(char *arg)
423{
424 unsigned long long start_at, mem_size;
425
426 if (!arg)
427 return -EINVAL;
428
429 mem_size = memparse(arg, &arg);
430 if (*arg == '@') {
431 start_at = memparse(arg+1, &arg);
432 add_memory_region(start_at, mem_size, BFIN_MEMMAP_RAM);
433 } else if (*arg == '$') {
434 start_at = memparse(arg+1, &arg);
435 add_memory_region(start_at, mem_size, BFIN_MEMMAP_RESERVED);
436 }
437
438 return 0;
439}
440
Bryan Wu1394f032007-05-06 14:50:22 -0700441/*
442 * Initial parsing of the command line. Currently, we support:
443 * - Controlling the linux memory size: mem=xxx[KMG]
444 * - Controlling the physical memory size: max_mem=xxx[KMG][$][#]
445 * $ -> reserved memory is dcacheable
446 * # -> reserved memory is icacheable
Yi Li856783b2008-02-09 02:26:01 +0800447 * - "memmap=XXX[KkmM][@][$]XXX[KkmM]" defines a memory region
448 * @ from <start> to <start>+<mem>, type RAM
449 * $ from <start> to <start>+<mem>, type RESERVED
Bryan Wu1394f032007-05-06 14:50:22 -0700450 */
451static __init void parse_cmdline_early(char *cmdline_p)
452{
453 char c = ' ', *to = cmdline_p;
454 unsigned int memsize;
455 for (;;) {
456 if (c == ' ') {
Bryan Wu1394f032007-05-06 14:50:22 -0700457 if (!memcmp(to, "mem=", 4)) {
458 to += 4;
459 memsize = memparse(to, &to);
460 if (memsize)
461 _ramend = memsize;
462
463 } else if (!memcmp(to, "max_mem=", 8)) {
464 to += 8;
465 memsize = memparse(to, &to);
466 if (memsize) {
467 physical_mem_end = memsize;
468 if (*to != ' ') {
469 if (*to == '$'
470 || *(to + 1) == '$')
Graf Yang8f658732008-11-18 17:48:22 +0800471 reserved_mem_dcache_on = 1;
Bryan Wu1394f032007-05-06 14:50:22 -0700472 if (*to == '#'
473 || *(to + 1) == '#')
Graf Yang8f658732008-11-18 17:48:22 +0800474 reserved_mem_icache_on = 1;
Bryan Wu1394f032007-05-06 14:50:22 -0700475 }
476 }
Mike Frysinger7f1e2f92009-01-07 23:14:38 +0800477 } else if (!memcmp(to, "clkin_hz=", 9)) {
478 to += 9;
479 early_init_clkin_hz(to);
Robin Getzbd854c02009-06-18 22:53:43 +0000480#ifdef CONFIG_EARLY_PRINTK
Robin Getzce3afa12007-10-09 17:28:36 +0800481 } else if (!memcmp(to, "earlyprintk=", 12)) {
482 to += 12;
483 setup_early_printk(to);
Robin Getzbd854c02009-06-18 22:53:43 +0000484#endif
Yi Li856783b2008-02-09 02:26:01 +0800485 } else if (!memcmp(to, "memmap=", 7)) {
486 to += 7;
487 parse_memmap(to);
Bryan Wu1394f032007-05-06 14:50:22 -0700488 }
Bryan Wu1394f032007-05-06 14:50:22 -0700489 }
490 c = *(to++);
491 if (!c)
492 break;
493 }
494}
495
Yi Li856783b2008-02-09 02:26:01 +0800496/*
497 * Setup memory defaults from user config.
498 * The physical memory layout looks like:
499 *
500 * [_rambase, _ramstart]: kernel image
501 * [memory_start, memory_end]: dynamic memory managed by kernel
502 * [memory_end, _ramend]: reserved memory
Bryan Wu3094c982008-10-10 21:22:01 +0800503 * [memory_mtd_start(memory_end),
Yi Li856783b2008-02-09 02:26:01 +0800504 * memory_mtd_start + mtd_size]: rootfs (if any)
505 * [_ramend - DMA_UNCACHED_REGION,
506 * _ramend]: uncached DMA region
507 * [_ramend, physical_mem_end]: memory not managed by kernel
Yi Li856783b2008-02-09 02:26:01 +0800508 */
Graf Yang8f658732008-11-18 17:48:22 +0800509static __init void memory_setup(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700510{
Mike Frysingerc0eab3b2008-02-02 15:36:11 +0800511#ifdef CONFIG_MTD_UCLINUX
512 unsigned long mtd_phys = 0;
513#endif
Robin Getz2f812c02009-06-26 12:52:46 +0000514 unsigned long max_mem;
Mike Frysingerc0eab3b2008-02-02 15:36:11 +0800515
Yi Li856783b2008-02-09 02:26:01 +0800516 _rambase = (unsigned long)_stext;
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800517 _ramstart = (unsigned long)_end;
Bryan Wu1394f032007-05-06 14:50:22 -0700518
Yi Li856783b2008-02-09 02:26:01 +0800519 if (DMA_UNCACHED_REGION > (_ramend - _ramstart)) {
520 console_init();
Mike Frysingerd8804ad2009-04-29 06:26:46 +0000521 panic("DMA region exceeds memory limit: %lu.",
Yi Li856783b2008-02-09 02:26:01 +0800522 _ramend - _ramstart);
Mike Frysinger1aafd902007-07-25 11:19:14 +0800523 }
Robin Getz2f812c02009-06-26 12:52:46 +0000524 max_mem = memory_end = _ramend - DMA_UNCACHED_REGION;
525
526#if (defined(CONFIG_BFIN_EXTMEM_ICACHEABLE) && ANOMALY_05000263)
527 /* Due to a Hardware Anomaly we need to limit the size of usable
528 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
529 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
530 */
531# if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
532 if (max_mem >= 56 * 1024 * 1024)
533 max_mem = 56 * 1024 * 1024;
534# else
535 if (max_mem >= 60 * 1024 * 1024)
536 max_mem = 60 * 1024 * 1024;
537# endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
538#endif /* ANOMALY_05000263 */
539
Bryan Wu1394f032007-05-06 14:50:22 -0700540
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800541#ifdef CONFIG_MPU
Graf Yang8f658732008-11-18 17:48:22 +0800542 /* Round up to multiple of 4MB */
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800543 memory_start = (_ramstart + 0x3fffff) & ~0x3fffff;
544#else
Bryan Wu1394f032007-05-06 14:50:22 -0700545 memory_start = PAGE_ALIGN(_ramstart);
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800546#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700547
548#if defined(CONFIG_MTD_UCLINUX)
549 /* generic memory mapped MTD driver */
550 memory_mtd_end = memory_end;
551
552 mtd_phys = _ramstart;
553 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 8)));
554
555# if defined(CONFIG_EXT2_FS) || defined(CONFIG_EXT3_FS)
556 if (*((unsigned short *)(mtd_phys + 0x438)) == EXT2_SUPER_MAGIC)
557 mtd_size =
558 PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x404)) << 10);
559# endif
560
561# if defined(CONFIG_CRAMFS)
562 if (*((unsigned long *)(mtd_phys)) == CRAMFS_MAGIC)
563 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x4)));
564# endif
565
566# if defined(CONFIG_ROMFS_FS)
567 if (((unsigned long *)mtd_phys)[0] == ROMSB_WORD0
Robin Getz2f812c02009-06-26 12:52:46 +0000568 && ((unsigned long *)mtd_phys)[1] == ROMSB_WORD1) {
Bryan Wu1394f032007-05-06 14:50:22 -0700569 mtd_size =
570 PAGE_ALIGN(be32_to_cpu(((unsigned long *)mtd_phys)[2]));
Robin Getz2f812c02009-06-26 12:52:46 +0000571
572 /* ROM_FS is XIP, so if we found it, we need to limit memory */
573 if (memory_end > max_mem) {
574 pr_info("Limiting kernel memory to %liMB due to anomaly 05000263\n", max_mem >> 20);
575 memory_end = max_mem;
576 }
577 }
Bryan Wu1394f032007-05-06 14:50:22 -0700578# endif /* CONFIG_ROMFS_FS */
579
Robin Getzdc437b12009-06-26 12:23:51 +0000580 /* Since the default MTD_UCLINUX has no magic number, we just blindly
581 * read 8 past the end of the kernel's image, and look at it.
582 * When no image is attached, mtd_size is set to a random number
583 * Do some basic sanity checks before operating on things
584 */
585 if (mtd_size == 0 || memory_end <= mtd_size) {
586 pr_emerg("Could not find valid ram mtd attached.\n");
587 } else {
588 memory_end -= mtd_size;
Bryan Wu1394f032007-05-06 14:50:22 -0700589
Robin Getzdc437b12009-06-26 12:23:51 +0000590 /* Relocate MTD image to the top of memory after the uncached memory area */
591 uclinux_ram_map.phys = memory_mtd_start = memory_end;
592 uclinux_ram_map.size = mtd_size;
593 pr_info("Found mtd parition at 0x%p, (len=0x%lx), moving to 0x%p\n",
594 _end, mtd_size, (void *)memory_mtd_start);
595 dma_memcpy((void *)uclinux_ram_map.phys, _end, uclinux_ram_map.size);
Bryan Wu1394f032007-05-06 14:50:22 -0700596 }
Bryan Wu1394f032007-05-06 14:50:22 -0700597#endif /* CONFIG_MTD_UCLINUX */
598
Robin Getz2f812c02009-06-26 12:52:46 +0000599 /* We need lo limit memory, since everything could have a text section
600 * of userspace in it, and expose anomaly 05000263. If the anomaly
601 * doesn't exist, or we don't need to - then dont.
Bryan Wu1394f032007-05-06 14:50:22 -0700602 */
Robin Getz2f812c02009-06-26 12:52:46 +0000603 if (memory_end > max_mem) {
604 pr_info("Limiting kernel memory to %liMB due to anomaly 05000263\n", max_mem >> 20);
605 memory_end = max_mem;
606 }
Bryan Wu1394f032007-05-06 14:50:22 -0700607
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800608#ifdef CONFIG_MPU
609 page_mask_nelts = ((_ramend >> PAGE_SHIFT) + 31) / 32;
610 page_mask_order = get_order(3 * page_mask_nelts * sizeof(long));
611#endif
612
Bryan Wu1394f032007-05-06 14:50:22 -0700613#if !defined(CONFIG_MTD_UCLINUX)
Yi Li856783b2008-02-09 02:26:01 +0800614 /*In case there is no valid CPLB behind memory_end make sure we don't get to close*/
615 memory_end -= SIZE_4K;
Bryan Wu1394f032007-05-06 14:50:22 -0700616#endif
Yi Li856783b2008-02-09 02:26:01 +0800617
Bryan Wu1394f032007-05-06 14:50:22 -0700618 init_mm.start_code = (unsigned long)_stext;
619 init_mm.end_code = (unsigned long)_etext;
620 init_mm.end_data = (unsigned long)_edata;
621 init_mm.brk = (unsigned long)0;
622
Yi Li856783b2008-02-09 02:26:01 +0800623 printk(KERN_INFO "Board Memory: %ldMB\n", physical_mem_end >> 20);
624 printk(KERN_INFO "Kernel Managed Memory: %ldMB\n", _ramend >> 20);
625
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800626 printk(KERN_INFO "Memory map:\n"
Joe Perchesad361c92009-07-06 13:05:40 -0700627 " fixedcode = 0x%p-0x%p\n"
628 " text = 0x%p-0x%p\n"
629 " rodata = 0x%p-0x%p\n"
630 " bss = 0x%p-0x%p\n"
631 " data = 0x%p-0x%p\n"
632 " stack = 0x%p-0x%p\n"
633 " init = 0x%p-0x%p\n"
634 " available = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800635#ifdef CONFIG_MTD_UCLINUX
Joe Perchesad361c92009-07-06 13:05:40 -0700636 " rootfs = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800637#endif
638#if DMA_UNCACHED_REGION > 0
Joe Perchesad361c92009-07-06 13:05:40 -0700639 " DMA Zone = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800640#endif
Mike Frysinger8929ecf82008-02-22 16:35:20 +0800641 , (void *)FIXED_CODE_START, (void *)FIXED_CODE_END,
642 _stext, _etext,
Yi Li856783b2008-02-09 02:26:01 +0800643 __start_rodata, __end_rodata,
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800644 __bss_start, __bss_stop,
Yi Li856783b2008-02-09 02:26:01 +0800645 _sdata, _edata,
646 (void *)&init_thread_union,
647 (void *)((int)(&init_thread_union) + 0x2000),
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800648 __init_begin, __init_end,
649 (void *)_ramstart, (void *)memory_end
Yi Li856783b2008-02-09 02:26:01 +0800650#ifdef CONFIG_MTD_UCLINUX
651 , (void *)memory_mtd_start, (void *)(memory_mtd_start + mtd_size)
652#endif
653#if DMA_UNCACHED_REGION > 0
654 , (void *)(_ramend - DMA_UNCACHED_REGION), (void *)(_ramend)
655#endif
656 );
657}
658
Yi Li2e8d7962008-03-26 07:08:12 +0800659/*
660 * Find the lowest, highest page frame number we have available
661 */
662void __init find_min_max_pfn(void)
663{
664 int i;
665
666 max_pfn = 0;
667 min_low_pfn = memory_end;
668
669 for (i = 0; i < bfin_memmap.nr_map; i++) {
670 unsigned long start, end;
671 /* RAM? */
672 if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM)
673 continue;
674 start = PFN_UP(bfin_memmap.map[i].addr);
675 end = PFN_DOWN(bfin_memmap.map[i].addr +
676 bfin_memmap.map[i].size);
677 if (start >= end)
678 continue;
679 if (end > max_pfn)
680 max_pfn = end;
681 if (start < min_low_pfn)
682 min_low_pfn = start;
683 }
684}
685
Yi Li856783b2008-02-09 02:26:01 +0800686static __init void setup_bootmem_allocator(void)
687{
688 int bootmap_size;
689 int i;
Yi Li2e8d7962008-03-26 07:08:12 +0800690 unsigned long start_pfn, end_pfn;
Yi Li856783b2008-02-09 02:26:01 +0800691 unsigned long curr_pfn, last_pfn, size;
692
693 /* mark memory between memory_start and memory_end usable */
694 add_memory_region(memory_start,
695 memory_end - memory_start, BFIN_MEMMAP_RAM);
696 /* sanity check for overlap */
697 sanitize_memmap(bfin_memmap.map, &bfin_memmap.nr_map);
698 print_memory_map("boot memmap");
699
Yi Li2e8d7962008-03-26 07:08:12 +0800700 /* intialize globals in linux/bootmem.h */
701 find_min_max_pfn();
702 /* pfn of the last usable page frame */
703 if (max_pfn > memory_end >> PAGE_SHIFT)
704 max_pfn = memory_end >> PAGE_SHIFT;
705 /* pfn of last page frame directly mapped by kernel */
706 max_low_pfn = max_pfn;
707 /* pfn of the first usable page frame after kernel image*/
708 if (min_low_pfn < memory_start >> PAGE_SHIFT)
709 min_low_pfn = memory_start >> PAGE_SHIFT;
710
711 start_pfn = PAGE_OFFSET >> PAGE_SHIFT;
712 end_pfn = memory_end >> PAGE_SHIFT;
Yi Li856783b2008-02-09 02:26:01 +0800713
714 /*
Graf Yang8f658732008-11-18 17:48:22 +0800715 * give all the memory to the bootmap allocator, tell it to put the
Yi Li856783b2008-02-09 02:26:01 +0800716 * boot mem_map at the start of memory.
717 */
718 bootmap_size = init_bootmem_node(NODE_DATA(0),
719 memory_start >> PAGE_SHIFT, /* map goes here */
Yi Li2e8d7962008-03-26 07:08:12 +0800720 start_pfn, end_pfn);
Yi Li856783b2008-02-09 02:26:01 +0800721
722 /* register the memmap regions with the bootmem allocator */
723 for (i = 0; i < bfin_memmap.nr_map; i++) {
724 /*
725 * Reserve usable memory
726 */
727 if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM)
728 continue;
729 /*
730 * We are rounding up the start address of usable memory:
731 */
732 curr_pfn = PFN_UP(bfin_memmap.map[i].addr);
Yi Li2e8d7962008-03-26 07:08:12 +0800733 if (curr_pfn >= end_pfn)
Yi Li856783b2008-02-09 02:26:01 +0800734 continue;
735 /*
736 * ... and at the end of the usable range downwards:
737 */
738 last_pfn = PFN_DOWN(bfin_memmap.map[i].addr +
739 bfin_memmap.map[i].size);
740
Yi Li2e8d7962008-03-26 07:08:12 +0800741 if (last_pfn > end_pfn)
742 last_pfn = end_pfn;
Yi Li856783b2008-02-09 02:26:01 +0800743
744 /*
745 * .. finally, did all the rounding and playing
746 * around just make the area go away?
747 */
748 if (last_pfn <= curr_pfn)
749 continue;
750
751 size = last_pfn - curr_pfn;
752 free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(size));
753 }
754
755 /* reserve memory before memory_start, including bootmap */
756 reserve_bootmem(PAGE_OFFSET,
757 memory_start + bootmap_size + PAGE_SIZE - 1 - PAGE_OFFSET,
758 BOOTMEM_DEFAULT);
759}
760
Mike Frysingera086ee22008-04-25 02:04:05 +0800761#define EBSZ_TO_MEG(ebsz) \
762({ \
763 int meg = 0; \
764 switch (ebsz & 0xf) { \
765 case 0x1: meg = 16; break; \
766 case 0x3: meg = 32; break; \
767 case 0x5: meg = 64; break; \
768 case 0x7: meg = 128; break; \
769 case 0x9: meg = 256; break; \
770 case 0xb: meg = 512; break; \
771 } \
772 meg; \
773})
774static inline int __init get_mem_size(void)
775{
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800776#if defined(EBIU_SDBCTL)
777# if defined(BF561_FAMILY)
Mike Frysingera086ee22008-04-25 02:04:05 +0800778 int ret = 0;
779 u32 sdbctl = bfin_read_EBIU_SDBCTL();
780 ret += EBSZ_TO_MEG(sdbctl >> 0);
781 ret += EBSZ_TO_MEG(sdbctl >> 8);
782 ret += EBSZ_TO_MEG(sdbctl >> 16);
783 ret += EBSZ_TO_MEG(sdbctl >> 24);
784 return ret;
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800785# else
Mike Frysingera086ee22008-04-25 02:04:05 +0800786 return EBSZ_TO_MEG(bfin_read_EBIU_SDBCTL());
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800787# endif
788#elif defined(EBIU_DDRCTL1)
Michael Hennerich1e780422008-04-25 04:31:23 +0800789 u32 ddrctl = bfin_read_EBIU_DDRCTL1();
790 int ret = 0;
791 switch (ddrctl & 0xc0000) {
792 case DEVSZ_64: ret = 64 / 8;
793 case DEVSZ_128: ret = 128 / 8;
794 case DEVSZ_256: ret = 256 / 8;
795 case DEVSZ_512: ret = 512 / 8;
Mike Frysingera086ee22008-04-25 02:04:05 +0800796 }
Michael Hennerich1e780422008-04-25 04:31:23 +0800797 switch (ddrctl & 0x30000) {
798 case DEVWD_4: ret *= 2;
799 case DEVWD_8: ret *= 2;
800 case DEVWD_16: break;
801 }
Mike Frysingerb1b154e2008-07-26 18:02:05 +0800802 if ((ddrctl & 0xc000) == 0x4000)
803 ret *= 2;
Michael Hennerich1e780422008-04-25 04:31:23 +0800804 return ret;
Mike Frysingera086ee22008-04-25 02:04:05 +0800805#endif
806 BUG();
807}
808
Yi Li856783b2008-02-09 02:26:01 +0800809void __init setup_arch(char **cmdline_p)
810{
Mike Frysinger9f8e8952008-04-24 06:20:11 +0800811 unsigned long sclk, cclk;
Yi Li856783b2008-02-09 02:26:01 +0800812
Robin Getzbd854c02009-06-18 22:53:43 +0000813 /* Check to make sure we are running on the right processor */
814 if (unlikely(CPUID != bfin_cpuid()))
815 printk(KERN_ERR "ERROR: Not running on ADSP-%s: unknown CPUID 0x%04x Rev 0.%d\n",
816 CPU, bfin_cpuid(), bfin_revid());
817
Yi Li856783b2008-02-09 02:26:01 +0800818#ifdef CONFIG_DUMMY_CONSOLE
819 conswitchp = &dummy_con;
820#endif
821
822#if defined(CONFIG_CMDLINE_BOOL)
823 strncpy(&command_line[0], CONFIG_CMDLINE, sizeof(command_line));
824 command_line[sizeof(command_line) - 1] = 0;
825#endif
826
827 /* Keep a copy of command line */
828 *cmdline_p = &command_line[0];
829 memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
830 boot_command_line[COMMAND_LINE_SIZE - 1] = '\0';
831
Yi Li856783b2008-02-09 02:26:01 +0800832 memset(&bfin_memmap, 0, sizeof(bfin_memmap));
833
Robin Getzbd854c02009-06-18 22:53:43 +0000834 /* If the user does not specify things on the command line, use
835 * what the bootloader set things up as
836 */
837 physical_mem_end = 0;
Yi Li856783b2008-02-09 02:26:01 +0800838 parse_cmdline_early(&command_line[0]);
839
Robin Getzbd854c02009-06-18 22:53:43 +0000840 if (_ramend == 0)
841 _ramend = get_mem_size() * 1024 * 1024;
842
Yi Li856783b2008-02-09 02:26:01 +0800843 if (physical_mem_end == 0)
844 physical_mem_end = _ramend;
845
846 memory_setup();
847
Mike Frysinger7e64aca2008-08-06 17:17:10 +0800848 /* Initialize Async memory banks */
849 bfin_write_EBIU_AMBCTL0(AMBCTL0VAL);
850 bfin_write_EBIU_AMBCTL1(AMBCTL1VAL);
851 bfin_write_EBIU_AMGCTL(AMGCTLVAL);
852#ifdef CONFIG_EBIU_MBSCTLVAL
853 bfin_write_EBIU_MBSCTL(CONFIG_EBIU_MBSCTLVAL);
854 bfin_write_EBIU_MODE(CONFIG_EBIU_MODEVAL);
855 bfin_write_EBIU_FCTL(CONFIG_EBIU_FCTLVAL);
856#endif
857
Yi Li856783b2008-02-09 02:26:01 +0800858 cclk = get_cclk();
859 sclk = get_sclk();
860
Sonic Zhang7f3aee32009-05-07 10:04:19 +0000861 if ((ANOMALY_05000273 || ANOMALY_05000274) && (cclk >> 1) < sclk)
862 panic("ANOMALY 05000273 or 05000274: CCLK must be >= 2*SCLK");
Yi Li856783b2008-02-09 02:26:01 +0800863
864#ifdef BF561_FAMILY
865 if (ANOMALY_05000266) {
866 bfin_read_IMDMA_D0_IRQ_STATUS();
867 bfin_read_IMDMA_D1_IRQ_STATUS();
868 }
869#endif
870 printk(KERN_INFO "Hardware Trace ");
871 if (bfin_read_TBUFCTL() & 0x1)
Joe Perchesad361c92009-07-06 13:05:40 -0700872 printk(KERN_CONT "Active ");
Yi Li856783b2008-02-09 02:26:01 +0800873 else
Joe Perchesad361c92009-07-06 13:05:40 -0700874 printk(KERN_CONT "Off ");
Yi Li856783b2008-02-09 02:26:01 +0800875 if (bfin_read_TBUFCTL() & 0x2)
Joe Perchesad361c92009-07-06 13:05:40 -0700876 printk(KERN_CONT "and Enabled\n");
Yi Li856783b2008-02-09 02:26:01 +0800877 else
Joe Perchesad361c92009-07-06 13:05:40 -0700878 printk(KERN_CONT "and Disabled\n");
Yi Li856783b2008-02-09 02:26:01 +0800879
Robin Getz76e8fe42009-02-04 16:49:45 +0800880 printk(KERN_INFO "Boot Mode: %i\n", bfin_read_SYSCR() & 0xF);
881
Mike Frysingered1fb602009-02-04 16:49:45 +0800882 /* Newer parts mirror SWRST bits in SYSCR */
883#if defined(CONFIG_BF53x) || defined(CONFIG_BF561) || \
884 defined(CONFIG_BF538) || defined(CONFIG_BF539)
Robin Getz7728ec32007-10-29 18:12:15 +0800885 _bfin_swrst = bfin_read_SWRST();
Mike Frysingered1fb602009-02-04 16:49:45 +0800886#else
Sonic Zhang0de4adf2009-06-15 07:39:19 +0000887 /* Clear boot mode field */
888 _bfin_swrst = bfin_read_SYSCR() & ~0xf;
Mike Frysingered1fb602009-02-04 16:49:45 +0800889#endif
Robin Getz7728ec32007-10-29 18:12:15 +0800890
Robin Getz0c7a6b22008-10-08 16:27:12 +0800891#ifdef CONFIG_DEBUG_DOUBLEFAULT_PRINT
892 bfin_write_SWRST(_bfin_swrst & ~DOUBLE_FAULT);
893#endif
894#ifdef CONFIG_DEBUG_DOUBLEFAULT_RESET
895 bfin_write_SWRST(_bfin_swrst | DOUBLE_FAULT);
896#endif
Robin Getz2d200982008-07-26 19:41:40 +0800897
Graf Yang8f658732008-11-18 17:48:22 +0800898#ifdef CONFIG_SMP
899 if (_bfin_swrst & SWRST_DBL_FAULT_A) {
900#else
Robin Getz0c7a6b22008-10-08 16:27:12 +0800901 if (_bfin_swrst & RESET_DOUBLE) {
Graf Yang8f658732008-11-18 17:48:22 +0800902#endif
Robin Getz0c7a6b22008-10-08 16:27:12 +0800903 printk(KERN_EMERG "Recovering from DOUBLE FAULT event\n");
904#ifdef CONFIG_DEBUG_DOUBLEFAULT
905 /* We assume the crashing kernel, and the current symbol table match */
906 printk(KERN_EMERG " While handling exception (EXCAUSE = 0x%x) at %pF\n",
907 (int)init_saved_seqstat & SEQSTAT_EXCAUSE, init_saved_retx);
908 printk(KERN_NOTICE " DCPLB_FAULT_ADDR: %pF\n", init_saved_dcplb_fault_addr);
909 printk(KERN_NOTICE " ICPLB_FAULT_ADDR: %pF\n", init_saved_icplb_fault_addr);
910#endif
911 printk(KERN_NOTICE " The instruction at %pF caused a double exception\n",
912 init_retx);
913 } else if (_bfin_swrst & RESET_WDOG)
Robin Getz7728ec32007-10-29 18:12:15 +0800914 printk(KERN_INFO "Recovering from Watchdog event\n");
915 else if (_bfin_swrst & RESET_SOFTWARE)
916 printk(KERN_NOTICE "Reset caused by Software reset\n");
917
Michael Hennerich972de7d2009-02-04 16:49:45 +0800918 printk(KERN_INFO "Blackfin support (C) 2004-2009 Analog Devices, Inc.\n");
Jie Zhangde3025f2007-06-25 18:04:12 +0800919 if (bfin_compiled_revid() == 0xffff)
920 printk(KERN_INFO "Compiled for ADSP-%s Rev any\n", CPU);
921 else if (bfin_compiled_revid() == -1)
922 printk(KERN_INFO "Compiled for ADSP-%s Rev none\n", CPU);
923 else
924 printk(KERN_INFO "Compiled for ADSP-%s Rev 0.%d\n", CPU, bfin_compiled_revid());
Robin Getze482cad2008-10-10 18:21:45 +0800925
Robin Getzbd854c02009-06-18 22:53:43 +0000926 if (likely(CPUID == bfin_cpuid())) {
Robin Getze482cad2008-10-10 18:21:45 +0800927 if (bfin_revid() != bfin_compiled_revid()) {
928 if (bfin_compiled_revid() == -1)
929 printk(KERN_ERR "Warning: Compiled for Rev none, but running on Rev %d\n",
930 bfin_revid());
Robin Getz7419a322009-01-07 23:14:39 +0800931 else if (bfin_compiled_revid() != 0xffff) {
Robin Getze482cad2008-10-10 18:21:45 +0800932 printk(KERN_ERR "Warning: Compiled for Rev %d, but running on Rev %d\n",
933 bfin_compiled_revid(), bfin_revid());
Robin Getz7419a322009-01-07 23:14:39 +0800934 if (bfin_compiled_revid() > bfin_revid())
Mike Frysingerd8804ad2009-04-29 06:26:46 +0000935 panic("Error: you are missing anomaly workarounds for this rev");
Robin Getz7419a322009-01-07 23:14:39 +0800936 }
Robin Getze482cad2008-10-10 18:21:45 +0800937 }
Mike Frysingerda986b92008-10-28 13:58:15 +0800938 if (bfin_revid() < CONFIG_BF_REV_MIN || bfin_revid() > CONFIG_BF_REV_MAX)
Robin Getze482cad2008-10-10 18:21:45 +0800939 printk(KERN_ERR "Warning: Unsupported Chip Revision ADSP-%s Rev 0.%d detected\n",
940 CPU, bfin_revid());
Jie Zhangde3025f2007-06-25 18:04:12 +0800941 }
Mike Frysinger0c0497c2008-10-09 17:32:28 +0800942
Bryan Wu1394f032007-05-06 14:50:22 -0700943 printk(KERN_INFO "Blackfin Linux support by http://blackfin.uclinux.org/\n");
944
Mike Frysingerb5c0e2e2007-09-12 17:31:59 +0800945 printk(KERN_INFO "Processor Speed: %lu MHz core clock and %lu MHz System Clock\n",
Graf Yang8f658732008-11-18 17:48:22 +0800946 cclk / 1000000, sclk / 1000000);
Bryan Wu1394f032007-05-06 14:50:22 -0700947
Yi Li856783b2008-02-09 02:26:01 +0800948 setup_bootmem_allocator();
Bryan Wu1394f032007-05-06 14:50:22 -0700949
Bryan Wu1394f032007-05-06 14:50:22 -0700950 paging_init();
951
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800952 /* Copy atomic sequences to their fixed location, and sanity check that
953 these locations are the ones that we advertise to userspace. */
954 memcpy((void *)FIXED_CODE_START, &fixed_code_start,
955 FIXED_CODE_END - FIXED_CODE_START);
956 BUG_ON((char *)&sigreturn_stub - (char *)&fixed_code_start
957 != SIGRETURN_STUB - FIXED_CODE_START);
958 BUG_ON((char *)&atomic_xchg32 - (char *)&fixed_code_start
959 != ATOMIC_XCHG32 - FIXED_CODE_START);
960 BUG_ON((char *)&atomic_cas32 - (char *)&fixed_code_start
961 != ATOMIC_CAS32 - FIXED_CODE_START);
962 BUG_ON((char *)&atomic_add32 - (char *)&fixed_code_start
963 != ATOMIC_ADD32 - FIXED_CODE_START);
964 BUG_ON((char *)&atomic_sub32 - (char *)&fixed_code_start
965 != ATOMIC_SUB32 - FIXED_CODE_START);
966 BUG_ON((char *)&atomic_ior32 - (char *)&fixed_code_start
967 != ATOMIC_IOR32 - FIXED_CODE_START);
968 BUG_ON((char *)&atomic_and32 - (char *)&fixed_code_start
969 != ATOMIC_AND32 - FIXED_CODE_START);
970 BUG_ON((char *)&atomic_xor32 - (char *)&fixed_code_start
971 != ATOMIC_XOR32 - FIXED_CODE_START);
Robin Getz9f336a52007-10-29 18:23:28 +0800972 BUG_ON((char *)&safe_user_instruction - (char *)&fixed_code_start
973 != SAFE_USER_INSTRUCTION - FIXED_CODE_START);
Bernd Schmidt29440a22007-07-12 16:25:29 +0800974
Graf Yang8f658732008-11-18 17:48:22 +0800975#ifdef CONFIG_SMP
976 platform_init_cpus();
977#endif
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800978 init_exception_vectors();
Graf Yang8f658732008-11-18 17:48:22 +0800979 bfin_cache_init(); /* Initialize caches for the boot CPU */
Bryan Wu1394f032007-05-06 14:50:22 -0700980}
981
Bryan Wu1394f032007-05-06 14:50:22 -0700982static int __init topology_init(void)
983{
Graf Yang8f658732008-11-18 17:48:22 +0800984 unsigned int cpu;
985 /* Record CPU-private information for the boot processor. */
986 bfin_setup_cpudata(0);
Michael Hennerich6cda2e92008-02-02 15:10:51 +0800987
988 for_each_possible_cpu(cpu) {
Graf Yang8f658732008-11-18 17:48:22 +0800989 register_cpu(&per_cpu(cpu_data, cpu).cpu, cpu);
Michael Hennerich6cda2e92008-02-02 15:10:51 +0800990 }
991
Bryan Wu1394f032007-05-06 14:50:22 -0700992 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700993}
994
995subsys_initcall(topology_init);
996
Mike Frysinger7f1e2f92009-01-07 23:14:38 +0800997/* Get the input clock frequency */
998static u_long cached_clkin_hz = CONFIG_CLKIN_HZ;
999static u_long get_clkin_hz(void)
1000{
1001 return cached_clkin_hz;
1002}
1003static int __init early_init_clkin_hz(char *buf)
1004{
1005 cached_clkin_hz = simple_strtoul(buf, NULL, 0);
Mike Frysinger508808c2009-01-07 23:14:38 +08001006#ifdef BFIN_KERNEL_CLOCK
1007 if (cached_clkin_hz != CONFIG_CLKIN_HZ)
1008 panic("cannot change clkin_hz when reprogramming clocks");
1009#endif
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001010 return 1;
1011}
1012early_param("clkin_hz=", early_init_clkin_hz);
1013
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001014/* Get the voltage input multiplier */
Mike Frysinger52a07812007-06-11 15:31:30 +08001015static u_long get_vco(void)
Bryan Wu1394f032007-05-06 14:50:22 -07001016{
Mike Frysingere32f55d2009-01-07 23:14:39 +08001017 static u_long cached_vco;
1018 u_long msel, pll_ctl;
Bryan Wu1394f032007-05-06 14:50:22 -07001019
Mike Frysingere32f55d2009-01-07 23:14:39 +08001020 /* The assumption here is that VCO never changes at runtime.
1021 * If, someday, we support that, then we'll have to change this.
1022 */
1023 if (cached_vco)
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001024 return cached_vco;
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001025
Mike Frysingere32f55d2009-01-07 23:14:39 +08001026 pll_ctl = bfin_read_PLL_CTL();
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001027 msel = (pll_ctl >> 9) & 0x3F;
Bryan Wu1394f032007-05-06 14:50:22 -07001028 if (0 == msel)
1029 msel = 64;
1030
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001031 cached_vco = get_clkin_hz();
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001032 cached_vco >>= (1 & pll_ctl); /* DF bit */
1033 cached_vco *= msel;
1034 return cached_vco;
Bryan Wu1394f032007-05-06 14:50:22 -07001035}
1036
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001037/* Get the Core clock */
Bryan Wu1394f032007-05-06 14:50:22 -07001038u_long get_cclk(void)
1039{
Mike Frysingere32f55d2009-01-07 23:14:39 +08001040 static u_long cached_cclk_pll_div, cached_cclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001041 u_long csel, ssel;
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001042
Bryan Wu1394f032007-05-06 14:50:22 -07001043 if (bfin_read_PLL_STAT() & 0x1)
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001044 return get_clkin_hz();
Bryan Wu1394f032007-05-06 14:50:22 -07001045
1046 ssel = bfin_read_PLL_DIV();
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001047 if (ssel == cached_cclk_pll_div)
1048 return cached_cclk;
1049 else
1050 cached_cclk_pll_div = ssel;
1051
Bryan Wu1394f032007-05-06 14:50:22 -07001052 csel = ((ssel >> 4) & 0x03);
1053 ssel &= 0xf;
1054 if (ssel && ssel < (1 << csel)) /* SCLK > CCLK */
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001055 cached_cclk = get_vco() / ssel;
1056 else
1057 cached_cclk = get_vco() >> csel;
1058 return cached_cclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001059}
Bryan Wu1394f032007-05-06 14:50:22 -07001060EXPORT_SYMBOL(get_cclk);
1061
1062/* Get the System clock */
1063u_long get_sclk(void)
1064{
Mike Frysingere32f55d2009-01-07 23:14:39 +08001065 static u_long cached_sclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001066 u_long ssel;
1067
Mike Frysingere32f55d2009-01-07 23:14:39 +08001068 /* The assumption here is that SCLK never changes at runtime.
1069 * If, someday, we support that, then we'll have to change this.
1070 */
1071 if (cached_sclk)
1072 return cached_sclk;
1073
Bryan Wu1394f032007-05-06 14:50:22 -07001074 if (bfin_read_PLL_STAT() & 0x1)
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001075 return get_clkin_hz();
Bryan Wu1394f032007-05-06 14:50:22 -07001076
Mike Frysingere32f55d2009-01-07 23:14:39 +08001077 ssel = bfin_read_PLL_DIV() & 0xf;
Bryan Wu1394f032007-05-06 14:50:22 -07001078 if (0 == ssel) {
1079 printk(KERN_WARNING "Invalid System Clock\n");
1080 ssel = 1;
1081 }
1082
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001083 cached_sclk = get_vco() / ssel;
1084 return cached_sclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001085}
Bryan Wu1394f032007-05-06 14:50:22 -07001086EXPORT_SYMBOL(get_sclk);
1087
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001088unsigned long sclk_to_usecs(unsigned long sclk)
1089{
Mike Frysinger1754a5d2007-11-23 11:28:11 +08001090 u64 tmp = USEC_PER_SEC * (u64)sclk;
1091 do_div(tmp, get_sclk());
1092 return tmp;
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001093}
1094EXPORT_SYMBOL(sclk_to_usecs);
1095
1096unsigned long usecs_to_sclk(unsigned long usecs)
1097{
Mike Frysinger1754a5d2007-11-23 11:28:11 +08001098 u64 tmp = get_sclk() * (u64)usecs;
1099 do_div(tmp, USEC_PER_SEC);
1100 return tmp;
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001101}
1102EXPORT_SYMBOL(usecs_to_sclk);
1103
Bryan Wu1394f032007-05-06 14:50:22 -07001104/*
1105 * Get CPU information for use by the procfs.
1106 */
1107static int show_cpuinfo(struct seq_file *m, void *v)
1108{
Mike Frysinger066954a2007-10-21 22:36:06 +08001109 char *cpu, *mmu, *fpu, *vendor, *cache;
Bryan Wu1394f032007-05-06 14:50:22 -07001110 uint32_t revid;
Mike Frysinger275123e2009-01-07 23:14:39 +08001111 int cpu_num = *(unsigned int *)v;
Michael Hennericha5f07172008-11-18 18:04:31 +08001112 u_long sclk, cclk;
Robin Getz9de3a0b2008-07-26 19:39:19 +08001113 u_int icache_size = BFIN_ICACHESIZE / 1024, dcache_size = 0, dsup_banks = 0;
Mike Frysinger275123e2009-01-07 23:14:39 +08001114 struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu_num);
Bryan Wu1394f032007-05-06 14:50:22 -07001115
1116 cpu = CPU;
1117 mmu = "none";
1118 fpu = "none";
1119 revid = bfin_revid();
Bryan Wu1394f032007-05-06 14:50:22 -07001120
Bryan Wu1394f032007-05-06 14:50:22 -07001121 sclk = get_sclk();
Michael Hennericha5f07172008-11-18 18:04:31 +08001122 cclk = get_cclk();
Bryan Wu1394f032007-05-06 14:50:22 -07001123
Robin Getz73b0c0b2007-10-21 17:03:31 +08001124 switch (bfin_read_CHIPID() & CHIPID_MANUFACTURE) {
Mike Frysinger066954a2007-10-21 22:36:06 +08001125 case 0xca:
1126 vendor = "Analog Devices";
Robin Getz73b0c0b2007-10-21 17:03:31 +08001127 break;
1128 default:
Mike Frysinger066954a2007-10-21 22:36:06 +08001129 vendor = "unknown";
1130 break;
Robin Getz73b0c0b2007-10-21 17:03:31 +08001131 }
Bryan Wu1394f032007-05-06 14:50:22 -07001132
Mike Frysinger275123e2009-01-07 23:14:39 +08001133 seq_printf(m, "processor\t: %d\n" "vendor_id\t: %s\n", cpu_num, vendor);
Robin Getze482cad2008-10-10 18:21:45 +08001134
1135 if (CPUID == bfin_cpuid())
1136 seq_printf(m, "cpu family\t: 0x%04x\n", CPUID);
1137 else
1138 seq_printf(m, "cpu family\t: Compiled for:0x%04x, running on:0x%04x\n",
1139 CPUID, bfin_cpuid());
1140
1141 seq_printf(m, "model name\t: ADSP-%s %lu(MHz CCLK) %lu(MHz SCLK) (%s)\n"
Robin Getz2466ac62009-06-08 17:52:27 +00001142 "stepping\t: %d ",
Michael Hennericha5f07172008-11-18 18:04:31 +08001143 cpu, cclk/1000000, sclk/1000000,
Robin Getz253bcf42008-04-24 05:57:13 +08001144#ifdef CONFIG_MPU
1145 "mpu on",
1146#else
1147 "mpu off",
1148#endif
Robin Getz73b0c0b2007-10-21 17:03:31 +08001149 revid);
Bryan Wu1394f032007-05-06 14:50:22 -07001150
Robin Getz2466ac62009-06-08 17:52:27 +00001151 if (bfin_revid() != bfin_compiled_revid()) {
1152 if (bfin_compiled_revid() == -1)
1153 seq_printf(m, "(Compiled for Rev none)");
1154 else if (bfin_compiled_revid() == 0xffff)
1155 seq_printf(m, "(Compiled for Rev any)");
1156 else
1157 seq_printf(m, "(Compiled for Rev %d)", bfin_compiled_revid());
1158 }
1159
1160 seq_printf(m, "\ncpu MHz\t\t: %lu.%03lu/%lu.%03lu\n",
Michael Hennericha5f07172008-11-18 18:04:31 +08001161 cclk/1000000, cclk%1000000,
Robin Getz73b0c0b2007-10-21 17:03:31 +08001162 sclk/1000000, sclk%1000000);
1163 seq_printf(m, "bogomips\t: %lu.%02lu\n"
1164 "Calibration\t: %lu loops\n",
Michael Hennerichc70c7542009-07-09 09:58:52 +00001165 (loops_per_jiffy * HZ) / 500000,
1166 ((loops_per_jiffy * HZ) / 5000) % 100,
1167 (loops_per_jiffy * HZ));
Robin Getz73b0c0b2007-10-21 17:03:31 +08001168
1169 /* Check Cache configutation */
Graf Yang8f658732008-11-18 17:48:22 +08001170 switch (cpudata->dmemctl & (1 << DMC0_P | 1 << DMC1_P)) {
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001171 case ACACHE_BSRAM:
Mike Frysinger066954a2007-10-21 22:36:06 +08001172 cache = "dbank-A/B\t: cache/sram";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001173 dcache_size = 16;
1174 dsup_banks = 1;
1175 break;
1176 case ACACHE_BCACHE:
Mike Frysinger066954a2007-10-21 22:36:06 +08001177 cache = "dbank-A/B\t: cache/cache";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001178 dcache_size = 32;
1179 dsup_banks = 2;
1180 break;
1181 case ASRAM_BSRAM:
Mike Frysinger066954a2007-10-21 22:36:06 +08001182 cache = "dbank-A/B\t: sram/sram";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001183 dcache_size = 0;
1184 dsup_banks = 0;
1185 break;
1186 default:
Mike Frysinger066954a2007-10-21 22:36:06 +08001187 cache = "unknown";
Robin Getz73b0c0b2007-10-21 17:03:31 +08001188 dcache_size = 0;
1189 dsup_banks = 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001190 break;
1191 }
1192
Robin Getz73b0c0b2007-10-21 17:03:31 +08001193 /* Is it turned on? */
Graf Yang8f658732008-11-18 17:48:22 +08001194 if ((cpudata->dmemctl & (ENDCPLB | DMC_ENABLE)) != (ENDCPLB | DMC_ENABLE))
Robin Getz73b0c0b2007-10-21 17:03:31 +08001195 dcache_size = 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001196
Graf Yang8f658732008-11-18 17:48:22 +08001197 if ((cpudata->imemctl & (IMC | ENICPLB)) != (IMC | ENICPLB))
Robin Getz9de3a0b2008-07-26 19:39:19 +08001198 icache_size = 0;
1199
Robin Getz73b0c0b2007-10-21 17:03:31 +08001200 seq_printf(m, "cache size\t: %d KB(L1 icache) "
Jie Zhang41ba6532009-06-16 09:48:33 +00001201 "%d KB(L1 dcache) %d KB(L2 cache)\n",
1202 icache_size, dcache_size, 0);
Robin Getz73b0c0b2007-10-21 17:03:31 +08001203 seq_printf(m, "%s\n", cache);
Jie Zhang41ba6532009-06-16 09:48:33 +00001204 seq_printf(m, "external memory\t: "
1205#if defined(CONFIG_BFIN_EXTMEM_ICACHEABLE)
1206 "cacheable"
1207#else
1208 "uncacheable"
1209#endif
1210 " in instruction cache\n");
1211 seq_printf(m, "external memory\t: "
1212#if defined(CONFIG_BFIN_EXTMEM_WRITEBACK)
1213 "cacheable (write-back)"
1214#elif defined(CONFIG_BFIN_EXTMEM_WRITETHROUGH)
1215 "cacheable (write-through)"
1216#else
1217 "uncacheable"
1218#endif
1219 " in data cache\n");
Robin Getz73b0c0b2007-10-21 17:03:31 +08001220
Robin Getz9de3a0b2008-07-26 19:39:19 +08001221 if (icache_size)
1222 seq_printf(m, "icache setup\t: %d Sub-banks/%d Ways, %d Lines/Way\n",
1223 BFIN_ISUBBANKS, BFIN_IWAYS, BFIN_ILINES);
1224 else
1225 seq_printf(m, "icache setup\t: off\n");
1226
Bryan Wu1394f032007-05-06 14:50:22 -07001227 seq_printf(m,
Robin Getz73b0c0b2007-10-21 17:03:31 +08001228 "dcache setup\t: %d Super-banks/%d Sub-banks/%d Ways, %d Lines/Way\n",
Robin Getz3bebca22007-10-10 23:55:26 +08001229 dsup_banks, BFIN_DSUBBANKS, BFIN_DWAYS,
1230 BFIN_DLINES);
Graf Yang8f658732008-11-18 17:48:22 +08001231#ifdef __ARCH_SYNC_CORE_DCACHE
Mike Frysinger275123e2009-01-07 23:14:39 +08001232 seq_printf(m, "SMP Dcache Flushes\t: %lu\n\n", cpudata->dcache_invld_count);
Graf Yang8f658732008-11-18 17:48:22 +08001233#endif
Sonic Zhang47e9ded2009-06-10 08:57:08 +00001234#ifdef __ARCH_SYNC_CORE_ICACHE
1235 seq_printf(m, "SMP Icache Flushes\t: %lu\n\n", cpudata->icache_invld_count);
1236#endif
Robin Getz3bebca22007-10-10 23:55:26 +08001237#ifdef CONFIG_BFIN_ICACHE_LOCK
Graf Yang8f658732008-11-18 17:48:22 +08001238 switch ((cpudata->imemctl >> 3) & WAYALL_L) {
Bryan Wu1394f032007-05-06 14:50:22 -07001239 case WAY0_L:
1240 seq_printf(m, "Way0 Locked-Down\n");
1241 break;
1242 case WAY1_L:
1243 seq_printf(m, "Way1 Locked-Down\n");
1244 break;
1245 case WAY01_L:
1246 seq_printf(m, "Way0,Way1 Locked-Down\n");
1247 break;
1248 case WAY2_L:
1249 seq_printf(m, "Way2 Locked-Down\n");
1250 break;
1251 case WAY02_L:
1252 seq_printf(m, "Way0,Way2 Locked-Down\n");
1253 break;
1254 case WAY12_L:
1255 seq_printf(m, "Way1,Way2 Locked-Down\n");
1256 break;
1257 case WAY012_L:
1258 seq_printf(m, "Way0,Way1 & Way2 Locked-Down\n");
1259 break;
1260 case WAY3_L:
1261 seq_printf(m, "Way3 Locked-Down\n");
1262 break;
1263 case WAY03_L:
1264 seq_printf(m, "Way0,Way3 Locked-Down\n");
1265 break;
1266 case WAY13_L:
1267 seq_printf(m, "Way1,Way3 Locked-Down\n");
1268 break;
1269 case WAY013_L:
1270 seq_printf(m, "Way 0,Way1,Way3 Locked-Down\n");
1271 break;
1272 case WAY32_L:
1273 seq_printf(m, "Way3,Way2 Locked-Down\n");
1274 break;
1275 case WAY320_L:
1276 seq_printf(m, "Way3,Way2,Way0 Locked-Down\n");
1277 break;
1278 case WAY321_L:
1279 seq_printf(m, "Way3,Way2,Way1 Locked-Down\n");
1280 break;
1281 case WAYALL_L:
1282 seq_printf(m, "All Ways are locked\n");
1283 break;
1284 default:
1285 seq_printf(m, "No Ways are locked\n");
1286 }
1287#endif
Mike Frysinger275123e2009-01-07 23:14:39 +08001288
1289 if (cpu_num != num_possible_cpus() - 1)
Graf Yang8f658732008-11-18 17:48:22 +08001290 return 0;
1291
Jie Zhang41ba6532009-06-16 09:48:33 +00001292 if (L2_LENGTH) {
Mike Frysinger275123e2009-01-07 23:14:39 +08001293 seq_printf(m, "L2 SRAM\t\t: %dKB\n", L2_LENGTH/0x400);
Jie Zhang41ba6532009-06-16 09:48:33 +00001294 seq_printf(m, "L2 SRAM\t\t: "
1295#if defined(CONFIG_BFIN_L2_ICACHEABLE)
1296 "cacheable"
1297#else
1298 "uncacheable"
1299#endif
1300 " in instruction cache\n");
1301 seq_printf(m, "L2 SRAM\t\t: "
1302#if defined(CONFIG_BFIN_L2_WRITEBACK)
1303 "cacheable (write-back)"
1304#elif defined(CONFIG_BFIN_L2_WRITETHROUGH)
1305 "cacheable (write-through)"
1306#else
1307 "uncacheable"
1308#endif
1309 " in data cache\n");
1310 }
Mike Frysinger066954a2007-10-21 22:36:06 +08001311 seq_printf(m, "board name\t: %s\n", bfin_board_name);
Robin Getz73b0c0b2007-10-21 17:03:31 +08001312 seq_printf(m, "board memory\t: %ld kB (0x%p -> 0x%p)\n",
1313 physical_mem_end >> 10, (void *)0, (void *)physical_mem_end);
1314 seq_printf(m, "kernel memory\t: %d kB (0x%p -> 0x%p)\n",
1315 ((int)memory_end - (int)_stext) >> 10,
1316 _stext,
1317 (void *)memory_end);
Graf Yang8f658732008-11-18 17:48:22 +08001318 seq_printf(m, "\n");
Robin Getz73b0c0b2007-10-21 17:03:31 +08001319
Bryan Wu1394f032007-05-06 14:50:22 -07001320 return 0;
1321}
1322
1323static void *c_start(struct seq_file *m, loff_t *pos)
1324{
Graf Yang55f2fea2008-10-09 15:37:47 +08001325 if (*pos == 0)
1326 *pos = first_cpu(cpu_online_map);
1327 if (*pos >= num_online_cpus())
1328 return NULL;
1329
1330 return pos;
Bryan Wu1394f032007-05-06 14:50:22 -07001331}
1332
1333static void *c_next(struct seq_file *m, void *v, loff_t *pos)
1334{
Graf Yang55f2fea2008-10-09 15:37:47 +08001335 *pos = next_cpu(*pos, cpu_online_map);
1336
Bryan Wu1394f032007-05-06 14:50:22 -07001337 return c_start(m, pos);
1338}
1339
1340static void c_stop(struct seq_file *m, void *v)
1341{
1342}
1343
Jan Engelhardt03a44822008-02-08 04:21:19 -08001344const struct seq_operations cpuinfo_op = {
Bryan Wu1394f032007-05-06 14:50:22 -07001345 .start = c_start,
1346 .next = c_next,
1347 .stop = c_stop,
1348 .show = show_cpuinfo,
1349};
1350
Mike Frysinger5e10b4a2007-06-11 16:44:09 +08001351void __init cmdline_init(const char *r0)
Bryan Wu1394f032007-05-06 14:50:22 -07001352{
1353 if (r0)
Mike Frysinger52a07812007-06-11 15:31:30 +08001354 strncpy(command_line, r0, COMMAND_LINE_SIZE);
Bryan Wu1394f032007-05-06 14:50:22 -07001355}