Skip to content
  1. May 17, 2016
  2. May 13, 2016
    • James Hogan's avatar
      MIPS: Add perf counter feature · 30228c40
      James Hogan authored
      
      
      Add CPU feature for standard MIPS r2 performance counters, as determined
      by the Config1.PC bit. Both perf_events and oprofile probe this bit, so
      lets combine the probing and change both to use cpu_has_perf.
      
      This will also be used for VZ support in KVM to know whether performance
      counters exist which can be exposed to guests.
      
      [ralf@linux-mips.org: resolve conflict.]
      
      Signed-off-by: default avatarJames Hogan <james.hogan@imgtec.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
      Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
      Cc: Robert Richter <rric@kernel.org>
      Cc: linux-mips@linux-mips.org
      Cc: oprofile-list@lists.sf.net
      Patchwork: https://patchwork.linux-mips.org/patch/13226/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      30228c40
    • Paul Burton's avatar
      MIPS: Add P6600 cases to CPU switch statements · 1091bfa2
      Paul Burton authored
      
      
      Add cases supporting the P6600 CPU to various switch statements in
      core MIPS kernel code that define behaviour dependent upon the CPU.
      
      Signed-off-by: default avatarPaul Burton <paul.burton@imgtec.com>
      Cc: Maciej W. Rozycki <macro@imgtec.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Joshua Kinard <kumba@gentoo.org>
      Cc: Andrzej Hajda <a.hajda@samsung.com>
      Cc: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
      Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
      Cc: James Hogan <james.hogan@imgtec.com>
      Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Petri Gynther <pgynther@google.com>
      Cc: linux-mips@linux-mips.org
      Cc: linux-kernel@vger.kernel.org
      Patchwork: https://patchwork.linux-mips.org/patch/12343/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      1091bfa2
  3. Apr 03, 2016
  4. Aug 26, 2015
  5. Apr 01, 2015
  6. Mar 31, 2015
    • James Hogan's avatar
      MIPS: perf: Allow sharing IRQ with timer · a1ec0e18
      James Hogan authored
      
      
      When requesting the performance counter overflow interrupt, pass flags
      which are compatible with the cevt-r4k driver, in particular
      IRQF_SHARED so that the two handlers can share the same IRQ. This is
      possible since release 2 of the architecture where there are separate
      pending interrupt bits for the timer interrupt and the performance
      counter interrupt.
      
      This will be necessary since the FDC interrupt can also be arbitrarily
      routed to a CPU interrupt, possibly sharing with the timer, the
      performance counters, or both, and it isn't scalable to have all the
      handlers able to call other handlers that may be on the same IRQ line.
      
      Shared handlers must also have a unique device pointer so they can be
      individually removed, so &mipspmu is now passed in for that instead of
      NULL.
      
      Signed-off-by: default avatarJames Hogan <james.hogan@imgtec.com>
      Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
      Cc: linux-mips@linux-mips.org
      Cc: linux-kernel@vger.kernel.org
      Patchwork: https://patchwork.linux-mips.org/patch/9129/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      a1ec0e18
    • James Hogan's avatar
      MIPS: Remove redundant IPTI==IPPCI logic · 7eca5b14
      James Hogan authored
      
      
      The situation where the timer interrupt is on the same line as the
      performance counter interrupt is handled in per_cpu_trap_init() by
      setting cp0_perfcount_irq to -1, so there is no need to duplicate the
      logic conditional upon cp0_perfcount_irq >= 0 in perf
      (init_hw_perf_events()) and oprofile (mipsxx_init()).
      
      Signed-off-by: default avatarJames Hogan <james.hogan@imgtec.com>
      Cc: linux-mips@linux-mips.org
      Cc: linux-kernel@vger.kernel.org
      Patchwork: https://patchwork.linux-mips.org/patch/9125/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      7eca5b14
  7. Nov 24, 2014
    • Andrew Bresticker's avatar
      MIPS: Add hook to get C0 performance counter interrupt · a669efc4
      Andrew Bresticker authored
      
      
      The hardware perf event driver and oprofile interpret the global
      cp0_perfcount_irq differently: in the hardware perf event driver
      it is an offset from MIPS_CPU_IRQ_BASE and in oprofile it is the
      actual IRQ number.  This still works most of the time since
      MIPS_CPU_IRQ_BASE is usually 0, but is clearly wrong.  Since the
      performance counter interrupt may vary from platform to platform
      like the C0 timer interrupt, add the optional get_c0_perfcount_int
      hook which returns the IRQ number of the performance counter.
      The hook should return < 0 if the performance counter interrupt is
      shared with the timer.  If the hook is not present, the CPU vector
      reported in C0_IntCtl (cp0_perfcount_irq) is used.
      
      Signed-off-by: default avatarAndrew Bresticker <abrestic@chromium.org>
      Reviewed-by: default avatarQais Yousef <qais.yousef@imgtec.com>
      Tested-by: default avatarQais Yousef <qais.yousef@imgtec.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Jason Cooper <jason@lakedaemon.net>
      Cc: Andrew Bresticker <abrestic@chromium.org>
      Cc: Jeffrey Deans <jeffrey.deans@imgtec.com>
      Cc: Markos Chandras <markos.chandras@imgtec.com>
      Cc: Paul Burton <paul.burton@imgtec.com>
      Cc: Qais Yousef <qais.yousef@imgtec.com>
      Cc: Jonas Gorski <jogo@openwrt.org>
      Cc: John Crispin <blogic@openwrt.org>
      Cc: David Daney <ddaney.cavm@gmail.com>
      Cc: linux-mips@linux-mips.org
      Cc: linux-kernel@vger.kernel.org
      Patchwork: https://patchwork.linux-mips.org/patch/7805/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      a669efc4
    • Joe Perches's avatar
      mips: Convert pr_warning to pr_warn · 7178d2cd
      Joe Perches authored
      
      
      Use the much more common pr_warn instead of pr_warning
      with the goal of removing pr_warning eventually.
      
      Other miscellanea:
      
      o Coalesce formats
      o Realign arguments
      
      Signed-off-by: default avatarJoe Perches <joe@perches.com>
      Cc: linux-mips <linux-mips@linux-mips.org>
      Cc: LKML <linux-kernel@vger.kernel.org>
      Patchwork: https://patchwork.linux-mips.org/patch/7935/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      7178d2cd
  8. Aug 26, 2014
    • Christoph Lameter's avatar
      mips: Replace __get_cpu_var uses · 35898716
      Christoph Lameter authored
      
      
      __get_cpu_var() is used for multiple purposes in the kernel source. One of
      them is address calculation via the form &__get_cpu_var(x).  This calculates
      the address for the instance of the percpu variable of the current processor
      based on an offset.
      
      Other use cases are for storing and retrieving data from the current
      processors percpu area.  __get_cpu_var() can be used as an lvalue when
      writing data or on the right side of an assignment.
      
      __get_cpu_var() is defined as :
      
      #define __get_cpu_var(var) (*this_cpu_ptr(&(var)))
      
      __get_cpu_var() always only does an address determination. However, store
      and retrieve operations could use a segment prefix (or global register on
      other platforms) to avoid the address calculation.
      
      this_cpu_write() and this_cpu_read() can directly take an offset into a
      percpu area and use optimized assembly code to read and write per cpu
      variables.
      
      This patch converts __get_cpu_var into either an explicit address
      calculation using this_cpu_ptr() or into a use of this_cpu operations that
      use the offset.  Thereby address calculations are avoided and less registers
      are used when code is generated.
      
      At the end of the patch set all uses of __get_cpu_var have been removed so
      the macro is removed too.
      
      The patch set includes passes over all arches as well. Once these operations
      are used throughout then specialized macros can be defined in non -x86
      arches as well in order to optimize per cpu access by f.e.  using a global
      register that may be set to the per cpu base.
      
      Transformations done to __get_cpu_var()
      
      1. Determine the address of the percpu instance of the current processor.
      
      	DEFINE_PER_CPU(int, y);
      	int *x = &__get_cpu_var(y);
      
          Converts to
      
      	int *x = this_cpu_ptr(&y);
      
      2. Same as #1 but this time an array structure is involved.
      
      	DEFINE_PER_CPU(int, y[20]);
      	int *x = __get_cpu_var(y);
      
          Converts to
      
      	int *x = this_cpu_ptr(y);
      
      3. Retrieve the content of the current processors instance of a per cpu
      variable.
      
      	DEFINE_PER_CPU(int, y);
      	int x = __get_cpu_var(y)
      
         Converts to
      
      	int x = __this_cpu_read(y);
      
      4. Retrieve the content of a percpu struct
      
      	DEFINE_PER_CPU(struct mystruct, y);
      	struct mystruct x = __get_cpu_var(y);
      
         Converts to
      
      	memcpy(&x, this_cpu_ptr(&y), sizeof(x));
      
      5. Assignment to a per cpu variable
      
      	DEFINE_PER_CPU(int, y)
      	__get_cpu_var(y) = x;
      
         Converts to
      
      	__this_cpu_write(y, x);
      
      6. Increment/Decrement etc of a per cpu variable
      
      	DEFINE_PER_CPU(int, y);
      	__get_cpu_var(y)++
      
         Converts to
      
      	__this_cpu_inc(y)
      
      Cc: Ralf Baechle <ralf@linux-mips.org>
      Signed-off-by: default avatarChristoph Lameter <cl@linux.com>
      Signed-off-by: default avatarTejun Heo <tj@kernel.org>
      35898716
    • Yang Wei's avatar
      MIPS: perf: Mark pmu interupt IRQF_NO_THREAD · 014365f5
      Yang Wei authored
      
      
      In RT kernel, I ran into the following calltrace, so PMU interrupts cannot
      be threaded
      
      in_atomic(): 1, irqs_disabled(): 1, pid: 0, name: swapper/0
      INFO: lockdep is turned off.
      Call Trace:
      [<ffffffff8088595c>] dump_stack+0x1c/0x50
      [<ffffffff801a958c>] __might_sleep+0x13c/0x148
      [<ffffffff80891c54>] rt_spin_lock+0x3c/0xb0
      [<ffffffff801ad29c>] __wake_up+0x3c/0x80
      [<ffffffff80243ba4>] perf_event_wakeup+0x8c/0xf8
      [<ffffffff80243c50>] perf_pending_event+0x40/0x78
      [<ffffffff8023d88c>] irq_work_run+0x74/0xc0
      [<ffffffff80152640>] mipsxx_pmu_handle_shared_irq+0x110/0x228
      [<ffffffff8015276c>] mipsxx_pmu_handle_irq+0x14/0x30
      [<ffffffff801ffda4>] handle_irq_event_percpu+0xbc/0x470
      [<ffffffff80204478>] handle_percpu_irq+0x98/0xc8
      [<ffffffff801ff284>] generic_handle_irq+0x4c/0x68
      [<ffffffff8089748c>] do_IRQ+0x2c/0x48
      [<ffffffff80105864>] plat_irq_dispatch+0x64/0xd0
      
      [ralf@linux-mips.org: I don't see why based on this register dump the
      handler should be marked IRQF_NO_THREAD - but the handler is manipulating
      per-CPU resources so we don't want it to be rescheduled to another CPU.]
      
      Signed-off-by: default avatarYang Wei <Wei.Yang@windriver.com>
      Cc: a.p.zijlstra@chello.nl
      Cc: paulus@samba.org
      Cc: mingo@redhat.com
      Cc: acme@kernel.org
      Cc: linux-kernel@vger.kernel.org
      Cc: linux-mips@linux-mips.org
      Patchwork: https://patchwork.linux-mips.org/patch/7506/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      014365f5
  9. Aug 18, 2014
    • Yang Wei's avatar
      MIPS: perf: Mark pmu interupt IRQF_NO_THREAD · ec756d45
      Yang Wei authored
      
      
      In RT kernel, I ran into the following calltrace, so PMU interrupts cannot
      be threaded
      
      in_atomic(): 1, irqs_disabled(): 1, pid: 0, name: swapper/0
      INFO: lockdep is turned off.
      Call Trace:
      [<ffffffff8088595c>] dump_stack+0x1c/0x50
      [<ffffffff801a958c>] __might_sleep+0x13c/0x148
      [<ffffffff80891c54>] rt_spin_lock+0x3c/0xb0
      [<ffffffff801ad29c>] __wake_up+0x3c/0x80
      [<ffffffff80243ba4>] perf_event_wakeup+0x8c/0xf8
      [<ffffffff80243c50>] perf_pending_event+0x40/0x78
      [<ffffffff8023d88c>] irq_work_run+0x74/0xc0
      [<ffffffff80152640>] mipsxx_pmu_handle_shared_irq+0x110/0x228
      [<ffffffff8015276c>] mipsxx_pmu_handle_irq+0x14/0x30
      [<ffffffff801ffda4>] handle_irq_event_percpu+0xbc/0x470
      [<ffffffff80204478>] handle_percpu_irq+0x98/0xc8
      [<ffffffff801ff284>] generic_handle_irq+0x4c/0x68
      [<ffffffff8089748c>] do_IRQ+0x2c/0x48
      [<ffffffff80105864>] plat_irq_dispatch+0x64/0xd0
      
      [ralf@linux-mips.org: I don't see why based on this register dump the
      handler should be marked IRQF_NO_THREAD - but the handler is manipulating
      per-CPU resources so we don't want it to be rescheduled to another CPU.]
      
      Signed-off-by: default avatarYang Wei <Wei.Yang@windriver.com>
      Cc: a.p.zijlstra@chello.nl
      Cc: paulus@samba.org
      Cc: mingo@redhat.com
      Cc: acme@kernel.org
      Cc: linux-kernel@vger.kernel.org
      Cc: linux-mips@linux-mips.org
      Patchwork: https://patchwork.linux-mips.org/patch/7506/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      ec756d45
  10. Aug 01, 2014
  11. Mar 31, 2014
  12. Mar 06, 2014
  13. Oct 29, 2013
  14. Feb 01, 2013
  15. Dec 27, 2012
  16. Nov 09, 2012
  17. Oct 11, 2012
  18. Jul 23, 2012
    • Kelvin Cheung's avatar
      MIPS: Add CPU support for Loongson1B · 2fa36399
      Kelvin Cheung authored
      
      
      Loongson 1B is a 32-bit SoC designed by Institute of Computing Technology
      (ICT) and the Chinese Academy of Sciences (CAS), which implements the
      MIPS32 release 2 instruction set.
      
      [ralf@linux-mips.org: But which is not strictly a MIPS32 compliant device
      which also is why it identifies itself with the Legacy Vendor ID in the
      PrID register.  When applying the patch I shoveled some code around to
      keep things in alphabetical order and avoid forward declarations.]
      
      Signed-off-by: default avatarKelvin Cheung <keguang.zhang@gmail.com>
      Cc: To: linux-mips@linux-mips.org
      Cc: linux-kernel@vger.kernel.org
      Cc: wuzhangjin@gmail.com
      Cc: zhzhl555@gmail.com
      Cc: Kelvin Cheung <keguang.zhang@gmail.com>
      Patchwork: https://patchwork.linux-mips.org/patch/3976/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      2fa36399
  19. Jul 19, 2012
  20. May 15, 2012
  21. May 09, 2012
  22. Mar 05, 2012
  23. Dec 07, 2011
    • Dengcheng Zhu's avatar
      MIPS/Perf-events: Cleanup event->destroy at event init · ff5d7265
      Dengcheng Zhu authored
      
      
      Simplify the code by changing the place of event->destroy().
      
      Signed-off-by: default avatarDeng-Cheng Zhu <dczhu@mips.com>
      Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
      Cc: David Daney <david.daney@cavium.com>
      Cc: Eyal Barzilay <eyal@mips.com>
      Cc: Zenon Fortuna <zenon@mips.com>
      Patchwork: https://patchwork.linux-mips.org/patch/3109/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      ff5d7265
    • Dengcheng Zhu's avatar
      MIPS/Perf-events: Remove pmu and event state checking in validate_event() · 266623b7
      Dengcheng Zhu authored
      Why removing pmu checking:
      Since 3.2-rc1, when arch level event init is called, the event is already
      connected to its PMU. Also, validate_event() is _only_ called by
      validate_group() in event init, so there is no need of checking or
      temporarily assigning event pmu during validate_group().
      
      Why removing event state checking:
      Events could be created in PERF_EVENT_STATE_OFF (attr->disabled == 1), when
      these events go through this checking, validate_group() does dummy work.
      But we do need to do group scheduling emulation for them in event init.
      Again, validate_event() is _only_ called by validate_group().
      
      Reference: http://www.spinics.net/lists/mips/msg42190.html
      
      
      Signed-off-by: default avatarDeng-Cheng Zhu <dczhu@mips.com>
      Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
      Cc: David Daney <david.daney@cavium.com>
      Cc: Eyal Barzilay <eyal@mips.com>
      Cc: Zenon Fortuna <zenon@mips.com>
      Patchwork: https://patchwork.linux-mips.org/patch/3108/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      266623b7
    • Dengcheng Zhu's avatar
      MIPS/Perf-events: Remove erroneous check on active_events · 74653ccf
      Dengcheng Zhu authored
      
      
      Port the following patch for ARM by Mark Rutland:
      
      - 57ce9bb3
          ARM: 6902/1: perf: Remove erroneous check on active_events
      
          When initialising a PMU, there is a check to protect against races with
          other CPUs filling all of the available event slots. Since armpmu_add
          checks that an event can be scheduled, we do not need to do this at
          initialisation time. Furthermore the current code is broken because it
          assumes that atomic_inc_not_zero will unconditionally increment
          active_counts and then tries to decrement it again on failure.
      
          This patch removes the broken, redundant code.
      
      Signed-off-by: default avatarDeng-Cheng Zhu <dczhu@mips.com>
      Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
      Cc: David Daney <david.daney@cavium.com>
      Cc: Eyal Barzilay <eyal@mips.com>
      Cc: Zenon Fortuna <zenon@mips.com>
      Patchwork: https://patchwork.linux-mips.org/patch/3106/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      74653ccf
    • Dengcheng Zhu's avatar
      MIPS/Perf-events: Don't do validation on raw events · 2c1b54d3
      Dengcheng Zhu authored
      
      
      MIPS licensees may want to modify performance counters to count extra
      events. Also, now that the user is working on raw events, the manual is
      being used for sure. And feeding unsupported events shouldn't cause
      hardware failure and the like.
      
      [ralf@linux-mips.org: performance events also being used in internal
      performance evaluation and have a tendency to change as the micro-
      architecture evolves, even for minor revisions that may not be
      distinguishable by PrID.  It's not very practicable to maintain a list
      of all events and there is no real benefit.]
      
      Signed-off-by: default avatarDeng-Cheng Zhu <dczhu@mips.com>
      Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
      Cc: David Daney <david.daney@cavium.com>
      Cc: Eyal Barzilay <eyal@mips.com>
      Cc: Zenon Fortuna <zenon@mips.com>
      Patchwork: https://patchwork.linux-mips.org/patch/3107/
      
      
      Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      2c1b54d3
  24. Nov 14, 2011
  25. Oct 24, 2011
Loading