blob: 3a258a677df855ec4c7c01cd4d028d6fe22306dd [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
Slark Xiaoe2022cb2021-11-26 16:19:51 +053023#define MHI_POST_RESET_DELAY_MS 2000
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)
Richard Laing5c2c8532021-07-15 09:18:05 +120035 * @mru_default: default MRU size for MBIM network packets
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +053036 * @sideband_wake: Devices using dedicated sideband GPIO for wakeup instead
37 * of inband wake support (such as sdx24)
Loic Poulain855a70c2020-10-21 19:18:19 +020038 */
39struct mhi_pci_dev_info {
40 const struct mhi_controller_config *config;
41 const char *name;
42 const char *fw;
43 const char *edl;
44 unsigned int bar_num;
45 unsigned int dma_data_width;
Richard Laing5c2c8532021-07-15 09:18:05 +120046 unsigned int mru_default;
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +053047 bool sideband_wake;
Loic Poulain855a70c2020-10-21 19:18:19 +020048};
49
50#define MHI_CHANNEL_CONFIG_UL(ch_num, ch_name, el_count, ev_ring) \
51 { \
52 .num = ch_num, \
53 .name = ch_name, \
54 .num_elements = el_count, \
55 .event_ring = ev_ring, \
56 .dir = DMA_TO_DEVICE, \
57 .ee_mask = BIT(MHI_EE_AMSS), \
58 .pollcfg = 0, \
59 .doorbell = MHI_DB_BRST_DISABLE, \
60 .lpm_notify = false, \
61 .offload_channel = false, \
62 .doorbell_mode_switch = false, \
63 } \
64
65#define MHI_CHANNEL_CONFIG_DL(ch_num, ch_name, el_count, ev_ring) \
66 { \
67 .num = ch_num, \
68 .name = ch_name, \
69 .num_elements = el_count, \
70 .event_ring = ev_ring, \
71 .dir = DMA_FROM_DEVICE, \
72 .ee_mask = BIT(MHI_EE_AMSS), \
73 .pollcfg = 0, \
74 .doorbell = MHI_DB_BRST_DISABLE, \
75 .lpm_notify = false, \
76 .offload_channel = false, \
77 .doorbell_mode_switch = false, \
78 }
79
Loic Poulainb8a97f22021-07-16 13:21:06 +053080#define MHI_CHANNEL_CONFIG_DL_AUTOQUEUE(ch_num, ch_name, el_count, ev_ring) \
81 { \
82 .num = ch_num, \
83 .name = ch_name, \
84 .num_elements = el_count, \
85 .event_ring = ev_ring, \
86 .dir = DMA_FROM_DEVICE, \
87 .ee_mask = BIT(MHI_EE_AMSS), \
88 .pollcfg = 0, \
89 .doorbell = MHI_DB_BRST_DISABLE, \
90 .lpm_notify = false, \
91 .offload_channel = false, \
92 .doorbell_mode_switch = false, \
93 .auto_queue = true, \
94 }
95
Loic Poulain9ea48ef2021-03-05 20:16:43 +010096#define MHI_EVENT_CONFIG_CTRL(ev_ring, el_count) \
Loic Poulain855a70c2020-10-21 19:18:19 +020097 { \
Loic Poulain9ea48ef2021-03-05 20:16:43 +010098 .num_elements = el_count, \
Loic Poulain855a70c2020-10-21 19:18:19 +020099 .irq_moderation_ms = 0, \
100 .irq = (ev_ring) + 1, \
101 .priority = 1, \
102 .mode = MHI_DB_BRST_DISABLE, \
103 .data_type = MHI_ER_CTRL, \
104 .hardware_event = false, \
105 .client_managed = false, \
106 .offload_channel = false, \
107 }
108
Loic Poulaineb967872021-01-04 17:14:52 +0100109#define MHI_CHANNEL_CONFIG_HW_UL(ch_num, ch_name, el_count, ev_ring) \
110 { \
111 .num = ch_num, \
112 .name = ch_name, \
113 .num_elements = el_count, \
114 .event_ring = ev_ring, \
115 .dir = DMA_TO_DEVICE, \
116 .ee_mask = BIT(MHI_EE_AMSS), \
117 .pollcfg = 0, \
118 .doorbell = MHI_DB_BRST_ENABLE, \
119 .lpm_notify = false, \
120 .offload_channel = false, \
121 .doorbell_mode_switch = true, \
122 } \
123
124#define MHI_CHANNEL_CONFIG_HW_DL(ch_num, ch_name, el_count, ev_ring) \
125 { \
126 .num = ch_num, \
127 .name = ch_name, \
128 .num_elements = el_count, \
129 .event_ring = ev_ring, \
130 .dir = DMA_FROM_DEVICE, \
131 .ee_mask = BIT(MHI_EE_AMSS), \
132 .pollcfg = 0, \
133 .doorbell = MHI_DB_BRST_ENABLE, \
134 .lpm_notify = false, \
135 .offload_channel = false, \
136 .doorbell_mode_switch = true, \
137 }
138
Loic Poulainac4bf602021-03-05 20:16:44 +0100139#define MHI_CHANNEL_CONFIG_UL_SBL(ch_num, ch_name, el_count, ev_ring) \
140 { \
141 .num = ch_num, \
142 .name = ch_name, \
143 .num_elements = el_count, \
144 .event_ring = ev_ring, \
145 .dir = DMA_TO_DEVICE, \
146 .ee_mask = BIT(MHI_EE_SBL), \
147 .pollcfg = 0, \
148 .doorbell = MHI_DB_BRST_DISABLE, \
149 .lpm_notify = false, \
150 .offload_channel = false, \
151 .doorbell_mode_switch = false, \
152 } \
153
154#define MHI_CHANNEL_CONFIG_DL_SBL(ch_num, ch_name, el_count, ev_ring) \
155 { \
156 .num = ch_num, \
157 .name = ch_name, \
158 .num_elements = el_count, \
159 .event_ring = ev_ring, \
160 .dir = DMA_FROM_DEVICE, \
161 .ee_mask = BIT(MHI_EE_SBL), \
162 .pollcfg = 0, \
163 .doorbell = MHI_DB_BRST_DISABLE, \
164 .lpm_notify = false, \
165 .offload_channel = false, \
166 .doorbell_mode_switch = false, \
167 }
168
Loic Poulain11134392021-04-07 10:41:00 +0200169#define MHI_CHANNEL_CONFIG_UL_FP(ch_num, ch_name, el_count, ev_ring) \
170 { \
171 .num = ch_num, \
172 .name = ch_name, \
173 .num_elements = el_count, \
174 .event_ring = ev_ring, \
175 .dir = DMA_TO_DEVICE, \
176 .ee_mask = BIT(MHI_EE_FP), \
177 .pollcfg = 0, \
178 .doorbell = MHI_DB_BRST_DISABLE, \
179 .lpm_notify = false, \
180 .offload_channel = false, \
181 .doorbell_mode_switch = false, \
182 } \
183
184#define MHI_CHANNEL_CONFIG_DL_FP(ch_num, ch_name, el_count, ev_ring) \
185 { \
186 .num = ch_num, \
187 .name = ch_name, \
188 .num_elements = el_count, \
189 .event_ring = ev_ring, \
190 .dir = DMA_FROM_DEVICE, \
191 .ee_mask = BIT(MHI_EE_FP), \
192 .pollcfg = 0, \
193 .doorbell = MHI_DB_BRST_DISABLE, \
194 .lpm_notify = false, \
195 .offload_channel = false, \
196 .doorbell_mode_switch = false, \
197 }
198
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100199#define MHI_EVENT_CONFIG_DATA(ev_ring, el_count) \
Loic Poulain855a70c2020-10-21 19:18:19 +0200200 { \
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100201 .num_elements = el_count, \
Loic Poulain855a70c2020-10-21 19:18:19 +0200202 .irq_moderation_ms = 5, \
203 .irq = (ev_ring) + 1, \
204 .priority = 1, \
205 .mode = MHI_DB_BRST_DISABLE, \
206 .data_type = MHI_ER_DATA, \
207 .hardware_event = false, \
208 .client_managed = false, \
209 .offload_channel = false, \
210 }
211
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100212#define MHI_EVENT_CONFIG_HW_DATA(ev_ring, el_count, ch_num) \
Loic Poulain855a70c2020-10-21 19:18:19 +0200213 { \
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100214 .num_elements = el_count, \
Loic Poulainec7513692021-01-04 17:14:59 +0100215 .irq_moderation_ms = 1, \
Loic Poulain855a70c2020-10-21 19:18:19 +0200216 .irq = (ev_ring) + 1, \
217 .priority = 1, \
218 .mode = MHI_DB_BRST_DISABLE, \
219 .data_type = MHI_ER_DATA, \
220 .hardware_event = true, \
221 .client_managed = false, \
222 .offload_channel = false, \
223 .channel = ch_num, \
224 }
225
226static const struct mhi_channel_config modem_qcom_v1_mhi_channels[] = {
Loic Poulain4da3d072021-01-04 17:14:58 +0100227 MHI_CHANNEL_CONFIG_UL(4, "DIAG", 16, 1),
228 MHI_CHANNEL_CONFIG_DL(5, "DIAG", 16, 1),
Loic Poulain855a70c2020-10-21 19:18:19 +0200229 MHI_CHANNEL_CONFIG_UL(12, "MBIM", 4, 0),
230 MHI_CHANNEL_CONFIG_DL(13, "MBIM", 4, 0),
231 MHI_CHANNEL_CONFIG_UL(14, "QMI", 4, 0),
232 MHI_CHANNEL_CONFIG_DL(15, "QMI", 4, 0),
233 MHI_CHANNEL_CONFIG_UL(20, "IPCR", 8, 0),
Loic Poulainb8a97f22021-07-16 13:21:06 +0530234 MHI_CHANNEL_CONFIG_DL_AUTOQUEUE(21, "IPCR", 8, 0),
Loic Poulain11134392021-04-07 10:41:00 +0200235 MHI_CHANNEL_CONFIG_UL_FP(34, "FIREHOSE", 32, 0),
236 MHI_CHANNEL_CONFIG_DL_FP(35, "FIREHOSE", 32, 0),
Loic Poulain4da3d072021-01-04 17:14:58 +0100237 MHI_CHANNEL_CONFIG_HW_UL(100, "IP_HW0", 128, 2),
238 MHI_CHANNEL_CONFIG_HW_DL(101, "IP_HW0", 128, 3),
Loic Poulain855a70c2020-10-21 19:18:19 +0200239};
240
Loic Poulainb91c3b32021-01-05 17:44:36 +0100241static struct mhi_event_config modem_qcom_v1_mhi_events[] = {
Loic Poulain855a70c2020-10-21 19:18:19 +0200242 /* first ring is control+data ring */
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100243 MHI_EVENT_CONFIG_CTRL(0, 64),
Loic Poulain4da3d072021-01-04 17:14:58 +0100244 /* DIAG dedicated event ring */
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100245 MHI_EVENT_CONFIG_DATA(1, 128),
Loic Poulain855a70c2020-10-21 19:18:19 +0200246 /* Hardware channels request dedicated hardware event rings */
Loic Poulain9ea48ef2021-03-05 20:16:43 +0100247 MHI_EVENT_CONFIG_HW_DATA(2, 1024, 100),
248 MHI_EVENT_CONFIG_HW_DATA(3, 2048, 101)
Loic Poulain855a70c2020-10-21 19:18:19 +0200249};
250
Manivannan Sadhasivam5630c102021-04-08 19:15:29 +0530251static const struct mhi_controller_config modem_qcom_v1_mhiv_config = {
Loic Poulain855a70c2020-10-21 19:18:19 +0200252 .max_channels = 128,
Loic Poulain84026a52021-01-04 17:14:57 +0100253 .timeout_ms = 8000,
Loic Poulain855a70c2020-10-21 19:18:19 +0200254 .num_channels = ARRAY_SIZE(modem_qcom_v1_mhi_channels),
255 .ch_cfg = modem_qcom_v1_mhi_channels,
256 .num_events = ARRAY_SIZE(modem_qcom_v1_mhi_events),
257 .event_cfg = modem_qcom_v1_mhi_events,
258};
259
Bhaumik Bhatt49d38eb2021-04-02 14:33:19 -0700260static const struct mhi_pci_dev_info mhi_qcom_sdx65_info = {
261 .name = "qcom-sdx65m",
262 .fw = "qcom/sdx65m/xbl.elf",
263 .edl = "qcom/sdx65m/edl.mbn",
264 .config = &modem_qcom_v1_mhiv_config,
265 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530266 .dma_data_width = 32,
267 .sideband_wake = false,
Bhaumik Bhatt49d38eb2021-04-02 14:33:19 -0700268};
269
Loic Poulain855a70c2020-10-21 19:18:19 +0200270static const struct mhi_pci_dev_info mhi_qcom_sdx55_info = {
271 .name = "qcom-sdx55m",
272 .fw = "qcom/sdx55m/sbl1.mbn",
273 .edl = "qcom/sdx55m/edl.mbn",
274 .config = &modem_qcom_v1_mhiv_config,
275 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
Richard Laing5c2c8532021-07-15 09:18:05 +1200276 .dma_data_width = 32,
Jakub Kicinskid2e11fd2021-07-31 09:14:46 -0700277 .mru_default = 32768,
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530278 .sideband_wake = false,
Loic Poulain855a70c2020-10-21 19:18:19 +0200279};
280
Loic Poulain59d05b72021-03-05 20:16:45 +0100281static const struct mhi_pci_dev_info mhi_qcom_sdx24_info = {
282 .name = "qcom-sdx24",
283 .edl = "qcom/prog_firehose_sdx24.mbn",
284 .config = &modem_qcom_v1_mhiv_config,
285 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530286 .dma_data_width = 32,
287 .sideband_wake = true,
Loic Poulain59d05b72021-03-05 20:16:45 +0100288};
289
Loic Poulainac4bf602021-03-05 20:16:44 +0100290static const struct mhi_channel_config mhi_quectel_em1xx_channels[] = {
291 MHI_CHANNEL_CONFIG_UL(0, "NMEA", 32, 0),
292 MHI_CHANNEL_CONFIG_DL(1, "NMEA", 32, 0),
293 MHI_CHANNEL_CONFIG_UL_SBL(2, "SAHARA", 32, 0),
294 MHI_CHANNEL_CONFIG_DL_SBL(3, "SAHARA", 32, 0),
295 MHI_CHANNEL_CONFIG_UL(4, "DIAG", 32, 1),
296 MHI_CHANNEL_CONFIG_DL(5, "DIAG", 32, 1),
297 MHI_CHANNEL_CONFIG_UL(12, "MBIM", 32, 0),
298 MHI_CHANNEL_CONFIG_DL(13, "MBIM", 32, 0),
299 MHI_CHANNEL_CONFIG_UL(32, "DUN", 32, 0),
300 MHI_CHANNEL_CONFIG_DL(33, "DUN", 32, 0),
Loic Poulain11134392021-04-07 10:41:00 +0200301 /* The EDL firmware is a flash-programmer exposing firehose protocol */
302 MHI_CHANNEL_CONFIG_UL_FP(34, "FIREHOSE", 32, 0),
303 MHI_CHANNEL_CONFIG_DL_FP(35, "FIREHOSE", 32, 0),
Loic Poulainac4bf602021-03-05 20:16:44 +0100304 MHI_CHANNEL_CONFIG_HW_UL(100, "IP_HW0_MBIM", 128, 2),
305 MHI_CHANNEL_CONFIG_HW_DL(101, "IP_HW0_MBIM", 128, 3),
306};
307
308static struct mhi_event_config mhi_quectel_em1xx_events[] = {
309 MHI_EVENT_CONFIG_CTRL(0, 128),
310 MHI_EVENT_CONFIG_DATA(1, 128),
311 MHI_EVENT_CONFIG_HW_DATA(2, 1024, 100),
312 MHI_EVENT_CONFIG_HW_DATA(3, 1024, 101)
313};
314
Manivannan Sadhasivam5630c102021-04-08 19:15:29 +0530315static const struct mhi_controller_config modem_quectel_em1xx_config = {
Loic Poulainac4bf602021-03-05 20:16:44 +0100316 .max_channels = 128,
317 .timeout_ms = 20000,
318 .num_channels = ARRAY_SIZE(mhi_quectel_em1xx_channels),
319 .ch_cfg = mhi_quectel_em1xx_channels,
320 .num_events = ARRAY_SIZE(mhi_quectel_em1xx_events),
321 .event_cfg = mhi_quectel_em1xx_events,
322};
323
324static const struct mhi_pci_dev_info mhi_quectel_em1xx_info = {
325 .name = "quectel-em1xx",
326 .edl = "qcom/prog_firehose_sdx24.mbn",
327 .config = &modem_quectel_em1xx_config,
328 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530329 .dma_data_width = 32,
330 .sideband_wake = true,
Loic Poulainac4bf602021-03-05 20:16:44 +0100331};
332
Jarvis Jiangaac42652021-04-08 02:55:24 -0700333static const struct mhi_channel_config mhi_foxconn_sdx55_channels[] = {
334 MHI_CHANNEL_CONFIG_UL(0, "LOOPBACK", 32, 0),
335 MHI_CHANNEL_CONFIG_DL(1, "LOOPBACK", 32, 0),
336 MHI_CHANNEL_CONFIG_UL(4, "DIAG", 32, 1),
337 MHI_CHANNEL_CONFIG_DL(5, "DIAG", 32, 1),
338 MHI_CHANNEL_CONFIG_UL(12, "MBIM", 32, 0),
339 MHI_CHANNEL_CONFIG_DL(13, "MBIM", 32, 0),
Jarvis Jiangc7711c22021-06-06 21:07:39 +0530340 MHI_CHANNEL_CONFIG_UL(32, "DUN", 32, 0),
341 MHI_CHANNEL_CONFIG_DL(33, "DUN", 32, 0),
Jarvis Jiangaac42652021-04-08 02:55:24 -0700342 MHI_CHANNEL_CONFIG_HW_UL(100, "IP_HW0_MBIM", 128, 2),
343 MHI_CHANNEL_CONFIG_HW_DL(101, "IP_HW0_MBIM", 128, 3),
344};
345
346static struct mhi_event_config mhi_foxconn_sdx55_events[] = {
347 MHI_EVENT_CONFIG_CTRL(0, 128),
348 MHI_EVENT_CONFIG_DATA(1, 128),
349 MHI_EVENT_CONFIG_HW_DATA(2, 1024, 100),
350 MHI_EVENT_CONFIG_HW_DATA(3, 1024, 101)
351};
352
Manivannan Sadhasivam5630c102021-04-08 19:15:29 +0530353static const struct mhi_controller_config modem_foxconn_sdx55_config = {
Jarvis Jiangaac42652021-04-08 02:55:24 -0700354 .max_channels = 128,
355 .timeout_ms = 20000,
356 .num_channels = ARRAY_SIZE(mhi_foxconn_sdx55_channels),
357 .ch_cfg = mhi_foxconn_sdx55_channels,
358 .num_events = ARRAY_SIZE(mhi_foxconn_sdx55_events),
359 .event_cfg = mhi_foxconn_sdx55_events,
360};
361
362static const struct mhi_pci_dev_info mhi_foxconn_sdx55_info = {
363 .name = "foxconn-sdx55",
364 .fw = "qcom/sdx55m/sbl1.mbn",
365 .edl = "qcom/sdx55m/edl.mbn",
366 .config = &modem_foxconn_sdx55_config,
367 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530368 .dma_data_width = 32,
369 .sideband_wake = false,
Jarvis Jiangaac42652021-04-08 02:55:24 -0700370};
371
ULRICH Thomas87693e02021-08-02 10:42:47 +0530372static const struct mhi_channel_config mhi_mv31_channels[] = {
373 MHI_CHANNEL_CONFIG_UL(0, "LOOPBACK", 64, 0),
374 MHI_CHANNEL_CONFIG_DL(1, "LOOPBACK", 64, 0),
375 /* MBIM Control Channel */
376 MHI_CHANNEL_CONFIG_UL(12, "MBIM", 64, 0),
377 MHI_CHANNEL_CONFIG_DL(13, "MBIM", 64, 0),
378 /* MBIM Data Channel */
379 MHI_CHANNEL_CONFIG_HW_UL(100, "IP_HW0_MBIM", 512, 2),
380 MHI_CHANNEL_CONFIG_HW_DL(101, "IP_HW0_MBIM", 512, 3),
381};
382
383static struct mhi_event_config mhi_mv31_events[] = {
384 MHI_EVENT_CONFIG_CTRL(0, 256),
385 MHI_EVENT_CONFIG_DATA(1, 256),
386 MHI_EVENT_CONFIG_HW_DATA(2, 1024, 100),
387 MHI_EVENT_CONFIG_HW_DATA(3, 1024, 101),
388};
389
390static const struct mhi_controller_config modem_mv31_config = {
391 .max_channels = 128,
392 .timeout_ms = 20000,
393 .num_channels = ARRAY_SIZE(mhi_mv31_channels),
394 .ch_cfg = mhi_mv31_channels,
395 .num_events = ARRAY_SIZE(mhi_mv31_events),
396 .event_cfg = mhi_mv31_events,
397};
398
399static const struct mhi_pci_dev_info mhi_mv31_info = {
400 .name = "cinterion-mv31",
401 .config = &modem_mv31_config,
402 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
403 .dma_data_width = 32,
404};
405
Thomas Perrot1dba0072021-12-16 13:42:27 +0530406static const struct mhi_channel_config mhi_sierra_em919x_channels[] = {
407 MHI_CHANNEL_CONFIG_UL_SBL(2, "SAHARA", 32, 0),
408 MHI_CHANNEL_CONFIG_DL_SBL(3, "SAHARA", 256, 0),
409 MHI_CHANNEL_CONFIG_UL(4, "DIAG", 32, 0),
410 MHI_CHANNEL_CONFIG_DL(5, "DIAG", 32, 0),
411 MHI_CHANNEL_CONFIG_UL(12, "MBIM", 128, 0),
412 MHI_CHANNEL_CONFIG_DL(13, "MBIM", 128, 0),
413 MHI_CHANNEL_CONFIG_UL(14, "QMI", 32, 0),
414 MHI_CHANNEL_CONFIG_DL(15, "QMI", 32, 0),
415 MHI_CHANNEL_CONFIG_UL(32, "DUN", 32, 0),
416 MHI_CHANNEL_CONFIG_DL(33, "DUN", 32, 0),
417 MHI_CHANNEL_CONFIG_HW_UL(100, "IP_HW0", 512, 1),
418 MHI_CHANNEL_CONFIG_HW_DL(101, "IP_HW0", 512, 2),
419};
420
421static struct mhi_event_config modem_sierra_em919x_mhi_events[] = {
422 /* first ring is control+data and DIAG ring */
423 MHI_EVENT_CONFIG_CTRL(0, 2048),
424 /* Hardware channels request dedicated hardware event rings */
425 MHI_EVENT_CONFIG_HW_DATA(1, 2048, 100),
426 MHI_EVENT_CONFIG_HW_DATA(2, 2048, 101)
427};
428
429static const struct mhi_controller_config modem_sierra_em919x_config = {
430 .max_channels = 128,
431 .timeout_ms = 24000,
432 .num_channels = ARRAY_SIZE(mhi_sierra_em919x_channels),
433 .ch_cfg = mhi_sierra_em919x_channels,
434 .num_events = ARRAY_SIZE(modem_sierra_em919x_mhi_events),
435 .event_cfg = modem_sierra_em919x_mhi_events,
436};
437
438static const struct mhi_pci_dev_info mhi_sierra_em919x_info = {
439 .name = "sierra-em919x",
440 .config = &modem_sierra_em919x_config,
441 .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
442 .dma_data_width = 32,
443 .sideband_wake = false,
444};
445
Loic Poulain855a70c2020-10-21 19:18:19 +0200446static const struct pci_device_id mhi_pci_id_table[] = {
Thomas Perrot1dba0072021-12-16 13:42:27 +0530447 /* EM919x (sdx55), use the same vid:pid as qcom-sdx55m */
448 { PCI_DEVICE_SUB(PCI_VENDOR_ID_QCOM, 0x0306, 0x18d7, 0x0200),
449 .driver_data = (kernel_ulong_t) &mhi_sierra_em919x_info },
Loic Poulain855a70c2020-10-21 19:18:19 +0200450 { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0306),
451 .driver_data = (kernel_ulong_t) &mhi_qcom_sdx55_info },
Loic Poulain59d05b72021-03-05 20:16:45 +0100452 { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0304),
453 .driver_data = (kernel_ulong_t) &mhi_qcom_sdx24_info },
Loic Poulainac4bf602021-03-05 20:16:44 +0100454 { PCI_DEVICE(0x1eac, 0x1001), /* EM120R-GL (sdx24) */
455 .driver_data = (kernel_ulong_t) &mhi_quectel_em1xx_info },
456 { PCI_DEVICE(0x1eac, 0x1002), /* EM160R-GL (sdx24) */
457 .driver_data = (kernel_ulong_t) &mhi_quectel_em1xx_info },
Bhaumik Bhatt49d38eb2021-04-02 14:33:19 -0700458 { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0308),
459 .driver_data = (kernel_ulong_t) &mhi_qcom_sdx65_info },
Jarvis Jiangaac42652021-04-08 02:55:24 -0700460 /* T99W175 (sdx55), Both for eSIM and Non-eSIM */
461 { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0ab),
462 .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx55_info },
463 /* DW5930e (sdx55), With eSIM, It's also T99W175 */
464 { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0b0),
465 .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx55_info },
466 /* DW5930e (sdx55), Non-eSIM, It's also T99W175 */
467 { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0b1),
468 .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx55_info },
Slark Xiaoc9825e62021-12-16 13:42:18 +0530469 /* T99W175 (sdx55), Based on Qualcomm new baseline */
470 { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0bf),
471 .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx55_info },
ULRICH Thomas87693e02021-08-02 10:42:47 +0530472 /* MV31-W (Cinterion) */
473 { PCI_DEVICE(0x1269, 0x00b3),
474 .driver_data = (kernel_ulong_t) &mhi_mv31_info },
Loic Poulain855a70c2020-10-21 19:18:19 +0200475 { }
476};
477MODULE_DEVICE_TABLE(pci, mhi_pci_id_table);
478
Loic Poulain8ccc3272021-01-04 17:14:53 +0100479enum mhi_pci_device_status {
480 MHI_PCI_DEV_STARTED,
Loic Poulaind3800c12021-03-05 20:16:48 +0100481 MHI_PCI_DEV_SUSPENDED,
Loic Poulain8ccc3272021-01-04 17:14:53 +0100482};
483
484struct mhi_pci_device {
485 struct mhi_controller mhi_cntrl;
486 struct pci_saved_state *pci_state;
Loic Poulain73893372021-01-04 17:14:54 +0100487 struct work_struct recovery_work;
Loic Poulain8562d4f2021-01-04 17:14:56 +0100488 struct timer_list health_check_timer;
Loic Poulain8ccc3272021-01-04 17:14:53 +0100489 unsigned long status;
490};
491
Loic Poulain855a70c2020-10-21 19:18:19 +0200492static int mhi_pci_read_reg(struct mhi_controller *mhi_cntrl,
493 void __iomem *addr, u32 *out)
494{
495 *out = readl(addr);
496 return 0;
497}
498
499static void mhi_pci_write_reg(struct mhi_controller *mhi_cntrl,
500 void __iomem *addr, u32 val)
501{
502 writel(val, addr);
503}
504
505static void mhi_pci_status_cb(struct mhi_controller *mhi_cntrl,
506 enum mhi_callback cb)
507{
Loic Poulain1e2f29b2021-02-03 17:39:42 +0100508 struct pci_dev *pdev = to_pci_dev(mhi_cntrl->cntrl_dev);
509
Loic Poulain855a70c2020-10-21 19:18:19 +0200510 /* Nothing to do for now */
Loic Poulain1e2f29b2021-02-03 17:39:42 +0100511 switch (cb) {
512 case MHI_CB_FATAL_ERROR:
513 case MHI_CB_SYS_ERROR:
514 dev_warn(&pdev->dev, "firmware crashed (%u)\n", cb);
Loic Poulaind3800c12021-03-05 20:16:48 +0100515 pm_runtime_forbid(&pdev->dev);
516 break;
517 case MHI_CB_EE_MISSION_MODE:
518 pm_runtime_allow(&pdev->dev);
Loic Poulain1e2f29b2021-02-03 17:39:42 +0100519 break;
520 default:
521 break;
522 }
Loic Poulain855a70c2020-10-21 19:18:19 +0200523}
524
Loic Poulaine3e5e6502021-03-05 20:16:46 +0100525static void mhi_pci_wake_get_nop(struct mhi_controller *mhi_cntrl, bool force)
526{
527 /* no-op */
528}
529
530static void mhi_pci_wake_put_nop(struct mhi_controller *mhi_cntrl, bool override)
531{
532 /* no-op */
533}
534
535static void mhi_pci_wake_toggle_nop(struct mhi_controller *mhi_cntrl)
536{
537 /* no-op */
538}
539
Loic Poulain8ccc3272021-01-04 17:14:53 +0100540static bool mhi_pci_is_alive(struct mhi_controller *mhi_cntrl)
541{
542 struct pci_dev *pdev = to_pci_dev(mhi_cntrl->cntrl_dev);
543 u16 vendor = 0;
544
545 if (pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor))
546 return false;
547
548 if (vendor == (u16) ~0 || vendor == 0)
549 return false;
550
551 return true;
552}
553
Loic Poulain855a70c2020-10-21 19:18:19 +0200554static int mhi_pci_claim(struct mhi_controller *mhi_cntrl,
555 unsigned int bar_num, u64 dma_mask)
556{
557 struct pci_dev *pdev = to_pci_dev(mhi_cntrl->cntrl_dev);
558 int err;
559
560 err = pci_assign_resource(pdev, bar_num);
561 if (err)
562 return err;
563
564 err = pcim_enable_device(pdev);
565 if (err) {
566 dev_err(&pdev->dev, "failed to enable pci device: %d\n", err);
567 return err;
568 }
569
570 err = pcim_iomap_regions(pdev, 1 << bar_num, pci_name(pdev));
571 if (err) {
572 dev_err(&pdev->dev, "failed to map pci region: %d\n", err);
573 return err;
574 }
575 mhi_cntrl->regs = pcim_iomap_table(pdev)[bar_num];
Bhaumik Bhatt3551a302021-08-02 10:42:52 +0530576 mhi_cntrl->reg_len = pci_resource_len(pdev, bar_num);
Loic Poulain855a70c2020-10-21 19:18:19 +0200577
Christophe JAILLETf3d13392021-12-16 13:42:22 +0530578 err = dma_set_mask_and_coherent(&pdev->dev, dma_mask);
Loic Poulain855a70c2020-10-21 19:18:19 +0200579 if (err) {
580 dev_err(&pdev->dev, "Cannot set proper DMA mask\n");
581 return err;
582 }
583
Loic Poulain855a70c2020-10-21 19:18:19 +0200584 pci_set_master(pdev);
585
586 return 0;
587}
588
589static int mhi_pci_get_irqs(struct mhi_controller *mhi_cntrl,
590 const struct mhi_controller_config *mhi_cntrl_config)
591{
592 struct pci_dev *pdev = to_pci_dev(mhi_cntrl->cntrl_dev);
593 int nr_vectors, i;
594 int *irq;
595
596 /*
597 * Alloc one MSI vector for BHI + one vector per event ring, ideally...
598 * No explicit pci_free_irq_vectors required, done by pcim_release.
599 */
600 mhi_cntrl->nr_irqs = 1 + mhi_cntrl_config->num_events;
601
602 nr_vectors = pci_alloc_irq_vectors(pdev, 1, mhi_cntrl->nr_irqs, PCI_IRQ_MSI);
603 if (nr_vectors < 0) {
604 dev_err(&pdev->dev, "Error allocating MSI vectors %d\n",
605 nr_vectors);
606 return nr_vectors;
607 }
608
609 if (nr_vectors < mhi_cntrl->nr_irqs) {
Loic Poulainb91c3b32021-01-05 17:44:36 +0100610 dev_warn(&pdev->dev, "using shared MSI\n");
611
612 /* Patch msi vectors, use only one (shared) */
613 for (i = 0; i < mhi_cntrl_config->num_events; i++)
614 mhi_cntrl_config->event_cfg[i].irq = 0;
615 mhi_cntrl->nr_irqs = 1;
Loic Poulain855a70c2020-10-21 19:18:19 +0200616 }
617
618 irq = devm_kcalloc(&pdev->dev, mhi_cntrl->nr_irqs, sizeof(int), GFP_KERNEL);
619 if (!irq)
620 return -ENOMEM;
621
622 for (i = 0; i < mhi_cntrl->nr_irqs; i++) {
623 int vector = i >= nr_vectors ? (nr_vectors - 1) : i;
624
625 irq[i] = pci_irq_vector(pdev, vector);
626 }
627
628 mhi_cntrl->irq = irq;
629
630 return 0;
631}
632
633static int mhi_pci_runtime_get(struct mhi_controller *mhi_cntrl)
634{
Loic Poulaind3800c12021-03-05 20:16:48 +0100635 /* The runtime_get() MHI callback means:
636 * Do whatever is requested to leave M3.
637 */
638 return pm_runtime_get(mhi_cntrl->cntrl_dev);
Loic Poulain855a70c2020-10-21 19:18:19 +0200639}
640
641static void mhi_pci_runtime_put(struct mhi_controller *mhi_cntrl)
642{
Loic Poulaind3800c12021-03-05 20:16:48 +0100643 /* The runtime_put() MHI callback means:
644 * Device can be moved in M3 state.
645 */
646 pm_runtime_mark_last_busy(mhi_cntrl->cntrl_dev);
647 pm_runtime_put(mhi_cntrl->cntrl_dev);
Loic Poulain855a70c2020-10-21 19:18:19 +0200648}
649
Loic Poulain73893372021-01-04 17:14:54 +0100650static void mhi_pci_recovery_work(struct work_struct *work)
651{
652 struct mhi_pci_device *mhi_pdev = container_of(work, struct mhi_pci_device,
653 recovery_work);
654 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
655 struct pci_dev *pdev = to_pci_dev(mhi_cntrl->cntrl_dev);
656 int err;
657
658 dev_warn(&pdev->dev, "device recovery started\n");
659
Loic Poulain8562d4f2021-01-04 17:14:56 +0100660 del_timer(&mhi_pdev->health_check_timer);
Loic Poulaind3800c12021-03-05 20:16:48 +0100661 pm_runtime_forbid(&pdev->dev);
Loic Poulain8562d4f2021-01-04 17:14:56 +0100662
Loic Poulain73893372021-01-04 17:14:54 +0100663 /* Clean up MHI state */
664 if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) {
665 mhi_power_down(mhi_cntrl, false);
666 mhi_unprepare_after_power_down(mhi_cntrl);
667 }
668
Loic Poulain73893372021-01-04 17:14:54 +0100669 pci_set_power_state(pdev, PCI_D0);
670 pci_load_saved_state(pdev, mhi_pdev->pci_state);
671 pci_restore_state(pdev);
672
673 if (!mhi_pci_is_alive(mhi_cntrl))
674 goto err_try_reset;
675
676 err = mhi_prepare_for_power_up(mhi_cntrl);
677 if (err)
678 goto err_try_reset;
679
680 err = mhi_sync_power_up(mhi_cntrl);
681 if (err)
682 goto err_unprepare;
683
684 dev_dbg(&pdev->dev, "Recovery completed\n");
685
686 set_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status);
Loic Poulain8562d4f2021-01-04 17:14:56 +0100687 mod_timer(&mhi_pdev->health_check_timer, jiffies + HEALTH_CHECK_PERIOD);
Loic Poulain73893372021-01-04 17:14:54 +0100688 return;
689
690err_unprepare:
691 mhi_unprepare_after_power_down(mhi_cntrl);
692err_try_reset:
693 if (pci_reset_function(pdev))
694 dev_err(&pdev->dev, "Recovery failed\n");
695}
696
Loic Poulain8562d4f2021-01-04 17:14:56 +0100697static void health_check(struct timer_list *t)
698{
699 struct mhi_pci_device *mhi_pdev = from_timer(mhi_pdev, t, health_check_timer);
700 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
701
Loic Poulaind3800c12021-03-05 20:16:48 +0100702 if (!test_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status) ||
703 test_bit(MHI_PCI_DEV_SUSPENDED, &mhi_pdev->status))
704 return;
705
Loic Poulain8562d4f2021-01-04 17:14:56 +0100706 if (!mhi_pci_is_alive(mhi_cntrl)) {
707 dev_err(mhi_cntrl->cntrl_dev, "Device died\n");
708 queue_work(system_long_wq, &mhi_pdev->recovery_work);
709 return;
710 }
711
712 /* reschedule in two seconds */
713 mod_timer(&mhi_pdev->health_check_timer, jiffies + HEALTH_CHECK_PERIOD);
714}
715
Loic Poulain855a70c2020-10-21 19:18:19 +0200716static int mhi_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
717{
718 const struct mhi_pci_dev_info *info = (struct mhi_pci_dev_info *) id->driver_data;
719 const struct mhi_controller_config *mhi_cntrl_config;
Loic Poulain8ccc3272021-01-04 17:14:53 +0100720 struct mhi_pci_device *mhi_pdev;
Loic Poulain855a70c2020-10-21 19:18:19 +0200721 struct mhi_controller *mhi_cntrl;
722 int err;
723
724 dev_dbg(&pdev->dev, "MHI PCI device found: %s\n", info->name);
725
Loic Poulain8ccc3272021-01-04 17:14:53 +0100726 /* mhi_pdev.mhi_cntrl must be zero-initialized */
727 mhi_pdev = devm_kzalloc(&pdev->dev, sizeof(*mhi_pdev), GFP_KERNEL);
728 if (!mhi_pdev)
Loic Poulain855a70c2020-10-21 19:18:19 +0200729 return -ENOMEM;
730
Loic Poulain73893372021-01-04 17:14:54 +0100731 INIT_WORK(&mhi_pdev->recovery_work, mhi_pci_recovery_work);
Loic Poulain8562d4f2021-01-04 17:14:56 +0100732 timer_setup(&mhi_pdev->health_check_timer, health_check, 0);
Loic Poulain73893372021-01-04 17:14:54 +0100733
Loic Poulain855a70c2020-10-21 19:18:19 +0200734 mhi_cntrl_config = info->config;
Loic Poulain8ccc3272021-01-04 17:14:53 +0100735 mhi_cntrl = &mhi_pdev->mhi_cntrl;
736
Loic Poulain855a70c2020-10-21 19:18:19 +0200737 mhi_cntrl->cntrl_dev = &pdev->dev;
738 mhi_cntrl->iova_start = 0;
Loic Poulain4ea6fa22020-12-02 09:12:30 +0100739 mhi_cntrl->iova_stop = (dma_addr_t)DMA_BIT_MASK(info->dma_data_width);
Loic Poulain855a70c2020-10-21 19:18:19 +0200740 mhi_cntrl->fw_image = info->fw;
741 mhi_cntrl->edl_image = info->edl;
742
743 mhi_cntrl->read_reg = mhi_pci_read_reg;
744 mhi_cntrl->write_reg = mhi_pci_write_reg;
745 mhi_cntrl->status_cb = mhi_pci_status_cb;
746 mhi_cntrl->runtime_get = mhi_pci_runtime_get;
747 mhi_cntrl->runtime_put = mhi_pci_runtime_put;
Richard Laing5c2c8532021-07-15 09:18:05 +1200748 mhi_cntrl->mru = info->mru_default;
Loic Poulain855a70c2020-10-21 19:18:19 +0200749
Bhaumik Bhatt56f6f4c2021-07-16 13:21:04 +0530750 if (info->sideband_wake) {
751 mhi_cntrl->wake_get = mhi_pci_wake_get_nop;
752 mhi_cntrl->wake_put = mhi_pci_wake_put_nop;
753 mhi_cntrl->wake_toggle = mhi_pci_wake_toggle_nop;
754 }
Loic Poulain855a70c2020-10-21 19:18:19 +0200755
756 err = mhi_pci_claim(mhi_cntrl, info->bar_num, DMA_BIT_MASK(info->dma_data_width));
757 if (err)
Loic Poulain8ccc3272021-01-04 17:14:53 +0100758 return err;
Loic Poulain855a70c2020-10-21 19:18:19 +0200759
760 err = mhi_pci_get_irqs(mhi_cntrl, mhi_cntrl_config);
761 if (err)
Loic Poulain8ccc3272021-01-04 17:14:53 +0100762 return err;
Loic Poulain855a70c2020-10-21 19:18:19 +0200763
Loic Poulain8ccc3272021-01-04 17:14:53 +0100764 pci_set_drvdata(pdev, mhi_pdev);
765
Loic Poulaine89878a2021-03-05 20:16:47 +0100766 /* Have stored pci confspace at hand for restore in sudden PCI error.
767 * cache the state locally and discard the PCI core one.
768 */
Loic Poulain8ccc3272021-01-04 17:14:53 +0100769 pci_save_state(pdev);
770 mhi_pdev->pci_state = pci_store_saved_state(pdev);
Loic Poulaine89878a2021-03-05 20:16:47 +0100771 pci_load_saved_state(pdev, NULL);
Loic Poulain855a70c2020-10-21 19:18:19 +0200772
Loic Poulainb012ee62021-01-04 17:14:55 +0100773 pci_enable_pcie_error_reporting(pdev);
774
Loic Poulain855a70c2020-10-21 19:18:19 +0200775 err = mhi_register_controller(mhi_cntrl, mhi_cntrl_config);
776 if (err)
Christophe JAILLETa25d1442021-06-21 21:46:13 +0530777 goto err_disable_reporting;
Loic Poulain855a70c2020-10-21 19:18:19 +0200778
779 /* MHI bus does not power up the controller by default */
780 err = mhi_prepare_for_power_up(mhi_cntrl);
781 if (err) {
782 dev_err(&pdev->dev, "failed to prepare MHI controller\n");
783 goto err_unregister;
784 }
785
786 err = mhi_sync_power_up(mhi_cntrl);
787 if (err) {
788 dev_err(&pdev->dev, "failed to power up MHI controller\n");
789 goto err_unprepare;
790 }
791
Loic Poulain8ccc3272021-01-04 17:14:53 +0100792 set_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status);
793
Loic Poulain8562d4f2021-01-04 17:14:56 +0100794 /* start health check */
795 mod_timer(&mhi_pdev->health_check_timer, jiffies + HEALTH_CHECK_PERIOD);
796
Loic Poulaind3800c12021-03-05 20:16:48 +0100797 /* Only allow runtime-suspend if PME capable (for wakeup) */
798 if (pci_pme_capable(pdev, PCI_D3hot)) {
799 pm_runtime_set_autosuspend_delay(&pdev->dev, 2000);
800 pm_runtime_use_autosuspend(&pdev->dev);
801 pm_runtime_mark_last_busy(&pdev->dev);
802 pm_runtime_put_noidle(&pdev->dev);
803 }
804
Loic Poulain855a70c2020-10-21 19:18:19 +0200805 return 0;
806
807err_unprepare:
808 mhi_unprepare_after_power_down(mhi_cntrl);
809err_unregister:
810 mhi_unregister_controller(mhi_cntrl);
Christophe JAILLETa25d1442021-06-21 21:46:13 +0530811err_disable_reporting:
812 pci_disable_pcie_error_reporting(pdev);
Loic Poulain855a70c2020-10-21 19:18:19 +0200813
814 return err;
815}
816
817static void mhi_pci_remove(struct pci_dev *pdev)
818{
Loic Poulain8ccc3272021-01-04 17:14:53 +0100819 struct mhi_pci_device *mhi_pdev = pci_get_drvdata(pdev);
820 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
Loic Poulain855a70c2020-10-21 19:18:19 +0200821
Wei Yongjun0b678082021-06-06 21:07:40 +0530822 del_timer_sync(&mhi_pdev->health_check_timer);
Loic Poulain73893372021-01-04 17:14:54 +0100823 cancel_work_sync(&mhi_pdev->recovery_work);
824
Loic Poulain8ccc3272021-01-04 17:14:53 +0100825 if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) {
826 mhi_power_down(mhi_cntrl, true);
827 mhi_unprepare_after_power_down(mhi_cntrl);
828 }
829
Loic Poulaind3800c12021-03-05 20:16:48 +0100830 /* balancing probe put_noidle */
831 if (pci_pme_capable(pdev, PCI_D3hot))
832 pm_runtime_get_noresume(&pdev->dev);
833
Loic Poulain855a70c2020-10-21 19:18:19 +0200834 mhi_unregister_controller(mhi_cntrl);
Christophe JAILLETa25d1442021-06-21 21:46:13 +0530835 pci_disable_pcie_error_reporting(pdev);
Loic Poulain855a70c2020-10-21 19:18:19 +0200836}
837
Loic Poulain757072a2021-03-19 16:50:37 +0100838static void mhi_pci_shutdown(struct pci_dev *pdev)
839{
840 mhi_pci_remove(pdev);
841 pci_set_power_state(pdev, PCI_D3hot);
842}
843
Loic Poulain8ccc3272021-01-04 17:14:53 +0100844static void mhi_pci_reset_prepare(struct pci_dev *pdev)
845{
846 struct mhi_pci_device *mhi_pdev = pci_get_drvdata(pdev);
847 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
848
849 dev_info(&pdev->dev, "reset\n");
850
Loic Poulain8562d4f2021-01-04 17:14:56 +0100851 del_timer(&mhi_pdev->health_check_timer);
852
Loic Poulain8ccc3272021-01-04 17:14:53 +0100853 /* Clean up MHI state */
854 if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) {
855 mhi_power_down(mhi_cntrl, false);
856 mhi_unprepare_after_power_down(mhi_cntrl);
857 }
858
859 /* cause internal device reset */
860 mhi_soc_reset(mhi_cntrl);
861
862 /* Be sure device reset has been executed */
863 msleep(MHI_POST_RESET_DELAY_MS);
864}
865
866static void mhi_pci_reset_done(struct pci_dev *pdev)
867{
868 struct mhi_pci_device *mhi_pdev = pci_get_drvdata(pdev);
869 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
870 int err;
871
872 /* Restore initial known working PCI state */
873 pci_load_saved_state(pdev, mhi_pdev->pci_state);
874 pci_restore_state(pdev);
875
876 /* Is device status available ? */
877 if (!mhi_pci_is_alive(mhi_cntrl)) {
878 dev_err(&pdev->dev, "reset failed\n");
879 return;
880 }
881
882 err = mhi_prepare_for_power_up(mhi_cntrl);
883 if (err) {
884 dev_err(&pdev->dev, "failed to prepare MHI controller\n");
885 return;
886 }
887
888 err = mhi_sync_power_up(mhi_cntrl);
889 if (err) {
890 dev_err(&pdev->dev, "failed to power up MHI controller\n");
891 mhi_unprepare_after_power_down(mhi_cntrl);
892 return;
893 }
894
895 set_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status);
Loic Poulain8562d4f2021-01-04 17:14:56 +0100896 mod_timer(&mhi_pdev->health_check_timer, jiffies + HEALTH_CHECK_PERIOD);
Loic Poulain8ccc3272021-01-04 17:14:53 +0100897}
898
Loic Poulainb012ee62021-01-04 17:14:55 +0100899static pci_ers_result_t mhi_pci_error_detected(struct pci_dev *pdev,
900 pci_channel_state_t state)
901{
902 struct mhi_pci_device *mhi_pdev = pci_get_drvdata(pdev);
903 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
904
905 dev_err(&pdev->dev, "PCI error detected, state = %u\n", state);
906
907 if (state == pci_channel_io_perm_failure)
908 return PCI_ERS_RESULT_DISCONNECT;
909
910 /* Clean up MHI state */
911 if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) {
912 mhi_power_down(mhi_cntrl, false);
913 mhi_unprepare_after_power_down(mhi_cntrl);
914 } else {
915 /* Nothing to do */
916 return PCI_ERS_RESULT_RECOVERED;
917 }
918
919 pci_disable_device(pdev);
920
921 return PCI_ERS_RESULT_NEED_RESET;
922}
923
924static pci_ers_result_t mhi_pci_slot_reset(struct pci_dev *pdev)
925{
926 if (pci_enable_device(pdev)) {
927 dev_err(&pdev->dev, "Cannot re-enable PCI device after reset.\n");
928 return PCI_ERS_RESULT_DISCONNECT;
929 }
930
931 return PCI_ERS_RESULT_RECOVERED;
932}
933
934static void mhi_pci_io_resume(struct pci_dev *pdev)
935{
936 struct mhi_pci_device *mhi_pdev = pci_get_drvdata(pdev);
937
938 dev_err(&pdev->dev, "PCI slot reset done\n");
939
940 queue_work(system_long_wq, &mhi_pdev->recovery_work);
941}
942
Loic Poulain8ccc3272021-01-04 17:14:53 +0100943static const struct pci_error_handlers mhi_pci_err_handler = {
Loic Poulainb012ee62021-01-04 17:14:55 +0100944 .error_detected = mhi_pci_error_detected,
945 .slot_reset = mhi_pci_slot_reset,
946 .resume = mhi_pci_io_resume,
Loic Poulain8ccc3272021-01-04 17:14:53 +0100947 .reset_prepare = mhi_pci_reset_prepare,
948 .reset_done = mhi_pci_reset_done,
949};
950
Loic Poulaind3800c12021-03-05 20:16:48 +0100951static int __maybe_unused mhi_pci_runtime_suspend(struct device *dev)
Loic Poulain73893372021-01-04 17:14:54 +0100952{
953 struct pci_dev *pdev = to_pci_dev(dev);
954 struct mhi_pci_device *mhi_pdev = dev_get_drvdata(dev);
955 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
Loic Poulaind3800c12021-03-05 20:16:48 +0100956 int err;
957
958 if (test_and_set_bit(MHI_PCI_DEV_SUSPENDED, &mhi_pdev->status))
959 return 0;
Loic Poulain73893372021-01-04 17:14:54 +0100960
Loic Poulain8562d4f2021-01-04 17:14:56 +0100961 del_timer(&mhi_pdev->health_check_timer);
Loic Poulain73893372021-01-04 17:14:54 +0100962 cancel_work_sync(&mhi_pdev->recovery_work);
963
Loic Poulaind3800c12021-03-05 20:16:48 +0100964 if (!test_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status) ||
965 mhi_cntrl->ee != MHI_EE_AMSS)
966 goto pci_suspend; /* Nothing to do at MHI level */
Loic Poulain73893372021-01-04 17:14:54 +0100967
Loic Poulaind3800c12021-03-05 20:16:48 +0100968 /* Transition to M3 state */
969 err = mhi_pm_suspend(mhi_cntrl);
970 if (err) {
971 dev_err(&pdev->dev, "failed to suspend device: %d\n", err);
972 clear_bit(MHI_PCI_DEV_SUSPENDED, &mhi_pdev->status);
973 return -EBUSY;
974 }
975
976pci_suspend:
Loic Poulain73893372021-01-04 17:14:54 +0100977 pci_disable_device(pdev);
978 pci_wake_from_d3(pdev, true);
Loic Poulain73893372021-01-04 17:14:54 +0100979
980 return 0;
981}
982
Loic Poulaind3800c12021-03-05 20:16:48 +0100983static int __maybe_unused mhi_pci_runtime_resume(struct device *dev)
Loic Poulain73893372021-01-04 17:14:54 +0100984{
985 struct pci_dev *pdev = to_pci_dev(dev);
986 struct mhi_pci_device *mhi_pdev = dev_get_drvdata(dev);
987 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
988 int err;
989
Loic Poulaind3800c12021-03-05 20:16:48 +0100990 if (!test_and_clear_bit(MHI_PCI_DEV_SUSPENDED, &mhi_pdev->status))
991 return 0;
992
Loic Poulain73893372021-01-04 17:14:54 +0100993 err = pci_enable_device(pdev);
994 if (err)
995 goto err_recovery;
996
Loic Poulaine89878a2021-03-05 20:16:47 +0100997 pci_set_master(pdev);
998 pci_wake_from_d3(pdev, false);
999
Loic Poulaind3800c12021-03-05 20:16:48 +01001000 if (!test_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status) ||
1001 mhi_cntrl->ee != MHI_EE_AMSS)
1002 return 0; /* Nothing to do at MHI level */
1003
Loic Poulain73893372021-01-04 17:14:54 +01001004 /* Exit M3, transition to M0 state */
1005 err = mhi_pm_resume(mhi_cntrl);
1006 if (err) {
1007 dev_err(&pdev->dev, "failed to resume device: %d\n", err);
1008 goto err_recovery;
1009 }
1010
Loic Poulain8562d4f2021-01-04 17:14:56 +01001011 /* Resume health check */
1012 mod_timer(&mhi_pdev->health_check_timer, jiffies + HEALTH_CHECK_PERIOD);
1013
Loic Poulaind3800c12021-03-05 20:16:48 +01001014 /* It can be a remote wakeup (no mhi runtime_get), update access time */
1015 pm_runtime_mark_last_busy(dev);
1016
Loic Poulain73893372021-01-04 17:14:54 +01001017 return 0;
1018
1019err_recovery:
Loic Poulaind3800c12021-03-05 20:16:48 +01001020 /* Do not fail to not mess up our PCI device state, the device likely
1021 * lost power (d3cold) and we simply need to reset it from the recovery
1022 * procedure, trigger the recovery asynchronously to prevent system
1023 * suspend exit delaying.
1024 */
Loic Poulain73893372021-01-04 17:14:54 +01001025 queue_work(system_long_wq, &mhi_pdev->recovery_work);
Loic Poulaind3800c12021-03-05 20:16:48 +01001026 pm_runtime_mark_last_busy(dev);
Loic Poulain73893372021-01-04 17:14:54 +01001027
Loic Poulaind3800c12021-03-05 20:16:48 +01001028 return 0;
1029}
1030
1031static int __maybe_unused mhi_pci_suspend(struct device *dev)
1032{
1033 pm_runtime_disable(dev);
1034 return mhi_pci_runtime_suspend(dev);
1035}
1036
1037static int __maybe_unused mhi_pci_resume(struct device *dev)
1038{
1039 int ret;
1040
1041 /* Depending the platform, device may have lost power (d3cold), we need
1042 * to resume it now to check its state and recover when necessary.
1043 */
1044 ret = mhi_pci_runtime_resume(dev);
1045 pm_runtime_enable(dev);
1046
1047 return ret;
Loic Poulain73893372021-01-04 17:14:54 +01001048}
1049
Loic Poulain5f0c2ee2021-06-06 21:07:41 +05301050static int __maybe_unused mhi_pci_freeze(struct device *dev)
1051{
1052 struct mhi_pci_device *mhi_pdev = dev_get_drvdata(dev);
1053 struct mhi_controller *mhi_cntrl = &mhi_pdev->mhi_cntrl;
1054
1055 /* We want to stop all operations, hibernation does not guarantee that
1056 * device will be in the same state as before freezing, especially if
1057 * the intermediate restore kernel reinitializes MHI device with new
1058 * context.
1059 */
1060 if (test_and_clear_bit(MHI_PCI_DEV_STARTED, &mhi_pdev->status)) {
Loic Poulainf77097e2021-12-16 13:42:19 +05301061 mhi_power_down(mhi_cntrl, true);
Loic Poulain5f0c2ee2021-06-06 21:07:41 +05301062 mhi_unprepare_after_power_down(mhi_cntrl);
1063 }
1064
1065 return 0;
1066}
1067
1068static int __maybe_unused mhi_pci_restore(struct device *dev)
1069{
1070 struct mhi_pci_device *mhi_pdev = dev_get_drvdata(dev);
1071
1072 /* Reinitialize the device */
1073 queue_work(system_long_wq, &mhi_pdev->recovery_work);
1074
1075 return 0;
1076}
1077
Loic Poulain73893372021-01-04 17:14:54 +01001078static const struct dev_pm_ops mhi_pci_pm_ops = {
Loic Poulaind3800c12021-03-05 20:16:48 +01001079 SET_RUNTIME_PM_OPS(mhi_pci_runtime_suspend, mhi_pci_runtime_resume, NULL)
Loic Poulain5f0c2ee2021-06-06 21:07:41 +05301080#ifdef CONFIG_PM_SLEEP
1081 .suspend = mhi_pci_suspend,
1082 .resume = mhi_pci_resume,
1083 .freeze = mhi_pci_freeze,
1084 .thaw = mhi_pci_restore,
1085 .restore = mhi_pci_restore,
1086#endif
Loic Poulain73893372021-01-04 17:14:54 +01001087};
1088
Loic Poulain855a70c2020-10-21 19:18:19 +02001089static struct pci_driver mhi_pci_driver = {
1090 .name = "mhi-pci-generic",
1091 .id_table = mhi_pci_id_table,
1092 .probe = mhi_pci_probe,
Loic Poulain8ccc3272021-01-04 17:14:53 +01001093 .remove = mhi_pci_remove,
Loic Poulain757072a2021-03-19 16:50:37 +01001094 .shutdown = mhi_pci_shutdown,
Loic Poulain8ccc3272021-01-04 17:14:53 +01001095 .err_handler = &mhi_pci_err_handler,
Loic Poulain73893372021-01-04 17:14:54 +01001096 .driver.pm = &mhi_pci_pm_ops
Loic Poulain855a70c2020-10-21 19:18:19 +02001097};
1098module_pci_driver(mhi_pci_driver);
1099
1100MODULE_AUTHOR("Loic Poulain <loic.poulain@linaro.org>");
1101MODULE_DESCRIPTION("Modem Host Interface (MHI) PCI controller driver");
1102MODULE_LICENSE("GPL");