* SMTC Patches [3 of 3]
@ 2008-09-09 20:32 Kevin D. Kissell
2010-02-23 5:42 ` Shinya Kuribayashi
0 siblings, 1 reply; 3+ messages in thread
From: Kevin D. Kissell @ 2008-09-09 20:32 UTC (permalink / raw)
To: Linux MIPS Org
[-- Attachment #1: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* compare_change_hazard (was Re: SMTC Patches [3 of 3])
@ 2010-02-23 5:42 ` Shinya Kuribayashi
0 siblings, 0 replies; 3+ messages in thread
From: Shinya Kuribayashi @ 2010-02-23 5:42 UTC (permalink / raw)
To: Kevin D. Kissell; +Cc: Linux MIPS Org
Hi Kevin and folks,
Recently I have encountered an awkward timer interrupt behavior
on a MIPS32r2 core running at 500+MHz, and find a useful comment
left in the kernel.
Here I have some question about compare_change_hazard(), which was
introduced by the commit. See below:
Kevin D. Kissell wrote:
>From ac801c3b5c31eb0d53bf08538965f82f59f5f39d Mon Sep 17 00:00:00 2001
>From: Kevin D. Kissell <kevink@paralogos.com>
>Date: Tue, 9 Sep 2008 21:48:52 +0200
>Subject: [PATCH] Rework of SMTC support to make it work with the new clock event
> system, allowing "tickless" operation, and to make it compatible
> with the use of the "wait_irqoff" idle loop. The new clocking
> scheme means that the previously optional IPI instant replay
> mechanism is now required, and has been made more robust.
> Signed-off-by: Kevin D. Kissell <kevink@paralogos.com>
>
>---
> arch/mips/Kconfig | 26 +--
> arch/mips/kernel/Makefile | 1 +
> arch/mips/kernel/cevt-r4k.c | 173 +++++------------
> arch/mips/kernel/cevt-smtc.c | 321 ++++++++++++++++++++++++++++++
> arch/mips/kernel/cpu-probe.c | 10 +-
> arch/mips/kernel/genex.S | 4 +-
> arch/mips/kernel/smtc.c | 254 +++++++++++++-----------
> arch/mips/mips-boards/malta/malta_smtc.c | 9 +-
> include/asm-mips/cevt-r4k.h | 46 +++++
> include/asm-mips/irqflags.h | 26 ++-
> include/asm-mips/smtc.h | 8 +-
> 11 files changed, 598 insertions(+), 280 deletions(-)
> create mode 100644 arch/mips/kernel/cevt-smtc.c
> create mode 100644 include/asm-mips/cevt-r4k.h
[snip]
>diff --git a/arch/mips/kernel/cevt-r4k.c b/arch/mips/kernel/cevt-r4k.c
>index 24a2d90..4a4c59f 100644
>--- a/arch/mips/kernel/cevt-r4k.c
>+++ b/arch/mips/kernel/cevt-r4k.c
[snip]
>@@ -177,7 +99,23 @@ static int c0_compare_int_pending(void)
> return (read_c0_cause() >> cp0_compare_irq) & 0x100;
> }
>
>-static int c0_compare_int_usable(void)
>+/*
>+ * Compare interrupt can be routed and latched outside the core,
>+ * so a single execution hazard barrier may not be enough to give
>+ * it time to clear as seen in the Cause register. 4 time the
>+ * pipeline depth seems reasonably conservative, and empirically
>+ * works better in configurations with high CPU/bus clock ratios.
>+ */
>+
>+#define compare_change_hazard() \
>+ do { \
>+ irq_disable_hazard(); \
>+ irq_disable_hazard(); \
>+ irq_disable_hazard(); \
>+ irq_disable_hazard(); \
>+ } while (0)
>+
>+int c0_compare_int_usable(void)
> {
> unsigned int delta;
> unsigned int cnt;
Above commets reasonably make sense and do help me, thanks :-)
On the other hand, the implementation of compare_change_hazard()
makes me wonder how this hazard works internally.
For MIPS32r2 cores (except for Octeon), irq_disable_hazard() will
be translated into "ehb" instruction, so the resulting compare_
change_hazard() is going to be
compare_change_hazard:
ehb
ehb
ehb
ehb
And I wonder how these instructions work. I think the first ehb
instruction will clear all execution hazards created by preceding
instruction(s) at that moment, this is fine. But I wonder,
* HOW do subsequent three "ehb" instructions work in the pipeline?
Do they make any "real" effect, or just work as "nop"?
* Kevin noted that "4 time the pipeline depth seems reasonably
convervative." Is current form of compare_change_hazard()
implemented in accordance with his comments?
* How many pipline clokcs are consumed for subsequent "ehb"
instruction?
and so on. I'd like to ask hardware people later, separately, but
any comments are appreciated.
Thanks in adavance.
Shinya
>@@ -187,7 +125,7 @@ static int c0_compare_int_usable(void)
> */
> if (c0_compare_int_pending()) {
> write_c0_compare(read_c0_count());
>- irq_disable_hazard();
>+ compare_change_hazard();
> if (c0_compare_int_pending())
> return 0;
> }
>@@ -196,7 +134,7 @@ static int c0_compare_int_usable(void)
> cnt = read_c0_count();
> cnt += delta;
> write_c0_compare(cnt);
>- irq_disable_hazard();
>+ compare_change_hazard();
> if ((int)(read_c0_count() - cnt) < 0)
> break;
> /* increase delta if the timer was already expired */
>@@ -205,11 +143,12 @@ static int c0_compare_int_usable(void)
> while ((int)(read_c0_count() - cnt) <= 0)
> ; /* Wait for expiry */
>
>+ compare_change_hazard();
> if (!c0_compare_int_pending())
> return 0;
>
> write_c0_compare(read_c0_count());
>- irq_disable_hazard();
>+ compare_change_hazard();
> if (c0_compare_int_pending())
> return 0;
>
--
Shinya Kuribayashi
NEC Electronics
^ permalink raw reply [flat|nested] 3+ messages in thread
* compare_change_hazard (was Re: SMTC Patches [3 of 3])
@ 2010-02-23 5:42 ` Shinya Kuribayashi
0 siblings, 0 replies; 3+ messages in thread
From: Shinya Kuribayashi @ 2010-02-23 5:42 UTC (permalink / raw)
To: Kevin D. Kissell; +Cc: Linux MIPS Org
Hi Kevin and folks,
Recently I have encountered an awkward timer interrupt behavior
on a MIPS32r2 core running at 500+MHz, and find a useful comment
left in the kernel.
Here I have some question about compare_change_hazard(), which was
introduced by the commit. See below:
Kevin D. Kissell wrote:
From ac801c3b5c31eb0d53bf08538965f82f59f5f39d Mon Sep 17 00:00:00 2001
>From: Kevin D. Kissell <kevink@paralogos.com>
>Date: Tue, 9 Sep 2008 21:48:52 +0200
>Subject: [PATCH] Rework of SMTC support to make it work with the new clock event
> system, allowing "tickless" operation, and to make it compatible
> with the use of the "wait_irqoff" idle loop. The new clocking
> scheme means that the previously optional IPI instant replay
> mechanism is now required, and has been made more robust.
> Signed-off-by: Kevin D. Kissell <kevink@paralogos.com>
>
>---
> arch/mips/Kconfig | 26 +--
> arch/mips/kernel/Makefile | 1 +
> arch/mips/kernel/cevt-r4k.c | 173 +++++------------
> arch/mips/kernel/cevt-smtc.c | 321 ++++++++++++++++++++++++++++++
> arch/mips/kernel/cpu-probe.c | 10 +-
> arch/mips/kernel/genex.S | 4 +-
> arch/mips/kernel/smtc.c | 254 +++++++++++++-----------
> arch/mips/mips-boards/malta/malta_smtc.c | 9 +-
> include/asm-mips/cevt-r4k.h | 46 +++++
> include/asm-mips/irqflags.h | 26 ++-
> include/asm-mips/smtc.h | 8 +-
> 11 files changed, 598 insertions(+), 280 deletions(-)
> create mode 100644 arch/mips/kernel/cevt-smtc.c
> create mode 100644 include/asm-mips/cevt-r4k.h
[snip]
>diff --git a/arch/mips/kernel/cevt-r4k.c b/arch/mips/kernel/cevt-r4k.c
>index 24a2d90..4a4c59f 100644
>--- a/arch/mips/kernel/cevt-r4k.c
>+++ b/arch/mips/kernel/cevt-r4k.c
[snip]
>@@ -177,7 +99,23 @@ static int c0_compare_int_pending(void)
> return (read_c0_cause() >> cp0_compare_irq) & 0x100;
> }
>
>-static int c0_compare_int_usable(void)
>+/*
>+ * Compare interrupt can be routed and latched outside the core,
>+ * so a single execution hazard barrier may not be enough to give
>+ * it time to clear as seen in the Cause register. 4 time the
>+ * pipeline depth seems reasonably conservative, and empirically
>+ * works better in configurations with high CPU/bus clock ratios.
>+ */
>+
>+#define compare_change_hazard() \
>+ do { \
>+ irq_disable_hazard(); \
>+ irq_disable_hazard(); \
>+ irq_disable_hazard(); \
>+ irq_disable_hazard(); \
>+ } while (0)
>+
>+int c0_compare_int_usable(void)
> {
> unsigned int delta;
> unsigned int cnt;
Above commets reasonably make sense and do help me, thanks :-)
On the other hand, the implementation of compare_change_hazard()
makes me wonder how this hazard works internally.
For MIPS32r2 cores (except for Octeon), irq_disable_hazard() will
be translated into "ehb" instruction, so the resulting compare_
change_hazard() is going to be
compare_change_hazard:
ehb
ehb
ehb
ehb
And I wonder how these instructions work. I think the first ehb
instruction will clear all execution hazards created by preceding
instruction(s) at that moment, this is fine. But I wonder,
* HOW do subsequent three "ehb" instructions work in the pipeline?
Do they make any "real" effect, or just work as "nop"?
* Kevin noted that "4 time the pipeline depth seems reasonably
convervative." Is current form of compare_change_hazard()
implemented in accordance with his comments?
* How many pipline clokcs are consumed for subsequent "ehb"
instruction?
and so on. I'd like to ask hardware people later, separately, but
any comments are appreciated.
Thanks in adavance.
Shinya
>@@ -187,7 +125,7 @@ static int c0_compare_int_usable(void)
> */
> if (c0_compare_int_pending()) {
> write_c0_compare(read_c0_count());
>- irq_disable_hazard();
>+ compare_change_hazard();
> if (c0_compare_int_pending())
> return 0;
> }
>@@ -196,7 +134,7 @@ static int c0_compare_int_usable(void)
> cnt = read_c0_count();
> cnt += delta;
> write_c0_compare(cnt);
>- irq_disable_hazard();
>+ compare_change_hazard();
> if ((int)(read_c0_count() - cnt) < 0)
> break;
> /* increase delta if the timer was already expired */
>@@ -205,11 +143,12 @@ static int c0_compare_int_usable(void)
> while ((int)(read_c0_count() - cnt) <= 0)
> ; /* Wait for expiry */
>
>+ compare_change_hazard();
> if (!c0_compare_int_pending())
> return 0;
>
> write_c0_compare(read_c0_count());
>- irq_disable_hazard();
>+ compare_change_hazard();
> if (c0_compare_int_pending())
> return 0;
>
--
Shinya Kuribayashi
NEC Electronics
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-02-23 5:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-09 20:32 SMTC Patches [3 of 3] Kevin D. Kissell
2010-02-23 5:42 ` compare_change_hazard (was Re: SMTC Patches [3 of 3]) Shinya Kuribayashi
2010-02-23 5:42 ` Shinya Kuribayashi
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.