blob: ada8f0fc71e4731fc9bb619aacc7a77df50d7d54 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Mike Frysingerbe1577e2010-05-10 05:21:50 +00002 * Copyright 2004-2010 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -07003 *
Mike Frysinger550d5532008-02-02 15:55:37 +08004 * Licensed under the GPL-2 or later.
Bryan Wu1394f032007-05-06 14:50:22 -07005 */
6
7#include <linux/delay.h>
8#include <linux/console.h>
9#include <linux/bootmem.h>
10#include <linux/seq_file.h>
11#include <linux/cpu.h>
Mike Frysinger259fea42009-01-07 23:14:39 +080012#include <linux/mm.h>
Bryan Wu1394f032007-05-06 14:50:22 -070013#include <linux/module.h>
Bryan Wu1394f032007-05-06 14:50:22 -070014#include <linux/tty.h>
Yi Li856783b2008-02-09 02:26:01 +080015#include <linux/pfn.h>
Bryan Wu1394f032007-05-06 14:50:22 -070016
Mike Frysinger79df1b62009-05-26 23:34:51 +000017#ifdef CONFIG_MTD_UCLINUX
18#include <linux/mtd/map.h>
Bryan Wu1394f032007-05-06 14:50:22 -070019#include <linux/ext2_fs.h>
20#include <linux/cramfs_fs.h>
21#include <linux/romfs_fs.h>
Mike Frysinger79df1b62009-05-26 23:34:51 +000022#endif
Bryan Wu1394f032007-05-06 14:50:22 -070023
Robin Getz3bebca22007-10-10 23:55:26 +080024#include <asm/cplb.h>
Bryan Wu1394f032007-05-06 14:50:22 -070025#include <asm/cacheflush.h>
26#include <asm/blackfin.h>
27#include <asm/cplbinit.h>
Bob Liub5affb02012-05-16 17:37:24 +080028#include <asm/clocks.h>
Mike Frysinger1754a5d2007-11-23 11:28:11 +080029#include <asm/div64.h>
Graf Yang8f658732008-11-18 17:48:22 +080030#include <asm/cpu.h>
Bernd Schmidt7adfb582007-06-21 11:34:16 +080031#include <asm/fixed_code.h>
Robin Getzce3afa12007-10-09 17:28:36 +080032#include <asm/early_printk.h>
Mike Frysinger6327a572011-04-15 03:06:59 -040033#include <asm/irq_handler.h>
David Howells3bed8d62012-03-12 23:36:56 +000034#include <asm/pda.h>
Steven Miao672552a2012-05-16 15:54:31 +080035#ifdef CONFIG_BF60x
36#include <mach/pm.h>
37#endif
Bryan Wu1394f032007-05-06 14:50:22 -070038
Mike Frysingera9c59c22007-05-21 18:09:32 +080039u16 _bfin_swrst;
Mike Frysingerd45118b2008-02-25 12:24:44 +080040EXPORT_SYMBOL(_bfin_swrst);
Mike Frysingera9c59c22007-05-21 18:09:32 +080041
Bryan Wu1394f032007-05-06 14:50:22 -070042unsigned long memory_start, memory_end, physical_mem_end;
Mike Frysinger3132b582008-04-24 05:12:09 +080043unsigned long _rambase, _ramstart, _ramend;
Bryan Wu1394f032007-05-06 14:50:22 -070044unsigned long reserved_mem_dcache_on;
45unsigned long reserved_mem_icache_on;
46EXPORT_SYMBOL(memory_start);
47EXPORT_SYMBOL(memory_end);
48EXPORT_SYMBOL(physical_mem_end);
49EXPORT_SYMBOL(_ramend);
Vitja Makarov58c35bd2008-10-13 15:23:56 +080050EXPORT_SYMBOL(reserved_mem_dcache_on);
Bryan Wu1394f032007-05-06 14:50:22 -070051
52#ifdef CONFIG_MTD_UCLINUX
Mike Frysinger79df1b62009-05-26 23:34:51 +000053extern struct map_info uclinux_ram_map;
Bryan Wu1394f032007-05-06 14:50:22 -070054unsigned long memory_mtd_end, memory_mtd_start, mtd_size;
55unsigned long _ebss;
56EXPORT_SYMBOL(memory_mtd_end);
57EXPORT_SYMBOL(memory_mtd_start);
58EXPORT_SYMBOL(mtd_size);
59#endif
60
Mike Frysinger5e10b4a2007-06-11 16:44:09 +080061char __initdata command_line[COMMAND_LINE_SIZE];
Mike Frysingerfb1d9be2011-05-29 23:12:51 -040062struct blackfin_initial_pda __initdata initial_pda;
Bryan Wu1394f032007-05-06 14:50:22 -070063
Yi Li856783b2008-02-09 02:26:01 +080064/* boot memmap, for parsing "memmap=" */
65#define BFIN_MEMMAP_MAX 128 /* number of entries in bfin_memmap */
66#define BFIN_MEMMAP_RAM 1
67#define BFIN_MEMMAP_RESERVED 2
Mike Frysingeraf4c7d42009-02-04 16:49:45 +080068static struct bfin_memmap {
Yi Li856783b2008-02-09 02:26:01 +080069 int nr_map;
70 struct bfin_memmap_entry {
71 unsigned long long addr; /* start of memory segment */
72 unsigned long long size;
73 unsigned long type;
74 } map[BFIN_MEMMAP_MAX];
75} bfin_memmap __initdata;
76
77/* for memmap sanitization */
78struct change_member {
79 struct bfin_memmap_entry *pentry; /* pointer to original entry */
80 unsigned long long addr; /* address for this change point */
81};
82static struct change_member change_point_list[2*BFIN_MEMMAP_MAX] __initdata;
83static struct change_member *change_point[2*BFIN_MEMMAP_MAX] __initdata;
84static struct bfin_memmap_entry *overlap_list[BFIN_MEMMAP_MAX] __initdata;
85static struct bfin_memmap_entry new_map[BFIN_MEMMAP_MAX] __initdata;
86
Graf Yang8f658732008-11-18 17:48:22 +080087DEFINE_PER_CPU(struct blackfin_cpudata, cpu_data);
88
Mike Frysinger7f1e2f92009-01-07 23:14:38 +080089static int early_init_clkin_hz(char *buf);
90
Robin Getz3bebca22007-10-10 23:55:26 +080091#if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
Graf Yang8f658732008-11-18 17:48:22 +080092void __init generate_cplb_tables(void)
93{
94 unsigned int cpu;
95
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +080096 generate_cplb_tables_all();
Graf Yang8f658732008-11-18 17:48:22 +080097 /* Generate per-CPU I&D CPLB tables */
98 for (cpu = 0; cpu < num_possible_cpus(); ++cpu)
99 generate_cplb_tables_cpu(cpu);
100}
Bryan Wu1394f032007-05-06 14:50:22 -0700101#endif
102
Graf Yang8f658732008-11-18 17:48:22 +0800103void __cpuinit bfin_setup_caches(unsigned int cpu)
104{
Robin Getz3bebca22007-10-10 23:55:26 +0800105#ifdef CONFIG_BFIN_ICACHE
Graf Yang8f658732008-11-18 17:48:22 +0800106 bfin_icache_init(icplb_tbl[cpu]);
Bryan Wu1394f032007-05-06 14:50:22 -0700107#endif
108
Robin Getz3bebca22007-10-10 23:55:26 +0800109#ifdef CONFIG_BFIN_DCACHE
Graf Yang8f658732008-11-18 17:48:22 +0800110 bfin_dcache_init(dcplb_tbl[cpu]);
Graf Yang8f658732008-11-18 17:48:22 +0800111#endif
112
Mike Frysinger44491fb2011-04-13 18:57:57 -0400113 bfin_setup_cpudata(cpu);
114
Graf Yang8f658732008-11-18 17:48:22 +0800115 /*
116 * In cache coherence emulation mode, we need to have the
117 * D-cache enabled before running any atomic operation which
Michael Hennerich05d17df2009-08-21 03:49:19 +0000118 * might involve cache invalidation (i.e. spinlock, rwlock).
Graf Yang8f658732008-11-18 17:48:22 +0800119 * So printk's are deferred until then.
120 */
121#ifdef CONFIG_BFIN_ICACHE
122 printk(KERN_INFO "Instruction Cache Enabled for CPU%u\n", cpu);
Jie Zhang41ba6532009-06-16 09:48:33 +0000123 printk(KERN_INFO " External memory:"
124# ifdef CONFIG_BFIN_EXTMEM_ICACHEABLE
125 " cacheable"
126# else
127 " uncacheable"
Bryan Wu1394f032007-05-06 14:50:22 -0700128# endif
Jie Zhang41ba6532009-06-16 09:48:33 +0000129 " in instruction cache\n");
130 if (L2_LENGTH)
131 printk(KERN_INFO " L2 SRAM :"
132# ifdef CONFIG_BFIN_L2_ICACHEABLE
133 " cacheable"
134# else
135 " uncacheable"
136# endif
137 " in instruction cache\n");
138
139#else
140 printk(KERN_INFO "Instruction Cache Disabled for CPU%u\n", cpu);
141#endif
142
143#ifdef CONFIG_BFIN_DCACHE
144 printk(KERN_INFO "Data Cache Enabled for CPU%u\n", cpu);
145 printk(KERN_INFO " External memory:"
146# if defined CONFIG_BFIN_EXTMEM_WRITEBACK
147 " cacheable (write-back)"
148# elif defined CONFIG_BFIN_EXTMEM_WRITETHROUGH
149 " cacheable (write-through)"
150# else
151 " uncacheable"
152# endif
153 " in data cache\n");
154 if (L2_LENGTH)
155 printk(KERN_INFO " L2 SRAM :"
156# if defined CONFIG_BFIN_L2_WRITEBACK
157 " cacheable (write-back)"
158# elif defined CONFIG_BFIN_L2_WRITETHROUGH
159 " cacheable (write-through)"
160# else
161 " uncacheable"
162# endif
163 " in data cache\n");
164#else
165 printk(KERN_INFO "Data Cache Disabled for CPU%u\n", cpu);
Bryan Wu1394f032007-05-06 14:50:22 -0700166#endif
167}
168
Graf Yang8f658732008-11-18 17:48:22 +0800169void __cpuinit bfin_setup_cpudata(unsigned int cpu)
170{
171 struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu);
172
Graf Yang8f658732008-11-18 17:48:22 +0800173 cpudata->imemctl = bfin_read_IMEM_CONTROL();
174 cpudata->dmemctl = bfin_read_DMEM_CONTROL();
175}
176
177void __init bfin_cache_init(void)
178{
179#if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
180 generate_cplb_tables();
181#endif
182 bfin_setup_caches(0);
183}
184
Graf Yang5b04f272008-10-08 17:32:57 +0800185void __init bfin_relocate_l1_mem(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700186{
Mike Frysinger5cd82a62009-09-23 20:34:48 +0000187 unsigned long text_l1_len = (unsigned long)_text_l1_len;
188 unsigned long data_l1_len = (unsigned long)_data_l1_len;
189 unsigned long data_b_l1_len = (unsigned long)_data_b_l1_len;
190 unsigned long l2_len = (unsigned long)_l2_len;
Bryan Wu1394f032007-05-06 14:50:22 -0700191
Robin Getz837ec2d2009-07-07 20:17:09 +0000192 early_shadow_stamp();
193
Robin Getzfecbd732009-04-23 20:49:43 +0000194 /*
195 * due to the ALIGN(4) in the arch/blackfin/kernel/vmlinux.lds.S
196 * we know that everything about l1 text/data is nice and aligned,
197 * so copy by 4 byte chunks, and don't worry about overlapping
198 * src/dest.
199 *
200 * We can't use the dma_memcpy functions, since they can call
201 * scheduler functions which might be in L1 :( and core writes
202 * into L1 instruction cause bad access errors, so we are stuck,
203 * we are required to use DMA, but can't use the common dma
204 * functions. We can't use memcpy either - since that might be
205 * going to be in the relocated L1
Bryan Wu1394f032007-05-06 14:50:22 -0700206 */
207
Robin Getzfecbd732009-04-23 20:49:43 +0000208 blackfin_dma_early_init();
Bryan Wu1394f032007-05-06 14:50:22 -0700209
Mike Frysinger5cd82a62009-09-23 20:34:48 +0000210 /* if necessary, copy L1 text to L1 instruction SRAM */
211 if (L1_CODE_LENGTH && text_l1_len)
212 early_dma_memcpy(_stext_l1, _text_l1_lma, text_l1_len);
Robin Getzfecbd732009-04-23 20:49:43 +0000213
Mike Frysinger5cd82a62009-09-23 20:34:48 +0000214 /* if necessary, copy L1 data to L1 data bank A SRAM */
215 if (L1_DATA_A_LENGTH && data_l1_len)
216 early_dma_memcpy(_sdata_l1, _data_l1_lma, data_l1_len);
Bryan Wu1394f032007-05-06 14:50:22 -0700217
Mike Frysinger5cd82a62009-09-23 20:34:48 +0000218 /* if necessary, copy L1 data B to L1 data bank B SRAM */
219 if (L1_DATA_B_LENGTH && data_b_l1_len)
220 early_dma_memcpy(_sdata_b_l1, _data_b_l1_lma, data_b_l1_len);
Sonic Zhang262c3822008-07-19 15:42:41 +0800221
Robin Getzfecbd732009-04-23 20:49:43 +0000222 early_dma_memcpy_done();
223
Sonic Zhangc6345ab2010-08-05 07:49:26 +0000224#if defined(CONFIG_SMP) && defined(CONFIG_ICACHE_FLUSH_L1)
225 blackfin_iflush_l1_entry[0] = (unsigned long)blackfin_icache_flush_range_l1;
226#endif
227
Mike Frysinger5cd82a62009-09-23 20:34:48 +0000228 /* if necessary, copy L2 text/data to L2 SRAM */
229 if (L2_LENGTH && l2_len)
230 memcpy(_stext_l2, _l2_lma, l2_len);
Bryan Wu1394f032007-05-06 14:50:22 -0700231}
232
Sonic Zhangc6345ab2010-08-05 07:49:26 +0000233#ifdef CONFIG_SMP
234void __init bfin_relocate_coreb_l1_mem(void)
235{
236 unsigned long text_l1_len = (unsigned long)_text_l1_len;
237 unsigned long data_l1_len = (unsigned long)_data_l1_len;
238 unsigned long data_b_l1_len = (unsigned long)_data_b_l1_len;
239
240 blackfin_dma_early_init();
241
242 /* if necessary, copy L1 text to L1 instruction SRAM */
243 if (L1_CODE_LENGTH && text_l1_len)
244 early_dma_memcpy((void *)COREB_L1_CODE_START, _text_l1_lma,
245 text_l1_len);
246
247 /* if necessary, copy L1 data to L1 data bank A SRAM */
248 if (L1_DATA_A_LENGTH && data_l1_len)
249 early_dma_memcpy((void *)COREB_L1_DATA_A_START, _data_l1_lma,
250 data_l1_len);
251
252 /* if necessary, copy L1 data B to L1 data bank B SRAM */
253 if (L1_DATA_B_LENGTH && data_b_l1_len)
254 early_dma_memcpy((void *)COREB_L1_DATA_B_START, _data_b_l1_lma,
255 data_b_l1_len);
256
257 early_dma_memcpy_done();
258
259#ifdef CONFIG_ICACHE_FLUSH_L1
260 blackfin_iflush_l1_entry[1] = (unsigned long)blackfin_icache_flush_range_l1 -
261 (unsigned long)_stext_l1 + COREB_L1_CODE_START;
262#endif
263}
264#endif
265
Barry Songd86bfb12010-01-07 04:11:17 +0000266#ifdef CONFIG_ROMKERNEL
267void __init bfin_relocate_xip_data(void)
268{
269 early_shadow_stamp();
270
271 memcpy(_sdata, _data_lma, (unsigned long)_data_len - THREAD_SIZE + sizeof(struct thread_info));
272 memcpy(_sinitdata, _init_data_lma, (unsigned long)_init_data_len);
273}
274#endif
275
Yi Li856783b2008-02-09 02:26:01 +0800276/* add_memory_region to memmap */
277static void __init add_memory_region(unsigned long long start,
278 unsigned long long size, int type)
279{
280 int i;
281
282 i = bfin_memmap.nr_map;
283
284 if (i == BFIN_MEMMAP_MAX) {
285 printk(KERN_ERR "Ooops! Too many entries in the memory map!\n");
286 return;
287 }
288
289 bfin_memmap.map[i].addr = start;
290 bfin_memmap.map[i].size = size;
291 bfin_memmap.map[i].type = type;
292 bfin_memmap.nr_map++;
293}
294
295/*
296 * Sanitize the boot memmap, removing overlaps.
297 */
298static int __init sanitize_memmap(struct bfin_memmap_entry *map, int *pnr_map)
299{
300 struct change_member *change_tmp;
301 unsigned long current_type, last_type;
302 unsigned long long last_addr;
303 int chgidx, still_changing;
304 int overlap_entries;
305 int new_entry;
306 int old_nr, new_nr, chg_nr;
307 int i;
308
309 /*
310 Visually we're performing the following (1,2,3,4 = memory types)
311
312 Sample memory map (w/overlaps):
313 ____22__________________
314 ______________________4_
315 ____1111________________
316 _44_____________________
317 11111111________________
318 ____________________33__
319 ___________44___________
320 __________33333_________
321 ______________22________
322 ___________________2222_
323 _________111111111______
324 _____________________11_
325 _________________4______
326
327 Sanitized equivalent (no overlap):
328 1_______________________
329 _44_____________________
330 ___1____________________
331 ____22__________________
332 ______11________________
333 _________1______________
334 __________3_____________
335 ___________44___________
336 _____________33_________
337 _______________2________
338 ________________1_______
339 _________________4______
340 ___________________2____
341 ____________________33__
342 ______________________4_
343 */
344 /* if there's only one memory region, don't bother */
345 if (*pnr_map < 2)
346 return -1;
347
348 old_nr = *pnr_map;
349
350 /* bail out if we find any unreasonable addresses in memmap */
351 for (i = 0; i < old_nr; i++)
352 if (map[i].addr + map[i].size < map[i].addr)
353 return -1;
354
355 /* create pointers for initial change-point information (for sorting) */
356 for (i = 0; i < 2*old_nr; i++)
357 change_point[i] = &change_point_list[i];
358
359 /* record all known change-points (starting and ending addresses),
360 omitting those that are for empty memory regions */
361 chgidx = 0;
Graf Yang8f658732008-11-18 17:48:22 +0800362 for (i = 0; i < old_nr; i++) {
Yi Li856783b2008-02-09 02:26:01 +0800363 if (map[i].size != 0) {
364 change_point[chgidx]->addr = map[i].addr;
365 change_point[chgidx++]->pentry = &map[i];
366 change_point[chgidx]->addr = map[i].addr + map[i].size;
367 change_point[chgidx++]->pentry = &map[i];
368 }
369 }
Graf Yang8f658732008-11-18 17:48:22 +0800370 chg_nr = chgidx; /* true number of change-points */
Yi Li856783b2008-02-09 02:26:01 +0800371
372 /* sort change-point list by memory addresses (low -> high) */
373 still_changing = 1;
Graf Yang8f658732008-11-18 17:48:22 +0800374 while (still_changing) {
Yi Li856783b2008-02-09 02:26:01 +0800375 still_changing = 0;
Graf Yang8f658732008-11-18 17:48:22 +0800376 for (i = 1; i < chg_nr; i++) {
Yi Li856783b2008-02-09 02:26:01 +0800377 /* if <current_addr> > <last_addr>, swap */
378 /* or, if current=<start_addr> & last=<end_addr>, swap */
379 if ((change_point[i]->addr < change_point[i-1]->addr) ||
380 ((change_point[i]->addr == change_point[i-1]->addr) &&
381 (change_point[i]->addr == change_point[i]->pentry->addr) &&
382 (change_point[i-1]->addr != change_point[i-1]->pentry->addr))
383 ) {
384 change_tmp = change_point[i];
385 change_point[i] = change_point[i-1];
386 change_point[i-1] = change_tmp;
387 still_changing = 1;
388 }
389 }
390 }
391
392 /* create a new memmap, removing overlaps */
Graf Yang8f658732008-11-18 17:48:22 +0800393 overlap_entries = 0; /* number of entries in the overlap table */
394 new_entry = 0; /* index for creating new memmap entries */
395 last_type = 0; /* start with undefined memory type */
396 last_addr = 0; /* start with 0 as last starting address */
Yi Li856783b2008-02-09 02:26:01 +0800397 /* loop through change-points, determining affect on the new memmap */
398 for (chgidx = 0; chgidx < chg_nr; chgidx++) {
399 /* keep track of all overlapping memmap entries */
400 if (change_point[chgidx]->addr == change_point[chgidx]->pentry->addr) {
401 /* add map entry to overlap list (> 1 entry implies an overlap) */
402 overlap_list[overlap_entries++] = change_point[chgidx]->pentry;
403 } else {
404 /* remove entry from list (order independent, so swap with last) */
405 for (i = 0; i < overlap_entries; i++) {
406 if (overlap_list[i] == change_point[chgidx]->pentry)
407 overlap_list[i] = overlap_list[overlap_entries-1];
408 }
409 overlap_entries--;
410 }
411 /* if there are overlapping entries, decide which "type" to use */
412 /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */
413 current_type = 0;
414 for (i = 0; i < overlap_entries; i++)
415 if (overlap_list[i]->type > current_type)
416 current_type = overlap_list[i]->type;
417 /* continue building up new memmap based on this information */
Graf Yang8f658732008-11-18 17:48:22 +0800418 if (current_type != last_type) {
Yi Li856783b2008-02-09 02:26:01 +0800419 if (last_type != 0) {
420 new_map[new_entry].size =
421 change_point[chgidx]->addr - last_addr;
422 /* move forward only if the new size was non-zero */
423 if (new_map[new_entry].size != 0)
424 if (++new_entry >= BFIN_MEMMAP_MAX)
Graf Yang8f658732008-11-18 17:48:22 +0800425 break; /* no more space left for new entries */
Yi Li856783b2008-02-09 02:26:01 +0800426 }
427 if (current_type != 0) {
428 new_map[new_entry].addr = change_point[chgidx]->addr;
429 new_map[new_entry].type = current_type;
430 last_addr = change_point[chgidx]->addr;
431 }
432 last_type = current_type;
433 }
434 }
Graf Yang8f658732008-11-18 17:48:22 +0800435 new_nr = new_entry; /* retain count for new entries */
Yi Li856783b2008-02-09 02:26:01 +0800436
Graf Yang8f658732008-11-18 17:48:22 +0800437 /* copy new mapping into original location */
Yi Li856783b2008-02-09 02:26:01 +0800438 memcpy(map, new_map, new_nr*sizeof(struct bfin_memmap_entry));
439 *pnr_map = new_nr;
440
441 return 0;
442}
443
444static void __init print_memory_map(char *who)
445{
446 int i;
447
448 for (i = 0; i < bfin_memmap.nr_map; i++) {
449 printk(KERN_DEBUG " %s: %016Lx - %016Lx ", who,
450 bfin_memmap.map[i].addr,
451 bfin_memmap.map[i].addr + bfin_memmap.map[i].size);
452 switch (bfin_memmap.map[i].type) {
453 case BFIN_MEMMAP_RAM:
Joe Perchesad361c92009-07-06 13:05:40 -0700454 printk(KERN_CONT "(usable)\n");
455 break;
Yi Li856783b2008-02-09 02:26:01 +0800456 case BFIN_MEMMAP_RESERVED:
Joe Perchesad361c92009-07-06 13:05:40 -0700457 printk(KERN_CONT "(reserved)\n");
458 break;
459 default:
460 printk(KERN_CONT "type %lu\n", bfin_memmap.map[i].type);
461 break;
Yi Li856783b2008-02-09 02:26:01 +0800462 }
463 }
464}
465
466static __init int parse_memmap(char *arg)
467{
468 unsigned long long start_at, mem_size;
469
470 if (!arg)
471 return -EINVAL;
472
473 mem_size = memparse(arg, &arg);
474 if (*arg == '@') {
475 start_at = memparse(arg+1, &arg);
476 add_memory_region(start_at, mem_size, BFIN_MEMMAP_RAM);
477 } else if (*arg == '$') {
478 start_at = memparse(arg+1, &arg);
479 add_memory_region(start_at, mem_size, BFIN_MEMMAP_RESERVED);
480 }
481
482 return 0;
483}
484
Bryan Wu1394f032007-05-06 14:50:22 -0700485/*
486 * Initial parsing of the command line. Currently, we support:
487 * - Controlling the linux memory size: mem=xxx[KMG]
488 * - Controlling the physical memory size: max_mem=xxx[KMG][$][#]
489 * $ -> reserved memory is dcacheable
490 * # -> reserved memory is icacheable
Yi Li856783b2008-02-09 02:26:01 +0800491 * - "memmap=XXX[KkmM][@][$]XXX[KkmM]" defines a memory region
492 * @ from <start> to <start>+<mem>, type RAM
493 * $ from <start> to <start>+<mem>, type RESERVED
Bryan Wu1394f032007-05-06 14:50:22 -0700494 */
495static __init void parse_cmdline_early(char *cmdline_p)
496{
497 char c = ' ', *to = cmdline_p;
498 unsigned int memsize;
499 for (;;) {
500 if (c == ' ') {
Bryan Wu1394f032007-05-06 14:50:22 -0700501 if (!memcmp(to, "mem=", 4)) {
502 to += 4;
503 memsize = memparse(to, &to);
504 if (memsize)
505 _ramend = memsize;
506
507 } else if (!memcmp(to, "max_mem=", 8)) {
508 to += 8;
509 memsize = memparse(to, &to);
510 if (memsize) {
511 physical_mem_end = memsize;
512 if (*to != ' ') {
513 if (*to == '$'
514 || *(to + 1) == '$')
Graf Yang8f658732008-11-18 17:48:22 +0800515 reserved_mem_dcache_on = 1;
Bryan Wu1394f032007-05-06 14:50:22 -0700516 if (*to == '#'
517 || *(to + 1) == '#')
Graf Yang8f658732008-11-18 17:48:22 +0800518 reserved_mem_icache_on = 1;
Bryan Wu1394f032007-05-06 14:50:22 -0700519 }
520 }
Mike Frysinger7f1e2f92009-01-07 23:14:38 +0800521 } else if (!memcmp(to, "clkin_hz=", 9)) {
522 to += 9;
523 early_init_clkin_hz(to);
Robin Getzbd854c02009-06-18 22:53:43 +0000524#ifdef CONFIG_EARLY_PRINTK
Robin Getzce3afa12007-10-09 17:28:36 +0800525 } else if (!memcmp(to, "earlyprintk=", 12)) {
526 to += 12;
527 setup_early_printk(to);
Robin Getzbd854c02009-06-18 22:53:43 +0000528#endif
Yi Li856783b2008-02-09 02:26:01 +0800529 } else if (!memcmp(to, "memmap=", 7)) {
530 to += 7;
531 parse_memmap(to);
Bryan Wu1394f032007-05-06 14:50:22 -0700532 }
Bryan Wu1394f032007-05-06 14:50:22 -0700533 }
534 c = *(to++);
535 if (!c)
536 break;
537 }
538}
539
Yi Li856783b2008-02-09 02:26:01 +0800540/*
541 * Setup memory defaults from user config.
542 * The physical memory layout looks like:
543 *
544 * [_rambase, _ramstart]: kernel image
545 * [memory_start, memory_end]: dynamic memory managed by kernel
546 * [memory_end, _ramend]: reserved memory
Bryan Wu3094c982008-10-10 21:22:01 +0800547 * [memory_mtd_start(memory_end),
Yi Li856783b2008-02-09 02:26:01 +0800548 * memory_mtd_start + mtd_size]: rootfs (if any)
549 * [_ramend - DMA_UNCACHED_REGION,
550 * _ramend]: uncached DMA region
551 * [_ramend, physical_mem_end]: memory not managed by kernel
Yi Li856783b2008-02-09 02:26:01 +0800552 */
Graf Yang8f658732008-11-18 17:48:22 +0800553static __init void memory_setup(void)
Bryan Wu1394f032007-05-06 14:50:22 -0700554{
Mike Frysingerc0eab3b2008-02-02 15:36:11 +0800555#ifdef CONFIG_MTD_UCLINUX
556 unsigned long mtd_phys = 0;
557#endif
Robin Getz2f812c02009-06-26 12:52:46 +0000558 unsigned long max_mem;
Mike Frysingerc0eab3b2008-02-02 15:36:11 +0800559
Barry Songd86bfb12010-01-07 04:11:17 +0000560 _rambase = CONFIG_BOOT_LOAD;
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800561 _ramstart = (unsigned long)_end;
Bryan Wu1394f032007-05-06 14:50:22 -0700562
Yi Li856783b2008-02-09 02:26:01 +0800563 if (DMA_UNCACHED_REGION > (_ramend - _ramstart)) {
564 console_init();
Mike Frysingerd8804ad2009-04-29 06:26:46 +0000565 panic("DMA region exceeds memory limit: %lu.",
Yi Li856783b2008-02-09 02:26:01 +0800566 _ramend - _ramstart);
Mike Frysinger1aafd902007-07-25 11:19:14 +0800567 }
Robin Getz2f812c02009-06-26 12:52:46 +0000568 max_mem = memory_end = _ramend - DMA_UNCACHED_REGION;
569
570#if (defined(CONFIG_BFIN_EXTMEM_ICACHEABLE) && ANOMALY_05000263)
571 /* Due to a Hardware Anomaly we need to limit the size of usable
572 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
573 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
574 */
575# if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
576 if (max_mem >= 56 * 1024 * 1024)
577 max_mem = 56 * 1024 * 1024;
578# else
579 if (max_mem >= 60 * 1024 * 1024)
580 max_mem = 60 * 1024 * 1024;
581# endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
582#endif /* ANOMALY_05000263 */
583
Bryan Wu1394f032007-05-06 14:50:22 -0700584
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800585#ifdef CONFIG_MPU
Graf Yang8f658732008-11-18 17:48:22 +0800586 /* Round up to multiple of 4MB */
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800587 memory_start = (_ramstart + 0x3fffff) & ~0x3fffff;
588#else
Bryan Wu1394f032007-05-06 14:50:22 -0700589 memory_start = PAGE_ALIGN(_ramstart);
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800590#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700591
592#if defined(CONFIG_MTD_UCLINUX)
593 /* generic memory mapped MTD driver */
594 memory_mtd_end = memory_end;
595
596 mtd_phys = _ramstart;
597 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 8)));
598
599# if defined(CONFIG_EXT2_FS) || defined(CONFIG_EXT3_FS)
Bob Liub5affb02012-05-16 17:37:24 +0800600 if (*((unsigned short *)(mtd_phys + 0x438)) == EXT2_SUPER_MAGIC)
601 mtd_size =
602 PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x404)) << 10);
Bryan Wu1394f032007-05-06 14:50:22 -0700603# endif
604
605# if defined(CONFIG_CRAMFS)
606 if (*((unsigned long *)(mtd_phys)) == CRAMFS_MAGIC)
607 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x4)));
608# endif
609
610# if defined(CONFIG_ROMFS_FS)
611 if (((unsigned long *)mtd_phys)[0] == ROMSB_WORD0
Robin Getz2f812c02009-06-26 12:52:46 +0000612 && ((unsigned long *)mtd_phys)[1] == ROMSB_WORD1) {
Bryan Wu1394f032007-05-06 14:50:22 -0700613 mtd_size =
614 PAGE_ALIGN(be32_to_cpu(((unsigned long *)mtd_phys)[2]));
Robin Getz2f812c02009-06-26 12:52:46 +0000615
616 /* ROM_FS is XIP, so if we found it, we need to limit memory */
617 if (memory_end > max_mem) {
Bob Liub5affb02012-05-16 17:37:24 +0800618 pr_info("Limiting kernel memory to %liMB due to anomaly 05000263\n",
619 (max_mem - CONFIG_PHY_RAM_BASE_ADDRESS) >> 20);
Robin Getz2f812c02009-06-26 12:52:46 +0000620 memory_end = max_mem;
621 }
622 }
Bryan Wu1394f032007-05-06 14:50:22 -0700623# endif /* CONFIG_ROMFS_FS */
624
Robin Getzdc437b12009-06-26 12:23:51 +0000625 /* Since the default MTD_UCLINUX has no magic number, we just blindly
626 * read 8 past the end of the kernel's image, and look at it.
627 * When no image is attached, mtd_size is set to a random number
628 * Do some basic sanity checks before operating on things
629 */
630 if (mtd_size == 0 || memory_end <= mtd_size) {
631 pr_emerg("Could not find valid ram mtd attached.\n");
632 } else {
633 memory_end -= mtd_size;
Bryan Wu1394f032007-05-06 14:50:22 -0700634
Robin Getzdc437b12009-06-26 12:23:51 +0000635 /* Relocate MTD image to the top of memory after the uncached memory area */
636 uclinux_ram_map.phys = memory_mtd_start = memory_end;
637 uclinux_ram_map.size = mtd_size;
638 pr_info("Found mtd parition at 0x%p, (len=0x%lx), moving to 0x%p\n",
639 _end, mtd_size, (void *)memory_mtd_start);
640 dma_memcpy((void *)uclinux_ram_map.phys, _end, uclinux_ram_map.size);
Bryan Wu1394f032007-05-06 14:50:22 -0700641 }
Bryan Wu1394f032007-05-06 14:50:22 -0700642#endif /* CONFIG_MTD_UCLINUX */
643
Robin Getz2f812c02009-06-26 12:52:46 +0000644 /* We need lo limit memory, since everything could have a text section
645 * of userspace in it, and expose anomaly 05000263. If the anomaly
646 * doesn't exist, or we don't need to - then dont.
Bryan Wu1394f032007-05-06 14:50:22 -0700647 */
Robin Getz2f812c02009-06-26 12:52:46 +0000648 if (memory_end > max_mem) {
Bob Liub5affb02012-05-16 17:37:24 +0800649 pr_info("Limiting kernel memory to %liMB due to anomaly 05000263\n",
650 (max_mem - CONFIG_PHY_RAM_BASE_ADDRESS) >> 20);
Robin Getz2f812c02009-06-26 12:52:46 +0000651 memory_end = max_mem;
652 }
Bryan Wu1394f032007-05-06 14:50:22 -0700653
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800654#ifdef CONFIG_MPU
Barry Songe18e7dd2009-12-07 10:05:58 +0000655#if defined(CONFIG_ROMFS_ON_MTD) && defined(CONFIG_MTD_ROM)
656 page_mask_nelts = (((_ramend + ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE -
657 ASYNC_BANK0_BASE) >> PAGE_SHIFT) + 31) / 32;
658#else
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800659 page_mask_nelts = ((_ramend >> PAGE_SHIFT) + 31) / 32;
Barry Songe18e7dd2009-12-07 10:05:58 +0000660#endif
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800661 page_mask_order = get_order(3 * page_mask_nelts * sizeof(long));
662#endif
663
Bryan Wu1394f032007-05-06 14:50:22 -0700664 init_mm.start_code = (unsigned long)_stext;
665 init_mm.end_code = (unsigned long)_etext;
666 init_mm.end_data = (unsigned long)_edata;
667 init_mm.brk = (unsigned long)0;
668
Bob Liub5affb02012-05-16 17:37:24 +0800669 printk(KERN_INFO "Board Memory: %ldMB\n", (physical_mem_end - CONFIG_PHY_RAM_BASE_ADDRESS) >> 20);
670 printk(KERN_INFO "Kernel Managed Memory: %ldMB\n", (_ramend - CONFIG_PHY_RAM_BASE_ADDRESS) >> 20);
Yi Li856783b2008-02-09 02:26:01 +0800671
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800672 printk(KERN_INFO "Memory map:\n"
Joe Perchesad361c92009-07-06 13:05:40 -0700673 " fixedcode = 0x%p-0x%p\n"
674 " text = 0x%p-0x%p\n"
675 " rodata = 0x%p-0x%p\n"
676 " bss = 0x%p-0x%p\n"
677 " data = 0x%p-0x%p\n"
678 " stack = 0x%p-0x%p\n"
679 " init = 0x%p-0x%p\n"
680 " available = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800681#ifdef CONFIG_MTD_UCLINUX
Joe Perchesad361c92009-07-06 13:05:40 -0700682 " rootfs = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800683#endif
684#if DMA_UNCACHED_REGION > 0
Joe Perchesad361c92009-07-06 13:05:40 -0700685 " DMA Zone = 0x%p-0x%p\n"
Yi Li856783b2008-02-09 02:26:01 +0800686#endif
Mike Frysinger8929ecf82008-02-22 16:35:20 +0800687 , (void *)FIXED_CODE_START, (void *)FIXED_CODE_END,
688 _stext, _etext,
Yi Li856783b2008-02-09 02:26:01 +0800689 __start_rodata, __end_rodata,
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800690 __bss_start, __bss_stop,
Yi Li856783b2008-02-09 02:26:01 +0800691 _sdata, _edata,
692 (void *)&init_thread_union,
Barry Song6feda3a2010-01-05 07:05:50 +0000693 (void *)((int)(&init_thread_union) + THREAD_SIZE),
Mike Frysingerb7627ac2008-02-02 15:53:17 +0800694 __init_begin, __init_end,
695 (void *)_ramstart, (void *)memory_end
Yi Li856783b2008-02-09 02:26:01 +0800696#ifdef CONFIG_MTD_UCLINUX
697 , (void *)memory_mtd_start, (void *)(memory_mtd_start + mtd_size)
698#endif
699#if DMA_UNCACHED_REGION > 0
700 , (void *)(_ramend - DMA_UNCACHED_REGION), (void *)(_ramend)
701#endif
702 );
703}
704
Yi Li2e8d7962008-03-26 07:08:12 +0800705/*
706 * Find the lowest, highest page frame number we have available
707 */
708void __init find_min_max_pfn(void)
709{
710 int i;
711
712 max_pfn = 0;
Bob Liub5affb02012-05-16 17:37:24 +0800713 min_low_pfn = PFN_DOWN(memory_end);
Yi Li2e8d7962008-03-26 07:08:12 +0800714
715 for (i = 0; i < bfin_memmap.nr_map; i++) {
716 unsigned long start, end;
717 /* RAM? */
718 if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM)
719 continue;
720 start = PFN_UP(bfin_memmap.map[i].addr);
721 end = PFN_DOWN(bfin_memmap.map[i].addr +
722 bfin_memmap.map[i].size);
723 if (start >= end)
724 continue;
725 if (end > max_pfn)
726 max_pfn = end;
727 if (start < min_low_pfn)
728 min_low_pfn = start;
729 }
730}
731
Yi Li856783b2008-02-09 02:26:01 +0800732static __init void setup_bootmem_allocator(void)
733{
734 int bootmap_size;
735 int i;
Yi Li2e8d7962008-03-26 07:08:12 +0800736 unsigned long start_pfn, end_pfn;
Yi Li856783b2008-02-09 02:26:01 +0800737 unsigned long curr_pfn, last_pfn, size;
738
739 /* mark memory between memory_start and memory_end usable */
740 add_memory_region(memory_start,
741 memory_end - memory_start, BFIN_MEMMAP_RAM);
742 /* sanity check for overlap */
743 sanitize_memmap(bfin_memmap.map, &bfin_memmap.nr_map);
744 print_memory_map("boot memmap");
745
Michael Hennerich05d17df2009-08-21 03:49:19 +0000746 /* initialize globals in linux/bootmem.h */
Yi Li2e8d7962008-03-26 07:08:12 +0800747 find_min_max_pfn();
748 /* pfn of the last usable page frame */
749 if (max_pfn > memory_end >> PAGE_SHIFT)
750 max_pfn = memory_end >> PAGE_SHIFT;
751 /* pfn of last page frame directly mapped by kernel */
752 max_low_pfn = max_pfn;
753 /* pfn of the first usable page frame after kernel image*/
754 if (min_low_pfn < memory_start >> PAGE_SHIFT)
755 min_low_pfn = memory_start >> PAGE_SHIFT;
Bob Liub5affb02012-05-16 17:37:24 +0800756 start_pfn = CONFIG_PHY_RAM_BASE_ADDRESS >> PAGE_SHIFT;
Yi Li2e8d7962008-03-26 07:08:12 +0800757 end_pfn = memory_end >> PAGE_SHIFT;
Yi Li856783b2008-02-09 02:26:01 +0800758
759 /*
Graf Yang8f658732008-11-18 17:48:22 +0800760 * give all the memory to the bootmap allocator, tell it to put the
Yi Li856783b2008-02-09 02:26:01 +0800761 * boot mem_map at the start of memory.
762 */
763 bootmap_size = init_bootmem_node(NODE_DATA(0),
764 memory_start >> PAGE_SHIFT, /* map goes here */
Yi Li2e8d7962008-03-26 07:08:12 +0800765 start_pfn, end_pfn);
Yi Li856783b2008-02-09 02:26:01 +0800766
767 /* register the memmap regions with the bootmem allocator */
768 for (i = 0; i < bfin_memmap.nr_map; i++) {
769 /*
770 * Reserve usable memory
771 */
772 if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM)
773 continue;
774 /*
775 * We are rounding up the start address of usable memory:
776 */
777 curr_pfn = PFN_UP(bfin_memmap.map[i].addr);
Yi Li2e8d7962008-03-26 07:08:12 +0800778 if (curr_pfn >= end_pfn)
Yi Li856783b2008-02-09 02:26:01 +0800779 continue;
780 /*
781 * ... and at the end of the usable range downwards:
782 */
783 last_pfn = PFN_DOWN(bfin_memmap.map[i].addr +
784 bfin_memmap.map[i].size);
785
Yi Li2e8d7962008-03-26 07:08:12 +0800786 if (last_pfn > end_pfn)
787 last_pfn = end_pfn;
Yi Li856783b2008-02-09 02:26:01 +0800788
789 /*
790 * .. finally, did all the rounding and playing
791 * around just make the area go away?
792 */
793 if (last_pfn <= curr_pfn)
794 continue;
795
796 size = last_pfn - curr_pfn;
797 free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(size));
798 }
799
800 /* reserve memory before memory_start, including bootmap */
Bob Liub5affb02012-05-16 17:37:24 +0800801 reserve_bootmem(CONFIG_PHY_RAM_BASE_ADDRESS,
802 memory_start + bootmap_size + PAGE_SIZE - 1 - CONFIG_PHY_RAM_BASE_ADDRESS,
Yi Li856783b2008-02-09 02:26:01 +0800803 BOOTMEM_DEFAULT);
804}
805
Mike Frysingera086ee22008-04-25 02:04:05 +0800806#define EBSZ_TO_MEG(ebsz) \
807({ \
808 int meg = 0; \
809 switch (ebsz & 0xf) { \
810 case 0x1: meg = 16; break; \
811 case 0x3: meg = 32; break; \
812 case 0x5: meg = 64; break; \
813 case 0x7: meg = 128; break; \
814 case 0x9: meg = 256; break; \
815 case 0xb: meg = 512; break; \
816 } \
817 meg; \
818})
819static inline int __init get_mem_size(void)
820{
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800821#if defined(EBIU_SDBCTL)
822# if defined(BF561_FAMILY)
Mike Frysingera086ee22008-04-25 02:04:05 +0800823 int ret = 0;
824 u32 sdbctl = bfin_read_EBIU_SDBCTL();
825 ret += EBSZ_TO_MEG(sdbctl >> 0);
826 ret += EBSZ_TO_MEG(sdbctl >> 8);
827 ret += EBSZ_TO_MEG(sdbctl >> 16);
828 ret += EBSZ_TO_MEG(sdbctl >> 24);
829 return ret;
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800830# else
Mike Frysingera086ee22008-04-25 02:04:05 +0800831 return EBSZ_TO_MEG(bfin_read_EBIU_SDBCTL());
Michael Hennerich99d95bb2008-07-14 17:04:14 +0800832# endif
833#elif defined(EBIU_DDRCTL1)
Michael Hennerich1e780422008-04-25 04:31:23 +0800834 u32 ddrctl = bfin_read_EBIU_DDRCTL1();
835 int ret = 0;
836 switch (ddrctl & 0xc0000) {
Steven Miao4dbeccd2011-11-30 11:42:49 +0800837 case DEVSZ_64:
838 ret = 64 / 8;
839 break;
840 case DEVSZ_128:
841 ret = 128 / 8;
842 break;
843 case DEVSZ_256:
844 ret = 256 / 8;
845 break;
846 case DEVSZ_512:
847 ret = 512 / 8;
848 break;
Mike Frysingera086ee22008-04-25 02:04:05 +0800849 }
Michael Hennerich1e780422008-04-25 04:31:23 +0800850 switch (ddrctl & 0x30000) {
Bob Liub5affb02012-05-16 17:37:24 +0800851 case DEVWD_4:
852 ret *= 2;
853 case DEVWD_8:
854 ret *= 2;
855 case DEVWD_16:
856 break;
Michael Hennerich1e780422008-04-25 04:31:23 +0800857 }
Mike Frysingerb1b154e2008-07-26 18:02:05 +0800858 if ((ddrctl & 0xc000) == 0x4000)
859 ret *= 2;
Michael Hennerich1e780422008-04-25 04:31:23 +0800860 return ret;
Bob Liub5affb02012-05-16 17:37:24 +0800861#elif defined(CONFIG_BF60x)
Sonic Zhang8bf71352012-05-15 13:04:24 +0800862 u32 ddrctl = bfin_read_DMC0_CFG();
Bob Liub5affb02012-05-16 17:37:24 +0800863 int ret;
864 switch (ddrctl & 0xf00) {
865 case DEVSZ_64:
866 ret = 64 / 8;
867 break;
868 case DEVSZ_128:
869 ret = 128 / 8;
870 break;
871 case DEVSZ_256:
872 ret = 256 / 8;
873 break;
874 case DEVSZ_512:
875 ret = 512 / 8;
876 break;
877 case DEVSZ_1G:
878 ret = 1024 / 8;
879 break;
880 case DEVSZ_2G:
881 ret = 2048 / 8;
882 break;
883 }
884 return ret;
Mike Frysingera086ee22008-04-25 02:04:05 +0800885#endif
886 BUG();
887}
888
Sonic Zhangb635f192009-09-23 08:06:25 +0000889__attribute__((weak))
890void __init native_machine_early_platform_add_devices(void)
891{
892}
893
Sonic Zhang1d3dbda2012-05-17 17:35:24 +0800894#ifdef CONFIG_BF60x
895static inline u_long bfin_get_clk(char *name)
896{
897 struct clk *clk;
898 u_long clk_rate;
899
900 clk = clk_get(NULL, name);
901 if (IS_ERR(clk))
902 return 0;
903
904 clk_rate = clk_get_rate(clk);
905 clk_put(clk);
906 return clk_rate;
907}
908#endif
909
Yi Li856783b2008-02-09 02:26:01 +0800910void __init setup_arch(char **cmdline_p)
911{
Mike Frysinger00b5c502011-04-18 18:37:38 -0400912 u32 mmr;
Mike Frysinger9f8e8952008-04-24 06:20:11 +0800913 unsigned long sclk, cclk;
Yi Li856783b2008-02-09 02:26:01 +0800914
Sonic Zhangb635f192009-09-23 08:06:25 +0000915 native_machine_early_platform_add_devices();
916
Robin Getz3f871fe2009-07-06 14:53:19 +0000917 enable_shadow_console();
918
Robin Getzbd854c02009-06-18 22:53:43 +0000919 /* Check to make sure we are running on the right processor */
Bob Liub5affb02012-05-16 17:37:24 +0800920 mmr = bfin_cpuid();
Robin Getzbd854c02009-06-18 22:53:43 +0000921 if (unlikely(CPUID != bfin_cpuid()))
922 printk(KERN_ERR "ERROR: Not running on ADSP-%s: unknown CPUID 0x%04x Rev 0.%d\n",
923 CPU, bfin_cpuid(), bfin_revid());
924
Yi Li856783b2008-02-09 02:26:01 +0800925#ifdef CONFIG_DUMMY_CONSOLE
926 conswitchp = &dummy_con;
927#endif
928
929#if defined(CONFIG_CMDLINE_BOOL)
930 strncpy(&command_line[0], CONFIG_CMDLINE, sizeof(command_line));
931 command_line[sizeof(command_line) - 1] = 0;
932#endif
933
934 /* Keep a copy of command line */
935 *cmdline_p = &command_line[0];
936 memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
937 boot_command_line[COMMAND_LINE_SIZE - 1] = '\0';
938
Yi Li856783b2008-02-09 02:26:01 +0800939 memset(&bfin_memmap, 0, sizeof(bfin_memmap));
940
Bob Liub5affb02012-05-16 17:37:24 +0800941#ifdef CONFIG_BF60x
942 /* Should init clock device before parse command early */
943 clk_init();
944#endif
Robin Getzbd854c02009-06-18 22:53:43 +0000945 /* If the user does not specify things on the command line, use
946 * what the bootloader set things up as
947 */
948 physical_mem_end = 0;
Yi Li856783b2008-02-09 02:26:01 +0800949 parse_cmdline_early(&command_line[0]);
950
Robin Getzbd854c02009-06-18 22:53:43 +0000951 if (_ramend == 0)
952 _ramend = get_mem_size() * 1024 * 1024;
953
Yi Li856783b2008-02-09 02:26:01 +0800954 if (physical_mem_end == 0)
955 physical_mem_end = _ramend;
956
957 memory_setup();
958
Bob Liub5affb02012-05-16 17:37:24 +0800959#ifndef CONFIG_BF60x
Mike Frysinger7e64aca2008-08-06 17:17:10 +0800960 /* Initialize Async memory banks */
961 bfin_write_EBIU_AMBCTL0(AMBCTL0VAL);
962 bfin_write_EBIU_AMBCTL1(AMBCTL1VAL);
963 bfin_write_EBIU_AMGCTL(AMGCTLVAL);
964#ifdef CONFIG_EBIU_MBSCTLVAL
965 bfin_write_EBIU_MBSCTL(CONFIG_EBIU_MBSCTLVAL);
966 bfin_write_EBIU_MODE(CONFIG_EBIU_MODEVAL);
967 bfin_write_EBIU_FCTL(CONFIG_EBIU_FCTLVAL);
968#endif
Bob Liub5affb02012-05-16 17:37:24 +0800969#endif
Michael Hennerich7a4a2072010-07-05 13:39:16 +0000970#ifdef CONFIG_BFIN_HYSTERESIS_CONTROL
Mike Frysinger3086fd22011-04-14 03:48:56 -0400971 bfin_write_PORTF_HYSTERESIS(HYST_PORTF_0_15);
972 bfin_write_PORTG_HYSTERESIS(HYST_PORTG_0_15);
973 bfin_write_PORTH_HYSTERESIS(HYST_PORTH_0_15);
974 bfin_write_MISCPORT_HYSTERESIS((bfin_read_MISCPORT_HYSTERESIS() &
Michael Hennerich7a4a2072010-07-05 13:39:16 +0000975 ~HYST_NONEGPIO_MASK) | HYST_NONEGPIO);
976#endif
Mike Frysinger7e64aca2008-08-06 17:17:10 +0800977
Yi Li856783b2008-02-09 02:26:01 +0800978 cclk = get_cclk();
979 sclk = get_sclk();
980
Sonic Zhang7f3aee32009-05-07 10:04:19 +0000981 if ((ANOMALY_05000273 || ANOMALY_05000274) && (cclk >> 1) < sclk)
982 panic("ANOMALY 05000273 or 05000274: CCLK must be >= 2*SCLK");
Yi Li856783b2008-02-09 02:26:01 +0800983
984#ifdef BF561_FAMILY
985 if (ANOMALY_05000266) {
986 bfin_read_IMDMA_D0_IRQ_STATUS();
987 bfin_read_IMDMA_D1_IRQ_STATUS();
988 }
989#endif
Yi Li856783b2008-02-09 02:26:01 +0800990
Mike Frysinger00b5c502011-04-18 18:37:38 -0400991 mmr = bfin_read_TBUFCTL();
992 printk(KERN_INFO "Hardware Trace %s and %sabled\n",
993 (mmr & 0x1) ? "active" : "off",
994 (mmr & 0x2) ? "en" : "dis");
Bob Liub5affb02012-05-16 17:37:24 +0800995#ifndef CONFIG_BF60x
Mike Frysinger00b5c502011-04-18 18:37:38 -0400996 mmr = bfin_read_SYSCR();
997 printk(KERN_INFO "Boot Mode: %i\n", mmr & 0xF);
Robin Getz76e8fe42009-02-04 16:49:45 +0800998
Mike Frysingered1fb602009-02-04 16:49:45 +0800999 /* Newer parts mirror SWRST bits in SYSCR */
1000#if defined(CONFIG_BF53x) || defined(CONFIG_BF561) || \
1001 defined(CONFIG_BF538) || defined(CONFIG_BF539)
Robin Getz7728ec32007-10-29 18:12:15 +08001002 _bfin_swrst = bfin_read_SWRST();
Mike Frysingered1fb602009-02-04 16:49:45 +08001003#else
Sonic Zhang0de4adf2009-06-15 07:39:19 +00001004 /* Clear boot mode field */
Mike Frysinger00b5c502011-04-18 18:37:38 -04001005 _bfin_swrst = mmr & ~0xf;
Mike Frysingered1fb602009-02-04 16:49:45 +08001006#endif
Robin Getz7728ec32007-10-29 18:12:15 +08001007
Robin Getz0c7a6b22008-10-08 16:27:12 +08001008#ifdef CONFIG_DEBUG_DOUBLEFAULT_PRINT
1009 bfin_write_SWRST(_bfin_swrst & ~DOUBLE_FAULT);
1010#endif
1011#ifdef CONFIG_DEBUG_DOUBLEFAULT_RESET
1012 bfin_write_SWRST(_bfin_swrst | DOUBLE_FAULT);
1013#endif
Robin Getz2d200982008-07-26 19:41:40 +08001014
Graf Yang8f658732008-11-18 17:48:22 +08001015#ifdef CONFIG_SMP
1016 if (_bfin_swrst & SWRST_DBL_FAULT_A) {
1017#else
Robin Getz0c7a6b22008-10-08 16:27:12 +08001018 if (_bfin_swrst & RESET_DOUBLE) {
Graf Yang8f658732008-11-18 17:48:22 +08001019#endif
Robin Getz0c7a6b22008-10-08 16:27:12 +08001020 printk(KERN_EMERG "Recovering from DOUBLE FAULT event\n");
1021#ifdef CONFIG_DEBUG_DOUBLEFAULT
1022 /* We assume the crashing kernel, and the current symbol table match */
Mike Frysingerfb1d9be2011-05-29 23:12:51 -04001023 printk(KERN_EMERG " While handling exception (EXCAUSE = %#x) at %pF\n",
1024 initial_pda.seqstat_doublefault & SEQSTAT_EXCAUSE,
1025 initial_pda.retx_doublefault);
1026 printk(KERN_NOTICE " DCPLB_FAULT_ADDR: %pF\n",
1027 initial_pda.dcplb_doublefault_addr);
1028 printk(KERN_NOTICE " ICPLB_FAULT_ADDR: %pF\n",
1029 initial_pda.icplb_doublefault_addr);
Robin Getz0c7a6b22008-10-08 16:27:12 +08001030#endif
1031 printk(KERN_NOTICE " The instruction at %pF caused a double exception\n",
Mike Frysingerfb1d9be2011-05-29 23:12:51 -04001032 initial_pda.retx);
Robin Getz0c7a6b22008-10-08 16:27:12 +08001033 } else if (_bfin_swrst & RESET_WDOG)
Robin Getz7728ec32007-10-29 18:12:15 +08001034 printk(KERN_INFO "Recovering from Watchdog event\n");
1035 else if (_bfin_swrst & RESET_SOFTWARE)
1036 printk(KERN_NOTICE "Reset caused by Software reset\n");
Bob Liub5affb02012-05-16 17:37:24 +08001037#endif
Mike Frysingerbe1577e2010-05-10 05:21:50 +00001038 printk(KERN_INFO "Blackfin support (C) 2004-2010 Analog Devices, Inc.\n");
Jie Zhangde3025f2007-06-25 18:04:12 +08001039 if (bfin_compiled_revid() == 0xffff)
Robin Getz7a1a8cc2009-10-20 17:22:18 +00001040 printk(KERN_INFO "Compiled for ADSP-%s Rev any, running on 0.%d\n", CPU, bfin_revid());
Jie Zhangde3025f2007-06-25 18:04:12 +08001041 else if (bfin_compiled_revid() == -1)
1042 printk(KERN_INFO "Compiled for ADSP-%s Rev none\n", CPU);
1043 else
1044 printk(KERN_INFO "Compiled for ADSP-%s Rev 0.%d\n", CPU, bfin_compiled_revid());
Robin Getze482cad2008-10-10 18:21:45 +08001045
Robin Getzbd854c02009-06-18 22:53:43 +00001046 if (likely(CPUID == bfin_cpuid())) {
Robin Getze482cad2008-10-10 18:21:45 +08001047 if (bfin_revid() != bfin_compiled_revid()) {
1048 if (bfin_compiled_revid() == -1)
1049 printk(KERN_ERR "Warning: Compiled for Rev none, but running on Rev %d\n",
1050 bfin_revid());
Robin Getz7419a322009-01-07 23:14:39 +08001051 else if (bfin_compiled_revid() != 0xffff) {
Robin Getze482cad2008-10-10 18:21:45 +08001052 printk(KERN_ERR "Warning: Compiled for Rev %d, but running on Rev %d\n",
1053 bfin_compiled_revid(), bfin_revid());
Robin Getz7419a322009-01-07 23:14:39 +08001054 if (bfin_compiled_revid() > bfin_revid())
Mike Frysingerd8804ad2009-04-29 06:26:46 +00001055 panic("Error: you are missing anomaly workarounds for this rev");
Robin Getz7419a322009-01-07 23:14:39 +08001056 }
Robin Getze482cad2008-10-10 18:21:45 +08001057 }
Mike Frysingerda986b92008-10-28 13:58:15 +08001058 if (bfin_revid() < CONFIG_BF_REV_MIN || bfin_revid() > CONFIG_BF_REV_MAX)
Robin Getze482cad2008-10-10 18:21:45 +08001059 printk(KERN_ERR "Warning: Unsupported Chip Revision ADSP-%s Rev 0.%d detected\n",
1060 CPU, bfin_revid());
Jie Zhangde3025f2007-06-25 18:04:12 +08001061 }
Mike Frysinger0c0497c2008-10-09 17:32:28 +08001062
Bryan Wu1394f032007-05-06 14:50:22 -07001063 printk(KERN_INFO "Blackfin Linux support by http://blackfin.uclinux.org/\n");
1064
Bob Liu7c141c12012-05-17 17:15:40 +08001065#ifdef CONFIG_BF60x
1066 printk(KERN_INFO "Processor Speed: %lu MHz core clock, %lu MHz SCLk, %lu MHz SCLK0, %lu MHz SCLK1 and %lu MHz DCLK\n",
Sonic Zhang1d3dbda2012-05-17 17:35:24 +08001067 cclk / 1000000, bfin_get_clk("SYSCLK") / 1000000, get_sclk0() / 1000000, get_sclk1() / 1000000, get_dclk() / 1000000);
Bob Liu7c141c12012-05-17 17:15:40 +08001068#else
Mike Frysingerb5c0e2e2007-09-12 17:31:59 +08001069 printk(KERN_INFO "Processor Speed: %lu MHz core clock and %lu MHz System Clock\n",
Graf Yang8f658732008-11-18 17:48:22 +08001070 cclk / 1000000, sclk / 1000000);
Bob Liu7c141c12012-05-17 17:15:40 +08001071#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001072
Yi Li856783b2008-02-09 02:26:01 +08001073 setup_bootmem_allocator();
Bryan Wu1394f032007-05-06 14:50:22 -07001074
Bryan Wu1394f032007-05-06 14:50:22 -07001075 paging_init();
1076
Bernd Schmidt7adfb582007-06-21 11:34:16 +08001077 /* Copy atomic sequences to their fixed location, and sanity check that
1078 these locations are the ones that we advertise to userspace. */
1079 memcpy((void *)FIXED_CODE_START, &fixed_code_start,
1080 FIXED_CODE_END - FIXED_CODE_START);
1081 BUG_ON((char *)&sigreturn_stub - (char *)&fixed_code_start
1082 != SIGRETURN_STUB - FIXED_CODE_START);
1083 BUG_ON((char *)&atomic_xchg32 - (char *)&fixed_code_start
1084 != ATOMIC_XCHG32 - FIXED_CODE_START);
1085 BUG_ON((char *)&atomic_cas32 - (char *)&fixed_code_start
1086 != ATOMIC_CAS32 - FIXED_CODE_START);
1087 BUG_ON((char *)&atomic_add32 - (char *)&fixed_code_start
1088 != ATOMIC_ADD32 - FIXED_CODE_START);
1089 BUG_ON((char *)&atomic_sub32 - (char *)&fixed_code_start
1090 != ATOMIC_SUB32 - FIXED_CODE_START);
1091 BUG_ON((char *)&atomic_ior32 - (char *)&fixed_code_start
1092 != ATOMIC_IOR32 - FIXED_CODE_START);
1093 BUG_ON((char *)&atomic_and32 - (char *)&fixed_code_start
1094 != ATOMIC_AND32 - FIXED_CODE_START);
1095 BUG_ON((char *)&atomic_xor32 - (char *)&fixed_code_start
1096 != ATOMIC_XOR32 - FIXED_CODE_START);
Robin Getz9f336a52007-10-29 18:23:28 +08001097 BUG_ON((char *)&safe_user_instruction - (char *)&fixed_code_start
1098 != SAFE_USER_INSTRUCTION - FIXED_CODE_START);
Bernd Schmidt29440a22007-07-12 16:25:29 +08001099
Graf Yang8f658732008-11-18 17:48:22 +08001100#ifdef CONFIG_SMP
1101 platform_init_cpus();
1102#endif
Bernd Schmidt8be80ed2007-07-25 14:44:49 +08001103 init_exception_vectors();
Graf Yang8f658732008-11-18 17:48:22 +08001104 bfin_cache_init(); /* Initialize caches for the boot CPU */
Bryan Wu1394f032007-05-06 14:50:22 -07001105}
1106
Bryan Wu1394f032007-05-06 14:50:22 -07001107static int __init topology_init(void)
1108{
Graf Yang8f658732008-11-18 17:48:22 +08001109 unsigned int cpu;
Michael Hennerich6cda2e92008-02-02 15:10:51 +08001110
1111 for_each_possible_cpu(cpu) {
Graf Yang8f658732008-11-18 17:48:22 +08001112 register_cpu(&per_cpu(cpu_data, cpu).cpu, cpu);
Michael Hennerich6cda2e92008-02-02 15:10:51 +08001113 }
1114
Bryan Wu1394f032007-05-06 14:50:22 -07001115 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001116}
1117
1118subsys_initcall(topology_init);
1119
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001120/* Get the input clock frequency */
1121static u_long cached_clkin_hz = CONFIG_CLKIN_HZ;
Bob Liub5affb02012-05-16 17:37:24 +08001122#ifndef CONFIG_BF60x
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001123static u_long get_clkin_hz(void)
1124{
1125 return cached_clkin_hz;
1126}
Bob Liub5affb02012-05-16 17:37:24 +08001127#endif
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001128static int __init early_init_clkin_hz(char *buf)
1129{
1130 cached_clkin_hz = simple_strtoul(buf, NULL, 0);
Mike Frysinger508808c2009-01-07 23:14:38 +08001131#ifdef BFIN_KERNEL_CLOCK
1132 if (cached_clkin_hz != CONFIG_CLKIN_HZ)
1133 panic("cannot change clkin_hz when reprogramming clocks");
1134#endif
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001135 return 1;
1136}
1137early_param("clkin_hz=", early_init_clkin_hz);
1138
Bob Liub5affb02012-05-16 17:37:24 +08001139#ifndef CONFIG_BF60x
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001140/* Get the voltage input multiplier */
Mike Frysinger52a07812007-06-11 15:31:30 +08001141static u_long get_vco(void)
Bryan Wu1394f032007-05-06 14:50:22 -07001142{
Mike Frysingere32f55d2009-01-07 23:14:39 +08001143 static u_long cached_vco;
1144 u_long msel, pll_ctl;
Bryan Wu1394f032007-05-06 14:50:22 -07001145
Mike Frysingere32f55d2009-01-07 23:14:39 +08001146 /* The assumption here is that VCO never changes at runtime.
1147 * If, someday, we support that, then we'll have to change this.
1148 */
1149 if (cached_vco)
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001150 return cached_vco;
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001151
Mike Frysingere32f55d2009-01-07 23:14:39 +08001152 pll_ctl = bfin_read_PLL_CTL();
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001153 msel = (pll_ctl >> 9) & 0x3F;
Bryan Wu1394f032007-05-06 14:50:22 -07001154 if (0 == msel)
1155 msel = 64;
1156
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001157 cached_vco = get_clkin_hz();
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001158 cached_vco >>= (1 & pll_ctl); /* DF bit */
1159 cached_vco *= msel;
1160 return cached_vco;
Bryan Wu1394f032007-05-06 14:50:22 -07001161}
Bob Liub5affb02012-05-16 17:37:24 +08001162#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001163
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001164/* Get the Core clock */
Bryan Wu1394f032007-05-06 14:50:22 -07001165u_long get_cclk(void)
1166{
Bob Liub5affb02012-05-16 17:37:24 +08001167#ifdef CONFIG_BF60x
Sonic Zhang1d3dbda2012-05-17 17:35:24 +08001168 return bfin_get_clk("CCLK");
Bob Liub5affb02012-05-16 17:37:24 +08001169#else
Mike Frysingere32f55d2009-01-07 23:14:39 +08001170 static u_long cached_cclk_pll_div, cached_cclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001171 u_long csel, ssel;
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001172
Bryan Wu1394f032007-05-06 14:50:22 -07001173 if (bfin_read_PLL_STAT() & 0x1)
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001174 return get_clkin_hz();
Bryan Wu1394f032007-05-06 14:50:22 -07001175
1176 ssel = bfin_read_PLL_DIV();
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001177 if (ssel == cached_cclk_pll_div)
1178 return cached_cclk;
1179 else
1180 cached_cclk_pll_div = ssel;
1181
Bryan Wu1394f032007-05-06 14:50:22 -07001182 csel = ((ssel >> 4) & 0x03);
1183 ssel &= 0xf;
1184 if (ssel && ssel < (1 << csel)) /* SCLK > CCLK */
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001185 cached_cclk = get_vco() / ssel;
1186 else
1187 cached_cclk = get_vco() >> csel;
1188 return cached_cclk;
Bob Liub5affb02012-05-16 17:37:24 +08001189#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001190}
Bryan Wu1394f032007-05-06 14:50:22 -07001191EXPORT_SYMBOL(get_cclk);
1192
Bob Liub5affb02012-05-16 17:37:24 +08001193#ifdef CONFIG_BF60x
1194/* Get the bf60x clock of SCLK0 domain */
1195u_long get_sclk0(void)
1196{
Sonic Zhang1d3dbda2012-05-17 17:35:24 +08001197 return bfin_get_clk("SCLK0");
Bob Liub5affb02012-05-16 17:37:24 +08001198}
1199EXPORT_SYMBOL(get_sclk0);
1200
1201/* Get the bf60x clock of SCLK1 domain */
1202u_long get_sclk1(void)
1203{
Sonic Zhang1d3dbda2012-05-17 17:35:24 +08001204 return bfin_get_clk("SCLK1");
Bob Liub5affb02012-05-16 17:37:24 +08001205}
1206EXPORT_SYMBOL(get_sclk1);
1207
1208/* Get the bf60x DRAM clock */
1209u_long get_dclk(void)
1210{
Sonic Zhang1d3dbda2012-05-17 17:35:24 +08001211 return bfin_get_clk("DCLK");
Bob Liub5affb02012-05-16 17:37:24 +08001212}
1213EXPORT_SYMBOL(get_dclk);
1214#endif
1215
Sonic Zhang1d3dbda2012-05-17 17:35:24 +08001216/* Get the default system clock */
Bryan Wu1394f032007-05-06 14:50:22 -07001217u_long get_sclk(void)
1218{
Bob Liub5affb02012-05-16 17:37:24 +08001219#ifdef CONFIG_BF60x
1220 return get_sclk0();
1221#else
Mike Frysingere32f55d2009-01-07 23:14:39 +08001222 static u_long cached_sclk;
Bryan Wu1394f032007-05-06 14:50:22 -07001223 u_long ssel;
1224
Mike Frysingere32f55d2009-01-07 23:14:39 +08001225 /* The assumption here is that SCLK never changes at runtime.
1226 * If, someday, we support that, then we'll have to change this.
1227 */
1228 if (cached_sclk)
1229 return cached_sclk;
1230
Bryan Wu1394f032007-05-06 14:50:22 -07001231 if (bfin_read_PLL_STAT() & 0x1)
Mike Frysinger7f1e2f92009-01-07 23:14:38 +08001232 return get_clkin_hz();
Bryan Wu1394f032007-05-06 14:50:22 -07001233
Mike Frysingere32f55d2009-01-07 23:14:39 +08001234 ssel = bfin_read_PLL_DIV() & 0xf;
Bryan Wu1394f032007-05-06 14:50:22 -07001235 if (0 == ssel) {
1236 printk(KERN_WARNING "Invalid System Clock\n");
1237 ssel = 1;
1238 }
1239
Mike Frysinger3a2521f2008-07-26 18:52:56 +08001240 cached_sclk = get_vco() / ssel;
1241 return cached_sclk;
Bob Liub5affb02012-05-16 17:37:24 +08001242#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001243}
Bryan Wu1394f032007-05-06 14:50:22 -07001244EXPORT_SYMBOL(get_sclk);
1245
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001246unsigned long sclk_to_usecs(unsigned long sclk)
1247{
Mike Frysinger1754a5d2007-11-23 11:28:11 +08001248 u64 tmp = USEC_PER_SEC * (u64)sclk;
1249 do_div(tmp, get_sclk());
1250 return tmp;
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001251}
1252EXPORT_SYMBOL(sclk_to_usecs);
1253
1254unsigned long usecs_to_sclk(unsigned long usecs)
1255{
Mike Frysinger1754a5d2007-11-23 11:28:11 +08001256 u64 tmp = get_sclk() * (u64)usecs;
1257 do_div(tmp, USEC_PER_SEC);
1258 return tmp;
Mike Frysinger2f6cf7b2007-10-21 22:59:49 +08001259}
1260EXPORT_SYMBOL(usecs_to_sclk);
1261
Bryan Wu1394f032007-05-06 14:50:22 -07001262/*
1263 * Get CPU information for use by the procfs.
1264 */
1265static int show_cpuinfo(struct seq_file *m, void *v)
1266{
Mike Frysinger066954a2007-10-21 22:36:06 +08001267 char *cpu, *mmu, *fpu, *vendor, *cache;
Bryan Wu1394f032007-05-06 14:50:22 -07001268 uint32_t revid;
Mike Frysinger275123e2009-01-07 23:14:39 +08001269 int cpu_num = *(unsigned int *)v;
Michael Hennericha5f07172008-11-18 18:04:31 +08001270 u_long sclk, cclk;
Robin Getz9de3a0b2008-07-26 19:39:19 +08001271 u_int icache_size = BFIN_ICACHESIZE / 1024, dcache_size = 0, dsup_banks = 0;
Mike Frysinger275123e2009-01-07 23:14:39 +08001272 struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu_num);
Bryan Wu1394f032007-05-06 14:50:22 -07001273
1274 cpu = CPU;
1275 mmu = "none";
1276 fpu = "none";
1277 revid = bfin_revid();
Bryan Wu1394f032007-05-06 14:50:22 -07001278
Bryan Wu1394f032007-05-06 14:50:22 -07001279 sclk = get_sclk();
Michael Hennericha5f07172008-11-18 18:04:31 +08001280 cclk = get_cclk();
Bryan Wu1394f032007-05-06 14:50:22 -07001281
Robin Getz73b0c0b2007-10-21 17:03:31 +08001282 switch (bfin_read_CHIPID() & CHIPID_MANUFACTURE) {
Mike Frysinger066954a2007-10-21 22:36:06 +08001283 case 0xca:
1284 vendor = "Analog Devices";
Robin Getz73b0c0b2007-10-21 17:03:31 +08001285 break;
1286 default:
Mike Frysinger066954a2007-10-21 22:36:06 +08001287 vendor = "unknown";
1288 break;
Robin Getz73b0c0b2007-10-21 17:03:31 +08001289 }
Bryan Wu1394f032007-05-06 14:50:22 -07001290
Mike Frysinger275123e2009-01-07 23:14:39 +08001291 seq_printf(m, "processor\t: %d\n" "vendor_id\t: %s\n", cpu_num, vendor);
Robin Getze482cad2008-10-10 18:21:45 +08001292
1293 if (CPUID == bfin_cpuid())
1294 seq_printf(m, "cpu family\t: 0x%04x\n", CPUID);
1295 else
1296 seq_printf(m, "cpu family\t: Compiled for:0x%04x, running on:0x%04x\n",
1297 CPUID, bfin_cpuid());
1298
1299 seq_printf(m, "model name\t: ADSP-%s %lu(MHz CCLK) %lu(MHz SCLK) (%s)\n"
Robin Getz2466ac62009-06-08 17:52:27 +00001300 "stepping\t: %d ",
Michael Hennericha5f07172008-11-18 18:04:31 +08001301 cpu, cclk/1000000, sclk/1000000,
Robin Getz253bcf42008-04-24 05:57:13 +08001302#ifdef CONFIG_MPU
1303 "mpu on",
1304#else
1305 "mpu off",
1306#endif
Robin Getz73b0c0b2007-10-21 17:03:31 +08001307 revid);
Bryan Wu1394f032007-05-06 14:50:22 -07001308
Robin Getz2466ac62009-06-08 17:52:27 +00001309 if (bfin_revid() != bfin_compiled_revid()) {
1310 if (bfin_compiled_revid() == -1)
1311 seq_printf(m, "(Compiled for Rev none)");
1312 else if (bfin_compiled_revid() == 0xffff)
1313 seq_printf(m, "(Compiled for Rev any)");
1314 else
1315 seq_printf(m, "(Compiled for Rev %d)", bfin_compiled_revid());
1316 }
1317
1318 seq_printf(m, "\ncpu MHz\t\t: %lu.%03lu/%lu.%03lu\n",
Michael Hennericha5f07172008-11-18 18:04:31 +08001319 cclk/1000000, cclk%1000000,
Robin Getz73b0c0b2007-10-21 17:03:31 +08001320 sclk/1000000, sclk%1000000);
1321 seq_printf(m, "bogomips\t: %lu.%02lu\n"
1322 "Calibration\t: %lu loops\n",
Michael Hennerichc70c7542009-07-09 09:58:52 +00001323 (loops_per_jiffy * HZ) / 500000,
1324 ((loops_per_jiffy * HZ) / 5000) % 100,
1325 (loops_per_jiffy * HZ));
Robin Getz73b0c0b2007-10-21 17:03:31 +08001326
1327 /* Check Cache configutation */
Graf Yang8f658732008-11-18 17:48:22 +08001328 switch (cpudata->dmemctl & (1 << DMC0_P | 1 << DMC1_P)) {
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001329 case ACACHE_BSRAM:
Mike Frysinger066954a2007-10-21 22:36:06 +08001330 cache = "dbank-A/B\t: cache/sram";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001331 dcache_size = 16;
1332 dsup_banks = 1;
1333 break;
1334 case ACACHE_BCACHE:
Mike Frysinger066954a2007-10-21 22:36:06 +08001335 cache = "dbank-A/B\t: cache/cache";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001336 dcache_size = 32;
1337 dsup_banks = 2;
1338 break;
1339 case ASRAM_BSRAM:
Mike Frysinger066954a2007-10-21 22:36:06 +08001340 cache = "dbank-A/B\t: sram/sram";
Mike Frysinger1f83b8f2007-07-12 22:58:21 +08001341 dcache_size = 0;
1342 dsup_banks = 0;
1343 break;
1344 default:
Mike Frysinger066954a2007-10-21 22:36:06 +08001345 cache = "unknown";
Robin Getz73b0c0b2007-10-21 17:03:31 +08001346 dcache_size = 0;
1347 dsup_banks = 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001348 break;
1349 }
1350
Robin Getz73b0c0b2007-10-21 17:03:31 +08001351 /* Is it turned on? */
Graf Yang8f658732008-11-18 17:48:22 +08001352 if ((cpudata->dmemctl & (ENDCPLB | DMC_ENABLE)) != (ENDCPLB | DMC_ENABLE))
Robin Getz73b0c0b2007-10-21 17:03:31 +08001353 dcache_size = 0;
Bryan Wu1394f032007-05-06 14:50:22 -07001354
Graf Yang8f658732008-11-18 17:48:22 +08001355 if ((cpudata->imemctl & (IMC | ENICPLB)) != (IMC | ENICPLB))
Robin Getz9de3a0b2008-07-26 19:39:19 +08001356 icache_size = 0;
1357
Robin Getz73b0c0b2007-10-21 17:03:31 +08001358 seq_printf(m, "cache size\t: %d KB(L1 icache) "
Jie Zhang41ba6532009-06-16 09:48:33 +00001359 "%d KB(L1 dcache) %d KB(L2 cache)\n",
1360 icache_size, dcache_size, 0);
Robin Getz73b0c0b2007-10-21 17:03:31 +08001361 seq_printf(m, "%s\n", cache);
Jie Zhang41ba6532009-06-16 09:48:33 +00001362 seq_printf(m, "external memory\t: "
1363#if defined(CONFIG_BFIN_EXTMEM_ICACHEABLE)
1364 "cacheable"
1365#else
1366 "uncacheable"
1367#endif
1368 " in instruction cache\n");
1369 seq_printf(m, "external memory\t: "
1370#if defined(CONFIG_BFIN_EXTMEM_WRITEBACK)
1371 "cacheable (write-back)"
1372#elif defined(CONFIG_BFIN_EXTMEM_WRITETHROUGH)
1373 "cacheable (write-through)"
1374#else
1375 "uncacheable"
1376#endif
1377 " in data cache\n");
Robin Getz73b0c0b2007-10-21 17:03:31 +08001378
Robin Getz9de3a0b2008-07-26 19:39:19 +08001379 if (icache_size)
1380 seq_printf(m, "icache setup\t: %d Sub-banks/%d Ways, %d Lines/Way\n",
1381 BFIN_ISUBBANKS, BFIN_IWAYS, BFIN_ILINES);
1382 else
1383 seq_printf(m, "icache setup\t: off\n");
1384
Bryan Wu1394f032007-05-06 14:50:22 -07001385 seq_printf(m,
Robin Getz73b0c0b2007-10-21 17:03:31 +08001386 "dcache setup\t: %d Super-banks/%d Sub-banks/%d Ways, %d Lines/Way\n",
Robin Getz3bebca22007-10-10 23:55:26 +08001387 dsup_banks, BFIN_DSUBBANKS, BFIN_DWAYS,
1388 BFIN_DLINES);
Graf Yang8f658732008-11-18 17:48:22 +08001389#ifdef __ARCH_SYNC_CORE_DCACHE
Mike Frysinger8d011f72011-04-13 17:13:23 -04001390 seq_printf(m, "dcache flushes\t: %lu\n", dcache_invld_count[cpu_num]);
Graf Yang8f658732008-11-18 17:48:22 +08001391#endif
Sonic Zhang47e9ded2009-06-10 08:57:08 +00001392#ifdef __ARCH_SYNC_CORE_ICACHE
Mike Frysinger8d011f72011-04-13 17:13:23 -04001393 seq_printf(m, "icache flushes\t: %lu\n", icache_invld_count[cpu_num]);
Sonic Zhang47e9ded2009-06-10 08:57:08 +00001394#endif
Mike Frysinger275123e2009-01-07 23:14:39 +08001395
Mike Frysinger8d011f72011-04-13 17:13:23 -04001396 seq_printf(m, "\n");
1397
Mike Frysinger275123e2009-01-07 23:14:39 +08001398 if (cpu_num != num_possible_cpus() - 1)
Graf Yang8f658732008-11-18 17:48:22 +08001399 return 0;
1400
Jie Zhang41ba6532009-06-16 09:48:33 +00001401 if (L2_LENGTH) {
Mike Frysinger275123e2009-01-07 23:14:39 +08001402 seq_printf(m, "L2 SRAM\t\t: %dKB\n", L2_LENGTH/0x400);
Jie Zhang41ba6532009-06-16 09:48:33 +00001403 seq_printf(m, "L2 SRAM\t\t: "
1404#if defined(CONFIG_BFIN_L2_ICACHEABLE)
1405 "cacheable"
1406#else
1407 "uncacheable"
1408#endif
1409 " in instruction cache\n");
1410 seq_printf(m, "L2 SRAM\t\t: "
1411#if defined(CONFIG_BFIN_L2_WRITEBACK)
1412 "cacheable (write-back)"
1413#elif defined(CONFIG_BFIN_L2_WRITETHROUGH)
1414 "cacheable (write-through)"
1415#else
1416 "uncacheable"
1417#endif
1418 " in data cache\n");
1419 }
Mike Frysinger066954a2007-10-21 22:36:06 +08001420 seq_printf(m, "board name\t: %s\n", bfin_board_name);
Mike Frysinger8d011f72011-04-13 17:13:23 -04001421 seq_printf(m, "board memory\t: %ld kB (0x%08lx -> 0x%08lx)\n",
1422 physical_mem_end >> 10, 0ul, physical_mem_end);
1423 seq_printf(m, "kernel memory\t: %d kB (0x%08lx -> 0x%08lx)\n",
Barry Songd86bfb12010-01-07 04:11:17 +00001424 ((int)memory_end - (int)_rambase) >> 10,
Mike Frysinger8d011f72011-04-13 17:13:23 -04001425 _rambase, memory_end);
Robin Getz73b0c0b2007-10-21 17:03:31 +08001426
Bryan Wu1394f032007-05-06 14:50:22 -07001427 return 0;
1428}
1429
1430static void *c_start(struct seq_file *m, loff_t *pos)
1431{
Graf Yang55f2fea2008-10-09 15:37:47 +08001432 if (*pos == 0)
KOSAKI Motohirofecedc82011-04-26 10:57:27 +09001433 *pos = cpumask_first(cpu_online_mask);
Graf Yang55f2fea2008-10-09 15:37:47 +08001434 if (*pos >= num_online_cpus())
1435 return NULL;
1436
1437 return pos;
Bryan Wu1394f032007-05-06 14:50:22 -07001438}
1439
1440static void *c_next(struct seq_file *m, void *v, loff_t *pos)
1441{
KOSAKI Motohirofecedc82011-04-26 10:57:27 +09001442 *pos = cpumask_next(*pos, cpu_online_mask);
Graf Yang55f2fea2008-10-09 15:37:47 +08001443
Bryan Wu1394f032007-05-06 14:50:22 -07001444 return c_start(m, pos);
1445}
1446
1447static void c_stop(struct seq_file *m, void *v)
1448{
1449}
1450
Jan Engelhardt03a44822008-02-08 04:21:19 -08001451const struct seq_operations cpuinfo_op = {
Bryan Wu1394f032007-05-06 14:50:22 -07001452 .start = c_start,
1453 .next = c_next,
1454 .stop = c_stop,
1455 .show = show_cpuinfo,
1456};
1457
Mike Frysinger5e10b4a2007-06-11 16:44:09 +08001458void __init cmdline_init(const char *r0)
Bryan Wu1394f032007-05-06 14:50:22 -07001459{
Robin Getz837ec2d2009-07-07 20:17:09 +00001460 early_shadow_stamp();
Bryan Wu1394f032007-05-06 14:50:22 -07001461 if (r0)
Mike Frysinger52a07812007-06-11 15:31:30 +08001462 strncpy(command_line, r0, COMMAND_LINE_SIZE);
Bryan Wu1394f032007-05-06 14:50:22 -07001463}