Hi Linus, The following changes since commit 54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c: Linux 5.4-rc1 (2019-09-30 10:35:40 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git tags/tag-chrome-platform-for-v5.5 for you to fetch changes up to 856a0a6e2d09d31fd8f00cc1fc6645196a509d56: platform/chrome: wilco_ec: fix use after free issue (2019-12-02 12:14:42 +0100) ---------------------------------------------------------------- chrome platform changes for v5.5 * CrOS EC / MFD / IIO - Contains tag-ib-chrome-mfd-iio-input-5.5, which is the first part of a series from Gwendal to refactor sensor code between MFD, CrOS EC, iio and input in order to add a new sensorhub driver and FIFO processing * Wilco EC: - Add support for Dell's USB PowerShare policy control, keyboard backlight LED driver, and a new test_event file. - Fixes use after free in wilco_ec's telemetry driver. * Misc: - bugfix in cros_usbpd_logger (missing destroy workqueue). ---------------------------------------------------------------- Chuhong Yuan (1): platform/chrome: cros_usbpd_logger: add missed destroy_workqueue in remove Daniel Campello (3): platform/chrome: wilco_ec: Add debugfs test_event file platform/chrome: wilco_ec: Add Dell's USB PowerShare Policy control platform/chrome: wilco_ec: Add keyboard backlight LED support Enric Balletbo i Serra (2): Merge tag 'tag-ib-chrome-mfd-iio-input-5.5' into chrome-platform-5.5 platform/chrome: cros_ec: Add Kconfig default for cros-ec-sensorhub Enrico Granata (1): platform/chrome: cros_ec: handle MKBP more events flag Gwendal Grignou (8): platform/chrome: cros_ec: Put docs with the code mfd / platform: cros_ec: Add sensor_count and make check_features public iio / platform: cros_ec: Add cros-ec-sensorhub driver mfd / platform / iio: cros_ec: Register sensor through sensorhub platform/chrome: cros-ec: Record event timestamp in the hard irq platform/chrome: cros_ec: Do not attempt to register a non-positive IRQ number Revert "Input: cros_ec_keyb - add back missing mask for event_type" Revert "Input: cros_ec_keyb: mask out extra flags in event_type" Krzysztof Kozlowski (1): platform/chrome: cros_ec: Fix Kconfig indentation Nick Crews (1): platform/chrome: wilco_ec: Add charging config driver Wen Yang (1): platform/chrome: wilco_ec: fix use after free issue Documentation/ABI/testing/sysfs-platform-wilco-ec | 17 ++ drivers/iio/accel/cros_ec_accel_legacy.c | 6 - drivers/iio/common/cros_ec_sensors/Kconfig | 2 +- .../iio/common/cros_ec_sensors/cros_ec_sensors.c | 6 - .../common/cros_ec_sensors/cros_ec_sensors_core.c | 4 +- drivers/iio/light/cros_ec_light_prox.c | 6 - drivers/input/keyboard/cros_ec_keyb.c | 6 +- drivers/mfd/cros_ec_dev.c | 235 +----------------- drivers/platform/chrome/Kconfig | 19 +- drivers/platform/chrome/Makefile | 1 + drivers/platform/chrome/cros_ec.c | 84 ++++++- drivers/platform/chrome/cros_ec_ishtp.c | 25 +- drivers/platform/chrome/cros_ec_lpc.c | 17 +- drivers/platform/chrome/cros_ec_proto.c | 267 ++++++++++++++++++--- drivers/platform/chrome/cros_ec_rpmsg.c | 19 +- drivers/platform/chrome/cros_ec_sensorhub.c | 199 +++++++++++++++ drivers/platform/chrome/cros_usbpd_logger.c | 1 + drivers/platform/chrome/wilco_ec/Kconfig | 2 +- drivers/platform/chrome/wilco_ec/Makefile | 3 +- drivers/platform/chrome/wilco_ec/core.c | 28 ++- drivers/platform/chrome/wilco_ec/debugfs.c | 47 +++- drivers/platform/chrome/wilco_ec/keyboard_leds.c | 191 +++++++++++++++ drivers/platform/chrome/wilco_ec/sysfs.c | 91 +++++++ drivers/platform/chrome/wilco_ec/telemetry.c | 2 +- include/linux/platform_data/cros_ec_proto.h | 138 +++-------- include/linux/platform_data/cros_ec_sensorhub.h | 30 +++ include/linux/platform_data/wilco-ec.h | 15 ++ 27 files changed, 1019 insertions(+), 442 deletions(-) create mode 100644 drivers/platform/chrome/cros_ec_sensorhub.c create mode 100644 drivers/platform/chrome/wilco_ec/keyboard_leds.c create mode 100644 include/linux/platform_data/cros_ec_sensorhub.h -- Benson Leung Staff Software Engineer Chrome OS Kernel Google Inc. bleung@google.com Chromium OS Project bleung@chromium.org