From owner-dev-commits-src-all@freebsd.org Sun Jan 10 19:20:06 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9F75E4D5DE9; Sun, 10 Jan 2021 19:20:06 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DDRVt4B14z3JHR; Sun, 10 Jan 2021 19:20:06 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8299D5365; Sun, 10 Jan 2021 19:20:06 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 10AJK6Pm043960; Sun, 10 Jan 2021 19:20:06 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 10AJK6rv043957; Sun, 10 Jan 2021 19:20:06 GMT (envelope-from git) Date: Sun, 10 Jan 2021 19:20:06 GMT Message-Id: <202101101920.10AJK6rv043957@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Vladimir Kondratyev Subject: git: 0f0379fa5581 - main - hid: Add recently imported drivers to NOTES MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: wulf X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 0f0379fa5581c6b89d22bd041f7443581bac616c Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jan 2021 19:20:06 -0000 The branch main has been updated by wulf: URL: https://cgit.FreeBSD.org/src/commit/?id=0f0379fa5581c6b89d22bd041f7443581bac616c commit 0f0379fa5581c6b89d22bd041f7443581bac616c Author: Vladimir Kondratyev AuthorDate: 2021-01-09 12:07:19 +0000 Commit: Vladimir Kondratyev CommitDate: 2021-01-10 19:17:20 +0000 hid: Add recently imported drivers to NOTES Reviewed by: hselasky Differential revision: https://reviews.freebsd.org/D28060 --- sys/amd64/conf/NOTES | 8 +++++++- sys/arm64/conf/NOTES | 7 +++++++ sys/conf/NOTES | 25 +++++++++++++++++++++++-- sys/i386/conf/NOTES | 8 +++++++- 4 files changed, 44 insertions(+), 4 deletions(-) diff --git a/sys/amd64/conf/NOTES b/sys/amd64/conf/NOTES index 8504bfa68c36..1b949fc24c8e 100644 --- a/sys/amd64/conf/NOTES +++ b/sys/amd64/conf/NOTES @@ -607,7 +607,13 @@ options NKPT=31 # EFI Runtime Services support options EFIRT - +# +# HID-over-I2C support +# +device iichid # HID-over-I2C support +options IICHID_DEBUG # Enable HID-over-I2C debug messages +options IICHID_SAMPLING # Workaround missing GPIO INTR support + ##################################################################### # ABI Emulation diff --git a/sys/arm64/conf/NOTES b/sys/arm64/conf/NOTES index c966ab436221..97ea00d181bd 100644 --- a/sys/arm64/conf/NOTES +++ b/sys/arm64/conf/NOTES @@ -239,3 +239,10 @@ options COMPAT_FREEBSD32 # Compatible with FreeBSD/arm # ZFS support options ZFS + +# +# HID-over-I2C support +# +device iichid # HID-over-I2C support +options IICHID_DEBUG # Enable HID-over-I2C debug messages +options IICHID_SAMPLING # Workaround missing GPIO INTR support diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 5033cc63524f..b377f845e793 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -2413,8 +2413,23 @@ options NSFBUFS=1024 options DEBUG_LOCKS ##################################################################### -# Generic HID support -device hid +# HID support +device hid # Generic HID support +options HID_DEBUG # enable debug msgs +device hidbus # HID bus +device hidmap # HID to evdev mapping +device hidraw # Raw access driver +options HIDRAW_MAKE_UHID_ALIAS # install /dev/uhid alias +device hconf # Multitouch configuration TLC +device hcons # Consumer controls +device hgame # Generic game controllers +device hkbd # HID keyboard +device hms # HID mouse +device hmt # HID multitouch (MS-compatible) +device hpen # Generic pen driver +device hsctrl # System controls +device ps4dshock # Sony PS4 DualShock 4 gamepad driver +device xb360gp # XBox 360 gamepad driver ##################################################################### # USB support @@ -2460,6 +2475,9 @@ device wsp device uep # Diamond Rio 500 MP3 player device urio +# HID-over-USB driver +device usbhid + # # USB serial support device ucom @@ -2576,6 +2594,9 @@ options UVSCOM_DEFAULT_OPKTSIZE=8 # default output packet size options UVSCOM_INTR_INTERVAL=100 # interrupt pipe interval # in milliseconds +# options for usbhid: +options USBHID_ENABLED # Prefer usbhid to other USBHID drivers + ##################################################################### # FireWire support diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES index f39f8ab6b302..47626787cab9 100644 --- a/sys/i386/conf/NOTES +++ b/sys/i386/conf/NOTES @@ -860,7 +860,13 @@ options PMAP_SHPGPERPROC=201 # options NKPT=31 - +# +# HID-over-I2C support +# +device iichid # HID-over-I2C support +options IICHID_DEBUG # Enable HID-over-I2C debug messages +options IICHID_SAMPLING # Workaround missing GPIO INTR support + ##################################################################### # ABI Emulation