linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] chrome-platform changes for v5.19
@ 2022-05-26  1:33 Tzung-Bi Shih
  2022-05-26 22:04 ` pr-tracker-bot
  2022-06-06  3:33 ` patchwork-bot+chrome-platform
  0 siblings, 2 replies; 3+ messages in thread
From: Tzung-Bi Shih @ 2022-05-26  1:33 UTC (permalink / raw)
  To: torvalds; +Cc: pmalani, bleung, linux-kernel, groeck, tzungbi, chrome-platform

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

Linus,

Please pull chrome-platform updates for v5.19.

Thanks,
TzungBi


The following changes since commit 3123109284176b1532874591f7c81f3837bbdc17:

  Linux 5.18-rc1 (2022-04-03 14:08:21 -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.19

for you to fetch changes up to abd4fd43f2af03e2e852e6b1b98faeee9e3eae55:

  platform/chrome: Use imperative mood for ChromeOS ACPI sysfs ABI descriptions (2022-05-24 08:46:21 +0800)

----------------------------------------------------------------
chrome platform changes for 5.19

cros_ec:
* Fix wrong error handling path.
* Clean-up patches.

cros_ec_chardev:
* Re-introduce cros_ec_cmd_xfer to fix ABI broken.

cros_ec_lpcs:
* Support the Framework Laptop.

cros_ec_typec:
* Fix NULL dereference.

chromeos_acpi:
* Add ChromeOS ACPI device driver.
* Fix Sphinx errors when `make htmldocs`.

misc:
* Drop BUG_ON()s.

----------------------------------------------------------------
Akihiko Odaki (1):
      platform/chrome: cros_ec_typec: Check for EC driver

Bagas Sanjaya (2):
      platform/chrome: Use tables for values lists of ChromeOS ACPI sysfs ABI
      platform/chrome: Use imperative mood for ChromeOS ACPI sysfs ABI descriptions

Dustin L. Howett (2):
      platform/chrome: cros_ec_lpcs: detect the Framework Laptop
      platform/chrome: cros_ec_lpcs: reserve the MEC LPC I/O ports first

Enric Balletbo i Serra (1):
      platform/chrome: Add ChromeOS ACPI device driver

Guenter Roeck (1):
      platform/chrome: Re-introduce cros_ec_cmd_xfer and use it for ioctls

Tzung-Bi Shih (12):
      platform/chrome: cros_ec: fix error handling in cros_ec_register()
      platform/chrome: cros_ec: remove unused variable `was_wake_device`
      platform/chrome: cros_ec: determine `wake_enabled` in cros_ec_suspend()
      platform/chrome: cros_ec: sort header inclusion alphabetically
      platform/chrome: cros_ec: append newline to all logs
      platform/chrome: cros_ec_proto: drop unneeded BUG_ON() in prepare_packet()
      platform/chrome: correct cros_ec_prepare_tx() usage
      platform/chrome: cros_ec_proto: drop BUG_ON() in cros_ec_prepare_tx()
      platform/chrome: cros_ec_proto: drop BUG_ON() in cros_ec_get_host_event()
      platform/chrome: cros_ec_i2c: drop BUG_ON() in cros_ec_pkt_xfer_i2c()
      platform/chrome: cros_ec_spi: drop unneeded BUG_ON()
      platform/chrome: cros_ec_spi: drop BUG_ON() if `din` isn't large enough

 .../ABI/testing/sysfs-driver-chromeos-acpi         | 137 ++++++++
 .../firmware-guide/acpi/chromeos-acpi-device.rst   | 363 +++++++++++++++++++++
 Documentation/firmware-guide/acpi/index.rst        |   1 +
 drivers/platform/chrome/Kconfig                    |  11 +
 drivers/platform/chrome/Makefile                   |   1 +
 drivers/platform/chrome/chromeos_acpi.c            | 257 +++++++++++++++
 drivers/platform/chrome/cros_ec.c                  |  36 +-
 drivers/platform/chrome/cros_ec_chardev.c          |   2 +-
 drivers/platform/chrome/cros_ec_i2c.c              |  12 +-
 drivers/platform/chrome/cros_ec_ishtp.c            |   4 +-
 drivers/platform/chrome/cros_ec_lpc.c              |  49 ++-
 drivers/platform/chrome/cros_ec_proto.c            |  63 +++-
 drivers/platform/chrome/cros_ec_rpmsg.c            |   2 +
 drivers/platform/chrome/cros_ec_spi.c              |  15 +-
 drivers/platform/chrome/cros_ec_typec.c            |   3 +
 include/linux/platform_data/cros_ec_commands.h     |  10 +-
 include/linux/platform_data/cros_ec_proto.h        |   6 +-
 17 files changed, 914 insertions(+), 58 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-driver-chromeos-acpi
 create mode 100644 Documentation/firmware-guide/acpi/chromeos-acpi-device.rst
 create mode 100644 drivers/platform/chrome/chromeos_acpi.c

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

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

* Re: [GIT PULL] chrome-platform changes for v5.19
  2022-05-26  1:33 [GIT PULL] chrome-platform changes for v5.19 Tzung-Bi Shih
@ 2022-05-26 22:04 ` pr-tracker-bot
  2022-06-06  3:33 ` patchwork-bot+chrome-platform
  1 sibling, 0 replies; 3+ messages in thread
From: pr-tracker-bot @ 2022-05-26 22:04 UTC (permalink / raw)
  To: Tzung-Bi Shih
  Cc: torvalds, pmalani, bleung, linux-kernel, groeck, tzungbi,
	chrome-platform

The pull request you sent on Thu, 26 May 2022 09:33:02 +0800:

> git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git/ tags/tag-chrome-platform-for-v5.19

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

Thank you!

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

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

* Re: [GIT PULL] chrome-platform changes for v5.19
  2022-05-26  1:33 [GIT PULL] chrome-platform changes for v5.19 Tzung-Bi Shih
  2022-05-26 22:04 ` pr-tracker-bot
@ 2022-06-06  3:33 ` patchwork-bot+chrome-platform
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+chrome-platform @ 2022-06-06  3:33 UTC (permalink / raw)
  To: Tzung-Bi Shih
  Cc: torvalds, pmalani, bleung, linux-kernel, groeck, chrome-platform

Hello:

This pull request was applied to chrome-platform/linux.git (for-next)
by Linus Torvalds <torvalds@linux-foundation.org>:

On Thu, 26 May 2022 09:33:02 +0800 you wrote:
> Linus,
> 
> Please pull chrome-platform updates for v5.19.
> 
> Thanks,
> TzungBi
> 
> [...]

Here is the summary with links:
  - [GIT,PULL] chrome-platform changes for v5.19
    https://git.kernel.org/chrome-platform/c/f1f88bb51f1a

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2022-06-06  3:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-26  1:33 [GIT PULL] chrome-platform changes for v5.19 Tzung-Bi Shih
2022-05-26 22:04 ` pr-tracker-bot
2022-06-06  3:33 ` patchwork-bot+chrome-platform

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