1. 15 2月, 2012 21 次提交
  2. 28 1月, 2012 2 次提交
  3. 21 12月, 2011 6 次提交
  4. 15 12月, 2011 3 次提交
  5. 08 12月, 2011 1 次提交
  6. 01 12月, 2011 5 次提交
  7. 08 11月, 2011 2 次提交
    • E
      wl12xx: handle idle changes per-interface · c31e4946
      Eliad Peller 提交于
      Idle changes are currently handled per hardware.
      However, some operations should be done only per-interface.
      Signed-off-by: NEliad Peller <eliad@wizery.com>
      Signed-off-by: NArik Nemtsov <arik@wizery.com>
      Signed-off-by: NLuciano Coelho <coelho@ti.com>
      c31e4946
    • L
      wl12xx: use the same SDIO block size for all different chips · e62c9ce4
      Luciano Coelho 提交于
      The sdio driver uses a block size of 512 bytes by default.  With our
      card, this doesn't work correctly because it sets the block size FBR
      in the chip too early (ie. before the chip is powered on).  Thus, if
      we don't set it explicitly, block mode remains disabled in the chip.
      If we try to send more data than fits in one block, the sdio driver
      will split it into separate blocks before sending to the chip.  This
      causes problems because the chip is not expecting multiple blocks.
      
      At the moment this is not a problem, because we use chunks of 512
      bytes for firmware upload and the data is always sent in byte mode.
      In the next patch, we will change the chunk size to a bigger value, so
      this patch is a preparation for that.
      Signed-off-by: NLuciano Coelho <coelho@ti.com>
      e62c9ce4