All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 000/111] IIO: chan_spec intro, generic irq based triggers,
@ 2011-05-18 13:40 Jonathan Cameron
  2011-05-18 13:40 ` [PATCH 001/111] staging:iio: allow channels to be set up using a table of iio_channel_spec structures Jonathan Cameron
                   ` (111 more replies)
  0 siblings, 112 replies; 117+ messages in thread
From: Jonathan Cameron @ 2011-05-18 13:40 UTC (permalink / raw)
  To: greg; +Cc: linux-iio, Jonathan Cameron

Dear Greg,

Here is the set I mentioned was coming.

Thomas Gleixner just pushed the required irq patches to the tip tree
(though they aren't visible yet).

[tip:irq/core] genirq: Uninline and sanity check generic_handle_irq()
fe12bc2c996d3e492b2920e32ac79f7bbae3e15d

and

[tip:irq/core] irq: Export functions to allow modular irq drivers
edf76f8307c350bcb81f0c760118a991b3e62956

There are two other dependencies. One is a trivial missing header
in arm (patch on it's way through the arm tree). Doesn't break building
except on arm anyway.

The other is the strtobool that you added to driver-core
Add a strtobool function matching semantics of existing in kernel equivalents
ad58671cf32c74a8d6e8f51e63e9cf4e7a73bf1e

First some thanks are due:

Arnd Bergmann for a very useful 'review'.  We haven't yet done
everything Arnd suggested, but a lot of it is here.

Thomas Gleixner for suggesting how to handle the triggers without
reinventing the wheel.

Michael Hennerich as ever for trying everything out, killing bugs
and converting a whole host of Analog's devices over to the new
API.

Anyhow, now for a quick summary of what we have here:

1) iio_chan_spec structure introduction.  This moves responsibliity
for creation of most sysfs attributes into the core.  The same
structure is used to create all the relevant entries for buffers
as well as direct access attributes.  Note this only comes into
it's own after various other cleanups later in the series.
To evalutate this people should look at the end result, not all
the mashups that were required to let us introduce it slowly.

2) irq_chip based handling of triggers.  The kernel already has
a clean way of passing 'trigger' events around: irqs.  Thomas
pointed this out and gave some guidance on how to do this.  It
is far cleaner (and shorter) than our previous version and
also allows us to take everything into threaded interrupts.

3) Buffer interface rework.  This was based on Arnd's review.
 * event escalation is removed - there was no usecase for it,
   even when devices can provide the hardware suppport.  This
   greatly complicated our event system for little gain.
 * without escallation there is only one 'event' possible from
   a buffer at a time.  Thus Arnd pointed out we could just use
   poll to handle it and scrap the chrdev.
 * Now we only have one chrdev, we can drop most device tree we'd
   built up to handle them.
 * Event system is now only used for 'threshold events' and similar.
   Reworking that is probably next.

More minor stuff hiding in here:

* scrap the ring_helper stuff.  Seemed like a useful bit of
  helper code.  Now many things are simpler, it's not worth
  bothering.
* move name handling into the core - everyone has to do it, so why
  leave it to the drivers.
* move various allocation jobs into the core - again, they occur
  every time so why have them in drivers
* pull out const static elements of iio_dev into a new iio_info
  structure. (another Arnd suggestion).
* merge all the IMU drivers - this has been floating around for a
  long time.  We finally hammered it in as it made the other conversions
  easier.
* Lots of other cleanup.
* Couple of new parts for the max1363 driver.
* Michael found a few other old bugs whilst hammering various parts.

Anyhow, thanks Greg and sorry for sending you quite such
a big series in one go!  Its had a fair bit of testing on arm
and blackfin (build tested only on x86), but with this much code,
I wouldn't be entirely suprised if we broke a few devices...

Sorry to anyone with an out of tree driver - this will cause breakage.

Jonathan

Jonathan Cameron (92):
  staging:iio: allow channels to be set up using a table of
    iio_channel_spec structures.
  staging:iio:lis3l02dq - move to new channel_spec approach.
  staging:iio:max1363 - move to channel_spec registration.
  staging:iio: remove ability to escalate events.
  staging:iio: Add polling of events on the ring access chrdev.
  staging:iio: remove legacy event chrdev for the buffers
  staging:iio: Buffer device flattening.
  staging:iio:lis3l02dq: General cleanup
  staging:iio: Push interrupt setup down into the drivers for event
    lines.
  staging:iio: lis3l02dq - separate entirely interrupt handling for
    thesholds from that for the datardy signal.
  staging:iio:sca3000 extract old event handling and move to poll for
    events from buffer
  staging:iio:buffering remove unused parameter dead_offset from
    read_last_n in all buffer implementations.
  staging:iio:light:tsl2563 remove old style event registration.
  staging:iio:dac:ad5504 move from old to new event handling.
  staging:iio:adt7316 get rid of legacy event handling code.
  staging:iio:adc:ad7745 move from old to current event handling.
  staging:iio:adc:ad7816 move from old to current event handling.
  staging:iio:adc:ad7150 move from deprecated event handling plus
    remove irq as gpio requirement.
  staging:iio:adc:ad7152 remove unregister of interrupt line.
  staging:iio:adc:adt75 old to new event handling conversion
  staging:iio:ad7291 move from old event system to current.
  staging:iio:adc:adt7410 move to current event handling
  staging:iio:adt7310 move to current event handling
  staging:iio:adc:ad7314 remove unmatched unregister of event line.
  staging:iio:adc:ad799x move to new event handling
  staging:iio: Remove legacy event handling.
  staging:iio:accel:lis3l02dq make threshold interrupt threaded.
  staging:iio: Add infrastructure for irq_chip based triggers
  staging:iio:Documentation generic_buffer.c update to new abi for
    buffers + misc fixes
  staging:iio:ring_sw add function needed for threaded irq.
  staging:iio: add generic data ready poll function.
  staging:iio:accel:lis3l02dq move to threaded trigger handling.
  staging:iio:adc:max1363 move to irqchip based threaded irq triggering
  staging:iio:adc:ad7476 use channel_spec
  staging:iio:adc:ad7476 move to irqchip based triggering
  staging:iio:meter:ade7758 move to irqchip based trigger handling.
  staging:iio:imu:adis16400 move to irq based triggers and channel spec
    channel registration.
  staging:iio:imu:adis16350 etc support into adis16400 driver.
  staging:iio:imu remove old adis16350. Support now in adis16400
    driver.
  staging:iio:imu:adis16400 add support for adis16300
  staging:iio:imu remove adis16300 driver.
  staging:iio:accel:adis16201 move to irqchip based trigger handling.
  staging:iio:accel:adis16203 move to irqchip based trigger handling.
  staging:iio:accel:adis16204 move to irqchip based trigger handling.
  staging:iio:accel:adis16209 move to irqchip based trigger handling.
  staging:iio:accel:adis16240 move to irqchip based trigger handling.
  staging:iio:adc:ad7298 move to irqchip based trigger handling.
  staging:iio:adc:ad7606 conversion to irq_chip based polling.
  staging:iio:adc:ad7887 move to irqchip based trigger handling.
  staging:iio:adc:ad799x move to irqchip based trigger handling.
  staging:iio:gyro:adis16260 move to irqchip based trigger handling.
  staging:iio:trigger remove legacy pollfunc elements.
  staging:iio: Add core attribute handling for name of device.
  staging:iio: use the new central name attribute creation code
  staging:iio:light:tsl2563: chan_spec based channel setup.
  staging:iio:accel:adis16201 move to chan_spec based setup.
  staging:iio:accel:adis16203 move to chan_spec based setup.
  staging:iio:accel:adis16204 move to chan_spec based setup.
  staging:iio:accel:adis16209 move to chan_spec based setup.
  staging:iio:adc:ad799x removed unused headers.
  staging:iio:accel: lis3l02dq add writing for calibscale and
    calibbias.
  staging:iio: Add chan info support for 'peak_raw' attributes.
  staging:iio:accel:adis16240 move to chan_spec based setup.
  staging:iio:gyro:adis16260 move to chan_spec based setup.
  staging:iio: rip out scan_el attributes. Now handled as iio_dev_attrs
    like everything else.
  staging:iio:max1363 trivial removal of unused trig pointer.
  staging:iio:max1363 add new 2 channels parts form maxim, 11644-7
  staging:iio:trigger sysfs userspace trigger rework.
  staging:iio:core clean out unused elements.
  staging:iio:adc:ad7150 fix event codes.
  staging:iio:adc:ad7816 and adt75 change to meaningful event code.
  staging:iio:adc:ad7291 remove abuse of buffer events and replace with
    something almost sane
  staging:iio:adc:adt7310 replace abuse of buffer events.
  staging:iio:adc:adt7410 replace abuse of buffer events.
  staging:iio:addac:adt7316 replace abuse of buffer events.
  staging:iio:buffer - remove unused event code for buffer events.
  staging:iio:lis3l02dq remerge the two interrupt handlers.
  staging:iio: iio_event_interfaces - clean out unused elements
  staging:iio:trigger handle name attr in core, remove old alloc and
    register any control_attrs via struct device
  drivers:staging:iio:imu:adis16400 avoid allocating rx, tx, and state
    separately from iio_dev.
  staging:iio: rationalization of different buffer implementation
    hooks.
  staging:iio: Rip out helper for software rings.
  staging:iio:ad7780 trivial unused header cleanup.
  staging:iio: poll func allocation clean up.
  staging:iio:core cleanup: squash tiny wrappers and use dev_set_name
    to handle creation of event interface name.
  staging:iio: ring core cleanups + check if read_last available in
    lis3l02dq
  staging:iio:accel:lis3l02dq make write_reg_8 take value not a pointer
    to value.
  staging:iio: implement an iio_info structure to take some of the
    constant elements out of iio_dev.
  staging:iio:max1363 misc cleanups and use of for_each_bit_set to    
    simplify event code spitting out.
  staging:iio: use pollfunc allocation helpers in remaining drivers.
  staging:iio:documenation partial update.
  staging:iio: Trivial kconfig reorganization and uniformity
    improvements.

Michael Hennerich (19):
  staging:iio:adc:ad7887: Convert to new channel registration method.
  staging:iio:adc:ad7887: Use private data space from
    iio_allocate_device
  staging:iio:adc:ad799x: Convert to new channel registration method.
  staging:iio:adc:ad799x: Use private data space from
    iio_allocate_device
  staging:iio:adc:ad7298: Convert to new channel registration method
  staging:iio:adc:ad7606 Convert to new channel registration method
    Update Add missing call to iio_trigger_notify_done() Set pollfunc
    top and bottom half handler
  staging:iio:adc:ad7606: Use private data space from
    iio_allocate_device
  staging:iio: Add channel types IIO_CURRENT and IIO_POWER.
  staging:iio:meter:ade7758: Update trigger to the new API
  staging:iio:meter:ade7758: Fix timing on SPI read accessor functions.
  iio:staging:meter:ade7758: Fix return value of ade7758_write_reset
  staging:iio:meter:ade7758: Fix list and set of available sample
    frequencies.
  staging:iio:meter:ade7758: Use iio channel spec and miscellaneous
    other changes.
  staging:iio:adc:AD7298: Use private data space from
    iio_allocate_device
  staging:iio:adc: AD7606: Consitently use indio_dev
  staging:iio:adc: AD7606: Drop dev_data in favour of iio_priv()
  staging:iio:adc:AD7780: Convert to new channel registration method
  staging:iio:adc: AD7780: Use private data space from
    iio_allocate_device + trivial fixes
  staging:iio:meter:ade7758: Use private data space from
    iio_allocate_device

 drivers/staging/iio/Documentation/device.txt       |   78 +-
 drivers/staging/iio/Documentation/generic_buffer.c |   93 +-
 drivers/staging/iio/Documentation/iio_utils.h      |   20 +-
 drivers/staging/iio/Documentation/overview.txt     |   19 +-
 drivers/staging/iio/Documentation/ring.txt         |   44 +-
 drivers/staging/iio/Documentation/trigger.txt      |   16 +-
 drivers/staging/iio/Documentation/userspace.txt    |   12 -
 drivers/staging/iio/Kconfig                        |   15 +-
 drivers/staging/iio/accel/adis16201.h              |    9 +-
 drivers/staging/iio/accel/adis16201_core.c         |  467 +++---
 drivers/staging/iio/accel/adis16201_ring.c         |  146 +--
 drivers/staging/iio/accel/adis16201_trigger.c      |   53 +-
 drivers/staging/iio/accel/adis16203.h              |   18 +-
 drivers/staging/iio/accel/adis16203_core.c         |  389 +++--
 drivers/staging/iio/accel/adis16203_ring.c         |  123 +-
 drivers/staging/iio/accel/adis16203_trigger.c      |   53 +-
 drivers/staging/iio/accel/adis16204.h              |   18 +-
 drivers/staging/iio/accel/adis16204_core.c         |  412 +++---
 drivers/staging/iio/accel/adis16204_ring.c         |  126 +-
 drivers/staging/iio/accel/adis16204_trigger.c      |   53 +-
 drivers/staging/iio/accel/adis16209.h              |    6 +-
 drivers/staging/iio/accel/adis16209_core.c         |  446 +++---
 drivers/staging/iio/accel/adis16209_ring.c         |  143 +--
 drivers/staging/iio/accel/adis16209_trigger.c      |   42 +-
 drivers/staging/iio/accel/adis16220_core.c         |   11 +-
 drivers/staging/iio/accel/adis16240.h              |    7 +-
 drivers/staging/iio/accel/adis16240_core.c         |  370 +++--
 drivers/staging/iio/accel/adis16240_ring.c         |  131 +-
 drivers/staging/iio/accel/adis16240_trigger.c      |   42 +-
 drivers/staging/iio/accel/kxsd9.c                  |   12 +-
 drivers/staging/iio/accel/lis3l02dq.h              |   46 +-
 drivers/staging/iio/accel/lis3l02dq_core.c         |  842 ++++------
 drivers/staging/iio/accel/lis3l02dq_ring.c         |  504 +++---
 drivers/staging/iio/accel/sca3000.h                |   76 +-
 drivers/staging/iio/accel/sca3000_core.c           |  953 ++++-------
 drivers/staging/iio/accel/sca3000_ring.c           |  265 ++-
 drivers/staging/iio/adc/Kconfig                    |   48 +-
 drivers/staging/iio/adc/ad7150.c                   |  176 +--
 drivers/staging/iio/adc/ad7152.c                   |   31 +-
 drivers/staging/iio/adc/ad7291.c                   |  500 ++----
 drivers/staging/iio/adc/ad7298.h                   |   12 +-
 drivers/staging/iio/adc/ad7298_core.c              |  242 ++--
 drivers/staging/iio/adc/ad7298_ring.c              |  134 +-
 drivers/staging/iio/adc/ad7314.c                   |   33 +-
 drivers/staging/iio/adc/ad7476.h                   |    7 +-
 drivers/staging/iio/adc/ad7476_core.c              |  171 +-
 drivers/staging/iio/adc/ad7476_ring.c              |  127 +-
 drivers/staging/iio/adc/ad7606.h                   |   20 +-
 drivers/staging/iio/adc/ad7606_core.c              |  300 ++--
 drivers/staging/iio/adc/ad7606_par.c               |   30 +-
 drivers/staging/iio/adc/ad7606_ring.c              |  152 +--
 drivers/staging/iio/adc/ad7606_spi.c               |   24 +-
 drivers/staging/iio/adc/ad7745.c                   |  119 +-
 drivers/staging/iio/adc/ad7780.c                   |  186 +--
 drivers/staging/iio/adc/ad7816.c                   |  109 +-
 drivers/staging/iio/adc/ad7887.h                   |   17 +-
 drivers/staging/iio/adc/ad7887_core.c              |  200 +--
 drivers/staging/iio/adc/ad7887_ring.c              |  156 +--
 drivers/staging/iio/adc/ad799x.h                   |   33 +-
 drivers/staging/iio/adc/ad799x_core.c              |  859 ++++------
 drivers/staging/iio/adc/ad799x_ring.c              |   93 +-
 drivers/staging/iio/adc/adt7310.c                  |  204 +--
 drivers/staging/iio/adc/adt7410.c                  |  199 +--
 drivers/staging/iio/adc/adt75.c                    |  178 +--
 drivers/staging/iio/adc/max1363.h                  |   91 +-
 drivers/staging/iio/adc/max1363_core.c             | 1844 ++++++++------------
 drivers/staging/iio/adc/max1363_ring.c             |   90 +-
 drivers/staging/iio/addac/adt7316.c                |  494 ++----
 drivers/staging/iio/chrdev.h                       |   44 +-
 drivers/staging/iio/dac/ad5446.c                   |   21 +-
 drivers/staging/iio/dac/ad5504.c                   |   88 +-
 drivers/staging/iio/dac/ad5504.h                   |    4 -
 drivers/staging/iio/dac/ad5624r_spi.c              |   21 +-
 drivers/staging/iio/dac/ad5791.c                   |    8 +-
 drivers/staging/iio/dac/max517.c                   |   15 +-
 drivers/staging/iio/dds/ad5930.c                   |   12 +-
 drivers/staging/iio/dds/ad9832.c                   |   21 +-
 drivers/staging/iio/dds/ad9834.c                   |   21 +-
 drivers/staging/iio/dds/ad9850.c                   |   10 +-
 drivers/staging/iio/dds/ad9852.c                   |   10 +-
 drivers/staging/iio/dds/ad9910.c                   |   10 +-
 drivers/staging/iio/dds/ad9951.c                   |   10 +-
 drivers/staging/iio/gyro/adis16060_core.c          |    8 +-
 drivers/staging/iio/gyro/adis16080_core.c          |   11 +-
 drivers/staging/iio/gyro/adis16130_core.c          |   12 +-
 drivers/staging/iio/gyro/adis16260.h               |    7 +-
 drivers/staging/iio/gyro/adis16260_core.c          |  460 +++---
 drivers/staging/iio/gyro/adis16260_ring.c          |  124 +-
 drivers/staging/iio/gyro/adis16260_trigger.c       |   55 +-
 drivers/staging/iio/gyro/adxrs450_core.c           |    8 +-
 drivers/staging/iio/iio.h                          |  339 +++--
 drivers/staging/iio/imu/Kconfig                    |   26 +-
 drivers/staging/iio/imu/Makefile                   |    8 -
 drivers/staging/iio/imu/adis16300.h                |  184 --
 drivers/staging/iio/imu/adis16300_core.c           |  732 --------
 drivers/staging/iio/imu/adis16300_ring.c           |  238 ---
 drivers/staging/iio/imu/adis16300_trigger.c        |  119 --
 drivers/staging/iio/imu/adis16350.h                |  177 --
 drivers/staging/iio/imu/adis16350_core.c           |  733 --------
 drivers/staging/iio/imu/adis16350_ring.c           |  236 ---
 drivers/staging/iio/imu/adis16350_trigger.c        |  119 --
 drivers/staging/iio/imu/adis16400.h                |   38 +-
 drivers/staging/iio/imu/adis16400_core.c           |  715 +++++---
 drivers/staging/iio/imu/adis16400_ring.c           |  235 ++--
 drivers/staging/iio/imu/adis16400_trigger.c        |   71 +-
 drivers/staging/iio/industrialio-core.c            |  928 +++++++---
 drivers/staging/iio/industrialio-ring.c            |  579 ++++---
 drivers/staging/iio/industrialio-trigger.c         |  272 ++-
 drivers/staging/iio/kfifo_buf.c                    |   61 +-
 drivers/staging/iio/kfifo_buf.h                    |   40 +-
 drivers/staging/iio/light/Kconfig                  |   26 +-
 drivers/staging/iio/light/isl29018.c               |   21 +-
 drivers/staging/iio/light/tsl2563.c                |  387 ++---
 drivers/staging/iio/light/tsl2583.c                |    8 +-
 drivers/staging/iio/magnetometer/ak8975.c          |    8 +-
 drivers/staging/iio/magnetometer/hmc5843.c         |    8 +-
 drivers/staging/iio/meter/ade7753.c                |   12 +-
 drivers/staging/iio/meter/ade7754.c                |   12 +-
 drivers/staging/iio/meter/ade7758.h                |   71 +-
 drivers/staging/iio/meter/ade7758_core.c           |  342 ++--
 drivers/staging/iio/meter/ade7758_ring.c           |  281 ++--
 drivers/staging/iio/meter/ade7758_trigger.c        |   61 +-
 drivers/staging/iio/meter/ade7759.c                |   13 +-
 drivers/staging/iio/meter/ade7854.c                |    8 +-
 drivers/staging/iio/resolver/ad2s120x.c            |   11 +-
 drivers/staging/iio/resolver/ad2s1210.c            |   10 +-
 drivers/staging/iio/resolver/ad2s90.c              |   10 +-
 drivers/staging/iio/ring_generic.h                 |  287 +---
 drivers/staging/iio/ring_sw.c                      |  198 +--
 drivers/staging/iio/ring_sw.h                      |  196 +--
 drivers/staging/iio/sysfs.h                        |  185 +--
 drivers/staging/iio/trigger.h                      |  109 +-
 drivers/staging/iio/trigger/iio-trig-bfin-timer.c  |   22 +-
 drivers/staging/iio/trigger/iio-trig-gpio.c        |   25 +-
 .../staging/iio/trigger/iio-trig-periodic-rtc.c    |   24 +-
 drivers/staging/iio/trigger/iio-trig-sysfs.c       |  169 ++-
 136 files changed, 8665 insertions(+), 13608 deletions(-)
 delete mode 100644 drivers/staging/iio/Documentation/userspace.txt
 delete mode 100644 drivers/staging/iio/imu/adis16300.h
 delete mode 100644 drivers/staging/iio/imu/adis16300_core.c
 delete mode 100644 drivers/staging/iio/imu/adis16300_ring.c
 delete mode 100644 drivers/staging/iio/imu/adis16300_trigger.c
 delete mode 100644 drivers/staging/iio/imu/adis16350.h
 delete mode 100644 drivers/staging/iio/imu/adis16350_core.c
 delete mode 100644 drivers/staging/iio/imu/adis16350_ring.c
 delete mode 100644 drivers/staging/iio/imu/adis16350_trigger.c

