An error occurred fetching the project authors.
  1. 24 Nov, 2014 3 commits
    • Andrew Bresticker's avatar
      MIPS: Move gic.h to include/linux/irqchip/mips-gic.h · 4060bbe9
      Andrew Bresticker authored
      Now that the MIPS GIC irqchip lives in drivers/irqchip/, move
      its header over to include/linux/irqchip/.
      Signed-off-by: default avatarAndrew 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: default avatarRalf Baechle <ralf@linux-mips.org>
      4060bbe9
    • Andrew Bresticker's avatar
      irqchip: mips-gic: Support local interrupts · e9de688d
      Andrew Bresticker authored
      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: default avatarAndrew Bresticker <abrestic@chromium.org>
      Acked-by: default avatarJason Cooper <jason@lakedaemon.net>
      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: 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: default avatarRalf Baechle <ralf@linux-mips.org>
      e9de688d
    • Andrew Bresticker's avatar
      irqchip: mips-gic: Stop using per-platform mapping tables · 18743d27
      Andrew Bresticker authored
      Now that the GIC properly uses IRQ domains, kill off the per-platform
      routing tables that were used to make the GIC appear transparent.
      
      This includes:
       - removing the mapping tables and the support for applying them,
       - moving GIC IPI support to the GIC driver,
       - properly routing the i8259 through the GIC on Malta, and
       - updating IRQ assignments on SEAD-3 when the GIC is present.
      
      Platforms no longer will pass an interrupt mapping table to gic_init.
      Instead, they will pass the CPU interrupt vector (2 - 7) that they
      expect the GIC to route interrupts to.  Note that in EIC mode this
      value is ignored and all GIC interrupts are routed to EIC vector 1.
      Signed-off-by: default avatarAndrew Bresticker <abrestic@chromium.org>
      Acked-by: default avatarJason Cooper <jason@lakedaemon.net>
      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: 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/7816/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      18743d27
  2. 02 May, 2014 2 commits
  3. 14 Jul, 2013 1 commit
    • Paul Gortmaker's avatar
      MIPS: Delete __cpuinit/__CPUINIT usage from MIPS code · 078a55fc
      Paul Gortmaker authored
      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: default avatarPaul 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: default avatarRalf Baechle <ralf@linux-mips.org>
      078a55fc
  4. 09 May, 2013 1 commit