Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1284117

[PATCH v2 1/5] clocksource: h8300: Change to overflow interrupt

From Yoshinori Sato <ysato@users.sourceforge.jp>
Newsgroups linux.kernel
Subject [PATCH v2 1/5] clocksource: h8300: Change to overflow interrupt
Date 2015-12-04 18:50 +0100
Message-ID <qC2Ez-5Oo-45@gated-at.bofh.it> (permalink)
References <qBRzr-76c-3@gated-at.bofh.it> <qC2Ey-5Oo-11@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Counter overflow detection use for overflow interrupt

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
---
 drivers/clocksource/h8300_timer16.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/clocksource/h8300_timer16.c b/drivers/clocksource/h8300_timer16.c
index fc14a3f..b14a8da 100644
--- a/drivers/clocksource/h8300_timer16.c
+++ b/drivers/clocksource/h8300_timer16.c
@@ -14,7 +14,6 @@
 #include <linux/of_irq.h>
 
 #define TSTR	0
-#define TISRA	4
 #define TISRC	6
 
 #define TCR	0
@@ -27,9 +26,8 @@ struct timer16_priv {
 	void __iomem *mapcommon;
 	unsigned short cs_enabled;
 	unsigned char enb;
-	unsigned char imfa;
-	unsigned char imiea;
 	unsigned char ovf;
+	unsigned char ovie;
 	struct clk *clk;
 };
 
@@ -59,8 +57,8 @@ static irqreturn_t timer16_interrupt(int irq, void *dev_id)
 {
 	struct timer16_priv *p = (struct timer16_priv *)dev_id;
 
-	writeb(readb(p->mapcommon + TISRA) & ~p->imfa,
-		  p->mapcommon + TISRA);
+	writeb(readb(p->mapcommon + TISRC) & ~p->ovf,
+		  p->mapcommon + TISRC);
 	p->total_cycles += 0x10000;
 
 	return IRQ_HANDLED;
@@ -93,6 +91,8 @@ static int timer16_enable(struct clocksource *cs)
 	writeb(0x83, p->mapbase + TCR);
 	writeb(readb(p->mapcommon + TSTR) | p->enb,
 		  p->mapcommon + TSTR);
+	writeb(readb(p->mapcommon + TISRC) | p->ovie,
+		  p->mapcommon + TSTR);
 
 	p->cs_enabled = true;
 	return 0;
@@ -161,8 +161,8 @@ static void __init h8300_16timer_init(struct device_node *node)
 	timer16_priv.mapbase = base[REG_CH];
 	timer16_priv.mapcommon = base[REG_COMM];
 	timer16_priv.enb = 1 << ch;
-	timer16_priv.imfa = 1 << ch;
-	timer16_priv.imiea = 1 << (4 + ch);
+	timer16_priv.ovf = 1 << ch;
+	timer16_priv.ovie = 1 << (4 + ch);
 
 	ret = request_irq(irq, timer16_interrupt,
 			  IRQF_TIMER, timer16_priv.cs.name, &timer16_priv);
-- 
2.6.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/5] clocksource: h8300: driver update Yoshinori Sato <ysato@users.sourceforge.jp> - 2015-12-04 07:00 +0100
  [PATCH 4/5] clocksource: h8300: Initializer cleanup. Yoshinori Sato <ysato@users.sourceforge.jp> - 2015-12-04 07:00 +0100
  [PATCH 3/5] clocksource: h8300: Simplify delta handling Yoshinori Sato <ysato@users.sourceforge.jp> - 2015-12-04 07:00 +0100
  [PATCH v2 0/5] h8300 clocksource update Yoshinori Sato <ysato@users.sourceforge.jp> - 2015-12-04 18:50 +0100
    [PATCH v2 2/5] clocksource: h8300: Fix timer not overflow case Yoshinori Sato <ysato@users.sourceforge.jp> - 2015-12-04 18:50 +0100
    [PATCH v2 3/5] clocksource: h8300: Simplify delta handling Yoshinori Sato <ysato@users.sourceforge.jp> - 2015-12-04 18:50 +0100
    [PATCH v2 5/5] h8300: clocksource: Use ioread / iowrite Yoshinori Sato <ysato@users.sourceforge.jp> - 2015-12-04 18:50 +0100
    [PATCH v2 1/5] clocksource: h8300: Change to overflow interrupt Yoshinori Sato <ysato@users.sourceforge.jp> - 2015-12-04 18:50 +0100
    [PATCH v2 4/5] clocksource: h8300: Initializer cleanup. Yoshinori Sato <ysato@users.sourceforge.jp> - 2015-12-04 18:50 +0100

csiph-web