1. 22 3月, 2006 1 次提交
    • R
      [ARM] Remove asm/arch/irq.h · 411ef7f4
      Russell King 提交于
      asm/arch/irq.h used to be included from asm/irq.h, but was removed
      from the ARM kernel a long time ago.  Consequently, the contents
      of asm/arch/irq.h (which mostly contain a definition for fixup_irq())
      have not been used.  Hence, remove asm/arch/irq.h.
      
      Some machine support files incorrectly included this file, making
      little or no use of the contents.  Move the contents to a local
      include file, and remove those include statements as well.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      411ef7f4
  2. 14 1月, 2006 1 次提交
  3. 09 1月, 2006 1 次提交
    • R
      [PATCH] IRQ type flags · 9ded96f2
      Russell King 提交于
      Some ARM platforms have the ability to program the interrupt controller to
      detect various interrupt edges and/or levels.  For some platforms, this is
      critical to setup correctly, particularly those which the setting is dependent
      on the device.
      
      Currently, ARM drivers do (eg) the following:
      
      	err = request_irq(irq, ...);
      
      	set_irq_type(irq, IRQT_RISING);
      
      However, if the interrupt has previously been programmed to be level sensitive
      (for whatever reason) then this will cause an interrupt storm.
      
      Hence, if we combine set_irq_type() with request_irq(), we can then safely set
      the type prior to unmasking the interrupt.  The unfortunate problem is that in
      order to support this, these flags need to be visible outside of the ARM
      architecture - drivers such as smc91x need these flags and they're
      cross-architecture.
      
      Finally, the SA_TRIGGER_* flag passed to request_irq() should reflect the
      property that the device would like.  The IRQ controller code should do its
      best to select the most appropriate supported mode.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      9ded96f2
  4. 06 1月, 2006 2 次提交
  5. 13 11月, 2005 1 次提交
  6. 09 11月, 2005 1 次提交
    • R
      [ARM] 3093/1: SharpSL PCMCIA Updates for Cxx00 models · a63ae442
      Richard Purdie 提交于
      Patch from Richard Purdie
      
      The Sharp SL-Cxx00 models have a combined power control for the SD
      and CF slot 0. This patch adds hooks to the scoop driver to allow
      machines to provide a custom control function for this and such a
      function is added for spitz/akita/borzoi.
      
      It also moves the gpio init code into the machine files as this
      is machine dependent and differs between some models. A couple of
      warnings when compiling for collie are also fixed.
      
      Signed-off-by: Richard Purdie
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      a63ae442
  7. 30 10月, 2005 2 次提交
  8. 14 10月, 2005 2 次提交
  9. 13 9月, 2005 1 次提交