summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/manifest.c
diff options
context:
space:
mode:
authorBryan O'Donoghue <bryan.odonoghue@linaro.org>2016-05-15 19:37:49 +0100
committerGreg Kroah-Hartman <gregkh@google.com>2016-05-15 11:39:57 -0700
commit8c81d4608dc54225005129e32cf5d2035176df5e (patch)
treee6301710678babbba659590351d654e9840dfb72 /drivers/staging/greybus/manifest.c
parentc8a657ba3f84643d7ef4b13ff6828e141172419a (diff)
greybus: interface: Extract and store Interface feature byte
The Interface description in the Greybus specification contains a 'features' field which is currently not implemented on the AP side. The Interface features field provides information on optional attributes of an Interface as a bitmask. Currently only GREYBUS_INTERFACE_FEATURE_TIMESYNC is implemented in the specification but, the expectation is that other feature flags will be added over time. This patch adds support to extract the feature byte communicated in the features field of the Interface Descriptor header and extends struct interface to contain a features field through which any user with a pointer to struct interface may interrogate the features of an Interface. This is a necessary pre-cursor for TimeSync to ensure only Interfaces which declare GREYBUS_INTERFACE_FEATURE_TIMESYNC will be included when we go through the process of FrameTime synchronization. Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/manifest.c')
-rw-r--r--drivers/staging/greybus/manifest.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/staging/greybus/manifest.c b/drivers/staging/greybus/manifest.c
index 886c5fb91d9f..529a984db992 100644
--- a/drivers/staging/greybus/manifest.c
+++ b/drivers/staging/greybus/manifest.c
@@ -398,6 +398,9 @@ static bool gb_manifest_parse_interface(struct gb_interface *intf,
goto out_free_vendor_string;
control->product_string = str;
+ /* Assign feature flags communicated via manifest */
+ intf->features = desc_intf->features;
+
/* Release the interface descriptor, now that we're done with it */
release_manifest_descriptor(interface_desc);