1 // SPDX-License-Identifier: GPL-2.0-only
3 * Port on Texas Instruments TMS320C6x architecture
5 * Copyright (C) 2004, 2006, 2009, 2010, 2011 Texas Instruments Incorporated
6 * Author: Aurelien Jacquiot (aurelien.jacquiot@jaluna.com)
8 #include <linux/dma-mapping.h>
9 #include <linux/memblock.h>
10 #include <linux/seq_file.h>
11 #include <linux/clkdev.h>
12 #include <linux/initrd.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/of_fdt.h>
16 #include <linux/string.h>
17 #include <linux/errno.h>
18 #include <linux/cache.h>
19 #include <linux/delay.h>
20 #include <linux/sched.h>
21 #include <linux/clk.h>
22 #include <linux/cpu.h>
25 #include <linux/console.h>
26 #include <linux/screen_info.h>
28 #include <asm/sections.h>
29 #include <asm/div64.h>
30 #include <asm/setup.h>
32 #include <asm/clock.h>
34 #include <asm/special_insns.h>
36 static const char *c6x_soc_name
;
38 struct screen_info screen_info
;
41 EXPORT_SYMBOL_GPL(c6x_num_cores
);
43 unsigned int c6x_silicon_rev
;
44 EXPORT_SYMBOL_GPL(c6x_silicon_rev
);
47 * Device status register. This holds information
48 * about device configuration needed by some drivers.
50 unsigned int c6x_devstat
;
51 EXPORT_SYMBOL_GPL(c6x_devstat
);
54 * Some SoCs have fuse registers holding a unique MAC
55 * address. This is parsed out of the device tree with
56 * the resulting MAC being held here.
58 unsigned char c6x_fuse_mac
[6];
60 unsigned long memory_start
;
61 unsigned long memory_end
;
62 EXPORT_SYMBOL(memory_end
);
64 unsigned long ram_start
;
65 unsigned long ram_end
;
67 /* Uncached memory for DMA consistent use (memdma=) */
68 static unsigned long dma_start __initdata
;
69 static unsigned long dma_size __initdata
;
73 const char *cpu_voltage
;
81 static DEFINE_PER_CPU(struct cpuinfo_c6x
, cpu_data
);
83 unsigned int ticks_per_ns_scaled
;
84 EXPORT_SYMBOL(ticks_per_ns_scaled
);
86 unsigned int c6x_core_freq
;
88 static void __init
get_cpuinfo(void)
90 unsigned cpu_id
, rev_id
, csr
;
91 struct clk
*coreclk
= clk_get_sys(NULL
, "core");
92 unsigned long core_khz
;
94 struct cpuinfo_c6x
*p
;
95 struct device_node
*node
;
97 p
= &per_cpu(cpu_data
, smp_processor_id());
100 c6x_core_freq
= clk_get_rate(coreclk
);
103 "Cannot find core clock frequency. Using 700MHz\n");
104 c6x_core_freq
= 700000000;
107 core_khz
= c6x_core_freq
/ 1000;
109 tmp
= (uint64_t)core_khz
<< C6X_NDELAY_SCALE
;
110 do_div(tmp
, 1000000);
111 ticks_per_ns_scaled
= tmp
;
115 rev_id
= (csr
>> 16) & 0xff;
119 p
->cpu_voltage
= "unknown";
123 p
->cpu_name
= "C67x";
127 p
->cpu_name
= "C62x";
130 p
->cpu_name
= "C64x";
133 p
->cpu_name
= "C64x";
136 p
->cpu_name
= "C64x+";
137 p
->cpu_voltage
= "1.2";
140 p
->cpu_name
= "C66X";
141 p
->cpu_voltage
= "1.2";
144 p
->cpu_name
= "unknown";
152 p
->cpu_rev
= "DM640/DM641/DM642/DM643";
153 p
->cpu_voltage
= "1.2 - 1.4";
155 p
->cpu_rev
= "C6201";
156 p
->cpu_voltage
= "2.5";
160 p
->cpu_rev
= "C6201B/C6202/C6211";
161 p
->cpu_voltage
= "1.8";
164 p
->cpu_rev
= "C6202B/C6203/C6204/C6205";
165 p
->cpu_voltage
= "1.5";
168 p
->cpu_rev
= "C6701 revision 0 (early CPU)";
169 p
->cpu_voltage
= "1.8";
172 p
->cpu_rev
= "C6701/C6711/C6712";
173 p
->cpu_voltage
= "1.8";
177 p
->cpu_voltage
= "1.5";
180 p
->cpu_rev
= "unknown";
183 p
->cpu_rev
= p
->__cpu_rev
;
184 snprintf(p
->__cpu_rev
, sizeof(p
->__cpu_rev
), "0x%x", cpu_id
);
187 p
->core_id
= get_coreid();
189 for_each_of_cpu_node(node
)
192 node
= of_find_node_by_name(NULL
, "soc");
194 if (of_property_read_string(node
, "model", &c6x_soc_name
))
195 c6x_soc_name
= "unknown";
198 c6x_soc_name
= "unknown";
200 printk(KERN_INFO
"CPU%d: %s rev %s, %s volts, %uMHz\n",
201 p
->core_id
, p
->cpu_name
, p
->cpu_rev
,
202 p
->cpu_voltage
, c6x_core_freq
/ 1000000);
206 * Early parsing of the command line
208 static u32 mem_size __initdata
;
210 /* "mem=" parsing. */
211 static int __init
early_mem(char *p
)
216 mem_size
= memparse(p
, &p
);
217 /* don't remove all of memory when handling "mem={invalid}" */
223 early_param("mem", early_mem
);
225 /* "memdma=<size>[@<address>]" parsing. */
226 static int __init
early_memdma(char *p
)
231 dma_size
= memparse(p
, &p
);
233 dma_start
= memparse(p
, &p
);
237 early_param("memdma", early_memdma
);
239 int __init
c6x_add_memory(phys_addr_t start
, unsigned long size
)
241 static int ram_found __initdata
;
243 /* We only handle one bank (the one with PAGE_OFFSET) for now */
247 if (start
> PAGE_OFFSET
|| PAGE_OFFSET
>= (start
+ size
))
251 ram_end
= start
+ size
;
258 * Do early machine setup and device tree parsing. This is called very
259 * early on the boot process.
261 notrace
void __init
machine_init(unsigned long dt_ptr
)
263 void *dtb
= __va(dt_ptr
);
264 void *fdt
= __dtb_start
;
266 /* interrupts must be masked */
270 * Set the Interrupt Service Table (IST) to the beginning of the
273 set_ist(_vectors_start
);
276 * dtb is passed in from bootloader.
277 * fdt is linked in blob.
279 if (dtb
&& dtb
!= fdt
)
282 /* Do some early initialization based on the flat device tree */
283 early_init_dt_scan(fdt
);
288 void __init
setup_arch(char **cmdline_p
)
290 struct memblock_region
*reg
;
292 printk(KERN_INFO
"Initializing kernel\n");
294 /* Initialize command line */
295 *cmdline_p
= boot_command_line
;
297 memory_end
= ram_end
;
298 memory_end
&= ~(PAGE_SIZE
- 1);
300 if (mem_size
&& (PAGE_OFFSET
+ PAGE_ALIGN(mem_size
)) < memory_end
)
301 memory_end
= PAGE_OFFSET
+ PAGE_ALIGN(mem_size
);
303 /* add block that this kernel can use */
304 memblock_add(PAGE_OFFSET
, memory_end
- PAGE_OFFSET
);
306 /* reserve kernel text/data/bss */
307 memblock_reserve(PAGE_OFFSET
,
308 PAGE_ALIGN((unsigned long)&_end
- PAGE_OFFSET
));
311 /* align to cacheability granularity */
312 dma_size
= CACHE_REGION_END(dma_size
);
315 dma_start
= memory_end
- dma_size
;
317 /* align to cacheability granularity */
318 dma_start
= CACHE_REGION_START(dma_start
);
320 /* reserve DMA memory taken from kernel memory */
321 if (memblock_is_region_memory(dma_start
, dma_size
))
322 memblock_reserve(dma_start
, dma_size
);
325 memory_start
= PAGE_ALIGN((unsigned int) &_end
);
327 printk(KERN_INFO
"Memory Start=%08lx, Memory End=%08lx\n",
328 memory_start
, memory_end
);
330 #ifdef CONFIG_BLK_DEV_INITRD
332 * Reserve initrd memory if in kernel memory.
334 if (initrd_start
< initrd_end
)
335 if (memblock_is_region_memory(initrd_start
,
336 initrd_end
- initrd_start
))
337 memblock_reserve(initrd_start
,
338 initrd_end
- initrd_start
);
341 init_mm
.start_code
= (unsigned long) &_stext
;
342 init_mm
.end_code
= (unsigned long) &_etext
;
343 init_mm
.end_data
= memory_start
;
344 init_mm
.brk
= memory_start
;
346 unflatten_and_copy_device_tree();
350 /* Set the whole external memory as non-cacheable */
351 disable_caching(ram_start
, ram_end
- 1);
353 /* Set caching of external RAM used by Linux */
354 for_each_memblock(memory
, reg
)
355 enable_caching(CACHE_REGION_START(reg
->base
),
356 CACHE_REGION_START(reg
->base
+ reg
->size
- 1));
358 #ifdef CONFIG_BLK_DEV_INITRD
360 * Enable caching for initrd which falls outside kernel memory.
362 if (initrd_start
< initrd_end
) {
363 if (!memblock_is_region_memory(initrd_start
,
364 initrd_end
- initrd_start
))
365 enable_caching(CACHE_REGION_START(initrd_start
),
366 CACHE_REGION_START(initrd_end
- 1));
371 * Disable caching for dma coherent memory taken from kernel memory.
373 if (dma_size
&& memblock_is_region_memory(dma_start
, dma_size
))
374 disable_caching(dma_start
,
375 CACHE_REGION_START(dma_start
+ dma_size
- 1));
377 /* Initialize the coherent memory allocator */
378 coherent_mem_init(dma_start
, dma_size
);
380 max_low_pfn
= PFN_DOWN(memory_end
);
381 min_low_pfn
= PFN_UP(memory_start
);
382 max_pfn
= max_low_pfn
;
383 max_mapnr
= max_low_pfn
- min_low_pfn
;
385 /* Get kmalloc into gear */
389 * Probe for Device State Configuration Registers.
390 * We have to do this early in case timer needs to be enabled
395 /* We do this early for timer and core clock frequency */
401 #if defined(CONFIG_VT) && defined(CONFIG_DUMMY_CONSOLE)
402 conswitchp
= &dummy_con
;
406 #define cpu_to_ptr(n) ((void *)((long)(n)+1))
407 #define ptr_to_cpu(p) ((long)(p) - 1)
409 static int show_cpuinfo(struct seq_file
*m
, void *v
)
411 int n
= ptr_to_cpu(v
);
412 struct cpuinfo_c6x
*p
= &per_cpu(cpu_data
, n
);
417 "soc revision\t: 0x%x\n"
419 c6x_soc_name
, c6x_silicon_rev
, c6x_num_cores
);
426 "core revision\t: %s\n"
427 "core voltage\t: %s\n"
432 "bogomips\t: %lu.%02lu\n\n",
434 p
->cpu_name
, p
->cpu_rev
, p
->cpu_voltage
,
435 p
->core_id
, p
->mmu
, p
->fpu
,
436 (c6x_core_freq
+ 500000) / 1000000,
437 (loops_per_jiffy
/(500000/HZ
)),
438 (loops_per_jiffy
/(5000/HZ
))%100);
443 static void *c_start(struct seq_file
*m
, loff_t
*pos
)
445 return *pos
< nr_cpu_ids
? cpu_to_ptr(*pos
) : NULL
;
447 static void *c_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
452 static void c_stop(struct seq_file
*m
, void *v
)
456 const struct seq_operations cpuinfo_op
= {
463 static struct cpu cpu_devices
[NR_CPUS
];
465 static int __init
topology_init(void)
469 for_each_present_cpu(i
)
470 register_cpu(&cpu_devices
[i
], i
);
475 subsys_initcall(topology_init
);