All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kever Yang <kever.yang@rock-chips.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 3/3] rockchip: rk3288: Move rockchip_get_cru() out of the driver
Date: Sat, 08 Oct 2016 10:55:24 +0800	[thread overview]
Message-ID: <57F8601C.3030906@rock-chips.com> (raw)
In-Reply-To: <1475373892-20780-3-git-send-email-sjg@chromium.org>

Hi Simon,

On 10/02/2016 10:04 AM, Simon Glass wrote:
> This function is called from outside the driver. It should be placed into
> common SoC code. Move it.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
>
> Changes in v2:
> - Rebase to mainline and fix resulting build error
> - Add a similar change for rk3036 and rk3399
>
>   arch/arm/include/asm/arch-rockchip/cru_rk3288.h |  7 +++++++
>   arch/arm/mach-rockchip/rk3288/clk_rk3288.c      | 16 ++++++++++++++++
>   drivers/clk/rockchip/clk_rk3288.c               | 21 ---------------------
>   3 files changed, 23 insertions(+), 21 deletions(-)
>
> diff --git a/arch/arm/include/asm/arch-rockchip/cru_rk3288.h b/arch/arm/include/asm/arch-rockchip/cru_rk3288.h
> index 8a8ca9c..d575f4a 100644
> --- a/arch/arm/include/asm/arch-rockchip/cru_rk3288.h
> +++ b/arch/arm/include/asm/arch-rockchip/cru_rk3288.h
> @@ -25,6 +25,13 @@
>   #define PERI_HCLK_HZ	148500000
>   #define PERI_PCLK_HZ	74250000
>   
> +/* Private data for the clock driver - used by rockchip_get_cru() */
> +struct rk3288_clk_priv {
> +	struct rk3288_grf *grf;
> +	struct rk3288_cru *cru;
> +	ulong rate;
> +};
> +
>   struct rk3288_cru {
>   	struct rk3288_pll {
>   		u32 con0;
> diff --git a/arch/arm/mach-rockchip/rk3288/clk_rk3288.c b/arch/arm/mach-rockchip/rk3288/clk_rk3288.c
> index 2099e34..a45b923 100644
> --- a/arch/arm/mach-rockchip/rk3288/clk_rk3288.c
> +++ b/arch/arm/mach-rockchip/rk3288/clk_rk3288.c
> @@ -9,9 +9,25 @@
>   #include <dm.h>
>   #include <syscon.h>
>   #include <asm/arch/clock.h>
> +#include <asm/arch/cru_rk3288.h>
>   
>   int rockchip_get_clk(struct udevice **devp)
>   {
>   	return uclass_get_device_by_driver(UCLASS_CLK,
>   			DM_GET_DRIVER(rockchip_rk3288_cru), devp);
>   }
> +
> +void *rockchip_get_cru(void)
> +{
> +	struct rk3288_clk_priv *priv;
> +	struct udevice *dev;
> +	int ret;
> +
> +	ret = rockchip_get_clk(&dev);
> +	if (ret)
> +		return ERR_PTR(ret);
> +
> +	priv = dev_get_priv(dev);
> +
> +	return priv->cru;
> +}
> diff --git a/drivers/clk/rockchip/clk_rk3288.c b/drivers/clk/rockchip/clk_rk3288.c
> index bd71a96..ed97e87 100644
> --- a/drivers/clk/rockchip/clk_rk3288.c
> +++ b/drivers/clk/rockchip/clk_rk3288.c
> @@ -30,12 +30,6 @@ struct rk3288_clk_plat {
>   #endif
>   };
>   
> -struct rk3288_clk_priv {
> -	struct rk3288_grf *grf;
> -	struct rk3288_cru *cru;
> -	ulong rate;
> -};
> -
>   struct pll_div {
>   	u32 nr;
>   	u32 nf;
> @@ -140,21 +134,6 @@ static const struct pll_div apll_init_cfg = PLL_DIVISORS(APLL_HZ, 1, 1);
>   static const struct pll_div gpll_init_cfg = PLL_DIVISORS(GPLL_HZ, 2, 2);
>   static const struct pll_div cpll_init_cfg = PLL_DIVISORS(CPLL_HZ, 1, 2);
>   
> -void *rockchip_get_cru(void)
> -{
> -	struct rk3288_clk_priv *priv;
> -	struct udevice *dev;
> -	int ret;
> -
> -	ret = rockchip_get_clk(&dev);
> -	if (ret)
> -		return ERR_PTR(ret);
> -
> -	priv = dev_get_priv(dev);
> -
> -	return priv->cru;
> -}
> -
>   static int rkclk_set_pll(struct rk3288_cru *cru, enum rk_clk_id clk_id,
>   			 const struct pll_div *div)
>   {

Reviewed-by: Kever Yang <kever.yang@rock-chips.com>

Thanks,
- Kever

  reply	other threads:[~2016-10-08  2:55 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-02  2:04 [U-Boot] [PATCH v2 1/3] rockchip: rk3036: Move rockchip_get_cru() out of the driver Simon Glass
2016-10-02  2:04 ` [U-Boot] [PATCH v2 2/3] rockchip: rk3399: " Simon Glass
2016-10-08  2:54   ` Kever Yang
2016-10-15 13:11     ` Simon Glass
2016-10-02  2:04 ` [U-Boot] [PATCH v2 3/3] rockchip: rk3288: " Simon Glass
2016-10-08  2:55   ` Kever Yang [this message]
2016-10-15 13:11     ` Simon Glass
2016-10-08  2:54 ` [U-Boot] [PATCH v2 1/3] rockchip: rk3036: " Kever Yang
2016-10-15 13:11   ` Simon Glass

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=57F8601C.3030906@rock-chips.com \
    --to=kever.yang@rock-chips.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.