All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] HID for 5.18
@ 2022-03-23  9:18 Jiri Kosina
  2022-03-25 21:07 ` pr-tracker-bot
  2022-03-26 21:47 ` Linus Torvalds
  0 siblings, 2 replies; 4+ messages in thread
From: Jiri Kosina @ 2022-03-23  9:18 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, Benjamin Tissoires

Linus,

please pull from

  git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git for-linus

to receive HID subsystem updates for 5.18 merge widnow. Highlights:

=====
- rework of generic input handling which ultimately makes the processing 
  of tablet events more generic and reliable (Benjamin Tissoires)
- fixes for handling unnumbered reports fully correctly in i2c-hid (Angela 
  Czubak, Dmitry Torokhov)
- untangling of intermingled code for sending and handling output 
  reports in i2c-hid (Dmitry Torokhov)
- Apple magic keyboard support improvements for newer models (José Expósito)
- Apple T2 Macs support improvements (Aun-Ali Zaidi, Paul Pawlowski)
- driver for Razer Blackwidow keyboards (Jelle van der Waa)
- driver for SiGma Micro keyboards (Desmond Lim)
- integration of first part of DIGImend patches in order to 
  ultimately vastly improve Linux support of tablets (Nikolai Kondrashov, 
  José Expósito)
=====

Thanks.

----------------------------------------------------------------
Aditya Garg (1):
      HID: apple: Add fn mapping for MacBook Pros with Touch Bar

Angela Czubak (1):
      HID: i2c-hid: fix handling numbered reports with IDs of 15 and above

Aun-Ali Zaidi (1):
      HID: apple: Add necessary IDs and configuration for T2 Macs.

Benjamin Tissoires (12):
      HID: core: statically allocate read buffers
      HID: core: de-duplicate some code in hid_input_field()
      HID: core: split data fetching from processing in hid_input_field()
      HID: input: tag touchscreens as such if the physical is not there
      HID: input: rework spaghetti code with switch statements
      HID: input: move up out-of-range processing of input values
      HID: compute an ordered list of input fields to process
      HID: core: for input reports, process the usages by priority list
      HID: input: enforce Invert usage to be processed before InRange
      HID: input: remove the need for HID_QUIRK_INVERT
      HID: input: accommodate priorities for slotted devices
      Input: docs: add more details on the use of BTN_TOOL

Christophe JAILLET (1):
      HID: amd_sfh: Remove useless DMA-32 fallback configuration

Desmond Lim (1):
      HID: add SiGma Micro driver

Dmitry Torokhov (11):
      HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports
      HID: i2c-hid: use "struct i2c_hid" as argument in most calls
      HID: i2c-hid: refactor reset command
      HID: i2c-hid: explicitly code setting and sending reports
      HID: i2c-hid: define i2c_hid_read_register() and use it
      HID: i2c-hid: create a helper for SET_POWER command
      HID: i2c-hid: convert i2c_hid_execute_reset() to use i2c_hid_xfer()
      HID: i2c-hid: rework i2c_hid_get_report() to use i2c_hid_xfer()
      HID: i2c-hid: use helpers to do endian conversion in i2c_hid_get_input()
      HID: i2c-hid: no longer need raw access to HID descriptor structure
      HID: i2c-hid: note that I2C xfer buffers are DMA-safe

Gustavo A. R. Silva (1):
      HID: google: Use struct_size() helper in kzalloc()

Gwendal Grignou (1):
      HID: intel-ish-hid: Use dma_alloc_coherent for firmware update

Jelle van der Waa (1):
      HID: Add driver for Razer Blackwidow keyboards

Jiri Kosina (1):
      HID: apple: properly reflect LEDS dependency

José Expósito (5):
      HID: apple: Refactor key translation setup
      HID: apple: Magic Keyboard first generation FN key mapping
      HID: apple: Magic Keyboard 2015 FN key mapping
      HID: apple: Report Magic Keyboard 2021 battery over USB
      HID: apple: Report Magic Keyboard 2021 with fingerprint reader battery over USB

Nikolai Kondrashov (16):
      HID: uclogic: Support Huion tilt reporting
      HID: uclogic: Rename Huion HS64 PID to Huion Tablet 2
      HID: uclogic: Support Huion 13th frame button
      HID: uclogic: Split pen and frame raw event handling
      HID: uclogic: Access pen/frame params directly in raw_event handling
      HID: uclogic: Skip non-input raw events earlier
      HID: uclogic: Handle virtual frame reports
      HID: uclogic: Remove pen usage masking
      HID: uclogic: Replace pen_frame_flag with subreport_list
      HID: uclogic: Switch to matching subreport bytes
      HID: uclogic: Specify total report size to buttonpad macro
      HID: uclogic: Use different constants for frame report IDs
      HID: uclogic: Use "frame" instead of "buttonpad"
      HID: uclogic: Put version first in rdesc namespace
      HID: uclogic: Define report IDs before their descriptors
      HID: uclogic: Support multiple frame input devices

