[PATCH 7/7] gpu: host1x: Track client version
Thierry Reding
thierry.reding at gmail.com
Thu May 17 15:34:30 UTC 2018
From: Thierry Reding <treding at nvidia.com>
Userspace needs to know the version of the interface implemented by a
client so it can create the proper command streams. Allow individual
drivers to store this version along with the client so that it can be
returned to userspace upon opening a channel.
Signed-off-by: Thierry Reding <treding at nvidia.com>
---
include/linux/host1x.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/include/linux/host1x.h b/include/linux/host1x.h
index 89110d896d72..57d26406bdfd 100644
--- a/include/linux/host1x.h
+++ b/include/linux/host1x.h
@@ -49,6 +49,7 @@ struct host1x_client_ops {
* @dev: pointer to struct device backing this host1x client
* @ops: host1x client operations
* @class: host1x class represented by this client
+ * @version: interface version implemented by this client
* @channel: host1x channel associated with this client
* @syncpts: array of syncpoints requested for this client
* @num_syncpts: number of syncpoints requested for this client
@@ -61,6 +62,8 @@ struct host1x_client {
const struct host1x_client_ops *ops;
enum host1x_class class;
+ unsigned int version;
+
struct host1x_channel *channel;
struct host1x_syncpt **syncpts;
--
2.17.0
More information about the dri-devel
mailing list