Explorar el Código

qcacld-3.0: Add device info table to driver ops

Add device information like device id etc to driver ops.
This device info tells platform driver about the devices
supported by CLD driver during driver registeration.

Change-Id: I6fdd34487db14c8ec43b35b3b75a4dc4e32f8add
CRs-Fixed: 3129895
Sandeep Singh hace 4 años
padre
commit
6b5e35b3f8
Se han modificado 2 ficheros con 26 adiciones y 0 borrados
  1. 13 0
      core/pld/src/pld_ipci.c
  2. 13 0
      core/pld/src/pld_snoc.c

+ 13 - 0
core/pld/src/pld_ipci.c

@@ -35,6 +35,9 @@
 #include "osif_psoc_sync.h"
 
 #ifdef CONFIG_PLD_IPCI_ICNSS
+
+#define WCN6750_DEVICE_ID 0x6750
+
 /**
  * pld_ipci_probe() - Probe function for platform driver
  * @dev: device
@@ -479,8 +482,18 @@ static int pld_ipci_set_thermal_state(struct device *dev,
 #define PLD_IPCI_OPS_NAME "pld_ipci"
 #endif
 
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0))
+static struct device_info pld_ipci_dev_info[] = {
+	{ "wcn6750", WCN6750_DEVICE_ID },
+	{ 0 }
+};
+#endif
+
 struct icnss_driver_ops pld_ipci_ops = {
 	.name       = PLD_IPCI_OPS_NAME,
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0))
+	.dev_info   = pld_ipci_dev_info,
+#endif
 	.probe      = pld_ipci_probe,
 	.remove     = pld_ipci_remove,
 	.shutdown   = pld_ipci_shutdown,

+ 13 - 0
core/pld/src/pld_snoc.c

@@ -45,6 +45,9 @@
 #include "osif_psoc_sync.h"
 
 #ifdef CONFIG_PLD_SNOC_ICNSS
+
+#define ADRASTEA_DEVICE_ID 0xabcd
+
 /**
  * pld_snoc_idle_restart_cb() - Perform idle restart
  * @pdev: platform device
@@ -395,8 +398,18 @@ out:
 #define PLD_SNOC_OPS_NAME "pld_snoc"
 #endif
 
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0))
+static struct device_info pld_snoc_dev_info[] = {
+	{ "ADRASTEA", ADRASTEA_DEVICE_ID },
+	{ 0 }
+};
+#endif
+
 struct icnss_driver_ops pld_snoc_ops = {
 	.name       = PLD_SNOC_OPS_NAME,
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0))
+	.dev_info   = pld_snoc_dev_info,
+#endif
 	.probe      = pld_snoc_probe,
 	.remove     = pld_snoc_remove,
 	.shutdown   = pld_snoc_shutdown,