blob: 4268ca2eb64c03e50e22481f47cd6b74f61617fd [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Joao Pinto4b9ffb52016-05-11 12:21:30 +01002/*
3 * UFS Host driver for Synopsys Designware Core
4 *
5 * Copyright (C) 2015-2016 Synopsys, Inc. (www.synopsys.com)
6 *
7 * Authors: Joao Pinto <jpinto@synopsys.com>
Joao Pinto4b9ffb52016-05-11 12:21:30 +01008 */
9
10#ifndef _UFSHCD_DWC_H
11#define _UFSHCD_DWC_H
12
13struct ufshcd_dme_attr_val {
14 u32 attr_sel;
15 u32 mib_val;
16 u8 peer;
17};
18
19int ufshcd_dwc_link_startup_notify(struct ufs_hba *hba,
20 enum ufs_notify_change_status status);
21int ufshcd_dwc_dme_set_attrs(struct ufs_hba *hba,
22 const struct ufshcd_dme_attr_val *v, int n);
23#endif /* End of Header */