summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/connection.c
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-03-29 18:56:03 -0400
committerGreg Kroah-Hartman <gregkh@google.com>2016-03-30 14:17:40 -0700
commitec199ccdd2a3c215f5088052377f08a5855f560e (patch)
tree7eea075cd633de030dec63fa46e0a6f144a9c3d9 /drivers/staging/greybus/connection.c
parent133e366bbee53c76596df5da4bf6b32d0d9cb364 (diff)
greybus: interface: clean up ES3-bootroom-quirk handling
Clean up handling of the ES3-bootrom quirks by adding an interface quirk-flags field that is set appropriately when we detect that the ES3 bootrom is running. Note that we need to reserve the DME_DIS_UNIPRO_BOOT_STARTED and DME_DIS_FALLBACK_UNIPRO_BOOT_STARTED status values for the ES3 bootrom, which does not support any CPort features (unlike later boot stages). Add a BOOTROM infix to the defines to make this more clear. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/connection.c')
-rw-r--r--drivers/staging/greybus/connection.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/staging/greybus/connection.c b/drivers/staging/greybus/connection.c
index 64fa20a06da0..1880f8f6065f 100644
--- a/drivers/staging/greybus/connection.c
+++ b/drivers/staging/greybus/connection.c
@@ -337,9 +337,12 @@ gb_connection_svc_connection_create(struct gb_connection *connection)
intf = connection->intf;
- /* The ES2/ES3 bootrom requires E2EFC, CSD and CSV to be disabled. */
+ /*
+ * Enable either E2EFC or CSD, unless the interface does not support
+ * any CPort features.
+ */
cport_flags = GB_SVC_CPORT_FLAG_CSV_N;
- if (intf->boot_over_unipro) {
+ if (intf->quirks & GB_INTERFACE_QUIRK_NO_CPORT_FEATURES) {
cport_flags |= GB_SVC_CPORT_FLAG_CSD_N;
} else if (gb_connection_e2efc_enabled(connection)) {
cport_flags |= GB_SVC_CPORT_FLAG_CSD_N |