linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Fixes for the mcp2221 gpiochip get_* calls
@ 2023-04-04 12:14 Louis Morhet
  2023-04-04 12:15 ` [PATCH 1/2] HID: mcp2221: fix report layout for gpio get Louis Morhet
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Louis Morhet @ 2023-04-04 12:14 UTC (permalink / raw)
  To: gupt21, jikos, benjamin.tissoires; +Cc: linux-i2c, linux-input, linux-kernel

The mcp2221 HID driver exposes a gpiochip device.
While gpioset seemed to work fine, gpioget always returned 1 on all 4
GPIOs of the component (0x01 for input in the field "direction",
according to the documentation).

This patch series addresses this issue by fixing the order of the fields
in the driver's representation of the chip answer, and adding
consistency to the way the callbacks prepare their command and the way
the hid event handler gets these fields.
The set callbacks use a similar mechanism, but work for now because
setting a direction/value only requires gpio-specific positioning in the
command preparation, and not in the raw_event handler.

The core of this issue being a discrepancy in the way the command and
the answer fetch their fields of interest, I would also like to ask if
we should uniformize a bit the way this driver handles gpio, and how.
I thought about several possible implementations for that:
Use mcp->gp_idx as the base offset of the gpio for set too, and modify
the raw_event handler to fetch all relevant data based on that; or set
the buffers in the mcp structure as unions of the various commands
handled and use gp_idx simply as the gpio index to access relevant data
directly from the structured representation everywhere; or go back to ye
old defines to ensure portability...

Louis Morhet (2):
  HID: mcp2221: fix report layout for gpio get
  HID: mcp2221: fix get and get_direction for gpio

 drivers/hid/hid-mcp2221.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

-- 
2.17.1






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

end of thread, other threads:[~2023-04-13 16:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-04 12:14 [PATCH 0/2] Fixes for the mcp2221 gpiochip get_* calls Louis Morhet
2023-04-04 12:15 ` [PATCH 1/2] HID: mcp2221: fix report layout for gpio get Louis Morhet
2023-04-04 12:15 ` [PATCH 2/2] HID: mcp2221: fix get and get_direction for gpio Louis Morhet
2023-04-13 14:43 ` [PATCH 0/2] Fixes for the mcp2221 gpiochip get_* calls Benjamin Tissoires
2023-04-13 14:49 ` Benjamin Tissoires
2023-04-13 16:46   ` Louis Morhet

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