Dear Olof, Benson, We have some patches that stayed in the mailing list for long time, now that we are in rc2 we're wondering if you can review the following patches and if it's ok include for the next 4.12 merge window.
As some patches depends on the other to apply cleanly I created a patch series with all includes to make easier the merge, so this series include the following patches - https://lkml.org/lkml/2016/8/23/10 - https://lkml.org/lkml/2016/12/2/360 - https://lkml.org/lkml/2016/12/16/438 - https://lkml.org/lkml/2017/1/11/579 Basically what I did in this series is rebase on top of linux-next and add the acks received (basically the ones received by Lee Jones for the mfd parts) and also fix a small issue reported by Doug Anderson. If you prefer to pick the patches from a git repository, the following changes since commit a88dcd6742a2eedfc047b5513cda6b7351215bf0: mfd: cros_ec: Add helper for event notifier. are available in the git repository at: https://git.collabora.com/cgit/linux.git upstream/chromeos/for-4.12 for you to fetch changes up to 02397bc8b49ba3fdaf2e6ee389a231590059c81c: platform/chrome: cros_ec_lightbar - Avoid I2C xfer to EC during suspend Many thanks for your help, Enric Archana Patni (1): platform/chrome: cros_ec_lpc: Add power management ops Eric Caruso (4): mfd: cros_ec: add debugfs, console log file platform/chrome: cros_ec_lightbar - Add lightbar program feature to sysfs platform/chrome: cros_ec_lightbar - Control of suspend/resume lightbar sequence platform/chrome: cros_ec_lightbar - Add userspace lightbar control bit to EC Gwendal Grignou (3): mfd: cros_ec: Add helper for event notifier. platform/chrome: cros_ec_lpc: Add support for GOOG004 ACPI device platform/chrome: cros_ec_lpc: Add MKBP events support over ACPI Jeffery Yu (1): platform/chrome: cros_ec_lightbar - Avoid I2C xfer to EC during suspend Nicolas Boichat (2): mfd: cros_ec: Add EC console read structures definitions mfd: cros_ec: Add support for dumping panic information Shawn Nematbakhsh (2): platform/chrome: cros_ec_lpc: Add R/W helpers to LPC protocol variants platform/chrome: cros_ec_lpc: Add support for mec1322 EC drivers/platform/chrome/Kconfig | 14 +- drivers/platform/chrome/Makefile | 7 +- drivers/platform/chrome/cros_ec_debugfs.c | 401 +++++++++++++++++++++++++++++ drivers/platform/chrome/cros_ec_debugfs.h | 27 ++ drivers/platform/chrome/cros_ec_dev.c | 40 +++ drivers/platform/chrome/cros_ec_dev.h | 6 + drivers/platform/chrome/cros_ec_lightbar.c | 197 +++++++++++++- drivers/platform/chrome/cros_ec_lpc.c | 167 +++++++----- drivers/platform/chrome/cros_ec_lpc_mec.c | 140 ++++++++++ drivers/platform/chrome/cros_ec_lpc_reg.c | 133 ++++++++++ drivers/platform/chrome/cros_ec_proto.c | 20 ++ include/linux/mfd/cros_ec.h | 14 + include/linux/mfd/cros_ec_commands.h | 42 ++- include/linux/mfd/cros_ec_lpc_mec.h | 90 +++++++ include/linux/mfd/cros_ec_lpc_reg.h | 61 +++++ 15 files changed, 1286 insertions(+), 73 deletions(-) create mode 100644 drivers/platform/chrome/cros_ec_debugfs.c create mode 100644 drivers/platform/chrome/cros_ec_debugfs.h create mode 100644 drivers/platform/chrome/cros_ec_lpc_mec.c create mode 100644 drivers/platform/chrome/cros_ec_lpc_reg.c create mode 100644 include/linux/mfd/cros_ec_lpc_mec.h create mode 100644 include/linux/mfd/cros_ec_lpc_reg.h -- 2.9.3