p2sb: Add a method to hide the bus
authorSimon Glass <sjg@chromium.org>
Wed, 8 Jul 2020 03:32:30 +0000 (21:32 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Fri, 17 Jul 2020 06:32:24 +0000 (14:32 +0800)
The P2SB bus needs to be hidden in some cases so that it does not get
auto-configured by Linux. Add a method for this.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
Tested-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
drivers/misc/p2sb-uclass.c
include/p2sb.h

index d5fe12e..b5219df 100644 (file)
 
 #define PCR_COMMON_IOSF_1_0    1
 
+int p2sb_set_hide(struct udevice *dev, bool hide)
+{
+       struct p2sb_ops *ops = p2sb_get_ops(dev);
+
+       if (!ops->set_hide)
+               return -ENOSYS;
+
+       return ops->set_hide(dev, hide);
+}
+
 void *pcr_reg_address(struct udevice *dev, uint offset)
 {
        struct p2sb_child_platdata *pplat = dev_get_parent_platdata(dev);
index 74eb08b..93e1155 100644 (file)
@@ -31,14 +31,37 @@ struct p2sb_uc_priv {
 };
 
 /**
- * struct p2sb_ops - Operations for the P2SB (none at present)
+ * struct p2sb_ops - Operations for the P2SB
  */
 struct p2sb_ops {
+       /**
+        * set_hide() - Set/clear the 'hide' bit on the p2sb
+        *
+        * This device can be hidden from the PCI bus if needed. This method
+        * can be called before the p2sb is probed.
+        *
+        * @dev: P2SB device
+        * @hide: true to hide the device, false to show it
+        * @return 0 if OK, -ve on error
+        */
+       int (*set_hide)(struct udevice *dev, bool hide);
 };
 
 #define p2sb_get_ops(dev)        ((struct p2sb_ops *)(dev)->driver->ops)
 
 /**
+ * p2sb_set_hide() - Set/clear the 'hide' bit on the p2sb
+ *
+ * This device can be hidden from the PCI bus if needed. This method
+ * can be called before the p2sb is probed.
+ *
+ * @dev: P2SB device
+ * @hide: true to hide the device, false to show it
+ * @return 0 if OK, -ve on error
+ */
+int p2sb_set_hide(struct udevice *dev, bool hide);
+
+/**
  * pcr_read32/16/8() - Read from a PCR device
  *
  * Reads data from a PCR device within the P2SB