blob: f5f516e817f40e717242e757aae8904b0559f997 [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);
120#endif
121#ifdef CONFIG_BFIN_DCACHE
122 printk(KERN_INFO "Data Cache Enabled for CPU%u"
Robin Getz3bebca22007-10-10 23:55:26 +0800123# if defined CONFIG_BFIN_WB
Bryan Wu1394f032007-05-06 14:50:22 -0700124 " (write-back)"
Robin Getz3bebca22007-10-10 23:55:26 +0800125# elif defined CONFIG_BFIN_WT
Bryan Wu1394f032007-05-06 14:50:22 -0700126 " (write-through)"
127# endif
Graf Yang8f658732008-11-18 17:48:22 +0800128 "\n", cpu);
Bryan Wu1394f032007-05-06 14:50:22 -0700129#endif
130}
131
Graf Yang8f658732008-11-18 17:48:22 +0800132void __cpuinit bfin_setup_cpudata(unsigned int cpu)
133{
134 struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu);
135
136 cpudata->idle = current;
137 cpudata->loops_per_jiffy = loops_per_jiffy;
Graf Yang8f658732008-11-18 17:48:22 +0800138 cpudata->imemctl = bfin_read_IMEM_CONTROL();
139 cpudata->dmemctl = bfin_read_DMEM_CONTROL();
140}
141
142void __init bfin_cache_init(void)
143{
144#if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
145 generate_cplb_tables();
146#endif
147 bfin_setup_caches(0);
148}
149
Graf Yang5b04f272008-10-08 17:32:57 +0800150void __init bfin_relocate_l1_mem(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700151{
152 unsigned long l1_code_length;
153 unsigned long l1_data_a_length;
154 unsigned long l1_data_b_length;
Sonic Zhang262c3822008-07-19 15:42:41 +0800155 unsigned long l2_length;
Bryan Wu1394f032007-05-06 14:50:22 -0700156
Robin Getzfecbd732009-04-23 20:49:43 +0000157 /*
158 * due to the ALIGN(4) in the arch/blackfin/kernel/vmlinux.lds.S
159 * we know that everything about l1 text/data is nice and aligned,
160 * so copy by 4 byte chunks, and don't worry about overlapping
161 * src/dest.
162 *
163 * We can't use the dma_memcpy functions, since they can call
164 * scheduler functions which might be in L1 :( and core writes
165 * into L1 instruction cause bad access errors, so we are stuck,
166 * we are required to use DMA, but can't use the common dma
167 * functions. We can't use memcpy either - since that might be
168 * going to be in the relocated L1
Bryan Wu1394f032007-05-06 14:50:22 -0700169 */
170
Robin Getzfecbd732009-04-23 20:49:43 +0000171 blackfin_dma_early_init();
Bryan Wu1394f032007-05-06 14:50:22 -0700172
Robin Getzfecbd732009-04-23 20:49:43 +0000173 /* if necessary, copy _stext_l1 to _etext_l1 to L1 instruction SRAM */
174 l1_code_length = _etext_l1 - _stext_l1;
175 if (l1_code_length)
176 early_dma_memcpy(_stext_l1, _l1_lma_start, l1_code_length);
177
178 /* if necessary, copy _sdata_l1 to _sbss_l1 to L1 data bank A SRAM */
Mike Frysinger3b1f26a2008-10-27 18:21:43 +0800179 l1_data_a_length = _sbss_l1 - _sdata_l1;
Robin Getzfecbd732009-04-23 20:49:43 +0000180 if (l1_data_a_length)
181 early_dma_memcpy(_sdata_l1, _l1_lma_start + l1_code_length, l1_data_a_length);
Bryan Wu1394f032007-05-06 14:50:22 -0700182
Robin Getzfecbd732009-04-23 20:49:43 +0000183 /* if necessary, copy _sdata_b_l1 to _sbss_b_l1 to L1 data bank B SRAM */
Mike Frysinger3b1f26a2008-10-27 18:21:43 +0800184 l1_data_b_length = _sbss_b_l1 - _sdata_b_l1;
Robin Getzfecbd732009-04-23 20:49:43 +0000185 if (l1_data_b_length)
186 early_dma_memcpy(_sdata_b_l1, _l1_lma_start + l1_code_length +
Bryan Wu1394f032007-05-06 14:50:22 -0700187 l1_data_a_length, l1_data_b_length);
Sonic Zhang262c3822008-07-19 15:42:41 +0800188
Robin Getzfecbd732009-04-23 20:49:43 +0000189 early_dma_memcpy_done();
190
191 /* if necessary, copy _stext_l2 to _edata_l2 to L2 SRAM */
Mike Frysinger07aa7be2008-08-13 16:16:11 +0800192 if (L2_LENGTH != 0) {
Mike Frysinger3b1f26a2008-10-27 18:21:43 +0800193 l2_length = _sbss_l2 - _stext_l2;
Robin Getzfecbd732009-04-23 20:49:43 +0000194 if (l2_length)
195 memcpy(_stext_l2, _l2_lma_start, l2_length);
Mike Frysinger07aa7be2008-08-13 16:16:11 +0800196 }
Bryan Wu1394f032007-05-06 14:50:22 -0700197}
198
Yi Li856783b2008-02-09 02:26:01 +0800199/* add_memory_region to memmap */
200static void __init add_memory_region(unsigned long long start,
201 unsigned long long size, int type)
202{
203 int i;
204
205 i = bfin_memmap.nr_map;
206
207 if (i == BFIN_MEMMAP_MAX) {
208 printk(KERN_ERR "Ooops! Too many entries in the memory map!\n");
209 return;
210 }
211
212 bfin_memmap.map[i].addr = start;
213 bfin_memmap.map[i].size = size;
214 bfin_memmap.map[i].type = type;
215 bfin_memmap.nr_map++;
216}
217
218/*
219 * Sanitize the boot memmap, removing overlaps.
220 */
221static int __init sanitize_memmap(struct bfin_memmap_entry *map, int *pnr_map)
222{
223 struct change_member *change_tmp;
224 unsigned long current_type, last_type;
225 unsigned long long last_addr;
226 int chgidx, still_changing;
227 int overlap_entries;
228 int new_entry;
229 int old_nr, new_nr, chg_nr;
230 int i;
231
232 /*
233 Visually we're performing the following (1,2,3,4 = memory types)
234
235 Sample memory map (w/overlaps):
236 ____22__________________
237 ______________________4_
238 ____1111________________
239 _44_____________________
240 11111111________________
241 ____________________33__
242 ___________44___________
243 __________33333_________
244 ______________22________
245 ___________________2222_
246 _________111111111______
247 _____________________11_
248 _________________4______
249
250 Sanitized equivalent (no overlap):
251 1_______________________
252 _44_____________________
253 ___1____________________
254 ____22__________________
255 ______11________________
256 _________1______________
257 __________3_____________
258 ___________44___________
259 _____________33_________
260 _______________2________
261 ________________1_______
262 _________________4______
263 ___________________2____
264 ____________________33__
265 ______________________4_
266 */
267 /* if there's only one memory region, don't bother */
268 if (*pnr_map < 2)
269 return -1;
270
271 old_nr = *pnr_map;
272
273 /* bail out if we find any unreasonable addresses in memmap */
274 for (i = 0; i < old_nr; i++)
275 if (map[i].addr + map[i].size < map[i].addr)
276 return -1;
277
278 /* create pointers for initial change-point information (for sorting) */
279 for (i = 0; i < 2*old_nr; i++)
280 change_point[i] = &change_point_list[i];
281
282 /* record all known change-points (starting and ending addresses),
283 omitting those that are for empty memory regions */
284 chgidx = 0;
Graf Yang8f658732008-11-18 17:48:22 +0800285 for (i = 0; i < old_nr; i++) {
Yi Li856783b2008-02-09 02:26:01 +0800286 if (map[i].size != 0) {
287 change_point[chgidx]->addr = map[i].addr;
288 change_point[chgidx++]->pentry = &map[i];
289 change_point[chgidx]->addr = map[i].addr + map[i].size;
290 change_point[chgidx++]->pentry = &map[i];
291 }
292 }
Graf Yang8f658732008-11-18 17:48:22 +0800293 chg_nr = chgidx; /* true number of change-points */
Yi Li856783b2008-02-09 02:26:01 +0800294
295 /* sort change-point list by memory addresses (low -> high) */
296 still_changing = 1;
Graf Yang8f658732008-11-18 17:48:22 +0800297 while (still_changing) {
Yi Li856783b2008-02-09 02:26:01 +0800298 still_changing = 0;
Graf Yang8f658732008-11-18 17:48:22 +0800299 for (i = 1; i < chg_nr; i++) {
Yi Li856783b2008-02-09 02:26:01 +0800300 /* if <current_addr> > <last_addr>, swap */
301 /* or, if current=<start_addr> & last=<end_addr>, swap */
302 if ((change_point[i]->addr < change_point[i-1]->addr) ||
303 ((change_point[i]->addr == change_point[i-1]->addr) &&
304 (change_point[i]->addr == change_point[i]->pentry->addr) &&
305 (change_point[i-1]->addr != change_point[i-1]->pentry->addr))
306 ) {
307 change_tmp = change_point[i];
308 change_point[i] = change_point[i-1];
309 change_point[i-1] = change_tmp;
310 still_changing = 1;
311 }
312 }
313 }
314
315 /* create a new memmap, removing overlaps */
Graf Yang8f658732008-11-18 17:48:22 +0800316 overlap_entries = 0; /* number of entries in the overlap table */
317 new_entry = 0; /* index for creating new memmap entries */
318 last_type = 0; /* start with undefined memory type */
319 last_addr = 0; /* start with 0 as last starting address */
Yi Li856783b2008-02-09 02:26:01 +0800320 /* loop through change-points, determining affect on the new memmap */
321 for (chgidx = 0; chgidx < chg_nr; chgidx++) {
322 /* keep track of all overlapping memmap entries */
323 if (change_point[chgidx]->addr == change_point[chgidx]->pentry->addr) {
324 /* add map entry to overlap list (> 1 entry implies an overlap) */
325 overlap_list[overlap_entries++] = change_point[chgidx]->pentry;
326 } else {
327 /* remove entry from list (order independent, so swap with last) */
328 for (i = 0; i < overlap_entries; i++) {
329 if (overlap_list[i] == change_point[chgidx]->pentry)
330 overlap_list[i] = overlap_list[overlap_entries-1];
331 }
332 overlap_entries--;
333 }
334 /* if there are overlapping entries, decide which "type" to use */
335 /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */
336 current_type = 0;
337 for (i = 0; i < overlap_entries; i++)
338 if (overlap_list[i]->type > current_type)
339 current_type = overlap_list[i]->type;
340 /* continue building up new memmap based on this information */
Graf Yang8f658732008-11-18 17:48:22 +0800341 if (current_type != last_type) {
Yi Li856783b2008-02-09 02:26:01 +0800342 if (last_type != 0) {
343 new_map[new_entry].size =
344 change_point[chgidx]->addr - last_addr;
345 /* move forward only if the new size was non-zero */
346 if (new_map[new_entry].size != 0)
347 if (++new_entry >= BFIN_MEMMAP_MAX)
Graf Yang8f658732008-11-18 17:48:22 +0800348 break; /* no more space left for new entries */
Yi Li856783b2008-02-09 02:26:01 +0800349 }
350 if (current_type != 0) {
351 new_map[new_entry].addr = change_point[chgidx]->addr;
352 new_map[new_entry].type = current_type;
353 last_addr = change_point[chgidx]->addr;
354 }
355 last_type = current_type;
356 }
357 }
Graf Yang8f658732008-11-18 17:48:22 +0800358 new_nr = new_entry; /* retain count for new entries */
Yi Li856783b2008-02-09 02:26:01 +0800359
Graf Yang8f658732008-11-18 17:48:22 +0800360 /* copy new mapping into original location */
Yi Li856783b2008-02-09 02:26:01 +0800361 memcpy(map, new_map, new_nr*sizeof(struct bfin_memmap_entry));
362 *pnr_map = new_nr;
363
364 return 0;
365}
366
367static void __init print_memory_map(char *who)
368{
369 int i;
370
371 for (i = 0; i < bfin_memmap.nr_map; i++) {
372 printk(KERN_DEBUG " %s: %016Lx - %016Lx ", who,
373 bfin_memmap.map[i].addr,
374 bfin_memmap.map[i].addr + bfin_memmap.map[i].size);
375 switch (bfin_memmap.map[i].type) {
376 case BFIN_MEMMAP_RAM:
377 printk("(usable)\n");
378 break;
379 case BFIN_MEMMAP_RESERVED:
380 printk("(reserved)\n");
381 break;
382 default: printk("type %lu\n", bfin_memmap.map[i].type);
383 break;
384 }
385 }
386}
387
388static __init int parse_memmap(char *arg)
389{
390 unsigned long long start_at, mem_size;
391
392 if (!arg)
393 return -EINVAL;
394
395 mem_size = memparse(arg, &arg);
396 if (*arg == '@') {
397 start_at = memparse(arg+1, &arg);
398 add_memory_region(start_at, mem_size, BFIN_MEMMAP_RAM);
399 } else if (*arg == '$') {
400 start_at = memparse(arg+1, &arg);
401 add_memory_region(start_at, mem_size, BFIN_MEMMAP_RESERVED);
402 }
403
404 return 0;
405}
406
Bryan Wu1394f032007-05-06 14:50:22 -0700407/*
408 * Initial parsing of the command line. Currently, we support:
409 * - Controlling the linux memory size: mem=xxx[KMG]
410 * - Controlling the physical memory size: max_mem=xxx[KMG][$][#]
411 * $ -> reserved memory is dcacheable
412 * # -> reserved memory is icacheable
Yi Li856783b2008-02-09 02:26:01 +0800413 * - "memmap=XXX[KkmM][@][$]XXX[KkmM]" defines a memory region
414 * @ from <start> to <start>+<mem>, type RAM
415 * $ from <start> to <start>+<mem>, type RESERVED
Bryan Wu1394f032007-05-06 14:50:22 -0700416 */
417static __init void parse_cmdline_early(char *cmdline_p)
418{
419 char c = ' ', *to = cmdline_p;
420 unsigned int memsize;
421 for (;;) {
422 if (c == ' ') {
Bryan Wu1394f032007-05-06 14:50:22 -0700423 if (!memcmp(to, "mem=", 4)) {
424 to += 4;
425 memsize = memparse(to, &to);
426 if (memsize)
427 _ramend = memsize;
428
429 } else if (!memcmp(to, "max_mem=", 8)) {
430 to += 8;
431 memsize = memparse(to, &to);
432 if (memsize) {
433 physical_mem_end = memsize;
434 if (*to != ' ') {
435 if (*to == '$'
436 || *(to + 1) == '$')
Graf Yang8f658732008-11-18 17:48:22 +0800437 reserved_mem_dcache_on = 1;
Bryan Wu1394f032007-05-06 14:50:22 -0700438 if (*to == '#'
439 || *(to + 1) == '#')
Graf Yang8f658732008-11-18 17:48:22 +0800440 reserved_mem_icache_on = 1;
Bryan Wu1394f032007-05-06 14:50:22 -0700441 }
442 }
Mike Frysinger7f1e2f92009-01-07 23:14:38 +0800443 } else if (!memcmp(to, "clkin_hz=", 9)) {
444 to += 9;
445 early_init_clkin_hz(to);
Robin Getzce3afa12007-10-09 17:28:36 +0800446 } else if (!memcmp(to, "earlyprintk=", 12)) {
447 to += 12;
448 setup_early_printk(to);
Yi Li856783b2008-02-09 02:26:01 +0800449 } else if (!memcmp(to, "memmap=", 7)) {
450 to += 7;
451 parse_memmap(to);
Bryan Wu1394f032007-05-06 14:50:22 -0700452 }
Bryan Wu1394f032007-05-06 14:50:22 -0700453 }
454 c = *(to++);
455 if (!c)
456 break;
457 }
458}
459
Yi Li856783b2008-02-09 02:26:01 +0800460/*
461 * Setup memory defaults from user config.
462 * The physical memory layout looks like:
463 *
464 * [_rambase, _ramstart]: kernel image
465 * [memory_start, memory_end]: dynamic memory managed by kernel
466 * [memory_end, _ramend]: reserved memory
Bryan Wu3094c982008-10-10 21:22:01 +0800467 * [memory_mtd_start(memory_end),
Yi Li856783b2008-02-09 02:26:01 +0800468 * memory_mtd_start + mtd_size]: rootfs (if any)
469 * [_ramend - DMA_UNCACHED_REGION,
470 * _ramend]: uncached DMA region
471 * [_ramend, physical_mem_end]: memory not managed by kernel
Yi Li856783b2008-02-09 02:26:01 +0800472 */
Graf Yang8f658732008-11-18 17:48:22 +0800473static __init void memory_setup(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700474{
Mike Frysingerc0eab3b2008-02-02 15:36:11 +0800475#ifdef CONFIG_MTD_UCLINUX
476 unsigned long mtd_phys = 0;
477#endif
478
Yi Li856783b2008-02-09 02:26:01 +0800479 _rambase = (unsigned long)_stext;
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800480 _ramstart = (unsigned long)_end;
Bryan Wu1394f032007-05-06 14:50:22 -0700481
Yi Li856783b2008-02-09 02:26:01 +0800482 if (DMA_UNCACHED_REGION > (_ramend - _ramstart)) {
483 console_init();
Mike Frysingerd8804ad2009-04-29 06:26:46 +0000484 panic("DMA region exceeds memory limit: %lu.",
Yi Li856783b2008-02-09 02:26:01 +0800485 _ramend - _ramstart);
Mike Frysinger1aafd902007-07-25 11:19:14 +0800486 }
Bryan Wu1394f032007-05-06 14:50:22 -0700487 memory_end = _ramend - DMA_UNCACHED_REGION;
488
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800489#ifdef CONFIG_MPU
Graf Yang8f658732008-11-18 17:48:22 +0800490 /* Round up to multiple of 4MB */
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800491 memory_start = (_ramstart + 0x3fffff) & ~0x3fffff;
492#else
Bryan Wu1394f032007-05-06 14:50:22 -0700493 memory_start = PAGE_ALIGN(_ramstart);
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800494#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700495
496#if defined(CONFIG_MTD_UCLINUX)
497 /* generic memory mapped MTD driver */
498 memory_mtd_end = memory_end;
499
500 mtd_phys = _ramstart;
501 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 8)));
502
503# if defined(CONFIG_EXT2_FS) || defined(CONFIG_EXT3_FS)
504 if (*((unsigned short *)(mtd_phys + 0x438)) == EXT2_SUPER_MAGIC)
505 mtd_size =
506 PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x404)) << 10);
507# endif
508
509# if defined(CONFIG_CRAMFS)
510 if (*((unsigned long *)(mtd_phys)) == CRAMFS_MAGIC)
511 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x4)));
512# endif
513
514# if defined(CONFIG_ROMFS_FS)
515 if (((unsigned long *)mtd_phys)[0] == ROMSB_WORD0
516 && ((unsigned long *)mtd_phys)[1] == ROMSB_WORD1)
517 mtd_size =
518 PAGE_ALIGN(be32_to_cpu(((unsigned long *)mtd_phys)[2]));
Robin Getz3bebca22007-10-10 23:55:26 +0800519# if (defined(CONFIG_BFIN_ICACHE) && ANOMALY_05000263)
Bryan Wu1394f032007-05-06 14:50:22 -0700520 /* Due to a Hardware Anomaly we need to limit the size of usable
521 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
522 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
523 */
524# if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
525 if (memory_end >= 56 * 1024 * 1024)
526 memory_end = 56 * 1024 * 1024;
527# else
528 if (memory_end >= 60 * 1024 * 1024)
529 memory_end = 60 * 1024 * 1024;
530# endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
531# endif /* ANOMALY_05000263 */
532# endif /* CONFIG_ROMFS_FS */
533
534 memory_end -= mtd_size;
535
536 if (mtd_size == 0) {
537 console_init();
Mike Frysingerd8804ad2009-04-29 06:26:46 +0000538 panic("Don't boot kernel without rootfs attached.");
Bryan Wu1394f032007-05-06 14:50:22 -0700539 }
540
541 /* Relocate MTD image to the top of memory after the uncached memory area */
Mike Frysinger79df1b62009-05-26 23:34:51 +0000542 uclinux_ram_map.phys = memory_mtd_start = memory_end;
543 uclinux_ram_map.size = mtd_size;
544 dma_memcpy((void *)uclinux_ram_map.phys, _end, uclinux_ram_map.size);
Bryan Wu1394f032007-05-06 14:50:22 -0700545#endif /* CONFIG_MTD_UCLINUX */
546
Robin Getz3bebca22007-10-10 23:55:26 +0800547#if (defined(CONFIG_BFIN_ICACHE) && ANOMALY_05000263)
Bryan Wu1394f032007-05-06 14:50:22 -0700548 /* Due to a Hardware Anomaly we need to limit the size of usable
549 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
550 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
551 */
552#if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
553 if (memory_end >= 56 * 1024 * 1024)
554 memory_end = 56 * 1024 * 1024;
555#else
556 if (memory_end >= 60 * 1024 * 1024)
557 memory_end = 60 * 1024 * 1024;
558#endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
559 printk(KERN_NOTICE "Warning: limiting memory to %liMB due to hardware anomaly 05000263\n", memory_end >> 20);
560#endif /* ANOMALY_05000263 */
561
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800562#ifdef CONFIG_MPU
563 page_mask_nelts = ((_ramend >> PAGE_SHIFT) + 31) / 32;
564 page_mask_order = get_order(3 * page_mask_nelts * sizeof(long));
565#endif
566
Bryan Wu1394f032007-05-06 14:50:22 -0700567#if !defined(CONFIG_MTD_UCLINUX)
Yi Li856783b2008-02-09 02:26:01 +0800568 /*In case there is no valid CPLB behind memory_end make sure we don't get to close*/
569 memory_end -= SIZE_4K;
Bryan Wu1394f032007-05-06 14:50:22 -0700570#endif
Yi Li856783b2008-02-09 02:26:01 +0800571
Bryan Wu1394f032007-05-06 14:50:22 -0700572 init_mm.start_code = (unsigned long)_stext;
573 init_mm.end_code = (unsigned long)_etext;
574 init_mm.end_data = (unsigned long)_edata;
575 init_mm.brk = (unsigned long)0;
576
Yi Li856783b2008-02-09 02:26:01 +0800577 printk(KERN_INFO "Board Memory: %ldMB\n", physical_mem_end >> 20);
578 printk(KERN_INFO "Kernel Managed Memory: %ldMB\n", _ramend >> 20);
579
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800580 printk(KERN_INFO "Memory map:\n"
Mike Frysinger8929ecf82008-02-22 16:35:20 +0800581 KERN_INFO " fixedcode = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800582 KERN_INFO " text = 0x%p-0x%p\n"
583 KERN_INFO " rodata = 0x%p-0x%p\n"
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800584 KERN_INFO " bss = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800585 KERN_INFO " data = 0x%p-0x%p\n"
586 KERN_INFO " stack = 0x%p-0x%p\n"
587 KERN_INFO " init = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800588 KERN_INFO " available = 0x%p-0x%p\n"
589#ifdef CONFIG_MTD_UCLINUX
590 KERN_INFO " rootfs = 0x%p-0x%p\n"
591#endif
592#if DMA_UNCACHED_REGION > 0
593 KERN_INFO " DMA Zone = 0x%p-0x%p\n"
594#endif
Mike Frysinger8929ecf82008-02-22 16:35:20 +0800595 , (void *)FIXED_CODE_START, (void *)FIXED_CODE_END,
596 _stext, _etext,
Yi Li856783b2008-02-09 02:26:01 +0800597 __start_rodata, __end_rodata,
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800598 __bss_start, __bss_stop,
Yi Li856783b2008-02-09 02:26:01 +0800599 _sdata, _edata,
600 (void *)&init_thread_union,
601 (void *)((int)(&init_thread_union) + 0x2000),
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800602 __init_begin, __init_end,
603 (void *)_ramstart, (void *)memory_end
Yi Li856783b2008-02-09 02:26:01 +0800604#ifdef CONFIG_MTD_UCLINUX
605 , (void *)memory_mtd_start, (void *)(memory_mtd_start + mtd_size)
606#endif
607#if DMA_UNCACHED_REGION > 0
608 , (void *)(_ramend - DMA_UNCACHED_REGION), (void *)(_ramend)
609#endif
610 );
611}
612
Yi Li2e8d7962008-03-26 07:08:12 +0800613/*
614 * Find the lowest, highest page frame number we have available
615 */
616void __init find_min_max_pfn(void)
617{
618 int i;
619
620 max_pfn = 0;
621 min_low_pfn = memory_end;
622
623 for (i = 0; i < bfin_memmap.nr_map; i++) {
624 unsigned long start, end;
625 /* RAM? */
626 if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM)
627 continue;
628 start = PFN_UP(bfin_memmap.map[i].addr);
629 end = PFN_DOWN(bfin_memmap.map[i].addr +
630 bfin_memmap.map[i].size);
631 if (start >= end)
632 continue;
633 if (end > max_pfn)
634 max_pfn = end;
635 if (start < min_low_pfn)
636 min_low_pfn = start;
637 }
638}
639
Yi Li856783b2008-02-09 02:26:01 +0800640static __init void setup_bootmem_allocator(void)
641{
642 int bootmap_size;
643 int i;
Yi Li2e8d7962008-03-26 07:08:12 +0800644 unsigned long start_pfn, end_pfn;
Yi Li856783b2008-02-09 02:26:01 +0800645 unsigned long curr_pfn, last_pfn, size;
646
647 /* mark memory between memory_start and memory_end usable */
648 add_memory_region(memory_start,
649 memory_end - memory_start, BFIN_MEMMAP_RAM);
650 /* sanity check for overlap */
651 sanitize_memmap(bfin_memmap.map, &bfin_memmap.nr_map);
652 print_memory_map("boot memmap");
653
Yi Li2e8d7962008-03-26 07:08:12 +0800654 /* intialize globals in linux/bootmem.h */
655 find_min_max_pfn();
656 /* pfn of the last usable page frame */
657 if (max_pfn > memory_end >> PAGE_SHIFT)
658 max_pfn = memory_end >> PAGE_SHIFT;
659 /* pfn of last page frame directly mapped by kernel */
660 max_low_pfn = max_pfn;
661 /* pfn of the first usable page frame after kernel image*/
662 if (min_low_pfn < memory_start >> PAGE_SHIFT)
663 min_low_pfn = memory_start >> PAGE_SHIFT;
664
665 start_pfn = PAGE_OFFSET >> PAGE_SHIFT;
666 end_pfn = memory_end >> PAGE_SHIFT;
Yi Li856783b2008-02-09 02:26:01 +0800667
668 /*
Graf Yang8f658732008-11-18 17:48:22 +0800669 * give all the memory to the bootmap allocator, tell it to put the
Yi Li856783b2008-02-09 02:26:01 +0800670 * boot mem_map at the start of memory.
671 */
672 bootmap_size = init_bootmem_node(NODE_DATA(0),
673 memory_start >> PAGE_SHIFT, /* map goes here */
Yi Li2e8d7962008-03-26 07:08:12 +0800674 start_pfn, end_pfn);
Yi Li856783b2008-02-09 02:26:01 +0800675
676 /* register the memmap regions with the bootmem allocator */
677 for (i = 0; i < bfin_memmap.nr_map; i++) {
678 /*
679 * Reserve usable memory
680 */
681 if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM)
682 continue;
683 /*
684 * We are rounding up the start address of usable memory:
685 */
686 curr_pfn = PFN_UP(bfin_memmap.map[i].addr);
Yi Li2e8d7962008-03-26 07:08:12 +0800687 if (curr_pfn >= end_pfn)
Yi Li856783b2008-02-09 02:26:01 +0800688 continue;
689 /*
690 * ... and at the end of the usable range downwards:
691 */
692 last_pfn = PFN_DOWN(bfin_memmap.map[i].addr +
693 bfin_memmap.map[i].size);
694
Yi Li2e8d7962008-03-26 07:08:12 +0800695 if (last_pfn > end_pfn)
696 last_pfn = end_pfn;
Yi Li856783b2008-02-09 02:26:01 +0800697
698 /*
699 * .. finally, did all the rounding and playing
700 * around just make the area go away?
701 */
702 if (last_pfn <= curr_pfn)
703 continue;
704
705 size = last_pfn - curr_pfn;
706 free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(size));
707 }
708
709 /* reserve memory before memory_start, including bootmap */
710 reserve_bootmem(PAGE_OFFSET,
711 memory_start + bootmap_size + PAGE_SIZE - 1 - PAGE_OFFSET,
712 BOOTMEM_DEFAULT);
713}
714
Mike Frysingera086ee22008-04-25 02:04:05 +0800715#define EBSZ_TO_MEG(ebsz) \
716({ \
717 int meg = 0; \
718 switch (ebsz & 0xf) { \
719 case 0x1: meg = 16; break; \
720 case 0x3: meg = 32; break; \
721 case 0x5: meg = 64; break; \
722 case 0x7: meg = 128; break; \
723 case 0x9: meg = 256; break; \
724 case 0xb: meg = 512; break; \
725 } \
726 meg; \
727})
728static inline int __init get_mem_size(void)
729{
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800730#if defined(EBIU_SDBCTL)
731# if defined(BF561_FAMILY)
Mike Frysingera086ee22008-04-25 02:04:05 +0800732 int ret = 0;
733 u32 sdbctl = bfin_read_EBIU_SDBCTL();
734 ret += EBSZ_TO_MEG(sdbctl >> 0);
735 ret += EBSZ_TO_MEG(sdbctl >> 8);
736 ret += EBSZ_TO_MEG(sdbctl >> 16);
737 ret += EBSZ_TO_MEG(sdbctl >> 24);
738 return ret;
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800739# else
Mike Frysingera086ee22008-04-25 02:04:05 +0800740 return EBSZ_TO_MEG(bfin_read_EBIU_SDBCTL());
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800741# endif
742#elif defined(EBIU_DDRCTL1)
Michael Hennerich1e780422008-04-25 04:31:23 +0800743 u32 ddrctl = bfin_read_EBIU_DDRCTL1();
744 int ret = 0;
745 switch (ddrctl & 0xc0000) {
746 case DEVSZ_64: ret = 64 / 8;
747 case DEVSZ_128: ret = 128 / 8;
748 case DEVSZ_256: ret = 256 / 8;
749 case DEVSZ_512: ret = 512 / 8;
Mike Frysingera086ee22008-04-25 02:04:05 +0800750 }
Michael Hennerich1e780422008-04-25 04:31:23 +0800751 switch (ddrctl & 0x30000) {
752 case DEVWD_4: ret *= 2;
753 case DEVWD_8: ret *= 2;
754 case DEVWD_16: break;
755 }
Mike Frysingerb1b154e2008-07-26 18:02:05 +0800756 if ((ddrctl & 0xc000) == 0x4000)
757 ret *= 2;
Michael Hennerich1e780422008-04-25 04:31:23 +0800758 return ret;
Mike Frysingera086ee22008-04-25 02:04:05 +0800759#endif
760 BUG();
761}
762
Yi Li856783b2008-02-09 02:26:01 +0800763void __init setup_arch(char **cmdline_p)
764{
Mike Frysinger9f8e8952008-04-24 06:20:11 +0800765 unsigned long sclk, cclk;
Yi Li856783b2008-02-09 02:26:01 +0800766
767#ifdef CONFIG_DUMMY_CONSOLE
768 conswitchp = &dummy_con;
769#endif
770
771#if defined(CONFIG_CMDLINE_BOOL)
772 strncpy(&command_line[0], CONFIG_CMDLINE, sizeof(command_line));
773 command_line[sizeof(command_line) - 1] = 0;
774#endif
775
776 /* Keep a copy of command line */
777 *cmdline_p = &command_line[0];
778 memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
779 boot_command_line[COMMAND_LINE_SIZE - 1] = '\0';
780
781 /* setup memory defaults from the user config */
782 physical_mem_end = 0;
Mike Frysingera086ee22008-04-25 02:04:05 +0800783 _ramend = get_mem_size() * 1024 * 1024;
Yi Li856783b2008-02-09 02:26:01 +0800784
785 memset(&bfin_memmap, 0, sizeof(bfin_memmap));
786
787 parse_cmdline_early(&command_line[0]);
788
789 if (physical_mem_end == 0)
790 physical_mem_end = _ramend;
791
792 memory_setup();
793
Mike Frysinger7e64aca2008-08-06 17:17:10 +0800794 /* Initialize Async memory banks */
795 bfin_write_EBIU_AMBCTL0(AMBCTL0VAL);
796 bfin_write_EBIU_AMBCTL1(AMBCTL1VAL);
797 bfin_write_EBIU_AMGCTL(AMGCTLVAL);
798#ifdef CONFIG_EBIU_MBSCTLVAL
799 bfin_write_EBIU_MBSCTL(CONFIG_EBIU_MBSCTLVAL);
800 bfin_write_EBIU_MODE(CONFIG_EBIU_MODEVAL);
801 bfin_write_EBIU_FCTL(CONFIG_EBIU_FCTLVAL);
802#endif
803
Yi Li856783b2008-02-09 02:26:01 +0800804 cclk = get_cclk();
805 sclk = get_sclk();
806
Sonic Zhang7f3aee32009-05-07 10:04:19 +0000807 if ((ANOMALY_05000273 || ANOMALY_05000274) && (cclk >> 1) < sclk)
808 panic("ANOMALY 05000273 or 05000274: CCLK must be >= 2*SCLK");
Yi Li856783b2008-02-09 02:26:01 +0800809
810#ifdef BF561_FAMILY
811 if (ANOMALY_05000266) {
812 bfin_read_IMDMA_D0_IRQ_STATUS();
813 bfin_read_IMDMA_D1_IRQ_STATUS();
814 }
815#endif
816 printk(KERN_INFO "Hardware Trace ");
817 if (bfin_read_TBUFCTL() & 0x1)
818 printk("Active ");
819 else
820 printk("Off ");
821 if (bfin_read_TBUFCTL() & 0x2)
822 printk("and Enabled\n");
823 else
824 printk("and Disabled\n");
825
826#if defined(CONFIG_CHR_DEV_FLASH) || defined(CONFIG_BLK_DEV_FLASH)
827 /* we need to initialize the Flashrom device here since we might
828 * do things with flash early on in the boot
829 */
830 flash_probe();
831#endif
832
Robin Getz76e8fe42009-02-04 16:49:45 +0800833 printk(KERN_INFO "Boot Mode: %i\n", bfin_read_SYSCR() & 0xF);
834
Mike Frysingered1fb602009-02-04 16:49:45 +0800835 /* Newer parts mirror SWRST bits in SYSCR */
836#if defined(CONFIG_BF53x) || defined(CONFIG_BF561) || \
837 defined(CONFIG_BF538) || defined(CONFIG_BF539)
Robin Getz7728ec32007-10-29 18:12:15 +0800838 _bfin_swrst = bfin_read_SWRST();
Mike Frysingered1fb602009-02-04 16:49:45 +0800839#else
840 _bfin_swrst = bfin_read_SYSCR();
841#endif
Robin Getz7728ec32007-10-29 18:12:15 +0800842
Robin Getz0c7a6b22008-10-08 16:27:12 +0800843#ifdef CONFIG_DEBUG_DOUBLEFAULT_PRINT
844 bfin_write_SWRST(_bfin_swrst & ~DOUBLE_FAULT);
845#endif
846#ifdef CONFIG_DEBUG_DOUBLEFAULT_RESET
847 bfin_write_SWRST(_bfin_swrst | DOUBLE_FAULT);
848#endif
Robin Getz2d200982008-07-26 19:41:40 +0800849
Graf Yang8f658732008-11-18 17:48:22 +0800850#ifdef CONFIG_SMP
851 if (_bfin_swrst & SWRST_DBL_FAULT_A) {
852#else
Robin Getz0c7a6b22008-10-08 16:27:12 +0800853 if (_bfin_swrst & RESET_DOUBLE) {
Graf Yang8f658732008-11-18 17:48:22 +0800854#endif
Robin Getz0c7a6b22008-10-08 16:27:12 +0800855 printk(KERN_EMERG "Recovering from DOUBLE FAULT event\n");
856#ifdef CONFIG_DEBUG_DOUBLEFAULT
857 /* We assume the crashing kernel, and the current symbol table match */
858 printk(KERN_EMERG " While handling exception (EXCAUSE = 0x%x) at %pF\n",
859 (int)init_saved_seqstat & SEQSTAT_EXCAUSE, init_saved_retx);
860 printk(KERN_NOTICE " DCPLB_FAULT_ADDR: %pF\n", init_saved_dcplb_fault_addr);
861 printk(KERN_NOTICE " ICPLB_FAULT_ADDR: %pF\n", init_saved_icplb_fault_addr);
862#endif
863 printk(KERN_NOTICE " The instruction at %pF caused a double exception\n",
864 init_retx);
865 } else if (_bfin_swrst & RESET_WDOG)
Robin Getz7728ec32007-10-29 18:12:15 +0800866 printk(KERN_INFO "Recovering from Watchdog event\n");
867 else if (_bfin_swrst & RESET_SOFTWARE)
868 printk(KERN_NOTICE "Reset caused by Software reset\n");
869
Michael Hennerich972de7d2009-02-04 16:49:45 +0800870 printk(KERN_INFO "Blackfin support (C) 2004-2009 Analog Devices, Inc.\n");
Jie Zhangde3025f2007-06-25 18:04:12 +0800871 if (bfin_compiled_revid() == 0xffff)
872 printk(KERN_INFO "Compiled for ADSP-%s Rev any\n", CPU);
873 else if (bfin_compiled_revid() == -1)
874 printk(KERN_INFO "Compiled for ADSP-%s Rev none\n", CPU);
875 else
876 printk(KERN_INFO "Compiled for ADSP-%s Rev 0.%d\n", CPU, bfin_compiled_revid());
Robin Getze482cad2008-10-10 18:21:45 +0800877
878 if (unlikely(CPUID != bfin_cpuid()))
879 printk(KERN_ERR "ERROR: Not running on ADSP-%s: unknown CPUID 0x%04x Rev 0.%d\n",
880 CPU, bfin_cpuid(), bfin_revid());
881 else {
882 if (bfin_revid() != bfin_compiled_revid()) {
883 if (bfin_compiled_revid() == -1)
884 printk(KERN_ERR "Warning: Compiled for Rev none, but running on Rev %d\n",
885 bfin_revid());
Robin Getz7419a322009-01-07 23:14:39 +0800886 else if (bfin_compiled_revid() != 0xffff) {
Robin Getze482cad2008-10-10 18:21:45 +0800887 printk(KERN_ERR "Warning: Compiled for Rev %d, but running on Rev %d\n",
888 bfin_compiled_revid(), bfin_revid());
Robin Getz7419a322009-01-07 23:14:39 +0800889 if (bfin_compiled_revid() > bfin_revid())
Mike Frysingerd8804ad2009-04-29 06:26:46 +0000890 panic("Error: you are missing anomaly workarounds for this rev");
Robin Getz7419a322009-01-07 23:14:39 +0800891 }
Robin Getze482cad2008-10-10 18:21:45 +0800892 }
Mike Frysingerda986b92008-10-28 13:58:15 +0800893 if (bfin_revid() < CONFIG_BF_REV_MIN || bfin_revid() > CONFIG_BF_REV_MAX)
Robin Getze482cad2008-10-10 18:21:45 +0800894 printk(KERN_ERR "Warning: Unsupported Chip Revision ADSP-%s Rev 0.%d detected\n",
895 CPU, bfin_revid());
Jie Zhangde3025f2007-06-25 18:04:12 +0800896 }
Mike Frysinger0c0497c2008-10-09 17:32:28 +0800897
Robin Getz00049522009-03-05 18:18:49 +0800898 /* We can't run on BF548-0.1 due to ANOMALY 05000448 */
899 if (bfin_cpuid() == 0x27de && bfin_revid() == 1)
Mike Frysingerd8804ad2009-04-29 06:26:46 +0000900 panic("You can't run on this processor due to 05000448");
Robin Getz00049522009-03-05 18:18:49 +0800901
Bryan Wu1394f032007-05-06 14:50:22 -0700902 printk(KERN_INFO "Blackfin Linux support by http://blackfin.uclinux.org/\n");
903
Mike Frysingerb5c0e2e2007-09-12 17:31:59 +0800904 printk(KERN_INFO "Processor Speed: %lu MHz core clock and %lu MHz System Clock\n",
Graf Yang8f658732008-11-18 17:48:22 +0800905 cclk / 1000000, sclk / 1000000);
Bryan Wu1394f032007-05-06 14:50:22 -0700906
Yi Li856783b2008-02-09 02:26:01 +0800907 setup_bootmem_allocator();
Bryan Wu1394f032007-05-06 14:50:22 -0700908
Bryan Wu1394f032007-05-06 14:50:22 -0700909 paging_init();
910
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800911 /* Copy atomic sequences to their fixed location, and sanity check that
912 these locations are the ones that we advertise to userspace. */
913 memcpy((void *)FIXED_CODE_START, &fixed_code_start,
914 FIXED_CODE_END - FIXED_CODE_START);
915 BUG_ON((char *)&sigreturn_stub - (char *)&fixed_code_start
916 != SIGRETURN_STUB - FIXED_CODE_START);
917 BUG_ON((char *)&atomic_xchg32 - (char *)&fixed_code_start
918 != ATOMIC_XCHG32 - FIXED_CODE_START);
919 BUG_ON((char *)&atomic_cas32 - (char *)&fixed_code_start
920 != ATOMIC_CAS32 - FIXED_CODE_START);
921 BUG_ON((char *)&atomic_add32 - (char *)&fixed_code_start
922 != ATOMIC_ADD32 - FIXED_CODE_START);
923 BUG_ON((char *)&atomic_sub32 - (char *)&fixed_code_start
924 != ATOMIC_SUB32 - FIXED_CODE_START);
925 BUG_ON((char *)&atomic_ior32 - (char *)&fixed_code_start
926 != ATOMIC_IOR32 - FIXED_CODE_START);
927 BUG_ON((char *)&atomic_and32 - (char *)&fixed_code_start
928 != ATOMIC_AND32 - FIXED_CODE_START);
929 BUG_ON((char *)&atomic_xor32 - (char *)&fixed_code_start
930 != ATOMIC_XOR32 - FIXED_CODE_START);
Robin Getz9f336a52007-10-29 18:23:28 +0800931 BUG_ON((char *)&safe_user_instruction - (char *)&fixed_code_start
932 != SAFE_USER_INSTRUCTION - FIXED_CODE_START);
Bernd Schmidt29440a22007-07-12 16:25:29 +0800933
Graf Yang8f658732008-11-18 17:48:22 +0800934#ifdef CONFIG_SMP
935 platform_init_cpus();
936#endif
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800937 init_exception_vectors();
Graf Yang8f658732008-11-18 17:48:22 +0800938 bfin_cache_init(); /* Initialize caches for the boot CPU */
Bryan Wu1394f032007-05-06 14:50:22 -0700939}
940
Bryan Wu1394f032007-05-06 14:50:22 -0700941static int __init topology_init(void)
942{
Graf Yang8f658732008-11-18 17:48:22 +0800943 unsigned int cpu;
944 /* Record CPU-private information for the boot processor. */
945 bfin_setup_cpudata(0);
Michael Hennerich6cda2e92008-02-02 15:10:51 +0800946
947 for_each_possible_cpu(cpu) {
Graf Yang8f658732008-11-18 17:48:22 +0800948 register_cpu(&per_cpu(cpu_data, cpu).cpu, cpu);
Michael Hennerich6cda2e92008-02-02 15:10:51 +0800949 }
950
Bryan Wu1394f032007-05-06 14:50:22 -0700951 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700952}
953
954subsys_initcall(topology_init);
955
Mike Frysinger7f1e2f92009-01-07 23:14:38 +0800956/* Get the input clock frequency */
957static u_long cached_clkin_hz = CONFIG_CLKIN_HZ;
958static u_long get_clkin_hz(void)
959{
960 return cached_clkin_hz;
961}
962static int __init early_init_clkin_hz(char *buf)
963{
964 cached_clkin_hz = simple_strtoul(buf, NULL, 0);
Mike Frysinger508808c2009-01-07 23:14:38 +0800965#ifdef BFIN_KERNEL_CLOCK
966 if (cached_clkin_hz != CONFIG_CLKIN_HZ)
967 panic("cannot change clkin_hz when reprogramming clocks");
968#endif
Mike Frysinger7f1e2f92009-01-07 23:14:38 +0800969 return 1;
970}
971early_param("clkin_hz=", early_init_clkin_hz);
972
Mike Frysinger3a2521f2008-07-26 18:52:56 +0800973/* Get the voltage input multiplier */
Mike Frysinger52a07812007-06-11 15:31:30 +0800974static u_long get_vco(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700975{
Mike Frysingere32f55d2009-01-07 23:14:39 +0800976 static u_long cached_vco;
977 u_long msel, pll_ctl;
Bryan Wu1394f032007-05-06 14:50:22 -0700978
Mike Frysingere32f55d2009-01-07 23:14:39 +0800979 /* The assumption here is that VCO never changes at runtime.
980 * If, someday, we support that, then we'll have to change this.
981 */
982 if (cached_vco)
Mike Frysinger3a2521f2008-07-26 18:52:56 +0800983 return cached_vco;
Mike Frysinger3a2521f2008-07-26 18:52:56 +0800984
Mike Frysingere32f55d2009-01-07 23:14:39 +0800985 pll_ctl = bfin_read_PLL_CTL();
Mike Frysinger3a2521f2008-07-26 18:52:56 +0800986 msel = (pll_ctl >> 9) & 0x3F;
Bryan Wu1394f032007-05-06 14:50:22 -0700987 if (0 == msel)
988 msel = 64;
989
Mike Frysinger7f1e2f92009-01-07 23:14:38 +0800990 cached_vco = get_clkin_hz();
Mike Frysinger3a2521f2008-07-26 18:52:56 +0800991 cached_vco >>= (1 & pll_ctl); /* DF bit */
992 cached_vco *= msel;
993 return cached_vco;
Bryan Wu1394f032007-05-06 14:50:22 -0700994}
995
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +0800996/* Get the Core clock */
Bryan Wu1394f032007-05-06 14:50:22 -0700997u_long get_cclk(void)
998{
Mike Frysingere32f55d2009-01-07 23:14:39 +0800999 static u_long cached_cclk_pll_div, cached_cclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001000 u_long csel, ssel;
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001001
Bryan Wu1394f032007-05-06 14:50:22 -07001002 if (bfin_read_PLL_STAT() & 0x1)
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001003 return get_clkin_hz();
Bryan Wu1394f032007-05-06 14:50:22 -07001004
1005 ssel = bfin_read_PLL_DIV();
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001006 if (ssel == cached_cclk_pll_div)
1007 return cached_cclk;
1008 else
1009 cached_cclk_pll_div = ssel;
1010
Bryan Wu1394f032007-05-06 14:50:22 -07001011 csel = ((ssel >> 4) & 0x03);
1012 ssel &= 0xf;
1013 if (ssel && ssel < (1 << csel)) /* SCLK > CCLK */
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001014 cached_cclk = get_vco() / ssel;
1015 else
1016 cached_cclk = get_vco() >> csel;
1017 return cached_cclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001018}
Bryan Wu1394f032007-05-06 14:50:22 -07001019EXPORT_SYMBOL(get_cclk);
1020
1021/* Get the System clock */
1022u_long get_sclk(void)
1023{
Mike Frysingere32f55d2009-01-07 23:14:39 +08001024 static u_long cached_sclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001025 u_long ssel;
1026
Mike Frysingere32f55d2009-01-07 23:14:39 +08001027 /* The assumption here is that SCLK never changes at runtime.
1028 * If, someday, we support that, then we'll have to change this.
1029 */
1030 if (cached_sclk)
1031 return cached_sclk;
1032
Bryan Wu1394f032007-05-06 14:50:22 -07001033 if (bfin_read_PLL_STAT() & 0x1)
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001034 return get_clkin_hz();
Bryan Wu1394f032007-05-06 14:50:22 -07001035
Mike Frysingere32f55d2009-01-07 23:14:39 +08001036 ssel = bfin_read_PLL_DIV() & 0xf;
Bryan Wu1394f032007-05-06 14:50:22 -07001037 if (0 == ssel) {
1038 printk(KERN_WARNING "Invalid System Clock\n");
1039 ssel = 1;
1040 }
1041
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001042 cached_sclk = get_vco() / ssel;
1043 return cached_sclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001044}
Bryan Wu1394f032007-05-06 14:50:22 -07001045EXPORT_SYMBOL(get_sclk);
1046
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001047unsigned long sclk_to_usecs(unsigned long sclk)
1048{
Mike Frysinger1754a5d2007-11-23 11:28:11 +08001049 u64 tmp = USEC_PER_SEC * (u64)sclk;
1050 do_div(tmp, get_sclk());
1051 return tmp;
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001052}
1053EXPORT_SYMBOL(sclk_to_usecs);
1054
1055unsigned long usecs_to_sclk(unsigned long usecs)
1056{
Mike Frysinger1754a5d2007-11-23 11:28:11 +08001057 u64 tmp = get_sclk() * (u64)usecs;
1058 do_div(tmp, USEC_PER_SEC);
1059 return tmp;
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001060}
1061EXPORT_SYMBOL(usecs_to_sclk);
1062
Bryan Wu1394f032007-05-06 14:50:22 -07001063/*
1064 * Get CPU information for use by the procfs.
1065 */
1066static int show_cpuinfo(struct seq_file *m, void *v)
1067{
Mike Frysinger066954a2007-10-21 22:36:06 +08001068 char *cpu, *mmu, *fpu, *vendor, *cache;
Bryan Wu1394f032007-05-06 14:50:22 -07001069 uint32_t revid;
Mike Frysinger275123e2009-01-07 23:14:39 +08001070 int cpu_num = *(unsigned int *)v;
Michael Hennericha5f07172008-11-18 18:04:31 +08001071 u_long sclk, cclk;
Robin Getz9de3a0b2008-07-26 19:39:19 +08001072 u_int icache_size = BFIN_ICACHESIZE / 1024, dcache_size = 0, dsup_banks = 0;
Mike Frysinger275123e2009-01-07 23:14:39 +08001073 struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu_num);
Bryan Wu1394f032007-05-06 14:50:22 -07001074
1075 cpu = CPU;
1076 mmu = "none";
1077 fpu = "none";
1078 revid = bfin_revid();
Bryan Wu1394f032007-05-06 14:50:22 -07001079
Bryan Wu1394f032007-05-06 14:50:22 -07001080 sclk = get_sclk();
Michael Hennericha5f07172008-11-18 18:04:31 +08001081 cclk = get_cclk();
Bryan Wu1394f032007-05-06 14:50:22 -07001082
Robin Getz73b0c0b2007-10-21 17:03:31 +08001083 switch (bfin_read_CHIPID() & CHIPID_MANUFACTURE) {
Mike Frysinger066954a2007-10-21 22:36:06 +08001084 case 0xca:
1085 vendor = "Analog Devices";
Robin Getz73b0c0b2007-10-21 17:03:31 +08001086 break;
1087 default:
Mike Frysinger066954a2007-10-21 22:36:06 +08001088 vendor = "unknown";
1089 break;
Robin Getz73b0c0b2007-10-21 17:03:31 +08001090 }
Bryan Wu1394f032007-05-06 14:50:22 -07001091
Mike Frysinger275123e2009-01-07 23:14:39 +08001092 seq_printf(m, "processor\t: %d\n" "vendor_id\t: %s\n", cpu_num, vendor);
Robin Getze482cad2008-10-10 18:21:45 +08001093
1094 if (CPUID == bfin_cpuid())
1095 seq_printf(m, "cpu family\t: 0x%04x\n", CPUID);
1096 else
1097 seq_printf(m, "cpu family\t: Compiled for:0x%04x, running on:0x%04x\n",
1098 CPUID, bfin_cpuid());
1099
1100 seq_printf(m, "model name\t: ADSP-%s %lu(MHz CCLK) %lu(MHz SCLK) (%s)\n"
Robin Getz2466ac62009-06-08 17:52:27 +00001101 "stepping\t: %d ",
Michael Hennericha5f07172008-11-18 18:04:31 +08001102 cpu, cclk/1000000, sclk/1000000,
Robin Getz253bcf42008-04-24 05:57:13 +08001103#ifdef CONFIG_MPU
1104 "mpu on",
1105#else
1106 "mpu off",
1107#endif
Robin Getz73b0c0b2007-10-21 17:03:31 +08001108 revid);
Bryan Wu1394f032007-05-06 14:50:22 -07001109
Robin Getz2466ac62009-06-08 17:52:27 +00001110 if (bfin_revid() != bfin_compiled_revid()) {
1111 if (bfin_compiled_revid() == -1)
1112 seq_printf(m, "(Compiled for Rev none)");
1113 else if (bfin_compiled_revid() == 0xffff)
1114 seq_printf(m, "(Compiled for Rev any)");
1115 else
1116 seq_printf(m, "(Compiled for Rev %d)", bfin_compiled_revid());
1117 }
1118
1119 seq_printf(m, "\ncpu MHz\t\t: %lu.%03lu/%lu.%03lu\n",
Michael Hennericha5f07172008-11-18 18:04:31 +08001120 cclk/1000000, cclk%1000000,
Robin Getz73b0c0b2007-10-21 17:03:31 +08001121 sclk/1000000, sclk%1000000);
1122 seq_printf(m, "bogomips\t: %lu.%02lu\n"
1123 "Calibration\t: %lu loops\n",
Graf Yang8f658732008-11-18 17:48:22 +08001124 (cpudata->loops_per_jiffy * HZ) / 500000,
1125 ((cpudata->loops_per_jiffy * HZ) / 5000) % 100,
1126 (cpudata->loops_per_jiffy * HZ));
Robin Getz73b0c0b2007-10-21 17:03:31 +08001127
1128 /* Check Cache configutation */
Graf Yang8f658732008-11-18 17:48:22 +08001129 switch (cpudata->dmemctl & (1 << DMC0_P | 1 << DMC1_P)) {
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001130 case ACACHE_BSRAM:
Mike Frysinger066954a2007-10-21 22:36:06 +08001131 cache = "dbank-A/B\t: cache/sram";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001132 dcache_size = 16;
1133 dsup_banks = 1;
1134 break;
1135 case ACACHE_BCACHE:
Mike Frysinger066954a2007-10-21 22:36:06 +08001136 cache = "dbank-A/B\t: cache/cache";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001137 dcache_size = 32;
1138 dsup_banks = 2;
1139 break;
1140 case ASRAM_BSRAM:
Mike Frysinger066954a2007-10-21 22:36:06 +08001141 cache = "dbank-A/B\t: sram/sram";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001142 dcache_size = 0;
1143 dsup_banks = 0;
1144 break;
1145 default:
Mike Frysinger066954a2007-10-21 22:36:06 +08001146 cache = "unknown";
Robin Getz73b0c0b2007-10-21 17:03:31 +08001147 dcache_size = 0;
1148 dsup_banks = 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001149 break;
1150 }
1151
Robin Getz73b0c0b2007-10-21 17:03:31 +08001152 /* Is it turned on? */
Graf Yang8f658732008-11-18 17:48:22 +08001153 if ((cpudata->dmemctl & (ENDCPLB | DMC_ENABLE)) != (ENDCPLB | DMC_ENABLE))
Robin Getz73b0c0b2007-10-21 17:03:31 +08001154 dcache_size = 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001155
Graf Yang8f658732008-11-18 17:48:22 +08001156 if ((cpudata->imemctl & (IMC | ENICPLB)) != (IMC | ENICPLB))
Robin Getz9de3a0b2008-07-26 19:39:19 +08001157 icache_size = 0;
1158
Robin Getz73b0c0b2007-10-21 17:03:31 +08001159 seq_printf(m, "cache size\t: %d KB(L1 icache) "
Mike Frysinger27276ba2009-03-05 18:47:20 +08001160 "%d KB(L1 dcache%s) %d KB(L2 cache)\n",
Robin Getz9de3a0b2008-07-26 19:39:19 +08001161 icache_size, dcache_size,
Robin Getz73b0c0b2007-10-21 17:03:31 +08001162#if defined CONFIG_BFIN_WB
Mike Frysinger27276ba2009-03-05 18:47:20 +08001163 "-wb"
Robin Getz73b0c0b2007-10-21 17:03:31 +08001164#elif defined CONFIG_BFIN_WT
Mike Frysinger27276ba2009-03-05 18:47:20 +08001165 "-wt"
Robin Getz73b0c0b2007-10-21 17:03:31 +08001166#endif
Mike Frysingerda27abb2007-10-22 10:55:35 +08001167 "", 0);
Robin Getz73b0c0b2007-10-21 17:03:31 +08001168
1169 seq_printf(m, "%s\n", cache);
1170
Robin Getz9de3a0b2008-07-26 19:39:19 +08001171 if (icache_size)
1172 seq_printf(m, "icache setup\t: %d Sub-banks/%d Ways, %d Lines/Way\n",
1173 BFIN_ISUBBANKS, BFIN_IWAYS, BFIN_ILINES);
1174 else
1175 seq_printf(m, "icache setup\t: off\n");
1176
Bryan Wu1394f032007-05-06 14:50:22 -07001177 seq_printf(m,
Robin Getz73b0c0b2007-10-21 17:03:31 +08001178 "dcache setup\t: %d Super-banks/%d Sub-banks/%d Ways, %d Lines/Way\n",
Robin Getz3bebca22007-10-10 23:55:26 +08001179 dsup_banks, BFIN_DSUBBANKS, BFIN_DWAYS,
1180 BFIN_DLINES);
Graf Yang8f658732008-11-18 17:48:22 +08001181#ifdef __ARCH_SYNC_CORE_DCACHE
Mike Frysinger275123e2009-01-07 23:14:39 +08001182 seq_printf(m, "SMP Dcache Flushes\t: %lu\n\n", cpudata->dcache_invld_count);
Graf Yang8f658732008-11-18 17:48:22 +08001183#endif
Robin Getz3bebca22007-10-10 23:55:26 +08001184#ifdef CONFIG_BFIN_ICACHE_LOCK
Graf Yang8f658732008-11-18 17:48:22 +08001185 switch ((cpudata->imemctl >> 3) & WAYALL_L) {
Bryan Wu1394f032007-05-06 14:50:22 -07001186 case WAY0_L:
1187 seq_printf(m, "Way0 Locked-Down\n");
1188 break;
1189 case WAY1_L:
1190 seq_printf(m, "Way1 Locked-Down\n");
1191 break;
1192 case WAY01_L:
1193 seq_printf(m, "Way0,Way1 Locked-Down\n");
1194 break;
1195 case WAY2_L:
1196 seq_printf(m, "Way2 Locked-Down\n");
1197 break;
1198 case WAY02_L:
1199 seq_printf(m, "Way0,Way2 Locked-Down\n");
1200 break;
1201 case WAY12_L:
1202 seq_printf(m, "Way1,Way2 Locked-Down\n");
1203 break;
1204 case WAY012_L:
1205 seq_printf(m, "Way0,Way1 & Way2 Locked-Down\n");
1206 break;
1207 case WAY3_L:
1208 seq_printf(m, "Way3 Locked-Down\n");
1209 break;
1210 case WAY03_L:
1211 seq_printf(m, "Way0,Way3 Locked-Down\n");
1212 break;
1213 case WAY13_L:
1214 seq_printf(m, "Way1,Way3 Locked-Down\n");
1215 break;
1216 case WAY013_L:
1217 seq_printf(m, "Way 0,Way1,Way3 Locked-Down\n");
1218 break;
1219 case WAY32_L:
1220 seq_printf(m, "Way3,Way2 Locked-Down\n");
1221 break;
1222 case WAY320_L:
1223 seq_printf(m, "Way3,Way2,Way0 Locked-Down\n");
1224 break;
1225 case WAY321_L:
1226 seq_printf(m, "Way3,Way2,Way1 Locked-Down\n");
1227 break;
1228 case WAYALL_L:
1229 seq_printf(m, "All Ways are locked\n");
1230 break;
1231 default:
1232 seq_printf(m, "No Ways are locked\n");
1233 }
1234#endif
Mike Frysinger275123e2009-01-07 23:14:39 +08001235
1236 if (cpu_num != num_possible_cpus() - 1)
Graf Yang8f658732008-11-18 17:48:22 +08001237 return 0;
1238
Mike Frysinger275123e2009-01-07 23:14:39 +08001239 if (L2_LENGTH)
1240 seq_printf(m, "L2 SRAM\t\t: %dKB\n", L2_LENGTH/0x400);
Mike Frysinger066954a2007-10-21 22:36:06 +08001241 seq_printf(m, "board name\t: %s\n", bfin_board_name);
Robin Getz73b0c0b2007-10-21 17:03:31 +08001242 seq_printf(m, "board memory\t: %ld kB (0x%p -> 0x%p)\n",
1243 physical_mem_end >> 10, (void *)0, (void *)physical_mem_end);
1244 seq_printf(m, "kernel memory\t: %d kB (0x%p -> 0x%p)\n",
1245 ((int)memory_end - (int)_stext) >> 10,
1246 _stext,
1247 (void *)memory_end);
Graf Yang8f658732008-11-18 17:48:22 +08001248 seq_printf(m, "\n");
Robin Getz73b0c0b2007-10-21 17:03:31 +08001249
Bryan Wu1394f032007-05-06 14:50:22 -07001250 return 0;
1251}
1252
1253static void *c_start(struct seq_file *m, loff_t *pos)
1254{
Graf Yang55f2fea2008-10-09 15:37:47 +08001255 if (*pos == 0)
1256 *pos = first_cpu(cpu_online_map);
1257 if (*pos >= num_online_cpus())
1258 return NULL;
1259
1260 return pos;
Bryan Wu1394f032007-05-06 14:50:22 -07001261}
1262
1263static void *c_next(struct seq_file *m, void *v, loff_t *pos)
1264{
Graf Yang55f2fea2008-10-09 15:37:47 +08001265 *pos = next_cpu(*pos, cpu_online_map);
1266
Bryan Wu1394f032007-05-06 14:50:22 -07001267 return c_start(m, pos);
1268}
1269
1270static void c_stop(struct seq_file *m, void *v)
1271{
1272}
1273
Jan Engelhardt03a44822008-02-08 04:21:19 -08001274const struct seq_operations cpuinfo_op = {
Bryan Wu1394f032007-05-06 14:50:22 -07001275 .start = c_start,
1276 .next = c_next,
1277 .stop = c_stop,
1278 .show = show_cpuinfo,
1279};
1280
Mike Frysinger5e10b4a2007-06-11 16:44:09 +08001281void __init cmdline_init(const char *r0)
Bryan Wu1394f032007-05-06 14:50:22 -07001282{
1283 if (r0)
Mike Frysinger52a07812007-06-11 15:31:30 +08001284 strncpy(command_line, r0, COMMAND_LINE_SIZE);
Bryan Wu1394f032007-05-06 14:50:22 -07001285}