linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2 0/2] timer: add imx tpm timer support
@ 2017-06-13  7:58 Dong Aisheng
  2017-06-13  7:58 ` [PATCH V2 1/2] dt-bindings: timer: add nxp tpm timer binding doc Dong Aisheng
  2017-06-13  7:58 ` [PATCH V2 2/2] timer: imx-tpm: add imx tpm timer support Dong Aisheng
  0 siblings, 2 replies; 7+ messages in thread
From: Dong Aisheng @ 2017-06-13  7:58 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-arm-kernel, daniel.lezcano, tglx, shawnguo, ping.bai,
	anson.huang, dongas86, kernel, arnd, Dong Aisheng

The Timer/PWM Module (TPM) supports input capture, output compare,
and the generation of PWM signals to control electric motor and power
management applications. The counter, compare and capture registers
are clocked by an asynchronous clock that can remain enabled in low
power modes. TPM can support global counter bus where one TPM drives
the counter bus for the others, provided bit width is the same.

This patch only adds the timer support. PWM would be added later.

ChangeLog:
v1->v2:
 * change to readl/writel from __raw_readl/writel according to Arnd's
   suggestion to avoid endian issue
 * add help information in Kconfig
 * add more error checking

Dong Aisheng (2):
  dt-bindings: timer: add nxp tpm timer binding doc
  timer: imx-tpm: add imx tpm timer support

 .../devicetree/bindings/timer/nxp,tpm-timer.txt    |  28 +++
 drivers/clocksource/Kconfig                        |   8 +
 drivers/clocksource/Makefile                       |   1 +
 drivers/clocksource/timer-imx-tpm.c                | 227 +++++++++++++++++++++
 4 files changed, 264 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/timer/nxp,tpm-timer.txt
 create mode 100644 drivers/clocksource/timer-imx-tpm.c

-- 
2.7.4

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH V2 1/2] dt-bindings: timer: add nxp tpm timer binding doc
  2017-06-13  7:58 [PATCH V2 0/2] timer: add imx tpm timer support Dong Aisheng
@ 2017-06-13  7:58 ` Dong Aisheng
  2017-06-13  7:58 ` [PATCH V2 2/2] timer: imx-tpm: add imx tpm timer support Dong Aisheng
  1 sibling, 0 replies; 7+ messages in thread
From: Dong Aisheng @ 2017-06-13  7:58 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-arm-kernel, daniel.lezcano, tglx, shawnguo, ping.bai,
	anson.huang, dongas86, kernel, arnd, Dong Aisheng, Mark Rutland,
	devicetree

Adding NXP Low Power Timer/Pulse Width Modulation Module (TPM)
binding doc.

Cc: Mark Rutland <mark.rutland@arm.com>
Cc: devicetree@vger.kernel.org
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Shawn Guo <shawnguo@kernel.org>
Cc: Bai Ping <ping.bai@nxp.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>

---
ChangeLog:
 v1->v2:
 * No changes
---
 .../devicetree/bindings/timer/nxp,tpm-timer.txt    | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/timer/nxp,tpm-timer.txt

diff --git a/Documentation/devicetree/bindings/timer/nxp,tpm-timer.txt b/Documentation/devicetree/bindings/timer/nxp,tpm-timer.txt
new file mode 100644
index 0000000..b4aa7dd
--- /dev/null
+++ b/Documentation/devicetree/bindings/timer/nxp,tpm-timer.txt
@@ -0,0 +1,28 @@
+NXP Low Power Timer/Pulse Width Modulation Module (TPM)
+
+The Timer/PWM Module (TPM) supports input capture, output compare,
+and the generation of PWM signals to control electric motor and power
+management applications. The counter, compare and capture registers
+are clocked by an asynchronous clock that can remain enabled in low
+power modes. TPM can support global counter bus where one TPM drives
+the counter bus for the others, provided bit width is the same.
+
+Required properties:
+
+- compatible :	should be "fsl,imx7ulp-tpm"
+- reg :		Specifies base physical address and size of the register sets
+		for the clock event device and clock source device.
+- interrupts :	Should be the clock event device interrupt.
+- clocks :	The clocks provided by the SoC to drive the timer, must contain
+		an entry for each entry in clock-names.
+- clock-names : Must include the following entries: "igp" and "per".
+
+Example:
+tpm5: tpm@40260000 {
+	compatible = "fsl,imx7ulp-tpm";
+	reg = <0x40260000 0x1000>;
+	interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
+	clocks = <&clks IMX7ULP_CLK_NIC1_BUS_DIV>,
+		 <&clks IMX7ULP_CLK_LPTPM5>;
+	clock-names = "ipg", "per";
+};
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH V2 2/2] timer: imx-tpm: add imx tpm timer support
  2017-06-13  7:58 [PATCH V2 0/2] timer: add imx tpm timer support Dong Aisheng
  2017-06-13  7:58 ` [PATCH V2 1/2] dt-bindings: timer: add nxp tpm timer binding doc Dong Aisheng
@ 2017-06-13  7:58 ` Dong Aisheng
  2017-06-13  8:19   ` Alexander Stein
  2017-06-13 13:54   ` Daniel Lezcano
  1 sibling, 2 replies; 7+ messages in thread
From: Dong Aisheng @ 2017-06-13  7:58 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-arm-kernel, daniel.lezcano, tglx, shawnguo, ping.bai,
	anson.huang, dongas86, kernel, arnd, Dong Aisheng, Anson Huang

IMX Timer/PWM Module (TPM) supports both timer and pwm function while
this patch only adds the timer support. PWM would be added later.

The TPM counter, compare and capture registers are clocked by an
asynchronous clock that can remain enabled in low power modes.

Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Shawn Guo <shawnguo@kernel.org>
Cc: Anson Huang <Anson.Huang@nxp.com>
Cc: Bai Ping <ping.bai@nxp.com>
Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>

---
ChangeLog:
v1->v2:
 * change to readl/writel from __raw_readl/writel according to Arnd's
   suggestion to avoid endian issue
 * add help information in Kconfig
 * add more error checking
