--- /dev/null
+From e1b9f99ff8c40bba6e59de9ad4a659447b1e4112 Mon Sep 17 00:00:00 2001
+From: Chuhong Yuan <hslester96@gmail.com>
+Date: Mon, 4 Nov 2019 23:00:48 +0800
+Subject: i2c: hix5hd2: add missed clk_disable_unprepare in remove
+
+From: Chuhong Yuan <hslester96@gmail.com>
+
+commit e1b9f99ff8c40bba6e59de9ad4a659447b1e4112 upstream.
+
+The driver forgets to disable and unprepare clk when remove.
+Add a call to clk_disable_unprepare to fix it.
+
+Signed-off-by: Chuhong Yuan <hslester96@gmail.com>
+Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
+Cc: stable@kernel.org
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/i2c/busses/i2c-hix5hd2.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/drivers/i2c/busses/i2c-hix5hd2.c
++++ b/drivers/i2c/busses/i2c-hix5hd2.c
+@@ -477,6 +477,7 @@ static int hix5hd2_i2c_remove(struct pla
+ i2c_del_adapter(&priv->adap);
+ pm_runtime_disable(priv->dev);
+ pm_runtime_set_suspended(priv->dev);
++ clk_disable_unprepare(priv->clk);
+
+ return 0;
+ }
--- /dev/null
+From 52afa505a03d914081f40cb869a3248567a57573 Mon Sep 17 00:00:00 2001
+From: Eugene Syromiatnikov <esyr@redhat.com>
+Date: Tue, 24 Mar 2020 15:53:50 -0700
+Subject: Input: avoid BIT() macro usage in the serio.h UAPI header
+
+From: Eugene Syromiatnikov <esyr@redhat.com>
+
+commit 52afa505a03d914081f40cb869a3248567a57573 upstream.
+
+The commit 19ba1eb15a2a ("Input: psmouse - add a custom serio protocol
+to send extra information") introduced usage of the BIT() macro
+for SERIO_* flags; this macro is not provided in UAPI headers.
+Replace if with similarly defined _BITUL() macro defined
+in <linux/const.h>.
+
+Fixes: 19ba1eb15a2a ("Input: psmouse - add a custom serio protocol to send extra information")
+Signed-off-by: Eugene Syromiatnikov <esyr@redhat.com>
+Cc: <stable@vger.kernel.org> # v5.0+
+Link: https://lore.kernel.org/r/20200324041341.GA32335@asgard.redhat.com
+Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ include/uapi/linux/serio.h | 10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+--- a/include/uapi/linux/serio.h
++++ b/include/uapi/linux/serio.h
+@@ -9,7 +9,7 @@
+ #ifndef _UAPI_SERIO_H
+ #define _UAPI_SERIO_H
+
+-
++#include <linux/const.h>
+ #include <linux/ioctl.h>
+
+ #define SPIOCSTYPE _IOW('q', 0x01, unsigned long)
+@@ -18,10 +18,10 @@
+ /*
+ * bit masks for use in "interrupt" flags (3rd argument)
+ */
+-#define SERIO_TIMEOUT BIT(0)
+-#define SERIO_PARITY BIT(1)
+-#define SERIO_FRAME BIT(2)
+-#define SERIO_OOB_DATA BIT(3)
++#define SERIO_TIMEOUT _BITUL(0)
++#define SERIO_PARITY _BITUL(1)
++#define SERIO_FRAME _BITUL(2)
++#define SERIO_OOB_DATA _BITUL(3)
+
+ /*
+ * Serio types
--- /dev/null
+From 4134252ab7e2c339a54302b88496cb5a89cdbaec Mon Sep 17 00:00:00 2001
+From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
+Date: Wed, 25 Mar 2020 10:57:54 -0700
+Subject: Input: fix stale timestamp on key autorepeat events
+
+From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
+
+commit 4134252ab7e2c339a54302b88496cb5a89cdbaec upstream.
+
+We need to refresh timestamp when emitting key autorepeat events, otherwise
+they will carry timestamp of the original key press event.
+
+Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=206929
+Fixes: 3b51c44bd693 ("Input: allow drivers specify timestamp for input events")
+Cc: stable@vger.kernel.org
+Reported-by: teika kazura <teika@gmx.com>
+Tested-by: teika kazura <teika@gmx.com>
+Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/input/input.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/drivers/input/input.c
++++ b/drivers/input/input.c
+@@ -190,6 +190,7 @@ static void input_repeat_key(struct time
+ input_value_sync
+ };
+
++ input_set_timestamp(dev, ktime_get());
+ input_pass_values(dev, vals, ARRAY_SIZE(vals));
+
+ if (dev->rep[REP_PERIOD])
--- /dev/null
+From 32cf3a610c35cb21e3157f4bbf29d89960e30a36 Mon Sep 17 00:00:00 2001
+From: Dan Carpenter <dan.carpenter@oracle.com>
+Date: Fri, 6 Mar 2020 11:50:51 -0800
+Subject: Input: raydium_i2c_ts - fix error codes in raydium_i2c_boot_trigger()
+
+From: Dan Carpenter <dan.carpenter@oracle.com>
+
+commit 32cf3a610c35cb21e3157f4bbf29d89960e30a36 upstream.
+
+These functions are supposed to return negative error codes but instead
+it returns true on failure and false on success. The error codes are
+eventually propagated back to user space.
+
+Fixes: 48a2b783483b ("Input: add Raydium I2C touchscreen driver")
+Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
+Link: https://lore.kernel.org/r/20200303101306.4potflz7na2nn3od@kili.mountain
+Cc: stable@vger.kernel.org
+Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/input/touchscreen/raydium_i2c_ts.c | 8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+--- a/drivers/input/touchscreen/raydium_i2c_ts.c
++++ b/drivers/input/touchscreen/raydium_i2c_ts.c
+@@ -432,7 +432,7 @@ static int raydium_i2c_write_object(stru
+ return 0;
+ }
+
+-static bool raydium_i2c_boot_trigger(struct i2c_client *client)
++static int raydium_i2c_boot_trigger(struct i2c_client *client)
+ {
+ static const u8 cmd[7][6] = {
+ { 0x08, 0x0C, 0x09, 0x00, 0x50, 0xD7 },
+@@ -457,10 +457,10 @@ static bool raydium_i2c_boot_trigger(str
+ }
+ }
+
+- return false;
++ return 0;
+ }
+
+-static bool raydium_i2c_fw_trigger(struct i2c_client *client)
++static int raydium_i2c_fw_trigger(struct i2c_client *client)
+ {
+ static const u8 cmd[5][11] = {
+ { 0, 0x09, 0x71, 0x0C, 0x09, 0x00, 0x50, 0xD7, 0, 0, 0 },
+@@ -483,7 +483,7 @@ static bool raydium_i2c_fw_trigger(struc
+ }
+ }
+
+- return false;
++ return 0;
+ }
+
+ static int raydium_i2c_check_path(struct i2c_client *client)
--- /dev/null
+From 1369d0abe469fb4cdea8a5bce219d38cb857a658 Mon Sep 17 00:00:00 2001
+From: Yussuf Khalil <dev@pp3345.net>
+Date: Sat, 7 Mar 2020 14:16:31 -0800
+Subject: Input: synaptics - enable RMI on HP Envy 13-ad105ng
+
+From: Yussuf Khalil <dev@pp3345.net>
+
+commit 1369d0abe469fb4cdea8a5bce219d38cb857a658 upstream.
+
+This laptop (and perhaps other variants of the same model) reports an
+SMBus-capable Synaptics touchpad. Everything (including suspend and
+resume) works fine when RMI is enabled via the kernel command line, so
+let's add it to the whitelist.
+
+Signed-off-by: Yussuf Khalil <dev@pp3345.net>
+Link: https://lore.kernel.org/r/20200307213508.267187-1-dev@pp3345.net
+Cc: stable@vger.kernel.org
+Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/input/mouse/synaptics.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/drivers/input/mouse/synaptics.c
++++ b/drivers/input/mouse/synaptics.c
+@@ -186,6 +186,7 @@ static const char * const smbus_pnp_ids[
+ "SYN3052", /* HP EliteBook 840 G4 */
+ "SYN3221", /* HP 15-ay000 */
+ "SYN323d", /* HP Spectre X360 13-w013dx */
++ "SYN3257", /* HP Envy 13-ad105ng */
+ NULL
+ };
+
sxgbe-fix-off-by-one-in-samsung-driver-strncpy-size-.patch
iommu-vt-d-fix-debugfs-register-reads.patch
iommu-vt-d-populate-debugfs-if-iommus-are-detected.patch
+i2c-hix5hd2-add-missed-clk_disable_unprepare-in-remove.patch
+input-raydium_i2c_ts-fix-error-codes-in-raydium_i2c_boot_trigger.patch
+input-fix-stale-timestamp-on-key-autorepeat-events.patch
+input-synaptics-enable-rmi-on-hp-envy-13-ad105ng.patch
+input-avoid-bit-macro-usage-in-the-serio.h-uapi-header.patch