Commit 5c02b581 authored by Prashant Malani's avatar Prashant Malani Committed by Hans de Goede

platform/x86: intel_scu_ipc: Increase virtual timeout to 10s

Commit a7d53dbb ("platform/x86: intel_scu_ipc: Increase virtual
timeout from 3 to 5 seconds") states that the recommended timeout range
is 5-10 seconds. Adjust the timeout value to the higher of those i.e 10
seconds, to account for situations where the 5 seconds is insufficient
for disconnect command success.
Signed-off-by: default avatarPrashant Malani <pmalani@chromium.org>
Cc: Benson Leung <bleung@chromium.org>
Reviewed-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
Link: https://lore.kernel.org/r/20210928101932.2543937-3-pmalani@chromium.orgSigned-off-by: default avatarHans de Goede <hdegoede@redhat.com>
parent 41512e4d
...@@ -75,7 +75,7 @@ struct intel_scu_ipc_dev { ...@@ -75,7 +75,7 @@ struct intel_scu_ipc_dev {
#define IPC_READ_BUFFER 0x90 #define IPC_READ_BUFFER 0x90
/* Timeout in jiffies */ /* Timeout in jiffies */
#define IPC_TIMEOUT (5 * HZ) #define IPC_TIMEOUT (10 * HZ)
static struct intel_scu_ipc_dev *ipcdev; /* Only one for now */ static struct intel_scu_ipc_dev *ipcdev; /* Only one for now */
static DEFINE_MUTEX(ipclock); /* lock used to prevent multiple call to SCU */ static DEFINE_MUTEX(ipclock); /* lock used to prevent multiple call to SCU */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment