1. 08 12月, 2010 3 次提交
  2. 24 9月, 2010 2 次提交
    • S
      omap2: fix assorted compiler warnings · ca828760
      Sanjeev Premi 提交于
      This patch fixes these compiler warnings:
      
        CC      arch/arm/mach-omap2/mux.o
      arch/arm/mach-omap2/mux.c: In function 'omap_mux_init_gpio':
      arch/arm/mach-omap2/mux.c:90: warning: 'gpio_mux' may be used uninitial
      ized in this function
      
        CC      arch/arm/plat-omap/gpio.o
      arch/arm/plat-omap/gpio.c: In function 'omap2_gpio_resume_after_idle':
      arch/arm/plat-omap/gpio.c:2152: warning: 'l' may be used uninitialized
      in this function
      arch/arm/plat-omap/gpio.c: In function 'omap2_gpio_prepare_for_idle':
      arch/arm/plat-omap/gpio.c:2085: warning: 'l2' may be used uninitialized
      in this function
      arch/arm/plat-omap/gpio.c:2085: warning: 'l1' may be used uninitialized
      in this function
      
        CC      arch/arm/mach-omap2/board-omap4panda.o
      arch/arm/mach-omap2/board-omap4panda.c: In function 'omap4_panda_init':
      arch/arm/mach-omap2/board-omap4panda.c:277: warning: unused variable 's
      tatus'
      Signed-off-by: NSanjeev Premi <premi@ti.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      ca828760
    • K
      OMAP: GPIO: ensure debounce clocks are disabled during idle/suspend · 0aed0435
      Kevin Hilman 提交于
      If a GPIO bank has more than one GPIO with debounce enabled, the
      debounce clock will not be fully disabled before going to
      idle/suspend.
      
      In the idle path, we just do a single clk_disable() of the bank's
      debounce clock.  If there are multiple debounce-enabled GPIOs in the
      bank, that clocks usage count will be > 1, so the clk_disable() will
      not actually disable the clock.
      
      So the fix is to clk_disable() for every debounce-enabled GPIO in the
      bank (and an equivalent clk_enable() of course.)
      Signed-off-by: NKevin Hilman <khilman@deeprootsystems.com>
      0aed0435
  3. 02 8月, 2010 1 次提交
  4. 10 6月, 2010 1 次提交
  5. 28 5月, 2010 2 次提交
  6. 21 5月, 2010 1 次提交
  7. 13 5月, 2010 6 次提交
  8. 23 4月, 2010 1 次提交
  9. 12 3月, 2010 1 次提交
  10. 24 2月, 2010 1 次提交
  11. 16 2月, 2010 5 次提交
  12. 30 1月, 2010 1 次提交
  13. 09 1月, 2010 2 次提交
    • T
      omap: Remove uninitialized warning for gpio.c · 4cc6420c
      Tony Lindgren 提交于
      Flags is not used on 15xx.
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      4cc6420c
    • C
      omap: gpio: Simultaneously requested rising and falling edge · 4318f36b
      Cory Maccarrone 提交于
      Some chips, namely any OMAP1 chips using METHOD_MPUIO,
      OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
      interrupts in both rising and falling edge directions -- they can
      only respond to one direction or the other, depending on how the
      ICR is configured.
      
      Additionally, current code forces rising edge detection if both
      flags are specified:
      
              if (trigger & IRQ_TYPE_EDGE_RISING)
                      l |= 1 << gpio;
              else if (trigger & IRQ_TYPE_EDGE_FALLING)
                      l &= ~(1 << gpio);
              else
                      goto bad;
      
      This change implements a toggle function that will modify the ICR
      to flip the direction of interrupt for IRQs that are requested with
      both rising and falling flags.  The toggle function is not called
      for chips and GPIOs it does not apply to through the use of a flip_mask
      that's added on a per-bank basis.  The mask is only set for those
      GPIOs where a toggle is necessary.  Edge detection starts out the
      same as above with FALLING mode first.
      
      The toggle happens on EACH interrupt; without it, we have the
      following sequence of actions on GPIO transition:
      
        ICR    GPIO               Result
        0x1    0 -> 1 (rising)    Interrupt
        0x1    1 -> 0 (falling)   No interrupt
      
        (set ICR to 0x0 manually)
        0x0    0 -> 1 (rising)    No interrupt
        0x0    1 -> 0 (falling)   Interrupt
      
      That is, with the ICR set to 1 for a gpio, only rising edge interrupts
      are caught, and with it set to 0, only falling edge interrupts are
      caught.  If we add in the toggle, we get this:
      
        ICR    GPIO               Result
        0x1    0 -> 1 (rising)    Interrupt (ICR set to 0x0)
        0x0    1 -> 0 (falling)   Interrupt (ICR set to 0x1)
        0x1    0 -> 1 ...
      
      so, both rising and falling are caught, per the request for both
      (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
      Signed-off-by: NCory Maccarrone <darkstar6262@gmail.com>
      Acked-by: NKevin Hilman <khilman@deeprootsystems.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      4318f36b
  14. 16 12月, 2009 1 次提交
  15. 23 11月, 2009 1 次提交
    • C
      omap: GPIO module enable/disable · 058af1ea
      Charulatha V 提交于
      This patch disables a GPIO module when all pins of a GPIO
      module are inactive (clock gating forced at module level) and
      enables the module when any gpio in the module is requested.
      
      The module is enabled only when "mod_usage" indicates that no GPIO
      in that  module is currently active and the GPIO being requested
      is the 1st one to be active in that module.
      
      Each module would be disabled in omap_gpio_free() API when all
      GPIOs in a particular module becomes inactive. The module is
      re-enabled in omap_gpio_request() API when a GPIO is requested
      from the module that was previously disabled.
      
      Since individual GPIO's bookkeeping is added in this patch
      via "mod_usage", the same is used in omap_set_gpio_debounce()
      & omap_set_gpio_debounce_time() APIs to ensure that the gpio being
      used is actually "requested" prior to being used (Nishant Menon's
      <nm@ti.comSuggestion)
      
      GPIO module level details are specific to hardware and hence
      introducing this patch in low level layer (plat-omap/gpio.c)
      Signed-off-by: NCharulatha V <charu@ti.com>
      Acked-by: NNishanth Menon <nm@ti.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      058af1ea
  16. 19 11月, 2009 1 次提交
  17. 12 11月, 2009 1 次提交
  18. 20 10月, 2009 1 次提交
  19. 08 10月, 2009 3 次提交
  20. 25 9月, 2009 1 次提交
  21. 29 8月, 2009 3 次提交
  22. 06 8月, 2009 1 次提交