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>
42 #include <asm/cacheflush.h>
43 #include <asm/blackfin.h>
44 #include <asm/cplbinit.h>
48 unsigned long memory_start, memory_end, physical_mem_end;
49 unsigned long reserved_mem_dcache_on;
50 unsigned long reserved_mem_icache_on;
51 EXPORT_SYMBOL(memory_start);
52 EXPORT_SYMBOL(memory_end);
53 EXPORT_SYMBOL(physical_mem_end);
54 EXPORT_SYMBOL(_ramend);
56 #ifdef CONFIG_MTD_UCLINUX
57 unsigned long memory_mtd_end, memory_mtd_start, mtd_size;
59 EXPORT_SYMBOL(memory_mtd_end);
60 EXPORT_SYMBOL(memory_mtd_start);
61 EXPORT_SYMBOL(mtd_size);
64 char command_line[COMMAND_LINE_SIZE];
66 #if defined(CONFIG_BLKFIN_DCACHE) || defined(CONFIG_BLKFIN_CACHE)
67 static void generate_cpl_tables(void);
70 void __init bf53x_cache_init(void)
72 #if defined(CONFIG_BLKFIN_DCACHE) || defined(CONFIG_BLKFIN_CACHE)
73 generate_cpl_tables();
76 #ifdef CONFIG_BLKFIN_CACHE
78 printk(KERN_INFO "Instruction Cache Enabled\n");
81 #ifdef CONFIG_BLKFIN_DCACHE
83 printk(KERN_INFO "Data Cache Enabled"
84 # if defined CONFIG_BLKFIN_WB
86 # elif defined CONFIG_BLKFIN_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 =
171 void __init setup_arch(char **cmdline_p)
174 unsigned long l1_length, sclk, cclk;
175 #ifdef CONFIG_MTD_UCLINUX
176 unsigned long mtd_phys = 0;
179 #ifdef CONFIG_DUMMY_CONSOLE
180 conswitchp = &dummy_con;
185 #if !defined(CONFIG_BFIN_KERNEL_CLOCK) && defined(ANOMALY_05000273)
187 panic("ANOMALY 05000273, SCLK can not be same as CCLK");
190 #if defined(ANOMALY_05000266)
191 bfin_read_IMDMA_D0_IRQ_STATUS();
192 bfin_read_IMDMA_D1_IRQ_STATUS();
195 #ifdef DEBUG_SERIAL_EARLY_INIT
196 bfin_console_init(); /* early console registration */
197 /* this give a chance to get printk() working before crash. */
200 #if defined(CONFIG_CHR_DEV_FLASH) || defined(CONFIG_BLK_DEV_FLASH)
201 /* we need to initialize the Flashrom device here since we might
202 * do things with flash early on in the boot
207 #if defined(CONFIG_CMDLINE_BOOL)
208 memset(command_line, 0, sizeof(command_line));
209 strncpy(&command_line[0], CONFIG_CMDLINE, sizeof(command_line));
210 command_line[sizeof(command_line) - 1] = 0;
213 /* Keep a copy of command line */
214 *cmdline_p = &command_line[0];
215 memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);
216 boot_command_line[COMMAND_LINE_SIZE - 1] = 0;
218 /* setup memory defaults from the user config */
219 physical_mem_end = 0;
220 _ramend = CONFIG_MEM_SIZE * 1024 * 1024;
222 parse_cmdline_early(&command_line[0]);
224 if (physical_mem_end == 0)
225 physical_mem_end = _ramend;
227 /* by now the stack is part of the init task */
228 memory_end = _ramend - DMA_UNCACHED_REGION;
230 _ramstart = (unsigned long)__bss_stop;
231 memory_start = PAGE_ALIGN(_ramstart);
233 #if defined(CONFIG_MTD_UCLINUX)
234 /* generic memory mapped MTD driver */
235 memory_mtd_end = memory_end;
237 mtd_phys = _ramstart;
238 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 8)));
240 # if defined(CONFIG_EXT2_FS) || defined(CONFIG_EXT3_FS)
241 if (*((unsigned short *)(mtd_phys + 0x438)) == EXT2_SUPER_MAGIC)
243 PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x404)) << 10);
246 # if defined(CONFIG_CRAMFS)
247 if (*((unsigned long *)(mtd_phys)) == CRAMFS_MAGIC)
248 mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x4)));
251 # if defined(CONFIG_ROMFS_FS)
252 if (((unsigned long *)mtd_phys)[0] == ROMSB_WORD0
253 && ((unsigned long *)mtd_phys)[1] == ROMSB_WORD1)
255 PAGE_ALIGN(be32_to_cpu(((unsigned long *)mtd_phys)[2]));
256 # if (defined(CONFIG_BLKFIN_CACHE) && defined(ANOMALY_05000263))
257 /* Due to a Hardware Anomaly we need to limit the size of usable
258 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
259 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
261 # if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
262 if (memory_end >= 56 * 1024 * 1024)
263 memory_end = 56 * 1024 * 1024;
265 if (memory_end >= 60 * 1024 * 1024)
266 memory_end = 60 * 1024 * 1024;
267 # endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
268 # endif /* ANOMALY_05000263 */
269 # endif /* CONFIG_ROMFS_FS */
271 memory_end -= mtd_size;
275 panic("Don't boot kernel without rootfs attached.\n");
278 /* Relocate MTD image to the top of memory after the uncached memory area */
279 dma_memcpy((char *)memory_end, __bss_stop, mtd_size);
281 memory_mtd_start = memory_end;
282 _ebss = memory_mtd_start; /* define _ebss for compatible */
283 #endif /* CONFIG_MTD_UCLINUX */
285 #if (defined(CONFIG_BLKFIN_CACHE) && defined(ANOMALY_05000263))
286 /* Due to a Hardware Anomaly we need to limit the size of usable
287 * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on
288 * 05000263 - Hardware loop corrupted when taking an ICPLB exception
290 #if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO))
291 if (memory_end >= 56 * 1024 * 1024)
292 memory_end = 56 * 1024 * 1024;
294 if (memory_end >= 60 * 1024 * 1024)
295 memory_end = 60 * 1024 * 1024;
296 #endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */
297 printk(KERN_NOTICE "Warning: limiting memory to %liMB due to hardware anomaly 05000263\n", memory_end >> 20);
298 #endif /* ANOMALY_05000263 */
300 #if !defined(CONFIG_MTD_UCLINUX)
301 memory_end -= SIZE_4K; /*In case there is no valid CPLB behind memory_end make sure we don't get to close*/
303 init_mm.start_code = (unsigned long)_stext;
304 init_mm.end_code = (unsigned long)_etext;
305 init_mm.end_data = (unsigned long)_edata;
306 init_mm.brk = (unsigned long)0;
310 printk(KERN_INFO "Blackfin support (C) 2004-2007 Analog Devices, Inc.\n");
311 printk(KERN_INFO "Compiled for ADSP-%s Rev 0.%d\n", CPU, bfin_compiled_revid());
312 if (bfin_revid() != bfin_compiled_revid())
313 printk(KERN_ERR "Warning: Compiled for Rev %d, but running on Rev %d\n",
314 bfin_compiled_revid(), bfin_revid());
315 if (bfin_revid() < SUPPORTED_REVID)
316 printk(KERN_ERR "Warning: Unsupported Chip Revision ADSP-%s Rev 0.%d detected\n",
318 printk(KERN_INFO "Blackfin Linux support by http://blackfin.uclinux.org/\n");
320 printk(KERN_INFO "Processor Speed: %lu MHz core clock and %lu Mhz System Clock\n",
321 cclk / 1000000, sclk / 1000000);
323 #if defined(ANOMALY_05000273)
324 if ((cclk >> 1) <= sclk)
325 printk("\n\n\nANOMALY_05000273: CCLK must be >= 2*SCLK !!!\n\n\n");
328 printk(KERN_INFO "Board Memory: %ldMB\n", physical_mem_end >> 20);
329 printk(KERN_INFO "Kernel Managed Memory: %ldMB\n", _ramend >> 20);
331 printk(KERN_INFO "Memory map:\n"
332 KERN_INFO " text = 0x%p-0x%p\n"
333 KERN_INFO " init = 0x%p-0x%p\n"
334 KERN_INFO " data = 0x%p-0x%p\n"
335 KERN_INFO " stack = 0x%p-0x%p\n"
336 KERN_INFO " bss = 0x%p-0x%p\n"
337 KERN_INFO " available = 0x%p-0x%p\n"
338 #ifdef CONFIG_MTD_UCLINUX
339 KERN_INFO " rootfs = 0x%p-0x%p\n"
341 #if DMA_UNCACHED_REGION > 0
342 KERN_INFO " DMA Zone = 0x%p-0x%p\n"
345 __init_begin, __init_end,
347 (void*)&init_thread_union, (void*)((int)(&init_thread_union) + 0x2000),
348 __bss_start, __bss_stop,
349 (void*)_ramstart, (void*)memory_end
350 #ifdef CONFIG_MTD_UCLINUX
351 , (void*)memory_mtd_start, (void*)(memory_mtd_start + mtd_size)
353 #if DMA_UNCACHED_REGION > 0
354 , (void*)(_ramend - DMA_UNCACHED_REGION), (void*)(_ramend)
359 * give all the memory to the bootmap allocator, tell it to put the
360 * boot mem_map at the start of memory
362 bootmap_size = init_bootmem_node(NODE_DATA(0), memory_start >> PAGE_SHIFT, /* map goes here */
363 PAGE_OFFSET >> PAGE_SHIFT,
364 memory_end >> PAGE_SHIFT);
366 * free the usable memory, we have to make sure we do not free
367 * the bootmem bitmap so we then reserve it after freeing it :-)
369 free_bootmem(memory_start, memory_end - memory_start);
371 reserve_bootmem(memory_start, bootmap_size);
373 * get kmalloc into gear
377 /* check the size of the l1 area */
378 l1_length = _etext_l1 - _stext_l1;
379 if (l1_length > L1_CODE_LENGTH)
380 panic("L1 memory overflow\n");
382 l1_length = _ebss_l1 - _sdata_l1;
383 if (l1_length > L1_DATA_A_LENGTH)
384 panic("L1 memory overflow\n");
387 _bfin_swrst = bfin_read_SICA_SWRST();
389 _bfin_swrst = bfin_read_SWRST();
394 printk(KERN_INFO "Hardware Trace Enabled\n");
395 bfin_write_TBUFCTL(0x03);
398 static int __init topology_init(void)
400 #if defined (CONFIG_BF561)
401 static struct cpu cpu[2];
402 register_cpu(&cpu[0], 0);
403 register_cpu(&cpu[1], 1);
406 static struct cpu cpu[1];
407 return register_cpu(cpu, 0);
411 subsys_initcall(topology_init);
413 #if defined(CONFIG_BLKFIN_DCACHE) || defined(CONFIG_BLKFIN_CACHE)
414 static u16 __init lock_kernel_check(u32 start, u32 end)
416 if ((start <= (u32) _stext && end >= (u32) _end)
417 || (start >= (u32) _stext && end <= (u32) _end))
422 static unsigned short __init
423 fill_cplbtab(struct cplb_tab *table,
424 unsigned long start, unsigned long end,
425 unsigned long block_size, unsigned long cplb_data)
429 switch (block_size) {
445 cplb_data = (cplb_data & ~(3 << 16)) | (i << 16);
447 while ((start < end) && (table->pos < table->size)) {
449 table->tab[table->pos++] = start;
451 if (lock_kernel_check(start, start + block_size) == IN_KERNEL)
452 table->tab[table->pos++] =
453 cplb_data | CPLB_LOCK | CPLB_DIRTY;
455 table->tab[table->pos++] = cplb_data;
462 static unsigned short __init
463 close_cplbtab(struct cplb_tab *table)
466 while (table->pos < table->size) {
468 table->tab[table->pos++] = 0;
469 table->tab[table->pos++] = 0; /* !CPLB_VALID */
474 /* helper function */
475 static void __fill_code_cplbtab(struct cplb_tab *t, int i,
476 u32 a_start, u32 a_end)
478 if (cplb_data[i].psize) {
483 cplb_data[i].i_conf);
485 #if (defined(CONFIG_BLKFIN_CACHE) && defined(ANOMALY_05000263))
486 if (i == SDRAM_KERN) {
491 cplb_data[i].i_conf);
498 cplb_data[i].i_conf);
503 cplb_data[i].i_conf);
504 fill_cplbtab(t, a_end,
507 cplb_data[i].i_conf);
512 static void __fill_data_cplbtab(struct cplb_tab *t, int i,
513 u32 a_start, u32 a_end)
515 if (cplb_data[i].psize) {
520 cplb_data[i].d_conf);
525 cplb_data[i].d_conf);
526 fill_cplbtab(t, a_start,
528 cplb_data[i].d_conf);
529 fill_cplbtab(t, a_end,
532 cplb_data[i].d_conf);
535 static void __init generate_cpl_tables(void)
539 u32 a_start, a_end, as, ae, as_1m;
541 struct cplb_tab *t_i = NULL;
542 struct cplb_tab *t_d = NULL;
545 cplb.init_i.size = MAX_CPLBS;
546 cplb.init_d.size = MAX_CPLBS;
547 cplb.switch_i.size = MAX_SWITCH_I_CPLBS;
548 cplb.switch_d.size = MAX_SWITCH_D_CPLBS;
552 cplb.switch_i.pos = 0;
553 cplb.switch_d.pos = 0;
555 cplb.init_i.tab = icplb_table;
556 cplb.init_d.tab = dcplb_table;
557 cplb.switch_i.tab = ipdt_table;
558 cplb.switch_d.tab = dpdt_table;
560 cplb_data[SDRAM_KERN].end = memory_end;
562 #ifdef CONFIG_MTD_UCLINUX
563 cplb_data[SDRAM_RAM_MTD].start = memory_mtd_start;
564 cplb_data[SDRAM_RAM_MTD].end = memory_mtd_start + mtd_size;
565 cplb_data[SDRAM_RAM_MTD].valid = mtd_size > 0;
566 # if defined(CONFIG_ROMFS_FS)
567 cplb_data[SDRAM_RAM_MTD].attr |= I_CPLB;
570 * The ROMFS_FS size is often not multiple of 1MB.
571 * This can cause multiple CPLB sets covering the same memory area.
572 * This will then cause multiple CPLB hit exceptions.
573 * Workaround: We ensure a contiguous memory area by extending the kernel
574 * memory section over the mtd section.
575 * For ROMFS_FS memory must be covered with ICPLBs anyways.
576 * So there is no difference between kernel and mtd memory setup.
579 cplb_data[SDRAM_KERN].end = memory_mtd_start + mtd_size;;
580 cplb_data[SDRAM_RAM_MTD].valid = 0;
584 cplb_data[SDRAM_RAM_MTD].valid = 0;
587 cplb_data[SDRAM_DMAZ].start = _ramend - DMA_UNCACHED_REGION;
588 cplb_data[SDRAM_DMAZ].end = _ramend;
590 cplb_data[RES_MEM].start = _ramend;
591 cplb_data[RES_MEM].end = physical_mem_end;
593 if (reserved_mem_dcache_on)
594 cplb_data[RES_MEM].d_conf = SDRAM_DGENERIC;
596 cplb_data[RES_MEM].d_conf = SDRAM_DNON_CHBL;
598 if (reserved_mem_icache_on)
599 cplb_data[RES_MEM].i_conf = SDRAM_IGENERIC;
601 cplb_data[RES_MEM].i_conf = SDRAM_INON_CHBL;
603 for (i = ZERO_P; i <= L2_MEM; i++) {
604 if (!cplb_data[i].valid)
607 as_1m = cplb_data[i].start % SIZE_1M;
610 * We need to make sure all sections are properly 1M aligned
611 * However between Kernel Memory and the Kernel mtd section,
612 * depending on the rootfs size, there can be overlapping
616 if (as_1m && i != L1I_MEM && i != L1D_MEM) {
617 #ifdef CONFIG_MTD_UCLINUX
618 if (i == SDRAM_RAM_MTD) {
619 if ((cplb_data[SDRAM_KERN].end + 1) >
620 cplb_data[SDRAM_RAM_MTD].start)
621 cplb_data[SDRAM_RAM_MTD].start =
622 (cplb_data[i].start &
623 (-2*SIZE_1M)) + SIZE_1M;
625 cplb_data[SDRAM_RAM_MTD].start =
626 (cplb_data[i].start &
631 "Unaligned Start of %s at 0x%X\n",
632 cplb_data[i].name, cplb_data[i].start);
635 as = cplb_data[i].start % SIZE_4M;
636 ae = cplb_data[i].end % SIZE_4M;
639 a_start = cplb_data[i].start + (SIZE_4M - (as));
641 a_start = cplb_data[i].start;
643 a_end = cplb_data[i].end - ae;
645 for (j = INITIAL_T; j <= SWITCH_T; j++) {
649 if (cplb_data[i].attr & INITIAL_T) {
657 if (cplb_data[i].attr & SWITCH_T) {
658 t_i = &cplb.switch_i;
659 t_d = &cplb.switch_d;
671 if (cplb_data[i].attr & I_CPLB)
672 __fill_code_cplbtab(t_i, i, a_start, a_end);
674 if (cplb_data[i].attr & D_CPLB)
675 __fill_data_cplbtab(t_d, i, a_start, a_end);
681 close_cplbtab(&cplb.init_i);
682 close_cplbtab(&cplb.init_d);
684 cplb.init_i.tab[cplb.init_i.pos] = -1;
685 cplb.init_d.tab[cplb.init_d.pos] = -1;
686 cplb.switch_i.tab[cplb.switch_i.pos] = -1;
687 cplb.switch_d.tab[cplb.switch_d.pos] = -1;
693 static u_long get_vco(void)
698 msel = (bfin_read_PLL_CTL() >> 9) & 0x3F;
702 vco = CONFIG_CLKIN_HZ;
703 vco >>= (1 & bfin_read_PLL_CTL()); /* DF bit */
708 /*Get the Core clock*/
709 u_long get_cclk(void)
712 if (bfin_read_PLL_STAT() & 0x1)
713 return CONFIG_CLKIN_HZ;
715 ssel = bfin_read_PLL_DIV();
716 csel = ((ssel >> 4) & 0x03);
718 if (ssel && ssel < (1 << csel)) /* SCLK > CCLK */
719 return get_vco() / ssel;
720 return get_vco() >> csel;
723 EXPORT_SYMBOL(get_cclk);
725 /* Get the System clock */
726 u_long get_sclk(void)
730 if (bfin_read_PLL_STAT() & 0x1)
731 return CONFIG_CLKIN_HZ;
733 ssel = (bfin_read_PLL_DIV() & 0xf);
735 printk(KERN_WARNING "Invalid System Clock\n");
739 return get_vco() / ssel;
742 EXPORT_SYMBOL(get_sclk);
745 * Get CPU information for use by the procfs.
747 static int show_cpuinfo(struct seq_file *m, void *v)
749 char *cpu, *mmu, *fpu, *name;
752 u_long cclk = 0, sclk = 0;
753 u_int dcache_size = 0, dsup_banks = 0;
758 revid = bfin_revid();
759 name = bfin_board_name;
764 seq_printf(m, "CPU:\t\tADSP-%s Rev. 0.%d\n"
767 "Core Clock:\t%9lu Hz\n"
768 "System Clock:\t%9lu Hz\n"
769 "BogoMips:\t%lu.%02lu\n"
770 "Calibration:\t%lu loops\n",
771 cpu, revid, mmu, fpu,
774 (loops_per_jiffy * HZ) / 500000,
775 ((loops_per_jiffy * HZ) / 5000) % 100,
776 (loops_per_jiffy * HZ));
777 seq_printf(m, "Board Name:\t%s\n", name);
778 seq_printf(m, "Board Memory:\t%ld MB\n", physical_mem_end >> 20);
779 seq_printf(m, "Kernel Memory:\t%ld MB\n", (unsigned long)_ramend >> 20);
780 if (bfin_read_IMEM_CONTROL() & (ENICPLB | IMC))
781 seq_printf(m, "I-CACHE:\tON\n");
783 seq_printf(m, "I-CACHE:\tOFF\n");
784 if ((bfin_read_DMEM_CONTROL()) & (ENDCPLB | DMC_ENABLE))
785 seq_printf(m, "D-CACHE:\tON"
786 #if defined CONFIG_BLKFIN_WB
788 #elif defined CONFIG_BLKFIN_WT
793 seq_printf(m, "D-CACHE:\tOFF\n");
796 switch(bfin_read_DMEM_CONTROL() & (1 << DMC0_P | 1 << DMC1_P)) {
798 seq_printf(m, "DBANK-A:\tCACHE\n" "DBANK-B:\tSRAM\n");
803 seq_printf(m, "DBANK-A:\tCACHE\n" "DBANK-B:\tCACHE\n");
808 seq_printf(m, "DBANK-A:\tSRAM\n" "DBANK-B:\tSRAM\n");
817 seq_printf(m, "I-CACHE Size:\t%dKB\n", BLKFIN_ICACHESIZE / 1024);
818 seq_printf(m, "D-CACHE Size:\t%dKB\n", dcache_size);
819 seq_printf(m, "I-CACHE Setup:\t%d Sub-banks/%d Ways, %d Lines/Way\n",
820 BLKFIN_ISUBBANKS, BLKFIN_IWAYS, BLKFIN_ILINES);
822 "D-CACHE Setup:\t%d Super-banks/%d Sub-banks/%d Ways, %d Lines/Way\n",
823 dsup_banks, BLKFIN_DSUBBANKS, BLKFIN_DWAYS,
825 #ifdef CONFIG_BLKFIN_CACHE_LOCK
826 switch (read_iloc()) {
828 seq_printf(m, "Way0 Locked-Down\n");
831 seq_printf(m, "Way1 Locked-Down\n");
834 seq_printf(m, "Way0,Way1 Locked-Down\n");
837 seq_printf(m, "Way2 Locked-Down\n");
840 seq_printf(m, "Way0,Way2 Locked-Down\n");
843 seq_printf(m, "Way1,Way2 Locked-Down\n");
846 seq_printf(m, "Way0,Way1 & Way2 Locked-Down\n");
849 seq_printf(m, "Way3 Locked-Down\n");
852 seq_printf(m, "Way0,Way3 Locked-Down\n");
855 seq_printf(m, "Way1,Way3 Locked-Down\n");
858 seq_printf(m, "Way 0,Way1,Way3 Locked-Down\n");
861 seq_printf(m, "Way3,Way2 Locked-Down\n");
864 seq_printf(m, "Way3,Way2,Way0 Locked-Down\n");
867 seq_printf(m, "Way3,Way2,Way1 Locked-Down\n");
870 seq_printf(m, "All Ways are locked\n");
873 seq_printf(m, "No Ways are locked\n");
879 static void *c_start(struct seq_file *m, loff_t *pos)
881 return *pos < NR_CPUS ? ((void *)0x12345678) : NULL;
884 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
887 return c_start(m, pos);
890 static void c_stop(struct seq_file *m, void *v)
894 struct seq_operations cpuinfo_op = {
898 .show = show_cpuinfo,
901 void __init cmdline_init(char *r0)
904 strncpy(command_line, r0, COMMAND_LINE_SIZE);