---
 drivers/clocksource/Kconfig         |   8 ++
 drivers/clocksource/Makefile        |   1 +
 drivers/clocksource/timer-imx-tpm.c | 227 ++++++++++++++++++++++++++++++++++++
 3 files changed, 236 insertions(+)
 create mode 100644 drivers/clocksource/timer-imx-tpm.c

diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
index 545d541..33b4d31 100644
--- a/drivers/clocksource/Kconfig
+++ b/drivers/clocksource/Kconfig
@@ -603,6 +603,14 @@ config CLKSRC_IMX_GPT
 	depends on ARM && CLKDEV_LOOKUP
 	select CLKSRC_MMIO
 
+config CLKSRC_IMX_TPM
+	bool "Clocksource using i.MX TPM" if COMPILE_TEST
+	depends on ARM && CLKDEV_LOOKUP && GENERIC_CLOCKEVENTS
+	select CLKSRC_MMIO
+	help
+	  Enable this option to use IMX Timer/PWM Module (TPM) timer as
+	  clocksource.
+
 config CLKSRC_ST_LPC
 	bool "Low power clocksource found in the LPC" if COMPILE_TEST
 	select CLKSRC_OF if OF
diff --git a/drivers/clocksource/Makefile b/drivers/clocksource/Makefile
index 2b5b56a..9fdf8da0 100644
--- a/drivers/clocksource/Makefile
+++ b/drivers/clocksource/Makefile
@@ -67,6 +67,7 @@ obj-$(CONFIG_CLKSRC_VERSATILE)		+= versatile.o
 obj-$(CONFIG_CLKSRC_MIPS_GIC)		+= mips-gic-timer.o
 obj-$(CONFIG_CLKSRC_TANGO_XTAL)		+= tango_xtal.o
 obj-$(CONFIG_CLKSRC_IMX_GPT)		+= timer-imx-gpt.o
+obj-$(CONFIG_CLKSRC_IMX_TPM)		+= timer-imx-tpm.o
 obj-$(CONFIG_ASM9260_TIMER)		+= asm9260_timer.o
 obj-$(CONFIG_H8300_TMR8)		+= h8300_timer8.o
 obj-$(CONFIG_H8300_TMR16)		+= h8300_timer16.o
