2008-07-05 16:02:50 +08:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/plat-mxc/time.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000-2001 Deep Blue Solutions
|
|
|
|
* Copyright (C) 2002 Shane Nay (shane@minirl.com)
|
|
|
|
* Copyright (C) 2006-2007 Pavel Pisa (ppisa@pikron.com)
|
|
|
|
* Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
* MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/clockchips.h>
|
|
|
|
#include <linux/clk.h>
|
2014-01-22 19:35:44 +08:00
|
|
|
#include <linux/delay.h>
|
2012-03-09 16:29:27 +08:00
|
|
|
#include <linux/err.h>
|
2013-06-02 14:39:40 +08:00
|
|
|
#include <linux/sched_clock.h>
|
2015-05-22 13:53:45 +08:00
|
|
|
#include <linux/slab.h>
|
2014-04-05 23:57:45 +08:00
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_address.h>
|
|
|
|
#include <linux/of_irq.h>
|
2015-05-15 11:41:39 +08:00
|
|
|
#include <soc/imx/timer.h>
|
2008-07-05 16:02:50 +08:00
|
|
|
|
2009-12-04 16:34:51 +08:00
|
|
|
/*
|
2015-04-30 05:40:27 +08:00
|
|
|
* There are 4 versions of the timer hardware on Freescale MXC hardware.
|
|
|
|
* - MX1/MXL
|
|
|
|
* - MX21, MX27.
|
|
|
|
* - MX25, MX31, MX35, MX37, MX51, MX6Q(rev1.0)
|
|
|
|
* - MX6DL, MX6SX, MX6Q(rev1.1+)
|
2009-12-04 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
2009-02-19 03:58:40 +08:00
|
|
|
/* defines common for all i.MX */
|
|
|
|
#define MXC_TCTL 0x00
|
2009-12-04 16:34:51 +08:00
|
|
|
#define MXC_TCTL_TEN (1 << 0) /* Enable module */
|
2009-02-19 03:58:40 +08:00
|
|
|
#define MXC_TPRER 0x04
|
|
|
|
|
|
|
|
/* MX1, MX21, MX27 */
|
|
|
|
#define MX1_2_TCTL_CLK_PCLK1 (1 << 1)
|
|
|
|
#define MX1_2_TCTL_IRQEN (1 << 4)
|
|
|
|
#define MX1_2_TCTL_FRR (1 << 8)
|
|
|
|
#define MX1_2_TCMP 0x08
|
|
|
|
#define MX1_2_TCN 0x10
|
|
|
|
#define MX1_2_TSTAT 0x14
|
|
|
|
|
|
|
|
/* MX21, MX27 */
|
|
|
|
#define MX2_TSTAT_CAPT (1 << 1)
|
|
|
|
#define MX2_TSTAT_COMP (1 << 0)
|
|
|
|
|
ARM: imx: source gpt per clk from OSC for system timer
On i.MX6Q TO > 1.0, i.MX6DL and i.MX6SX, gpt per clock
can be from OSC instead of ipg_per, as ipg_per's rate
may be scaled when system enter low bus mode, to keep
system timer NOT drift, better to make gpt per clock
at fixed rate, here add support for gpt per clock to
be from OSC which is at fixed rate always.
There are some difference on this implementation of
gpt per clock source, see below for details:
i.MX6Q TO > 1.0: GPT_CR_CLKSRC, b'101 selects fix clock
of OSC / 8 for gpt per clk;
i.MX6DL and i.MX6SX: GPT_CR_CLKSRC, b'101 selects OSC
for gpt per clk, and we must enable GPT_CR_24MEM to
enable OSC clk source for gpt per, GPT_PR_PRESCALER24M
is for pre-scaling of this OSC clk, here set it to 8
to make gpt per clk is 3MHz;
i.MX6SL: ipg_per can be from OSC directly, so no need to
implement this new clk source for gpt per.
Signed-off-by: Anson Huang <b20788@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
2014-09-11 11:29:42 +08:00
|
|
|
/* MX31, MX35, MX25, MX5, MX6 */
|
2010-04-22 02:34:36 +08:00
|
|
|
#define V2_TCTL_WAITEN (1 << 3) /* Wait enable mode */
|
|
|
|
#define V2_TCTL_CLK_IPG (1 << 6)
|
2012-05-15 15:34:40 +08:00
|
|
|
#define V2_TCTL_CLK_PER (2 << 6)
|
ARM: imx: source gpt per clk from OSC for system timer
On i.MX6Q TO > 1.0, i.MX6DL and i.MX6SX, gpt per clock
can be from OSC instead of ipg_per, as ipg_per's rate
may be scaled when system enter low bus mode, to keep
system timer NOT drift, better to make gpt per clock
at fixed rate, here add support for gpt per clock to
be from OSC which is at fixed rate always.
There are some difference on this implementation of
gpt per clock source, see below for details:
i.MX6Q TO > 1.0: GPT_CR_CLKSRC, b'101 selects fix clock
of OSC / 8 for gpt per clk;
i.MX6DL and i.MX6SX: GPT_CR_CLKSRC, b'101 selects OSC
for gpt per clk, and we must enable GPT_CR_24MEM to
enable OSC clk source for gpt per, GPT_PR_PRESCALER24M
is for pre-scaling of this OSC clk, here set it to 8
to make gpt per clk is 3MHz;
i.MX6SL: ipg_per can be from OSC directly, so no need to
implement this new clk source for gpt per.
Signed-off-by: Anson Huang <b20788@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
2014-09-11 11:29:42 +08:00
|
|
|
#define V2_TCTL_CLK_OSC_DIV8 (5 << 6)
|
2010-04-22 02:34:36 +08:00
|
|
|
#define V2_TCTL_FRR (1 << 9)
|
ARM: imx: source gpt per clk from OSC for system timer
On i.MX6Q TO > 1.0, i.MX6DL and i.MX6SX, gpt per clock
can be from OSC instead of ipg_per, as ipg_per's rate
may be scaled when system enter low bus mode, to keep
system timer NOT drift, better to make gpt per clock
at fixed rate, here add support for gpt per clock to
be from OSC which is at fixed rate always.
There are some difference on this implementation of
gpt per clock source, see below for details:
i.MX6Q TO > 1.0: GPT_CR_CLKSRC, b'101 selects fix clock
of OSC / 8 for gpt per clk;
i.MX6DL and i.MX6SX: GPT_CR_CLKSRC, b'101 selects OSC
for gpt per clk, and we must enable GPT_CR_24MEM to
enable OSC clk source for gpt per, GPT_PR_PRESCALER24M
is for pre-scaling of this OSC clk, here set it to 8
to make gpt per clk is 3MHz;
i.MX6SL: ipg_per can be from OSC directly, so no need to
implement this new clk source for gpt per.
Signed-off-by: Anson Huang <b20788@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
2014-09-11 11:29:42 +08:00
|
|
|
#define V2_TCTL_24MEN (1 << 10)
|
|
|
|
#define V2_TPRER_PRE24M 12
|
2010-04-22 02:34:36 +08:00
|
|
|
#define V2_IR 0x0c
|
|
|
|
#define V2_TSTAT 0x08
|
|
|
|
#define V2_TSTAT_OF1 (1 << 0)
|
|
|
|
#define V2_TCN 0x24
|
|
|
|
#define V2_TCMP 0x10
|
2008-07-05 16:02:50 +08:00
|
|
|
|
ARM: imx: source gpt per clk from OSC for system timer
On i.MX6Q TO > 1.0, i.MX6DL and i.MX6SX, gpt per clock
can be from OSC instead of ipg_per, as ipg_per's rate
may be scaled when system enter low bus mode, to keep
system timer NOT drift, better to make gpt per clock
at fixed rate, here add support for gpt per clock to
be from OSC which is at fixed rate always.
There are some difference on this implementation of
gpt per clock source, see below for details:
i.MX6Q TO > 1.0: GPT_CR_CLKSRC, b'101 selects fix clock
of OSC / 8 for gpt per clk;
i.MX6DL and i.MX6SX: GPT_CR_CLKSRC, b'101 selects OSC
for gpt per clk, and we must enable GPT_CR_24MEM to
enable OSC clk source for gpt per, GPT_PR_PRESCALER24M
is for pre-scaling of this OSC clk, here set it to 8
to make gpt per clk is 3MHz;
i.MX6SL: ipg_per can be from OSC directly, so no need to
implement this new clk source for gpt per.
Signed-off-by: Anson Huang <b20788@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
2014-09-11 11:29:42 +08:00
|
|
|
#define V2_TIMER_RATE_OSC_DIV8 3000000
|
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
struct imx_timer {
|
2015-05-15 11:41:39 +08:00
|
|
|
enum imx_gpt_type type;
|
2015-05-22 13:53:45 +08:00
|
|
|
void __iomem *base;
|
|
|
|
int irq;
|
|
|
|
struct clk *clk_per;
|
|
|
|
struct clk *clk_ipg;
|
2015-05-15 14:24:41 +08:00
|
|
|
const struct imx_gpt_data *gpt;
|
2015-05-22 16:38:49 +08:00
|
|
|
struct clock_event_device ced;
|
|
|
|
struct irqaction act;
|
2015-05-15 14:24:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct imx_gpt_data {
|
2015-05-22 21:39:55 +08:00
|
|
|
int reg_tstat;
|
|
|
|
int reg_tcn;
|
|
|
|
int reg_tcmp;
|
2015-05-15 14:24:41 +08:00
|
|
|
void (*gpt_setup_tctl)(struct imx_timer *imxtm);
|
2015-05-22 22:42:55 +08:00
|
|
|
void (*gpt_irq_enable)(struct imx_timer *imxtm);
|
|
|
|
void (*gpt_irq_disable)(struct imx_timer *imxtm);
|
|
|
|
void (*gpt_irq_acknowledge)(struct imx_timer *imxtm);
|
2015-05-22 15:51:41 +08:00
|
|
|
int (*set_next_event)(unsigned long evt,
|
|
|
|
struct clock_event_device *ced);
|
2015-05-22 13:53:45 +08:00
|
|
|
};
|
|
|
|
|
2015-05-22 16:38:49 +08:00
|
|
|
static inline struct imx_timer *to_imx_timer(struct clock_event_device *ced)
|
|
|
|
{
|
|
|
|
return container_of(ced, struct imx_timer, ced);
|
|
|
|
}
|
|
|
|
|
2015-05-22 22:42:55 +08:00
|
|
|
static void imx1_gpt_irq_disable(struct imx_timer *imxtm)
|
2008-07-05 16:02:50 +08:00
|
|
|
{
|
2009-02-19 03:58:40 +08:00
|
|
|
unsigned int tmp;
|
|
|
|
|
2015-05-22 22:42:55 +08:00
|
|
|
tmp = readl_relaxed(imxtm->base + MXC_TCTL);
|
|
|
|
writel_relaxed(tmp & ~MX1_2_TCTL_IRQEN, imxtm->base + MXC_TCTL);
|
2009-02-19 03:58:40 +08:00
|
|
|
}
|
2015-05-22 22:42:55 +08:00
|
|
|
#define imx21_gpt_irq_disable imx1_gpt_irq_disable
|
2009-02-19 03:58:40 +08:00
|
|
|
|
2015-05-22 22:42:55 +08:00
|
|
|
static void imx31_gpt_irq_disable(struct imx_timer *imxtm)
|
2009-02-19 03:58:40 +08:00
|
|
|
{
|
2015-05-22 22:42:55 +08:00
|
|
|
writel_relaxed(0, imxtm->base + V2_IR);
|
|
|
|
}
|
|
|
|
#define imx6dl_gpt_irq_disable imx31_gpt_irq_disable
|
|
|
|
|
|
|
|
static void imx1_gpt_irq_enable(struct imx_timer *imxtm)
|
|
|
|
{
|
|
|
|
unsigned int tmp;
|
|
|
|
|
|
|
|
tmp = readl_relaxed(imxtm->base + MXC_TCTL);
|
|
|
|
writel_relaxed(tmp | MX1_2_TCTL_IRQEN, imxtm->base + MXC_TCTL);
|
|
|
|
}
|
|
|
|
#define imx21_gpt_irq_enable imx1_gpt_irq_enable
|
|
|
|
|
|
|
|
static void imx31_gpt_irq_enable(struct imx_timer *imxtm)
|
|
|
|
{
|
|
|
|
writel_relaxed(1<<0, imxtm->base + V2_IR);
|
|
|
|
}
|
|
|
|
#define imx6dl_gpt_irq_enable imx31_gpt_irq_enable
|
|
|
|
|
|
|
|
static void imx1_gpt_irq_acknowledge(struct imx_timer *imxtm)
|
|
|
|
{
|
|
|
|
writel_relaxed(0, imxtm->base + MX1_2_TSTAT);
|
2009-02-19 03:58:40 +08:00
|
|
|
}
|
|
|
|
|
2015-05-22 22:42:55 +08:00
|
|
|
static void imx21_gpt_irq_acknowledge(struct imx_timer *imxtm)
|
2009-02-19 03:58:40 +08:00
|
|
|
{
|
2015-05-22 22:42:55 +08:00
|
|
|
writel_relaxed(MX2_TSTAT_CAPT | MX2_TSTAT_COMP,
|
2015-05-22 22:23:28 +08:00
|
|
|
imxtm->base + MX1_2_TSTAT);
|
2009-02-19 03:58:40 +08:00
|
|
|
}
|
|
|
|
|
2015-05-22 22:42:55 +08:00
|
|
|
static void imx31_gpt_irq_acknowledge(struct imx_timer *imxtm)
|
|
|
|
{
|
|
|
|
writel_relaxed(V2_TSTAT_OF1, imxtm->base + V2_TSTAT);
|
|
|
|
}
|
|
|
|
#define imx6dl_gpt_irq_acknowledge imx31_gpt_irq_acknowledge
|
|
|
|
|
2011-05-08 21:09:47 +08:00
|
|
|
static void __iomem *sched_clock_reg;
|
2008-07-05 16:02:50 +08:00
|
|
|
|
2013-11-16 07:26:12 +08:00
|
|
|
static u64 notrace mxc_read_sched_clock(void)
|
2011-03-17 20:44:30 +08:00
|
|
|
{
|
2015-05-19 18:47:47 +08:00
|
|
|
return sched_clock_reg ? readl_relaxed(sched_clock_reg) : 0;
|
2011-03-17 20:44:30 +08:00
|
|
|
}
|
|
|
|
|
2014-01-22 19:35:44 +08:00
|
|
|
static struct delay_timer imx_delay_timer;
|
|
|
|
|
|
|
|
static unsigned long imx_read_current_timer(void)
|
|
|
|
{
|
2015-05-19 18:47:47 +08:00
|
|
|
return readl_relaxed(sched_clock_reg);
|
2014-01-22 19:35:44 +08:00
|
|
|
}
|
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
static int __init mxc_clocksource_init(struct imx_timer *imxtm)
|
2008-07-05 16:02:50 +08:00
|
|
|
{
|
2015-05-22 13:53:45 +08:00
|
|
|
unsigned int c = clk_get_rate(imxtm->clk_per);
|
2015-05-22 21:39:55 +08:00
|
|
|
void __iomem *reg = imxtm->base + imxtm->gpt->reg_tcn;
|
2008-07-05 16:02:50 +08:00
|
|
|
|
2014-01-22 19:35:44 +08:00
|
|
|
imx_delay_timer.read_current_timer = &imx_read_current_timer;
|
|
|
|
imx_delay_timer.freq = c;
|
|
|
|
register_current_timer_delay(&imx_delay_timer);
|
|
|
|
|
2011-05-08 21:09:47 +08:00
|
|
|
sched_clock_reg = reg;
|
2009-02-19 03:58:40 +08:00
|
|
|
|
2013-11-16 07:26:12 +08:00
|
|
|
sched_clock_register(mxc_read_sched_clock, 32, c);
|
2011-05-08 21:09:47 +08:00
|
|
|
return clocksource_mmio_init(reg, "mxc_timer1", c, 200, 32,
|
|
|
|
clocksource_mmio_readl_up);
|
2008-07-05 16:02:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* clock event */
|
|
|
|
|
2009-02-19 03:58:40 +08:00
|
|
|
static int mx1_2_set_next_event(unsigned long evt,
|
2015-05-22 22:23:28 +08:00
|
|
|
struct clock_event_device *ced)
|
2008-07-05 16:02:50 +08:00
|
|
|
{
|
2015-05-22 22:23:28 +08:00
|
|
|
struct imx_timer *imxtm = to_imx_timer(ced);
|
2008-07-05 16:02:50 +08:00
|
|
|
unsigned long tcmp;
|
|
|
|
|
2015-05-22 22:23:28 +08:00
|
|
|
tcmp = readl_relaxed(imxtm->base + MX1_2_TCN) + evt;
|
2008-07-05 16:02:50 +08:00
|
|
|
|
2015-05-22 22:23:28 +08:00
|
|
|
writel_relaxed(tcmp, imxtm->base + MX1_2_TCMP);
|
2009-02-19 03:58:40 +08:00
|
|
|
|
2015-05-22 22:23:28 +08:00
|
|
|
return (int)(tcmp - readl_relaxed(imxtm->base + MX1_2_TCN)) < 0 ?
|
2009-02-19 03:58:40 +08:00
|
|
|
-ETIME : 0;
|
|
|
|
}
|
|
|
|
|
2010-04-22 02:34:36 +08:00
|
|
|
static int v2_set_next_event(unsigned long evt,
|
2015-05-22 22:23:28 +08:00
|
|
|
struct clock_event_device *ced)
|
2009-02-19 03:58:40 +08:00
|
|
|
{
|
2015-05-22 22:23:28 +08:00
|
|
|
struct imx_timer *imxtm = to_imx_timer(ced);
|
2009-02-19 03:58:40 +08:00
|
|
|
unsigned long tcmp;
|
|
|
|
|
2015-05-22 22:23:28 +08:00
|
|
|
tcmp = readl_relaxed(imxtm->base + V2_TCN) + evt;
|
2009-02-19 03:58:40 +08:00
|
|
|
|
2015-05-22 22:23:28 +08:00
|
|
|
writel_relaxed(tcmp, imxtm->base + V2_TCMP);
|
2009-02-19 03:58:40 +08:00
|
|
|
|
2012-12-06 22:54:41 +08:00
|
|
|
return evt < 0x7fffffff &&
|
2015-05-22 22:23:28 +08:00
|
|
|
(int)(tcmp - readl_relaxed(imxtm->base + V2_TCN)) < 0 ?
|
2008-07-05 16:02:50 +08:00
|
|
|
-ETIME : 0;
|
|
|
|
}
|
|
|
|
|
2015-07-06 18:09:18 +08:00
|
|
|
static int mxc_shutdown(struct clock_event_device *ced)
|
|
|
|
{
|
|
|
|
struct imx_timer *imxtm = to_imx_timer(ced);
|
|
|
|
unsigned long flags;
|
|
|
|
u32 tcn;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The timer interrupt generation is disabled at least
|
|
|
|
* for enough time to call mxc_set_next_event()
|
|
|
|
*/
|
|
|
|
local_irq_save(flags);
|
|
|
|
|
|
|
|
/* Disable interrupt in GPT module */
|
|
|
|
imxtm->gpt->gpt_irq_disable(imxtm);
|
|
|
|
|
|
|
|
tcn = readl_relaxed(imxtm->base + imxtm->gpt->reg_tcn);
|
|
|
|
/* Set event time into far-far future */
|
|
|
|
writel_relaxed(tcn - 3, imxtm->base + imxtm->gpt->reg_tcmp);
|
|
|
|
|
|
|
|
/* Clear pending interrupt */
|
|
|
|
imxtm->gpt->gpt_irq_acknowledge(imxtm);
|
|
|
|
|
2008-07-05 16:02:50 +08:00
|
|
|
#ifdef DEBUG
|
2015-07-06 18:09:18 +08:00
|
|
|
printk(KERN_INFO "%s: changing mode\n", __func__);
|
2008-07-05 16:02:50 +08:00
|
|
|
#endif /* DEBUG */
|
|
|
|
|
2015-07-06 18:09:18 +08:00
|
|
|
local_irq_restore(flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mxc_set_oneshot(struct clock_event_device *ced)
|
2008-07-05 16:02:50 +08:00
|
|
|
{
|
2015-05-22 16:38:49 +08:00
|
|
|
struct imx_timer *imxtm = to_imx_timer(ced);
|
2008-07-05 16:02:50 +08:00
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The timer interrupt generation is disabled at least
|
|
|
|
* for enough time to call mxc_set_next_event()
|
|
|
|
*/
|
|
|
|
local_irq_save(flags);
|
|
|
|
|
|
|
|
/* Disable interrupt in GPT module */
|
2015-05-22 22:42:55 +08:00
|
|
|
imxtm->gpt->gpt_irq_disable(imxtm);
|
2008-07-05 16:02:50 +08:00
|
|
|
|
2015-07-06 18:09:18 +08:00
|
|
|
if (!clockevent_state_oneshot(ced)) {
|
2015-05-22 21:39:55 +08:00
|
|
|
u32 tcn = readl_relaxed(imxtm->base + imxtm->gpt->reg_tcn);
|
2008-07-05 16:02:50 +08:00
|
|
|
/* Set event time into far-far future */
|
2015-05-22 21:39:55 +08:00
|
|
|
writel_relaxed(tcn - 3, imxtm->base + imxtm->gpt->reg_tcmp);
|
2009-02-19 03:58:40 +08:00
|
|
|
|
2008-07-05 16:02:50 +08:00
|
|
|
/* Clear pending interrupt */
|
2015-05-22 22:42:55 +08:00
|
|
|
imxtm->gpt->gpt_irq_acknowledge(imxtm);
|
2008-07-05 16:02:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2015-07-06 18:09:18 +08:00
|
|
|
printk(KERN_INFO "%s: changing mode\n", __func__);
|
2008-07-05 16:02:50 +08:00
|
|
|
#endif /* DEBUG */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do not put overhead of interrupt enable/disable into
|
|
|
|
* mxc_set_next_event(), the core has about 4 minutes
|
|
|
|
* to call mxc_set_next_event() or shutdown clock after
|
|
|
|
* mode switching
|
|
|
|
*/
|
2015-07-06 18:09:18 +08:00
|
|
|
imxtm->gpt->gpt_irq_enable(imxtm);
|
|
|
|
local_irq_restore(flags);
|
|
|
|
|
|
|
|
return 0;
|
2008-07-05 16:02:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IRQ handler for the timer
|
|
|
|
*/
|
|
|
|
static irqreturn_t mxc_timer_interrupt(int irq, void *dev_id)
|
|
|
|
{
|
2015-05-22 16:38:49 +08:00
|
|
|
struct clock_event_device *ced = dev_id;
|
2015-05-22 21:39:55 +08:00
|
|
|
struct imx_timer *imxtm = to_imx_timer(ced);
|
2008-07-05 16:02:50 +08:00
|
|
|
uint32_t tstat;
|
|
|
|
|
2015-05-22 21:39:55 +08:00
|
|
|
tstat = readl_relaxed(imxtm->base + imxtm->gpt->reg_tstat);
|
2008-07-05 16:02:50 +08:00
|
|
|
|
2015-05-22 22:42:55 +08:00
|
|
|
imxtm->gpt->gpt_irq_acknowledge(imxtm);
|
2008-07-05 16:02:50 +08:00
|
|
|
|
2015-05-22 16:38:49 +08:00
|
|
|
ced->event_handler(ced);
|
2008-07-05 16:02:50 +08:00
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
static int __init mxc_clockevent_init(struct imx_timer *imxtm)
|
2008-07-05 16:02:50 +08:00
|
|
|
{
|
2015-05-22 16:38:49 +08:00
|
|
|
struct clock_event_device *ced = &imxtm->ced;
|
|
|
|
struct irqaction *act = &imxtm->act;
|
|
|
|
|
|
|
|
ced->name = "mxc_timer1";
|
2015-10-14 17:24:17 +08:00
|
|
|
ced->features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_DYNIRQ;
|
2015-07-06 18:09:18 +08:00
|
|
|
ced->set_state_shutdown = mxc_shutdown;
|
|
|
|
ced->set_state_oneshot = mxc_set_oneshot;
|
|
|
|
ced->tick_resume = mxc_shutdown;
|
2015-05-22 16:38:49 +08:00
|
|
|
ced->set_next_event = imxtm->gpt->set_next_event;
|
|
|
|
ced->rating = 200;
|
|
|
|
ced->cpumask = cpumask_of(0);
|
2015-10-14 17:24:17 +08:00
|
|
|
ced->irq = imxtm->irq;
|
2015-05-22 16:38:49 +08:00
|
|
|
clockevents_config_and_register(ced, clk_get_rate(imxtm->clk_per),
|
2013-01-12 19:50:05 +08:00
|
|
|
0xff, 0xfffffffe);
|
2008-07-05 16:02:50 +08:00
|
|
|
|
2015-05-22 16:38:49 +08:00
|
|
|
act->name = "i.MX Timer Tick";
|
|
|
|
act->flags = IRQF_TIMER | IRQF_IRQPOLL;
|
|
|
|
act->handler = mxc_timer_interrupt;
|
|
|
|
act->dev_id = ced;
|
|
|
|
|
|
|
|
return setup_irq(imxtm->irq, act);
|
2008-07-05 16:02:50 +08:00
|
|
|
}
|
|
|
|
|
2015-05-15 14:24:41 +08:00
|
|
|
static void imx1_gpt_setup_tctl(struct imx_timer *imxtm)
|
|
|
|
{
|
|
|
|
u32 tctl_val;
|
|
|
|
|
|
|
|
tctl_val = MX1_2_TCTL_FRR | MX1_2_TCTL_CLK_PCLK1 | MXC_TCTL_TEN;
|
|
|
|
writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
|
|
|
|
}
|
|
|
|
#define imx21_gpt_setup_tctl imx1_gpt_setup_tctl
|
|
|
|
|
|
|
|
static void imx31_gpt_setup_tctl(struct imx_timer *imxtm)
|
|
|
|
{
|
|
|
|
u32 tctl_val;
|
|
|
|
|
|
|
|
tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
|
|
|
|
if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8)
|
|
|
|
tctl_val |= V2_TCTL_CLK_OSC_DIV8;
|
|
|
|
else
|
|
|
|
tctl_val |= V2_TCTL_CLK_PER;
|
|
|
|
|
|
|
|
writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void imx6dl_gpt_setup_tctl(struct imx_timer *imxtm)
|
2008-07-05 16:02:50 +08:00
|
|
|
{
|
2015-05-15 14:24:41 +08:00
|
|
|
u32 tctl_val;
|
|
|
|
|
|
|
|
tctl_val = V2_TCTL_FRR | V2_TCTL_WAITEN | MXC_TCTL_TEN;
|
|
|
|
if (clk_get_rate(imxtm->clk_per) == V2_TIMER_RATE_OSC_DIV8) {
|
|
|
|
tctl_val |= V2_TCTL_CLK_OSC_DIV8;
|
|
|
|
/* 24 / 8 = 3 MHz */
|
|
|
|
writel_relaxed(7 << V2_TPRER_PRE24M, imxtm->base + MXC_TPRER);
|
|
|
|
tctl_val |= V2_TCTL_24MEN;
|
|
|
|
} else {
|
|
|
|
tctl_val |= V2_TCTL_CLK_PER;
|
|
|
|
}
|
|
|
|
|
|
|
|
writel_relaxed(tctl_val, imxtm->base + MXC_TCTL);
|
|
|
|
}
|
2012-03-09 16:29:27 +08:00
|
|
|
|
2015-05-15 14:24:41 +08:00
|
|
|
static const struct imx_gpt_data imx1_gpt_data = {
|
2015-05-22 21:39:55 +08:00
|
|
|
.reg_tstat = MX1_2_TSTAT,
|
|
|
|
.reg_tcn = MX1_2_TCN,
|
|
|
|
.reg_tcmp = MX1_2_TCMP,
|
2015-05-22 22:42:55 +08:00
|
|
|
.gpt_irq_enable = imx1_gpt_irq_enable,
|
|
|
|
.gpt_irq_disable = imx1_gpt_irq_disable,
|
|
|
|
.gpt_irq_acknowledge = imx1_gpt_irq_acknowledge,
|
2015-05-15 14:24:41 +08:00
|
|
|
.gpt_setup_tctl = imx1_gpt_setup_tctl,
|
2015-05-22 15:51:41 +08:00
|
|
|
.set_next_event = mx1_2_set_next_event,
|
2015-05-15 14:24:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct imx_gpt_data imx21_gpt_data = {
|
2015-05-22 21:39:55 +08:00
|
|
|
.reg_tstat = MX1_2_TSTAT,
|
|
|
|
.reg_tcn = MX1_2_TCN,
|
|
|
|
.reg_tcmp = MX1_2_TCMP,
|
2015-05-22 22:42:55 +08:00
|
|
|
.gpt_irq_enable = imx21_gpt_irq_enable,
|
|
|
|
.gpt_irq_disable = imx21_gpt_irq_disable,
|
|
|
|
.gpt_irq_acknowledge = imx21_gpt_irq_acknowledge,
|
2015-05-15 14:24:41 +08:00
|
|
|
.gpt_setup_tctl = imx21_gpt_setup_tctl,
|
2015-05-22 15:51:41 +08:00
|
|
|
.set_next_event = mx1_2_set_next_event,
|
2015-05-15 14:24:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct imx_gpt_data imx31_gpt_data = {
|
2015-05-22 21:39:55 +08:00
|
|
|
.reg_tstat = V2_TSTAT,
|
|
|
|
.reg_tcn = V2_TCN,
|
|
|
|
.reg_tcmp = V2_TCMP,
|
2015-05-22 22:42:55 +08:00
|
|
|
.gpt_irq_enable = imx31_gpt_irq_enable,
|
|
|
|
.gpt_irq_disable = imx31_gpt_irq_disable,
|
|
|
|
.gpt_irq_acknowledge = imx31_gpt_irq_acknowledge,
|
2015-05-15 14:24:41 +08:00
|
|
|
.gpt_setup_tctl = imx31_gpt_setup_tctl,
|
2015-05-22 15:51:41 +08:00
|
|
|
.set_next_event = v2_set_next_event,
|
2015-05-15 14:24:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct imx_gpt_data imx6dl_gpt_data = {
|
2015-05-22 21:39:55 +08:00
|
|
|
.reg_tstat = V2_TSTAT,
|
|
|
|
.reg_tcn = V2_TCN,
|
|
|
|
.reg_tcmp = V2_TCMP,
|
2015-05-22 22:42:55 +08:00
|
|
|
.gpt_irq_enable = imx6dl_gpt_irq_enable,
|
|
|
|
.gpt_irq_disable = imx6dl_gpt_irq_disable,
|
|
|
|
.gpt_irq_acknowledge = imx6dl_gpt_irq_acknowledge,
|
2015-05-15 14:24:41 +08:00
|
|
|
.gpt_setup_tctl = imx6dl_gpt_setup_tctl,
|
2015-05-22 15:51:41 +08:00
|
|
|
.set_next_event = v2_set_next_event,
|
2015-05-15 14:24:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static void __init _mxc_timer_init(struct imx_timer *imxtm)
|
|
|
|
{
|
|
|
|
switch (imxtm->type) {
|
|
|
|
case GPT_TYPE_IMX1:
|
|
|
|
imxtm->gpt = &imx1_gpt_data;
|
|
|
|
break;
|
|
|
|
case GPT_TYPE_IMX21:
|
|
|
|
imxtm->gpt = &imx21_gpt_data;
|
|
|
|
break;
|
|
|
|
case GPT_TYPE_IMX31:
|
|
|
|
imxtm->gpt = &imx31_gpt_data;
|
|
|
|
break;
|
|
|
|
case GPT_TYPE_IMX6DL:
|
|
|
|
imxtm->gpt = &imx6dl_gpt_data;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
if (IS_ERR(imxtm->clk_per)) {
|
2012-05-16 18:29:53 +08:00
|
|
|
pr_err("i.MX timer: unable to get clk\n");
|
|
|
|
return;
|
2012-03-09 16:29:27 +08:00
|
|
|
}
|
2009-02-19 03:58:40 +08:00
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
if (!IS_ERR(imxtm->clk_ipg))
|
|
|
|
clk_prepare_enable(imxtm->clk_ipg);
|
2012-05-16 18:29:53 +08:00
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
clk_prepare_enable(imxtm->clk_per);
|
2008-07-05 16:02:50 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialise to a known state (all timers off, and timing reset)
|
|
|
|
*/
|
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
writel_relaxed(0, imxtm->base + MXC_TCTL);
|
|
|
|
writel_relaxed(0, imxtm->base + MXC_TPRER); /* see datasheet note */
|
2009-02-19 03:58:40 +08:00
|
|
|
|
2015-05-15 14:24:41 +08:00
|
|
|
imxtm->gpt->gpt_setup_tctl(imxtm);
|
2008-07-05 16:02:50 +08:00
|
|
|
|
|
|
|
/* init and register the timer to the framework */
|
2015-05-22 13:53:45 +08:00
|
|
|
mxc_clocksource_init(imxtm);
|
|
|
|
mxc_clockevent_init(imxtm);
|
2008-07-05 16:02:50 +08:00
|
|
|
}
|
2014-04-05 23:57:45 +08:00
|
|
|
|
2015-05-15 11:41:39 +08:00
|
|
|
void __init mxc_timer_init(unsigned long pbase, int irq, enum imx_gpt_type type)
|
2014-05-27 17:04:46 +08:00
|
|
|
{
|
2015-05-22 13:53:45 +08:00
|
|
|
struct imx_timer *imxtm;
|
|
|
|
|
|
|
|
imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
|
|
|
|
BUG_ON(!imxtm);
|
2014-05-27 17:04:46 +08:00
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
imxtm->clk_per = clk_get_sys("imx-gpt.0", "per");
|
|
|
|
imxtm->clk_ipg = clk_get_sys("imx-gpt.0", "ipg");
|
2014-05-27 17:04:47 +08:00
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
imxtm->base = ioremap(pbase, SZ_4K);
|
|
|
|
BUG_ON(!imxtm->base);
|
|
|
|
|
2015-05-15 11:41:39 +08:00
|
|
|
imxtm->type = type;
|
2015-08-20 18:27:21 +08:00
|
|
|
imxtm->irq = irq;
|
2015-05-15 11:41:39 +08:00
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
_mxc_timer_init(imxtm);
|
2014-05-27 17:04:46 +08:00
|
|
|
}
|
|
|
|
|
2015-05-15 13:38:20 +08:00
|
|
|
static void __init mxc_timer_init_dt(struct device_node *np, enum imx_gpt_type type)
|
2014-04-05 23:57:45 +08:00
|
|
|
{
|
2015-05-22 13:53:45 +08:00
|
|
|
struct imx_timer *imxtm;
|
|
|
|
static int initialized;
|
2014-04-05 23:57:45 +08:00
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
/* Support one instance only */
|
|
|
|
if (initialized)
|
2014-07-13 13:34:00 +08:00
|
|
|
return;
|
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
imxtm = kzalloc(sizeof(*imxtm), GFP_KERNEL);
|
|
|
|
BUG_ON(!imxtm);
|
2014-04-05 23:57:45 +08:00
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
imxtm->base = of_iomap(np, 0);
|
|
|
|
WARN_ON(!imxtm->base);
|
|
|
|
imxtm->irq = irq_of_parse_and_map(np, 0);
|
|
|
|
|
|
|
|
imxtm->clk_ipg = of_clk_get_by_name(np, "ipg");
|
2014-05-27 17:04:46 +08:00
|
|
|
|
ARM: imx: source gpt per clk from OSC for system timer
On i.MX6Q TO > 1.0, i.MX6DL and i.MX6SX, gpt per clock
can be from OSC instead of ipg_per, as ipg_per's rate
may be scaled when system enter low bus mode, to keep
system timer NOT drift, better to make gpt per clock
at fixed rate, here add support for gpt per clock to
be from OSC which is at fixed rate always.
There are some difference on this implementation of
gpt per clock source, see below for details:
i.MX6Q TO > 1.0: GPT_CR_CLKSRC, b'101 selects fix clock
of OSC / 8 for gpt per clk;
i.MX6DL and i.MX6SX: GPT_CR_CLKSRC, b'101 selects OSC
for gpt per clk, and we must enable GPT_CR_24MEM to
enable OSC clk source for gpt per, GPT_PR_PRESCALER24M
is for pre-scaling of this OSC clk, here set it to 8
to make gpt per clk is 3MHz;
i.MX6SL: ipg_per can be from OSC directly, so no need to
implement this new clk source for gpt per.
Signed-off-by: Anson Huang <b20788@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
2014-09-11 11:29:42 +08:00
|
|
|
/* Try osc_per first, and fall back to per otherwise */
|
2015-05-22 13:53:45 +08:00
|
|
|
imxtm->clk_per = of_clk_get_by_name(np, "osc_per");
|
|
|
|
if (IS_ERR(imxtm->clk_per))
|
|
|
|
imxtm->clk_per = of_clk_get_by_name(np, "per");
|
|
|
|
|
2015-05-15 13:38:20 +08:00
|
|
|
imxtm->type = type;
|
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
_mxc_timer_init(imxtm);
|
ARM: imx: source gpt per clk from OSC for system timer
On i.MX6Q TO > 1.0, i.MX6DL and i.MX6SX, gpt per clock
can be from OSC instead of ipg_per, as ipg_per's rate
may be scaled when system enter low bus mode, to keep
system timer NOT drift, better to make gpt per clock
at fixed rate, here add support for gpt per clock to
be from OSC which is at fixed rate always.
There are some difference on this implementation of
gpt per clock source, see below for details:
i.MX6Q TO > 1.0: GPT_CR_CLKSRC, b'101 selects fix clock
of OSC / 8 for gpt per clk;
i.MX6DL and i.MX6SX: GPT_CR_CLKSRC, b'101 selects OSC
for gpt per clk, and we must enable GPT_CR_24MEM to
enable OSC clk source for gpt per, GPT_PR_PRESCALER24M
is for pre-scaling of this OSC clk, here set it to 8
to make gpt per clk is 3MHz;
i.MX6SL: ipg_per can be from OSC directly, so no need to
implement this new clk source for gpt per.
Signed-off-by: Anson Huang <b20788@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
2014-09-11 11:29:42 +08:00
|
|
|
|
2015-05-22 13:53:45 +08:00
|
|
|
initialized = 1;
|
2014-04-05 23:57:45 +08:00
|
|
|
}
|
2015-05-15 13:38:20 +08:00
|
|
|
|
|
|
|
static void __init imx1_timer_init_dt(struct device_node *np)
|
|
|
|
{
|
|
|
|
mxc_timer_init_dt(np, GPT_TYPE_IMX1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init imx21_timer_init_dt(struct device_node *np)
|
|
|
|
{
|
|
|
|
mxc_timer_init_dt(np, GPT_TYPE_IMX21);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init imx31_timer_init_dt(struct device_node *np)
|
|
|
|
{
|
|
|
|
enum imx_gpt_type type = GPT_TYPE_IMX31;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We were using the same compatible string for i.MX6Q/D and i.MX6DL/S
|
|
|
|
* GPT device, while they actually have different programming model.
|
|
|
|
* This is a workaround to keep the existing i.MX6DL/S DTBs continue
|
|
|
|
* working with the new kernel.
|
|
|
|
*/
|
|
|
|
if (of_machine_is_compatible("fsl,imx6dl"))
|
|
|
|
type = GPT_TYPE_IMX6DL;
|
|
|
|
|
|
|
|
mxc_timer_init_dt(np, type);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init imx6dl_timer_init_dt(struct device_node *np)
|
|
|
|
{
|
|
|
|
mxc_timer_init_dt(np, GPT_TYPE_IMX6DL);
|
|
|
|
}
|
|
|
|
|
|
|
|
CLOCKSOURCE_OF_DECLARE(imx1_timer, "fsl,imx1-gpt", imx1_timer_init_dt);
|
|
|
|
CLOCKSOURCE_OF_DECLARE(imx21_timer, "fsl,imx21-gpt", imx21_timer_init_dt);
|
2015-06-28 05:11:44 +08:00
|
|
|
CLOCKSOURCE_OF_DECLARE(imx27_timer, "fsl,imx27-gpt", imx21_timer_init_dt);
|
2015-05-15 13:38:20 +08:00
|
|
|
CLOCKSOURCE_OF_DECLARE(imx31_timer, "fsl,imx31-gpt", imx31_timer_init_dt);
|
|
|
|
CLOCKSOURCE_OF_DECLARE(imx25_timer, "fsl,imx25-gpt", imx31_timer_init_dt);
|
|
|
|
CLOCKSOURCE_OF_DECLARE(imx50_timer, "fsl,imx50-gpt", imx31_timer_init_dt);
|
|
|
|
CLOCKSOURCE_OF_DECLARE(imx51_timer, "fsl,imx51-gpt", imx31_timer_init_dt);
|
|
|
|
CLOCKSOURCE_OF_DECLARE(imx53_timer, "fsl,imx53-gpt", imx31_timer_init_dt);
|
|
|
|
CLOCKSOURCE_OF_DECLARE(imx6q_timer, "fsl,imx6q-gpt", imx31_timer_init_dt);
|
|
|
|
CLOCKSOURCE_OF_DECLARE(imx6dl_timer, "fsl,imx6dl-gpt", imx6dl_timer_init_dt);
|
|
|
|
CLOCKSOURCE_OF_DECLARE(imx6sl_timer, "fsl,imx6sl-gpt", imx6dl_timer_init_dt);
|
|
|
|
CLOCKSOURCE_OF_DECLARE(imx6sx_timer, "fsl,imx6sx-gpt", imx6dl_timer_init_dt);
|