1 /* SPDX-License-Identifier: GPL-2.0+ */
5 * ufs_probe() - initialize all devices in the UFS uclass
7 * @return 0 if Ok, -ve on error
12 * ufs_probe_dev() - initialize a particular device in the UFS uclass
14 * @index: index in the uclass sequence
16 * @return 0 if successfully probed, -ve on error
18 int ufs_probe_dev(int index);
21 * ufs_scsi_bind() - Create a new scsi device as a child of the UFS device and
22 * bind it to the ufs_scsi driver
23 * @ufs_dev: UFS device
24 * @scsi_devp: Pointer to scsi device
26 * @return 0 if Ok, -ve on error
28 int ufs_scsi_bind(struct udevice *ufs_dev, struct udevice **scsi_devp);