67 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Copyright (C) 2020 Marvell International Ltd.
 | |
|  */
 | |
| 
 | |
| #include <asm/global_data.h>
 | |
| #include <linux/bitfield.h>
 | |
| #include <linux/bitops.h>
 | |
| #include <linux/compat.h>
 | |
| #include <linux/io.h>
 | |
| #include <mach/clock.h>
 | |
| #include <mach/cavm-reg.h>
 | |
| 
 | |
| DECLARE_GLOBAL_DATA_PTR;
 | |
| 
 | |
| static int get_clocks(void)
 | |
| {
 | |
| 	const u64 ref_clock = PLL_REF_CLK;
 | |
| 	void __iomem *rst_boot;
 | |
| 	u64 val;
 | |
| 
 | |
| 	rst_boot = ioremap(CAVM_RST_BOOT, 0);
 | |
| 	val = ioread64(rst_boot);
 | |
| 	gd->cpu_clk = ref_clock * FIELD_GET(RST_BOOT_C_MUL, val);
 | |
| 	gd->bus_clk = ref_clock * FIELD_GET(RST_BOOT_PNR_MUL, val);
 | |
| 
 | |
| 	debug("%s: cpu: %lu, bus: %lu\n", __func__, gd->cpu_clk, gd->bus_clk);
 | |
| 
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| /* Early mach init code run from flash */
 | |
| int mach_cpu_init(void)
 | |
| {
 | |
| 	void __iomem *mio_boot_reg_cfg0;
 | |
| 
 | |
| 	/* Remap boot-bus 0x1fc0.0000 -> 0x1f40.0000 */
 | |
| 	/* ToDo: Move this to an early running bus (bootbus) DM driver */
 | |
| 	mio_boot_reg_cfg0 = ioremap(CAVM_MIO_BOOT_REG_CFG0, 0);
 | |
| 	clrsetbits_be64(mio_boot_reg_cfg0, 0xffff, 0x1f40);
 | |
| 
 | |
| 	/* Get clocks and store them in GD */
 | |
| 	get_clocks();
 | |
| 
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * Returns number of cores
 | |
|  *
 | |
|  * @return	number of CPU cores for the specified node
 | |
|  */
 | |
| static int cavm_octeon_num_cores(void)
 | |
| {
 | |
| 	void __iomem *ciu_fuse;
 | |
| 
 | |
| 	ciu_fuse = ioremap(CAVM_CIU_FUSE, 0);
 | |
| 	return fls64(ioread64(ciu_fuse) & 0xffffffffffff);
 | |
| }
 | |
| 
 | |
| int print_cpuinfo(void)
 | |
| {
 | |
| 	printf("SoC:   Octeon CN73xx (%d cores)\n", cavm_octeon_num_cores());
 | |
| 
 | |
| 	return 0;
 | |
| }
 |