Blame view

drivers/scsi/ufs/ufs_quirks.h 5.19 KB
c58ab7aab   Yaniv Gardi   scsi: ufs: separa...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  /*
   * Copyright (c) 2014-2016, The Linux Foundation. All rights reserved.
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 and
   * only version 2 as published by the Free Software Foundation.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   */
  
  #ifndef _UFS_QUIRKS_H_
  #define _UFS_QUIRKS_H_
  
  /* return true if s1 is a prefix of s2 */
  #define STR_PRFX_EQUAL(s1, s2) !strncmp(s1, s2, strlen(s1))
b799fdf75   Yaniv Gardi   scsi: ufs: add de...
20
  #define UFS_ANY_VENDOR 0xFFFF
c58ab7aab   Yaniv Gardi   scsi: ufs: separa...
21
22
23
24
25
26
  #define UFS_ANY_MODEL  "ANY_MODEL"
  
  #define MAX_MODEL_LEN 16
  
  #define UFS_VENDOR_TOSHIBA     0x198
  #define UFS_VENDOR_SAMSUNG     0x1CE
46c1cf706   Kyuho Choi   scsi: ufs: Enable...
27
  #define UFS_VENDOR_SKHYNIX     0x1AD
c58ab7aab   Yaniv Gardi   scsi: ufs: separa...
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  
  /**
   * ufs_device_info - ufs device details
   * @wmanufacturerid: card details
   * @model: card model
   */
  struct ufs_device_info {
  	u16 wmanufacturerid;
  	char model[MAX_MODEL_LEN + 1];
  };
  
  /**
   * ufs_dev_fix - ufs device quirk info
   * @card: ufs card details
   * @quirk: device quirk
   */
  struct ufs_dev_fix {
  	struct ufs_device_info card;
  	unsigned int quirk;
  };
  
  #define END_FIX { { 0 }, 0 }
  
  /* add specific device quirk */
  #define UFS_FIX(_vendor, _model, _quirk) \
  		{					  \
  			.card.wmanufacturerid = (_vendor),\
  			.card.model = (_model),		  \
  			.quirk = (_quirk),		  \
  		}
  
  /*
   * If UFS device is having issue in processing LCC (Line Control
   * Command) coming from UFS host controller then enable this quirk.
   * When this quirk is enabled, host controller driver should disable
   * the LCC transmission on UFS host controller (by clearing
   * TX_LCC_ENABLE attribute of host to 0).
   */
  #define UFS_DEVICE_QUIRK_BROKEN_LCC (1 << 0)
  
  /*
   * Some UFS devices don't need VCCQ rail for device operations. Enabling this
   * quirk for such devices will make sure that VCCQ rail is not voted.
   */
  #define UFS_DEVICE_NO_VCCQ (1 << 1)
  
  /*
   * Some vendor's UFS device sends back to back NACs for the DL data frames
   * causing the host controller to raise the DFES error status. Sometimes
   * such UFS devices send back to back NAC without waiting for new
   * retransmitted DL frame from the host and in such cases it might be possible
   * the Host UniPro goes into bad state without raising the DFES error
   * interrupt. If this happens then all the pending commands would timeout
   * only after respective SW command (which is generally too large).
   *
   * We can workaround such device behaviour like this:
   * - As soon as SW sees the DL NAC error, it should schedule the error handler
   * - Error handler would sleep for 50ms to see if there are any fatal errors
   *   raised by UFS controller.
   *    - If there are fatal errors then SW does normal error recovery.
   *    - If there are no fatal errors then SW sends the NOP command to device
   *      to check if link is alive.
   *        - If NOP command times out, SW does normal error recovery
   *        - If NOP command succeed, skip the error handling.
   *
   * If DL NAC error is seen multiple times with some vendor's UFS devices then
   * enable this quirk to initiate quick error recovery and also silence related
   * error logs to reduce spamming of kernel logs.
   */
  #define UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS (1 << 2)
  
  /*
   * Some UFS devices may not work properly after resume if the link was kept
   * in off state during suspend. Enabling this quirk will not allow the
   * link to be kept in off state during suspend.
   */
  #define UFS_DEVICE_QUIRK_NO_LINK_OFF	(1 << 3)
  
  /*
   * Few Toshiba UFS device models advertise RX_MIN_ACTIVATETIME_CAPABILITY as
   * 600us which may not be enough for reliable hibern8 exit hardware sequence
   * from UFS device.
   * To workaround this issue, host should set its PA_TACTIVATE time to 1ms even
   * if device advertises RX_MIN_ACTIVATETIME_CAPABILITY less than 1ms.
   */
  #define UFS_DEVICE_QUIRK_PA_TACTIVATE	(1 << 4)
  
  /*
   * Some UFS memory devices may have really low read/write throughput in
   * FAST AUTO mode, enable this quirk to make sure that FAST AUTO mode is
   * never enabled for such devices.
   */
  #define UFS_DEVICE_NO_FASTAUTO		(1 << 5)
b799fdf75   Yaniv Gardi   scsi: ufs: add de...
121
122
123
124
125
126
127
  /*
   * It seems some UFS devices may keep drawing more than sleep current
   * (atleast for 500us) from UFS rails (especially from VCCQ rail).
   * To avoid this situation, add 2ms delay before putting these UFS
   * rails in LPM mode.
   */
  #define UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM	(1 << 6)
c58ab7aab   Yaniv Gardi   scsi: ufs: separa...
128
129
130
131
132
  struct ufs_hba;
  void ufs_advertise_fixup_device(struct ufs_hba *hba);
  
  static struct ufs_dev_fix ufs_fixups[] = {
  	/* UFS cards deviations table */
b799fdf75   Yaniv Gardi   scsi: ufs: add de...
133
134
  	UFS_FIX(UFS_VENDOR_SAMSUNG, UFS_ANY_MODEL,
  		UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM),
c58ab7aab   Yaniv Gardi   scsi: ufs: separa...
135
136
137
138
139
  	UFS_FIX(UFS_VENDOR_SAMSUNG, UFS_ANY_MODEL, UFS_DEVICE_NO_VCCQ),
  	UFS_FIX(UFS_VENDOR_SAMSUNG, UFS_ANY_MODEL,
  		UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS),
  	UFS_FIX(UFS_VENDOR_SAMSUNG, UFS_ANY_MODEL,
  		UFS_DEVICE_NO_FASTAUTO),
b799fdf75   Yaniv Gardi   scsi: ufs: add de...
140
141
  	UFS_FIX(UFS_VENDOR_TOSHIBA, UFS_ANY_MODEL,
  		UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM),
c58ab7aab   Yaniv Gardi   scsi: ufs: separa...
142
143
144
145
  	UFS_FIX(UFS_VENDOR_TOSHIBA, "THGLF2G9C8KBADG",
  		UFS_DEVICE_QUIRK_PA_TACTIVATE),
  	UFS_FIX(UFS_VENDOR_TOSHIBA, "THGLF2G9D8KBADG",
  		UFS_DEVICE_QUIRK_PA_TACTIVATE),
46c1cf706   Kyuho Choi   scsi: ufs: Enable...
146
  	UFS_FIX(UFS_VENDOR_SKHYNIX, UFS_ANY_MODEL, UFS_DEVICE_NO_VCCQ),
c58ab7aab   Yaniv Gardi   scsi: ufs: separa...
147
148
149
150
  
  	END_FIX
  };
  #endif /* UFS_QUIRKS_H_ */