public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Heiko Schocher <hs@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/3] ARM: at91: clock: add PLLB enable/disable functions
Date: Thu, 10 Dec 2015 10:33:58 +0100	[thread overview]
Message-ID: <56694706.8030005@denx.de> (raw)
In-Reply-To: <1449635383-8180-2-git-send-email-wenyou.yang@atmel.com>

Hello Wenyou,

Am 09.12.2015 um 05:29 schrieb Wenyou Yang:
> To avoid the duplicated code, add the PLLB handle functions.
>
> Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
> ---
>
>   arch/arm/mach-at91/arm926ejs/clock.c  |   38 +++++++++++++++++++++++++++++++++
>   arch/arm/mach-at91/include/mach/clk.h |    2 ++
>   2 files changed, 40 insertions(+)

Tested on the smartweb board, see log:
http://xeidos.ddns.net/buildbot/builders/smartweb_dfu/builds/29/steps/shell/logs/tbotlog

Tested-by: Heiko Schocher <hs@denx.de>

bye,
Heiko
>
> diff --git a/arch/arm/mach-at91/arm926ejs/clock.c b/arch/arm/mach-at91/arm926ejs/clock.c
> index c8b5e10..c8d24ae 100644
> --- a/arch/arm/mach-at91/arm926ejs/clock.c
> +++ b/arch/arm/mach-at91/arm926ejs/clock.c
> @@ -18,6 +18,8 @@
>   # error You need to define CONFIG_AT91FAMILY in your board config!
>   #endif
>
> +#define EN_PLLB_TIMEOUT	500
> +
>   DECLARE_GLOBAL_DATA_PTR;
>
>   static unsigned long at91_css_to_rate(unsigned long css)
> @@ -242,3 +244,39 @@ void at91_mck_init(u32 mckr)
>   	while (!(readl(&pmc->sr) & AT91_PMC_MCKRDY))
>   		;
>   }
> +
> +int at91_pllb_clk_enable(u32 pllbr)
> +{
> +	struct at91_pmc *pmc = (at91_pmc_t *)ATMEL_BASE_PMC;
> +	ulong start_time, tmp_time;
> +
> +	start_time = get_timer(0);
> +	writel(pllbr, &pmc->pllbr);
> +	while ((readl(&pmc->sr) & AT91_PMC_LOCKB) != AT91_PMC_LOCKB) {
> +		tmp_time = get_timer(0);
> +		if ((tmp_time - start_time) > EN_PLLB_TIMEOUT) {
> +			printf("ERROR: failed to enable PLLB\n");
> +			return -1;
> +		}
> +	}
> +
> +	return 0;
> +}
> +
> +int at91_pllb_clk_disable(void)
> +{
> +	struct at91_pmc *pmc = (at91_pmc_t *)ATMEL_BASE_PMC;
> +	ulong start_time, tmp_time;
> +
> +	start_time = get_timer(0);
> +	writel(0, &pmc->pllbr);
> +	while ((readl(&pmc->sr) & AT91_PMC_LOCKB) != 0) {
> +		tmp_time = get_timer(0);
> +		if ((tmp_time - start_time) > EN_PLLB_TIMEOUT) {
> +			printf("ERROR: failed to disable PLLB\n");
> +			return -1;
> +		}
> +	}
> +
> +	return 0;
> +}
> diff --git a/arch/arm/mach-at91/include/mach/clk.h b/arch/arm/mach-at91/include/mach/clk.h
> index b2604ef..64dec52 100644
> --- a/arch/arm/mach-at91/include/mach/clk.h
> +++ b/arch/arm/mach-at91/include/mach/clk.h
> @@ -133,5 +133,7 @@ void at91_system_clk_disable(int sys_clk);
>   int at91_upll_clk_enable(void);
>   int at91_upll_clk_disable(void);
>   void at91_usb_clk_init(u32 value);
> +int at91_pllb_clk_enable(u32 pllbr);
> +int at91_pllb_clk_disable(void);
>
>   #endif /* __ASM_ARM_ARCH_CLK_H__ */
>

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

  reply	other threads:[~2015-12-10  9:33 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-09  4:29 [U-Boot] [PATCH 0/3] ARM: at91: add PLLB handle functions Wenyou Yang
2015-12-09  4:29 ` [U-Boot] [PATCH 1/3] ARM: at91: clock: add PLLB enable/disable functions Wenyou Yang
2015-12-10  9:33   ` Heiko Schocher [this message]
2015-12-10 12:03     ` Yang, Wenyou
2016-01-26 15:35   ` Andreas Bießmann
2015-12-09  4:29 ` [U-Boot] [PATCH 2/3] drivers: usb: ohci-at91: clean up the PLLB code Wenyou Yang
2015-12-10  9:34   ` Heiko Schocher
2016-01-26 15:30   ` Andreas Bießmann
2015-12-09  4:29 ` [U-Boot] [PATCH 3/3] board: atmel: siemens: clean up " Wenyou Yang
2015-12-10  9:34   ` Heiko Schocher
2016-01-26 15:38   ` Andreas Bießmann

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=56694706.8030005@denx.de \
    --to=hs@denx.de \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox