mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v3 0/6] AIODEV subsystem
@ 2016-05-16 16:45 Andrey Smirnov
  2016-05-16 16:45 ` [PATCH v3 1/6] drivers: Introduce " Andrey Smirnov
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Andrey Smirnov @ 2016-05-16 16:45 UTC (permalink / raw)
  To: barebox; +Cc: Andrey Smirnov

Hi everyone,

Here's the third version of AIODEV patchset. The change list is the
following:

Changes since v2:

	- TEMPMON driver converted to use existing DT bindings

	- As a result of the above NVMEM subsystem was dropped

	- TEMPMON driver converted to use syscon_base_lookup_by_phandle

Changes since v1:

	- Patches fixed to use IIO DT bindings

	- Channel's index is now cached and no O(n) complex lookup is
          perfomed when a channel is queried by its index

	- Added GPL v2 headers

	- Incorporated Sascha's feedback to simplify code


Andrey Smirnov (5):
  RDU2: Add more peripheral reset code
  commands: Add 'hwmon' command
  syscon: Do not return NULL when driver is not selected
  syscon: Decrease driver registration priority
  aiodev: Add TEMPMON driver

Sascha Hauer (2):
  drivers: Introduce AIODEV subsystem
  aiodev: Add basic LM75 temperature driver

 arch/arm/boards/zii-imx6q-rdu2/board.c |  65 +++++++-
 arch/arm/dts/imx6q-zii-rdu2.dts        |   5 +
 arch/arm/dts/imx6qdl.dtsi              |  14 ++
 arch/arm/dts/imx6sx.dtsi               |  14 ++
 commands/Kconfig                       |   8 +
 commands/Makefile                      |   1 +
 commands/hwmon.c                       |  35 +++++
 drivers/Kconfig                        |   1 +
 drivers/Makefile                       |   2 +
 drivers/aiodev/Kconfig                 |  22 +++
 drivers/aiodev/Makefile                |   4 +
 drivers/aiodev/core.c                  | 148 +++++++++++++++++++
 drivers/aiodev/imx_thermal.c           | 216 +++++++++++++++++++++++++++
 drivers/aiodev/lm75.c                  | 262 +++++++++++++++++++++++++++++++++
 drivers/mfd/syscon.c                   |   2 +-
 include/aiodev.h                       |  59 ++++++++
 include/mfd/syscon.h                   |   4 +-
 17 files changed, 851 insertions(+), 11 deletions(-)
 create mode 100644 commands/hwmon.c
 create mode 100644 drivers/aiodev/Kconfig
 create mode 100644 drivers/aiodev/Makefile
 create mode 100644 drivers/aiodev/core.c
 create mode 100644 drivers/aiodev/imx_thermal.c
 create mode 100644 drivers/aiodev/lm75.c
 create mode 100644 include/aiodev.h

-- 
2.5.5


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2016-05-18  5:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-16 16:45 [PATCH v3 0/6] AIODEV subsystem Andrey Smirnov
2016-05-16 16:45 ` [PATCH v3 1/6] drivers: Introduce " Andrey Smirnov
2016-05-16 16:45 ` [PATCH v3 2/6] commands: Add 'hwmon' command Andrey Smirnov
2016-05-16 16:45 ` [PATCH v3 3/6] syscon: Do not return NULL when driver is not selected Andrey Smirnov
2016-05-16 16:45 ` [PATCH v3 4/6] syscon: Decrease driver registration priority Andrey Smirnov
2016-05-16 16:46 ` [PATCH v3 5/6] aiodev: Add TEMPMON driver Andrey Smirnov
2016-05-16 16:46 ` [PATCH v3 6/6] aiodev: Add basic LM75 temperature driver Andrey Smirnov
2016-05-18  5:49 ` [PATCH v3 0/6] AIODEV subsystem Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox