aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-at91/arm926ejs
diff options
context:
space:
mode:
authorWenyou Yang <wenyou.yang@atmel.com>2016-02-03 10:16:48 +0800
committerAndreas Bießmann <andreas.devel@googlemail.com>2016-02-18 21:34:40 +0100
commit41bf25c2e1c134455257f91bbfa9dc582b687bc4 (patch)
treef7439dc5ca3e62abe9fd117494a964cfeddf59ca /arch/arm/mach-at91/arm926ejs
parente5322df4e7dda98f70da78cc49bc13db93b89c91 (diff)
downloadu-boot-41bf25c2e1c134455257f91bbfa9dc582b687bc4.zip
u-boot-41bf25c2e1c134455257f91bbfa9dc582b687bc4.tar.gz
u-boot-41bf25c2e1c134455257f91bbfa9dc582b687bc4.tar.bz2
ARM: at91: clock: add a new file to handle clock
To reduce the duplicated code, add a new file to accommodate the peripheral's and system's clock handle code, shared with the SoCs with different ARM core. Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com> Tested-by: Heiko Schocher <hs@denx.de> Reviewed-by: Andreas Bießmann <andreas.devel@googlemail.com>
Diffstat (limited to 'arch/arm/mach-at91/arm926ejs')
-rw-r--r--arch/arm/mach-at91/arm926ejs/clock.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/arm/mach-at91/arm926ejs/clock.c b/arch/arm/mach-at91/arm926ejs/clock.c
index 8d6934e..c8b5e10 100644
--- a/arch/arm/mach-at91/arm926ejs/clock.c
+++ b/arch/arm/mach-at91/arm926ejs/clock.c
@@ -242,10 +242,3 @@ void at91_mck_init(u32 mckr)
while (!(readl(&pmc->sr) & AT91_PMC_MCKRDY))
;
}
-
-void at91_periph_clk_enable(int id)
-{
- struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
-
- writel(1 << id, &pmc->pcer);
-}