blob: 4edf533e2a27f04f27208e45d5f823e4825c50e2 [file] [log] [blame]
Stefano Babicb9bb0532011-01-20 07:49:52 +00001/*
2 * (C) Copyright 2007
3 * Sascha Hauer, Pengutronix
4 *
5 * (C) Copyright 2008-2009 Freescale Semiconductor, Inc.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Stefano Babicb9bb0532011-01-20 07:49:52 +00008 */
9
10#include <common.h>
11#include <asm/io.h>
12#include <asm/arch/imx-regs.h>
Benoît Thébaudeau543d2472012-08-21 11:07:54 +000013#include <asm/arch/crm_regs.h>
Stefano Babic31bb50f2012-02-04 12:56:50 +010014
15DECLARE_GLOBAL_DATA_PTR;
16
Stefano Babicb9bb0532011-01-20 07:49:52 +000017/* General purpose timers bitfields */
18#define GPTCR_SWR (1<<15) /* Software reset */
19#define GPTCR_FRR (1<<9) /* Freerun / restart */
Benoît Thébaudeau543d2472012-08-21 11:07:54 +000020#define GPTCR_CLKSOURCE_32 (4<<6) /* Clock source */
Stefano Babicb9bb0532011-01-20 07:49:52 +000021#define GPTCR_TEN (1) /* Timer enable */
Stefano Babic31bb50f2012-02-04 12:56:50 +010022
Benoît Thébaudeau543d2472012-08-21 11:07:54 +000023/*
Benoît Thébaudeau543d2472012-08-21 11:07:54 +000024 * nothing really to do with interrupts, just starts up a counter.
25 * The 32KHz 32-bit timer overruns in 134217 seconds
26 */
Stefano Babicb9bb0532011-01-20 07:49:52 +000027int timer_init(void)
28{
29 int i;
30 struct gpt_regs *gpt = (struct gpt_regs *)GPT1_BASE_ADDR;
Benoît Thébaudeau543d2472012-08-21 11:07:54 +000031 struct ccm_regs *ccm = (struct ccm_regs *)CCM_BASE_ADDR;
Stefano Babicb9bb0532011-01-20 07:49:52 +000032
33 /* setup GP Timer 1 */
34 writel(GPTCR_SWR, &gpt->ctrl);
Stefano Babicb9bb0532011-01-20 07:49:52 +000035
Benoît Thébaudeau543d2472012-08-21 11:07:54 +000036 writel(readl(&ccm->cgr1) | 3 << MXC_CCM_CGR1_GPT_OFFSET, &ccm->cgr1);
37
38 for (i = 0; i < 100; i++)
39 writel(0, &gpt->ctrl); /* We have no udelay by now */
40 writel(0, &gpt->pre); /* prescaler = 1 */
41 /* Freerun Mode, 32KHz input */
42 writel(readl(&gpt->ctrl) | GPTCR_CLKSOURCE_32 | GPTCR_FRR,
43 &gpt->ctrl);
44 writel(readl(&gpt->ctrl) | GPTCR_TEN, &gpt->ctrl);
Stefano Babicb9bb0532011-01-20 07:49:52 +000045
46 return 0;
47}