Messages in this thread |  | | Date | Mon, 12 Dec 2022 10:30:23 +0800 | From | Tzung-Bi Shih <> | Subject | [GIT,PULL] chrome-platform changes for v6.2 |
| |
Linus,
Please pull chrome-platform updates for v6.2.
Thanks, TzungBi
The following changes since commit 9abf2313adc1ca1b6180c508c25f22f9395cc780:
Linux 6.1-rc1 (2022-10-16 15:36:24 -0700)
are available in the Git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git tags/tag-chrome-platform-for-v6.2
for you to fetch changes up to 9a8aadcf0b459c1257b9477fd6402e1d5952ae07:
platform/chrome: cros_ec_typec: zero out stale pointers (2022-12-08 09:44:48 +0800)
---------------------------------------------------------------- chrome platform changes for 6.2
* New drivers
- Driver cros_hps_i2c for ChromeOS human presence sensor.
* Cleanups
- Add missing property in dt-binding example. - Update the availability of properties in dt-binding. - Separate dt-binding for ChromeOS fingerprint sensor.
* Improvements
- Set PROBE_PREFER_ASYNCHRONOUS for some drivers for shortening boot time.
* Fixes
- Fix an use-after-free in cros_ec_typec.
* Minor fixes and cleanups
---------------------------------------------------------------- Brian Norris (6): platform/chrome: cros_ec_lpc: Move mec_init to device probe platform/chrome: cros_ec_lpc: Mark PROBE_PREFER_ASYNCHRONOUS platform/chrome: cros_ec_debugfs: Set PROBE_PREFER_ASYNCHRONOUS platform/chrome: cros_ec_lightbar: Set PROBE_PREFER_ASYNCHRONOUS platform/chrome: cros_ec_spi: Set PROBE_PREFER_ASYNCHRONOUS platform/chrome: cros_ec_lpc: Force synchronous probe
Christophe JAILLET (1): platform/chrome: Use kstrtobool() instead of strtobool()
Dan Callaghan (2): platform/chrome: add a driver for HPS platform/chrome: cros_hps_i2c: make remove callback return void
Stephen Boyd (2): dt-bindings: cros-ec: Reorganize and enforce property availability dt-bindings: cros-ec: Add ChromeOS fingerprint binding
Tzung-Bi Shih (1): platform/chrome: cros_ec_lpc_mec: remove cros_ec_lpc_mec_destroy()
Uwe Kleine-König (1): platform/chrome: cros_ec: Convert to i2c's .probe_new()
Victor Ding (1): platform/chrome: cros_ec_typec: zero out stale pointers
Yuan Can (1): platform/chrome: cros_usbpd_notify: Fix error handling in cros_usbpd_notify_init()
.../bindings/chrome/google,cros-ec-typec.yaml | 1 + .../chrome/google,cros-kbd-led-backlight.yaml | 1 + .../bindings/extcon/extcon-usbc-cros-ec.yaml | 1 + .../bindings/i2c/google,cros-ec-i2c-tunnel.yaml | 1 + .../devicetree/bindings/mfd/google,cros-ec.yaml | 103 +++++++++++-- .../bindings/pwm/google,cros-ec-pwm.yaml | 1 + .../regulator/google,cros-ec-regulator.yaml | 1 + .../bindings/sound/google,cros-ec-codec.yaml | 1 + MAINTAINERS | 6 + drivers/platform/chrome/Kconfig | 10 ++ drivers/platform/chrome/Makefile | 1 + drivers/platform/chrome/cros_ec_debugfs.c | 1 + drivers/platform/chrome/cros_ec_i2c.c | 5 +- drivers/platform/chrome/cros_ec_lightbar.c | 4 +- drivers/platform/chrome/cros_ec_lpc.c | 15 +- drivers/platform/chrome/cros_ec_lpc_mec.c | 6 - drivers/platform/chrome/cros_ec_lpc_mec.h | 7 - drivers/platform/chrome/cros_ec_spi.c | 1 + drivers/platform/chrome/cros_ec_typec.c | 3 + drivers/platform/chrome/cros_hps_i2c.c | 160 +++++++++++++++++++++ drivers/platform/chrome/cros_usbpd_notify.c | 6 +- drivers/platform/chrome/wilco_ec/core.c | 5 - 22 files changed, 298 insertions(+), 42 deletions(-) create mode 100644 drivers/platform/chrome/cros_hps_i2c.c [unhandled content-type:application/pgp-signature] |  |