-- 
1.7.3.4

^ permalink raw reply	[flat|nested] 117+ messages in thread

end of thread, other threads:[~2011-05-20 13:02 UTC | newest]

Thread overview: 117+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-18 13:40 [PATCH 000/111] IIO: chan_spec intro, generic irq based triggers, Jonathan Cameron
2011-05-18 13:40 ` [PATCH 001/111] staging:iio: allow channels to be set up using a table of iio_channel_spec structures Jonathan Cameron
2011-05-18 13:40 ` [PATCH 002/111] staging:iio:lis3l02dq - move to new channel_spec approach Jonathan Cameron
2011-05-18 13:40 ` [PATCH 003/111] staging:iio:max1363 - move to channel_spec registration Jonathan Cameron
2011-05-18 13:40 ` [PATCH 004/111] staging:iio: remove ability to escalate events Jonathan Cameron
2011-05-18 13:40 ` [PATCH 005/111] staging:iio: Add polling of events on the ring access chrdev Jonathan Cameron
2011-05-18 13:40 ` [PATCH 006/111] staging:iio: remove legacy event chrdev for the buffers Jonathan Cameron
2011-05-18 13:40 ` [PATCH 007/111] staging:iio: Buffer device flattening Jonathan Cameron
2011-05-18 13:40 ` [PATCH 008/111] staging:iio:lis3l02dq: General cleanup Jonathan Cameron
2011-05-18 13:40 ` [PATCH 009/111] staging:iio: Push interrupt setup down into the drivers for event lines Jonathan Cameron
2011-05-18 13:41 ` [PATCH 010/111] staging:iio: lis3l02dq - separate entirely interrupt handling for thesholds from that for the datardy signal Jonathan Cameron
2011-05-18 13:41 ` [PATCH 011/111] staging:iio:sca3000 extract old event handling and move to poll for events from buffer Jonathan Cameron
2011-05-18 13:41 ` [PATCH 012/111] staging:iio:buffering remove unused parameter dead_offset from read_last_n in all buffer implementations Jonathan Cameron
2011-05-18 13:41 ` [PATCH 013/111] staging:iio:light:tsl2563 remove old style event registration Jonathan Cameron
2011-05-18 13:41 ` [PATCH 014/111] staging:iio:dac:ad5504 move from old to new event handling Jonathan Cameron
2011-05-18 13:41 ` [PATCH 015/111] staging:iio:adt7316 get rid of legacy event handling code Jonathan Cameron
2011-05-18 13:41 ` [PATCH 016/111] staging:iio:adc:ad7745 move from old to current event handling Jonathan Cameron
2011-05-18 13:41 ` [PATCH 017/111] staging:iio:adc:ad7816 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 018/111] staging:iio:adc:ad7150 move from deprecated event handling plus remove irq as gpio requirement Jonathan Cameron
2011-05-18 13:41 ` [PATCH 019/111] staging:iio:adc:ad7152 remove unregister of interrupt line Jonathan Cameron
2011-05-18 13:41 ` [PATCH 020/111] staging:iio:adc:adt75 old to new event handling conversion Jonathan Cameron
2011-05-18 13:41 ` [PATCH 021/111] staging:iio:ad7291 move from old event system to current Jonathan Cameron
2011-05-18 13:41 ` [PATCH 022/111] staging:iio:adc:adt7410 move to current event handling Jonathan Cameron
2011-05-18 13:41 ` [PATCH 023/111] staging:iio:adt7310 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 024/111] staging:iio:adc:ad7314 remove unmatched unregister of event line Jonathan Cameron
2011-05-18 13:41 ` [PATCH 025/111] staging:iio:adc:ad799x move to new event handling Jonathan Cameron
2011-05-18 13:41 ` [PATCH 026/111] staging:iio: Remove legacy " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 027/111] staging:iio:accel:lis3l02dq make threshold interrupt threaded Jonathan Cameron
2011-05-18 13:41 ` [PATCH 028/111] staging:iio: Add infrastructure for irq_chip based triggers Jonathan Cameron
2011-05-18 13:41 ` [PATCH 029/111] staging:iio:Documentation generic_buffer.c update to new abi for buffers + misc fixes Jonathan Cameron
2011-05-18 13:41 ` [PATCH 030/111] staging:iio:ring_sw add function needed for threaded irq Jonathan Cameron
2011-05-18 13:41 ` [PATCH 031/111] staging:iio: add generic data ready poll function Jonathan Cameron
2011-05-18 13:41 ` [PATCH 032/111] staging:iio:accel:lis3l02dq move to threaded trigger handling Jonathan Cameron
2011-05-18 13:41 ` [PATCH 033/111] staging:iio:adc:max1363 move to irqchip based threaded irq triggering Jonathan Cameron
2011-05-18 13:41 ` [PATCH 034/111] staging:iio:adc:ad7476 use channel_spec Jonathan Cameron
2011-05-18 13:41 ` [PATCH 035/111] staging:iio:adc:ad7476 move to irqchip based triggering Jonathan Cameron
2011-05-18 13:41 ` [PATCH 036/111] staging:iio:meter:ade7758 move to irqchip based trigger handling Jonathan Cameron
2011-05-18 13:41 ` [PATCH 037/111] staging:iio:imu:adis16400 move to irq based triggers and channel spec channel registration Jonathan Cameron
2011-05-18 13:41 ` [PATCH 038/111] staging:iio:imu:adis16350 etc support into adis16400 driver Jonathan Cameron
2011-05-18 13:41 ` [PATCH 039/111] staging:iio:imu remove old adis16350. Support now in " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 040/111] staging:iio:imu:adis16400 add support for adis16300 Jonathan Cameron
2011-05-18 13:41 ` [PATCH 041/111] staging:iio:imu remove adis16300 driver Jonathan Cameron
2011-05-18 13:41 ` [PATCH 042/111] staging:iio:accel:adis16201 move to irqchip based trigger handling Jonathan Cameron
2011-05-18 13:41 ` [PATCH 043/111] staging:iio:accel:adis16203 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 044/111] staging:iio:accel:adis16204 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 045/111] staging:iio:accel:adis16209 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 046/111] staging:iio:accel:adis16240 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 047/111] staging:iio:adc:ad7298 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 048/111] staging:iio:adc:ad7606 conversion to irq_chip based polling Jonathan Cameron
2011-05-18 13:41 ` [PATCH 049/111] staging:iio:adc:ad7887 move to irqchip based trigger handling Jonathan Cameron
2011-05-18 13:41 ` [PATCH 050/111] staging:iio:adc:ad799x " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 051/111] staging:iio:gyro:adis16260 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 052/111] staging:iio:trigger remove legacy pollfunc elements Jonathan Cameron
2011-05-18 13:41 ` [PATCH 053/111] staging:iio: Add core attribute handling for name of device Jonathan Cameron
2011-05-18 13:41 ` [PATCH 054/111] staging:iio: use the new central name attribute creation code Jonathan Cameron
2011-05-18 13:41 ` [PATCH 055/111] staging:iio:light:tsl2563: chan_spec based channel setup Jonathan Cameron
2011-05-18 13:41 ` [PATCH 056/111] staging:iio:accel:adis16201 move to chan_spec based setup Jonathan Cameron
2011-05-18 13:41 ` [PATCH 057/111] staging:iio:accel:adis16203 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 058/111] staging:iio:accel:adis16204 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 059/111] staging:iio:accel:adis16209 " Jonathan Cameron
2011-05-18 13:41 ` [PATCH 060/111] staging:iio:adc:ad7887: Convert to new channel registration method Jonathan Cameron
2011-05-18 13:41 ` [PATCH 061/111] staging:iio:adc:ad7887: Use private data space from iio_allocate_device Jonathan Cameron
2011-05-18 13:41 ` [PATCH 062/111] staging:iio:adc:ad799x: Convert to new channel registration method Jonathan Cameron
2011-05-18 13:41 ` [PATCH 063/111] staging:iio:adc:ad799x: Use private data space from iio_allocate_device Jonathan Cameron
2011-05-18 13:41 ` [PATCH 064/111] staging:iio:adc:ad799x removed unused headers Jonathan Cameron
2011-05-18 13:41 ` [PATCH 065/111] staging:iio:adc:ad7298: Convert to new channel registration method Jonathan Cameron
2011-05-18 13:41 ` [PATCH 066/111] staging:iio:accel: lis3l02dq add writing for calibscale and calibbias Jonathan Cameron
2011-05-18 13:41 ` [PATCH 067/111] staging:iio: Add chan info support for 'peak_raw' attributes Jonathan Cameron
2011-05-18 13:41 ` [PATCH 068/111] staging:iio:accel:adis16240 move to chan_spec based setup Jonathan Cameron
2011-05-18 13:41 ` [PATCH 069/111] staging:iio:gyro:adis16260 " Jonathan Cameron
2011-05-18 13:42 ` [PATCH 070/111] staging:iio:adc:ad7606 Convert to new channel registration method Update Add missing call to iio_trigger_notify_done() Set pollfunc top and bottom half handler Jonathan Cameron
2011-05-18 13:42 ` [PATCH 071/111] staging:iio:adc:ad7606: Use private data space from iio_allocate_device Jonathan Cameron
2011-05-18 13:42 ` [PATCH 072/111] staging:iio: Add channel types IIO_CURRENT and IIO_POWER Jonathan Cameron
2011-05-18 13:42 ` [PATCH 073/111] staging:iio:meter:ade7758: Update trigger to the new API Jonathan Cameron
2011-05-18 13:42 ` [PATCH 074/111] staging:iio:meter:ade7758: Fix timing on SPI read accessor functions Jonathan Cameron
2011-05-18 13:42 ` [PATCH 075/111] iio:staging:meter:ade7758: Fix return value of ade7758_write_reset Jonathan Cameron
2011-05-18 13:42 ` [PATCH 076/111] staging:iio:meter:ade7758: Fix list and set of available sample frequencies Jonathan Cameron
2011-05-18 13:42 ` [PATCH 077/111] staging:iio:meter:ade7758: Use iio channel spec and miscellaneous other changes Jonathan Cameron
2011-05-18 13:42 ` [PATCH 078/111] staging:iio: rip out scan_el attributes. Now handled as iio_dev_attrs like everything else Jonathan Cameron
2011-05-18 13:42 ` [PATCH 079/111] staging:iio:max1363 trivial removal of unused trig pointer Jonathan Cameron
2011-05-18 13:42 ` [PATCH 080/111] staging:iio:max1363 add new 2 channels parts form maxim, 11644-7 Jonathan Cameron
2011-05-18 13:42 ` [PATCH 081/111] staging:iio:trigger sysfs userspace trigger rework Jonathan Cameron
2011-05-18 13:42 ` [PATCH 082/111] staging:iio:core clean out unused elements Jonathan Cameron
2011-05-18 13:42 ` [PATCH 083/111] staging:iio:adc:ad7150 fix event codes Jonathan Cameron
2011-05-18 13:42 ` [PATCH 084/111] staging:iio:adc:ad7816 and adt75 change to meaningful event code Jonathan Cameron
2011-05-18 13:42 ` [PATCH 085/111] staging:iio:adc:ad7291 remove abuse of buffer events and replace with something almost sane Jonathan Cameron
2011-05-18 13:42 ` [PATCH 086/111] staging:iio:adc:adt7310 replace abuse of buffer events Jonathan Cameron
2011-05-18 13:42 ` [PATCH 087/111] staging:iio:adc:adt7410 " Jonathan Cameron
2011-05-18 13:42 ` [PATCH 088/111] staging:iio:addac:adt7316 " Jonathan Cameron
2011-05-18 13:42 ` [PATCH 089/111] staging:iio:buffer - remove unused event code for " Jonathan Cameron
2011-05-18 13:42 ` [PATCH 090/111] staging:iio:lis3l02dq remerge the two interrupt handlers Jonathan Cameron
2011-05-18 13:42 ` [PATCH 091/111] staging:iio: iio_event_interfaces - clean out unused elements Jonathan Cameron
2011-05-18 13:42 ` [PATCH 092/111] staging:iio:trigger handle name attr in core, remove old alloc and register any control_attrs via struct device Jonathan Cameron
2011-05-18 13:42 ` [PATCH 093/111] drivers:staging:iio:imu:adis16400 avoid allocating rx, tx, and state separately from iio_dev Jonathan Cameron
2011-05-18 13:42 ` [PATCH 094/111] staging:iio: rationalization of different buffer implementation hooks Jonathan Cameron
2011-05-18 13:42 ` [PATCH 095/111] staging:iio:adc:AD7298: Use private data space from iio_allocate_device Jonathan Cameron
2011-05-18 13:42 ` [PATCH 096/111] staging:iio: Rip out helper for software rings Jonathan Cameron
2011-05-18 13:42 ` [PATCH 097/111] staging:iio:adc: AD7606: Consitently use indio_dev Jonathan Cameron
2011-05-18 13:42 ` [PATCH 098/111] staging:iio:adc: AD7606: Drop dev_data in favour of iio_priv() Jonathan Cameron
2011-05-18 13:42 ` [PATCH 099/111] staging:iio:adc:AD7780: Convert to new channel registration method Jonathan Cameron
2011-05-18 13:42 ` [PATCH 100/111] staging:iio:adc: AD7780: Use private data space from iio_allocate_device + trivial fixes Jonathan Cameron
2011-05-18 13:42 ` [PATCH 101/111] staging:iio:ad7780 trivial unused header cleanup Jonathan Cameron
2011-05-18 13:42 ` [PATCH 102/111] staging:iio: poll func allocation clean up Jonathan Cameron
2011-05-18 13:42 ` [PATCH 103/111] staging:iio:core cleanup: squash tiny wrappers and use dev_set_name to handle creation of event interface name Jonathan Cameron
2011-05-18 13:42 ` [PATCH 104/111] staging:iio: ring core cleanups + check if read_last available in lis3l02dq Jonathan Cameron
2011-05-18 13:42 ` [PATCH 105/111] staging:iio:accel:lis3l02dq make write_reg_8 take value not a pointer to value Jonathan Cameron
2011-05-18 13:42 ` [PATCH 106/111] staging:iio:meter:ade7758: Use private data space from iio_allocate_device Jonathan Cameron
2011-05-18 13:42 ` [PATCH 107/111] staging:iio: implement an iio_info structure to take some of the constant elements out of iio_dev Jonathan Cameron
2011-05-18 13:42 ` [PATCH 108/111] staging:iio:max1363 misc cleanups and use of for_each_bit_set to simplify event code spitting out Jonathan Cameron
2011-05-18 13:42 ` [PATCH 109/111] staging:iio: use pollfunc allocation helpers in remaining drivers Jonathan Cameron
2011-05-18 13:42 ` [PATCH 110/111] staging:iio:documenation partial update Jonathan Cameron
2011-05-18 13:42 ` [PATCH 111/111] staging:iio: Trivial kconfig reorganization and uniformity improvements Jonathan Cameron
2011-05-18 15:25 ` [PATCH 000/111] IIO: chan_spec intro, generic irq based triggers, Greg KH
2011-05-18 15:35   ` Jonathan Cameron
2011-05-19 23:17     ` Greg KH
2011-05-20 12:50       ` Jonathan Cameron
2011-05-20 13:02         ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.