1. 05 3月, 2007 2 次提交
  2. 27 2月, 2007 1 次提交
  3. 07 2月, 2007 4 次提交
  4. 30 1月, 2007 2 次提交
  5. 09 1月, 2007 2 次提交
  6. 12 12月, 2006 1 次提交
  7. 30 11月, 2006 3 次提交
  8. 29 11月, 2006 1 次提交
  9. 02 11月, 2006 2 次提交
  10. 01 11月, 2006 2 次提交
  11. 22 10月, 2006 1 次提交
  12. 20 10月, 2006 1 次提交
  13. 10 10月, 2006 1 次提交
  14. 09 10月, 2006 1 次提交
  15. 08 10月, 2006 1 次提交
  16. 27 9月, 2006 2 次提交
    • M
      [MIPS] Atlas: update interrupt handling · fc095a90
      Maciej W. Rozycki 提交于
      The following change updates the Atlas interrupt handling to match that
      of Malta.  Tested with a 5Kc and a 34Kf successfully.
      Signed-off-by: NMaciej W. Rozycki <macro@mips.com>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      fc095a90
    • K
      [MIPS] Patch to arch/mips/mips-boards/generic/time.c · 846acaa2
      Kevin D. Kissell 提交于
      In hooking up the perf counter overflow interrupt to the experimental
      deprecated-real-soon-now /proc/perf interface last night, I had to
      revisit arch/mips/mips-boards/generic/time.c, and discovered that
      when the 2.6.9-based SMTC prototype was merged with the more
      recent tree, it was missed that arch/mips/kernel/time.c had changed
      so that even in SMP kernels, timer_interrupt() calls
      local_timer_interrupt(), so there is no longer a need to invoke it
      directly from mips_timer_interrupt() in those cases where
      timer_interrupt() has been called.  So I got rid of that, and added the
      invocation of perf_irq() if Cause.PCI is set, more-or-less following the
      same logic as in the non-SMTC case, with the modifications that (a) a
      runtime check for Release 2 isn't done, because it's redundant in SMTC),
      and (b) we check for a clock interrupt regardless of the value returned
      by the perf counter service - I don't understand why we'd want to control
      that with perf_irq(), but maybe one of you knows the story.  I also got
      rid of the stupid warning about the unused variable when compiled for
      SMTC (another artifact of the merge). The result hasn't been beaten to
      death, but boots, seems stable, and supports extended precision event
      counting.
      Signed-off-by: NKevin D. Kissell <kevink@mips.com>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      846acaa2
  17. 14 7月, 2006 7 次提交
  18. 11 7月, 2006 1 次提交
  19. 01 7月, 2006 1 次提交
  20. 30 6月, 2006 1 次提交
    • I
      [PATCH] genirq: rename desc->handler to desc->chip · d1bef4ed
      Ingo Molnar 提交于
      This patch-queue improves the generic IRQ layer to be truly generic, by adding
      various abstractions and features to it, without impacting existing
      functionality.
      
      While the queue can be best described as "fix and improve everything in the
      generic IRQ layer that we could think of", and thus it consists of many
      smaller features and lots of cleanups, the one feature that stands out most is
      the new 'irq chip' abstraction.
      
      The irq-chip abstraction is about describing and coding and IRQ controller
      driver by mapping its raw hardware capabilities [and quirks, if needed] in a
      straightforward way, without having to think about "IRQ flow"
      (level/edge/etc.) type of details.
      
      This stands in contrast with the current 'irq-type' model of genirq
      architectures, which 'mixes' raw hardware capabilities with 'flow' details.
      The patchset supports both types of irq controller designs at once, and
      converts i386 and x86_64 to the new irq-chip design.
      
      As a bonus side-effect of the irq-chip approach, chained interrupt controllers
      (master/slave PIC constructs, etc.) are now supported by design as well.
      
      The end result of this patchset intends to be simpler architecture-level code
      and more consolidation between architectures.
      
      We reused many bits of code and many concepts from Russell King's ARM IRQ
      layer, the merging of which was one of the motivations for this patchset.
      
      This patch:
      
      rename desc->handler to desc->chip.
      
      Originally i did not want to do this, because it's a big patch.  But having
      both "desc->handler", "desc->handle_irq" and "action->handler" caused a
      large degree of confusion and made the code appear alot less clean than it
      truly is.
      
      I have also attempted a dual approach as well by introducing a
      desc->chip alias - but that just wasnt robust enough and broke
      frequently.
      
      So lets get over with this quickly.  The conversion was done automatically
      via scripts and converts all the code in the kernel.
      
      This renaming patch is the first one amongst the patches, so that the
      remaining patches can stay flexible and can be merged and split up
      without having some big monolithic patch act as a merge barrier.
      
      [akpm@osdl.org: build fix]
      [akpm@osdl.org: another build fix]
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      d1bef4ed
  21. 20 6月, 2006 3 次提交