From: Lee Jones <lee.jones@linaro.org>
To: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Cc: Samuel Ortiz <sameo@linux.intel.com>,
Olof Johansson <olof@lixom.net>,
Doug Anderson <dianders@chromium.org>,
Bill Richardson <wfrichar@chromium.org>,
Simon Glass <sjg@google.com>,
Gwendal Grignou <gwendal@google.com>,
Stephen Barber <smbarber@chromium.org>,
Filipe Brandenburger <filbranden@google.com>,
Todd Broch <tbroch@chromium.org>,
Alexandru M Stan <amstan@chromium.org>,
Heiko Stuebner <heiko@sntech.de>,
linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org
Subject: Re: [PATCH v7 0/8] mfd: cros_ec: Add multi EC and proto v3 support
Date: Mon, 15 Jun 2015 13:29:30 +0100 [thread overview]
Message-ID: <20150615122930.GA32321@x1> (raw)
In-Reply-To: <1433847889-7220-1-git-send-email-javier.martinez@collabora.co.uk>
Wolfram, Dmitry, Olof,
Enjoy!
The following changes since commit 5ebe6afaf0057ac3eaeb98defd5456894b446d22:
Linux 4.1-rc2 (2015-05-03 19:22:23 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git ib-mfd-i2c-input-chrome-4.2
for you to fetch changes up to ff4378f4b813d5aa26bbf814a9060638dab1fbbf:
mfd: cros_ec: spi: Add delay for asserting CS (2015-06-15 13:18:24 +0100)
----------------------------------------------------------------
Alexandru M Stan (2):
mfd: cros_ec: spi: Add a DT property to delay asserting the CS
mfd: cros_ec: spi: Add delay for asserting CS
Gwendal Grignou (2):
mfd: cros_ec: Remove parent field
mfd: cros_ec: Support multiple EC in a system
Javier Martinez Canillas (2):
mfd: cros_ec: Use a zero-length array for command data
mfd: cros_ec: Move protocol helpers out of the MFD driver
Stephen Barber (3):
mfd: cros_ec: rev cros_ec_commands.h
mfd: cros_ec: add proto v3 skeleton
mfd: cros_ec: add bus-specific proto v3 code
Todd Broch (1):
mfd: cros_ec: Instantiate sub-devices from device tree
Documentation/devicetree/bindings/mfd/cros-ec.txt | 4 +
drivers/i2c/busses/Kconfig | 2 +-
drivers/i2c/busses/i2c-cros-ec-tunnel.c | 45 ++-
drivers/input/keyboard/Kconfig | 2 +-
drivers/input/keyboard/cros_ec_keyb.c | 31 +-
drivers/mfd/Kconfig | 6 +-
drivers/mfd/cros_ec.c | 173 ++++-----
drivers/mfd/cros_ec_i2c.c | 170 ++++++++-
drivers/mfd/cros_ec_spi.c | 408 +++++++++++++++++++---
drivers/platform/chrome/Kconfig | 9 +-
drivers/platform/chrome/Makefile | 1 +
drivers/platform/chrome/cros_ec_dev.c | 189 ++++++----
drivers/platform/chrome/cros_ec_dev.h | 7 -
drivers/platform/chrome/cros_ec_lightbar.c | 217 +++++++-----
drivers/platform/chrome/cros_ec_lpc.c | 85 ++++-
drivers/platform/chrome/cros_ec_proto.c | 382 ++++++++++++++++++++
drivers/platform/chrome/cros_ec_sysfs.c | 178 ++++++----
include/linux/mfd/cros_ec.h | 86 ++++-
include/linux/mfd/cros_ec_commands.h | 277 +++++++++++++--
19 files changed, 1808 insertions(+), 464 deletions(-)
create mode 100644 drivers/platform/chrome/cros_ec_proto.c
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
prev parent reply other threads:[~2015-06-15 12:29 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-09 11:04 [PATCH v7 0/8] mfd: cros_ec: Add multi EC and proto v3 support Javier Martinez Canillas
2015-06-09 11:04 ` [PATCH v7 2/8] mfd: cros_ec: rev cros_ec_commands.h Javier Martinez Canillas
2015-06-15 12:23 ` Lee Jones
2015-06-09 11:04 ` [PATCH v7 3/8] mfd: cros_ec: Move protocol helpers out of the MFD driver Javier Martinez Canillas
2015-06-15 12:23 ` Lee Jones
2015-06-09 11:04 ` [PATCH v7 4/8] mfd: cros_ec: add proto v3 skeleton Javier Martinez Canillas
2015-06-15 12:23 ` Lee Jones
2015-06-09 11:04 ` [PATCH v7 5/8] mfd: cros_ec: add bus-specific proto v3 code Javier Martinez Canillas
2015-06-15 12:24 ` Lee Jones
2015-06-09 11:04 ` [PATCH v7 6/8] mfd: cros_ec: Support multiple EC in a system Javier Martinez Canillas
2015-06-15 12:24 ` Lee Jones
[not found] ` <1433847889-7220-1-git-send-email-javier.martinez-ZGY8ohtN/8pPYcu2f3hruQ@public.gmane.org>
2015-06-09 11:04 ` [PATCH v7 1/8] mfd: cros_ec: Use a zero-length array for command data Javier Martinez Canillas
[not found] ` <1433847889-7220-2-git-send-email-javier.martinez-ZGY8ohtN/8pPYcu2f3hruQ@public.gmane.org>
2015-06-15 12:22 ` Lee Jones
2015-06-09 11:04 ` [PATCH v7 7/8] mfd: cros_ec: spi: Add a DT property to delay asserting the CS Javier Martinez Canillas
2015-06-15 12:25 ` Lee Jones
2015-06-09 11:04 ` [PATCH v7 8/8] mfd: cros_ec: spi: Add delay for asserting CS Javier Martinez Canillas
2015-06-15 12:25 ` Lee Jones
2015-06-11 11:50 ` [PATCH v7 0/8] mfd: cros_ec: Add multi EC and proto v3 support Heiko Stübner
2015-06-11 12:05 ` Javier Martinez Canillas
2015-06-15 12:29 ` Lee Jones [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150615122930.GA32321@x1 \
--to=lee.jones@linaro.org \
--cc=amstan@chromium.org \
--cc=devicetree@vger.kernel.org \
--cc=dianders@chromium.org \
--cc=filbranden@google.com \
--cc=gwendal@google.com \
--cc=heiko@sntech.de \
--cc=javier.martinez@collabora.co.uk \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=olof@lixom.net \
--cc=sameo@linux.intel.com \
--cc=sjg@google.com \
--cc=smbarber@chromium.org \
--cc=tbroch@chromium.org \
--cc=wfrichar@chromium.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).