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