1. 03 8月, 2015 1 次提交
  2. 21 2月, 2015 1 次提交
  3. 24 11月, 2014 3 次提交
    • A
      MIPS: Move gic.h to include/linux/irqchip/mips-gic.h · 4060bbe9
      Andrew Bresticker 提交于
      Now that the MIPS GIC irqchip lives in drivers/irqchip/, move
      its header over to include/linux/irqchip/.
      Signed-off-by: NAndrew Bresticker <abrestic@chromium.org>
      Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Jason Cooper <jason@lakedaemon.net>
      Cc: Paul Burton <paul.burton@imgtec.com>
      Cc: Qais Yousef <qais.yousef@imgtec.com>
      Cc: John Crispin <blogic@openwrt.org>
      Cc: linux-mips@linux-mips.org
      Cc: linux-kernel@vger.kernel.org
      Patchwork: https://patchwork.linux-mips.org/patch/8129/Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      4060bbe9
    • A
      irqchip: mips-gic: Support local interrupts · e9de688d
      Andrew Bresticker 提交于
      The MIPS GIC supports 7 local interrupts, 2 of which are the GIC
      local watchdog and count/compare timer.  The remainder are CPU
      interrupts which may optionally be re-routed through the GIC.
      GIC hardware IRQs 0-6 are now used for local interrupts while
      hardware IRQs 7+ are used for external (shared) interrupts.
      
      Note that the 5 CPU interrupts may not be re-routable through
      the GIC.  In that case mapping will fail and the vectors reported
      in C0_IntCtl should be used instead.  gic_get_c0_compare_int() and
      gic_get_c0_perfcount_int() will return the correct IRQ number to
      use for the C0 timer and perfcounter interrupts based on the
      routability of those interrupts through the GIC.
      
      A separate irq_chip, with callbacks that mask/unmask the local
      interrupt on all CPUs, is used for the C0 timer and performance
      counter interrupts since all other platforms do not use the percpu
      IRQ API for those interrupts.
      
      Malta, SEAD-3, and the GIC clockevent driver have been updated
      to use local interrupts and the R4K clockevent driver has been
      updated to poll for C0 timer interrupts through the GIC when
      the GIC is present.
      Signed-off-by: NAndrew Bresticker <abrestic@chromium.org>
      Acked-by: NJason Cooper <jason@lakedaemon.net>
      Reviewed-by: NQais Yousef <qais.yousef@imgtec.com>
      Tested-by: NQais Yousef <qais.yousef@imgtec.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Jeffrey Deans <jeffrey.deans@imgtec.com>
      Cc: Markos Chandras <markos.chandras@imgtec.com>
      Cc: Paul Burton <paul.burton@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/7819/Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      e9de688d
    • A
      MIPS: Add hook to get C0 performance counter interrupt · a669efc4
      Andrew Bresticker 提交于
      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: NAndrew Bresticker <abrestic@chromium.org>
      Reviewed-by: NQais Yousef <qais.yousef@imgtec.com>
      Tested-by: NQais 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: NRalf Baechle <ralf@linux-mips.org>
      a669efc4
  4. 23 1月, 2014 1 次提交
  5. 19 9月, 2013 1 次提交
  6. 15 7月, 2013 1 次提交
    • P
      MIPS: Delete __cpuinit/__CPUINIT usage from MIPS code · 078a55fc
      Paul Gortmaker 提交于
      commit 3747069b25e419f6b51395f48127e9812abc3596 upstream.
      
      The __cpuinit type of throwaway sections might have made sense
      some time ago when RAM was more constrained, but now the savings
      do not offset the cost and complications.  For example, the fix in
      commit 5e427ec2 ("x86: Fix bit corruption at CPU resume time")
      is a good example of the nasty type of bugs that can be created
      with improper use of the various __init prefixes.
      
      After a discussion on LKML[1] it was decided that cpuinit should go
      the way of devinit and be phased out.  Once all the users are gone,
      we can then finally remove the macros themselves from linux/init.h.
      
      Note that some harmless section mismatch warnings may result, since
      notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
      and are flagged as __cpuinit  -- so if we remove the __cpuinit from
      the arch specific callers, we will also get section mismatch warnings.
      As an intermediate step, we intend to turn the linux/init.h cpuinit
      related content into no-ops as early as possible, since that will get
      rid of these warnings.  In any case, they are temporary and harmless.
      
      Here, we remove all the MIPS __cpuinit from C code and __CPUINIT
      from asm files.  MIPS is interesting in this respect, because there
      are also uasm users hiding behind their own renamed versions of the
      __cpuinit macros.
      
      [1] https://lkml.org/lkml/2013/5/20/589
      
      [ralf@linux-mips.org: Folded in Paul's followup fix.]
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      Cc: linux-mips@linux-mips.org
      Patchwork: https://patchwork.linux-mips.org/patch/5494/
      Patchwork: https://patchwork.linux-mips.org/patch/5495/
      Patchwork: https://patchwork.linux-mips.org/patch/5509/Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      078a55fc
  7. 08 5月, 2013 1 次提交
    • S
      MIPS: FW: Remove obsolete header file for MTI platforms. · 270690e0
      Steven J. Hill 提交于
      Remove 'arch/mips/include/asm/mips-boards/prom.h' and get rid of
      all inclusions of it by Malta and SEAD-3 platforms.
      
      [ralf@linux-mips.org: Fold in John Crispin <blogic@openwrt.org>'s "MIPS:
      ar7 powertv build"].
      
      [ralf@linux-mips.org: Fold in John Crispin <blogic@openwrt.org>'s "MIPS:
      unbreak powertv build"].
      
      [ralf@linux-mips.org: Test. Build. Your. Fscking. Code. Or...]
      Signed-off-by: NSteven J. Hill <Steven.Hill@imgtec.com>
      270690e0
  8. 01 2月, 2013 1 次提交
  9. 14 9月, 2012 1 次提交