diff --git a/drivers/clocksource/timer-imx-tpm.c b/drivers/clocksource/timer-imx-tpm.c
new file mode 100644
index 0000000..940a4f75
--- /dev/null
+++ b/drivers/clocksource/timer-imx-tpm.c
@@ -0,0 +1,227 @@
+/*
+ * Copyright 2016 Freescale Semiconductor, Inc.
+ * Copyright 2017 NXP
+ *
+ * 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.
+ */
+
+#include <linux/clk.h>
+#include <linux/clockchips.h>
+#include <linux/clocksource.h>
+#include <linux/delay.h>
+#include <linux/interrupt.h>
+#include <linux/of_address.h>
+#include <linux/of_irq.h>
+#include <linux/sched_clock.h>
+
+#define TPM_SC				0x10
+#define TPM_SC_CMOD_INC_PER_CNT		(0x1 << 3)
+#define TPM_SC_CMOD_DIV_DEFAULT		0x3
+#define TPM_CNT				0x14
+#define TPM_MOD				0x18
+#define TPM_STATUS			0x1c
+#define TPM_STATUS_CH0F			BIT(0)
+#define TPM_C0SC			0x20
+#define TPM_C0SC_CHIE			BIT(6)
+#define TPM_C0SC_MODE_SHIFT		2
+#define TPM_C0SC_MODE_MASK		0x3c
+#define TPM_C0SC_MODE_SW_COMPARE	0x4
+#define TPM_C0V				0x24
+
+static void __iomem *timer_base;
+static struct clock_event_device clockevent_tpm;
+
+static inline void tpm_timer_disable(void)
+{
+	unsigned int val;
+
+	/* channel disable */
+	val = readl(timer_base + TPM_C0SC);
+	val &= ~(TPM_C0SC_MODE_MASK | TPM_C0SC_CHIE);
+	writel(val, timer_base + TPM_C0SC);
+}
+
+static inline void tpm_timer_enable(void)
+{
+	unsigned int val;
+
+	/* channel enabled in sw compare mode */
+	val = readl(timer_base + TPM_C0SC);
+	val |= (TPM_C0SC_MODE_SW_COMPARE << TPM_C0SC_MODE_SHIFT) |
+	       TPM_C0SC_CHIE;
+	writel(val, timer_base + TPM_C0SC);
+}
+
+static inline void tpm_irq_acknowledge(void)
+{
+	writel(TPM_STATUS_CH0F, timer_base + TPM_STATUS);
+}
+
+static struct delay_timer tpm_delay_timer;
+
+static unsigned long tpm_read_current_timer(void)
+{
+	return readl(timer_base + TPM_CNT);
+}
+
+static u64 notrace tpm_read_sched_clock(void)
+{
+	return readl(timer_base + TPM_CNT);
+}
+
+static int __init tpm_clocksource_init(unsigned long rate)
+{
+	tpm_delay_timer.read_current_timer = &tpm_read_current_timer;
+	tpm_delay_timer.freq = rate;
+	register_current_timer_delay(&tpm_delay_timer);
+
+	sched_clock_register(tpm_read_sched_clock, 32, rate);
+
+	return clocksource_mmio_init(timer_base + TPM_CNT, "imx-tpm",
+				     rate, 200, 32, clocksource_mmio_readl_up);
+}
+
+static int tpm_set_next_event(unsigned long delta,
+				struct clock_event_device *evt)
+{
+	unsigned long next, now;
+
+	next = readl(timer_base + TPM_CNT) + delta;
+	writel(next, timer_base + TPM_C0V);
+	now = readl(timer_base + TPM_CNT);
+
+	return (int)((next - now) <= 0) ? -ETIME : 0;
+}
+
+static int tpm_set_state_oneshot(struct clock_event_device *evt)
+{
+	tpm_timer_enable();
+
+	return 0;
+}
+
+static int tpm_set_state_shutdown(struct clock_event_device *evt)
+{
+	tpm_timer_disable();
+
+	return 0;
+}
+
+static irqreturn_t tpm_timer_interrupt(int irq, void *dev_id)
+{
+	struct clock_event_device *evt = &clockevent_tpm;
+
+	tpm_irq_acknowledge();
+
+	evt->event_handler(evt);
+
+	return IRQ_HANDLED;
+}
+
+static struct clock_event_device clockevent_tpm = {
+	.name			= "i.MX7ULP TPM Timer",
+	.features		= CLOCK_EVT_FEAT_ONESHOT,
+	.set_state_oneshot	= tpm_set_state_oneshot,
+	.set_next_event		= tpm_set_next_event,
+	.set_state_shutdown	= tpm_set_state_shutdown,
+	.rating			= 200,
+};
+
+static struct irqaction tpm_timer_irq = {
+	.name		= "i.MX7ULP TPM Timer",
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
+	.handler	= tpm_timer_interrupt,
+	.dev_id		= &clockevent_tpm,
+};
+
+static int __init tpm_clockevent_init(unsigned long rate, int irq)
+{
+	setup_irq(irq, &tpm_timer_irq);
+
+	clockevent_tpm.cpumask = cpumask_of(0);
+	clockevent_tpm.irq = irq;
+	clockevents_config_and_register(&clockevent_tpm,
+					rate, 0xff, 0xfffffffe);
+
+	return 0;
+}
+
+static int __init tpm_timer_init(struct device_node *np)
+{
+	struct clk *ipg, *per;
+	int irq, ret;
+	u32 rate;
+
+	timer_base = of_iomap(np, 0);
+	if (!timer_base) {
+		pr_err("tpm: failed to get base address\n");
+		return -ENXIO;
+	}
+
+	irq = irq_of_parse_and_map(np, 0);
+	if (!irq) {
+		pr_err("tpm: failed to get irq\n");
+		ret = -ENOENT;
+		goto err_iomap;
+	}
+
+	ipg = of_clk_get_by_name(np, "ipg");
+	per = of_clk_get_by_name(np, "per");
+	if (IS_ERR(ipg) || IS_ERR(per)) {
+		pr_err("tpm: failed to get igp or per clk\n");
+		ret = -ENODEV;
+		goto err_clk_get;
+	}
+
+	/* enable clk before accessing registers */
+	ret = clk_prepare_enable(ipg);
+	if (ret) {
+		pr_err("tpm: ipg clock enable failed (%d)\n", ret);
+		goto err_ipg_clk_enable;
+	}
+
+	ret = clk_prepare_enable(per);
+	if (ret) {
+		pr_err("tpm: per clock enable failed (%d)\n", ret);
+		goto err_per_clk_enable;
+	}
+
+	/*
+	 * Initialize tpm module to a known state
+	 * 1) Counter disabled
+	 * 2) TPM counter operates in up counting mode
+	 * 3) Timer Overflow Interrupt disabled
+	 * 4) Channel0 disabled
+	 * 5) DMA transfers disabled
+	 */
+	writel(0, timer_base + TPM_SC);
+	writel(0, timer_base + TPM_CNT);
+	writel(0, timer_base + TPM_C0SC);
+
+	/* increase per cnt, div 8 by default */
+	writel(TPM_SC_CMOD_INC_PER_CNT | TPM_SC_CMOD_DIV_DEFAULT,
+		     timer_base + TPM_SC);
+
+	/* set MOD register to maximum for free running mode */
+	writel(0xffffffff, timer_base + TPM_MOD);
+
+	rate = clk_get_rate(per) / 8;
+	tpm_clocksource_init(rate);
+	tpm_clockevent_init(rate, irq);
+
+	return 0;
+
+err_per_clk_enable:
+	clk_disable_unprepare(ipg);
+err_ipg_clk_enable:
+err_clk_get:
+	clk_put(per);
+	clk_put(ipg);
+err_iomap:
+	iounmap(timer_base);
+	return ret;
+}
+CLOCKSOURCE_OF_DECLARE(imx7ulp, "fsl,imx7ulp-tpm", tpm_timer_init);
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH V2 2/2] timer: imx-tpm: add imx tpm timer support
  2017-06-13  7:58 ` [PATCH V2 2/2] timer: imx-tpm: add imx tpm timer support Dong Aisheng
@ 2017-06-13  8:19   ` Alexander Stein
  2017-06-19 15:36     ` Dong Aisheng
  2017-06-13 13:54   ` Daniel Lezcano
  1 sibling, 1 reply; 7+ messages in thread
From: Alexander Stein @ 2017-06-13  8:19 UTC (permalink / raw)
  To: linux-kernel
  Cc: Dong Aisheng, linux-arm-kernel, daniel.lezcano, tglx, shawnguo,
	ping.bai, anson.huang, dongas86, kernel, arnd, Anson Huang

On Tuesday 13 June 2017 15:58:45, Dong Aisheng wrote:
> diff --git a/drivers/clocksource/timer-imx-tpm.c
> b/drivers/clocksource/timer-imx-tpm.c new file mode 100644
> index 0000000..940a4f75
> --- /dev/null
> +++ b/drivers/clocksource/timer-imx-tpm.c
> @@ -0,0 +1,227 @@
> [...]
> +static int tpm_set_next_event(unsigned long delta,
> +				struct clock_event_device *evt)
> +{
> +	unsigned long next, now;
> +
> +	next = readl(timer_base + TPM_CNT) + delta;
> +	writel(next, timer_base + TPM_C0V);
> +	now = readl(timer_base + TPM_CNT);

What about:
> now = readl(timer_base + TPM_CNT);
> next = now + delta;
> writel(next, timer_base + TPM_C0V);
> return 0;

> +	return (int)((next - now) <= 0) ? -ETIME : 0;

Can this error actually happen, even with your implementation?

Best regards,
Alexander

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH V2 2/2] timer: imx-tpm: add imx tpm timer support
  2017-06-13  7:58 ` [PATCH V2 2/2] timer: imx-tpm: add imx tpm timer support Dong Aisheng
  2017-06-13  8:19   ` Alexander Stein
@ 2017-06-13 13:54   ` Daniel Lezcano
  2017-06-19 15:34     ` Dong Aisheng
  1 sibling, 1 reply; 7+ messages in thread
From: Daniel Lezcano @ 2017-06-13 13:54 UTC (permalink / raw)
  To: Dong Aisheng, linux-kernel
  Cc: linux-arm-kernel, tglx, shawnguo, ping.bai, anson.huang,
	dongas86, kernel, arnd

