Prechádzať zdrojové kódy

include: soc: Add gpr device definition

Add definition for gpr device id.

Change-Id: Ibfda76eb8a0d1e8871e29fd170f7d96eed3d622f
Signed-off-by: Vignesh Kulothungan <[email protected]>
Vignesh Kulothungan 5 rokov pred
rodič
commit
b2dea4a689

+ 1 - 1
include/ipc/gpr-lite.h

@@ -17,7 +17,7 @@
 
 #include <linux/spinlock.h>
 #include <linux/device.h>
-#include <linux/mod_devicetable.h>
+#include "soc/audio_mod_devicetable.h"
 #include <dt-bindings/sound/qcom,gpr.h>
 
 extern struct bus_type gprbus;

+ 14 - 1
include/soc/audio_mod_devicetable.h

@@ -1,6 +1,6 @@
 /* SPDX-License-Identifier: GPL-2.0-only */
 /*
- * Copyright (c) 2019, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2020 The Linux Foundation. All rights reserved.
  */
 
 #ifndef AUDIO_MOD_DEVICETABLE_H
@@ -17,5 +17,18 @@ struct swr_device_id {
 	char name[SOUNDWIRE_NAME_SIZE];
 	kernel_ulong_t driver_data;     /* Data private to the driver */
 };
+
+/* gpr */
+#define GPR_NAME_SIZE	32
+#define GPR_MODULE_PREFIX "gpr:"
+
+struct gpr_device_id {
+	char name[GPR_NAME_SIZE];
+	__u32 domain_id;
+	__u32 svc_id;
+	__u32 svc_version;
+	kernel_ulong_t driver_data;	/* Data private to the driver */
+};
+
 #endif /* AUDIO_MOD_DEVICETABLE_H */