blob: fadd566025b86ab4ffe18aefd366823ea6f1ae98 [file] [log] [blame]
Bean Huo67351112020-06-05 22:05:19 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Vinayak Holikattie0eca632013-02-25 21:44:33 +05302/*
3 * Universal Flash Storage Host controller PCI glue driver
4 *
5 * This code is based on drivers/scsi/ufs/ufshcd-pci.c
6 * Copyright (C) 2011-2013 Samsung India Software Operations
7 *
8 * Authors:
9 * Santosh Yaraganavi <santosh.sy@samsung.com>
10 * Vinayak Holikatti <h.vinayak@samsung.com>
Vinayak Holikattie0eca632013-02-25 21:44:33 +053011 */
12
13#include "ufshcd.h"
14#include <linux/pci.h>
Sujit Reddy Thumma62694732013-07-30 00:36:00 +053015#include <linux/pm_runtime.h>
Adrian Hunter247f9942020-08-27 10:20:30 +030016#include <linux/pm_qos.h>
17#include <linux/debugfs.h>
18
19struct intel_host {
20 u32 active_ltr;
21 u32 idle_ltr;
22 struct dentry *debugfs_root;
23};
Vinayak Holikattie0eca632013-02-25 21:44:33 +053024
Adrian Hunter2c87ea92017-06-06 14:35:31 +030025static int ufs_intel_disable_lcc(struct ufs_hba *hba)
26{
27 u32 attr = UIC_ARG_MIB(PA_LOCAL_TX_LCC_ENABLE);
28 u32 lcc_enable = 0;
29
30 ufshcd_dme_get(hba, attr, &lcc_enable);
31 if (lcc_enable)
Stanley Chu984eaac2020-02-07 15:03:57 +080032 ufshcd_disable_host_tx_lcc(hba);
Adrian Hunter2c87ea92017-06-06 14:35:31 +030033
34 return 0;
35}
36
37static int ufs_intel_link_startup_notify(struct ufs_hba *hba,
38 enum ufs_notify_change_status status)
39{
40 int err = 0;
41
42 switch (status) {
43 case PRE_CHANGE:
44 err = ufs_intel_disable_lcc(hba);
45 break;
46 case POST_CHANGE:
47 break;
48 default:
49 break;
50 }
51
52 return err;
53}
54
Adrian Hunter247f9942020-08-27 10:20:30 +030055#define INTEL_ACTIVELTR 0x804
56#define INTEL_IDLELTR 0x808
57
58#define INTEL_LTR_REQ BIT(15)
59#define INTEL_LTR_SCALE_MASK GENMASK(11, 10)
60#define INTEL_LTR_SCALE_1US (2 << 10)
61#define INTEL_LTR_SCALE_32US (3 << 10)
62#define INTEL_LTR_VALUE_MASK GENMASK(9, 0)
63
64static void intel_cache_ltr(struct ufs_hba *hba)
65{
66 struct intel_host *host = ufshcd_get_variant(hba);
67
68 host->active_ltr = readl(hba->mmio_base + INTEL_ACTIVELTR);
69 host->idle_ltr = readl(hba->mmio_base + INTEL_IDLELTR);
70}
71
72static void intel_ltr_set(struct device *dev, s32 val)
73{
74 struct ufs_hba *hba = dev_get_drvdata(dev);
75 struct intel_host *host = ufshcd_get_variant(hba);
76 u32 ltr;
77
78 pm_runtime_get_sync(dev);
79
80 /*
81 * Program latency tolerance (LTR) accordingly what has been asked
82 * by the PM QoS layer or disable it in case we were passed
83 * negative value or PM_QOS_LATENCY_ANY.
84 */
85 ltr = readl(hba->mmio_base + INTEL_ACTIVELTR);
86
87 if (val == PM_QOS_LATENCY_ANY || val < 0) {
88 ltr &= ~INTEL_LTR_REQ;
89 } else {
90 ltr |= INTEL_LTR_REQ;
91 ltr &= ~INTEL_LTR_SCALE_MASK;
92 ltr &= ~INTEL_LTR_VALUE_MASK;
93
94 if (val > INTEL_LTR_VALUE_MASK) {
95 val >>= 5;
96 if (val > INTEL_LTR_VALUE_MASK)
97 val = INTEL_LTR_VALUE_MASK;
98 ltr |= INTEL_LTR_SCALE_32US | val;
99 } else {
100 ltr |= INTEL_LTR_SCALE_1US | val;
101 }
102 }
103
104 if (ltr == host->active_ltr)
105 goto out;
106
107 writel(ltr, hba->mmio_base + INTEL_ACTIVELTR);
108 writel(ltr, hba->mmio_base + INTEL_IDLELTR);
109
110 /* Cache the values into intel_host structure */
111 intel_cache_ltr(hba);
112out:
113 pm_runtime_put(dev);
114}
115
116static void intel_ltr_expose(struct device *dev)
117{
118 dev->power.set_latency_tolerance = intel_ltr_set;
119 dev_pm_qos_expose_latency_tolerance(dev);
120}
121
122static void intel_ltr_hide(struct device *dev)
123{
124 dev_pm_qos_hide_latency_tolerance(dev);
125 dev->power.set_latency_tolerance = NULL;
126}
127
128static void intel_add_debugfs(struct ufs_hba *hba)
129{
130 struct dentry *dir = debugfs_create_dir(dev_name(hba->dev), NULL);
131 struct intel_host *host = ufshcd_get_variant(hba);
132
133 intel_cache_ltr(hba);
134
135 host->debugfs_root = dir;
136 debugfs_create_x32("active_ltr", 0444, dir, &host->active_ltr);
137 debugfs_create_x32("idle_ltr", 0444, dir, &host->idle_ltr);
138}
139
140static void intel_remove_debugfs(struct ufs_hba *hba)
141{
142 struct intel_host *host = ufshcd_get_variant(hba);
143
144 debugfs_remove_recursive(host->debugfs_root);
145}
146
147static int ufs_intel_common_init(struct ufs_hba *hba)
148{
149 struct intel_host *host;
150
Adrian Hunter4bdd9122020-12-07 10:31:20 +0200151 hba->caps |= UFSHCD_CAP_RPM_AUTOSUSPEND;
152
Adrian Hunter247f9942020-08-27 10:20:30 +0300153 host = devm_kzalloc(hba->dev, sizeof(*host), GFP_KERNEL);
154 if (!host)
155 return -ENOMEM;
156 ufshcd_set_variant(hba, host);
157 intel_ltr_expose(hba->dev);
158 intel_add_debugfs(hba);
159 return 0;
160}
161
162static void ufs_intel_common_exit(struct ufs_hba *hba)
163{
164 intel_remove_debugfs(hba);
165 intel_ltr_hide(hba->dev);
166}
167
Adrian Hunter20e1aec2020-12-07 10:31:17 +0200168static int ufs_intel_resume(struct ufs_hba *hba, enum ufs_pm_op op)
169{
170 /*
171 * To support S4 (suspend-to-disk) with spm_lvl other than 5, the base
172 * address registers must be restored because the restore kernel can
173 * have used different addresses.
174 */
175 ufshcd_writel(hba, lower_32_bits(hba->utrdl_dma_addr),
176 REG_UTP_TRANSFER_REQ_LIST_BASE_L);
177 ufshcd_writel(hba, upper_32_bits(hba->utrdl_dma_addr),
178 REG_UTP_TRANSFER_REQ_LIST_BASE_H);
179 ufshcd_writel(hba, lower_32_bits(hba->utmrdl_dma_addr),
180 REG_UTP_TASK_REQ_LIST_BASE_L);
181 ufshcd_writel(hba, upper_32_bits(hba->utmrdl_dma_addr),
182 REG_UTP_TASK_REQ_LIST_BASE_H);
Adrian Hunter3a1be8e2020-12-07 10:31:19 +0200183
184 if (ufshcd_is_link_hibern8(hba)) {
185 int ret = ufshcd_uic_hibern8_exit(hba);
186
187 if (!ret) {
188 ufshcd_set_link_active(hba);
189 } else {
190 dev_err(hba->dev, "%s: hibern8 exit failed %d\n",
191 __func__, ret);
192 /*
193 * Force reset and restore. Any other actions can lead
194 * to an unrecoverable state.
195 */
196 ufshcd_set_link_off(hba);
197 }
198 }
199
Adrian Hunter20e1aec2020-12-07 10:31:17 +0200200 return 0;
201}
202
Adrian Hunter8da76f72020-08-10 17:10:24 +0300203static int ufs_intel_ehl_init(struct ufs_hba *hba)
204{
205 hba->quirks |= UFSHCD_QUIRK_BROKEN_AUTO_HIBERN8;
Adrian Hunter247f9942020-08-27 10:20:30 +0300206 return ufs_intel_common_init(hba);
Adrian Hunter8da76f72020-08-10 17:10:24 +0300207}
208
Adrian Hunter2c87ea92017-06-06 14:35:31 +0300209static struct ufs_hba_variant_ops ufs_intel_cnl_hba_vops = {
210 .name = "intel-pci",
Adrian Hunter247f9942020-08-27 10:20:30 +0300211 .init = ufs_intel_common_init,
212 .exit = ufs_intel_common_exit,
Adrian Hunter2c87ea92017-06-06 14:35:31 +0300213 .link_startup_notify = ufs_intel_link_startup_notify,
Adrian Hunter20e1aec2020-12-07 10:31:17 +0200214 .resume = ufs_intel_resume,
Adrian Hunter2c87ea92017-06-06 14:35:31 +0300215};
216
Adrian Hunter8da76f72020-08-10 17:10:24 +0300217static struct ufs_hba_variant_ops ufs_intel_ehl_hba_vops = {
218 .name = "intel-pci",
219 .init = ufs_intel_ehl_init,
Adrian Hunter247f9942020-08-27 10:20:30 +0300220 .exit = ufs_intel_common_exit,
Adrian Hunter8da76f72020-08-10 17:10:24 +0300221 .link_startup_notify = ufs_intel_link_startup_notify,
Adrian Hunter20e1aec2020-12-07 10:31:17 +0200222 .resume = ufs_intel_resume,
Adrian Hunter8da76f72020-08-10 17:10:24 +0300223};
224
Adrian Hunter7b573382017-06-06 14:35:30 +0300225#ifdef CONFIG_PM_SLEEP
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530226/**
227 * ufshcd_pci_suspend - suspend power management function
Bart Van Assche8aa29f12018-03-01 15:07:20 -0800228 * @dev: pointer to PCI device handle
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530229 *
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300230 * Returns 0 if successful
231 * Returns non-zero otherwise
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530232 */
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530233static int ufshcd_pci_suspend(struct device *dev)
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530234{
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300235 return ufshcd_system_suspend(dev_get_drvdata(dev));
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530236}
237
238/**
239 * ufshcd_pci_resume - resume power management function
Bart Van Assche8aa29f12018-03-01 15:07:20 -0800240 * @dev: pointer to PCI device handle
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530241 *
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300242 * Returns 0 if successful
243 * Returns non-zero otherwise
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530244 */
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530245static int ufshcd_pci_resume(struct device *dev)
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530246{
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300247 return ufshcd_system_resume(dev_get_drvdata(dev));
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530248}
Adrian Hunter46e43552020-12-07 10:31:18 +0200249
250/**
251 * ufshcd_pci_poweroff - suspend-to-disk poweroff function
252 * @dev: pointer to PCI device handle
253 *
254 * Returns 0 if successful
255 * Returns non-zero otherwise
256 */
257static int ufshcd_pci_poweroff(struct device *dev)
258{
259 struct ufs_hba *hba = dev_get_drvdata(dev);
260 int spm_lvl = hba->spm_lvl;
261 int ret;
262
263 /*
264 * For poweroff we need to set the UFS device to PowerDown mode.
265 * Force spm_lvl to ensure that.
266 */
267 hba->spm_lvl = 5;
268 ret = ufshcd_system_suspend(hba);
269 hba->spm_lvl = spm_lvl;
270 return ret;
271}
272
Adrian Hunter7b573382017-06-06 14:35:30 +0300273#endif /* !CONFIG_PM_SLEEP */
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530274
Adrian Hunter7b573382017-06-06 14:35:30 +0300275#ifdef CONFIG_PM
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530276static int ufshcd_pci_runtime_suspend(struct device *dev)
277{
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300278 return ufshcd_runtime_suspend(dev_get_drvdata(dev));
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530279}
280static int ufshcd_pci_runtime_resume(struct device *dev)
281{
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300282 return ufshcd_runtime_resume(dev_get_drvdata(dev));
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530283}
284static int ufshcd_pci_runtime_idle(struct device *dev)
285{
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300286 return ufshcd_runtime_idle(dev_get_drvdata(dev));
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530287}
Adrian Hunter7b573382017-06-06 14:35:30 +0300288#endif /* !CONFIG_PM */
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530289
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530290/**
291 * ufshcd_pci_shutdown - main function to put the controller in reset state
292 * @pdev: pointer to PCI device handle
293 */
294static void ufshcd_pci_shutdown(struct pci_dev *pdev)
295{
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300296 ufshcd_shutdown((struct ufs_hba *)pci_get_drvdata(pdev));
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530297}
298
299/**
300 * ufshcd_pci_remove - de-allocate PCI/SCSI host and host memory space
301 * data structure memory
Bart Van Assche8aa29f12018-03-01 15:07:20 -0800302 * @pdev: pointer to PCI handle
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530303 */
304static void ufshcd_pci_remove(struct pci_dev *pdev)
305{
306 struct ufs_hba *hba = pci_get_drvdata(pdev);
307
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530308 pm_runtime_forbid(&pdev->dev);
309 pm_runtime_get_noresume(&pdev->dev);
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530310 ufshcd_remove(hba);
Subhash Jadavaniafa3dfd2016-10-27 17:25:58 -0700311 ufshcd_dealloc_host(hba);
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530312}
313
314/**
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530315 * ufshcd_pci_probe - probe routine of the driver
316 * @pdev: pointer to PCI device handle
317 * @id: PCI device id
318 *
319 * Returns 0 on success, non-zero value on failure
320 */
321static int
322ufshcd_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
323{
324 struct ufs_hba *hba;
325 void __iomem *mmio_base;
326 int err;
327
Akinobu Mita36f4f3b2013-07-30 00:36:01 +0530328 err = pcim_enable_device(pdev);
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530329 if (err) {
Akinobu Mita36f4f3b2013-07-30 00:36:01 +0530330 dev_err(&pdev->dev, "pcim_enable_device failed\n");
331 return err;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530332 }
333
334 pci_set_master(pdev);
335
Akinobu Mita36f4f3b2013-07-30 00:36:01 +0530336 err = pcim_iomap_regions(pdev, 1 << 0, UFSHCD);
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530337 if (err < 0) {
Akinobu Mita36f4f3b2013-07-30 00:36:01 +0530338 dev_err(&pdev->dev, "request and iomap failed\n");
339 return err;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530340 }
341
Akinobu Mita36f4f3b2013-07-30 00:36:01 +0530342 mmio_base = pcim_iomap_table(pdev)[0];
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530343
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300344 err = ufshcd_alloc_host(&pdev->dev, &hba);
345 if (err) {
346 dev_err(&pdev->dev, "Allocation failed\n");
347 return err;
348 }
349
Adrian Hunter247f9942020-08-27 10:20:30 +0300350 pci_set_drvdata(pdev, hba);
351
Adrian Hunter2c87ea92017-06-06 14:35:31 +0300352 hba->vops = (struct ufs_hba_variant_ops *)id->driver_data;
353
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300354 err = ufshcd_init(hba, mmio_base, pdev->irq);
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530355 if (err) {
356 dev_err(&pdev->dev, "Initialization failed\n");
Subhash Jadavaniafa3dfd2016-10-27 17:25:58 -0700357 ufshcd_dealloc_host(hba);
Akinobu Mita36f4f3b2013-07-30 00:36:01 +0530358 return err;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530359 }
360
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530361 pm_runtime_put_noidle(&pdev->dev);
362 pm_runtime_allow(&pdev->dev);
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530363
364 return 0;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530365}
366
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530367static const struct dev_pm_ops ufshcd_pci_pm_ops = {
Adrian Hunter46e43552020-12-07 10:31:18 +0200368#ifdef CONFIG_PM_SLEEP
369 .suspend = ufshcd_pci_suspend,
370 .resume = ufshcd_pci_resume,
371 .freeze = ufshcd_pci_suspend,
372 .thaw = ufshcd_pci_resume,
373 .poweroff = ufshcd_pci_poweroff,
374 .restore = ufshcd_pci_resume,
375#endif
Adrian Hunter7b573382017-06-06 14:35:30 +0300376 SET_RUNTIME_PM_OPS(ufshcd_pci_runtime_suspend,
377 ufshcd_pci_runtime_resume,
378 ufshcd_pci_runtime_idle)
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530379};
380
Benoit Taine9baa3c32014-08-08 15:56:03 +0200381static const struct pci_device_id ufshcd_pci_tbl[] = {
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530382 { PCI_VENDOR_ID_SAMSUNG, 0xC00C, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
Adrian Hunter2c87ea92017-06-06 14:35:31 +0300383 { PCI_VDEVICE(INTEL, 0x9DFA), (kernel_ulong_t)&ufs_intel_cnl_hba_vops },
Adrian Hunter8da76f72020-08-10 17:10:24 +0300384 { PCI_VDEVICE(INTEL, 0x4B41), (kernel_ulong_t)&ufs_intel_ehl_hba_vops },
385 { PCI_VDEVICE(INTEL, 0x4B43), (kernel_ulong_t)&ufs_intel_ehl_hba_vops },
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530386 { } /* terminate list */
387};
388
389MODULE_DEVICE_TABLE(pci, ufshcd_pci_tbl);
390
391static struct pci_driver ufshcd_pci_driver = {
392 .name = UFSHCD,
393 .id_table = ufshcd_pci_tbl,
394 .probe = ufshcd_pci_probe,
395 .remove = ufshcd_pci_remove,
396 .shutdown = ufshcd_pci_shutdown,
Sujit Reddy Thumma62694732013-07-30 00:36:00 +0530397 .driver = {
398 .pm = &ufshcd_pci_pm_ops
399 },
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530400};
401
402module_pci_driver(ufshcd_pci_driver);
403
404MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
405MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
406MODULE_DESCRIPTION("UFS host controller PCI glue driver");
407MODULE_LICENSE("GPL");
408MODULE_VERSION(UFSHCD_DRIVER_VERSION);