linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2 0/5] Add support for Awinic SAR sensor.
@ 2024-06-05  9:11 wangshuaijie
  2024-06-05  9:11 ` [PATCH V2 1/5] dt-bindings: input: Add YAML to Awinic sar sensor wangshuaijie
                   ` (5 more replies)
  0 siblings, 6 replies; 21+ messages in thread
From: wangshuaijie @ 2024-06-05  9:11 UTC (permalink / raw)
  To: dmitry.torokhov, robh, krzk+dt, conor+dt, jeff, linux-input,
	devicetree, linux-kernel
  Cc: wangshuaijie, liweilei, kangjiajun

From: shuaijie wang <wangshuaijie@awinic.com>

Add drivers that support Awinic SAR (Specific Absorption Rate)
sensors to the Linux kernel.

The AW9610X series and AW963XX series are high-sensitivity
capacitive proximity detection sensors.

This device detects human proximity and assists electronic devices
in reducing SAR to pass SAR related certifications.

The device reduces RF power and reduces harm when detecting human proximity.
Increase power and improve signal quality when the human body is far away.

This patch implements device initialization, registration,
I/O operation handling and interrupt handling, and passed basic testing.

shuaijie wang (5):
  dt-bindings: input: Add YAML to Awinic sar sensor.
  Add universal interface for the aw_sar driver.
  Add aw9610x series related interfaces to the aw_sar driver.
  Add aw963xx series related interfaces to the aw_sar driver.
  Add support for Awinic sar sensor.

 .../bindings/input/awinic,aw_sar.yaml         |  125 +
 drivers/input/misc/Kconfig                    |    9 +
 drivers/input/misc/Makefile                   |    1 +
 drivers/input/misc/aw_sar/Makefile            |    2 +
 drivers/input/misc/aw_sar/aw9610x/aw9610x.c   |  884 +++++++
 drivers/input/misc/aw_sar/aw9610x/aw9610x.h   |  327 +++
 drivers/input/misc/aw_sar/aw963xx/aw963xx.c   |  974 ++++++++
 drivers/input/misc/aw_sar/aw963xx/aw963xx.h   |  753 ++++++
 drivers/input/misc/aw_sar/aw_sar.c            | 2036 +++++++++++++++++
 drivers/input/misc/aw_sar/aw_sar.h            |   15 +
 .../misc/aw_sar/comm/aw_sar_chip_interface.h  |   27 +
 .../misc/aw_sar/comm/aw_sar_comm_interface.c  |  639 ++++++
 .../misc/aw_sar/comm/aw_sar_comm_interface.h  |  172 ++
 drivers/input/misc/aw_sar/comm/aw_sar_type.h  |  396 ++++
 14 files changed, 6360 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/input/awinic,aw_sar.yaml
 create mode 100644 drivers/input/misc/aw_sar/Makefile
 create mode 100644 drivers/input/misc/aw_sar/aw9610x/aw9610x.c
 create mode 100644 drivers/input/misc/aw_sar/aw9610x/aw9610x.h
 create mode 100644 drivers/input/misc/aw_sar/aw963xx/aw963xx.c
 create mode 100644 drivers/input/misc/aw_sar/aw963xx/aw963xx.h
 create mode 100644 drivers/input/misc/aw_sar/aw_sar.c
 create mode 100644 drivers/input/misc/aw_sar/aw_sar.h
 create mode 100644 drivers/input/misc/aw_sar/comm/aw_sar_chip_interface.h
 create mode 100644 drivers/input/misc/aw_sar/comm/aw_sar_comm_interface.c
 create mode 100644 drivers/input/misc/aw_sar/comm/aw_sar_comm_interface.h
 create mode 100644 drivers/input/misc/aw_sar/comm/aw_sar_type.h


base-commit: 32f88d65f01bf6f45476d7edbe675e44fb9e1d58
-- 
2.45.1


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

end of thread, other threads:[~2024-07-25 12:48 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-05  9:11 [PATCH V2 0/5] Add support for Awinic SAR sensor wangshuaijie
2024-06-05  9:11 ` [PATCH V2 1/5] dt-bindings: input: Add YAML to Awinic sar sensor wangshuaijie
2024-06-05 10:20   ` Krzysztof Kozlowski
2024-07-12  9:47     ` wangshuaijie
2024-06-05  9:11 ` [PATCH V2 2/5] Add universal interface for the aw_sar driver wangshuaijie
2024-06-05  9:11 ` [PATCH V2 3/5] Add aw9610x series related interfaces to " wangshuaijie
2024-06-05 10:22   ` Krzysztof Kozlowski
2024-07-12  9:50     ` wangshuaijie
2024-06-05  9:11 ` [PATCH V2 4/5] Add aw963xx " wangshuaijie
2024-06-05 10:29   ` Krzysztof Kozlowski
2024-07-12  9:48     ` wangshuaijie
2024-06-05  9:11 ` [PATCH V2 5/5] Add support for Awinic sar sensor wangshuaijie
2024-06-05 10:33   ` Krzysztof Kozlowski
2024-07-12  9:48     ` wangshuaijie
2024-06-05 12:09   ` kernel test robot
2024-06-06 18:32   ` kernel test robot
2024-06-08  2:22   ` kernel test robot
2024-06-06  3:04 ` [PATCH V2 0/5] Add support for Awinic SAR sensor Jeff LaBundy
2024-07-12  9:49   ` wangshuaijie
2024-07-12 12:02     ` Krzysztof Kozlowski
2024-07-25 12:48       ` wangshuaijie

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