On 13/06/2017 09:58, Dong Aisheng wrote:
> IMX Timer/PWM Module (TPM) supports both timer and pwm function while
> this patch only adds the timer support. PWM would be added later.
> 
> The TPM counter, compare and capture registers are clocked by an
> asynchronous clock that can remain enabled in low power modes.
> 
> Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Shawn Guo <shawnguo@kernel.org>
> Cc: Anson Huang <Anson.Huang@nxp.com>
> Cc: Bai Ping <ping.bai@nxp.com>
> Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
> 
> ---

nitpicking comments below.

Other than that sounds ok for me.

> ChangeLog:
> v1->v2:
>  * change to readl/writel from __raw_readl/writel according to Arnd's
>    suggestion to avoid endian issue
>  * add help information in Kconfig
>  * add more error checking
> ---
>  drivers/clocksource/Kconfig         |   8 ++
>  drivers/clocksource/Makefile        |   1 +
>  drivers/clocksource/timer-imx-tpm.c | 227 ++++++++++++++++++++++++++++++++++++
>  3 files changed, 236 insertions(+)
>  create mode 100644 drivers/clocksource/timer-imx-tpm.c
> 
> diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
> index 545d541..33b4d31 100644
> --- a/drivers/clocksource/Kconfig
> +++ b/drivers/clocksource/Kconfig
> @@ -603,6 +603,14 @@ config CLKSRC_IMX_GPT
>  	depends on ARM && CLKDEV_LOOKUP
>  	select CLKSRC_MMIO
>  
> +config CLKSRC_IMX_TPM
> +	bool "Clocksource using i.MX TPM" if COMPILE_TEST
> +	depends on ARM && CLKDEV_LOOKUP && GENERIC_CLOCKEVENTS
> +	select CLKSRC_MMIO
> +	help
> +	  Enable this option to use IMX Timer/PWM Module (TPM) timer as
> +	  clocksource.
> +
>  config CLKSRC_ST_LPC
>  	bool "Low power clocksource found in the LPC" if COMPILE_TEST
>  	select CLKSRC_OF if OF
> diff --git a/drivers/clocksource/Makefile b/drivers/clocksource/Makefile
> index 2b5b56a..9fdf8da0 100644
> --- a/drivers/clocksource/Makefile
> +++ b/drivers/clocksource/Makefile
> @@ -67,6 +67,7 @@ obj-$(CONFIG_CLKSRC_VERSATILE)		+= versatile.o
>  obj-$(CONFIG_CLKSRC_MIPS_GIC)		+= mips-gic-timer.o
>  obj-$(CONFIG_CLKSRC_TANGO_XTAL)		+= tango_xtal.o
>  obj-$(CONFIG_CLKSRC_IMX_GPT)		+= timer-imx-gpt.o
> +obj-$(CONFIG_CLKSRC_IMX_TPM)		+= timer-imx-tpm.o
>  obj-$(CONFIG_ASM9260_TIMER)		+= asm9260_timer.o
>  obj-$(CONFIG_H8300_TMR8)		+= h8300_timer8.o
>  obj-$(CONFIG_H8300_TMR16)		+= h8300_timer16.o
> diff --git a/drivers/clocksource/timer-imx-tpm.c b/drivers/clocksource/timer-imx-tpm.c
> new file mode 100644
> index 0000000..940a4f75
> --- /dev/null
> +++ b/drivers/clocksource/timer-imx-tpm.c
> @@ -0,0 +1,227 @@
> +/*
> + * Copyright 2016 Freescale Semiconductor, Inc.
> + * Copyright 2017 NXP
> + *
> + * 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.
> + */
> +
> +#include <linux/clk.h>
> +#include <linux/clockchips.h>
> +#include <linux/clocksource.h>
> +#include <linux/delay.h>
> +#include <linux/interrupt.h>
> +#include <linux/of_address.h>
> +#include <linux/of_irq.h>
> +#include <linux/sched_clock.h>
> +
> +#define TPM_SC				0x10
> +#define TPM_SC_CMOD_INC_PER_CNT		(0x1 << 3)
> +#define TPM_SC_CMOD_DIV_DEFAULT		0x3
> +#define TPM_CNT				0x14
> +#define TPM_MOD				0x18
> +#define TPM_STATUS			0x1c
> +#define TPM_STATUS_CH0F			BIT(0)
> +#define TPM_C0SC			0x20
> +#define TPM_C0SC_CHIE			BIT(6)
> +#define TPM_C0SC_MODE_SHIFT		2
> +#define TPM_C0SC_MODE_MASK		0x3c
> +#define TPM_C0SC_MODE_SW_COMPARE	0x4
> +#define TPM_C0V				0x24
> +
> +static void __iomem *timer_base;
> +static struct clock_event_device clockevent_tpm;
> +
> +static inline void tpm_timer_disable(void)
> +{
> +	unsigned int val;
> +
> +	/* channel disable */
> +	val = readl(timer_base + TPM_C0SC);
> +	val &= ~(TPM_C0SC_MODE_MASK | TPM_C0SC_CHIE);
> +	writel(val, timer_base + TPM_C0SC);
> +}
> +
> +static inline void tpm_timer_enable(void)
> +{
> +	unsigned int val;
> +
> +	/* channel enabled in sw compare mode */
> +	val = readl(timer_base + TPM_C0SC);
> +	val |= (TPM_C0SC_MODE_SW_COMPARE << TPM_C0SC_MODE_SHIFT) |
> +	       TPM_C0SC_CHIE;
> +	writel(val, timer_base + TPM_C0SC);
> +}
> +
> +static inline void tpm_irq_acknowledge(void)
> +{
> +	writel(TPM_STATUS_CH0F, timer_base + TPM_STATUS);
> +}
> +
> +static struct delay_timer tpm_delay_timer;

static inline unsigned long tpm_read_counter(void)
{
	readl(timer_base + TPM_CNT);
}

static unsigned long tpm_read_current_timer(void)
{
	return tpm_read_counter();
}

static u64 notrace tpm_read_sched_clock(void)
{
	return tpm_read_counter();
}

