mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-22 20:58:22 +00:00
ARM: imx: Deduplicate i.MX8M SNVS LPGPR unlock
Pull this LPGPR unlock into common code, since it is used in multiple systems already. Signed-off-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
9bf0cbf396
commit
fdf6bbb260
5 changed files with 17 additions and 51 deletions
|
@ -27,6 +27,7 @@
|
||||||
#define IOMUXC_GPR_BASE_ADDR 0x30340000
|
#define IOMUXC_GPR_BASE_ADDR 0x30340000
|
||||||
#define OCOTP_BASE_ADDR 0x30350000
|
#define OCOTP_BASE_ADDR 0x30350000
|
||||||
#define ANATOP_BASE_ADDR 0x30360000
|
#define ANATOP_BASE_ADDR 0x30360000
|
||||||
|
#define SNVS_BASE_ADDR 0x30370000
|
||||||
#define CCM_BASE_ADDR 0x30380000
|
#define CCM_BASE_ADDR 0x30380000
|
||||||
#define SRC_BASE_ADDR 0x30390000
|
#define SRC_BASE_ADDR 0x30390000
|
||||||
#define GPC_BASE_ADDR 0x303A0000
|
#define GPC_BASE_ADDR 0x303A0000
|
||||||
|
@ -113,6 +114,10 @@
|
||||||
#define SRC_DDR1_RCR_CORE_RESET_N_MASK BIT(1)
|
#define SRC_DDR1_RCR_CORE_RESET_N_MASK BIT(1)
|
||||||
#define SRC_DDR1_RCR_PRESET_N_MASK BIT(0)
|
#define SRC_DDR1_RCR_PRESET_N_MASK BIT(0)
|
||||||
|
|
||||||
|
#define SNVS_LPSR 0x4c
|
||||||
|
#define SNVS_LPLVDR 0x64
|
||||||
|
#define SNVS_LPPGDR_INIT 0x41736166
|
||||||
|
|
||||||
struct iomuxc_gpr_base_regs {
|
struct iomuxc_gpr_base_regs {
|
||||||
u32 gpr[47];
|
u32 gpr[47];
|
||||||
};
|
};
|
||||||
|
|
|
@ -544,6 +544,16 @@ static int imx8m_check_clock(void *ctx, struct event *event)
|
||||||
}
|
}
|
||||||
EVENT_SPY(EVT_DM_POST_INIT, imx8m_check_clock);
|
EVENT_SPY(EVT_DM_POST_INIT, imx8m_check_clock);
|
||||||
|
|
||||||
|
static void imx8m_setup_snvs(void)
|
||||||
|
{
|
||||||
|
/* Enable SNVS clock */
|
||||||
|
clock_enable(CCGR_SNVS, 1);
|
||||||
|
/* Initialize glitch detect */
|
||||||
|
writel(SNVS_LPPGDR_INIT, SNVS_BASE_ADDR + SNVS_LPLVDR);
|
||||||
|
/* Clear interrupt status */
|
||||||
|
writel(0xffffffff, SNVS_BASE_ADDR + SNVS_LPSR);
|
||||||
|
}
|
||||||
|
|
||||||
int arch_cpu_init(void)
|
int arch_cpu_init(void)
|
||||||
{
|
{
|
||||||
struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
|
struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
|
||||||
|
@ -594,6 +604,8 @@ int arch_cpu_init(void)
|
||||||
writel(0x200, &ocotp->ctrl_clr);
|
writel(0x200, &ocotp->ctrl_clr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
imx8m_setup_snvs();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -34,22 +34,6 @@ int board_phys_sdram_size(phys_size_t *size)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* IMX8M SNVS registers needed for the bootcount functionality */
|
|
||||||
#define SNVS_BASE_ADDR 0x30370000
|
|
||||||
#define SNVS_LPSR 0x4c
|
|
||||||
#define SNVS_LPLVDR 0x64
|
|
||||||
#define SNVS_LPPGDR_INIT 0x41736166
|
|
||||||
|
|
||||||
static void setup_snvs(void)
|
|
||||||
{
|
|
||||||
/* Enable SNVS clock */
|
|
||||||
clock_enable(CCGR_SNVS, 1);
|
|
||||||
/* Initialize glitch detect */
|
|
||||||
writel(SNVS_LPPGDR_INIT, SNVS_BASE_ADDR + SNVS_LPLVDR);
|
|
||||||
/* Clear interrupt status */
|
|
||||||
writel(0xffffffff, SNVS_BASE_ADDR + SNVS_LPSR);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void setup_mac_address(void)
|
static void setup_mac_address(void)
|
||||||
{
|
{
|
||||||
unsigned char enetaddr[6];
|
unsigned char enetaddr[6];
|
||||||
|
@ -99,7 +83,6 @@ static void setup_boot_device(void)
|
||||||
|
|
||||||
int board_init(void)
|
int board_init(void)
|
||||||
{
|
{
|
||||||
setup_snvs();
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,22 +37,6 @@ int board_phys_sdram_size(phys_size_t *size)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* IMX8M SNVS registers needed for the bootcount functionality */
|
|
||||||
#define SNVS_BASE_ADDR 0x30370000
|
|
||||||
#define SNVS_LPSR 0x4c
|
|
||||||
#define SNVS_LPLVDR 0x64
|
|
||||||
#define SNVS_LPPGDR_INIT 0x41736166
|
|
||||||
|
|
||||||
static void setup_snvs(void)
|
|
||||||
{
|
|
||||||
/* Enable SNVS clock */
|
|
||||||
clock_enable(CCGR_SNVS, 1);
|
|
||||||
/* Initialize glitch detect */
|
|
||||||
writel(SNVS_LPPGDR_INIT, SNVS_BASE_ADDR + SNVS_LPLVDR);
|
|
||||||
/* Clear interrupt status */
|
|
||||||
writel(0xffffffff, SNVS_BASE_ADDR + SNVS_LPSR);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void setup_eqos(void)
|
static void setup_eqos(void)
|
||||||
{
|
{
|
||||||
struct iomuxc_gpr_base_regs *gpr =
|
struct iomuxc_gpr_base_regs *gpr =
|
||||||
|
@ -145,7 +129,6 @@ int board_init(void)
|
||||||
{
|
{
|
||||||
setup_eqos();
|
setup_eqos();
|
||||||
setup_fec();
|
setup_fec();
|
||||||
setup_snvs();
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,24 +12,7 @@
|
||||||
#include <asm/mach-imx/iomux-v3.h>
|
#include <asm/mach-imx/iomux-v3.h>
|
||||||
#include <spl.h>
|
#include <spl.h>
|
||||||
|
|
||||||
#define SNVS_BASE_ADDR 0x30370000
|
|
||||||
#define SNVS_LPSR 0x4c
|
|
||||||
#define SNVS_LPLVDR 0x64
|
|
||||||
#define SNVS_LPPGDR_INIT 0x41736166
|
|
||||||
|
|
||||||
static void setup_snvs(void)
|
|
||||||
{
|
|
||||||
/* Enable SNVS clock */
|
|
||||||
clock_enable(CCGR_SNVS, 1);
|
|
||||||
/* Initialize glitch detect */
|
|
||||||
writel(SNVS_LPPGDR_INIT, SNVS_BASE_ADDR + SNVS_LPLVDR);
|
|
||||||
/* Clear interrupt status */
|
|
||||||
writel(0xffffffff, SNVS_BASE_ADDR + SNVS_LPSR);
|
|
||||||
}
|
|
||||||
|
|
||||||
void board_early_init(void)
|
void board_early_init(void)
|
||||||
{
|
{
|
||||||
init_uart_clk(1);
|
init_uart_clk(1);
|
||||||
|
|
||||||
setup_snvs();
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue