2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-02-17 07:17:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Socionext Inc.
|
|
|
|
*/
|
|
|
|
|
2017-09-15 12:43:22 +00:00
|
|
|
#include <linux/bitops.h>
|
2017-02-17 07:17:22 +00:00
|
|
|
#include <linux/io.h>
|
|
|
|
|
|
|
|
#include "../init.h"
|
2017-09-15 12:43:22 +00:00
|
|
|
#include "../sc64-regs.h"
|
2017-02-17 07:17:22 +00:00
|
|
|
|
|
|
|
#define SDCTRL_EMMC_HW_RESET 0x59810280
|
|
|
|
|
|
|
|
void uniphier_ld20_clk_init(void)
|
|
|
|
{
|
2017-09-15 12:43:22 +00:00
|
|
|
u32 tmp;
|
|
|
|
|
2019-07-10 11:07:41 +00:00
|
|
|
tmp = readl(sc_base + SC_RSTCTRL6);
|
2017-09-15 12:43:22 +00:00
|
|
|
tmp |= BIT(8); /* Mali */
|
2019-07-10 11:07:41 +00:00
|
|
|
writel(tmp, sc_base + SC_RSTCTRL6);
|
2017-09-15 12:43:22 +00:00
|
|
|
|
2019-07-10 11:07:41 +00:00
|
|
|
tmp = readl(sc_base + SC_CLKCTRL6);
|
2017-09-15 12:43:22 +00:00
|
|
|
tmp |= BIT(8); /* Mali */
|
2019-07-10 11:07:41 +00:00
|
|
|
writel(tmp, sc_base + SC_CLKCTRL6);
|
2017-09-15 12:43:22 +00:00
|
|
|
|
2017-02-17 07:17:22 +00:00
|
|
|
/* TODO: use "mmc-pwrseq-emmc" */
|
|
|
|
writel(1, SDCTRL_EMMC_HW_RESET);
|
|
|
|
}
|