> +
> +static unsigned long tpm_read_current_timer(void)
> +{
> +	return readl(timer_base + TPM_CNT);
> +}
> +
> +static u64 notrace tpm_read_sched_clock(void)
> +{
> +	return readl(timer_base + TPM_CNT);
> +}
> +
> +static int __init tpm_clocksource_init(unsigned long rate)
> +{
> +	tpm_delay_timer.read_current_timer = &tpm_read_current_timer;
> +	tpm_delay_timer.freq = rate;
> +	register_current_timer_delay(&tpm_delay_timer);
> +
> +	sched_clock_register(tpm_read_sched_clock, 32, rate);
> +
> +	return clocksource_mmio_init(timer_base + TPM_CNT, "imx-tpm",
> +				     rate, 200, 32, clocksource_mmio_readl_up);
> +}
> +
> +static int tpm_set_next_event(unsigned long delta,
> +				struct clock_event_device *evt)
> +{
> +	unsigned long next, now;
> +
> +	next = readl(timer_base + TPM_CNT) + delta;
> +	writel(next, timer_base + TPM_C0V);
> +	now = readl(timer_base + TPM_CNT);

s/readl(..)/tpm_read_counter()/

> +
> +	return (int)((next - now) <= 0) ? -ETIME : 0;

Are you sure about this?

The following thread will help to sort it out:

http://lists.infradead.org/pipermail/linux-arm-kernel/2016-January/397287.html

A simple program with a nanosleep with a very small delta should spot
the issue immediately.

> +}
> +
> +static int tpm_set_state_oneshot(struct clock_event_device *evt)
> +{
> +	tpm_timer_enable();
> +
> +	return 0;
> +}
> +
> +static int tpm_set_state_shutdown(struct clock_event_device *evt)
> +{
> +	tpm_timer_disable();
> +
> +	return 0;
> +}
> +
> +static irqreturn_t tpm_timer_interrupt(int irq, void *dev_id)
> +{
> +	struct clock_event_device *evt = &clockevent_tpm;

	struct clock_event_device *evt = dev_id;

> +
> +	tpm_irq_acknowledge();
> +
> +	evt->event_handler(evt);
> +
> +	return IRQ_HANDLED;
> +}
> +
> +static struct clock_event_device clockevent_tpm = {
> +	.name			= "i.MX7ULP TPM Timer",
> +	.features		= CLOCK_EVT_FEAT_ONESHOT,
> +	.set_state_oneshot	= tpm_set_state_oneshot,
> +	.set_next_event		= tpm_set_next_event,
> +	.set_state_shutdown	= tpm_set_state_shutdown,
> +	.rating			= 200,
> +};
> +
> +static struct irqaction tpm_timer_irq = {
> +	.name		= "i.MX7ULP TPM Timer",
> +	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
> +	.handler	= tpm_timer_interrupt,
> +	.dev_id		= &clockevent_tpm,
> +};
> +
> +static int __init tpm_clockevent_init(unsigned long rate, int irq)
> +{
> +	setup_irq(irq, &tpm_timer_irq);
> +
> +	clockevent_tpm.cpumask = cpumask_of(0);
> +	clockevent_tpm.irq = irq;
> +	clockevents_config_and_register(&clockevent_tpm,
> +					rate, 0xff, 0xfffffffe);
> +
> +	return 0;
> +}
> +
> +static int __init tpm_timer_init(struct device_node *np)
> +{
> +	struct clk *ipg, *per;
> +	int irq, ret;
> +	u32 rate;
> +
> +	timer_base = of_iomap(np, 0);
> +	if (!timer_base) {
> +		pr_err("tpm: failed to get base address\n");
> +		return -ENXIO;
> +	}
> +
> +	irq = irq_of_parse_and_map(np, 0);
> +	if (!irq) {
> +		pr_err("tpm: failed to get irq\n");
> +		ret = -ENOENT;
> +		goto err_iomap;
> +	}
> +
> +	ipg = of_clk_get_by_name(np, "ipg");
> +	per = of_clk_get_by_name(np, "per");
> +	if (IS_ERR(ipg) || IS_ERR(per)) {
> +		pr_err("tpm: failed to get igp or per clk\n");
> +		ret = -ENODEV;
> +		goto err_clk_get;
> +	}
> +
> +	/* enable clk before accessing registers */
> +	ret = clk_prepare_enable(ipg);
> +	if (ret) {
> +		pr_err("tpm: ipg clock enable failed (%d)\n", ret);
> +		goto err_ipg_clk_enable;
> +	}
> +
> +	ret = clk_prepare_enable(per);
> +	if (ret) {
> +		pr_err("tpm: per clock enable failed (%d)\n", ret);
> +		goto err_per_clk_enable;
> +	}
> +
> +	/*
> +	 * Initialize tpm module to a known state
> +	 * 1) Counter disabled
> +	 * 2) TPM counter operates in up counting mode
> +	 * 3) Timer Overflow Interrupt disabled
> +	 * 4) Channel0 disabled
> +	 * 5) DMA transfers disabled
> +	 */
> +	writel(0, timer_base + TPM_SC);
> +	writel(0, timer_base + TPM_CNT);
> +	writel(0, timer_base + TPM_C0SC);
> +
> +	/* increase per cnt, div 8 by default */
> +	writel(TPM_SC_CMOD_INC_PER_CNT | TPM_SC_CMOD_DIV_DEFAULT,
> +		     timer_base + TPM_SC);
> +
> +	/* set MOD register to maximum for free running mode */
> +	writel(0xffffffff, timer_base + TPM_MOD);
> +
> +	rate = clk_get_rate(per) / 8;

	rate = clk_get_rate(per) >> 3;

> +	tpm_clocksource_init(rate);
> +	tpm_clockevent_init(rate, irq);
> +
> +	return 0;
> +
> +err_per_clk_enable:
> +	clk_disable_unprepare(ipg);
> +err_ipg_clk_enable:
> +err_clk_get:
> +	clk_put(per);
> +	clk_put(ipg);
> +err_iomap:
> +	iounmap(timer_base);
> +	return ret;
> +}
> +CLOCKSOURCE_OF_DECLARE(imx7ulp, "fsl,imx7ulp-tpm", tpm_timer_init);
> 


