All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/7] Add cros_ec changes for newer boards
@ 2014-04-22 16:45 ` Doug Anderson
  0 siblings, 0 replies; 44+ messages in thread
From: Doug Anderson @ 2014-04-22 16:45 UTC (permalink / raw)
  To: lee.jones, swarren, wsa
  Cc: abrestic, dgreid, olof, sjg, linux-samsung-soc, linux-tegra,
	Doug Anderson, mark.rutland, andrew, swarren, thierry.reding,
	linux-i2c, matt.porter, jdelvare, laurent.pinchart+renesas,
	vpalatin, sameo, linux-doc, bjorn.andersson, u.kleine-koenig,
	kevin.strasser, devicetree, pawel.moll, ijc+devicetree, robh+dt,
	linux, andriy.shevchenko, ch.naveen, linux-arm-kernel,
	shane.huang, rdunlap, linux-kernel, linux, galak

This series adds the most critical cros_ec changes for newer boards
using cros_ec.  Specifically:
* Fixes timing/locking issues with the previously upstreamed (but
  never used upstream) cros_ec_spi driver.
* Updates the cros_ec header file to the latest version which allows
  us to use newer EC features like i2c tunneling.
* Adds an i2c tunnel driver to allow communication to the EC's i2c
  devices.

This _doesn't_ get the EC driver fully up to speed with what's in the
current Chromium OS trees.  There are a whole slew of cleanup patches
there, an addition of an LPC transport mode, and exports of functions
to userspace.  Once these patches land and we have functionality we
can continue to pick more cleanup patches.

Changes in v2:
- Update tunnel binding as per swarren
- Removed i2c20 alias for i2c tunnel

Bill Richardson (1):
  mfd: cros_ec: Sync to the latest cros_ec_commands.h from EC sources

David Hendricks (1):
  mfd: cros_ec: spi: calculate delay between transfers correctly

Doug Anderson (5):
  mfd: cros_ec: spi: Add mutex to cros_ec_spi
  mfd: cros_ec: spi: Make the cros_ec_spi timeout more reliable
  mfd: cros_ec: spi: Increase cros_ec_spi deadline from 5ms to 100ms
  i2c: ChromeOS EC tunnel driver
  ARM: tegra: Add the EC i2c tunnel to tegra124-venice2

 .../devicetree/bindings/i2c/i2c-cros-ec-tunnel.txt |   39 +
 arch/arm/boot/dts/tegra124-venice2.dts             |   26 +
 drivers/i2c/busses/Kconfig                         |    9 +
 drivers/i2c/busses/Makefile                        |    1 +
 drivers/i2c/busses/i2c-cros-ec-tunnel.c            |  304 ++++++
 drivers/mfd/cros_ec.c                              |    7 +-
 drivers/mfd/cros_ec_spi.c                          |   67 +-
 include/linux/mfd/cros_ec.h                        |    4 +-
 include/linux/mfd/cros_ec_commands.h               | 1128 ++++++++++++++++++--
 9 files changed, 1493 insertions(+), 92 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/i2c/i2c-cros-ec-tunnel.txt
 create mode 100644 drivers/i2c/busses/i2c-cros-ec-tunnel.c

-- 
1.9.1.423.g4596e3a


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

end of thread, other threads:[~2014-04-30 17:44 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-22 16:45 [PATCH v2 0/7] Add cros_ec changes for newer boards Doug Anderson
2014-04-22 16:45 ` Doug Anderson
2014-04-22 16:45 ` Doug Anderson
     [not found] ` <1398185154-19404-1-git-send-email-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2014-04-22 16:45   ` [PATCH v2 1/7] mfd: cros_ec: spi: calculate delay between transfers correctly Doug Anderson
2014-04-22 16:45     ` Doug Anderson
2014-04-23 12:33     ` Lee Jones
2014-04-22 16:45   ` [PATCH v2 4/7] mfd: cros_ec: spi: Increase cros_ec_spi deadline from 5ms to 100ms Doug Anderson
2014-04-22 16:45     ` Doug Anderson
2014-04-23 12:36     ` Lee Jones
2014-04-22 16:45   ` [PATCH v2 6/7] i2c: ChromeOS EC tunnel driver Doug Anderson
2014-04-22 16:45     ` Doug Anderson
2014-04-23 12:37     ` Lee Jones
2014-04-23 16:37     ` Doug Anderson
     [not found]     ` <1398185154-19404-7-git-send-email-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2014-04-29 12:33       ` Wolfram Sang
2014-04-29 12:33         ` Wolfram Sang
2014-04-30 17:44         ` Doug Anderson
2014-04-22 16:45 ` [PATCH v2 2/7] mfd: cros_ec: spi: Add mutex to cros_ec_spi Doug Anderson
2014-04-23 12:34   ` Lee Jones
2014-04-22 16:45 ` [PATCH v2 3/7] mfd: cros_ec: spi: Make the cros_ec_spi timeout more reliable Doug Anderson
     [not found]   ` <1398185154-19404-4-git-send-email-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2014-04-23 12:35     ` Lee Jones
2014-04-23 12:35       ` Lee Jones
2014-04-22 16:45 ` [PATCH v2 5/7] mfd: cros_ec: Sync to the latest cros_ec_commands.h from EC sources Doug Anderson
2014-04-23 12:36   ` Lee Jones
2014-04-22 16:45 ` [PATCH v2 7/7] ARM: tegra: Add the EC i2c tunnel to tegra124-venice2 Doug Anderson
2014-04-22 16:45   ` Doug Anderson
2014-04-22 16:45   ` Doug Anderson
2014-04-23 12:32 ` [PATCH v2 0/7] Add cros_ec changes for newer boards Lee Jones
2014-04-23 12:32   ` Lee Jones
2014-04-23 12:32   ` Lee Jones
2014-04-23 16:20   ` Stephen Warren
2014-04-23 16:20     ` Stephen Warren
2014-04-23 16:20     ` Stephen Warren
2014-04-23 16:32     ` Doug Anderson
2014-04-23 16:32       ` Doug Anderson
2014-04-23 16:35       ` Doug Anderson
2014-04-23 16:35         ` Doug Anderson
2014-04-28  9:19         ` Lee Jones
2014-04-28  9:19           ` Lee Jones
2014-04-28 21:18           ` Doug Anderson
2014-04-28 21:18             ` Doug Anderson
2014-04-29  8:21             ` Lee Jones
2014-04-29  8:21               ` Lee Jones
2014-04-29 16:51               ` Doug Anderson
2014-04-29 16:51                 ` Doug Anderson

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.