Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1 | /* |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 2 | * Copyright 2004-2009 Analog Devices Inc. |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 3 | * |
Mike Frysinger | 550d553 | 2008-02-02 15:55:37 +0800 | [diff] [blame] | 4 | * Licensed under the GPL-2 or later. |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 5 | */ |
| 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 Frysinger | 259fea4 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 12 | #include <linux/mm.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 13 | #include <linux/module.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 14 | #include <linux/tty.h> |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 15 | #include <linux/pfn.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 16 | |
Mike Frysinger | 79df1b6 | 2009-05-26 23:34:51 +0000 | [diff] [blame] | 17 | #ifdef CONFIG_MTD_UCLINUX |
| 18 | #include <linux/mtd/map.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 19 | #include <linux/ext2_fs.h> |
| 20 | #include <linux/cramfs_fs.h> |
| 21 | #include <linux/romfs_fs.h> |
Mike Frysinger | 79df1b6 | 2009-05-26 23:34:51 +0000 | [diff] [blame] | 22 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 23 | |
Robin Getz | 3bebca2 | 2007-10-10 23:55:26 +0800 | [diff] [blame] | 24 | #include <asm/cplb.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 25 | #include <asm/cacheflush.h> |
| 26 | #include <asm/blackfin.h> |
| 27 | #include <asm/cplbinit.h> |
Mike Frysinger | 1754a5d | 2007-11-23 11:28:11 +0800 | [diff] [blame] | 28 | #include <asm/div64.h> |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 29 | #include <asm/cpu.h> |
Bernd Schmidt | 7adfb58 | 2007-06-21 11:34:16 +0800 | [diff] [blame] | 30 | #include <asm/fixed_code.h> |
Robin Getz | ce3afa1 | 2007-10-09 17:28:36 +0800 | [diff] [blame] | 31 | #include <asm/early_printk.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 32 | |
Mike Frysinger | a9c59c2 | 2007-05-21 18:09:32 +0800 | [diff] [blame] | 33 | u16 _bfin_swrst; |
Mike Frysinger | d45118b | 2008-02-25 12:24:44 +0800 | [diff] [blame] | 34 | EXPORT_SYMBOL(_bfin_swrst); |
Mike Frysinger | a9c59c2 | 2007-05-21 18:09:32 +0800 | [diff] [blame] | 35 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 36 | unsigned long memory_start, memory_end, physical_mem_end; |
Mike Frysinger | 3132b58 | 2008-04-24 05:12:09 +0800 | [diff] [blame] | 37 | unsigned long _rambase, _ramstart, _ramend; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 38 | unsigned long reserved_mem_dcache_on; |
| 39 | unsigned long reserved_mem_icache_on; |
| 40 | EXPORT_SYMBOL(memory_start); |
| 41 | EXPORT_SYMBOL(memory_end); |
| 42 | EXPORT_SYMBOL(physical_mem_end); |
| 43 | EXPORT_SYMBOL(_ramend); |
Vitja Makarov | 58c35bd | 2008-10-13 15:23:56 +0800 | [diff] [blame] | 44 | EXPORT_SYMBOL(reserved_mem_dcache_on); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 45 | |
| 46 | #ifdef CONFIG_MTD_UCLINUX |
Mike Frysinger | 79df1b6 | 2009-05-26 23:34:51 +0000 | [diff] [blame] | 47 | extern struct map_info uclinux_ram_map; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 48 | unsigned long memory_mtd_end, memory_mtd_start, mtd_size; |
| 49 | unsigned long _ebss; |
| 50 | EXPORT_SYMBOL(memory_mtd_end); |
| 51 | EXPORT_SYMBOL(memory_mtd_start); |
| 52 | EXPORT_SYMBOL(mtd_size); |
| 53 | #endif |
| 54 | |
Mike Frysinger | 5e10b4a | 2007-06-11 16:44:09 +0800 | [diff] [blame] | 55 | char __initdata command_line[COMMAND_LINE_SIZE]; |
Robin Getz | 0c7a6b2 | 2008-10-08 16:27:12 +0800 | [diff] [blame] | 56 | void __initdata *init_retx, *init_saved_retx, *init_saved_seqstat, |
| 57 | *init_saved_icplb_fault_addr, *init_saved_dcplb_fault_addr; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 58 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 59 | /* boot memmap, for parsing "memmap=" */ |
| 60 | #define BFIN_MEMMAP_MAX 128 /* number of entries in bfin_memmap */ |
| 61 | #define BFIN_MEMMAP_RAM 1 |
| 62 | #define BFIN_MEMMAP_RESERVED 2 |
Mike Frysinger | af4c7d4 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 63 | static struct bfin_memmap { |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 64 | int nr_map; |
| 65 | struct bfin_memmap_entry { |
| 66 | unsigned long long addr; /* start of memory segment */ |
| 67 | unsigned long long size; |
| 68 | unsigned long type; |
| 69 | } map[BFIN_MEMMAP_MAX]; |
| 70 | } bfin_memmap __initdata; |
| 71 | |
| 72 | /* for memmap sanitization */ |
| 73 | struct change_member { |
| 74 | struct bfin_memmap_entry *pentry; /* pointer to original entry */ |
| 75 | unsigned long long addr; /* address for this change point */ |
| 76 | }; |
| 77 | static struct change_member change_point_list[2*BFIN_MEMMAP_MAX] __initdata; |
| 78 | static struct change_member *change_point[2*BFIN_MEMMAP_MAX] __initdata; |
| 79 | static struct bfin_memmap_entry *overlap_list[BFIN_MEMMAP_MAX] __initdata; |
| 80 | static struct bfin_memmap_entry new_map[BFIN_MEMMAP_MAX] __initdata; |
| 81 | |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 82 | DEFINE_PER_CPU(struct blackfin_cpudata, cpu_data); |
| 83 | |
Mike Frysinger | 7f1e2f9 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 84 | static int early_init_clkin_hz(char *buf); |
| 85 | |
Robin Getz | 3bebca2 | 2007-10-10 23:55:26 +0800 | [diff] [blame] | 86 | #if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE) |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 87 | void __init generate_cplb_tables(void) |
| 88 | { |
| 89 | unsigned int cpu; |
| 90 | |
Bernd Schmidt | dbdf20d | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 91 | generate_cplb_tables_all(); |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 92 | /* Generate per-CPU I&D CPLB tables */ |
| 93 | for (cpu = 0; cpu < num_possible_cpus(); ++cpu) |
| 94 | generate_cplb_tables_cpu(cpu); |
| 95 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 96 | #endif |
| 97 | |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 98 | void __cpuinit bfin_setup_caches(unsigned int cpu) |
| 99 | { |
Robin Getz | 3bebca2 | 2007-10-10 23:55:26 +0800 | [diff] [blame] | 100 | #ifdef CONFIG_BFIN_ICACHE |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 101 | bfin_icache_init(icplb_tbl[cpu]); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 102 | #endif |
| 103 | |
Robin Getz | 3bebca2 | 2007-10-10 23:55:26 +0800 | [diff] [blame] | 104 | #ifdef CONFIG_BFIN_DCACHE |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 105 | bfin_dcache_init(dcplb_tbl[cpu]); |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 106 | #endif |
| 107 | |
| 108 | /* |
| 109 | * In cache coherence emulation mode, we need to have the |
| 110 | * D-cache enabled before running any atomic operation which |
Michael Hennerich | 05d17df | 2009-08-21 03:49:19 +0000 | [diff] [blame] | 111 | * might involve cache invalidation (i.e. spinlock, rwlock). |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 112 | * So printk's are deferred until then. |
| 113 | */ |
| 114 | #ifdef CONFIG_BFIN_ICACHE |
| 115 | printk(KERN_INFO "Instruction Cache Enabled for CPU%u\n", cpu); |
Jie Zhang | 41ba653 | 2009-06-16 09:48:33 +0000 | [diff] [blame] | 116 | printk(KERN_INFO " External memory:" |
| 117 | # ifdef CONFIG_BFIN_EXTMEM_ICACHEABLE |
| 118 | " cacheable" |
| 119 | # else |
| 120 | " uncacheable" |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 121 | # endif |
Jie Zhang | 41ba653 | 2009-06-16 09:48:33 +0000 | [diff] [blame] | 122 | " in instruction cache\n"); |
| 123 | if (L2_LENGTH) |
| 124 | printk(KERN_INFO " L2 SRAM :" |
| 125 | # ifdef CONFIG_BFIN_L2_ICACHEABLE |
| 126 | " cacheable" |
| 127 | # else |
| 128 | " uncacheable" |
| 129 | # endif |
| 130 | " in instruction cache\n"); |
| 131 | |
| 132 | #else |
| 133 | printk(KERN_INFO "Instruction Cache Disabled for CPU%u\n", cpu); |
| 134 | #endif |
| 135 | |
| 136 | #ifdef CONFIG_BFIN_DCACHE |
| 137 | printk(KERN_INFO "Data Cache Enabled for CPU%u\n", cpu); |
| 138 | printk(KERN_INFO " External memory:" |
| 139 | # if defined CONFIG_BFIN_EXTMEM_WRITEBACK |
| 140 | " cacheable (write-back)" |
| 141 | # elif defined CONFIG_BFIN_EXTMEM_WRITETHROUGH |
| 142 | " cacheable (write-through)" |
| 143 | # else |
| 144 | " uncacheable" |
| 145 | # endif |
| 146 | " in data cache\n"); |
| 147 | if (L2_LENGTH) |
| 148 | printk(KERN_INFO " L2 SRAM :" |
| 149 | # if defined CONFIG_BFIN_L2_WRITEBACK |
| 150 | " cacheable (write-back)" |
| 151 | # elif defined CONFIG_BFIN_L2_WRITETHROUGH |
| 152 | " cacheable (write-through)" |
| 153 | # else |
| 154 | " uncacheable" |
| 155 | # endif |
| 156 | " in data cache\n"); |
| 157 | #else |
| 158 | printk(KERN_INFO "Data Cache Disabled for CPU%u\n", cpu); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 159 | #endif |
| 160 | } |
| 161 | |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 162 | void __cpuinit bfin_setup_cpudata(unsigned int cpu) |
| 163 | { |
| 164 | struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu); |
| 165 | |
| 166 | cpudata->idle = current; |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 167 | cpudata->imemctl = bfin_read_IMEM_CONTROL(); |
| 168 | cpudata->dmemctl = bfin_read_DMEM_CONTROL(); |
| 169 | } |
| 170 | |
| 171 | void __init bfin_cache_init(void) |
| 172 | { |
| 173 | #if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE) |
| 174 | generate_cplb_tables(); |
| 175 | #endif |
| 176 | bfin_setup_caches(0); |
| 177 | } |
| 178 | |
Graf Yang | 5b04f27 | 2008-10-08 17:32:57 +0800 | [diff] [blame] | 179 | void __init bfin_relocate_l1_mem(void) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 180 | { |
Mike Frysinger | 5cd82a6 | 2009-09-23 20:34:48 +0000 | [diff] [blame] | 181 | unsigned long text_l1_len = (unsigned long)_text_l1_len; |
| 182 | unsigned long data_l1_len = (unsigned long)_data_l1_len; |
| 183 | unsigned long data_b_l1_len = (unsigned long)_data_b_l1_len; |
| 184 | unsigned long l2_len = (unsigned long)_l2_len; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 185 | |
Robin Getz | 837ec2d | 2009-07-07 20:17:09 +0000 | [diff] [blame] | 186 | early_shadow_stamp(); |
| 187 | |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 188 | /* |
| 189 | * due to the ALIGN(4) in the arch/blackfin/kernel/vmlinux.lds.S |
| 190 | * we know that everything about l1 text/data is nice and aligned, |
| 191 | * so copy by 4 byte chunks, and don't worry about overlapping |
| 192 | * src/dest. |
| 193 | * |
| 194 | * We can't use the dma_memcpy functions, since they can call |
| 195 | * scheduler functions which might be in L1 :( and core writes |
| 196 | * into L1 instruction cause bad access errors, so we are stuck, |
| 197 | * we are required to use DMA, but can't use the common dma |
| 198 | * functions. We can't use memcpy either - since that might be |
| 199 | * going to be in the relocated L1 |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 200 | */ |
| 201 | |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 202 | blackfin_dma_early_init(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 203 | |
Mike Frysinger | 5cd82a6 | 2009-09-23 20:34:48 +0000 | [diff] [blame] | 204 | /* if necessary, copy L1 text to L1 instruction SRAM */ |
| 205 | if (L1_CODE_LENGTH && text_l1_len) |
| 206 | early_dma_memcpy(_stext_l1, _text_l1_lma, text_l1_len); |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 207 | |
Mike Frysinger | 5cd82a6 | 2009-09-23 20:34:48 +0000 | [diff] [blame] | 208 | /* if necessary, copy L1 data to L1 data bank A SRAM */ |
| 209 | if (L1_DATA_A_LENGTH && data_l1_len) |
| 210 | early_dma_memcpy(_sdata_l1, _data_l1_lma, data_l1_len); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 211 | |
Mike Frysinger | 5cd82a6 | 2009-09-23 20:34:48 +0000 | [diff] [blame] | 212 | /* if necessary, copy L1 data B to L1 data bank B SRAM */ |
| 213 | if (L1_DATA_B_LENGTH && data_b_l1_len) |
| 214 | early_dma_memcpy(_sdata_b_l1, _data_b_l1_lma, data_b_l1_len); |
Sonic Zhang | 262c382 | 2008-07-19 15:42:41 +0800 | [diff] [blame] | 215 | |
Robin Getz | fecbd73 | 2009-04-23 20:49:43 +0000 | [diff] [blame] | 216 | early_dma_memcpy_done(); |
| 217 | |
Mike Frysinger | 5cd82a6 | 2009-09-23 20:34:48 +0000 | [diff] [blame] | 218 | /* if necessary, copy L2 text/data to L2 SRAM */ |
| 219 | if (L2_LENGTH && l2_len) |
| 220 | memcpy(_stext_l2, _l2_lma, l2_len); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 223 | /* add_memory_region to memmap */ |
| 224 | static void __init add_memory_region(unsigned long long start, |
| 225 | unsigned long long size, int type) |
| 226 | { |
| 227 | int i; |
| 228 | |
| 229 | i = bfin_memmap.nr_map; |
| 230 | |
| 231 | if (i == BFIN_MEMMAP_MAX) { |
| 232 | printk(KERN_ERR "Ooops! Too many entries in the memory map!\n"); |
| 233 | return; |
| 234 | } |
| 235 | |
| 236 | bfin_memmap.map[i].addr = start; |
| 237 | bfin_memmap.map[i].size = size; |
| 238 | bfin_memmap.map[i].type = type; |
| 239 | bfin_memmap.nr_map++; |
| 240 | } |
| 241 | |
| 242 | /* |
| 243 | * Sanitize the boot memmap, removing overlaps. |
| 244 | */ |
| 245 | static int __init sanitize_memmap(struct bfin_memmap_entry *map, int *pnr_map) |
| 246 | { |
| 247 | struct change_member *change_tmp; |
| 248 | unsigned long current_type, last_type; |
| 249 | unsigned long long last_addr; |
| 250 | int chgidx, still_changing; |
| 251 | int overlap_entries; |
| 252 | int new_entry; |
| 253 | int old_nr, new_nr, chg_nr; |
| 254 | int i; |
| 255 | |
| 256 | /* |
| 257 | Visually we're performing the following (1,2,3,4 = memory types) |
| 258 | |
| 259 | Sample memory map (w/overlaps): |
| 260 | ____22__________________ |
| 261 | ______________________4_ |
| 262 | ____1111________________ |
| 263 | _44_____________________ |
| 264 | 11111111________________ |
| 265 | ____________________33__ |
| 266 | ___________44___________ |
| 267 | __________33333_________ |
| 268 | ______________22________ |
| 269 | ___________________2222_ |
| 270 | _________111111111______ |
| 271 | _____________________11_ |
| 272 | _________________4______ |
| 273 | |
| 274 | Sanitized equivalent (no overlap): |
| 275 | 1_______________________ |
| 276 | _44_____________________ |
| 277 | ___1____________________ |
| 278 | ____22__________________ |
| 279 | ______11________________ |
| 280 | _________1______________ |
| 281 | __________3_____________ |
| 282 | ___________44___________ |
| 283 | _____________33_________ |
| 284 | _______________2________ |
| 285 | ________________1_______ |
| 286 | _________________4______ |
| 287 | ___________________2____ |
| 288 | ____________________33__ |
| 289 | ______________________4_ |
| 290 | */ |
| 291 | /* if there's only one memory region, don't bother */ |
| 292 | if (*pnr_map < 2) |
| 293 | return -1; |
| 294 | |
| 295 | old_nr = *pnr_map; |
| 296 | |
| 297 | /* bail out if we find any unreasonable addresses in memmap */ |
| 298 | for (i = 0; i < old_nr; i++) |
| 299 | if (map[i].addr + map[i].size < map[i].addr) |
| 300 | return -1; |
| 301 | |
| 302 | /* create pointers for initial change-point information (for sorting) */ |
| 303 | for (i = 0; i < 2*old_nr; i++) |
| 304 | change_point[i] = &change_point_list[i]; |
| 305 | |
| 306 | /* record all known change-points (starting and ending addresses), |
| 307 | omitting those that are for empty memory regions */ |
| 308 | chgidx = 0; |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 309 | for (i = 0; i < old_nr; i++) { |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 310 | if (map[i].size != 0) { |
| 311 | change_point[chgidx]->addr = map[i].addr; |
| 312 | change_point[chgidx++]->pentry = &map[i]; |
| 313 | change_point[chgidx]->addr = map[i].addr + map[i].size; |
| 314 | change_point[chgidx++]->pentry = &map[i]; |
| 315 | } |
| 316 | } |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 317 | chg_nr = chgidx; /* true number of change-points */ |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 318 | |
| 319 | /* sort change-point list by memory addresses (low -> high) */ |
| 320 | still_changing = 1; |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 321 | while (still_changing) { |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 322 | still_changing = 0; |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 323 | for (i = 1; i < chg_nr; i++) { |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 324 | /* if <current_addr> > <last_addr>, swap */ |
| 325 | /* or, if current=<start_addr> & last=<end_addr>, swap */ |
| 326 | if ((change_point[i]->addr < change_point[i-1]->addr) || |
| 327 | ((change_point[i]->addr == change_point[i-1]->addr) && |
| 328 | (change_point[i]->addr == change_point[i]->pentry->addr) && |
| 329 | (change_point[i-1]->addr != change_point[i-1]->pentry->addr)) |
| 330 | ) { |
| 331 | change_tmp = change_point[i]; |
| 332 | change_point[i] = change_point[i-1]; |
| 333 | change_point[i-1] = change_tmp; |
| 334 | still_changing = 1; |
| 335 | } |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | /* create a new memmap, removing overlaps */ |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 340 | overlap_entries = 0; /* number of entries in the overlap table */ |
| 341 | new_entry = 0; /* index for creating new memmap entries */ |
| 342 | last_type = 0; /* start with undefined memory type */ |
| 343 | last_addr = 0; /* start with 0 as last starting address */ |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 344 | /* loop through change-points, determining affect on the new memmap */ |
| 345 | for (chgidx = 0; chgidx < chg_nr; chgidx++) { |
| 346 | /* keep track of all overlapping memmap entries */ |
| 347 | if (change_point[chgidx]->addr == change_point[chgidx]->pentry->addr) { |
| 348 | /* add map entry to overlap list (> 1 entry implies an overlap) */ |
| 349 | overlap_list[overlap_entries++] = change_point[chgidx]->pentry; |
| 350 | } else { |
| 351 | /* remove entry from list (order independent, so swap with last) */ |
| 352 | for (i = 0; i < overlap_entries; i++) { |
| 353 | if (overlap_list[i] == change_point[chgidx]->pentry) |
| 354 | overlap_list[i] = overlap_list[overlap_entries-1]; |
| 355 | } |
| 356 | overlap_entries--; |
| 357 | } |
| 358 | /* if there are overlapping entries, decide which "type" to use */ |
| 359 | /* (larger value takes precedence -- 1=usable, 2,3,4,4+=unusable) */ |
| 360 | current_type = 0; |
| 361 | for (i = 0; i < overlap_entries; i++) |
| 362 | if (overlap_list[i]->type > current_type) |
| 363 | current_type = overlap_list[i]->type; |
| 364 | /* continue building up new memmap based on this information */ |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 365 | if (current_type != last_type) { |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 366 | if (last_type != 0) { |
| 367 | new_map[new_entry].size = |
| 368 | change_point[chgidx]->addr - last_addr; |
| 369 | /* move forward only if the new size was non-zero */ |
| 370 | if (new_map[new_entry].size != 0) |
| 371 | if (++new_entry >= BFIN_MEMMAP_MAX) |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 372 | break; /* no more space left for new entries */ |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 373 | } |
| 374 | if (current_type != 0) { |
| 375 | new_map[new_entry].addr = change_point[chgidx]->addr; |
| 376 | new_map[new_entry].type = current_type; |
| 377 | last_addr = change_point[chgidx]->addr; |
| 378 | } |
| 379 | last_type = current_type; |
| 380 | } |
| 381 | } |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 382 | new_nr = new_entry; /* retain count for new entries */ |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 383 | |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 384 | /* copy new mapping into original location */ |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 385 | memcpy(map, new_map, new_nr*sizeof(struct bfin_memmap_entry)); |
| 386 | *pnr_map = new_nr; |
| 387 | |
| 388 | return 0; |
| 389 | } |
| 390 | |
| 391 | static void __init print_memory_map(char *who) |
| 392 | { |
| 393 | int i; |
| 394 | |
| 395 | for (i = 0; i < bfin_memmap.nr_map; i++) { |
| 396 | printk(KERN_DEBUG " %s: %016Lx - %016Lx ", who, |
| 397 | bfin_memmap.map[i].addr, |
| 398 | bfin_memmap.map[i].addr + bfin_memmap.map[i].size); |
| 399 | switch (bfin_memmap.map[i].type) { |
| 400 | case BFIN_MEMMAP_RAM: |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 401 | printk(KERN_CONT "(usable)\n"); |
| 402 | break; |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 403 | case BFIN_MEMMAP_RESERVED: |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 404 | printk(KERN_CONT "(reserved)\n"); |
| 405 | break; |
| 406 | default: |
| 407 | printk(KERN_CONT "type %lu\n", bfin_memmap.map[i].type); |
| 408 | break; |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 409 | } |
| 410 | } |
| 411 | } |
| 412 | |
| 413 | static __init int parse_memmap(char *arg) |
| 414 | { |
| 415 | unsigned long long start_at, mem_size; |
| 416 | |
| 417 | if (!arg) |
| 418 | return -EINVAL; |
| 419 | |
| 420 | mem_size = memparse(arg, &arg); |
| 421 | if (*arg == '@') { |
| 422 | start_at = memparse(arg+1, &arg); |
| 423 | add_memory_region(start_at, mem_size, BFIN_MEMMAP_RAM); |
| 424 | } else if (*arg == '$') { |
| 425 | start_at = memparse(arg+1, &arg); |
| 426 | add_memory_region(start_at, mem_size, BFIN_MEMMAP_RESERVED); |
| 427 | } |
| 428 | |
| 429 | return 0; |
| 430 | } |
| 431 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 432 | /* |
| 433 | * Initial parsing of the command line. Currently, we support: |
| 434 | * - Controlling the linux memory size: mem=xxx[KMG] |
| 435 | * - Controlling the physical memory size: max_mem=xxx[KMG][$][#] |
| 436 | * $ -> reserved memory is dcacheable |
| 437 | * # -> reserved memory is icacheable |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 438 | * - "memmap=XXX[KkmM][@][$]XXX[KkmM]" defines a memory region |
| 439 | * @ from <start> to <start>+<mem>, type RAM |
| 440 | * $ from <start> to <start>+<mem>, type RESERVED |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 441 | */ |
| 442 | static __init void parse_cmdline_early(char *cmdline_p) |
| 443 | { |
| 444 | char c = ' ', *to = cmdline_p; |
| 445 | unsigned int memsize; |
| 446 | for (;;) { |
| 447 | if (c == ' ') { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 448 | if (!memcmp(to, "mem=", 4)) { |
| 449 | to += 4; |
| 450 | memsize = memparse(to, &to); |
| 451 | if (memsize) |
| 452 | _ramend = memsize; |
| 453 | |
| 454 | } else if (!memcmp(to, "max_mem=", 8)) { |
| 455 | to += 8; |
| 456 | memsize = memparse(to, &to); |
| 457 | if (memsize) { |
| 458 | physical_mem_end = memsize; |
| 459 | if (*to != ' ') { |
| 460 | if (*to == '$' |
| 461 | || *(to + 1) == '$') |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 462 | reserved_mem_dcache_on = 1; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 463 | if (*to == '#' |
| 464 | || *(to + 1) == '#') |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 465 | reserved_mem_icache_on = 1; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 466 | } |
| 467 | } |
Mike Frysinger | 7f1e2f9 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 468 | } else if (!memcmp(to, "clkin_hz=", 9)) { |
| 469 | to += 9; |
| 470 | early_init_clkin_hz(to); |
Robin Getz | bd854c0 | 2009-06-18 22:53:43 +0000 | [diff] [blame] | 471 | #ifdef CONFIG_EARLY_PRINTK |
Robin Getz | ce3afa1 | 2007-10-09 17:28:36 +0800 | [diff] [blame] | 472 | } else if (!memcmp(to, "earlyprintk=", 12)) { |
| 473 | to += 12; |
| 474 | setup_early_printk(to); |
Robin Getz | bd854c0 | 2009-06-18 22:53:43 +0000 | [diff] [blame] | 475 | #endif |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 476 | } else if (!memcmp(to, "memmap=", 7)) { |
| 477 | to += 7; |
| 478 | parse_memmap(to); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 479 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 480 | } |
| 481 | c = *(to++); |
| 482 | if (!c) |
| 483 | break; |
| 484 | } |
| 485 | } |
| 486 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 487 | /* |
| 488 | * Setup memory defaults from user config. |
| 489 | * The physical memory layout looks like: |
| 490 | * |
| 491 | * [_rambase, _ramstart]: kernel image |
| 492 | * [memory_start, memory_end]: dynamic memory managed by kernel |
| 493 | * [memory_end, _ramend]: reserved memory |
Bryan Wu | 3094c98 | 2008-10-10 21:22:01 +0800 | [diff] [blame] | 494 | * [memory_mtd_start(memory_end), |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 495 | * memory_mtd_start + mtd_size]: rootfs (if any) |
| 496 | * [_ramend - DMA_UNCACHED_REGION, |
| 497 | * _ramend]: uncached DMA region |
| 498 | * [_ramend, physical_mem_end]: memory not managed by kernel |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 499 | */ |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 500 | static __init void memory_setup(void) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 501 | { |
Mike Frysinger | c0eab3b | 2008-02-02 15:36:11 +0800 | [diff] [blame] | 502 | #ifdef CONFIG_MTD_UCLINUX |
| 503 | unsigned long mtd_phys = 0; |
| 504 | #endif |
Robin Getz | 2f812c0 | 2009-06-26 12:52:46 +0000 | [diff] [blame] | 505 | unsigned long max_mem; |
Mike Frysinger | c0eab3b | 2008-02-02 15:36:11 +0800 | [diff] [blame] | 506 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 507 | _rambase = (unsigned long)_stext; |
Mike Frysinger | b7627ac | 2008-02-02 15:53:17 +0800 | [diff] [blame] | 508 | _ramstart = (unsigned long)_end; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 509 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 510 | if (DMA_UNCACHED_REGION > (_ramend - _ramstart)) { |
| 511 | console_init(); |
Mike Frysinger | d8804ad | 2009-04-29 06:26:46 +0000 | [diff] [blame] | 512 | panic("DMA region exceeds memory limit: %lu.", |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 513 | _ramend - _ramstart); |
Mike Frysinger | 1aafd90 | 2007-07-25 11:19:14 +0800 | [diff] [blame] | 514 | } |
Robin Getz | 2f812c0 | 2009-06-26 12:52:46 +0000 | [diff] [blame] | 515 | max_mem = memory_end = _ramend - DMA_UNCACHED_REGION; |
| 516 | |
| 517 | #if (defined(CONFIG_BFIN_EXTMEM_ICACHEABLE) && ANOMALY_05000263) |
| 518 | /* Due to a Hardware Anomaly we need to limit the size of usable |
| 519 | * instruction memory to max 60MB, 56 if HUNT_FOR_ZERO is on |
| 520 | * 05000263 - Hardware loop corrupted when taking an ICPLB exception |
| 521 | */ |
| 522 | # if (defined(CONFIG_DEBUG_HUNT_FOR_ZERO)) |
| 523 | if (max_mem >= 56 * 1024 * 1024) |
| 524 | max_mem = 56 * 1024 * 1024; |
| 525 | # else |
| 526 | if (max_mem >= 60 * 1024 * 1024) |
| 527 | max_mem = 60 * 1024 * 1024; |
| 528 | # endif /* CONFIG_DEBUG_HUNT_FOR_ZERO */ |
| 529 | #endif /* ANOMALY_05000263 */ |
| 530 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 531 | |
Bernd Schmidt | b97b8a9 | 2008-01-27 18:39:16 +0800 | [diff] [blame] | 532 | #ifdef CONFIG_MPU |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 533 | /* Round up to multiple of 4MB */ |
Bernd Schmidt | b97b8a9 | 2008-01-27 18:39:16 +0800 | [diff] [blame] | 534 | memory_start = (_ramstart + 0x3fffff) & ~0x3fffff; |
| 535 | #else |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 536 | memory_start = PAGE_ALIGN(_ramstart); |
Bernd Schmidt | b97b8a9 | 2008-01-27 18:39:16 +0800 | [diff] [blame] | 537 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 538 | |
| 539 | #if defined(CONFIG_MTD_UCLINUX) |
| 540 | /* generic memory mapped MTD driver */ |
| 541 | memory_mtd_end = memory_end; |
| 542 | |
| 543 | mtd_phys = _ramstart; |
| 544 | mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 8))); |
| 545 | |
| 546 | # if defined(CONFIG_EXT2_FS) || defined(CONFIG_EXT3_FS) |
| 547 | if (*((unsigned short *)(mtd_phys + 0x438)) == EXT2_SUPER_MAGIC) |
| 548 | mtd_size = |
| 549 | PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x404)) << 10); |
| 550 | # endif |
| 551 | |
| 552 | # if defined(CONFIG_CRAMFS) |
| 553 | if (*((unsigned long *)(mtd_phys)) == CRAMFS_MAGIC) |
| 554 | mtd_size = PAGE_ALIGN(*((unsigned long *)(mtd_phys + 0x4))); |
| 555 | # endif |
| 556 | |
| 557 | # if defined(CONFIG_ROMFS_FS) |
| 558 | if (((unsigned long *)mtd_phys)[0] == ROMSB_WORD0 |
Robin Getz | 2f812c0 | 2009-06-26 12:52:46 +0000 | [diff] [blame] | 559 | && ((unsigned long *)mtd_phys)[1] == ROMSB_WORD1) { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 560 | mtd_size = |
| 561 | PAGE_ALIGN(be32_to_cpu(((unsigned long *)mtd_phys)[2])); |
Robin Getz | 2f812c0 | 2009-06-26 12:52:46 +0000 | [diff] [blame] | 562 | |
| 563 | /* ROM_FS is XIP, so if we found it, we need to limit memory */ |
| 564 | if (memory_end > max_mem) { |
| 565 | pr_info("Limiting kernel memory to %liMB due to anomaly 05000263\n", max_mem >> 20); |
| 566 | memory_end = max_mem; |
| 567 | } |
| 568 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 569 | # endif /* CONFIG_ROMFS_FS */ |
| 570 | |
Robin Getz | dc437b1 | 2009-06-26 12:23:51 +0000 | [diff] [blame] | 571 | /* Since the default MTD_UCLINUX has no magic number, we just blindly |
| 572 | * read 8 past the end of the kernel's image, and look at it. |
| 573 | * When no image is attached, mtd_size is set to a random number |
| 574 | * Do some basic sanity checks before operating on things |
| 575 | */ |
| 576 | if (mtd_size == 0 || memory_end <= mtd_size) { |
| 577 | pr_emerg("Could not find valid ram mtd attached.\n"); |
| 578 | } else { |
| 579 | memory_end -= mtd_size; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 580 | |
Robin Getz | dc437b1 | 2009-06-26 12:23:51 +0000 | [diff] [blame] | 581 | /* Relocate MTD image to the top of memory after the uncached memory area */ |
| 582 | uclinux_ram_map.phys = memory_mtd_start = memory_end; |
| 583 | uclinux_ram_map.size = mtd_size; |
| 584 | pr_info("Found mtd parition at 0x%p, (len=0x%lx), moving to 0x%p\n", |
| 585 | _end, mtd_size, (void *)memory_mtd_start); |
| 586 | dma_memcpy((void *)uclinux_ram_map.phys, _end, uclinux_ram_map.size); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 587 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 588 | #endif /* CONFIG_MTD_UCLINUX */ |
| 589 | |
Robin Getz | 2f812c0 | 2009-06-26 12:52:46 +0000 | [diff] [blame] | 590 | /* We need lo limit memory, since everything could have a text section |
| 591 | * of userspace in it, and expose anomaly 05000263. If the anomaly |
| 592 | * doesn't exist, or we don't need to - then dont. |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 593 | */ |
Robin Getz | 2f812c0 | 2009-06-26 12:52:46 +0000 | [diff] [blame] | 594 | if (memory_end > max_mem) { |
| 595 | pr_info("Limiting kernel memory to %liMB due to anomaly 05000263\n", max_mem >> 20); |
| 596 | memory_end = max_mem; |
| 597 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 598 | |
Bernd Schmidt | b97b8a9 | 2008-01-27 18:39:16 +0800 | [diff] [blame] | 599 | #ifdef CONFIG_MPU |
| 600 | page_mask_nelts = ((_ramend >> PAGE_SHIFT) + 31) / 32; |
| 601 | page_mask_order = get_order(3 * page_mask_nelts * sizeof(long)); |
| 602 | #endif |
| 603 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 604 | #if !defined(CONFIG_MTD_UCLINUX) |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 605 | /*In case there is no valid CPLB behind memory_end make sure we don't get to close*/ |
| 606 | memory_end -= SIZE_4K; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 607 | #endif |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 608 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 609 | init_mm.start_code = (unsigned long)_stext; |
| 610 | init_mm.end_code = (unsigned long)_etext; |
| 611 | init_mm.end_data = (unsigned long)_edata; |
| 612 | init_mm.brk = (unsigned long)0; |
| 613 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 614 | printk(KERN_INFO "Board Memory: %ldMB\n", physical_mem_end >> 20); |
| 615 | printk(KERN_INFO "Kernel Managed Memory: %ldMB\n", _ramend >> 20); |
| 616 | |
Mike Frysinger | b7627ac | 2008-02-02 15:53:17 +0800 | [diff] [blame] | 617 | printk(KERN_INFO "Memory map:\n" |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 618 | " fixedcode = 0x%p-0x%p\n" |
| 619 | " text = 0x%p-0x%p\n" |
| 620 | " rodata = 0x%p-0x%p\n" |
| 621 | " bss = 0x%p-0x%p\n" |
| 622 | " data = 0x%p-0x%p\n" |
| 623 | " stack = 0x%p-0x%p\n" |
| 624 | " init = 0x%p-0x%p\n" |
| 625 | " available = 0x%p-0x%p\n" |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 626 | #ifdef CONFIG_MTD_UCLINUX |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 627 | " rootfs = 0x%p-0x%p\n" |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 628 | #endif |
| 629 | #if DMA_UNCACHED_REGION > 0 |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 630 | " DMA Zone = 0x%p-0x%p\n" |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 631 | #endif |
Mike Frysinger | 8929ecf8 | 2008-02-22 16:35:20 +0800 | [diff] [blame] | 632 | , (void *)FIXED_CODE_START, (void *)FIXED_CODE_END, |
| 633 | _stext, _etext, |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 634 | __start_rodata, __end_rodata, |
Mike Frysinger | b7627ac | 2008-02-02 15:53:17 +0800 | [diff] [blame] | 635 | __bss_start, __bss_stop, |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 636 | _sdata, _edata, |
| 637 | (void *)&init_thread_union, |
| 638 | (void *)((int)(&init_thread_union) + 0x2000), |
Mike Frysinger | b7627ac | 2008-02-02 15:53:17 +0800 | [diff] [blame] | 639 | __init_begin, __init_end, |
| 640 | (void *)_ramstart, (void *)memory_end |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 641 | #ifdef CONFIG_MTD_UCLINUX |
| 642 | , (void *)memory_mtd_start, (void *)(memory_mtd_start + mtd_size) |
| 643 | #endif |
| 644 | #if DMA_UNCACHED_REGION > 0 |
| 645 | , (void *)(_ramend - DMA_UNCACHED_REGION), (void *)(_ramend) |
| 646 | #endif |
| 647 | ); |
| 648 | } |
| 649 | |
Yi Li | 2e8d796 | 2008-03-26 07:08:12 +0800 | [diff] [blame] | 650 | /* |
| 651 | * Find the lowest, highest page frame number we have available |
| 652 | */ |
| 653 | void __init find_min_max_pfn(void) |
| 654 | { |
| 655 | int i; |
| 656 | |
| 657 | max_pfn = 0; |
| 658 | min_low_pfn = memory_end; |
| 659 | |
| 660 | for (i = 0; i < bfin_memmap.nr_map; i++) { |
| 661 | unsigned long start, end; |
| 662 | /* RAM? */ |
| 663 | if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM) |
| 664 | continue; |
| 665 | start = PFN_UP(bfin_memmap.map[i].addr); |
| 666 | end = PFN_DOWN(bfin_memmap.map[i].addr + |
| 667 | bfin_memmap.map[i].size); |
| 668 | if (start >= end) |
| 669 | continue; |
| 670 | if (end > max_pfn) |
| 671 | max_pfn = end; |
| 672 | if (start < min_low_pfn) |
| 673 | min_low_pfn = start; |
| 674 | } |
| 675 | } |
| 676 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 677 | static __init void setup_bootmem_allocator(void) |
| 678 | { |
| 679 | int bootmap_size; |
| 680 | int i; |
Yi Li | 2e8d796 | 2008-03-26 07:08:12 +0800 | [diff] [blame] | 681 | unsigned long start_pfn, end_pfn; |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 682 | unsigned long curr_pfn, last_pfn, size; |
| 683 | |
| 684 | /* mark memory between memory_start and memory_end usable */ |
| 685 | add_memory_region(memory_start, |
| 686 | memory_end - memory_start, BFIN_MEMMAP_RAM); |
| 687 | /* sanity check for overlap */ |
| 688 | sanitize_memmap(bfin_memmap.map, &bfin_memmap.nr_map); |
| 689 | print_memory_map("boot memmap"); |
| 690 | |
Michael Hennerich | 05d17df | 2009-08-21 03:49:19 +0000 | [diff] [blame] | 691 | /* initialize globals in linux/bootmem.h */ |
Yi Li | 2e8d796 | 2008-03-26 07:08:12 +0800 | [diff] [blame] | 692 | find_min_max_pfn(); |
| 693 | /* pfn of the last usable page frame */ |
| 694 | if (max_pfn > memory_end >> PAGE_SHIFT) |
| 695 | max_pfn = memory_end >> PAGE_SHIFT; |
| 696 | /* pfn of last page frame directly mapped by kernel */ |
| 697 | max_low_pfn = max_pfn; |
| 698 | /* pfn of the first usable page frame after kernel image*/ |
| 699 | if (min_low_pfn < memory_start >> PAGE_SHIFT) |
| 700 | min_low_pfn = memory_start >> PAGE_SHIFT; |
| 701 | |
| 702 | start_pfn = PAGE_OFFSET >> PAGE_SHIFT; |
| 703 | end_pfn = memory_end >> PAGE_SHIFT; |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 704 | |
| 705 | /* |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 706 | * give all the memory to the bootmap allocator, tell it to put the |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 707 | * boot mem_map at the start of memory. |
| 708 | */ |
| 709 | bootmap_size = init_bootmem_node(NODE_DATA(0), |
| 710 | memory_start >> PAGE_SHIFT, /* map goes here */ |
Yi Li | 2e8d796 | 2008-03-26 07:08:12 +0800 | [diff] [blame] | 711 | start_pfn, end_pfn); |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 712 | |
| 713 | /* register the memmap regions with the bootmem allocator */ |
| 714 | for (i = 0; i < bfin_memmap.nr_map; i++) { |
| 715 | /* |
| 716 | * Reserve usable memory |
| 717 | */ |
| 718 | if (bfin_memmap.map[i].type != BFIN_MEMMAP_RAM) |
| 719 | continue; |
| 720 | /* |
| 721 | * We are rounding up the start address of usable memory: |
| 722 | */ |
| 723 | curr_pfn = PFN_UP(bfin_memmap.map[i].addr); |
Yi Li | 2e8d796 | 2008-03-26 07:08:12 +0800 | [diff] [blame] | 724 | if (curr_pfn >= end_pfn) |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 725 | continue; |
| 726 | /* |
| 727 | * ... and at the end of the usable range downwards: |
| 728 | */ |
| 729 | last_pfn = PFN_DOWN(bfin_memmap.map[i].addr + |
| 730 | bfin_memmap.map[i].size); |
| 731 | |
Yi Li | 2e8d796 | 2008-03-26 07:08:12 +0800 | [diff] [blame] | 732 | if (last_pfn > end_pfn) |
| 733 | last_pfn = end_pfn; |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 734 | |
| 735 | /* |
| 736 | * .. finally, did all the rounding and playing |
| 737 | * around just make the area go away? |
| 738 | */ |
| 739 | if (last_pfn <= curr_pfn) |
| 740 | continue; |
| 741 | |
| 742 | size = last_pfn - curr_pfn; |
| 743 | free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(size)); |
| 744 | } |
| 745 | |
| 746 | /* reserve memory before memory_start, including bootmap */ |
| 747 | reserve_bootmem(PAGE_OFFSET, |
| 748 | memory_start + bootmap_size + PAGE_SIZE - 1 - PAGE_OFFSET, |
| 749 | BOOTMEM_DEFAULT); |
| 750 | } |
| 751 | |
Mike Frysinger | a086ee2 | 2008-04-25 02:04:05 +0800 | [diff] [blame] | 752 | #define EBSZ_TO_MEG(ebsz) \ |
| 753 | ({ \ |
| 754 | int meg = 0; \ |
| 755 | switch (ebsz & 0xf) { \ |
| 756 | case 0x1: meg = 16; break; \ |
| 757 | case 0x3: meg = 32; break; \ |
| 758 | case 0x5: meg = 64; break; \ |
| 759 | case 0x7: meg = 128; break; \ |
| 760 | case 0x9: meg = 256; break; \ |
| 761 | case 0xb: meg = 512; break; \ |
| 762 | } \ |
| 763 | meg; \ |
| 764 | }) |
| 765 | static inline int __init get_mem_size(void) |
| 766 | { |
Michael Hennerich | 99d95bb | 2008-07-14 17:04:14 +0800 | [diff] [blame] | 767 | #if defined(EBIU_SDBCTL) |
| 768 | # if defined(BF561_FAMILY) |
Mike Frysinger | a086ee2 | 2008-04-25 02:04:05 +0800 | [diff] [blame] | 769 | int ret = 0; |
| 770 | u32 sdbctl = bfin_read_EBIU_SDBCTL(); |
| 771 | ret += EBSZ_TO_MEG(sdbctl >> 0); |
| 772 | ret += EBSZ_TO_MEG(sdbctl >> 8); |
| 773 | ret += EBSZ_TO_MEG(sdbctl >> 16); |
| 774 | ret += EBSZ_TO_MEG(sdbctl >> 24); |
| 775 | return ret; |
Michael Hennerich | 99d95bb | 2008-07-14 17:04:14 +0800 | [diff] [blame] | 776 | # else |
Mike Frysinger | a086ee2 | 2008-04-25 02:04:05 +0800 | [diff] [blame] | 777 | return EBSZ_TO_MEG(bfin_read_EBIU_SDBCTL()); |
Michael Hennerich | 99d95bb | 2008-07-14 17:04:14 +0800 | [diff] [blame] | 778 | # endif |
| 779 | #elif defined(EBIU_DDRCTL1) |
Michael Hennerich | 1e78042 | 2008-04-25 04:31:23 +0800 | [diff] [blame] | 780 | u32 ddrctl = bfin_read_EBIU_DDRCTL1(); |
| 781 | int ret = 0; |
| 782 | switch (ddrctl & 0xc0000) { |
| 783 | case DEVSZ_64: ret = 64 / 8; |
| 784 | case DEVSZ_128: ret = 128 / 8; |
| 785 | case DEVSZ_256: ret = 256 / 8; |
| 786 | case DEVSZ_512: ret = 512 / 8; |
Mike Frysinger | a086ee2 | 2008-04-25 02:04:05 +0800 | [diff] [blame] | 787 | } |
Michael Hennerich | 1e78042 | 2008-04-25 04:31:23 +0800 | [diff] [blame] | 788 | switch (ddrctl & 0x30000) { |
| 789 | case DEVWD_4: ret *= 2; |
| 790 | case DEVWD_8: ret *= 2; |
| 791 | case DEVWD_16: break; |
| 792 | } |
Mike Frysinger | b1b154e | 2008-07-26 18:02:05 +0800 | [diff] [blame] | 793 | if ((ddrctl & 0xc000) == 0x4000) |
| 794 | ret *= 2; |
Michael Hennerich | 1e78042 | 2008-04-25 04:31:23 +0800 | [diff] [blame] | 795 | return ret; |
Mike Frysinger | a086ee2 | 2008-04-25 02:04:05 +0800 | [diff] [blame] | 796 | #endif |
| 797 | BUG(); |
| 798 | } |
| 799 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 800 | void __init setup_arch(char **cmdline_p) |
| 801 | { |
Mike Frysinger | 9f8e895 | 2008-04-24 06:20:11 +0800 | [diff] [blame] | 802 | unsigned long sclk, cclk; |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 803 | |
Robin Getz | 3f871fe | 2009-07-06 14:53:19 +0000 | [diff] [blame] | 804 | enable_shadow_console(); |
| 805 | |
Robin Getz | bd854c0 | 2009-06-18 22:53:43 +0000 | [diff] [blame] | 806 | /* Check to make sure we are running on the right processor */ |
| 807 | if (unlikely(CPUID != bfin_cpuid())) |
| 808 | printk(KERN_ERR "ERROR: Not running on ADSP-%s: unknown CPUID 0x%04x Rev 0.%d\n", |
| 809 | CPU, bfin_cpuid(), bfin_revid()); |
| 810 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 811 | #ifdef CONFIG_DUMMY_CONSOLE |
| 812 | conswitchp = &dummy_con; |
| 813 | #endif |
| 814 | |
| 815 | #if defined(CONFIG_CMDLINE_BOOL) |
| 816 | strncpy(&command_line[0], CONFIG_CMDLINE, sizeof(command_line)); |
| 817 | command_line[sizeof(command_line) - 1] = 0; |
| 818 | #endif |
| 819 | |
| 820 | /* Keep a copy of command line */ |
| 821 | *cmdline_p = &command_line[0]; |
| 822 | memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE); |
| 823 | boot_command_line[COMMAND_LINE_SIZE - 1] = '\0'; |
| 824 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 825 | memset(&bfin_memmap, 0, sizeof(bfin_memmap)); |
| 826 | |
Robin Getz | bd854c0 | 2009-06-18 22:53:43 +0000 | [diff] [blame] | 827 | /* If the user does not specify things on the command line, use |
| 828 | * what the bootloader set things up as |
| 829 | */ |
| 830 | physical_mem_end = 0; |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 831 | parse_cmdline_early(&command_line[0]); |
| 832 | |
Robin Getz | bd854c0 | 2009-06-18 22:53:43 +0000 | [diff] [blame] | 833 | if (_ramend == 0) |
| 834 | _ramend = get_mem_size() * 1024 * 1024; |
| 835 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 836 | if (physical_mem_end == 0) |
| 837 | physical_mem_end = _ramend; |
| 838 | |
| 839 | memory_setup(); |
| 840 | |
Mike Frysinger | 7e64aca | 2008-08-06 17:17:10 +0800 | [diff] [blame] | 841 | /* Initialize Async memory banks */ |
| 842 | bfin_write_EBIU_AMBCTL0(AMBCTL0VAL); |
| 843 | bfin_write_EBIU_AMBCTL1(AMBCTL1VAL); |
| 844 | bfin_write_EBIU_AMGCTL(AMGCTLVAL); |
| 845 | #ifdef CONFIG_EBIU_MBSCTLVAL |
| 846 | bfin_write_EBIU_MBSCTL(CONFIG_EBIU_MBSCTLVAL); |
| 847 | bfin_write_EBIU_MODE(CONFIG_EBIU_MODEVAL); |
| 848 | bfin_write_EBIU_FCTL(CONFIG_EBIU_FCTLVAL); |
| 849 | #endif |
| 850 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 851 | cclk = get_cclk(); |
| 852 | sclk = get_sclk(); |
| 853 | |
Sonic Zhang | 7f3aee3 | 2009-05-07 10:04:19 +0000 | [diff] [blame] | 854 | if ((ANOMALY_05000273 || ANOMALY_05000274) && (cclk >> 1) < sclk) |
| 855 | panic("ANOMALY 05000273 or 05000274: CCLK must be >= 2*SCLK"); |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 856 | |
| 857 | #ifdef BF561_FAMILY |
| 858 | if (ANOMALY_05000266) { |
| 859 | bfin_read_IMDMA_D0_IRQ_STATUS(); |
| 860 | bfin_read_IMDMA_D1_IRQ_STATUS(); |
| 861 | } |
| 862 | #endif |
| 863 | printk(KERN_INFO "Hardware Trace "); |
| 864 | if (bfin_read_TBUFCTL() & 0x1) |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 865 | printk(KERN_CONT "Active "); |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 866 | else |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 867 | printk(KERN_CONT "Off "); |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 868 | if (bfin_read_TBUFCTL() & 0x2) |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 869 | printk(KERN_CONT "and Enabled\n"); |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 870 | else |
Joe Perches | ad361c9 | 2009-07-06 13:05:40 -0700 | [diff] [blame] | 871 | printk(KERN_CONT "and Disabled\n"); |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 872 | |
Robin Getz | 76e8fe4 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 873 | printk(KERN_INFO "Boot Mode: %i\n", bfin_read_SYSCR() & 0xF); |
| 874 | |
Mike Frysinger | ed1fb60 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 875 | /* Newer parts mirror SWRST bits in SYSCR */ |
| 876 | #if defined(CONFIG_BF53x) || defined(CONFIG_BF561) || \ |
| 877 | defined(CONFIG_BF538) || defined(CONFIG_BF539) |
Robin Getz | 7728ec3 | 2007-10-29 18:12:15 +0800 | [diff] [blame] | 878 | _bfin_swrst = bfin_read_SWRST(); |
Mike Frysinger | ed1fb60 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 879 | #else |
Sonic Zhang | 0de4adf | 2009-06-15 07:39:19 +0000 | [diff] [blame] | 880 | /* Clear boot mode field */ |
| 881 | _bfin_swrst = bfin_read_SYSCR() & ~0xf; |
Mike Frysinger | ed1fb60 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 882 | #endif |
Robin Getz | 7728ec3 | 2007-10-29 18:12:15 +0800 | [diff] [blame] | 883 | |
Robin Getz | 0c7a6b2 | 2008-10-08 16:27:12 +0800 | [diff] [blame] | 884 | #ifdef CONFIG_DEBUG_DOUBLEFAULT_PRINT |
| 885 | bfin_write_SWRST(_bfin_swrst & ~DOUBLE_FAULT); |
| 886 | #endif |
| 887 | #ifdef CONFIG_DEBUG_DOUBLEFAULT_RESET |
| 888 | bfin_write_SWRST(_bfin_swrst | DOUBLE_FAULT); |
| 889 | #endif |
Robin Getz | 2d20098 | 2008-07-26 19:41:40 +0800 | [diff] [blame] | 890 | |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 891 | #ifdef CONFIG_SMP |
| 892 | if (_bfin_swrst & SWRST_DBL_FAULT_A) { |
| 893 | #else |
Robin Getz | 0c7a6b2 | 2008-10-08 16:27:12 +0800 | [diff] [blame] | 894 | if (_bfin_swrst & RESET_DOUBLE) { |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 895 | #endif |
Robin Getz | 0c7a6b2 | 2008-10-08 16:27:12 +0800 | [diff] [blame] | 896 | printk(KERN_EMERG "Recovering from DOUBLE FAULT event\n"); |
| 897 | #ifdef CONFIG_DEBUG_DOUBLEFAULT |
| 898 | /* We assume the crashing kernel, and the current symbol table match */ |
| 899 | printk(KERN_EMERG " While handling exception (EXCAUSE = 0x%x) at %pF\n", |
| 900 | (int)init_saved_seqstat & SEQSTAT_EXCAUSE, init_saved_retx); |
| 901 | printk(KERN_NOTICE " DCPLB_FAULT_ADDR: %pF\n", init_saved_dcplb_fault_addr); |
| 902 | printk(KERN_NOTICE " ICPLB_FAULT_ADDR: %pF\n", init_saved_icplb_fault_addr); |
| 903 | #endif |
| 904 | printk(KERN_NOTICE " The instruction at %pF caused a double exception\n", |
| 905 | init_retx); |
| 906 | } else if (_bfin_swrst & RESET_WDOG) |
Robin Getz | 7728ec3 | 2007-10-29 18:12:15 +0800 | [diff] [blame] | 907 | printk(KERN_INFO "Recovering from Watchdog event\n"); |
| 908 | else if (_bfin_swrst & RESET_SOFTWARE) |
| 909 | printk(KERN_NOTICE "Reset caused by Software reset\n"); |
| 910 | |
Michael Hennerich | 972de7d | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 911 | printk(KERN_INFO "Blackfin support (C) 2004-2009 Analog Devices, Inc.\n"); |
Jie Zhang | de3025f | 2007-06-25 18:04:12 +0800 | [diff] [blame] | 912 | if (bfin_compiled_revid() == 0xffff) |
Robin Getz | 7a1a8cc | 2009-10-20 17:22:18 +0000 | [diff] [blame^] | 913 | printk(KERN_INFO "Compiled for ADSP-%s Rev any, running on 0.%d\n", CPU, bfin_revid()); |
Jie Zhang | de3025f | 2007-06-25 18:04:12 +0800 | [diff] [blame] | 914 | else if (bfin_compiled_revid() == -1) |
| 915 | printk(KERN_INFO "Compiled for ADSP-%s Rev none\n", CPU); |
| 916 | else |
| 917 | printk(KERN_INFO "Compiled for ADSP-%s Rev 0.%d\n", CPU, bfin_compiled_revid()); |
Robin Getz | e482cad | 2008-10-10 18:21:45 +0800 | [diff] [blame] | 918 | |
Robin Getz | bd854c0 | 2009-06-18 22:53:43 +0000 | [diff] [blame] | 919 | if (likely(CPUID == bfin_cpuid())) { |
Robin Getz | e482cad | 2008-10-10 18:21:45 +0800 | [diff] [blame] | 920 | if (bfin_revid() != bfin_compiled_revid()) { |
| 921 | if (bfin_compiled_revid() == -1) |
| 922 | printk(KERN_ERR "Warning: Compiled for Rev none, but running on Rev %d\n", |
| 923 | bfin_revid()); |
Robin Getz | 7419a32 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 924 | else if (bfin_compiled_revid() != 0xffff) { |
Robin Getz | e482cad | 2008-10-10 18:21:45 +0800 | [diff] [blame] | 925 | printk(KERN_ERR "Warning: Compiled for Rev %d, but running on Rev %d\n", |
| 926 | bfin_compiled_revid(), bfin_revid()); |
Robin Getz | 7419a32 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 927 | if (bfin_compiled_revid() > bfin_revid()) |
Mike Frysinger | d8804ad | 2009-04-29 06:26:46 +0000 | [diff] [blame] | 928 | panic("Error: you are missing anomaly workarounds for this rev"); |
Robin Getz | 7419a32 | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 929 | } |
Robin Getz | e482cad | 2008-10-10 18:21:45 +0800 | [diff] [blame] | 930 | } |
Mike Frysinger | da986b9 | 2008-10-28 13:58:15 +0800 | [diff] [blame] | 931 | if (bfin_revid() < CONFIG_BF_REV_MIN || bfin_revid() > CONFIG_BF_REV_MAX) |
Robin Getz | e482cad | 2008-10-10 18:21:45 +0800 | [diff] [blame] | 932 | printk(KERN_ERR "Warning: Unsupported Chip Revision ADSP-%s Rev 0.%d detected\n", |
| 933 | CPU, bfin_revid()); |
Jie Zhang | de3025f | 2007-06-25 18:04:12 +0800 | [diff] [blame] | 934 | } |
Mike Frysinger | 0c0497c | 2008-10-09 17:32:28 +0800 | [diff] [blame] | 935 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 936 | printk(KERN_INFO "Blackfin Linux support by http://blackfin.uclinux.org/\n"); |
| 937 | |
Mike Frysinger | b5c0e2e | 2007-09-12 17:31:59 +0800 | [diff] [blame] | 938 | printk(KERN_INFO "Processor Speed: %lu MHz core clock and %lu MHz System Clock\n", |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 939 | cclk / 1000000, sclk / 1000000); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 940 | |
Yi Li | 856783b | 2008-02-09 02:26:01 +0800 | [diff] [blame] | 941 | setup_bootmem_allocator(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 942 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 943 | paging_init(); |
| 944 | |
Bernd Schmidt | 7adfb58 | 2007-06-21 11:34:16 +0800 | [diff] [blame] | 945 | /* Copy atomic sequences to their fixed location, and sanity check that |
| 946 | these locations are the ones that we advertise to userspace. */ |
| 947 | memcpy((void *)FIXED_CODE_START, &fixed_code_start, |
| 948 | FIXED_CODE_END - FIXED_CODE_START); |
| 949 | BUG_ON((char *)&sigreturn_stub - (char *)&fixed_code_start |
| 950 | != SIGRETURN_STUB - FIXED_CODE_START); |
| 951 | BUG_ON((char *)&atomic_xchg32 - (char *)&fixed_code_start |
| 952 | != ATOMIC_XCHG32 - FIXED_CODE_START); |
| 953 | BUG_ON((char *)&atomic_cas32 - (char *)&fixed_code_start |
| 954 | != ATOMIC_CAS32 - FIXED_CODE_START); |
| 955 | BUG_ON((char *)&atomic_add32 - (char *)&fixed_code_start |
| 956 | != ATOMIC_ADD32 - FIXED_CODE_START); |
| 957 | BUG_ON((char *)&atomic_sub32 - (char *)&fixed_code_start |
| 958 | != ATOMIC_SUB32 - FIXED_CODE_START); |
| 959 | BUG_ON((char *)&atomic_ior32 - (char *)&fixed_code_start |
| 960 | != ATOMIC_IOR32 - FIXED_CODE_START); |
| 961 | BUG_ON((char *)&atomic_and32 - (char *)&fixed_code_start |
| 962 | != ATOMIC_AND32 - FIXED_CODE_START); |
| 963 | BUG_ON((char *)&atomic_xor32 - (char *)&fixed_code_start |
| 964 | != ATOMIC_XOR32 - FIXED_CODE_START); |
Robin Getz | 9f336a5 | 2007-10-29 18:23:28 +0800 | [diff] [blame] | 965 | BUG_ON((char *)&safe_user_instruction - (char *)&fixed_code_start |
| 966 | != SAFE_USER_INSTRUCTION - FIXED_CODE_START); |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 967 | |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 968 | #ifdef CONFIG_SMP |
| 969 | platform_init_cpus(); |
| 970 | #endif |
Bernd Schmidt | 8be80ed | 2007-07-25 14:44:49 +0800 | [diff] [blame] | 971 | init_exception_vectors(); |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 972 | bfin_cache_init(); /* Initialize caches for the boot CPU */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 973 | } |
| 974 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 975 | static int __init topology_init(void) |
| 976 | { |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 977 | unsigned int cpu; |
| 978 | /* Record CPU-private information for the boot processor. */ |
| 979 | bfin_setup_cpudata(0); |
Michael Hennerich | 6cda2e9 | 2008-02-02 15:10:51 +0800 | [diff] [blame] | 980 | |
| 981 | for_each_possible_cpu(cpu) { |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 982 | register_cpu(&per_cpu(cpu_data, cpu).cpu, cpu); |
Michael Hennerich | 6cda2e9 | 2008-02-02 15:10:51 +0800 | [diff] [blame] | 983 | } |
| 984 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 985 | return 0; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 986 | } |
| 987 | |
| 988 | subsys_initcall(topology_init); |
| 989 | |
Mike Frysinger | 7f1e2f9 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 990 | /* Get the input clock frequency */ |
| 991 | static u_long cached_clkin_hz = CONFIG_CLKIN_HZ; |
| 992 | static u_long get_clkin_hz(void) |
| 993 | { |
| 994 | return cached_clkin_hz; |
| 995 | } |
| 996 | static int __init early_init_clkin_hz(char *buf) |
| 997 | { |
| 998 | cached_clkin_hz = simple_strtoul(buf, NULL, 0); |
Mike Frysinger | 508808c | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 999 | #ifdef BFIN_KERNEL_CLOCK |
| 1000 | if (cached_clkin_hz != CONFIG_CLKIN_HZ) |
| 1001 | panic("cannot change clkin_hz when reprogramming clocks"); |
| 1002 | #endif |
Mike Frysinger | 7f1e2f9 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 1003 | return 1; |
| 1004 | } |
| 1005 | early_param("clkin_hz=", early_init_clkin_hz); |
| 1006 | |
Mike Frysinger | 3a2521f | 2008-07-26 18:52:56 +0800 | [diff] [blame] | 1007 | /* Get the voltage input multiplier */ |
Mike Frysinger | 52a0781 | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1008 | static u_long get_vco(void) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1009 | { |
Mike Frysinger | e32f55d | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1010 | static u_long cached_vco; |
| 1011 | u_long msel, pll_ctl; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1012 | |
Mike Frysinger | e32f55d | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1013 | /* The assumption here is that VCO never changes at runtime. |
| 1014 | * If, someday, we support that, then we'll have to change this. |
| 1015 | */ |
| 1016 | if (cached_vco) |
Mike Frysinger | 3a2521f | 2008-07-26 18:52:56 +0800 | [diff] [blame] | 1017 | return cached_vco; |
Mike Frysinger | 3a2521f | 2008-07-26 18:52:56 +0800 | [diff] [blame] | 1018 | |
Mike Frysinger | e32f55d | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1019 | pll_ctl = bfin_read_PLL_CTL(); |
Mike Frysinger | 3a2521f | 2008-07-26 18:52:56 +0800 | [diff] [blame] | 1020 | msel = (pll_ctl >> 9) & 0x3F; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1021 | if (0 == msel) |
| 1022 | msel = 64; |
| 1023 | |
Mike Frysinger | 7f1e2f9 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 1024 | cached_vco = get_clkin_hz(); |
Mike Frysinger | 3a2521f | 2008-07-26 18:52:56 +0800 | [diff] [blame] | 1025 | cached_vco >>= (1 & pll_ctl); /* DF bit */ |
| 1026 | cached_vco *= msel; |
| 1027 | return cached_vco; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1028 | } |
| 1029 | |
Mike Frysinger | 2f6cf7b | 2007-10-21 22:59:49 +0800 | [diff] [blame] | 1030 | /* Get the Core clock */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1031 | u_long get_cclk(void) |
| 1032 | { |
Mike Frysinger | e32f55d | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1033 | static u_long cached_cclk_pll_div, cached_cclk; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1034 | u_long csel, ssel; |
Mike Frysinger | 3a2521f | 2008-07-26 18:52:56 +0800 | [diff] [blame] | 1035 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1036 | if (bfin_read_PLL_STAT() & 0x1) |
Mike Frysinger | 7f1e2f9 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 1037 | return get_clkin_hz(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1038 | |
| 1039 | ssel = bfin_read_PLL_DIV(); |
Mike Frysinger | 3a2521f | 2008-07-26 18:52:56 +0800 | [diff] [blame] | 1040 | if (ssel == cached_cclk_pll_div) |
| 1041 | return cached_cclk; |
| 1042 | else |
| 1043 | cached_cclk_pll_div = ssel; |
| 1044 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1045 | csel = ((ssel >> 4) & 0x03); |
| 1046 | ssel &= 0xf; |
| 1047 | if (ssel && ssel < (1 << csel)) /* SCLK > CCLK */ |
Mike Frysinger | 3a2521f | 2008-07-26 18:52:56 +0800 | [diff] [blame] | 1048 | cached_cclk = get_vco() / ssel; |
| 1049 | else |
| 1050 | cached_cclk = get_vco() >> csel; |
| 1051 | return cached_cclk; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1052 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1053 | EXPORT_SYMBOL(get_cclk); |
| 1054 | |
| 1055 | /* Get the System clock */ |
| 1056 | u_long get_sclk(void) |
| 1057 | { |
Mike Frysinger | e32f55d | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1058 | static u_long cached_sclk; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1059 | u_long ssel; |
| 1060 | |
Mike Frysinger | e32f55d | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1061 | /* The assumption here is that SCLK never changes at runtime. |
| 1062 | * If, someday, we support that, then we'll have to change this. |
| 1063 | */ |
| 1064 | if (cached_sclk) |
| 1065 | return cached_sclk; |
| 1066 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1067 | if (bfin_read_PLL_STAT() & 0x1) |
Mike Frysinger | 7f1e2f9 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 1068 | return get_clkin_hz(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1069 | |
Mike Frysinger | e32f55d | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1070 | ssel = bfin_read_PLL_DIV() & 0xf; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1071 | if (0 == ssel) { |
| 1072 | printk(KERN_WARNING "Invalid System Clock\n"); |
| 1073 | ssel = 1; |
| 1074 | } |
| 1075 | |
Mike Frysinger | 3a2521f | 2008-07-26 18:52:56 +0800 | [diff] [blame] | 1076 | cached_sclk = get_vco() / ssel; |
| 1077 | return cached_sclk; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1078 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1079 | EXPORT_SYMBOL(get_sclk); |
| 1080 | |
Mike Frysinger | 2f6cf7b | 2007-10-21 22:59:49 +0800 | [diff] [blame] | 1081 | unsigned long sclk_to_usecs(unsigned long sclk) |
| 1082 | { |
Mike Frysinger | 1754a5d | 2007-11-23 11:28:11 +0800 | [diff] [blame] | 1083 | u64 tmp = USEC_PER_SEC * (u64)sclk; |
| 1084 | do_div(tmp, get_sclk()); |
| 1085 | return tmp; |
Mike Frysinger | 2f6cf7b | 2007-10-21 22:59:49 +0800 | [diff] [blame] | 1086 | } |
| 1087 | EXPORT_SYMBOL(sclk_to_usecs); |
| 1088 | |
| 1089 | unsigned long usecs_to_sclk(unsigned long usecs) |
| 1090 | { |
Mike Frysinger | 1754a5d | 2007-11-23 11:28:11 +0800 | [diff] [blame] | 1091 | u64 tmp = get_sclk() * (u64)usecs; |
| 1092 | do_div(tmp, USEC_PER_SEC); |
| 1093 | return tmp; |
Mike Frysinger | 2f6cf7b | 2007-10-21 22:59:49 +0800 | [diff] [blame] | 1094 | } |
| 1095 | EXPORT_SYMBOL(usecs_to_sclk); |
| 1096 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1097 | /* |
| 1098 | * Get CPU information for use by the procfs. |
| 1099 | */ |
| 1100 | static int show_cpuinfo(struct seq_file *m, void *v) |
| 1101 | { |
Mike Frysinger | 066954a | 2007-10-21 22:36:06 +0800 | [diff] [blame] | 1102 | char *cpu, *mmu, *fpu, *vendor, *cache; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1103 | uint32_t revid; |
Mike Frysinger | 275123e | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1104 | int cpu_num = *(unsigned int *)v; |
Michael Hennerich | a5f0717 | 2008-11-18 18:04:31 +0800 | [diff] [blame] | 1105 | u_long sclk, cclk; |
Robin Getz | 9de3a0b | 2008-07-26 19:39:19 +0800 | [diff] [blame] | 1106 | u_int icache_size = BFIN_ICACHESIZE / 1024, dcache_size = 0, dsup_banks = 0; |
Mike Frysinger | 275123e | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1107 | struct blackfin_cpudata *cpudata = &per_cpu(cpu_data, cpu_num); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1108 | |
| 1109 | cpu = CPU; |
| 1110 | mmu = "none"; |
| 1111 | fpu = "none"; |
| 1112 | revid = bfin_revid(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1113 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1114 | sclk = get_sclk(); |
Michael Hennerich | a5f0717 | 2008-11-18 18:04:31 +0800 | [diff] [blame] | 1115 | cclk = get_cclk(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1116 | |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1117 | switch (bfin_read_CHIPID() & CHIPID_MANUFACTURE) { |
Mike Frysinger | 066954a | 2007-10-21 22:36:06 +0800 | [diff] [blame] | 1118 | case 0xca: |
| 1119 | vendor = "Analog Devices"; |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1120 | break; |
| 1121 | default: |
Mike Frysinger | 066954a | 2007-10-21 22:36:06 +0800 | [diff] [blame] | 1122 | vendor = "unknown"; |
| 1123 | break; |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1124 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1125 | |
Mike Frysinger | 275123e | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1126 | seq_printf(m, "processor\t: %d\n" "vendor_id\t: %s\n", cpu_num, vendor); |
Robin Getz | e482cad | 2008-10-10 18:21:45 +0800 | [diff] [blame] | 1127 | |
| 1128 | if (CPUID == bfin_cpuid()) |
| 1129 | seq_printf(m, "cpu family\t: 0x%04x\n", CPUID); |
| 1130 | else |
| 1131 | seq_printf(m, "cpu family\t: Compiled for:0x%04x, running on:0x%04x\n", |
| 1132 | CPUID, bfin_cpuid()); |
| 1133 | |
| 1134 | seq_printf(m, "model name\t: ADSP-%s %lu(MHz CCLK) %lu(MHz SCLK) (%s)\n" |
Robin Getz | 2466ac6 | 2009-06-08 17:52:27 +0000 | [diff] [blame] | 1135 | "stepping\t: %d ", |
Michael Hennerich | a5f0717 | 2008-11-18 18:04:31 +0800 | [diff] [blame] | 1136 | cpu, cclk/1000000, sclk/1000000, |
Robin Getz | 253bcf4 | 2008-04-24 05:57:13 +0800 | [diff] [blame] | 1137 | #ifdef CONFIG_MPU |
| 1138 | "mpu on", |
| 1139 | #else |
| 1140 | "mpu off", |
| 1141 | #endif |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1142 | revid); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1143 | |
Robin Getz | 2466ac6 | 2009-06-08 17:52:27 +0000 | [diff] [blame] | 1144 | if (bfin_revid() != bfin_compiled_revid()) { |
| 1145 | if (bfin_compiled_revid() == -1) |
| 1146 | seq_printf(m, "(Compiled for Rev none)"); |
| 1147 | else if (bfin_compiled_revid() == 0xffff) |
| 1148 | seq_printf(m, "(Compiled for Rev any)"); |
| 1149 | else |
| 1150 | seq_printf(m, "(Compiled for Rev %d)", bfin_compiled_revid()); |
| 1151 | } |
| 1152 | |
| 1153 | seq_printf(m, "\ncpu MHz\t\t: %lu.%03lu/%lu.%03lu\n", |
Michael Hennerich | a5f0717 | 2008-11-18 18:04:31 +0800 | [diff] [blame] | 1154 | cclk/1000000, cclk%1000000, |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1155 | sclk/1000000, sclk%1000000); |
| 1156 | seq_printf(m, "bogomips\t: %lu.%02lu\n" |
| 1157 | "Calibration\t: %lu loops\n", |
Michael Hennerich | c70c754 | 2009-07-09 09:58:52 +0000 | [diff] [blame] | 1158 | (loops_per_jiffy * HZ) / 500000, |
| 1159 | ((loops_per_jiffy * HZ) / 5000) % 100, |
| 1160 | (loops_per_jiffy * HZ)); |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1161 | |
| 1162 | /* Check Cache configutation */ |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1163 | switch (cpudata->dmemctl & (1 << DMC0_P | 1 << DMC1_P)) { |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 1164 | case ACACHE_BSRAM: |
Mike Frysinger | 066954a | 2007-10-21 22:36:06 +0800 | [diff] [blame] | 1165 | cache = "dbank-A/B\t: cache/sram"; |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 1166 | dcache_size = 16; |
| 1167 | dsup_banks = 1; |
| 1168 | break; |
| 1169 | case ACACHE_BCACHE: |
Mike Frysinger | 066954a | 2007-10-21 22:36:06 +0800 | [diff] [blame] | 1170 | cache = "dbank-A/B\t: cache/cache"; |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 1171 | dcache_size = 32; |
| 1172 | dsup_banks = 2; |
| 1173 | break; |
| 1174 | case ASRAM_BSRAM: |
Mike Frysinger | 066954a | 2007-10-21 22:36:06 +0800 | [diff] [blame] | 1175 | cache = "dbank-A/B\t: sram/sram"; |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 1176 | dcache_size = 0; |
| 1177 | dsup_banks = 0; |
| 1178 | break; |
| 1179 | default: |
Mike Frysinger | 066954a | 2007-10-21 22:36:06 +0800 | [diff] [blame] | 1180 | cache = "unknown"; |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1181 | dcache_size = 0; |
| 1182 | dsup_banks = 0; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1183 | break; |
| 1184 | } |
| 1185 | |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1186 | /* Is it turned on? */ |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1187 | if ((cpudata->dmemctl & (ENDCPLB | DMC_ENABLE)) != (ENDCPLB | DMC_ENABLE)) |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1188 | dcache_size = 0; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1189 | |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1190 | if ((cpudata->imemctl & (IMC | ENICPLB)) != (IMC | ENICPLB)) |
Robin Getz | 9de3a0b | 2008-07-26 19:39:19 +0800 | [diff] [blame] | 1191 | icache_size = 0; |
| 1192 | |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1193 | seq_printf(m, "cache size\t: %d KB(L1 icache) " |
Jie Zhang | 41ba653 | 2009-06-16 09:48:33 +0000 | [diff] [blame] | 1194 | "%d KB(L1 dcache) %d KB(L2 cache)\n", |
| 1195 | icache_size, dcache_size, 0); |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1196 | seq_printf(m, "%s\n", cache); |
Jie Zhang | 41ba653 | 2009-06-16 09:48:33 +0000 | [diff] [blame] | 1197 | seq_printf(m, "external memory\t: " |
| 1198 | #if defined(CONFIG_BFIN_EXTMEM_ICACHEABLE) |
| 1199 | "cacheable" |
| 1200 | #else |
| 1201 | "uncacheable" |
| 1202 | #endif |
| 1203 | " in instruction cache\n"); |
| 1204 | seq_printf(m, "external memory\t: " |
| 1205 | #if defined(CONFIG_BFIN_EXTMEM_WRITEBACK) |
| 1206 | "cacheable (write-back)" |
| 1207 | #elif defined(CONFIG_BFIN_EXTMEM_WRITETHROUGH) |
| 1208 | "cacheable (write-through)" |
| 1209 | #else |
| 1210 | "uncacheable" |
| 1211 | #endif |
| 1212 | " in data cache\n"); |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1213 | |
Robin Getz | 9de3a0b | 2008-07-26 19:39:19 +0800 | [diff] [blame] | 1214 | if (icache_size) |
| 1215 | seq_printf(m, "icache setup\t: %d Sub-banks/%d Ways, %d Lines/Way\n", |
| 1216 | BFIN_ISUBBANKS, BFIN_IWAYS, BFIN_ILINES); |
| 1217 | else |
| 1218 | seq_printf(m, "icache setup\t: off\n"); |
| 1219 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1220 | seq_printf(m, |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1221 | "dcache setup\t: %d Super-banks/%d Sub-banks/%d Ways, %d Lines/Way\n", |
Robin Getz | 3bebca2 | 2007-10-10 23:55:26 +0800 | [diff] [blame] | 1222 | dsup_banks, BFIN_DSUBBANKS, BFIN_DWAYS, |
| 1223 | BFIN_DLINES); |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1224 | #ifdef __ARCH_SYNC_CORE_DCACHE |
Mike Frysinger | 275123e | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1225 | seq_printf(m, "SMP Dcache Flushes\t: %lu\n\n", cpudata->dcache_invld_count); |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1226 | #endif |
Sonic Zhang | 47e9ded | 2009-06-10 08:57:08 +0000 | [diff] [blame] | 1227 | #ifdef __ARCH_SYNC_CORE_ICACHE |
| 1228 | seq_printf(m, "SMP Icache Flushes\t: %lu\n\n", cpudata->icache_invld_count); |
| 1229 | #endif |
Mike Frysinger | 275123e | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1230 | |
| 1231 | if (cpu_num != num_possible_cpus() - 1) |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1232 | return 0; |
| 1233 | |
Jie Zhang | 41ba653 | 2009-06-16 09:48:33 +0000 | [diff] [blame] | 1234 | if (L2_LENGTH) { |
Mike Frysinger | 275123e | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1235 | seq_printf(m, "L2 SRAM\t\t: %dKB\n", L2_LENGTH/0x400); |
Jie Zhang | 41ba653 | 2009-06-16 09:48:33 +0000 | [diff] [blame] | 1236 | seq_printf(m, "L2 SRAM\t\t: " |
| 1237 | #if defined(CONFIG_BFIN_L2_ICACHEABLE) |
| 1238 | "cacheable" |
| 1239 | #else |
| 1240 | "uncacheable" |
| 1241 | #endif |
| 1242 | " in instruction cache\n"); |
| 1243 | seq_printf(m, "L2 SRAM\t\t: " |
| 1244 | #if defined(CONFIG_BFIN_L2_WRITEBACK) |
| 1245 | "cacheable (write-back)" |
| 1246 | #elif defined(CONFIG_BFIN_L2_WRITETHROUGH) |
| 1247 | "cacheable (write-through)" |
| 1248 | #else |
| 1249 | "uncacheable" |
| 1250 | #endif |
| 1251 | " in data cache\n"); |
| 1252 | } |
Mike Frysinger | 066954a | 2007-10-21 22:36:06 +0800 | [diff] [blame] | 1253 | seq_printf(m, "board name\t: %s\n", bfin_board_name); |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1254 | seq_printf(m, "board memory\t: %ld kB (0x%p -> 0x%p)\n", |
| 1255 | physical_mem_end >> 10, (void *)0, (void *)physical_mem_end); |
| 1256 | seq_printf(m, "kernel memory\t: %d kB (0x%p -> 0x%p)\n", |
| 1257 | ((int)memory_end - (int)_stext) >> 10, |
| 1258 | _stext, |
| 1259 | (void *)memory_end); |
Graf Yang | 8f65873 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1260 | seq_printf(m, "\n"); |
Robin Getz | 73b0c0b | 2007-10-21 17:03:31 +0800 | [diff] [blame] | 1261 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1262 | return 0; |
| 1263 | } |
| 1264 | |
| 1265 | static void *c_start(struct seq_file *m, loff_t *pos) |
| 1266 | { |
Graf Yang | 55f2fea | 2008-10-09 15:37:47 +0800 | [diff] [blame] | 1267 | if (*pos == 0) |
| 1268 | *pos = first_cpu(cpu_online_map); |
| 1269 | if (*pos >= num_online_cpus()) |
| 1270 | return NULL; |
| 1271 | |
| 1272 | return pos; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1273 | } |
| 1274 | |
| 1275 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 1276 | { |
Graf Yang | 55f2fea | 2008-10-09 15:37:47 +0800 | [diff] [blame] | 1277 | *pos = next_cpu(*pos, cpu_online_map); |
| 1278 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1279 | return c_start(m, pos); |
| 1280 | } |
| 1281 | |
| 1282 | static void c_stop(struct seq_file *m, void *v) |
| 1283 | { |
| 1284 | } |
| 1285 | |
Jan Engelhardt | 03a4482 | 2008-02-08 04:21:19 -0800 | [diff] [blame] | 1286 | const struct seq_operations cpuinfo_op = { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1287 | .start = c_start, |
| 1288 | .next = c_next, |
| 1289 | .stop = c_stop, |
| 1290 | .show = show_cpuinfo, |
| 1291 | }; |
| 1292 | |
Mike Frysinger | 5e10b4a | 2007-06-11 16:44:09 +0800 | [diff] [blame] | 1293 | void __init cmdline_init(const char *r0) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1294 | { |
Robin Getz | 837ec2d | 2009-07-07 20:17:09 +0000 | [diff] [blame] | 1295 | early_shadow_stamp(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1296 | if (r0) |
Mike Frysinger | 52a0781 | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1297 | strncpy(command_line, r0, COMMAND_LINE_SIZE); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1298 | } |