-- 
 <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH V2 2/2] timer: imx-tpm: add imx tpm timer support
  2017-06-13 13:54   ` Daniel Lezcano
@ 2017-06-19 15:34     ` Dong Aisheng
  0 siblings, 0 replies; 7+ messages in thread
From: Dong Aisheng @ 2017-06-19 15:34 UTC (permalink / raw)
  To: Daniel Lezcano
  Cc: Dong Aisheng, linux-kernel, linux-arm-kernel, tglx, shawnguo,
	ping.bai, anson.huang, kernel, arnd

On Tue, Jun 13, 2017 at 03:54:24PM +0200, Daniel Lezcano wrote:
> On 13/06/2017 09:58, Dong Aisheng wrote:
> > IMX Timer/PWM Module (TPM) supports both timer and pwm function while
> > this patch only adds the timer support. PWM would be added later.
> > 
> > The TPM counter, compare and capture registers are clocked by an
> > asynchronous clock that can remain enabled in low power modes.
> > 
> > Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
> > Cc: Arnd Bergmann <arnd@arndb.de>
> > Cc: Thomas Gleixner <tglx@linutronix.de>
> > Cc: Shawn Guo <shawnguo@kernel.org>
> > Cc: Anson Huang <Anson.Huang@nxp.com>
> > Cc: Bai Ping <ping.bai@nxp.com>
> > Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
> > 
> > ---
> 
> nitpicking comments below.
> 
> Other than that sounds ok for me.
> 
> > ChangeLog:
> > v1->v2:
> >  * change to readl/writel from __raw_readl/writel according to Arnd's
> >    suggestion to avoid endian issue
> >  * add help information in Kconfig
> >  * add more error checking
> > ---
> >  drivers/clocksource/Kconfig         |   8 ++
> >  drivers/clocksource/Makefile        |   1 +
> >  drivers/clocksource/timer-imx-tpm.c | 227 ++++++++++++++++++++++++++++++++++++
> >  3 files changed, 236 insertions(+)
> >  create mode 100644 drivers/clocksource/timer-imx-tpm.c
> > 
> > diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
> > index 545d541..33b4d31 100644
> > --- a/drivers/clocksource/Kconfig
> > +++ b/drivers/clocksource/Kconfig
> > @@ -603,6 +603,14 @@ config CLKSRC_IMX_GPT
> >  	depends on ARM && CLKDEV_LOOKUP
> >  	select CLKSRC_MMIO
> >  
> > +config CLKSRC_IMX_TPM
> > +	bool "Clocksource using i.MX TPM" if COMPILE_TEST
> > +	depends on ARM && CLKDEV_LOOKUP && GENERIC_CLOCKEVENTS
> > +	select CLKSRC_MMIO
> > +	help
> > +	  Enable this option to use IMX Timer/PWM Module (TPM) timer as
> > +	  clocksource.
> > +
> >  config CLKSRC_ST_LPC
> >  	bool "Low power clocksource found in the LPC" if COMPILE_TEST
> >  	select CLKSRC_OF if OF
> > diff --git a/drivers/clocksource/Makefile b/drivers/clocksource/Makefile
> > index 2b5b56a..9fdf8da0 100644
> > --- a/drivers/clocksource/Makefile
> > +++ b/drivers/clocksource/Makefile
> > @@ -67,6 +67,7 @@ obj-$(CONFIG_CLKSRC_VERSATILE)		+= versatile.o
> >  obj-$(CONFIG_CLKSRC_MIPS_GIC)		+= mips-gic-timer.o
> >  obj-$(CONFIG_CLKSRC_TANGO_XTAL)		+= tango_xtal.o
> >  obj-$(CONFIG_CLKSRC_IMX_GPT)		+= timer-imx-gpt.o
> > +obj-$(CONFIG_CLKSRC_IMX_TPM)		+= timer-imx-tpm.o
> >  obj-$(CONFIG_ASM9260_TIMER)		+= asm9260_timer.o
> >  obj-$(CONFIG_H8300_TMR8)		+= h8300_timer8.o
> >  obj-$(CONFIG_H8300_TMR16)		+= h8300_timer16.o
> > diff --git a/drivers/clocksource/timer-imx-tpm.c b/drivers/clocksource/timer-imx-tpm.c
> > new file mode 100644
> > index 0000000..940a4f75
> > --- /dev/null
> > +++ b/drivers/clocksource/timer-imx-tpm.c
> > @@ -0,0 +1,227 @@
> > +/*
> > + * Copyright 2016 Freescale Semiconductor, Inc.
> > + * Copyright 2017 NXP
> > + *
> > + * 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.
> > + */
> > +
> > +#include <linux/clk.h>
> > +#include <linux/clockchips.h>
> > +#include <linux/clocksource.h>
> > +#include <linux/delay.h>
> > +#include <linux/interrupt.h>
> > +#include <linux/of_address.h>
> > +#include <linux/of_irq.h>
> > +#include <linux/sched_clock.h>
> > +
> > +#define TPM_SC				0x10
> > +#define TPM_SC_CMOD_INC_PER_CNT		(0x1 << 3)
> > +#define TPM_SC_CMOD_DIV_DEFAULT		0x3
> > +#define TPM_CNT				0x14
> > +#define TPM_MOD				0x18
> > +#define TPM_STATUS			0x1c
> > +#define TPM_STATUS_CH0F			BIT(0)
> > +#define TPM_C0SC			0x20
> > +#define TPM_C0SC_CHIE			BIT(6)
> > +#define TPM_C0SC_MODE_SHIFT		2
> > +#define TPM_C0SC_MODE_MASK		0x3c
> > +#define TPM_C0SC_MODE_SW_COMPARE	0x4
> > +#define TPM_C0V				0x24
> > +
> > +static void __iomem *timer_base;
> > +static struct clock_event_device clockevent_tpm;
> > +
> > +static inline void tpm_timer_disable(void)
> > +{
> > +	unsigned int val;
> > +
> > +	/* channel disable */
> > +	val = readl(timer_base + TPM_C0SC);
> > +	val &= ~(TPM_C0SC_MODE_MASK | TPM_C0SC_CHIE);
> > +	writel(val, timer_base + TPM_C0SC);
> > +}
> > +
> > +static inline void tpm_timer_enable(void)
> > +{
> > +	unsigned int val;
> > +
> > +	/* channel enabled in sw compare mode */
> > +	val = readl(timer_base + TPM_C0SC);
> > +	val |= (TPM_C0SC_MODE_SW_COMPARE << TPM_C0SC_MODE_SHIFT) |
> > +	       TPM_C0SC_CHIE;
> > +	writel(val, timer_base + TPM_C0SC);
> > +}
> > +
> > +static inline void tpm_irq_acknowledge(void)
> > +{
> > +	writel(TPM_STATUS_CH0F, timer_base + TPM_STATUS);
> > +}
> > +
> > +static struct delay_timer tpm_delay_timer;
> 
> static inline unsigned long tpm_read_counter(void)
> {
> 	readl(timer_base + TPM_CNT);
> }
> 
> static unsigned long tpm_read_current_timer(void)
> {
> 	return tpm_read_counter();
> }
> 
> static u64 notrace tpm_read_sched_clock(void)
> {
> 	return tpm_read_counter();
> }
> 

