blob: 4dd1077354af0c540e753d9c8ea722ccdce6e191 [file] [log] [blame]
Loic Poulain855a70c2020-10-21 19:18:19 +02001// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * MHI PCI driver - MHI over PCI controller driver
4 *
5 * This module is a generic driver for registering MHI-over-PCI devices,
6 * such as PCIe QCOM modems.
7 *
8 * Copyright (C) 2020 Linaro Ltd <loic.poulain@linaro.org>
9 */
10
Loic Poulainb012ee62021-01-04 17:14:55 +010011#include <linux/aer.h>
Loic Poulain8ccc3272021-01-04 17:14:53 +010012#include <linux/delay.h>
Loic Poulain855a70c2020-10-21 19:18:19 +020013#include <linux/device.h>
14#include <linux/mhi.h>
15#include <linux/module.h>
16#include <linux/pci.h>
Loic Poulaind3800c12021-03-05 20:16:48 +010017#include <linux/pm_runtime.h>
Loic Poulain8562d4f2021-01-04 17:14:56 +010018#include <linux/timer.h>
Loic Poulain73893372021-01-04 17:14:54 +010019#include <linux/workqueue.h>
Loic Poulain855a70c2020-10-21 19:18:19 +020020
21#define MHI_PCI_DEFAULT_BAR_NUM 0
22
Loic Poulain8ccc3272021-01-04 17:14:53 +010023#define MHI_POST_RESET_DELAY_MS 500
Loic Poulain8562d4f2021-01-04 17:14:56 +010024
25#define HEALTH_CHECK_PERIOD (HZ * 2)
26
Loic Poulain855a70c2020-10-21 19:18:19 +020027/**
28 * struct mhi_pci_dev_info - MHI PCI device specific information
29 * @config: MHI controller configuration
30 * @name: name of the PCI module
31 * @fw: firmware path (if any)
32 * @edl: emergency download mode firmware path (if any)
33 * @bar_num: PCI base address register to use for MHI MMIO register space
34 * @dma_data_width: DMA transfer word size (32 or 64 bits)
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +053035 * @sideband_wake: Devices using dedicated sideband GPIO for wakeup instead
36 * of inband wake support (such as sdx24)
Loic Poulain855a70c2020-10-21 19:18:19 +020037 */
38struct mhi_pci_dev_info {
39 const struct mhi_controller_config *config;
40 const char *name;
41 const char *fw;
42 const char *edl;
43 unsigned int bar_num;
44 unsigned int dma_data_width;
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +053045 bool sideband_wake;
Loic Poulain855a70c2020-10-21 19:18:19 +020046};
47
48#define MHI_CHANNEL_CONFIG_UL(ch_num, ch_name, el_count, ev_ring) \
49 { \
50 .num = ch_num, \
51 .name = ch_name, \
52 .num_elements = el_count, \
53 .event_ring = ev_ring, \
54 .dir = DMA_TO_DEVICE, \
55 .ee_mask = BIT(MHI_EE_AMSS), \
56 .pollcfg = 0, \
57 .doorbell = MHI_DB_BRST_DISABLE, \
58 .lpm_notify = false, \
59 .offload_channel = false, \
60 .doorbell_mode_switch = false, \
61 } \
62
63#define MHI_CHANNEL_CONFIG_DL(ch_num, ch_name, el_count, ev_ring) \
64 { \
65 .num = ch_num, \
66 .name = ch_name, \
67 .num_elements = el_count, \
68 .event_ring = ev_ring, \
69 .dir = DMA_FROM_DEVICE, \
70 .ee_mask = BIT(MHI_EE_AMSS), \
71 .pollcfg = 0, \
72 .doorbell = MHI_DB_BRST_DISABLE, \
73 .lpm_notify = false, \
74 .offload_channel = false, \
75 .doorbell_mode_switch = false, \
76 }
77
Loic Poulainb8a97f22021-07-16 13:21:06 +053078#define MHI_CHANNEL_CONFIG_DL_AUTOQUEUE(ch_num, ch_name, el_count, ev_ring) \
79 { \
80 .num = ch_num, \
81 .name = ch_name, \
82 .num_elements = el_count, \
83 .event_ring = ev_ring, \
84 .dir = DMA_FROM_DEVICE, \
85 .ee_mask = BIT(MHI_EE_AMSS), \
86 .pollcfg = 0, \
87 .doorbell = MHI_DB_BRST_DISABLE, \
88 .lpm_notify = false, \
89 .offload_channel = false, \
90 .doorbell_mode_switch = false, \
91 .auto_queue = true, \
92 }
93
Loic Poulain9ea48ef2021-03-05 20:16:43 +010094#define MHI_EVENT_CONFIG_CTRL(ev_ring, el_count) \
Loic Poulain855a70c2020-10-21 19:18:19 +020095 { \
Loic Poulain9ea48ef2021-03-05 20:16:43 +010096 .num_elements = el_count, \
Loic Poulain855a70c2020-10-21 19:18:19 +020097 .irq_moderation_ms = 0, \
98 .irq = (ev_ring) + 1, \
99 .priority = 1, \
100 .mode = MHI_DB_BRST_DISABLE, \
101 .data_type = MHI_ER_CTRL, \
102 .hardware_event = false, \
103 .client_managed = false, \
104 .offload_channel = false, \
105 }
106
Loic Poulaineb967872021-01-04 17:14:52 +0100107#define MHI_CHANNEL_CONFIG_HW_UL(ch_num, ch_name, el_count, ev_ring) \
108 { \
109 .num = ch_num, \
110 .name = ch_name, \
111 .num_elements = el_count, \
112 .event_ring = ev_ring, \
113 .dir = DMA_TO_DEVICE, \
114 .ee_mask = BIT(MHI_EE_AMSS), \
115 .pollcfg = 0, \
116 .doorbell = MHI_DB_BRST_ENABLE, \
117 .lpm_notify = false, \
118 .offload_channel = false, \
119 .doorbell_mode_switch = true, \
120 } \
121
122#define MHI_CHANNEL_CONFIG_HW_DL(ch_num, ch_name, el_count, ev_ring) \
123 { \
124 .num = ch_num, \
125 .name = ch_name, \
126 .num_elements = el_count, \
127 .event_ring = ev_ring, \
128 .dir = DMA_FROM_DEVICE, \
129 .ee_mask = BIT(MHI_EE_AMSS), \
130 .pollcfg = 0, \
131 .doorbell = MHI_DB_BRST_ENABLE, \
132 .lpm_notify = false, \
133 .offload_channel = false, \
134 .doorbell_mode_switch = true, \
135 }
136
Loic Poulainac4bf602021-03-05 20:16:44 +0100137#define MHI_CHANNEL_CONFIG_UL_SBL(ch_num, ch_name, el_count, ev_ring) \
138 { \
139 .num = ch_num, \
140 .name = ch_name, \
141 .num_elements = el_count, \
142 .event_ring = ev_ring, \
143 .dir = DMA_TO_DEVICE, \
144 .ee_mask = BIT(MHI_EE_SBL), \
145 .pollcfg = 0, \
146 .doorbell = MHI_DB_BRST_DISABLE, \
147 .lpm_notify = false, \
148 .offload_channel = false, \
149 .doorbell_mode_switch = false, \
150 } \
151
152#define MHI_CHANNEL_CONFIG_DL_SBL(ch_num, ch_name, el_count, ev_ring) \
153 { \
154 .num = ch_num, \
155 .name = ch_name, \
156 .num_elements = el_count, \
157 .event_ring = ev_ring, \
158 .dir = DMA_FROM_DEVICE, \
159 .ee_mask = BIT(MHI_EE_SBL), \
160 .pollcfg = 0, \
161 .doorbell = MHI_DB_BRST_DISABLE, \
162 .lpm_notify = false, \
163 .offload_channel = false, \
164 .doorbell_mode_switch = false, \
165 }
166
Loic Poulain11134392021-04-07 10:41:00 +0200167#define MHI_CHANNEL_CONFIG_UL_FP(ch_num, ch_name, el_count, ev_ring) \
168 { \
169 .num = ch_num, \
170 .name = ch_name, \
171 .num_elements = el_count, \
172 .event_ring = ev_ring, \
173 .dir = DMA_TO_DEVICE, \
174 .ee_mask = BIT(MHI_EE_FP), \
175 .pollcfg = 0, \
176 .doorbell = MHI_DB_BRST_DISABLE, \
177 .lpm_notify = false, \
178 .offload_channel = false, \
179 .doorbell_mode_switch = false, \
180 } \
181
182#define MHI_CHANNEL_CONFIG_DL_FP(ch_num, ch_name, el_count, ev_ring) \
183 { \
184 .num = ch_num, \
185 .name = ch_name, \
186 .num_elements = el_count, \
187 .event_ring = ev_ring, \
188 .dir = DMA_FROM_DEVICE, \
189 .ee_mask = BIT(MHI_EE_FP), \
190 .pollcfg = 0, \
191 .doorbell = MHI_DB_BRST_DISABLE, \
192 .lpm_notify = false, \
193 .offload_channel = false, \
194 .doorbell_mode_switch = false, \
195 }
196
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100197#define MHI_EVENT_CONFIG_DATA(ev_ring, el_count) \
Loic Poulain855a70c2020-10-21 19:18:19 +0200198 { \
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100199 .num_elements = el_count, \
Loic Poulain855a70c2020-10-21 19:18:19 +0200200 .irq_moderation_ms = 5, \
201 .irq = (ev_ring) + 1, \
202 .priority = 1, \
203 .mode = MHI_DB_BRST_DISABLE, \
204 .data_type = MHI_ER_DATA, \
205 .hardware_event = false, \
206 .client_managed = false, \
207 .offload_channel = false, \
208 }
209
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100210#define MHI_EVENT_CONFIG_HW_DATA(ev_ring, el_count, ch_num) \
Loic Poulain855a70c2020-10-21 19:18:19 +0200211 { \
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100212 .num_elements = el_count, \
Loic Poulainec7513692021-01-04 17:14:59 +0100213 .irq_moderation_ms = 1, \
Loic Poulain855a70c2020-10-21 19:18:19 +0200214 .irq = (ev_ring) + 1, \
215 .priority = 1, \
216 .mode = MHI_DB_BRST_DISABLE, \
217 .data_type = MHI_ER_DATA, \
218 .hardware_event = true, \
219 .client_managed = false, \
220 .offload_channel = false, \
221 .channel = ch_num, \
222 }
223
224static const struct mhi_channel_config modem_qcom_v1_mhi_channels[] = {
Loic Poulain4da3d072021-01-04 17:14:58 +0100225 MHI_CHANNEL_CONFIG_UL(4, "DIAG", 16, 1),
226 MHI_CHANNEL_CONFIG_DL(5, "DIAG", 16, 1),
Loic Poulain855a70c2020-10-21 19:18:19 +0200227 MHI_CHANNEL_CONFIG_UL(12, "MBIM", 4, 0),
228 MHI_CHANNEL_CONFIG_DL(13, "MBIM", 4, 0),
229 MHI_CHANNEL_CONFIG_UL(14, "QMI", 4, 0),
230 MHI_CHANNEL_CONFIG_DL(15, "QMI", 4, 0),
231 MHI_CHANNEL_CONFIG_UL(20, "IPCR", 8, 0),
Loic Poulainb8a97f22021-07-16 13:21:06 +0530232 MHI_CHANNEL_CONFIG_DL_AUTOQUEUE(21, "IPCR", 8, 0),
Loic Poulain11134392021-04-07 10:41:00 +0200233 MHI_CHANNEL_CONFIG_UL_FP(34, "FIREHOSE", 32, 0),
234 MHI_CHANNEL_CONFIG_DL_FP(35, "FIREHOSE", 32, 0),
Loic Poulain4da3d072021-01-04 17:14:58 +0100235 MHI_CHANNEL_CONFIG_HW_UL(100, "IP_HW0", 128, 2),
236 MHI_CHANNEL_CONFIG_HW_DL(101, "IP_HW0", 128, 3),
Loic Poulain855a70c2020-10-21 19:18:19 +0200237};
238
Loic Poulainb91c3b32021-01-05 17:44:36 +0100239static struct mhi_event_config modem_qcom_v1_mhi_events[] = {
Loic Poulain855a70c2020-10-21 19:18:19 +0200240 /* first ring is control+data ring */
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100241 MHI_EVENT_CONFIG_CTRL(0, 64),
Loic Poulain4da3d072021-01-04 17:14:58 +0100242 /* DIAG dedicated event ring */
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100243 MHI_EVENT_CONFIG_DATA(1, 128),
Loic Poulain855a70c2020-10-21 19:18:19 +0200244 /* Hardware channels request dedicated hardware event rings */
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100245 MHI_EVENT_CONFIG_HW_DATA(2, 1024, 100),
246 MHI_EVENT_CONFIG_HW_DATA(3, 2048, 101)
Loic Poulain855a70c2020-10-21 19:18:19 +0200247};
248
Manivannan Sadhasivam5630c102021-04-08 19:15:29 +0530249static const struct mhi_controller_config modem_qcom_v1_mhiv_config = {
Loic Poulain855a70c2020-10-21 19:18:19 +0200250 .max_channels = 128,
Loic Poulain84026a52021-01-04 17:14:57 +0100251 .timeout_ms = 8000,
Loic Poulain855a70c2020-10-21 19:18:19 +0200252 .num_channels = ARRAY_SIZE(modem_qcom_v1_mhi_channels),
253 .ch_cfg = modem_qcom_v1_mhi_channels,
254 .num_events = ARRAY_SIZE(modem_qcom_v1_mhi_events),
255 .event_cfg = modem_qcom_v1_mhi_events,
256};
257
Bhaumik Bhatt49d38eb2021-04-02 14:33:19 -0700258static const struct mhi_pci_dev_info mhi_qcom_sdx65_info = {
259 .name = "qcom-sdx65m",
260 .fw = "qcom/sdx65m/xbl.elf",
261 .edl = "qcom/sdx65m/edl.mbn",
262 .config = &modem_qcom_v1_mhiv_config,
263 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530264 .dma_data_width = 32,
265 .sideband_wake = false,
Bhaumik Bhatt49d38eb2021-04-02 14:33:19 -0700266};
267
Loic Poulain855a70c2020-10-21 19:18:19 +0200268static const struct mhi_pci_dev_info mhi_qcom_sdx55_info = {
269 .name = "qcom-sdx55m",
270 .fw = "qcom/sdx55m/sbl1.mbn",
271 .edl = "qcom/sdx55m/edl.mbn",
272 .config = &modem_qcom_v1_mhiv_config,
273 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530274 .dma_data_width = 32,
275 .sideband_wake = false,
Loic Poulain855a70c2020-10-21 19:18:19 +0200276};
277
Loic Poulain59d05b72021-03-05 20:16:45 +0100278static const struct mhi_pci_dev_info mhi_qcom_sdx24_info = {
279 .name = "qcom-sdx24",
280 .edl = "qcom/prog_firehose_sdx24.mbn",
281 .config = &modem_qcom_v1_mhiv_config,
282 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530283 .dma_data_width = 32,
284 .sideband_wake = true,
Loic Poulain59d05b72021-03-05 20:16:45 +0100285};
286
Loic Poulainac4bf602021-03-05 20:16:44 +0100287static const struct mhi_channel_config mhi_quectel_em1xx_channels[] = {
288 MHI_CHANNEL_CONFIG_UL(0, "NMEA", 32, 0),
289 MHI_CHANNEL_CONFIG_DL(1, "NMEA", 32, 0),
290 MHI_CHANNEL_CONFIG_UL_SBL(2, "SAHARA", 32, 0),
291 MHI_CHANNEL_CONFIG_DL_SBL(3, "SAHARA", 32, 0),
292 MHI_CHANNEL_CONFIG_UL(4, "DIAG", 32, 1),
293 MHI_CHANNEL_CONFIG_DL(5, "DIAG", 32, 1),
294 MHI_CHANNEL_CONFIG_UL(12, "MBIM", 32, 0),
295 MHI_CHANNEL_CONFIG_DL(13, "MBIM", 32, 0),
296 MHI_CHANNEL_CONFIG_UL(32, "DUN", 32, 0),
297 MHI_CHANNEL_CONFIG_DL(33, "DUN", 32, 0),
Loic Poulain11134392021-04-07 10:41:00 +0200298 /* The EDL firmware is a flash-programmer exposing firehose protocol */
299 MHI_CHANNEL_CONFIG_UL_FP(34, "FIREHOSE", 32, 0),
300 MHI_CHANNEL_CONFIG_DL_FP(35, "FIREHOSE", 32, 0),
Loic Poulainac4bf602021-03-05 20:16:44 +0100301 MHI_CHANNEL_CONFIG_HW_UL(100, "IP_HW0_MBIM", 128, 2),
302 MHI_CHANNEL_CONFIG_HW_DL(101, "IP_HW0_MBIM", 128, 3),
303};
304
305static struct mhi_event_config mhi_quectel_em1xx_events[] = {
306 MHI_EVENT_CONFIG_CTRL(0, 128),
307 MHI_EVENT_CONFIG_DATA(1, 128),
308 MHI_EVENT_CONFIG_HW_DATA(2, 1024, 100),
309 MHI_EVENT_CONFIG_HW_DATA(3, 1024, 101)
310};
311
Manivannan Sadhasivam5630c102021-04-08 19:15:29 +0530312static const struct mhi_controller_config modem_quectel_em1xx_config = {
Loic Poulainac4bf602021-03-05 20:16:44 +0100313 .max_channels = 128,
314 .timeout_ms = 20000,
315 .num_channels = ARRAY_SIZE(mhi_quectel_em1xx_channels),
316 .ch_cfg = mhi_quectel_em1xx_channels,
317 .num_events = ARRAY_SIZE(mhi_quectel_em1xx_events),
318 .event_cfg = mhi_quectel_em1xx_events,
319};
320
321static const struct mhi_pci_dev_info mhi_quectel_em1xx_info = {
322 .name = "quectel-em1xx",
323 .edl = "qcom/prog_firehose_sdx24.mbn",
324 .config = &modem_quectel_em1xx_config,
325 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530326 .dma_data_width = 32,
327 .sideband_wake = true,
Loic Poulainac4bf602021-03-05 20:16:44 +0100328};
329
Jarvis Jiangaac42652021-04-08 02:55:24 -0700330static const struct mhi_channel_config mhi_foxconn_sdx55_channels[] = {
331 MHI_CHANNEL_CONFIG_UL(0, "LOOPBACK", 32, 0),
332 MHI_CHANNEL_CONFIG_DL(1, "LOOPBACK", 32, 0),
333 MHI_CHANNEL_CONFIG_UL(4, "DIAG", 32, 1),
334 MHI_CHANNEL_CONFIG_DL(5, "DIAG", 32, 1),
335 MHI_CHANNEL_CONFIG_UL(12, "MBIM", 32, 0),
336 MHI_CHANNEL_CONFIG_DL(13, "MBIM", 32, 0),
Jarvis Jiangc7711c22021-06-06 21:07:39 +0530337 MHI_CHANNEL_CONFIG_UL(32, "DUN", 32, 0),
338 MHI_CHANNEL_CONFIG_DL(33, "DUN", 32, 0),
Jarvis Jiangaac42652021-04-08 02:55:24 -0700339 MHI_CHANNEL_CONFIG_HW_UL(100, "IP_HW0_MBIM", 128, 2),
340 MHI_CHANNEL_CONFIG_HW_DL(101, "IP_HW0_MBIM", 128, 3),
341};
342
343static struct mhi_event_config mhi_foxconn_sdx55_events[] = {
344 MHI_EVENT_CONFIG_CTRL(0, 128),
345 MHI_EVENT_CONFIG_DATA(1, 128),
346 MHI_EVENT_CONFIG_HW_DATA(2, 1024, 100),
347 MHI_EVENT_CONFIG_HW_DATA(3, 1024, 101)
348};
349
Manivannan Sadhasivam5630c102021-04-08 19:15:29 +0530350static const struct mhi_controller_config modem_foxconn_sdx55_config = {
Jarvis Jiangaac42652021-04-08 02:55:24 -0700351 .max_channels = 128,
352 .timeout_ms = 20000,
353 .num_channels = ARRAY_SIZE(mhi_foxconn_sdx55_channels),
354 .ch_cfg = mhi_foxconn_sdx55_channels,
355 .num_events = ARRAY_SIZE(mhi_foxconn_sdx55_events),
356 .event_cfg = mhi_foxconn_sdx55_events,
357};
358
359static const struct mhi_pci_dev_info mhi_foxconn_sdx55_info = {
360 .name = "foxconn-sdx55",
361 .fw = "qcom/sdx55m/sbl1.mbn",
362 .edl = "qcom/sdx55m/edl.mbn",
363 .config = &modem_foxconn_sdx55_config,
364 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530365 .dma_data_width = 32,
366 .sideband_wake = false,
Jarvis Jiangaac42652021-04-08 02:55:24 -0700367};
368
Loic Poulain855a70c2020-10-21 19:18:19 +0200369static const struct pci_device_id mhi_pci_id_table[] = {
370 { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0306),
371 .driver_data = (kernel_ulong_t) &mhi_qcom_sdx55_info },
Loic Poulain59d05b72021-03-05 20:16:45 +0100372 { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0304),
373 .driver_data = (kernel_ulong_t) &mhi_qcom_sdx24_info },
Loic Poulainac4bf602021-03-05 20:16:44 +0100374 { PCI_DEVICE(0x1eac, 0x1001), /* EM120R-GL (sdx24) */
375 .driver_data = (kernel_ulong_t) &mhi_quectel_em1xx_info },
376 { PCI_DEVICE(0x1eac, 0x1002), /* EM160R-GL (sdx24) */
377 .driver_data = (kernel_ulong_t) &mhi_quectel_em1xx_info },
Bhaumik Bhatt49d38eb2021-04-02 14:33:19 -0700378 { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0308),
379 .driver_data = (kernel_ulong_t) &mhi_qcom_sdx65_info },
Jarvis Jiangaac42652021-04-08 02:55:24 -0700380 /* T99W175 (sdx55), Both for eSIM and Non-eSIM */
381 { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0ab),
382 .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx55_info },
383 /* DW5930e (sdx55), With eSIM, It's also T99W175 */
384 { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0b0),
385 .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx55_info },
386 /* DW5930e (sdx55), Non-eSIM, It's also T99W175 */
387 { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0b1),
388 .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx55_info },
Loic Poulain855a70c2020-10-21 19:18:19 +0200389 { }
390};
391MODULE_DEVICE_TABLE(pci, mhi_pci_id_table);
392
Loic Poulain8ccc3272021-01-04 17:14:53 +0100393enum mhi_pci_device_status {
394 MHI_PCI_DEV_STARTED,
Loic Poulaind3800c12021-03-05 20:16:48 +0100395 MHI_PCI_DEV_SUSPENDED,
Loic Poulain8ccc3272021-01-04 17:14:53 +0100396};
397
398struct mhi_pci_device {
399 struct mhi_controller mhi_cntrl;
400 struct pci_saved_state *pci_state;
Loic Poulain73893372021-01-04 17:14:54 +0100401 struct work_struct recovery_work;
Loic Poulain8562d4f2021-01-04 17:14:56 +0100402 struct timer_list health_check_timer;
Loic Poulain8ccc3272021-01-04 17:14:53 +0100403 unsigned long status;
404};
405
Loic Poulain855a70c2020-10-21 19:18:19 +0200406static int mhi_pci_read_reg(struct mhi_controller *mhi_cntrl,
407 void __iomem *addr, u32 *out)
408{
409 *out = readl(addr);
410 return 0;
411}
412
413static void mhi_pci_write_reg(struct mhi_controller *mhi_cntrl,
414 void __iomem *addr, u32 val)
415{
416 writel(val, addr);
417}
418
419static void mhi_pci_status_cb(struct mhi_controller *mhi_cntrl,
420 enum mhi_callback cb)
421{
Loic Poulain1e2f29b2021-02-03 17:39:42 +0100422 struct pci_dev *pdev = to_pci_dev(mhi_cntrl->cntrl_dev);
423
Loic Poulain855a70c2020-10-21 19:18:19 +0200424 /* Nothing to do for now */
Loic Poulain1e2f29b2021-02-03 17:39:42 +0100425 switch (cb) {
426 case MHI_CB_FATAL_ERROR:
427 case MHI_CB_SYS_ERROR:
428 dev_warn(&pdev->dev, "firmware crashed (%u)\n", cb);
Loic Poulaind3800c12021-03-05 20:16:48 +0100429 pm_runtime_forbid(&pdev->dev);
430 break;
431 case MHI_CB_EE_MISSION_MODE:
432 pm_runtime_allow(&pdev->dev);
Loic Poulain1e2f29b2021-02-03 17:39:42 +0100433 break;
434 default:
435 break;
436 }
Loic Poulain855a70c2020-10-21 19:18:19 +0200437}
438
Loic Poulaine3e5e6502021-03-05 20:16:46 +0100439static void mhi_pci_wake_get_nop(struct mhi_controller *mhi_cntrl, bool force)
440{
441 /* no-op */
442}
443
444static void mhi_pci_wake_put_nop(struct mhi_controller *mhi_cntrl, bool override)
445{
446 /* no-op */
447}
448
449static void mhi_pci_wake_toggle_nop(struct mhi_controller *mhi_cntrl)
450{
451 /* no-op */
452}
453
Loic Poulain8ccc3272021-01-04 17:14:53 +0100454static bool mhi_pci_is_alive(struct mhi_controller *mhi_cntrl)
455{
456 struct pci_dev *pdev = to_pci_dev(mhi_cntrl->cntrl_dev);
457 u16 vendor = 0;
458
459 if (pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor))
460 return false;
461
462 if (vendor == (u16) ~0 || vendor == 0)
463 return false;
464
465 return true;
466}
467
Loic Poulain855a70c2020-10-21 19:18:19 +0200468static int mhi_pci_claim(struct mhi_controller *mhi_cntrl,
469 unsigned int bar_num, u64 dma_mask)
470{
471 struct pci_dev *pdev = to_pci_dev(mhi_cntrl->cntrl_dev);
472 int err;
473
474 err = pci_assign_resource(pdev, bar_num);
475 if (err)
476 return err;
477
478 err = pcim_enable_device(pdev);
479 if (err) {
480 dev_err(&pdev->dev, "failed to enable pci device: %d\n", err);
481 return err;
482 }
483
484 err = pcim_iomap_regions(pdev, 1 << bar_num, pci_name(pdev));
485 if (err) {
486 dev_err(&pdev->dev, "failed to map pci region: %d\n", err);
487 return err;
488 }
489 mhi_cntrl->regs = pcim_iomap_table(pdev)[bar_num];
490
491 err = pci_set_dma_mask(pdev, dma_mask);
492 if (err) {
493 dev_err(&pdev->dev, "Cannot set proper DMA mask\n");
494 return err;
495 }
496
497 err = pci_set_consistent_dma_mask(pdev, dma_mask);
498 if (err) {
499 dev_err(&pdev->dev, "set consistent dma mask failed\n");
500 return err;
501 }
502
503 pci_set_master(pdev);
504
505 return 0;
506}
507
508static int mhi_pci_get_irqs(struct mhi_controller *mhi_cntrl,
509 const struct mhi_controller_config *mhi_cntrl_config)
510{
511 struct pci_dev *pdev = to_pci_dev(mhi_cntrl->cntrl_dev);
512 int nr_vectors, i;
513 int *irq;
514
515 /*
516 * Alloc one MSI vector for BHI + one vector per event ring, ideally...
517 * No explicit pci_free_irq_vectors required, done by pcim_release.
518 */
519 mhi_cntrl->nr_irqs = 1 + mhi_cntrl_config->num_events;
520
521 nr_vectors = pci_alloc_irq_vectors(pdev, 1, mhi_cntrl->nr_irqs, PCI_IRQ_MSI);
522 if (nr_vectors < 0) {
523 dev_err(&pdev->dev, "Error allocating MSI vectors %d\n",
524 nr_vectors);
525 return nr_vectors;
526 }
527
528 if (nr_vectors < mhi_cntrl->nr_irqs) {
Loic Poulainb91c3b32021-01-05 17:44:36 +0100529 dev_warn(&pdev->dev, "using shared MSI\n");
530
531 /* Patch msi vectors, use only one (shared) */
532 for (i = 0; i < mhi_cntrl_config->num_events; i++)
533 mhi_cntrl_config->event_cfg[i].irq = 0;
534 mhi_cntrl->nr_irqs = 1;
Loic Poulain855a70c2020-10-21 19:18:19 +0200535 }
536
537 irq = devm_kcalloc(&pdev->dev, mhi_cntrl->nr_irqs, sizeof(int), GFP_KERNEL);
538 if (!irq)
539 return -ENOMEM;
540
541 for (i = 0; i < mhi_cntrl->nr_irqs; i++) {
542 int vector = i >= nr_vectors ? (nr_vectors - 1) : i;
543
544 irq[i] = pci_irq_vector(pdev, vector);
545 }
546
547 mhi_cntrl->irq = irq;
548
549 return 0;
550}
551
552static int mhi_pci_runtime_get(struct mhi_controller *mhi_cntrl)
553{
Loic Poulaind3800c12021-03-05 20:16:48 +0100554 /* The runtime_get() MHI callback means:
555 * Do whatever is requested to leave M3.
556 */
557 return pm_runtime_get(mhi_cntrl->cntrl_dev);
Loic Poulain855a70c2020-10-21 19:18:19 +0200558}
559
560static void mhi_pci_runtime_put(struct mhi_controller *mhi_cntrl)
561{
Loic Poulaind3800c12021-03-05 20:16:48 +0100562 /* The runtime_put() MHI callback means:
563 * Device can be moved in M3 state.
564 */
565 pm_runtime_mark_last_busy(mhi_cntrl->cntrl_dev);
566 pm_runtime_put(mhi_cntrl->cntrl_dev);
Loic Poulain855a70c2020-10-21 19:18:19 +0200567}
568
Loic Poulain73893372021-01-04 17:14:54 +0100569static void mhi_pci_recovery_work(struct work_struct *work)
570{
571 struct mhi_pci_device *mhi_pdev = container_of(work, struct mhi_pci_device,
572 recovery_work);
573 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
574 struct pci_dev *pdev = to_pci_dev(mhi_cntrl->cntrl_dev);
575 int err;
576
577 dev_warn(&pdev->dev, "device recovery started\n");
578
Loic Poulain8562d4f2021-01-04 17:14:56 +0100579 del_timer(&mhi_pdev->health_check_timer);
Loic Poulaind3800c12021-03-05 20:16:48 +0100580 pm_runtime_forbid(&pdev->dev);
Loic Poulain8562d4f2021-01-04 17:14:56 +0100581
Loic Poulain73893372021-01-04 17:14:54 +0100582 /* Clean up MHI state */
583 if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) {
584 mhi_power_down(mhi_cntrl, false);
585 mhi_unprepare_after_power_down(mhi_cntrl);
586 }
587
Loic Poulain73893372021-01-04 17:14:54 +0100588 pci_set_power_state(pdev, PCI_D0);
589 pci_load_saved_state(pdev, mhi_pdev->pci_state);
590 pci_restore_state(pdev);
591
592 if (!mhi_pci_is_alive(mhi_cntrl))
593 goto err_try_reset;
594
595 err = mhi_prepare_for_power_up(mhi_cntrl);
596 if (err)
597 goto err_try_reset;
598
599 err = mhi_sync_power_up(mhi_cntrl);
600 if (err)
601 goto err_unprepare;
602
603 dev_dbg(&pdev->dev, "Recovery completed\n");
604
605 set_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status);
Loic Poulain8562d4f2021-01-04 17:14:56 +0100606 mod_timer(&mhi_pdev->health_check_timer, jiffies + HEALTH_CHECK_PERIOD);
Loic Poulain73893372021-01-04 17:14:54 +0100607 return;
608
609err_unprepare:
610 mhi_unprepare_after_power_down(mhi_cntrl);
611err_try_reset:
612 if (pci_reset_function(pdev))
613 dev_err(&pdev->dev, "Recovery failed\n");
614}
615
Loic Poulain8562d4f2021-01-04 17:14:56 +0100616static void health_check(struct timer_list *t)
617{
618 struct mhi_pci_device *mhi_pdev = from_timer(mhi_pdev, t, health_check_timer);
619 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
620
Loic Poulaind3800c12021-03-05 20:16:48 +0100621 if (!test_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status) ||
622 test_bit(MHI_PCI_DEV_SUSPENDED, &mhi_pdev->status))
623 return;
624
Loic Poulain8562d4f2021-01-04 17:14:56 +0100625 if (!mhi_pci_is_alive(mhi_cntrl)) {
626 dev_err(mhi_cntrl->cntrl_dev, "Device died\n");
627 queue_work(system_long_wq, &mhi_pdev->recovery_work);
628 return;
629 }
630
631 /* reschedule in two seconds */
632 mod_timer(&mhi_pdev->health_check_timer, jiffies + HEALTH_CHECK_PERIOD);
633}
634
Loic Poulain855a70c2020-10-21 19:18:19 +0200635static int mhi_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
636{
637 const struct mhi_pci_dev_info *info = (struct mhi_pci_dev_info *) id->driver_data;
638 const struct mhi_controller_config *mhi_cntrl_config;
Loic Poulain8ccc3272021-01-04 17:14:53 +0100639 struct mhi_pci_device *mhi_pdev;
Loic Poulain855a70c2020-10-21 19:18:19 +0200640 struct mhi_controller *mhi_cntrl;
641 int err;
642
643 dev_dbg(&pdev->dev, "MHI PCI device found: %s\n", info->name);
644
Loic Poulain8ccc3272021-01-04 17:14:53 +0100645 /* mhi_pdev.mhi_cntrl must be zero-initialized */
646 mhi_pdev = devm_kzalloc(&pdev->dev, sizeof(*mhi_pdev), GFP_KERNEL);
647 if (!mhi_pdev)
Loic Poulain855a70c2020-10-21 19:18:19 +0200648 return -ENOMEM;
649
Loic Poulain73893372021-01-04 17:14:54 +0100650 INIT_WORK(&mhi_pdev->recovery_work, mhi_pci_recovery_work);
Loic Poulain8562d4f2021-01-04 17:14:56 +0100651 timer_setup(&mhi_pdev->health_check_timer, health_check, 0);
Loic Poulain73893372021-01-04 17:14:54 +0100652
Loic Poulain855a70c2020-10-21 19:18:19 +0200653 mhi_cntrl_config = info->config;
Loic Poulain8ccc3272021-01-04 17:14:53 +0100654 mhi_cntrl = &mhi_pdev->mhi_cntrl;
655
Loic Poulain855a70c2020-10-21 19:18:19 +0200656 mhi_cntrl->cntrl_dev = &pdev->dev;
657 mhi_cntrl->iova_start = 0;
Loic Poulain4ea6fa22020-12-02 09:12:30 +0100658 mhi_cntrl->iova_stop = (dma_addr_t)DMA_BIT_MASK(info->dma_data_width);
Loic Poulain855a70c2020-10-21 19:18:19 +0200659 mhi_cntrl->fw_image = info->fw;
660 mhi_cntrl->edl_image = info->edl;
661
662 mhi_cntrl->read_reg = mhi_pci_read_reg;
663 mhi_cntrl->write_reg = mhi_pci_write_reg;
664 mhi_cntrl->status_cb = mhi_pci_status_cb;
665 mhi_cntrl->runtime_get = mhi_pci_runtime_get;
666 mhi_cntrl->runtime_put = mhi_pci_runtime_put;
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530667
668 if (info->sideband_wake) {
669 mhi_cntrl->wake_get = mhi_pci_wake_get_nop;
670 mhi_cntrl->wake_put = mhi_pci_wake_put_nop;
671 mhi_cntrl->wake_toggle = mhi_pci_wake_toggle_nop;
672 }
Loic Poulain855a70c2020-10-21 19:18:19 +0200673
674 err = mhi_pci_claim(mhi_cntrl, info->bar_num, DMA_BIT_MASK(info->dma_data_width));
675 if (err)
Loic Poulain8ccc3272021-01-04 17:14:53 +0100676 return err;
Loic Poulain855a70c2020-10-21 19:18:19 +0200677
678 err = mhi_pci_get_irqs(mhi_cntrl, mhi_cntrl_config);
679 if (err)
Loic Poulain8ccc3272021-01-04 17:14:53 +0100680 return err;
Loic Poulain855a70c2020-10-21 19:18:19 +0200681
Loic Poulain8ccc3272021-01-04 17:14:53 +0100682 pci_set_drvdata(pdev, mhi_pdev);
683
Loic Poulaine89878a2021-03-05 20:16:47 +0100684 /* Have stored pci confspace at hand for restore in sudden PCI error.
685 * cache the state locally and discard the PCI core one.
686 */
Loic Poulain8ccc3272021-01-04 17:14:53 +0100687 pci_save_state(pdev);
688 mhi_pdev->pci_state = pci_store_saved_state(pdev);
Loic Poulaine89878a2021-03-05 20:16:47 +0100689 pci_load_saved_state(pdev, NULL);
Loic Poulain855a70c2020-10-21 19:18:19 +0200690
Loic Poulainb012ee62021-01-04 17:14:55 +0100691 pci_enable_pcie_error_reporting(pdev);
692
Loic Poulain855a70c2020-10-21 19:18:19 +0200693 err = mhi_register_controller(mhi_cntrl, mhi_cntrl_config);
694 if (err)
Christophe JAILLETa25d1442021-06-21 21:46:13 +0530695 goto err_disable_reporting;
Loic Poulain855a70c2020-10-21 19:18:19 +0200696
697 /* MHI bus does not power up the controller by default */
698 err = mhi_prepare_for_power_up(mhi_cntrl);
699 if (err) {
700 dev_err(&pdev->dev, "failed to prepare MHI controller\n");
701 goto err_unregister;
702 }
703
704 err = mhi_sync_power_up(mhi_cntrl);
705 if (err) {
706 dev_err(&pdev->dev, "failed to power up MHI controller\n");
707 goto err_unprepare;
708 }
709
Loic Poulain8ccc3272021-01-04 17:14:53 +0100710 set_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status);
711
Loic Poulain8562d4f2021-01-04 17:14:56 +0100712 /* start health check */
713 mod_timer(&mhi_pdev->health_check_timer, jiffies + HEALTH_CHECK_PERIOD);
714
Loic Poulaind3800c12021-03-05 20:16:48 +0100715 /* Only allow runtime-suspend if PME capable (for wakeup) */
716 if (pci_pme_capable(pdev, PCI_D3hot)) {
717 pm_runtime_set_autosuspend_delay(&pdev->dev, 2000);
718 pm_runtime_use_autosuspend(&pdev->dev);
719 pm_runtime_mark_last_busy(&pdev->dev);
720 pm_runtime_put_noidle(&pdev->dev);
721 }
722
Loic Poulain855a70c2020-10-21 19:18:19 +0200723 return 0;
724
725err_unprepare:
726 mhi_unprepare_after_power_down(mhi_cntrl);
727err_unregister:
728 mhi_unregister_controller(mhi_cntrl);
Christophe JAILLETa25d1442021-06-21 21:46:13 +0530729err_disable_reporting:
730 pci_disable_pcie_error_reporting(pdev);
Loic Poulain855a70c2020-10-21 19:18:19 +0200731
732 return err;
733}
734
735static void mhi_pci_remove(struct pci_dev *pdev)
736{
Loic Poulain8ccc3272021-01-04 17:14:53 +0100737 struct mhi_pci_device *mhi_pdev = pci_get_drvdata(pdev);
738 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
Loic Poulain855a70c2020-10-21 19:18:19 +0200739
Wei Yongjun0b678082021-06-06 21:07:40 +0530740 del_timer_sync(&mhi_pdev->health_check_timer);
Loic Poulain73893372021-01-04 17:14:54 +0100741 cancel_work_sync(&mhi_pdev->recovery_work);
742
Loic Poulain8ccc3272021-01-04 17:14:53 +0100743 if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) {
744 mhi_power_down(mhi_cntrl, true);
745 mhi_unprepare_after_power_down(mhi_cntrl);
746 }
747
Loic Poulaind3800c12021-03-05 20:16:48 +0100748 /* balancing probe put_noidle */
749 if (pci_pme_capable(pdev, PCI_D3hot))
750 pm_runtime_get_noresume(&pdev->dev);
751
Loic Poulain855a70c2020-10-21 19:18:19 +0200752 mhi_unregister_controller(mhi_cntrl);
Christophe JAILLETa25d1442021-06-21 21:46:13 +0530753 pci_disable_pcie_error_reporting(pdev);
Loic Poulain855a70c2020-10-21 19:18:19 +0200754}
755
Loic Poulain757072a2021-03-19 16:50:37 +0100756static void mhi_pci_shutdown(struct pci_dev *pdev)
757{
758 mhi_pci_remove(pdev);
759 pci_set_power_state(pdev, PCI_D3hot);
760}
761
Loic Poulain8ccc3272021-01-04 17:14:53 +0100762static void mhi_pci_reset_prepare(struct pci_dev *pdev)
763{
764 struct mhi_pci_device *mhi_pdev = pci_get_drvdata(pdev);
765 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
766
767 dev_info(&pdev->dev, "reset\n");
768
Loic Poulain8562d4f2021-01-04 17:14:56 +0100769 del_timer(&mhi_pdev->health_check_timer);
770
Loic Poulain8ccc3272021-01-04 17:14:53 +0100771 /* Clean up MHI state */
772 if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) {
773 mhi_power_down(mhi_cntrl, false);
774 mhi_unprepare_after_power_down(mhi_cntrl);
775 }
776
777 /* cause internal device reset */
778 mhi_soc_reset(mhi_cntrl);
779
780 /* Be sure device reset has been executed */
781 msleep(MHI_POST_RESET_DELAY_MS);
782}
783
784static void mhi_pci_reset_done(struct pci_dev *pdev)
785{
786 struct mhi_pci_device *mhi_pdev = pci_get_drvdata(pdev);
787 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
788 int err;
789
790 /* Restore initial known working PCI state */
791 pci_load_saved_state(pdev, mhi_pdev->pci_state);
792 pci_restore_state(pdev);
793
794 /* Is device status available ? */
795 if (!mhi_pci_is_alive(mhi_cntrl)) {
796 dev_err(&pdev->dev, "reset failed\n");
797 return;
798 }
799
800 err = mhi_prepare_for_power_up(mhi_cntrl);
801 if (err) {
802 dev_err(&pdev->dev, "failed to prepare MHI controller\n");
803 return;
804 }
805
806 err = mhi_sync_power_up(mhi_cntrl);
807 if (err) {
808 dev_err(&pdev->dev, "failed to power up MHI controller\n");
809 mhi_unprepare_after_power_down(mhi_cntrl);
810 return;
811 }
812
813 set_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status);
Loic Poulain8562d4f2021-01-04 17:14:56 +0100814 mod_timer(&mhi_pdev->health_check_timer, jiffies + HEALTH_CHECK_PERIOD);
Loic Poulain8ccc3272021-01-04 17:14:53 +0100815}
816
Loic Poulainb012ee62021-01-04 17:14:55 +0100817static pci_ers_result_t mhi_pci_error_detected(struct pci_dev *pdev,
818 pci_channel_state_t state)
819{
820 struct mhi_pci_device *mhi_pdev = pci_get_drvdata(pdev);
821 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
822
823 dev_err(&pdev->dev, "PCI error detected, state = %u\n", state);
824
825 if (state == pci_channel_io_perm_failure)
826 return PCI_ERS_RESULT_DISCONNECT;
827
828 /* Clean up MHI state */
829 if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) {
830 mhi_power_down(mhi_cntrl, false);
831 mhi_unprepare_after_power_down(mhi_cntrl);
832 } else {
833 /* Nothing to do */
834 return PCI_ERS_RESULT_RECOVERED;
835 }
836
837 pci_disable_device(pdev);
838
839 return PCI_ERS_RESULT_NEED_RESET;
840}
841
842static pci_ers_result_t mhi_pci_slot_reset(struct pci_dev *pdev)
843{
844 if (pci_enable_device(pdev)) {
845 dev_err(&pdev->dev, "Cannot re-enable PCI device after reset.\n");
846 return PCI_ERS_RESULT_DISCONNECT;
847 }
848
849 return PCI_ERS_RESULT_RECOVERED;
850}
851
852static void mhi_pci_io_resume(struct pci_dev *pdev)
853{
854 struct mhi_pci_device *mhi_pdev = pci_get_drvdata(pdev);
855
856 dev_err(&pdev->dev, "PCI slot reset done\n");
857
858 queue_work(system_long_wq, &mhi_pdev->recovery_work);
859}
860
Loic Poulain8ccc3272021-01-04 17:14:53 +0100861static const struct pci_error_handlers mhi_pci_err_handler = {
Loic Poulainb012ee62021-01-04 17:14:55 +0100862 .error_detected = mhi_pci_error_detected,
863 .slot_reset = mhi_pci_slot_reset,
864 .resume = mhi_pci_io_resume,
Loic Poulain8ccc3272021-01-04 17:14:53 +0100865 .reset_prepare = mhi_pci_reset_prepare,
866 .reset_done = mhi_pci_reset_done,
867};
868
Loic Poulaind3800c12021-03-05 20:16:48 +0100869static int __maybe_unused mhi_pci_runtime_suspend(struct device *dev)
Loic Poulain73893372021-01-04 17:14:54 +0100870{
871 struct pci_dev *pdev = to_pci_dev(dev);
872 struct mhi_pci_device *mhi_pdev = dev_get_drvdata(dev);
873 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
Loic Poulaind3800c12021-03-05 20:16:48 +0100874 int err;
875
876 if (test_and_set_bit(MHI_PCI_DEV_SUSPENDED, &mhi_pdev->status))
877 return 0;
Loic Poulain73893372021-01-04 17:14:54 +0100878
Loic Poulain8562d4f2021-01-04 17:14:56 +0100879 del_timer(&mhi_pdev->health_check_timer);
Loic Poulain73893372021-01-04 17:14:54 +0100880 cancel_work_sync(&mhi_pdev->recovery_work);
881
Loic Poulaind3800c12021-03-05 20:16:48 +0100882 if (!test_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status) ||
883 mhi_cntrl->ee != MHI_EE_AMSS)
884 goto pci_suspend; /* Nothing to do at MHI level */
Loic Poulain73893372021-01-04 17:14:54 +0100885
Loic Poulaind3800c12021-03-05 20:16:48 +0100886 /* Transition to M3 state */
887 err = mhi_pm_suspend(mhi_cntrl);
888 if (err) {
889 dev_err(&pdev->dev, "failed to suspend device: %d\n", err);
890 clear_bit(MHI_PCI_DEV_SUSPENDED, &mhi_pdev->status);
891 return -EBUSY;
892 }
893
894pci_suspend:
Loic Poulain73893372021-01-04 17:14:54 +0100895 pci_disable_device(pdev);
896 pci_wake_from_d3(pdev, true);
Loic Poulain73893372021-01-04 17:14:54 +0100897
898 return 0;
899}
900
Loic Poulaind3800c12021-03-05 20:16:48 +0100901static int __maybe_unused mhi_pci_runtime_resume(struct device *dev)
Loic Poulain73893372021-01-04 17:14:54 +0100902{
903 struct pci_dev *pdev = to_pci_dev(dev);
904 struct mhi_pci_device *mhi_pdev = dev_get_drvdata(dev);
905 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
906 int err;
907
Loic Poulaind3800c12021-03-05 20:16:48 +0100908 if (!test_and_clear_bit(MHI_PCI_DEV_SUSPENDED, &mhi_pdev->status))
909 return 0;
910
Loic Poulain73893372021-01-04 17:14:54 +0100911 err = pci_enable_device(pdev);
912 if (err)
913 goto err_recovery;
914
Loic Poulaine89878a2021-03-05 20:16:47 +0100915 pci_set_master(pdev);
916 pci_wake_from_d3(pdev, false);
917
Loic Poulaind3800c12021-03-05 20:16:48 +0100918 if (!test_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status) ||
919 mhi_cntrl->ee != MHI_EE_AMSS)
920 return 0; /* Nothing to do at MHI level */
921
Loic Poulain73893372021-01-04 17:14:54 +0100922 /* Exit M3, transition to M0 state */
923 err = mhi_pm_resume(mhi_cntrl);
924 if (err) {
925 dev_err(&pdev->dev, "failed to resume device: %d\n", err);
926 goto err_recovery;
927 }
928
Loic Poulain8562d4f2021-01-04 17:14:56 +0100929 /* Resume health check */
930 mod_timer(&mhi_pdev->health_check_timer, jiffies + HEALTH_CHECK_PERIOD);
931
Loic Poulaind3800c12021-03-05 20:16:48 +0100932 /* It can be a remote wakeup (no mhi runtime_get), update access time */
933 pm_runtime_mark_last_busy(dev);
934
Loic Poulain73893372021-01-04 17:14:54 +0100935 return 0;
936
937err_recovery:
Loic Poulaind3800c12021-03-05 20:16:48 +0100938 /* Do not fail to not mess up our PCI device state, the device likely
939 * lost power (d3cold) and we simply need to reset it from the recovery
940 * procedure, trigger the recovery asynchronously to prevent system
941 * suspend exit delaying.
942 */
Loic Poulain73893372021-01-04 17:14:54 +0100943 queue_work(system_long_wq, &mhi_pdev->recovery_work);
Loic Poulaind3800c12021-03-05 20:16:48 +0100944 pm_runtime_mark_last_busy(dev);
Loic Poulain73893372021-01-04 17:14:54 +0100945
Loic Poulaind3800c12021-03-05 20:16:48 +0100946 return 0;
947}
948
949static int __maybe_unused mhi_pci_suspend(struct device *dev)
950{
951 pm_runtime_disable(dev);
952 return mhi_pci_runtime_suspend(dev);
953}
954
955static int __maybe_unused mhi_pci_resume(struct device *dev)
956{
957 int ret;
958
959 /* Depending the platform, device may have lost power (d3cold), we need
960 * to resume it now to check its state and recover when necessary.
961 */
962 ret = mhi_pci_runtime_resume(dev);
963 pm_runtime_enable(dev);
964
965 return ret;
Loic Poulain73893372021-01-04 17:14:54 +0100966}
967
Loic Poulain5f0c2ee2021-06-06 21:07:41 +0530968static int __maybe_unused mhi_pci_freeze(struct device *dev)
969{
970 struct mhi_pci_device *mhi_pdev = dev_get_drvdata(dev);
971 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
972
973 /* We want to stop all operations, hibernation does not guarantee that
974 * device will be in the same state as before freezing, especially if
975 * the intermediate restore kernel reinitializes MHI device with new
976 * context.
977 */
978 if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) {
979 mhi_power_down(mhi_cntrl, false);
980 mhi_unprepare_after_power_down(mhi_cntrl);
981 }
982
983 return 0;
984}
985
986static int __maybe_unused mhi_pci_restore(struct device *dev)
987{
988 struct mhi_pci_device *mhi_pdev = dev_get_drvdata(dev);
989
990 /* Reinitialize the device */
991 queue_work(system_long_wq, &mhi_pdev->recovery_work);
992
993 return 0;
994}
995
Loic Poulain73893372021-01-04 17:14:54 +0100996static const struct dev_pm_ops mhi_pci_pm_ops = {
Loic Poulaind3800c12021-03-05 20:16:48 +0100997 SET_RUNTIME_PM_OPS(mhi_pci_runtime_suspend, mhi_pci_runtime_resume, NULL)
Loic Poulain5f0c2ee2021-06-06 21:07:41 +0530998#ifdef CONFIG_PM_SLEEP
999 .suspend = mhi_pci_suspend,
1000 .resume = mhi_pci_resume,
1001 .freeze = mhi_pci_freeze,
1002 .thaw = mhi_pci_restore,
1003 .restore = mhi_pci_restore,
1004#endif
Loic Poulain73893372021-01-04 17:14:54 +01001005};
1006
Loic Poulain855a70c2020-10-21 19:18:19 +02001007static struct pci_driver mhi_pci_driver = {
1008 .name = "mhi-pci-generic",
1009 .id_table = mhi_pci_id_table,
1010 .probe = mhi_pci_probe,
Loic Poulain8ccc3272021-01-04 17:14:53 +01001011 .remove = mhi_pci_remove,
Loic Poulain757072a2021-03-19 16:50:37 +01001012 .shutdown = mhi_pci_shutdown,
Loic Poulain8ccc3272021-01-04 17:14:53 +01001013 .err_handler = &mhi_pci_err_handler,
Loic Poulain73893372021-01-04 17:14:54 +01001014 .driver.pm = &mhi_pci_pm_ops
Loic Poulain855a70c2020-10-21 19:18:19 +02001015};
1016module_pci_driver(mhi_pci_driver);
1017
1018MODULE_AUTHOR("Loic Poulain <loic.poulain@linaro.org>");
1019MODULE_DESCRIPTION("Modem Host Interface (MHI) PCI controller driver");
1020MODULE_LICENSE("GPL");