Skip to content
Snippets Groups Projects
  1. Dec 30, 2017
  2. Jun 23, 2017
  3. May 11, 2016
  4. Nov 30, 2015
  5. Nov 07, 2014
  6. Jan 29, 2014
  7. Jan 24, 2014
  8. May 30, 2012
  9. Mar 26, 2012
  10. Mar 15, 2012
  11. Feb 29, 2012
    • Daniel Vetter's avatar
      i2c: export bit-banging algo functions · b0209b39
      Daniel Vetter authored
      
      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: default avatarJean Delvare <khali@linux-fr.org>
      Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
      b0209b39
  12. Nov 23, 2011
  13. Oct 30, 2011
  14. Apr 17, 2011
  15. Jan 10, 2011
  16. Mar 30, 2010
    • Tejun Heo's avatar
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking... · 5a0e3ad6
      Tejun Heo authored
      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: default avatarTejun Heo <tj@kernel.org>
      Guess-its-ok-by: default avatarChristoph Lameter <cl@linux-foundation.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
      5a0e3ad6
  17. Mar 13, 2010
  18. May 05, 2009
    • Dave Airlie's avatar
      i2c-algo-bit: Fix timeout test · 0cdba07b
      Dave Airlie authored
      
      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: default avatarDave Airlie <airlied@redhat.com>
      Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
      0cdba07b
  19. Mar 28, 2009
  20. Jul 14, 2008
  21. Jan 27, 2008
  22. Oct 19, 2007
  23. Sep 09, 2007
    • David Brownell's avatar
      i2c-algo-bit: Read block data bugfix · 939bc494
      David Brownell authored
      
      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: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
      Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
      939bc494
  24. May 01, 2007
    • Jean Delvare's avatar
      i2c-algo-bit: Improve debugging · 494dbb64
      Jean Delvare authored
      
      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: default avatarJean Delvare <khali@linux-fr.org>
      494dbb64
    • Jean Delvare's avatar
      i2c-algo-bit: Implement a 50/50 SCL duty cycle · 424ed67c
      Jean Delvare authored
      
      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: default avatarJean Delvare <khali@linux-fr.org>
      424ed67c
    • Jean Delvare's avatar
      i2c-algo-bit: Add i2c_bit_add_numbered_bus · 0f3b4838
      Jean Delvare authored
      
      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: default avatarJean Delvare <khali@linux-fr.org>
      0f3b4838
    • Jean Delvare's avatar
      i2c-algo-bit: Emulate SMBus block read · 3c4bb241
      Jean Delvare authored
      
      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: default avatarJean Delvare <khali@linux-fr.org>
      3c4bb241
    • Jean Delvare's avatar
      i2c-algo-bit: Always send a stop condition before leaving · 1ecac07a
      Jean Delvare authored
      
      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: default avatarJean Delvare <khali@linux-fr.org>
      1ecac07a
  25. Dec 10, 2006
  26. Sep 26, 2006
  27. Jul 12, 2006
  28. Sep 05, 2005
Loading