greybus: es2: add define for ARPC CPort requests

Add dedicated define for ARPC CPort requests instead of using the
default timeout for USB vendor requests.

We still allow responses to take 500 ms to arrive, but note that this
adds on top of the 500ms already allowed for a requests to be
acknowledged. This should probably be tightened up at some point.

Signed-off-by: Johan Hovold <johan@hovoldconsulting.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Johan Hovold 2016-08-03 14:09:34 +02:00 committed by Greg Kroah-Hartman
parent 121bae2bec
commit 54f34e1e4d
1 changed files with 5 additions and 1 deletions

View File

@ -19,6 +19,10 @@
#include "kernel_ver.h"
#include "connection.h"
/* Default timeout for ARPC CPort requests */
#define ES2_ARPC_CPORT_TIMEOUT 500
/* Fixed CPort numbers */
#define ES2_CPORT_CDSI0 16
#define ES2_CPORT_CDSI1 17
@ -622,7 +626,7 @@ static int cport_reset(struct gb_host_device *hd, u16 cport_id)
req.cport_id = cpu_to_le16(cport_id);
retval = arpc_sync(es2, ARPC_TYPE_CPORT_RESET, &req, sizeof(req),
&result, ES2_TIMEOUT);
&result, ES2_ARPC_CPORT_TIMEOUT);
if (retval == -EREMOTEIO) {
dev_err(&udev->dev, "failed to reset cport %u: %d\n", cport_id,
result);