1. 27 3月, 2012 2 次提交
  2. 16 3月, 2012 1 次提交
  3. 01 3月, 2012 1 次提交
    • D
      i2c: export bit-banging algo functions · b0209b39
      Daniel Vetter 提交于
      i915 has a hw i2c controller (gmbus) but for a bunch of stupid reasons
      we need to be able to fall back to the bit-banging algo on gpio pins.
      
      The current code sets up a 2nd i2c controller for the same i2c bus using
      the bit-banging algo. This has a bunch of issues, the major one being
      that userspace can directly access this fallback i2c adaptor behind
      the drivers back.
      
      But we need to frob a few registers before and after using fallback
      gpio bit-banging, so this horribly fails.
      
      The new plan is to only set up one i2c adaptor and transparently fall
      back to bit-banging by directly calling the xfer function of the bit-
      banging algo in the i2c core.
      
      To make that possible, export the 2 i2c algo functions.
      
      v2: As suggested by Jean Delvare, simply export the i2c_bit_algo
      vtable instead of the individual functions.
      Acked-by: NJean Delvare <khali@linux-fr.org>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      b0209b39
  4. 23 11月, 2011 1 次提交
  5. 30 10月, 2011 3 次提交
  6. 17 4月, 2011 1 次提交
  7. 11 1月, 2011 2 次提交
  8. 30 3月, 2010 1 次提交
    • T
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking... · 5a0e3ad6
      Tejun Heo 提交于
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
      
      percpu.h is included by sched.h and module.h and thus ends up being
      included when building most .c files.  percpu.h includes slab.h which
      in turn includes gfp.h making everything defined by the two files
      universally available and complicating inclusion dependencies.
      
      percpu.h -> slab.h dependency is about to be removed.  Prepare for
      this change by updating users of gfp and slab facilities include those
      headers directly instead of assuming availability.  As this conversion
      needs to touch large number of source files, the following script is
      used as the basis of conversion.
      
        http://userweb.kernel.org/~tj/misc/slabh-sweep.py
      
      The script does the followings.
      
      * Scan files for gfp and slab usages and update includes such that
        only the necessary includes are there.  ie. if only gfp is used,
        gfp.h, if slab is used, slab.h.
      
      * When the script inserts a new include, it looks at the include
        blocks and try to put the new include such that its order conforms
        to its surrounding.  It's put in the include block which contains
        core kernel includes, in the same order that the rest are ordered -
        alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
        doesn't seem to be any matching order.
      
      * If the script can't find a place to put a new include (mostly
        because the file doesn't have fitting include block), it prints out
        an error message indicating which .h file needs to be added to the
        file.
      
      The conversion was done in the following steps.
      
      1. The initial automatic conversion of all .c files updated slightly
         over 4000 files, deleting around 700 includes and adding ~480 gfp.h
         and ~3000 slab.h inclusions.  The script emitted errors for ~400
         files.
      
      2. Each error was manually checked.  Some didn't need the inclusion,
         some needed manual addition while adding it to implementation .h or
         embedding .c file was more appropriate for others.  This step added
         inclusions to around 150 files.
      
      3. The script was run again and the output was compared to the edits
         from #2 to make sure no file was left behind.
      
      4. Several build tests were done and a couple of problems were fixed.
         e.g. lib/decompress_*.c used malloc/free() wrappers around slab
         APIs requiring slab.h to be added manually.
      
      5. The script was run on all .h files but without automatically
         editing them as sprinkling gfp.h and slab.h inclusions around .h
         files could easily lead to inclusion dependency hell.  Most gfp.h
         inclusion directives were ignored as stuff from gfp.h was usually
         wildly available and often used in preprocessor macros.  Each
         slab.h inclusion directive was examined and added manually as
         necessary.
      
      6. percpu.h was updated not to include slab.h.
      
      7. Build test were done on the following configurations and failures
         were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
         distributed build env didn't work with gcov compiles) and a few
         more options had to be turned off depending on archs to make things
         build (like ipr on powerpc/64 which failed due to missing writeq).
      
         * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
         * powerpc and powerpc64 SMP allmodconfig
         * sparc and sparc64 SMP allmodconfig
         * ia64 SMP allmodconfig
         * s390 SMP allmodconfig
         * alpha SMP allmodconfig
         * um on x86_64 SMP allmodconfig
      
      8. percpu.h modifications were reverted so that it could be applied as
         a separate patch and serve as bisection point.
      
      Given the fact that I had only a couple of failures from tests on step
      6, I'm fairly confident about the coverage of this conversion patch.
      If there is a breakage, it's likely to be something in one of the arch
      headers which should be easily discoverable easily on most builds of
      the specific arch.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Guess-its-ok-by: NChristoph Lameter <cl@linux-foundation.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
      5a0e3ad6
  9. 14 3月, 2010 1 次提交
  10. 05 5月, 2009 1 次提交
    • D
      i2c-algo-bit: Fix timeout test · 0cdba07b
      Dave Airlie 提交于
      When fetching DDC using i2c algo bit, we were often seeing timeouts
      before getting valid EDID on a retry. The VESA spec states 2ms is the
      DDC timeout, so when this translates into 1 jiffie and we are close
      to the end of the time period, it could return with a timeout less than
      2ms.
      
      Change this code to use time_after instead of time_after_eq.
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      0cdba07b
  11. 29 3月, 2009 1 次提交
  12. 15 7月, 2008 1 次提交
  13. 28 1月, 2008 2 次提交
  14. 20 10月, 2007 1 次提交
  15. 10 9月, 2007 1 次提交
    • D
      i2c-algo-bit: Read block data bugfix · 939bc494
      David Brownell 提交于
      This fixes a bug in the way i2c-algo-bit handles I2C_M_RECV_LEN,
      used to implement i2c_smbus_read_block_data().  Previously, in the
      absence of PEC (rarely used!) it would NAK the "length" byte:
      
      	S addr Rd [A] [length] NA
      
      That prevents the subsequent data bytes from being read:
      
      	S addr Rd [A] [length] { A [data] }* NA
      
      The primary fix just reorders two code blocks, so the length used
      in the "should I NAK now?" check incorporates the data which it
      just read from the slave device.
      
      However, that move also highlighted other fault handling glitches.
      This fixes those by abstracting the RX path ack/nak logic, so it
      can be used in more than one location.  Also, a few CodingStyle
      issues were also resolved.
      Signed-off-by: NDavid Brownell <dbrownell@users.sourceforge.net>
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      939bc494
  16. 02 5月, 2007 5 次提交
    • J
      i2c-algo-bit: Improve debugging · 494dbb64
      Jean Delvare 提交于
      Improve the debugging features of the i2c-algo-bit driver:
      * Make it possible to compile the driver without debugging support
        at all, making it much smaller.
      * Use dev_dbg() for debugging messages where possible, and dev_err()
        for error messages.
      * Remove redundant debugging messages.
      
      These changes allowed for minor code cleanups, which are included
      as well.
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      494dbb64
    • J
      i2c-algo-bit: Implement a 50/50 SCL duty cycle · 424ed67c
      Jean Delvare 提交于
      The original i2c-algo-bit implementation uses a 33/66 SCL duty cycle
      when bits are being written on the bus. While the I2C specification
      doesn't forbid it, this prevents us from driving the I2C bus to its
      max speed, limiting us to 66 kbps max on standard I2C busses.
      
      Implementing a 50/50 duty cycle instead lets us max out the bandwidth
      up to the theoretical max of 100 kbps on standard I2C busses. This is
      particularly important when large amounts of data need to be transfered
      over the bus, as is the case with some TV adapters when the firmware is
      being uploaded.
      
      In fact this change even allows, at least in theory, fast-mode I2C
      support at 125, 166 and 250 kbps. There's no way to reach the
      theoretical max of 400 kbps with this implementation. But I don't
      think we want to put efforts in that direction anyway: software-driven
      I2C is very CPU-intensive and bad for latency.
      
      Other timing changes:
      * Don't set SDA high explicitly on error, we're going to issue a stop
        condition before we leave anyway.
      * If an error occurs when sending the slave address, yield the CPU
        before retrying, and remove the additional delay after the new start
        condition.
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      424ed67c
    • J
      i2c-algo-bit: Add i2c_bit_add_numbered_bus · 0f3b4838
      Jean Delvare 提交于
      Add i2c_bit_add_numbered_bus(), which is equivalent to i2c_bit_add_bus
      except that it calls i2c_add_numbered_adapter() at the end instead of
      i2c_add_adapter().
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      0f3b4838
    • J
      i2c-algo-bit: Emulate SMBus block read · 3c4bb241
      Jean Delvare 提交于
      Now that i2c-core lets the i2c bus drivers emulate the SMBus block read
      and SMBus block process call transaction types, let's implement that in
      the popular i2c bit-banging driver. This will also act as a reference
      implementation for other bus drivers which want to do the same.
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      3c4bb241
    • J
      i2c-algo-bit: Always send a stop condition before leaving · 1ecac07a
      Jean Delvare 提交于
      The i2c-algo-bit driver doesn't behave well on read errors: it'll
      bail out without even sending a stop condition on the bus, so the bus
      will be stuck. So make sure that we always send a stop condition on
      the bus before we leave. The best way to make sure is to always send
      it at the end of function bit_xfer.
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      1ecac07a
  17. 11 12月, 2006 1 次提交
  18. 27 9月, 2006 3 次提交
  19. 13 7月, 2006 2 次提交
  20. 06 9月, 2005 4 次提交
  21. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4