Paul Pawlowski (1):
      HID: apple: Add support for keyboard backlight on certain T2 Macs.

Yang Li (1):
      HID: i2c-hid: remove unneeded semicolon

 Documentation/input/event-codes.rst         |   6 +-
 drivers/hid/Kconfig                         |  19 +++
 drivers/hid/Makefile                        |   2 +
 drivers/hid/amd-sfh-hid/amd_sfh_pcie.c      |   7 +-
 drivers/hid/hid-apple.c                     | 305 +++++++++++++++++++++++++++++++----
 drivers/hid/hid-core.c                      | 280 ++++++++++++++++++++++++++++----
 drivers/hid/hid-google-hammer.c             |   2 +-
 drivers/hid/hid-ids.h                       |  14 +-
 drivers/hid/hid-input.c                     | 364 ++++++++++++++++++++++++++++++++++--------
 drivers/hid/hid-quirks.c                    |  16 ++
 drivers/hid/hid-razer.c                     | 125 +++++++++++++++
 drivers/hid/hid-sigmamicro.c                | 130 +++++++++++++++
 drivers/hid/hid-uclogic-core.c              | 258 ++++++++++++++++++------------
 drivers/hid/hid-uclogic-params.c            | 198 +++++++++++------------
 drivers/hid/hid-uclogic-params.h            |  92 ++++++-----
 drivers/hid/hid-uclogic-rdesc.c             |  69 ++++----
 drivers/hid/hid-uclogic-rdesc.h             |  38 ++---
 drivers/hid/i2c-hid/i2c-hid-core.c          | 591 ++++++++++++++++++++++++++++++++++++--------------------------------
 drivers/hid/intel-ish-hid/ishtp-fw-loader.c |  29 +---
 include/linux/hid.h                         |  23 ++-
 20 files changed, 1827 insertions(+), 741 deletions(-)
 create mode 100644 drivers/hid/hid-razer.c
 create mode 100644 drivers/hid/hid-sigmamicro.c


-- 
Jiri Kosina
SUSE Labs


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

* Re: [GIT PULL] HID for 5.18
  2022-03-23  9:18 [GIT PULL] HID for 5.18 Jiri Kosina
@ 2022-03-25 21:07 ` pr-tracker-bot
  2022-03-26 21:47 ` Linus Torvalds
  1 sibling, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2022-03-25 21:07 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Linus Torvalds, linux-kernel, Benjamin Tissoires

The pull request you sent on Wed, 23 Mar 2022 10:18:39 +0100 (CET):

> git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git for-linus

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

Thank you!

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

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

* Re: [GIT PULL] HID for 5.18
  2022-03-23  9:18 [GIT PULL] HID for 5.18 Jiri Kosina
  2022-03-25 21:07 ` pr-tracker-bot
@ 2022-03-26 21:47 ` Linus Torvalds
  2022-03-28  7:44   ` Jiri Kosina
  1 sibling, 1 reply; 4+ messages in thread
From: Linus Torvalds @ 2022-03-26 21:47 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Linux Kernel Mailing List, Benjamin Tissoires

On Wed, Mar 23, 2022 at 2:18 AM Jiri Kosina <jikos@kernel.org> wrote:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git for-linus

I'm going through my merges to check which ones were signed tags and
which ones weren't, and this is on the latter short-list.

So just a note that I'd really like people to use signed tags. Yes,
yes, kernel.org has strict security policies and I don't require them,
but it would still be really nice..

             Linus

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

* Re: [GIT PULL] HID for 5.18
  2022-03-26 21:47 ` Linus Torvalds
@ 2022-03-28  7:44   ` Jiri Kosina
  0 siblings, 0 replies; 4+ messages in thread
From: Jiri Kosina @ 2022-03-28  7:44 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List, Benjamin Tissoires

On Sat, 26 Mar 2022, Linus Torvalds wrote:

> >   git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git for-linus
> 
> I'm going through my merges to check which ones were signed tags and
> which ones weren't, and this is on the latter short-list.
> 
> So just a note that I'd really like people to use signed tags. Yes,
> yes, kernel.org has strict security policies and I don't require them,
> but it would still be really nice..

I was just a little bit lazy to change my workflow, thanks for prodding, 
next pull request for my trees are always going to point to signed tags 
going forward.

(and yes, I understand we have to be now all careful given that

	https://www.reddit.com/r/linuxmasterrace/comments/tng5wv/oh_no_the_source_code_was_leaked/

:P )

-- 
Jiri Kosina
SUSE Labs


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

end of thread, other threads:[~2022-03-28  7:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-23  9:18 [GIT PULL] HID for 5.18 Jiri Kosina
2022-03-25 21:07 ` pr-tracker-bot
2022-03-26 21:47 ` Linus Torvalds
2022-03-28  7:44   ` Jiri Kosina

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.