mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
dd11376b9f
Split the drivers/scsi/ufs directory into 'core' and 'host' directories under the drivers/ufs/ directory. Move shared header files into the include/ufs/ directory. This separation makes it clear which header files UFS drivers are allowed to include (include/ufs/*.h) and which header files UFS drivers are not allowed to include (drivers/ufs/core/*.h). Update the MAINTAINERS file. Add myself as a UFS reviewer. Link: https://lore.kernel.org/r/20220511212552.655341-1-bvanassche@acm.org Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Avri Altman <avri.altman@wdc.com> Cc: Bean Huo <beanhuo@micron.com> Cc: Bjorn Andersson <bjorn.andersson@linaro.org> Cc: Keoseong Park <keosung.park@samsung.com> Tested-by: Bean Huo <beanhuo@micron.com> Tested-by: Adrian Hunter <adrian.hunter@intel.com> Reviewed-by: Bean Huo <beanhuo@micron.com> Acked-by: Avri Altman <avri.altman@wdc.com> Acked-by: Adrian Hunter <adrian.hunter@intel.com> Signed-off-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
26 lines
580 B
C
26 lines
580 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* UFS Host driver for Synopsys Designware Core
|
|
*
|
|
* Copyright (C) 2015-2016 Synopsys, Inc. (www.synopsys.com)
|
|
*
|
|
* Authors: Joao Pinto <jpinto@synopsys.com>
|
|
*/
|
|
|
|
#ifndef _UFSHCD_DWC_H
|
|
#define _UFSHCD_DWC_H
|
|
|
|
#include <ufs/ufshcd.h>
|
|
|
|
struct ufshcd_dme_attr_val {
|
|
u32 attr_sel;
|
|
u32 mib_val;
|
|
u8 peer;
|
|
};
|
|
|
|
int ufshcd_dwc_link_startup_notify(struct ufs_hba *hba,
|
|
enum ufs_notify_change_status status);
|
|
int ufshcd_dwc_dme_set_attrs(struct ufs_hba *hba,
|
|
const struct ufshcd_dme_attr_val *v, int n);
|
|
#endif /* End of Header */
|