2 * File: arch/blackfin/kernel/setup.c
10 * Copyright 2004-2006 Analog Devices Inc.
12 * Bugs: Enter bugs at http://blackfin.uclinux.org/
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see the file COPYING, or write
26 * to the Free Software Foundation, Inc.,
27 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 #include <linux/delay.h>
31 #include <linux/console.h>
32 #include <linux/bootmem.h>
33 #include <linux/seq_file.h>
34 #include <linux/cpu.h>
35 #include <linux/module.h>
36 #include <linux/tty.h>
38 #include <linux/ext2_fs.h>
39 #include <linux/cramfs_fs.h>
40 #include <linux/romfs_fs.h>
43 #include <asm/cacheflush.h>
44 #include <asm/blackfin.h>
45 #include <asm/cplbinit.h>
46 #include <asm/div64.h>
47 #include <asm/fixed_code.h>
48 #include <asm/early_printk.h>
52 unsigned long memory_start, memory_end, physical_mem_end;
53 unsigned long reserved_mem_dcache_on;
54 unsigned long reserved_mem_icache_on;
55 EXPORT_SYMBOL(memory_start);
56 EXPORT_SYMBOL(memory_end);
57 EXPORT_SYMBOL(physical_mem_end);
58 EXPORT_SYMBOL(_ramend);
60 #ifdef CONFIG_MTD_UCLINUX
61 unsigned long memory_mtd_end, memory_mtd_start, mtd_size;
63 EXPORT_SYMBOL(memory_mtd_end);
64 EXPORT_SYMBOL(memory_mtd_start);
65 EXPORT_SYMBOL(mtd_size);
68 char __initdata command_line[COMMAND_LINE_SIZE];
70 void __init bf53x_cache_init(void)
72 #if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
73 generate_cpl_tables();
76 #ifdef CONFIG_BFIN_ICACHE
78 printk(KERN_INFO "Instruction Cache Enabled\n");
81 #ifdef CONFIG_BFIN_DCACHE
83 printk(KERN_INFO "Data Cache Enabled"
84 # if defined CONFIG_BFIN_WB
86 # elif defined CONFIG_BFIN_WT
93 void __init bf53x_relocate_l1_mem(void)
95 unsigned long l1_code_length;
96 unsigned long l1_data_a_length;
97 unsigned long l1_data_b_length;
99 l1_code_length = _etext_l1 - _stext_l1;
100 if (l1_code_length > L1_CODE_LENGTH)
101 l1_code_length = L1_CODE_LENGTH;
102 /* cannot complain as printk is not available as yet.
103 * But we can continue booting and complain later!
106 /* Copy _stext_l1 to _etext_l1 to L1 instruction SRAM */
107 dma_memcpy(_stext_l1, _l1_lma_start, l1_code_length);
109 l1_data_a_length = _ebss_l1 - _sdata_l1;
110 if (l1_data_a_length > L1_DATA_A_LENGTH)
111 l1_data_a_length = L1_DATA_A_LENGTH;
113 /* Copy _sdata_l1 to _ebss_l1 to L1 data bank A SRAM */
114 dma_memcpy(_sdata_l1, _l1_lma_start + l1_code_length, l1_data_a_length);
116 l1_data_b_length = _ebss_b_l1 - _sdata_b_l1;
117 if (l1_data_b_length > L1_DATA_B_LENGTH)
118 l1_data_b_length = L1_DATA_B_LENGTH;
120 /* Copy _sdata_b_l1 to _ebss_b_l1 to L1 data bank B SRAM */
121 dma_memcpy(_sdata_b_l1, _l1_lma_start + l1_code_length +
122 l1_data_a_length, l1_data_b_length);
127 * Initial parsing of the command line. Currently, we support:
128 * - Controlling the linux memory size: mem=xxx[KMG]
129 * - Controlling the physical memory size: max_mem=xxx[KMG][$][#]
130 * $ -> reserved memory is dcacheable
131 * # -> reserved memory is icacheable
133 static __init void parse_cmdline_early(char *cmdline_p)
135 char c = ' ', *to = cmdline_p;
136 unsigned int memsize;
140 if (!memcmp(to, "mem=", 4)) {
142 memsize = memparse(to, &to);
146 } else if (!memcmp(to, "max_mem=", 8)) {
148 memsize = memparse(to, &to);
150 physical_mem_end = memsize;
154 reserved_mem_dcache_on =
158 reserved_mem_icache_on =
162 } else if (!memcmp(to, "earlyprintk=", 12)) {
164 setup_early_printk(to);
173 void __init setup_arch(char **cmdline_p)
176 unsigned long l1_length, sclk, cclk;
177 #ifdef CONFIG_MTD_UCLINUX
178 unsigned long mtd_phys = 0;
181 #ifdef CONFIG_DUMMY_CONSOLE
182 conswitchp = &dummy_con;
185 #if defined(CONFIG_CMDLINE_BOOL)
186 strncpy(&command_line[0], CONFIG_CMDLINE, sizeof(command_line));
187 command_line[sizeof(command_line) - 1] = 0;
190 /* Keep a copy of command line */
191 *cmdline_p = &command_line[0];
192 memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
193 boot_command_line[COMMAND_LINE_SIZE - 1] = '\0';
195 /* setup memory defaults from the user config */
196 physical_mem_end = 0;
197 _ramend = CONFIG_MEM_SIZE * 1024 * 1024;
199 parse_cmdline_early(&command_line[0]);
204 #if !defined(CONFIG_BFIN_KERNEL_CLOCK)
205 if (ANOMALY_05000273 && cclk == sclk)
206 panic("ANOMALY 05000273, SCLK can not be same as CCLK");
210 if (ANOMALY_05000266) {
211 bfin_read_IMDMA_D0_IRQ_STATUS();
212 bfin_read_IMDMA_D1_IRQ_STATUS();
216 printk(KERN_INFO "Hardware Trace ");
217 if (bfin_read_TBUFCTL() & 0x1 )
221 if (bfin_read_TBUFCTL() & 0x2)
222 printk("and Enabled\n");
224 printk("and Disabled\n");
227 #if defined(CONFIG_CHR_DEV_FLASH) || defined(CONFIG_BLK_DEV_FLASH)
228 /* we need to initialize the Flashrom device here since we might
229 * do things with flash early on in the boot
234 if (physical_mem_end == 0)
235 physical_mem_end = _ramend;
237 /* by now the stack is part of the init task */
238 memory_end = _ramend - DMA_UNCACHED_REGION;
240 _ramstart = (unsigned long)__bss_stop;
241 memory_start = PAGE_ALIGN(_ramstart);
243 #if defined(CONFIG_MTD_UCLINUX)
244 /* generic memory mapped MTD driver */
245 memory_mtd_end = memory_end;
247 mtd_phys = _ramstart;
248 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 8)));
250 # if defined(CONFIG_EXT2_FS) || defined(CONFIG_EXT3_FS)
251 if (*((unsigned short *)(mtd_phys + 0x438)) == EXT2_SUPER_MAGIC)
253 PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x404)) << 10);
256 # if defined(CONFIG_CRAMFS)
257 if (*((unsigned long *)(mtd_phys)) == CRAMFS_MAGIC)
258 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x4)));
261 # if defined(CONFIG_ROMFS_FS)
262 if (((unsigned long *)mtd_phys)[0] == ROMSB_WORD0
263 && ((unsigned long *)mtd_phys)[1] == ROMSB_WORD1)
265 PAGE_ALIGN(be32_to_cpu(((unsigned long *)mtd_phys)[2]));
266 # if (defined(CONFIG_BFIN_ICACHE) && ANOMALY_05000263)
267 /* Due to a Hardware Anomaly we need to limit the size of usable
268 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
269 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
271 # if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
272 if (memory_end >= 56 * 1024 * 1024)
273 memory_end = 56 * 1024 * 1024;
275 if (memory_end >= 60 * 1024 * 1024)
276 memory_end = 60 * 1024 * 1024;
277 # endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
278 # endif /* ANOMALY_05000263 */
279 # endif /* CONFIG_ROMFS_FS */
281 memory_end -= mtd_size;
285 panic("Don't boot kernel without rootfs attached.\n");
288 /* Relocate MTD image to the top of memory after the uncached memory area */
289 dma_memcpy((char *)memory_end, __bss_stop, mtd_size);
291 memory_mtd_start = memory_end;
292 _ebss = memory_mtd_start; /* define _ebss for compatible */
293 #endif /* CONFIG_MTD_UCLINUX */
295 #if (defined(CONFIG_BFIN_ICACHE) && ANOMALY_05000263)
296 /* Due to a Hardware Anomaly we need to limit the size of usable
297 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
298 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
300 #if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
301 if (memory_end >= 56 * 1024 * 1024)
302 memory_end = 56 * 1024 * 1024;
304 if (memory_end >= 60 * 1024 * 1024)
305 memory_end = 60 * 1024 * 1024;
306 #endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
307 printk(KERN_NOTICE "Warning: limiting memory to %liMB due to hardware anomaly 05000263\n", memory_end >> 20);
308 #endif /* ANOMALY_05000263 */
310 #if !defined(CONFIG_MTD_UCLINUX)
311 memory_end -= SIZE_4K; /*In case there is no valid CPLB behind memory_end make sure we don't get to close*/
313 init_mm.start_code = (unsigned long)_stext;
314 init_mm.end_code = (unsigned long)_etext;
315 init_mm.end_data = (unsigned long)_edata;
316 init_mm.brk = (unsigned long)0;
318 _bfin_swrst = bfin_read_SWRST();
320 if (_bfin_swrst & RESET_DOUBLE)
321 printk(KERN_INFO "Recovering from Double Fault event\n");
322 else if (_bfin_swrst & RESET_WDOG)
323 printk(KERN_INFO "Recovering from Watchdog event\n");
324 else if (_bfin_swrst & RESET_SOFTWARE)
325 printk(KERN_NOTICE "Reset caused by Software reset\n");
327 printk(KERN_INFO "Blackfin support (C) 2004-2007 Analog Devices, Inc.\n");
328 if (bfin_compiled_revid() == 0xffff)
329 printk(KERN_INFO "Compiled for ADSP-%s Rev any\n", CPU);
330 else if (bfin_compiled_revid() == -1)
331 printk(KERN_INFO "Compiled for ADSP-%s Rev none\n", CPU);
333 printk(KERN_INFO "Compiled for ADSP-%s Rev 0.%d\n", CPU, bfin_compiled_revid());
334 if (bfin_revid() != bfin_compiled_revid()) {
335 if (bfin_compiled_revid() == -1)
336 printk(KERN_ERR "Warning: Compiled for Rev none, but running on Rev %d\n",
338 else if (bfin_compiled_revid() != 0xffff)
339 printk(KERN_ERR "Warning: Compiled for Rev %d, but running on Rev %d\n",
340 bfin_compiled_revid(), bfin_revid());
342 if (bfin_revid() < SUPPORTED_REVID)
343 printk(KERN_ERR "Warning: Unsupported Chip Revision ADSP-%s Rev 0.%d detected\n",
345 printk(KERN_INFO "Blackfin Linux support by http://blackfin.uclinux.org/\n");
347 printk(KERN_INFO "Processor Speed: %lu MHz core clock and %lu MHz System Clock\n",
348 cclk / 1000000, sclk / 1000000);
350 if (ANOMALY_05000273 && (cclk >> 1) <= sclk)
351 printk("\n\n\nANOMALY_05000273: CCLK must be >= 2*SCLK !!!\n\n\n");
353 printk(KERN_INFO "Board Memory: %ldMB\n", physical_mem_end >> 20);
354 printk(KERN_INFO "Kernel Managed Memory: %ldMB\n", _ramend >> 20);
356 printk(KERN_INFO "Memory map:\n"
357 KERN_INFO " text = 0x%p-0x%p\n"
358 KERN_INFO " rodata = 0x%p-0x%p\n"
359 KERN_INFO " data = 0x%p-0x%p\n"
360 KERN_INFO " stack = 0x%p-0x%p\n"
361 KERN_INFO " init = 0x%p-0x%p\n"
362 KERN_INFO " bss = 0x%p-0x%p\n"
363 KERN_INFO " available = 0x%p-0x%p\n"
364 #ifdef CONFIG_MTD_UCLINUX
365 KERN_INFO " rootfs = 0x%p-0x%p\n"
367 #if DMA_UNCACHED_REGION > 0
368 KERN_INFO " DMA Zone = 0x%p-0x%p\n"
371 __start_rodata, __end_rodata,
373 (void *)&init_thread_union, (void *)((int)(&init_thread_union) + 0x2000),
374 __init_begin, __init_end,
375 __bss_start, __bss_stop,
376 (void *)_ramstart, (void *)memory_end
377 #ifdef CONFIG_MTD_UCLINUX
378 , (void *)memory_mtd_start, (void *)(memory_mtd_start + mtd_size)
380 #if DMA_UNCACHED_REGION > 0
381 , (void *)(_ramend - DMA_UNCACHED_REGION), (void *)(_ramend)
386 * give all the memory to the bootmap allocator, tell it to put the
387 * boot mem_map at the start of memory
389 bootmap_size = init_bootmem_node(NODE_DATA(0), memory_start >> PAGE_SHIFT, /* map goes here */
390 PAGE_OFFSET >> PAGE_SHIFT,
391 memory_end >> PAGE_SHIFT);
393 * free the usable memory, we have to make sure we do not free
394 * the bootmem bitmap so we then reserve it after freeing it :-)
396 free_bootmem(memory_start, memory_end - memory_start);
398 reserve_bootmem(memory_start, bootmap_size);
400 * get kmalloc into gear
404 /* check the size of the l1 area */
405 l1_length = _etext_l1 - _stext_l1;
406 if (l1_length > L1_CODE_LENGTH)
407 panic("L1 code memory overflow\n");
409 l1_length = _ebss_l1 - _sdata_l1;
410 if (l1_length > L1_DATA_A_LENGTH)
411 panic("L1 data memory overflow\n");
413 /* Copy atomic sequences to their fixed location, and sanity check that
414 these locations are the ones that we advertise to userspace. */
415 memcpy((void *)FIXED_CODE_START, &fixed_code_start,
416 FIXED_CODE_END - FIXED_CODE_START);
417 BUG_ON((char *)&sigreturn_stub - (char *)&fixed_code_start
418 != SIGRETURN_STUB - FIXED_CODE_START);
419 BUG_ON((char *)&atomic_xchg32 - (char *)&fixed_code_start
420 != ATOMIC_XCHG32 - FIXED_CODE_START);
421 BUG_ON((char *)&atomic_cas32 - (char *)&fixed_code_start
422 != ATOMIC_CAS32 - FIXED_CODE_START);
423 BUG_ON((char *)&atomic_add32 - (char *)&fixed_code_start
424 != ATOMIC_ADD32 - FIXED_CODE_START);
425 BUG_ON((char *)&atomic_sub32 - (char *)&fixed_code_start
426 != ATOMIC_SUB32 - FIXED_CODE_START);
427 BUG_ON((char *)&atomic_ior32 - (char *)&fixed_code_start
428 != ATOMIC_IOR32 - FIXED_CODE_START);
429 BUG_ON((char *)&atomic_and32 - (char *)&fixed_code_start
430 != ATOMIC_AND32 - FIXED_CODE_START);
431 BUG_ON((char *)&atomic_xor32 - (char *)&fixed_code_start
432 != ATOMIC_XOR32 - FIXED_CODE_START);
433 BUG_ON((char *)&safe_user_instruction - (char *)&fixed_code_start
434 != SAFE_USER_INSTRUCTION - FIXED_CODE_START);
436 init_exception_vectors();
440 static int __init topology_init(void)
442 #if defined (CONFIG_BF561)
443 static struct cpu cpu[2];
444 register_cpu(&cpu[0], 0);
445 register_cpu(&cpu[1], 1);
448 static struct cpu cpu[1];
449 return register_cpu(cpu, 0);
453 subsys_initcall(topology_init);
455 static u_long get_vco(void)
460 msel = (bfin_read_PLL_CTL() >> 9) & 0x3F;
464 vco = CONFIG_CLKIN_HZ;
465 vco >>= (1 & bfin_read_PLL_CTL()); /* DF bit */
470 /* Get the Core clock */
471 u_long get_cclk(void)
474 if (bfin_read_PLL_STAT() & 0x1)
475 return CONFIG_CLKIN_HZ;
477 ssel = bfin_read_PLL_DIV();
478 csel = ((ssel >> 4) & 0x03);
480 if (ssel && ssel < (1 << csel)) /* SCLK > CCLK */
481 return get_vco() / ssel;
482 return get_vco() >> csel;
484 EXPORT_SYMBOL(get_cclk);
486 /* Get the System clock */
487 u_long get_sclk(void)
491 if (bfin_read_PLL_STAT() & 0x1)
492 return CONFIG_CLKIN_HZ;
494 ssel = (bfin_read_PLL_DIV() & 0xf);
496 printk(KERN_WARNING "Invalid System Clock\n");
500 return get_vco() / ssel;
502 EXPORT_SYMBOL(get_sclk);
504 unsigned long sclk_to_usecs(unsigned long sclk)
506 u64 tmp = USEC_PER_SEC * (u64)sclk;
507 do_div(tmp, get_sclk());
510 EXPORT_SYMBOL(sclk_to_usecs);
512 unsigned long usecs_to_sclk(unsigned long usecs)
514 u64 tmp = get_sclk() * (u64)usecs;
515 do_div(tmp, USEC_PER_SEC);
518 EXPORT_SYMBOL(usecs_to_sclk);
521 * Get CPU information for use by the procfs.
523 static int show_cpuinfo(struct seq_file *m, void *v)
525 char *cpu, *mmu, *fpu, *vendor, *cache;
528 u_long cclk = 0, sclk = 0;
529 u_int dcache_size = 0, dsup_banks = 0;
534 revid = bfin_revid();
539 switch (bfin_read_CHIPID() & CHIPID_MANUFACTURE) {
541 vendor = "Analog Devices";
548 seq_printf(m, "processor\t: %d\n"
550 "cpu family\t: 0x%x\n"
551 "model name\t: ADSP-%s %lu(MHz CCLK) %lu(MHz SCLK)\n"
555 (bfin_read_CHIPID() & CHIPID_FAMILY),
556 cpu, cclk/1000000, sclk/1000000,
559 seq_printf(m, "cpu MHz\t\t: %lu.%03lu/%lu.%03lu\n",
560 cclk/1000000, cclk%1000000,
561 sclk/1000000, sclk%1000000);
562 seq_printf(m, "bogomips\t: %lu.%02lu\n"
563 "Calibration\t: %lu loops\n",
564 (loops_per_jiffy * HZ) / 500000,
565 ((loops_per_jiffy * HZ) / 5000) % 100,
566 (loops_per_jiffy * HZ));
568 /* Check Cache configutation */
569 switch (bfin_read_DMEM_CONTROL() & (1 << DMC0_P | 1 << DMC1_P)) {
571 cache = "dbank-A/B\t: cache/sram";
576 cache = "dbank-A/B\t: cache/cache";
581 cache = "dbank-A/B\t: sram/sram";
592 /* Is it turned on? */
593 if (!((bfin_read_DMEM_CONTROL()) & (ENDCPLB | DMC_ENABLE)))
596 seq_printf(m, "cache size\t: %d KB(L1 icache) "
597 "%d KB(L1 dcache-%s) %d KB(L2 cache)\n",
598 BFIN_ICACHESIZE / 1024, dcache_size,
599 #if defined CONFIG_BFIN_WB
601 #elif defined CONFIG_BFIN_WT
606 seq_printf(m, "%s\n", cache);
608 seq_printf(m, "icache setup\t: %d Sub-banks/%d Ways, %d Lines/Way\n",
609 BFIN_ISUBBANKS, BFIN_IWAYS, BFIN_ILINES);
611 "dcache setup\t: %d Super-banks/%d Sub-banks/%d Ways, %d Lines/Way\n",
612 dsup_banks, BFIN_DSUBBANKS, BFIN_DWAYS,
614 #ifdef CONFIG_BFIN_ICACHE_LOCK
615 switch (read_iloc()) {
617 seq_printf(m, "Way0 Locked-Down\n");
620 seq_printf(m, "Way1 Locked-Down\n");
623 seq_printf(m, "Way0,Way1 Locked-Down\n");
626 seq_printf(m, "Way2 Locked-Down\n");
629 seq_printf(m, "Way0,Way2 Locked-Down\n");
632 seq_printf(m, "Way1,Way2 Locked-Down\n");
635 seq_printf(m, "Way0,Way1 & Way2 Locked-Down\n");
638 seq_printf(m, "Way3 Locked-Down\n");
641 seq_printf(m, "Way0,Way3 Locked-Down\n");
644 seq_printf(m, "Way1,Way3 Locked-Down\n");
647 seq_printf(m, "Way 0,Way1,Way3 Locked-Down\n");
650 seq_printf(m, "Way3,Way2 Locked-Down\n");
653 seq_printf(m, "Way3,Way2,Way0 Locked-Down\n");
656 seq_printf(m, "Way3,Way2,Way1 Locked-Down\n");
659 seq_printf(m, "All Ways are locked\n");
662 seq_printf(m, "No Ways are locked\n");
666 seq_printf(m, "board name\t: %s\n", bfin_board_name);
667 seq_printf(m, "board memory\t: %ld kB (0x%p -> 0x%p)\n",
668 physical_mem_end >> 10, (void *)0, (void *)physical_mem_end);
669 seq_printf(m, "kernel memory\t: %d kB (0x%p -> 0x%p)\n",
670 ((int)memory_end - (int)_stext) >> 10,
677 static void *c_start(struct seq_file *m, loff_t *pos)
679 return *pos < NR_CPUS ? ((void *)0x12345678) : NULL;
682 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
685 return c_start(m, pos);
688 static void c_stop(struct seq_file *m, void *v)
692 struct seq_operations cpuinfo_op = {
696 .show = show_cpuinfo,
699 void __init cmdline_init(const char *r0)
702 strncpy(command_line, r0, COMMAND_LINE_SIZE);