chrome-platform.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [GIT,PULL] chrome-platform changes for v6.3
@ 2023-02-20  1:48 Tzung-Bi Shih
  2023-02-22  1:43 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Tzung-Bi Shih @ 2023-02-20  1:48 UTC (permalink / raw)
  To: torvalds; +Cc: pmalani, bleung, groeck, tzungbi, linux-kernel, chrome-platform

[-- Attachment #1: Type: text/plain, Size: 5034 bytes --]

Linus,

Please pull chrome-platform updates for v6.3.

Thanks,
TzungBi


The following changes since commit 1b929c02afd37871d5afb9d498426f83432e71c2:

  Linux 6.2-rc1 (2022-12-25 13:41:39 -0800)

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.3

for you to fetch changes up to b0d8a67715dae445c065c83a40a581d6563a341f:

  platform/chrome: cros_ec_typec: Fix spelling mistake (2023-02-08 18:21:03 +0000)

----------------------------------------------------------------
chrome platform changes for 6.3

* New drivers

  - Driver cros_ec_uart for ChromeOS EC protocol over UART.
  - Driver cros_typec_vdm for USB PD Vendor Defined Message.

* Improvements

  - Preserve logs as much as possible when EC panic.
  - Shutdown to refrain from potential HW damages when EC panic.

* Fixes

  - Fix DP_PORT_VDO to include DP_CAP_RECEPTACLE.
  - Fix a lockdep false positive.

* Cleanups

  - Use sysfs_emit*() instead of scnprintf().
  - Use asm instead of asm-generic for unaligned.h.

* Misc

  - Rename module name from cros_ec_typec to cros-ec-typec.
  - Minor fixes.

----------------------------------------------------------------
Andy Shevchenko (1):
      platform/chrome: cros_ec_proto: Use asm instead of asm-generic

Bhanu Prakash Maiya (2):
      platform/chrome: cros_ec_uart: Add transport layer
      platform/chrome: cros_ec_uart: Add DT enumeration support

Chen-Yu Tsai (1):
      platform/chrome: cros_ec: Use per-device lockdep key

Colin Ian King (1):
      platform/chrome: cros_ec_typec: Fix spelling mistake

Marek Szyprowski (1):
      platform/chrome: cros_ec: Fix panic notifier registration

Prashant Malani (15):
      Revert "mfd: cros_ec: Add SCP Core-1 as a new CrOS EC MCU"
      platform_chrome: cros_ec: Add Type-C VDM defines
      platform/chrome: cros_ec_typec: Stash port driver info
      platform/chrome: cros_ec_typec: Set port alt mode drvdata
      platform/chrome: cros_ec_typec: Update port DP VDO
      platform/chrome: cros_ec_typec: Move structs to header
      platform/chrome: cros_ec_typec: Alter module name with hyphens
      platform/chrome: cros_ec_typec: Add initial VDM support
      platform/chrome: cros_typec_vdm: Add VDM reply support
      platform/chrome: cros_typec_vdm: Add VDM send support
      platform/chrome: cros_typec_switch: Use fwnode* prop check
      platform/chrome: cros_typec_switch: Check for retimer flag
      platform/chrome: cros_typec_vdm: Fix VDO copy
      platform/chrome: cros_ec: Add VDM attention headers
      platform/chrome: cros_typec_vdm: Add Attention support

Rob Barnes (2):
      platform/chrome: cros_ec: Poll EC log on EC panic
      platform/chrome: cros_ec: Shutdown on EC Panic

Robert Zieba (1):
      platform/chrome: cros_ec_uart: fix race condition

Tom Rix (1):
      platform/chrome: cros_ec_lpc: initialize the buf variable

Tzung-Bi Shih (7):
      platform/chrome: use sysfs_emit_at() instead of scnprintf()
      platform/chrome: fix kernel-doc warnings for panic notifier
      platform/chrome: fix kernel-doc warning for suspend_timeout_ms
      platform/chrome: fix kernel-doc warning for last_resume_result
      platform/chrome: fix kernel-doc warnings for cros_ec_command
      platform/chrome: cros_ec_uart: fix negative type promoted to high
      platform/chrome: cros_ec_proto: remove big stub objects from stack

Victor Ding (1):
      platform/chrome: cros_ec_typec: allow deferred probe of switch handles

ye xingchen (1):
      platform/chrome: use sysfs_emit() instead of scnprintf()

 MAINTAINERS                                    |  10 +-
 drivers/mfd/cros_ec_dev.c                      |   5 -
 drivers/platform/chrome/Kconfig                |  12 +-
 drivers/platform/chrome/Makefile               |   4 +-
 drivers/platform/chrome/cros_ec.c              |  15 +-
 drivers/platform/chrome/cros_ec_debugfs.c      |  25 ++
 drivers/platform/chrome/cros_ec_lightbar.c     |  14 +-
 drivers/platform/chrome/cros_ec_lpc.c          |  12 +-
 drivers/platform/chrome/cros_ec_proto_test.c   |  13 +-
 drivers/platform/chrome/cros_ec_sysfs.c        |  40 ++-
 drivers/platform/chrome/cros_ec_typec.c        | 123 +++------
 drivers/platform/chrome/cros_ec_typec.h        |  85 ++++++
 drivers/platform/chrome/cros_ec_uart.c         | 362 +++++++++++++++++++++++++
 drivers/platform/chrome/cros_typec_switch.c    |  16 +-
 drivers/platform/chrome/cros_typec_vdm.c       | 148 ++++++++++
 drivers/platform/chrome/cros_typec_vdm.h       |  13 +
 drivers/platform/chrome/wilco_ec/sysfs.c       |   3 +-
 include/linux/platform_data/cros_ec_commands.h |  69 ++++-
 include/linux/platform_data/cros_ec_proto.h    |  24 +-
 19 files changed, 846 insertions(+), 147 deletions(-)
 create mode 100644 drivers/platform/chrome/cros_ec_typec.h
 create mode 100644 drivers/platform/chrome/cros_ec_uart.c
 create mode 100644 drivers/platform/chrome/cros_typec_vdm.c
 create mode 100644 drivers/platform/chrome/cros_typec_vdm.h

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [GIT,PULL] chrome-platform changes for v6.3
  2023-02-20  1:48 [GIT,PULL] chrome-platform changes for v6.3 Tzung-Bi Shih
@ 2023-02-22  1:43 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2023-02-22  1:43 UTC (permalink / raw)
  To: Tzung-Bi Shih
  Cc: torvalds, pmalani, bleung, groeck, tzungbi, linux-kernel,
	chrome-platform

The pull request you sent on Mon, 20 Feb 2023 09:48:55 +0800:

> https://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git tags/tag-chrome-platform-for-v6.3

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/5f5ce6bcfcc3abbaf690fca30a22d0dcf6f36d32

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2023-02-22  1:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-20  1:48 [GIT,PULL] chrome-platform changes for v6.3 Tzung-Bi Shih
2023-02-22  1:43 ` pr-tracker-bot

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).