diff mbox

[U-Boot,1/2] rockchip: clk: rk3399: adapt MMC clk configuration to the updated RK3399 DTS

Message ID 1493106727-53800-2-git-send-email-philipp.tomsich@theobroma-systems.com
State Accepted
Commit 998c61ae607cce4b8d54d9bb1d88a04d1de57614
Delegated to: Simon Glass
Headers show

Commit Message

Philipp Tomsich April 25, 2017, 7:52 a.m. UTC
The clocking of the designware MMC controller in the upstream
(i.e. Linux) RK3399 has changed/does not match what the current DTS in
U-Boot uses: the first clock entry now is HCLK_SDMMC instead of
SCLK_SDMMC.

With the simple clock driver used for the RK3399, this needs a change
in the selector understood by the various case statements in the driver
to ensure that the driver still loads successfully.

Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
---

 drivers/clk/rockchip/clk_rk3399.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Simon Glass April 29, 2017, 12:27 a.m. UTC | #1
On 25 April 2017 at 01:52, Philipp Tomsich
<philipp.tomsich@theobroma-systems.com> wrote:
> The clocking of the designware MMC controller in the upstream
> (i.e. Linux) RK3399 has changed/does not match what the current DTS in
> U-Boot uses: the first clock entry now is HCLK_SDMMC instead of
> SCLK_SDMMC.
>
> With the simple clock driver used for the RK3399, this needs a change
> in the selector understood by the various case statements in the driver
> to ensure that the driver still loads successfully.
>
> Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> ---
>
>  drivers/clk/rockchip/clk_rk3399.c | 4 ++++
>  1 file changed, 4 insertions(+)

Acked-by: Simon Glass <sjg@chromium.org>
Simon Glass May 2, 2017, 11:12 a.m. UTC | #2
On 25 April 2017 at 01:52, Philipp Tomsich
<philipp.tomsich@theobroma-systems.com> wrote:
> The clocking of the designware MMC controller in the upstream
> (i.e. Linux) RK3399 has changed/does not match what the current DTS in
> U-Boot uses: the first clock entry now is HCLK_SDMMC instead of
> SCLK_SDMMC.
>
> With the simple clock driver used for the RK3399, this needs a change
> in the selector understood by the various case statements in the driver
> to ensure that the driver still loads successfully.
>
> Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> ---
>
>  drivers/clk/rockchip/clk_rk3399.c | 4 ++++
>  1 file changed, 4 insertions(+)

Acked-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-rockchip/next, thanks!
diff mbox

Patch

diff --git a/drivers/clk/rockchip/clk_rk3399.c b/drivers/clk/rockchip/clk_rk3399.c
index ac658b9..4e807f1 100644
--- a/drivers/clk/rockchip/clk_rk3399.c
+++ b/drivers/clk/rockchip/clk_rk3399.c
@@ -747,6 +747,7 @@  static ulong rk3399_mmc_get_clk(struct rk3399_cru *cru, uint clk_id)
 	u32 div, con;
 
 	switch (clk_id) {
+	case HCLK_SDMMC:
 	case SCLK_SDMMC:
 		con = readl(&cru->clksel_con[16]);
 		break;
@@ -772,6 +773,7 @@  static ulong rk3399_mmc_set_clk(struct rk3399_cru *cru,
 	int aclk_emmc = 198*MHz;
 
 	switch (clk_id) {
+	case HCLK_SDMMC:
 	case SCLK_SDMMC:
 		/* Select clk_sdmmc source from GPLL by default */
 		src_clk_div = GPLL_HZ / set_rate;
@@ -861,6 +863,7 @@  static ulong rk3399_clk_get_rate(struct clk *clk)
 	switch (clk->id) {
 	case 0 ... 63:
 		return 0;
+	case HCLK_SDMMC:
 	case SCLK_SDMMC:
 	case SCLK_EMMC:
 		rate = rk3399_mmc_get_clk(priv->cru, clk->id);
@@ -898,6 +901,7 @@  static ulong rk3399_clk_set_rate(struct clk *clk, ulong rate)
 	switch (clk->id) {
 	case 0 ... 63:
 		return 0;
+	case HCLK_SDMMC:
 	case SCLK_SDMMC:
 	case SCLK_EMMC:
 		ret = rk3399_mmc_set_clk(priv->cru, clk->id, rate);