mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
0dc4ab9c43
This patch adds very basic support for the Octeon III SoCs. Only CFI parallel NOR flash and UART is supported for now. Please note that the basic Octeon port does not include the DDR3/4 initialization yet. This will be added in some follow-up patches later. To still use U-Boot on with this port, the L2 cache (4MiB on Octeon III CN73xx) is used as RAM. This way, U-Boot can boot to the prompt on such boards. Signed-off-by: Aaron Williams <awilliams@marvell.com> Signed-off-by: Stefan Roese <sr@denx.de>
66 lines
1.4 KiB
C
66 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;
|
|
}
|