RK3576 contains a UFS controller, add init support fot it.^^^^ ^^^
+config SCSI_UFS_ROCKCHIP
+ tristate "Rockchip specific hooks to UFS controller platform driver"
+#include "ufshcd-dwc.h"
+ reset_control_assert(host->rst);
+ udelay(1);
+ reset_control_deassert(host->rst);
+static int ufs_rockchip_device_reset(struct ufs_hba *hba)
+{
+ struct ufs_rockchip_host *host = ufshcd_get_variant(hba);
+
+ if (!host->rst_gpio)
+ return -EOPNOTSUPP;
+
+ gpiod_set_value_cansleep(host->rst_gpio, 0);
+ udelay(20);
+
+ gpiod_set_value_cansleep(host->rst_gpio, 1);
+ udelay(20);
+
+ return 0;
+}