Looks good to me

> > +
> > +static unsigned long tpm_read_current_timer(void)
> > +{
> > +	return readl(timer_base + TPM_CNT);
> > +}
> > +
> > +static u64 notrace tpm_read_sched_clock(void)
> > +{
> > +	return readl(timer_base + TPM_CNT);
> > +}
> > +
> > +static int __init tpm_clocksource_init(unsigned long rate)
> > +{
> > +	tpm_delay_timer.read_current_timer = &tpm_read_current_timer;
> > +	tpm_delay_timer.freq = rate;
> > +	register_current_timer_delay(&tpm_delay_timer);
> > +
> > +	sched_clock_register(tpm_read_sched_clock, 32, rate);
> > +
> > +	return clocksource_mmio_init(timer_base + TPM_CNT, "imx-tpm",
> > +				     rate, 200, 32, clocksource_mmio_readl_up);
> > +}
> > +
> > +static int tpm_set_next_event(unsigned long delta,
> > +				struct clock_event_device *evt)
> > +{
> > +	unsigned long next, now;
> > +
> > +	next = readl(timer_base + TPM_CNT) + delta;
> > +	writel(next, timer_base + TPM_C0V);
> > +	now = readl(timer_base + TPM_CNT);
> 
> s/readl(..)/tpm_read_counter()/
> 
> > +
> > +	return (int)((next - now) <= 0) ? -ETIME : 0;
> 
> Are you sure about this?
> 

Why we have -ETIME check here is because we have encountered a system
hang issue before when doing GPU stress test and finally proved to
be a timer event missing issue.

> The following thread will help to sort it out:
> 
> http://lists.infradead.org/pipermail/linux-arm-kernel/2016-January/397287.html
> 
> A simple program with a nanosleep with a very small delta should spot
> the issue immediately.
> 

Yes, TPM seems have a similar issue as vt8550 as you pointed out in above URL.

I've done some further debug and showed that the counter register write
may sometimes take tens of cycles to complete, although mostly are
only 1~3 cycles.

The sample code is as follows:
static int tpm_set_next_event(unsigned long delta,
                                struct clock_event_device *evt)
{
        unsigned long next, now, ret;

        now = __raw_readl(timer_base + TPM_CNT);
        next = now + delta;
        __raw_writel(next, timer_base + TPM_C0V);
        now = __raw_readl(timer_base + TPM_CNT);

        ret = next - now;
        
        if (ret > delta)
                printk("%s: overflow ret %d delta %lu\n", __func__, (int)ret, delta);

        return 0;
}

Below log is observed in some rare time:
tpm_set_next_event: overflow ret -38 delta 3

I guess it might be related to the SoC bus and fabric design where TPM
module is connected, but still not sure.
Will double check it with our IP owner later.

That's why we have -ETIME check.

BTW, since the MX7ULP A7 core is not fast (about 500Mhz) and i
observed hundreds of microsecond CPU execution delay from the upper
__hrtimer_start_range_ns to underlying expire checking in
clockevents_program_event() when system is a bit busy, probably we
should change the min_delta to a bigger value to reduce the event
reprogram. e.g. 300.

Last one question is in which situation we should add ETIME check?
I saw different users in kernel with either ETIME check or no ETIME
check, both are many.

I looked at Russel's detailed explaination in above URL,
it looks to me like users should specify a sufficient min_delta
to avoid -ETIME issue, is that right?

But we don't sure about that value as it varies when system running.
That's why i would keep both ETIME check and increase min_delta to 300.

May i know your suggestion?

Regards
Dong Aisheng

> > +}
> > +
> > +static int tpm_set_state_oneshot(struct clock_event_device *evt)
> > +{
> > +	tpm_timer_enable();
> > +
> > +	return 0;
> > +}
> > +
> > +static int tpm_set_state_shutdown(struct clock_event_device *evt)
> > +{
> > +	tpm_timer_disable();
> > +
> > +	return 0;
> > +}
> > +
> > +static irqreturn_t tpm_timer_interrupt(int irq, void *dev_id)
> > +{
> > +	struct clock_event_device *evt = &clockevent_tpm;
> 
> 	struct clock_event_device *evt = dev_id;
> 
> > +
> > +	tpm_irq_acknowledge();
> > +
> > +	evt->event_handler(evt);
> > +
> > +	return IRQ_HANDLED;
> > +}
> > +
> > +static struct clock_event_device clockevent_tpm = {
> > +	.name			= "i.MX7ULP TPM Timer",
> > +	.features		= CLOCK_EVT_FEAT_ONESHOT,
> > +	.set_state_oneshot	= tpm_set_state_oneshot,
> > +	.set_next_event		= tpm_set_next_event,
> > +	.set_state_shutdown	= tpm_set_state_shutdown,
> > +	.rating			= 200,
> > +};
> > +
> > +static struct irqaction tpm_timer_irq = {
> > +	.name		= "i.MX7ULP TPM Timer",
> > +	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
> > +	.handler	= tpm_timer_interrupt,
> > +	.dev_id		= &clockevent_tpm,
> > +};
> > +
> > +static int __init tpm_clockevent_init(unsigned long rate, int irq)
> > +{
> > +	setup_irq(irq, &tpm_timer_irq);
> > +
> > +	clockevent_tpm.cpumask = cpumask_of(0);
> > +	clockevent_tpm.irq = irq;
> > +	clockevents_config_and_register(&clockevent_tpm,
> > +					rate, 0xff, 0xfffffffe);
> > +
> > +	return 0;
> > +}
> > +
> > +static int __init tpm_timer_init(struct device_node *np)
> > +{
> > +	struct clk *ipg, *per;
> > +	int irq, ret;
> > +	u32 rate;
> > +
> > +	timer_base = of_iomap(np, 0);
> > +	if (!timer_base) {
> > +		pr_err("tpm: failed to get base address\n");
> > +		return -ENXIO;
> > +	}
> > +
> > +	irq = irq_of_parse_and_map(np, 0);
> > +	if (!irq) {
> > +		pr_err("tpm: failed to get irq\n");
> > +		ret = -ENOENT;
> > +		goto err_iomap;
> > +	}
> > +
> > +	ipg = of_clk_get_by_name(np, "ipg");
> > +	per = of_clk_get_by_name(np, "per");
> > +	if (IS_ERR(ipg) || IS_ERR(per)) {
> > +		pr_err("tpm: failed to get igp or per clk\n");
> > +		ret = -ENODEV;
> > +		goto err_clk_get;
> > +	}
> > +
> > +	/* enable clk before accessing registers */
> > +	ret = clk_prepare_enable(ipg);
> > +	if (ret) {
> > +		pr_err("tpm: ipg clock enable failed (%d)\n", ret);
> > +		goto err_ipg_clk_enable;
> > +	}
> > +
> > +	ret = clk_prepare_enable(per);
> > +	if (ret) {
> > +		pr_err("tpm: per clock enable failed (%d)\n", ret);
> > +		goto err_per_clk_enable;
> > +	}
> > +
> > +	/*
> > +	 * Initialize tpm module to a known state
> > +	 * 1) Counter disabled
> > +	 * 2) TPM counter operates in up counting mode
> > +	 * 3) Timer Overflow Interrupt disabled
> > +	 * 4) Channel0 disabled
> > +	 * 5) DMA transfers disabled
> > +	 */
> > +	writel(0, timer_base + TPM_SC);
> > +	writel(0, timer_base + TPM_CNT);
> > +	writel(0, timer_base + TPM_C0SC);
> > +
> > +	/* increase per cnt, div 8 by default */
> > +	writel(TPM_SC_CMOD_INC_PER_CNT | TPM_SC_CMOD_DIV_DEFAULT,
> > +		     timer_base + TPM_SC);
> > +
> > +	/* set MOD register to maximum for free running mode */
> > +	writel(0xffffffff, timer_base + TPM_MOD);
> > +
> > +	rate = clk_get_rate(per) / 8;
> 
> 	rate = clk_get_rate(per) >> 3;
> 
> > +	tpm_clocksource_init(rate);
> > +	tpm_clockevent_init(rate, irq);
> > +
> > +	return 0;
> > +
> > +err_per_clk_enable:
> > +	clk_disable_unprepare(ipg);
> > +err_ipg_clk_enable:
> > +err_clk_get:
> > +	clk_put(per);
> > +	clk_put(ipg);
> > +err_iomap:
> > +	iounmap(timer_base);
> > +	return ret;
> > +}
> > +CLOCKSOURCE_OF_DECLARE(imx7ulp, "fsl,imx7ulp-tpm", tpm_timer_init);
> > 
> 
> 
> -- 
>  <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
> 
> Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
> <http://twitter.com/#!/linaroorg> Twitter |
> <http://www.linaro.org/linaro-blog/> Blog
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH V2 2/2] timer: imx-tpm: add imx tpm timer support
  2017-06-13  8:19   ` Alexander Stein
@ 2017-06-19 15:36     ` Dong Aisheng
  0 siblings, 0 replies; 7+ messages in thread
