lkml.org 
[lkml]   [2017]   [Oct]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH V2 3/3] clocksource: mips-gic-timer: Add fastpath for local timer updates
    Date
    Always accessing the compare register via the CM redirect region is
    (relatively) slow. If the timer being updated is the current CPUs
    then this can be shortcutted by writing to the CM VP local region.

    Signed-off-by: Matt Redfearn <matt.redfearn@mips.com>
    ---

    drivers/clocksource/mips-gic-timer.c | 9 +++++++--
    1 file changed, 7 insertions(+), 2 deletions(-)

    diff --git a/drivers/clocksource/mips-gic-timer.c b/drivers/clocksource/mips-gic-timer.c
    index 8e8e3aa25b3f..e8dee5491227 100644
    --- a/drivers/clocksource/mips-gic-timer.c
    +++ b/drivers/clocksource/mips-gic-timer.c
    @@ -39,14 +39,19 @@ static u64 notrace gic_read_count(void)

    static int gic_next_event(unsigned long delta, struct clock_event_device *evt)
    {
    + int cpu = cpumask_first(evt->cpumask);
    unsigned long flags;
    u64 cnt;
    int res;

    cnt = gic_read_count();
    cnt += (u64)delta;
    - write_gic_vl_other(mips_cm_vp_id(cpumask_first(evt->cpumask)));
    - write_gic_vo_compare(cnt);
    + if (cpu == raw_smp_processor_id()) {
    + write_gic_vl_compare(cnt);
    + } else {
    + write_gic_vl_other(mips_cm_vp_id(cpu));
    + write_gic_vo_compare(cnt);
    + }
    res = ((int)(gic_read_count() - cnt) >= 0) ? -ETIME : 0;
    return res;
    }
    --
    2.7.4
    \
     
     \ /
      Last update: 2017-10-22 17:23    [W:4.090 / U:0.376 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site