From: Dong Aisheng @ 2017-06-19 15:36 UTC (permalink / raw)
  To: Alexander Stein
  Cc: linux-kernel, Dong Aisheng, linux-arm-kernel, daniel.lezcano,
	tglx, shawnguo, ping.bai, anson.huang, kernel, arnd

On Tue, Jun 13, 2017 at 10:19:47AM +0200, Alexander Stein wrote:
> On Tuesday 13 June 2017 15:58:45, Dong Aisheng wrote:
> > diff --git a/drivers/clocksource/timer-imx-tpm.c
> > b/drivers/clocksource/timer-imx-tpm.c new file mode 100644
> > index 0000000..940a4f75
> > --- /dev/null
> > +++ b/drivers/clocksource/timer-imx-tpm.c
> > @@ -0,0 +1,227 @@
> > [...]
> > +static int tpm_set_next_event(unsigned long delta,
> > +				struct clock_event_device *evt)
> > +{
> > +	unsigned long next, now;
> > +
> > +	next = readl(timer_base + TPM_CNT) + delta;
> > +	writel(next, timer_base + TPM_C0V);
> > +	now = readl(timer_base + TPM_CNT);
> 
> What about:
> > now = readl(timer_base + TPM_CNT);
> > next = now + delta;
> > writel(next, timer_base + TPM_C0V);
> > return 0;
> 
> > +	return (int)((next - now) <= 0) ? -ETIME : 0;
> 
> Can this error actually happen, even with your implementation?

Yes, i did observe some -ETIME when testing with nanosleep or
hrtimer during programing min_delta event, especially when system
is high loading. e.g. run GPU stress test.

Please also refer to another mail for details i just replied to Daniel.

Regards
Dong Aisheng

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-06-19 15:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-13  7:58 [PATCH V2 0/2] timer: add imx tpm timer support Dong Aisheng
2017-06-13  7:58 ` [PATCH V2 1/2] dt-bindings: timer: add nxp tpm timer binding doc Dong Aisheng
2017-06-13  7:58 ` [PATCH V2 2/2] timer: imx-tpm: add imx tpm timer support Dong Aisheng
2017-06-13  8:19   ` Alexander Stein
2017-06-19 15:36     ` Dong Aisheng
2017-06-13 13:54   ` Daniel Lezcano
2017-06-19 15:34     ` Dong Aisheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).