blob: 8fd4a356a86ec0b1cff2b830c6c1bf78924682f0 [file] [log] [blame]
Bogdan Purcareata203e2de2018-01-17 18:36:44 +02001// SPDX-License-Identifier: GPL-2.0
J. German Riverabbf9d172015-03-05 19:29:10 -06002/*
3 * Freescale Management Complex (MC) bus driver
4 *
Stuart Yoder6466dac2016-10-26 11:20:33 -05005 * Copyright (C) 2014-2016 Freescale Semiconductor, Inc.
Bharat Bhushan1f86a002020-09-29 11:54:31 +03006 * Copyright 2019-2020 NXP
J. German Riverabbf9d172015-03-05 19:29:10 -06007 * Author: German Rivera <German.Rivera@freescale.com>
8 *
J. German Riverabbf9d172015-03-05 19:29:10 -06009 */
10
Stuart Yodera6737832016-10-26 11:20:29 -050011#define pr_fmt(fmt) "fsl-mc: " fmt
12
J. German Riverabbf9d172015-03-05 19:29:10 -060013#include <linux/module.h>
14#include <linux/of_device.h>
15#include <linux/of_address.h>
16#include <linux/ioport.h>
17#include <linux/slab.h>
18#include <linux/limits.h>
J. German Rivera660a24b2016-01-06 16:03:29 -060019#include <linux/bitops.h>
20#include <linux/msi.h>
Stuart Yoder5143ecf2016-08-23 17:14:18 -050021#include <linux/dma-mapping.h>
Makarand Pawagi63051662020-06-19 09:20:13 +010022#include <linux/acpi.h>
23#include <linux/iommu.h>
Stuart Yoderd4e75132016-08-23 17:14:23 -050024
Stuart Yoder243444f2016-08-23 17:13:30 -050025#include "fsl-mc-private.h"
J. German Riverabbf9d172015-03-05 19:29:10 -060026
Lee Jonesd71b57d2021-06-17 12:04:55 +010027/*
Stuart Yodere730d862016-08-23 17:13:40 -050028 * Default DMA mask for devices on a fsl-mc bus
29 */
30#define FSL_MC_DEFAULT_DMA_MASK (~0ULL)
31
Andrei Botila0544cb72020-03-19 09:12:31 -070032static struct fsl_mc_version mc_version;
33
Stuart Yodere730d862016-08-23 17:13:40 -050034/**
35 * struct fsl_mc - Private data of a "fsl,qoriq-mc" platform device
Stuart Yoder58caaac2016-10-26 11:20:32 -050036 * @root_mc_bus_dev: fsl-mc device representing the root DPRC
Stuart Yodere730d862016-08-23 17:13:40 -050037 * @num_translation_ranges: number of entries in addr_translation_ranges
38 * @translation_ranges: array of bus to system address translation ranges
Lee Jonesd71b57d2021-06-17 12:04:55 +010039 * @fsl_mc_regs: base address of register bank
Stuart Yodere730d862016-08-23 17:13:40 -050040 */
41struct fsl_mc {
42 struct fsl_mc_device *root_mc_bus_dev;
43 u8 num_translation_ranges;
44 struct fsl_mc_addr_translation_range *translation_ranges;
Laurentiu Tudor59b26d22020-12-16 18:10:15 +020045 void __iomem *fsl_mc_regs;
Stuart Yodere730d862016-08-23 17:13:40 -050046};
47
48/**
49 * struct fsl_mc_addr_translation_range - bus to system address translation
50 * range
51 * @mc_region_type: Type of MC region for the range being translated
52 * @start_mc_offset: Start MC offset of the range being translated
53 * @end_mc_offset: MC offset of the first byte after the range (last MC
54 * offset of the range is end_mc_offset - 1)
55 * @start_phys_addr: system physical address corresponding to start_mc_addr
56 */
57struct fsl_mc_addr_translation_range {
58 enum dprc_region_type mc_region_type;
59 u64 start_mc_offset;
60 u64 end_mc_offset;
61 phys_addr_t start_phys_addr;
62};
63
Laurentiu Tudor74abd1f2020-11-05 17:30:50 +020064#define FSL_MC_GCR1 0x0
65#define GCR1_P1_STOP BIT(31)
Laurentiu Tudorc40cbad2021-07-15 17:07:13 +030066#define GCR1_P2_STOP BIT(30)
Laurentiu Tudor74abd1f2020-11-05 17:30:50 +020067
Makarand Pawagi63051662020-06-19 09:20:13 +010068#define FSL_MC_FAPR 0x28
69#define MC_FAPR_PL BIT(18)
70#define MC_FAPR_BMT BIT(17)
71
Laurentiu Tudor8990f962021-07-15 17:07:18 +030072static phys_addr_t mc_portal_base_phys_addr;
73
Stuart Yodere730d862016-08-23 17:13:40 -050074/**
J. German Riverabbf9d172015-03-05 19:29:10 -060075 * fsl_mc_bus_match - device to driver matching callback
Stuart Yoder58caaac2016-10-26 11:20:32 -050076 * @dev: the fsl-mc device to match against
77 * @drv: the device driver to search for matching fsl-mc object type
J. German Riverabbf9d172015-03-05 19:29:10 -060078 * structures
79 *
80 * Returns 1 on success, 0 otherwise.
81 */
82static int fsl_mc_bus_match(struct device *dev, struct device_driver *drv)
83{
Stuart Yoder57538af2016-06-22 16:40:44 -050084 const struct fsl_mc_device_id *id;
J. German Riverabbf9d172015-03-05 19:29:10 -060085 struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);
86 struct fsl_mc_driver *mc_drv = to_fsl_mc_driver(drv);
87 bool found = false;
88
Bharat Bhushan1f86a002020-09-29 11:54:31 +030089 /* When driver_override is set, only bind to the matching driver */
90 if (mc_dev->driver_override) {
91 found = !strcmp(mc_dev->driver_override, mc_drv->driver.name);
92 goto out;
93 }
94
J. German Riverabbf9d172015-03-05 19:29:10 -060095 if (!mc_drv->match_id_table)
96 goto out;
97
98 /*
99 * If the object is not 'plugged' don't match.
100 * Only exception is the root DPRC, which is a special case.
101 */
Laurentiu Tudor0cf9f502017-06-27 17:41:24 +0300102 if ((mc_dev->obj_desc.state & FSL_MC_OBJ_STATE_PLUGGED) == 0 &&
Itai Katzb55f00c2015-10-04 10:09:51 +0300103 !fsl_mc_is_root_dprc(&mc_dev->dev))
J. German Riverabbf9d172015-03-05 19:29:10 -0600104 goto out;
105
106 /*
107 * Traverse the match_id table of the given driver, trying to find
Stuart Yoder58caaac2016-10-26 11:20:32 -0500108 * a matching for the given device.
J. German Riverabbf9d172015-03-05 19:29:10 -0600109 */
110 for (id = mc_drv->match_id_table; id->vendor != 0x0; id++) {
111 if (id->vendor == mc_dev->obj_desc.vendor &&
J. German Rivera3b0a9b12015-03-27 16:01:09 -0500112 strcmp(id->obj_type, mc_dev->obj_desc.type) == 0) {
Itai Katz9787d4e2016-04-11 11:55:40 -0500113 found = true;
J. German Rivera3b0a9b12015-03-27 16:01:09 -0500114
J. German Riverabbf9d172015-03-05 19:29:10 -0600115 break;
116 }
117 }
118
119out:
120 dev_dbg(dev, "%smatched\n", found ? "" : "not ");
121 return found;
122}
123
Lee Jonesd71b57d2021-06-17 12:04:55 +0100124/*
J. German Riverabbf9d172015-03-05 19:29:10 -0600125 * fsl_mc_bus_uevent - callback invoked when a device is added
126 */
127static int fsl_mc_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
128{
Stuart Yoderd568b762016-06-22 16:40:43 -0500129 struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);
130
131 if (add_uevent_var(env, "MODALIAS=fsl-mc:v%08Xd%s",
132 mc_dev->obj_desc.vendor,
133 mc_dev->obj_desc.type))
134 return -ENOMEM;
135
J. German Riverabbf9d172015-03-05 19:29:10 -0600136 return 0;
137}
138
Nipun Guptaa259ed12018-09-10 19:19:19 +0530139static int fsl_mc_dma_configure(struct device *dev)
140{
141 struct device *dma_dev = dev;
Lorenzo Pieralisia081bd42020-06-19 09:20:08 +0100142 struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);
143 u32 input_id = mc_dev->icid;
Nipun Guptaa259ed12018-09-10 19:19:19 +0530144
145 while (dev_is_fsl_mc(dma_dev))
146 dma_dev = dma_dev->parent;
147
Makarand Pawagi63051662020-06-19 09:20:13 +0100148 if (dev_of_node(dma_dev))
149 return of_dma_configure_id(dev, dma_dev->of_node, 0, &input_id);
150
151 return acpi_dma_configure_id(dev, DEV_DMA_COHERENT, &input_id);
Nipun Guptaa259ed12018-09-10 19:19:19 +0530152}
153
Stuart Yoder3d579c32016-06-22 16:40:42 -0500154static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
155 char *buf)
156{
157 struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);
158
159 return sprintf(buf, "fsl-mc:v%08Xd%s\n", mc_dev->obj_desc.vendor,
160 mc_dev->obj_desc.type);
161}
162static DEVICE_ATTR_RO(modalias);
163
Bharat Bhushan1f86a002020-09-29 11:54:31 +0300164static ssize_t driver_override_store(struct device *dev,
165 struct device_attribute *attr,
166 const char *buf, size_t count)
167{
168 struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);
169 char *driver_override, *old = mc_dev->driver_override;
170 char *cp;
171
172 if (WARN_ON(dev->bus != &fsl_mc_bus_type))
173 return -EINVAL;
174
175 if (count >= (PAGE_SIZE - 1))
176 return -EINVAL;
177
178 driver_override = kstrndup(buf, count, GFP_KERNEL);
179 if (!driver_override)
180 return -ENOMEM;
181
182 cp = strchr(driver_override, '\n');
183 if (cp)
184 *cp = '\0';
185
186 if (strlen(driver_override)) {
187 mc_dev->driver_override = driver_override;
188 } else {
189 kfree(driver_override);
190 mc_dev->driver_override = NULL;
191 }
192
193 kfree(old);
194
195 return count;
196}
197
198static ssize_t driver_override_show(struct device *dev,
199 struct device_attribute *attr, char *buf)
200{
201 struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);
202
203 return snprintf(buf, PAGE_SIZE, "%s\n", mc_dev->driver_override);
204}
205static DEVICE_ATTR_RW(driver_override);
206
Stuart Yoder3d579c32016-06-22 16:40:42 -0500207static struct attribute *fsl_mc_dev_attrs[] = {
208 &dev_attr_modalias.attr,
Bharat Bhushan1f86a002020-09-29 11:54:31 +0300209 &dev_attr_driver_override.attr,
Stuart Yoder3d579c32016-06-22 16:40:42 -0500210 NULL,
211};
212
Wei Yongjuna71a6d92016-08-28 16:19:29 +0000213ATTRIBUTE_GROUPS(fsl_mc_dev);
Stuart Yoder3d579c32016-06-22 16:40:42 -0500214
Ioana Ciornei3f609942021-01-14 19:07:51 +0200215static int scan_fsl_mc_bus(struct device *dev, void *data)
216{
217 struct fsl_mc_device *root_mc_dev;
218 struct fsl_mc_bus *root_mc_bus;
219
220 if (!fsl_mc_is_root_dprc(dev))
221 goto exit;
222
223 root_mc_dev = to_fsl_mc_device(dev);
224 root_mc_bus = to_fsl_mc_bus(root_mc_dev);
225 mutex_lock(&root_mc_bus->scan_mutex);
Laurentiu Tudoraa0a1ae2021-07-15 17:07:11 +0300226 dprc_scan_objects(root_mc_dev, false);
Ioana Ciornei3f609942021-01-14 19:07:51 +0200227 mutex_unlock(&root_mc_bus->scan_mutex);
228
229exit:
230 return 0;
231}
232
233static ssize_t rescan_store(struct bus_type *bus,
234 const char *buf, size_t count)
235{
236 unsigned long val;
237
238 if (kstrtoul(buf, 0, &val) < 0)
239 return -EINVAL;
240
241 if (val)
242 bus_for_each_dev(bus, NULL, NULL, scan_fsl_mc_bus);
243
244 return count;
245}
246static BUS_ATTR_WO(rescan);
247
Ioana Ciornei296c6262021-01-14 19:07:52 +0200248static int fsl_mc_bus_set_autorescan(struct device *dev, void *data)
249{
250 struct fsl_mc_device *root_mc_dev;
251 unsigned long val;
252 char *buf = data;
253
254 if (!fsl_mc_is_root_dprc(dev))
255 goto exit;
256
257 root_mc_dev = to_fsl_mc_device(dev);
258
259 if (kstrtoul(buf, 0, &val) < 0)
260 return -EINVAL;
261
262 if (val)
263 enable_dprc_irq(root_mc_dev);
264 else
265 disable_dprc_irq(root_mc_dev);
266
267exit:
268 return 0;
269}
270
271static int fsl_mc_bus_get_autorescan(struct device *dev, void *data)
272{
273 struct fsl_mc_device *root_mc_dev;
274 char *buf = data;
275
276 if (!fsl_mc_is_root_dprc(dev))
277 goto exit;
278
279 root_mc_dev = to_fsl_mc_device(dev);
280
281 sprintf(buf, "%d\n", get_dprc_irq_state(root_mc_dev));
282exit:
283 return 0;
284}
285
286static ssize_t autorescan_store(struct bus_type *bus,
287 const char *buf, size_t count)
288{
289 bus_for_each_dev(bus, NULL, (void *)buf, fsl_mc_bus_set_autorescan);
290
291 return count;
292}
293
294static ssize_t autorescan_show(struct bus_type *bus, char *buf)
295{
296 bus_for_each_dev(bus, NULL, (void *)buf, fsl_mc_bus_get_autorescan);
297 return strlen(buf);
298}
299
300static BUS_ATTR_RW(autorescan);
301
Ioana Ciornei3f609942021-01-14 19:07:51 +0200302static struct attribute *fsl_mc_bus_attrs[] = {
303 &bus_attr_rescan.attr,
Ioana Ciornei296c6262021-01-14 19:07:52 +0200304 &bus_attr_autorescan.attr,
Ioana Ciornei3f609942021-01-14 19:07:51 +0200305 NULL,
306};
307
308ATTRIBUTE_GROUPS(fsl_mc_bus);
309
J. German Riverabbf9d172015-03-05 19:29:10 -0600310struct bus_type fsl_mc_bus_type = {
311 .name = "fsl-mc",
312 .match = fsl_mc_bus_match,
313 .uevent = fsl_mc_bus_uevent,
Nipun Guptaa259ed12018-09-10 19:19:19 +0530314 .dma_configure = fsl_mc_dma_configure,
Stuart Yoder3d579c32016-06-22 16:40:42 -0500315 .dev_groups = fsl_mc_dev_groups,
Ioana Ciornei3f609942021-01-14 19:07:51 +0200316 .bus_groups = fsl_mc_bus_groups,
J. German Riverabbf9d172015-03-05 19:29:10 -0600317};
318EXPORT_SYMBOL_GPL(fsl_mc_bus_type);
319
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200320struct device_type fsl_mc_bus_dprc_type = {
321 .name = "fsl_mc_bus_dprc"
322};
Ioana Ciornei6fff8c02019-10-31 01:18:28 +0200323EXPORT_SYMBOL_GPL(fsl_mc_bus_dprc_type);
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200324
325struct device_type fsl_mc_bus_dpni_type = {
326 .name = "fsl_mc_bus_dpni"
327};
Ioana Ciornei6fff8c02019-10-31 01:18:28 +0200328EXPORT_SYMBOL_GPL(fsl_mc_bus_dpni_type);
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200329
330struct device_type fsl_mc_bus_dpio_type = {
331 .name = "fsl_mc_bus_dpio"
332};
Ioana Ciornei6fff8c02019-10-31 01:18:28 +0200333EXPORT_SYMBOL_GPL(fsl_mc_bus_dpio_type);
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200334
335struct device_type fsl_mc_bus_dpsw_type = {
336 .name = "fsl_mc_bus_dpsw"
337};
Ioana Ciornei6fff8c02019-10-31 01:18:28 +0200338EXPORT_SYMBOL_GPL(fsl_mc_bus_dpsw_type);
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200339
340struct device_type fsl_mc_bus_dpbp_type = {
341 .name = "fsl_mc_bus_dpbp"
342};
Ioana Ciornei6fff8c02019-10-31 01:18:28 +0200343EXPORT_SYMBOL_GPL(fsl_mc_bus_dpbp_type);
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200344
345struct device_type fsl_mc_bus_dpcon_type = {
346 .name = "fsl_mc_bus_dpcon"
347};
Ioana Ciornei6fff8c02019-10-31 01:18:28 +0200348EXPORT_SYMBOL_GPL(fsl_mc_bus_dpcon_type);
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200349
350struct device_type fsl_mc_bus_dpmcp_type = {
351 .name = "fsl_mc_bus_dpmcp"
352};
Ioana Ciornei6fff8c02019-10-31 01:18:28 +0200353EXPORT_SYMBOL_GPL(fsl_mc_bus_dpmcp_type);
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200354
355struct device_type fsl_mc_bus_dpmac_type = {
356 .name = "fsl_mc_bus_dpmac"
357};
Ioana Ciornei6fff8c02019-10-31 01:18:28 +0200358EXPORT_SYMBOL_GPL(fsl_mc_bus_dpmac_type);
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200359
360struct device_type fsl_mc_bus_dprtc_type = {
361 .name = "fsl_mc_bus_dprtc"
362};
Ioana Ciornei6fff8c02019-10-31 01:18:28 +0200363EXPORT_SYMBOL_GPL(fsl_mc_bus_dprtc_type);
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200364
Horia Geantăe9158b32018-09-12 11:59:26 +0300365struct device_type fsl_mc_bus_dpseci_type = {
366 .name = "fsl_mc_bus_dpseci"
367};
Ioana Ciornei6fff8c02019-10-31 01:18:28 +0200368EXPORT_SYMBOL_GPL(fsl_mc_bus_dpseci_type);
Horia Geantăe9158b32018-09-12 11:59:26 +0300369
Ioana Ciorneia3b7a582020-07-17 18:47:58 +0300370struct device_type fsl_mc_bus_dpdmux_type = {
371 .name = "fsl_mc_bus_dpdmux"
372};
373EXPORT_SYMBOL_GPL(fsl_mc_bus_dpdmux_type);
374
375struct device_type fsl_mc_bus_dpdcei_type = {
376 .name = "fsl_mc_bus_dpdcei"
377};
378EXPORT_SYMBOL_GPL(fsl_mc_bus_dpdcei_type);
379
380struct device_type fsl_mc_bus_dpaiop_type = {
381 .name = "fsl_mc_bus_dpaiop"
382};
383EXPORT_SYMBOL_GPL(fsl_mc_bus_dpaiop_type);
384
385struct device_type fsl_mc_bus_dpci_type = {
386 .name = "fsl_mc_bus_dpci"
387};
388EXPORT_SYMBOL_GPL(fsl_mc_bus_dpci_type);
389
390struct device_type fsl_mc_bus_dpdmai_type = {
391 .name = "fsl_mc_bus_dpdmai"
392};
393EXPORT_SYMBOL_GPL(fsl_mc_bus_dpdmai_type);
394
Ioana Ciorneie70ba1b2021-02-08 19:09:48 +0200395struct device_type fsl_mc_bus_dpdbg_type = {
396 .name = "fsl_mc_bus_dpdbg"
397};
398EXPORT_SYMBOL_GPL(fsl_mc_bus_dpdbg_type);
399
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200400static struct device_type *fsl_mc_get_device_type(const char *type)
401{
402 static const struct {
403 struct device_type *dev_type;
404 const char *type;
405 } dev_types[] = {
406 { &fsl_mc_bus_dprc_type, "dprc" },
407 { &fsl_mc_bus_dpni_type, "dpni" },
408 { &fsl_mc_bus_dpio_type, "dpio" },
409 { &fsl_mc_bus_dpsw_type, "dpsw" },
410 { &fsl_mc_bus_dpbp_type, "dpbp" },
411 { &fsl_mc_bus_dpcon_type, "dpcon" },
412 { &fsl_mc_bus_dpmcp_type, "dpmcp" },
413 { &fsl_mc_bus_dpmac_type, "dpmac" },
414 { &fsl_mc_bus_dprtc_type, "dprtc" },
Horia Geantăe9158b32018-09-12 11:59:26 +0300415 { &fsl_mc_bus_dpseci_type, "dpseci" },
Ioana Ciorneia3b7a582020-07-17 18:47:58 +0300416 { &fsl_mc_bus_dpdmux_type, "dpdmux" },
417 { &fsl_mc_bus_dpdcei_type, "dpdcei" },
418 { &fsl_mc_bus_dpaiop_type, "dpaiop" },
419 { &fsl_mc_bus_dpci_type, "dpci" },
420 { &fsl_mc_bus_dpdmai_type, "dpdmai" },
Ioana Ciorneie70ba1b2021-02-08 19:09:48 +0200421 { &fsl_mc_bus_dpdbg_type, "dpdbg" },
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200422 { NULL, NULL }
423 };
424 int i;
425
426 for (i = 0; dev_types[i].dev_type; i++)
427 if (!strcmp(dev_types[i].type, type))
428 return dev_types[i].dev_type;
429
430 return NULL;
431}
432
J. German Riverabbf9d172015-03-05 19:29:10 -0600433static int fsl_mc_driver_probe(struct device *dev)
434{
435 struct fsl_mc_driver *mc_drv;
436 struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);
437 int error;
438
J. German Riverabbf9d172015-03-05 19:29:10 -0600439 mc_drv = to_fsl_mc_driver(dev->driver);
J. German Riverabbf9d172015-03-05 19:29:10 -0600440
441 error = mc_drv->probe(mc_dev);
442 if (error < 0) {
Nipun Gupta9c70dbd2017-12-11 21:15:38 +0530443 if (error != -EPROBE_DEFER)
444 dev_err(dev, "%s failed: %d\n", __func__, error);
J. German Riverabbf9d172015-03-05 19:29:10 -0600445 return error;
446 }
447
448 return 0;
449}
450
451static int fsl_mc_driver_remove(struct device *dev)
452{
453 struct fsl_mc_driver *mc_drv = to_fsl_mc_driver(dev->driver);
454 struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);
455 int error;
456
J. German Riverabbf9d172015-03-05 19:29:10 -0600457 error = mc_drv->remove(mc_dev);
458 if (error < 0) {
Stuart Yoder66fcc742016-10-26 11:20:30 -0500459 dev_err(dev, "%s failed: %d\n", __func__, error);
J. German Riverabbf9d172015-03-05 19:29:10 -0600460 return error;
461 }
462
463 return 0;
464}
465
466static void fsl_mc_driver_shutdown(struct device *dev)
467{
468 struct fsl_mc_driver *mc_drv = to_fsl_mc_driver(dev->driver);
469 struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);
470
471 mc_drv->shutdown(mc_dev);
472}
473
Lee Jonesd71b57d2021-06-17 12:04:55 +0100474/*
J. German Riverabbf9d172015-03-05 19:29:10 -0600475 * __fsl_mc_driver_register - registers a child device driver with the
476 * MC bus
477 *
478 * This function is implicitly invoked from the registration function of
479 * fsl_mc device drivers, which is generated by the
480 * module_fsl_mc_driver() macro.
481 */
482int __fsl_mc_driver_register(struct fsl_mc_driver *mc_driver,
483 struct module *owner)
484{
485 int error;
486
487 mc_driver->driver.owner = owner;
488 mc_driver->driver.bus = &fsl_mc_bus_type;
489
490 if (mc_driver->probe)
491 mc_driver->driver.probe = fsl_mc_driver_probe;
492
493 if (mc_driver->remove)
494 mc_driver->driver.remove = fsl_mc_driver_remove;
495
496 if (mc_driver->shutdown)
497 mc_driver->driver.shutdown = fsl_mc_driver_shutdown;
498
499 error = driver_register(&mc_driver->driver);
500 if (error < 0) {
501 pr_err("driver_register() failed for %s: %d\n",
502 mc_driver->driver.name, error);
503 return error;
504 }
505
J. German Riverabbf9d172015-03-05 19:29:10 -0600506 return 0;
507}
508EXPORT_SYMBOL_GPL(__fsl_mc_driver_register);
509
Lee Jonesd71b57d2021-06-17 12:04:55 +0100510/*
J. German Riverabbf9d172015-03-05 19:29:10 -0600511 * fsl_mc_driver_unregister - unregisters a device driver from the
512 * MC bus
513 */
514void fsl_mc_driver_unregister(struct fsl_mc_driver *mc_driver)
515{
516 driver_unregister(&mc_driver->driver);
517}
518EXPORT_SYMBOL_GPL(fsl_mc_driver_unregister);
519
Itai Katz14f92802015-10-04 10:09:50 +0300520/**
Laurentiu Tudor3ea73a42017-06-27 17:41:31 +0300521 * mc_get_version() - Retrieves the Management Complex firmware
522 * version information
523 * @mc_io: Pointer to opaque I/O object
524 * @cmd_flags: Command flags; one or more of 'MC_CMD_FLAG_'
525 * @mc_ver_info: Returned version information structure
526 *
527 * Return: '0' on Success; Error code otherwise.
528 */
529static int mc_get_version(struct fsl_mc_io *mc_io,
530 u32 cmd_flags,
Andrei Botila0544cb72020-03-19 09:12:31 -0700531 struct fsl_mc_version *mc_ver_info)
Laurentiu Tudor3ea73a42017-06-27 17:41:31 +0300532{
Ioana Ciornei5b04ced2018-03-15 12:05:31 -0500533 struct fsl_mc_command cmd = { 0 };
Laurentiu Tudor3ea73a42017-06-27 17:41:31 +0300534 struct dpmng_rsp_get_version *rsp_params;
535 int err;
536
537 /* prepare command */
538 cmd.header = mc_encode_cmd_header(DPMNG_CMDID_GET_VERSION,
539 cmd_flags,
540 0);
541
542 /* send command to mc*/
543 err = mc_send_command(mc_io, &cmd);
544 if (err)
545 return err;
546
547 /* retrieve response parameters */
548 rsp_params = (struct dpmng_rsp_get_version *)cmd.params;
549 mc_ver_info->revision = le32_to_cpu(rsp_params->revision);
550 mc_ver_info->major = le32_to_cpu(rsp_params->version_major);
551 mc_ver_info->minor = le32_to_cpu(rsp_params->version_minor);
552
553 return 0;
554}
555
556/**
Andrei Botila0544cb72020-03-19 09:12:31 -0700557 * fsl_mc_get_version - function to retrieve the MC f/w version information
558 *
559 * Return: mc version when called after fsl-mc-bus probe; NULL otherwise.
560 */
561struct fsl_mc_version *fsl_mc_get_version(void)
562{
563 if (mc_version.major)
564 return &mc_version;
565
566 return NULL;
567}
568EXPORT_SYMBOL_GPL(fsl_mc_get_version);
569
Lee Jonesd71b57d2021-06-17 12:04:55 +0100570/*
Ramiro Oliveiraf86a1802016-09-30 15:01:21 +0100571 * fsl_mc_get_root_dprc - function to traverse to the root dprc
572 */
Diana Craciun998fb7b2020-06-19 09:20:12 +0100573void fsl_mc_get_root_dprc(struct device *dev,
574 struct device **root_dprc_dev)
Itai Katze4ea40f2015-10-04 10:09:52 +0300575{
Laurentiu Tudora385dd72017-11-17 15:38:32 +0200576 if (!dev) {
Itai Katze4ea40f2015-10-04 10:09:52 +0300577 *root_dprc_dev = NULL;
Laurentiu Tudora385dd72017-11-17 15:38:32 +0200578 } else if (!dev_is_fsl_mc(dev)) {
Itai Katze4ea40f2015-10-04 10:09:52 +0300579 *root_dprc_dev = NULL;
580 } else {
581 *root_dprc_dev = dev;
Nipun Guptadf5e9b52016-06-29 22:44:39 +0530582 while (dev_is_fsl_mc((*root_dprc_dev)->parent))
Itai Katze4ea40f2015-10-04 10:09:52 +0300583 *root_dprc_dev = (*root_dprc_dev)->parent;
584 }
585}
586
Itai Katz9529d162016-04-11 11:55:55 -0500587static int get_dprc_attr(struct fsl_mc_io *mc_io,
588 int container_id, struct dprc_attributes *attr)
J. German Riverabbf9d172015-03-05 19:29:10 -0600589{
Nayeemahmed Badebadea2f9ff62015-09-04 22:30:33 +0530590 u16 dprc_handle;
J. German Riverabbf9d172015-03-05 19:29:10 -0600591 int error;
592
J. German Rivera1ee695f2015-09-23 16:11:03 -0500593 error = dprc_open(mc_io, 0, container_id, &dprc_handle);
J. German Riverabbf9d172015-03-05 19:29:10 -0600594 if (error < 0) {
Cihangir Akturk2e115902016-03-14 18:14:07 +0200595 dev_err(mc_io->dev, "dprc_open() failed: %d\n", error);
J. German Riverabbf9d172015-03-05 19:29:10 -0600596 return error;
597 }
598
Itai Katz9529d162016-04-11 11:55:55 -0500599 memset(attr, 0, sizeof(struct dprc_attributes));
600 error = dprc_get_attributes(mc_io, 0, dprc_handle, attr);
J. German Riverabbf9d172015-03-05 19:29:10 -0600601 if (error < 0) {
Cihangir Akturk2e115902016-03-14 18:14:07 +0200602 dev_err(mc_io->dev, "dprc_get_attributes() failed: %d\n",
Bhumika Goyal454b0ec2016-03-04 19:15:55 +0530603 error);
J. German Riverabbf9d172015-03-05 19:29:10 -0600604 goto common_cleanup;
605 }
606
J. German Riverabbf9d172015-03-05 19:29:10 -0600607 error = 0;
608
609common_cleanup:
J. German Rivera1ee695f2015-09-23 16:11:03 -0500610 (void)dprc_close(mc_io, 0, dprc_handle);
J. German Riverabbf9d172015-03-05 19:29:10 -0600611 return error;
612}
613
Itai Katz9529d162016-04-11 11:55:55 -0500614static int get_dprc_icid(struct fsl_mc_io *mc_io,
Bharat Bhushan273ee53d2020-09-29 11:54:40 +0300615 int container_id, u32 *icid)
Itai Katz9529d162016-04-11 11:55:55 -0500616{
617 struct dprc_attributes attr;
618 int error;
619
620 error = get_dprc_attr(mc_io, container_id, &attr);
621 if (error == 0)
622 *icid = attr.icid;
623
624 return error;
625}
626
Itai Katze4ea40f2015-10-04 10:09:52 +0300627static int translate_mc_addr(struct fsl_mc_device *mc_dev,
628 enum dprc_region_type mc_region_type,
J. German Rivera1ee695f2015-09-23 16:11:03 -0500629 u64 mc_offset, phys_addr_t *phys_addr)
J. German Riverabbf9d172015-03-05 19:29:10 -0600630{
631 int i;
Itai Katze4ea40f2015-10-04 10:09:52 +0300632 struct device *root_dprc_dev;
633 struct fsl_mc *mc;
634
635 fsl_mc_get_root_dprc(&mc_dev->dev, &root_dprc_dev);
Itai Katze4ea40f2015-10-04 10:09:52 +0300636 mc = dev_get_drvdata(root_dprc_dev->parent);
J. German Riverabbf9d172015-03-05 19:29:10 -0600637
638 if (mc->num_translation_ranges == 0) {
639 /*
640 * Do identity mapping:
641 */
J. German Rivera1ee695f2015-09-23 16:11:03 -0500642 *phys_addr = mc_offset;
J. German Riverabbf9d172015-03-05 19:29:10 -0600643 return 0;
644 }
645
646 for (i = 0; i < mc->num_translation_ranges; i++) {
647 struct fsl_mc_addr_translation_range *range =
648 &mc->translation_ranges[i];
649
J. German Rivera1ee695f2015-09-23 16:11:03 -0500650 if (mc_region_type == range->mc_region_type &&
651 mc_offset >= range->start_mc_offset &&
652 mc_offset < range->end_mc_offset) {
J. German Riverabbf9d172015-03-05 19:29:10 -0600653 *phys_addr = range->start_phys_addr +
J. German Rivera1ee695f2015-09-23 16:11:03 -0500654 (mc_offset - range->start_mc_offset);
J. German Riverabbf9d172015-03-05 19:29:10 -0600655 return 0;
656 }
657 }
658
659 return -EFAULT;
660}
661
662static int fsl_mc_device_get_mmio_regions(struct fsl_mc_device *mc_dev,
663 struct fsl_mc_device *mc_bus_dev)
664{
665 int i;
666 int error;
667 struct resource *regions;
Laurentiu Tudor0cf9f502017-06-27 17:41:24 +0300668 struct fsl_mc_obj_desc *obj_desc = &mc_dev->obj_desc;
J. German Riverabbf9d172015-03-05 19:29:10 -0600669 struct device *parent_dev = mc_dev->dev.parent;
J. German Rivera1ee695f2015-09-23 16:11:03 -0500670 enum dprc_region_type mc_region_type;
671
Laurentiu Tudor19e2be72017-11-17 15:38:34 +0200672 if (is_fsl_mc_bus_dprc(mc_dev) ||
673 is_fsl_mc_bus_dpmcp(mc_dev)) {
J. German Rivera1ee695f2015-09-23 16:11:03 -0500674 mc_region_type = DPRC_REGION_TYPE_MC_PORTAL;
Laurentiu Tudor19e2be72017-11-17 15:38:34 +0200675 } else if (is_fsl_mc_bus_dpio(mc_dev)) {
J. German Rivera1ee695f2015-09-23 16:11:03 -0500676 mc_region_type = DPRC_REGION_TYPE_QBMAN_PORTAL;
677 } else {
678 /*
679 * This function should not have been called for this MC object
680 * type, as this object type is not supposed to have MMIO
681 * regions
682 */
J. German Rivera1ee695f2015-09-23 16:11:03 -0500683 return -EINVAL;
684 }
J. German Riverabbf9d172015-03-05 19:29:10 -0600685
686 regions = kmalloc_array(obj_desc->region_count,
687 sizeof(regions[0]), GFP_KERNEL);
688 if (!regions)
689 return -ENOMEM;
690
691 for (i = 0; i < obj_desc->region_count; i++) {
692 struct dprc_region_desc region_desc;
693
694 error = dprc_get_obj_region(mc_bus_dev->mc_io,
J. German Rivera1ee695f2015-09-23 16:11:03 -0500695 0,
J. German Riverabbf9d172015-03-05 19:29:10 -0600696 mc_bus_dev->mc_handle,
697 obj_desc->type,
698 obj_desc->id, i, &region_desc);
699 if (error < 0) {
700 dev_err(parent_dev,
701 "dprc_get_obj_region() failed: %d\n", error);
702 goto error_cleanup_regions;
703 }
Roy Pledgedde21372019-04-05 14:41:11 +0000704 /*
705 * Older MC only returned region offset and no base address
706 * If base address is in the region_desc use it otherwise
707 * revert to old mechanism
708 */
Laurentiu Tudor8990f962021-07-15 17:07:18 +0300709 if (region_desc.base_address) {
Roy Pledgedde21372019-04-05 14:41:11 +0000710 regions[i].start = region_desc.base_address +
711 region_desc.base_offset;
Laurentiu Tudor8990f962021-07-15 17:07:18 +0300712 } else {
Roy Pledgedde21372019-04-05 14:41:11 +0000713 error = translate_mc_addr(mc_dev, mc_region_type,
J. German Rivera1ee695f2015-09-23 16:11:03 -0500714 region_desc.base_offset,
J. German Riverabbf9d172015-03-05 19:29:10 -0600715 &regions[i].start);
Roy Pledgedde21372019-04-05 14:41:11 +0000716
Laurentiu Tudor8990f962021-07-15 17:07:18 +0300717 /*
718 * Some versions of the MC firmware wrongly report
719 * 0 for register base address of the DPMCP associated
720 * with child DPRC objects thus rendering them unusable.
721 * This is particularly troublesome in ACPI boot
722 * scenarios where the legacy way of extracting this
723 * base address from the device tree does not apply.
724 * Given that DPMCPs share the same base address,
725 * workaround this by using the base address extracted
726 * from the root DPRC container.
727 */
728 if (is_fsl_mc_bus_dprc(mc_dev) &&
729 regions[i].start == region_desc.base_offset)
730 regions[i].start += mc_portal_base_phys_addr;
731 }
732
J. German Riverabbf9d172015-03-05 19:29:10 -0600733 if (error < 0) {
734 dev_err(parent_dev,
J. German Rivera1ee695f2015-09-23 16:11:03 -0500735 "Invalid MC offset: %#x (for %s.%d\'s region %d)\n",
736 region_desc.base_offset,
737 obj_desc->type, obj_desc->id, i);
J. German Riverabbf9d172015-03-05 19:29:10 -0600738 goto error_cleanup_regions;
739 }
740
741 regions[i].end = regions[i].start + region_desc.size - 1;
742 regions[i].name = "fsl-mc object MMIO region";
Diana Craciune0c171d2020-09-29 11:54:32 +0300743 regions[i].flags = region_desc.flags & IORESOURCE_BITS;
744 regions[i].flags |= IORESOURCE_MEM;
J. German Riverabbf9d172015-03-05 19:29:10 -0600745 }
746
747 mc_dev->regions = regions;
748 return 0;
749
750error_cleanup_regions:
751 kfree(regions);
752 return error;
753}
754
Lee Jonesd71b57d2021-06-17 12:04:55 +0100755/*
Stuart Yoderfde867d2016-06-22 16:40:47 -0500756 * fsl_mc_is_root_dprc - function to check if a given device is a root dprc
757 */
758bool fsl_mc_is_root_dprc(struct device *dev)
759{
760 struct device *root_dprc_dev;
761
762 fsl_mc_get_root_dprc(dev, &root_dprc_dev);
763 if (!root_dprc_dev)
764 return false;
765 return dev == root_dprc_dev;
766}
767
Laurentiu Tudor95b35232017-02-07 09:43:46 -0600768static void fsl_mc_device_release(struct device *dev)
769{
770 struct fsl_mc_device *mc_dev = to_fsl_mc_device(dev);
Laurentiu Tudor95b35232017-02-07 09:43:46 -0600771
772 kfree(mc_dev->regions);
773
Laurentiu Tudor19e2be72017-11-17 15:38:34 +0200774 if (is_fsl_mc_bus_dprc(mc_dev))
Laurentiu Tudora042fbe2017-06-08 17:28:48 +0300775 kfree(to_fsl_mc_bus(mc_dev));
Laurentiu Tudor95b35232017-02-07 09:43:46 -0600776 else
Laurentiu Tudor9b653322017-02-07 09:43:48 -0600777 kfree(mc_dev);
Laurentiu Tudor95b35232017-02-07 09:43:46 -0600778}
779
Lee Jonesd71b57d2021-06-17 12:04:55 +0100780/*
Stuart Yoder58caaac2016-10-26 11:20:32 -0500781 * Add a newly discovered fsl-mc device to be visible in Linux
J. German Riverabbf9d172015-03-05 19:29:10 -0600782 */
Laurentiu Tudor0cf9f502017-06-27 17:41:24 +0300783int fsl_mc_device_add(struct fsl_mc_obj_desc *obj_desc,
J. German Riverabbf9d172015-03-05 19:29:10 -0600784 struct fsl_mc_io *mc_io,
785 struct device *parent_dev,
786 struct fsl_mc_device **new_mc_dev)
787{
788 int error;
789 struct fsl_mc_device *mc_dev = NULL;
790 struct fsl_mc_bus *mc_bus = NULL;
791 struct fsl_mc_device *parent_mc_dev;
792
Nipun Guptadf5e9b52016-06-29 22:44:39 +0530793 if (dev_is_fsl_mc(parent_dev))
J. German Riverabbf9d172015-03-05 19:29:10 -0600794 parent_mc_dev = to_fsl_mc_device(parent_dev);
795 else
796 parent_mc_dev = NULL;
797
798 if (strcmp(obj_desc->type, "dprc") == 0) {
799 /*
800 * Allocate an MC bus device object:
801 */
Laurentiu Tudordc341c42017-02-07 09:43:47 -0600802 mc_bus = kzalloc(sizeof(*mc_bus), GFP_KERNEL);
J. German Riverabbf9d172015-03-05 19:29:10 -0600803 if (!mc_bus)
804 return -ENOMEM;
805
Diana Craciun5d781fa2020-09-29 11:54:35 +0300806 mutex_init(&mc_bus->scan_mutex);
J. German Riverabbf9d172015-03-05 19:29:10 -0600807 mc_dev = &mc_bus->mc_dev;
808 } else {
809 /*
810 * Allocate a regular fsl_mc_device object:
811 */
Laurentiu Tudor9b653322017-02-07 09:43:48 -0600812 mc_dev = kzalloc(sizeof(*mc_dev), GFP_KERNEL);
J. German Riverabbf9d172015-03-05 19:29:10 -0600813 if (!mc_dev)
814 return -ENOMEM;
815 }
816
817 mc_dev->obj_desc = *obj_desc;
818 mc_dev->mc_io = mc_io;
819 device_initialize(&mc_dev->dev);
820 mc_dev->dev.parent = parent_dev;
821 mc_dev->dev.bus = &fsl_mc_bus_type;
Laurentiu Tudor95b35232017-02-07 09:43:46 -0600822 mc_dev->dev.release = fsl_mc_device_release;
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200823 mc_dev->dev.type = fsl_mc_get_device_type(obj_desc->type);
824 if (!mc_dev->dev.type) {
Greg Kroah-Hartmanfb17be92017-11-27 09:25:51 +0100825 error = -ENODEV;
Laurentiu Tudor47433b62017-11-17 15:38:33 +0200826 dev_err(parent_dev, "unknown device type %s\n", obj_desc->type);
827 goto error_cleanup_dev;
828 }
J. German Rivera77371fb2015-03-27 16:01:04 -0500829 dev_set_name(&mc_dev->dev, "%s.%d", obj_desc->type, obj_desc->id);
J. German Riverabbf9d172015-03-05 19:29:10 -0600830
831 if (strcmp(obj_desc->type, "dprc") == 0) {
832 struct fsl_mc_io *mc_io2;
833
834 mc_dev->flags |= FSL_MC_IS_DPRC;
835
836 /*
837 * To get the DPRC's ICID, we need to open the DPRC
838 * in get_dprc_icid(). For child DPRCs, we do so using the
839 * parent DPRC's MC portal instead of the child DPRC's MC
840 * portal, in case the child DPRC is already opened with
841 * its own portal (e.g., the DPRC used by AIOP).
842 *
843 * NOTE: There cannot be more than one active open for a
844 * given MC object, using the same MC portal.
845 */
846 if (parent_mc_dev) {
847 /*
848 * device being added is a child DPRC device
849 */
850 mc_io2 = parent_mc_dev->mc_io;
851 } else {
852 /*
853 * device being added is the root DPRC device
854 */
Laurentiu Tudora385dd72017-11-17 15:38:32 +0200855 if (!mc_io) {
J. German Riverabbf9d172015-03-05 19:29:10 -0600856 error = -EINVAL;
857 goto error_cleanup_dev;
858 }
859
860 mc_io2 = mc_io;
J. German Riverabbf9d172015-03-05 19:29:10 -0600861 }
862
863 error = get_dprc_icid(mc_io2, obj_desc->id, &mc_dev->icid);
864 if (error < 0)
865 goto error_cleanup_dev;
866 } else {
867 /*
Stuart Yoder58caaac2016-10-26 11:20:32 -0500868 * A non-DPRC object has to be a child of a DPRC, use the
869 * parent's ICID and interrupt domain.
J. German Riverabbf9d172015-03-05 19:29:10 -0600870 */
871 mc_dev->icid = parent_mc_dev->icid;
872 mc_dev->dma_mask = FSL_MC_DEFAULT_DMA_MASK;
873 mc_dev->dev.dma_mask = &mc_dev->dma_mask;
Nipun Gupta761ba8e2018-09-10 19:19:20 +0530874 mc_dev->dev.coherent_dma_mask = mc_dev->dma_mask;
J. German Rivera660a24b2016-01-06 16:03:29 -0600875 dev_set_msi_domain(&mc_dev->dev,
876 dev_get_msi_domain(&parent_mc_dev->dev));
J. German Riverabbf9d172015-03-05 19:29:10 -0600877 }
878
879 /*
880 * Get MMIO regions for the device from the MC:
881 *
882 * NOTE: the root DPRC is a special case as its MMIO region is
883 * obtained from the device tree
884 */
885 if (parent_mc_dev && obj_desc->region_count != 0) {
886 error = fsl_mc_device_get_mmio_regions(mc_dev,
887 parent_mc_dev);
888 if (error < 0)
889 goto error_cleanup_dev;
890 }
891
892 /*
893 * The device-specific probe callback will get invoked by device_add()
894 */
895 error = device_add(&mc_dev->dev);
896 if (error < 0) {
897 dev_err(parent_dev,
898 "device_add() failed for device %s: %d\n",
899 dev_name(&mc_dev->dev), error);
900 goto error_cleanup_dev;
901 }
902
Stuart Yodere3494af2016-10-26 11:20:31 -0500903 dev_dbg(parent_dev, "added %s\n", dev_name(&mc_dev->dev));
J. German Riverabbf9d172015-03-05 19:29:10 -0600904
905 *new_mc_dev = mc_dev;
906 return 0;
907
908error_cleanup_dev:
909 kfree(mc_dev->regions);
Laurentiu Tudora042fbe2017-06-08 17:28:48 +0300910 kfree(mc_bus);
911 kfree(mc_dev);
J. German Riverabbf9d172015-03-05 19:29:10 -0600912
913 return error;
914}
915EXPORT_SYMBOL_GPL(fsl_mc_device_add);
916
Laurentiu Tudor8c97a4f2021-07-15 17:07:15 +0300917static struct notifier_block fsl_mc_nb;
918
J. German Riverabbf9d172015-03-05 19:29:10 -0600919/**
Stuart Yoder58caaac2016-10-26 11:20:32 -0500920 * fsl_mc_device_remove - Remove an fsl-mc device from being visible to
J. German Riverabbf9d172015-03-05 19:29:10 -0600921 * Linux
922 *
Stuart Yoder58caaac2016-10-26 11:20:32 -0500923 * @mc_dev: Pointer to an fsl-mc device
J. German Riverabbf9d172015-03-05 19:29:10 -0600924 */
925void fsl_mc_device_remove(struct fsl_mc_device *mc_dev)
926{
Bharat Bhushan1f86a002020-09-29 11:54:31 +0300927 kfree(mc_dev->driver_override);
928 mc_dev->driver_override = NULL;
929
J. German Riverabbf9d172015-03-05 19:29:10 -0600930 /*
931 * The device-specific remove callback will get invoked by device_del()
932 */
933 device_del(&mc_dev->dev);
934 put_device(&mc_dev->dev);
J. German Riverabbf9d172015-03-05 19:29:10 -0600935}
936EXPORT_SYMBOL_GPL(fsl_mc_device_remove);
937
Ioana Ciornei27cfdad2021-08-03 19:57:42 +0300938struct fsl_mc_device *fsl_mc_get_endpoint(struct fsl_mc_device *mc_dev,
939 u16 if_id)
Ioana Ciornei1ac210d2019-10-31 01:18:29 +0200940{
941 struct fsl_mc_device *mc_bus_dev, *endpoint;
Ioana Ciorneicff081e2019-12-04 16:29:50 +0200942 struct fsl_mc_obj_desc endpoint_desc = {{ 0 }};
943 struct dprc_endpoint endpoint1 = {{ 0 }};
944 struct dprc_endpoint endpoint2 = {{ 0 }};
Ioana Ciornei1ac210d2019-10-31 01:18:29 +0200945 int state, err;
946
947 mc_bus_dev = to_fsl_mc_device(mc_dev->dev.parent);
948 strcpy(endpoint1.type, mc_dev->obj_desc.type);
949 endpoint1.id = mc_dev->obj_desc.id;
Ioana Ciornei27cfdad2021-08-03 19:57:42 +0300950 endpoint1.if_id = if_id;
Ioana Ciornei1ac210d2019-10-31 01:18:29 +0200951
952 err = dprc_get_connection(mc_bus_dev->mc_io, 0,
953 mc_bus_dev->mc_handle,
954 &endpoint1, &endpoint2,
955 &state);
956
957 if (err == -ENOTCONN || state == -1)
958 return ERR_PTR(-ENOTCONN);
959
960 if (err < 0) {
961 dev_err(&mc_bus_dev->dev, "dprc_get_connection() = %d\n", err);
962 return ERR_PTR(err);
963 }
964
965 strcpy(endpoint_desc.type, endpoint2.type);
966 endpoint_desc.id = endpoint2.id;
967 endpoint = fsl_mc_device_lookup(&endpoint_desc, mc_bus_dev);
968
Ioana Ciorneief57e6c2021-01-08 11:07:24 +0200969 /*
970 * We know that the device has an endpoint because we verified by
971 * interrogating the firmware. This is the case when the device was not
972 * yet discovered by the fsl-mc bus, thus the lookup returned NULL.
Laurentiu Tudor85674942021-07-15 17:07:17 +0300973 * Force a rescan of the devices in this container and retry the lookup.
974 */
975 if (!endpoint) {
976 struct fsl_mc_bus *mc_bus = to_fsl_mc_bus(mc_bus_dev);
977
978 if (mutex_trylock(&mc_bus->scan_mutex)) {
979 err = dprc_scan_objects(mc_bus_dev, true);
980 mutex_unlock(&mc_bus->scan_mutex);
981 }
982
983 if (err < 0)
984 return ERR_PTR(err);
985 }
986
987 endpoint = fsl_mc_device_lookup(&endpoint_desc, mc_bus_dev);
988 /*
989 * This means that the endpoint might reside in a different isolation
990 * context (DPRC/container). Not much to do, so return a permssion
991 * error.
Ioana Ciorneief57e6c2021-01-08 11:07:24 +0200992 */
993 if (!endpoint)
Laurentiu Tudor85674942021-07-15 17:07:17 +0300994 return ERR_PTR(-EPERM);
Ioana Ciorneief57e6c2021-01-08 11:07:24 +0200995
Ioana Ciornei1ac210d2019-10-31 01:18:29 +0200996 return endpoint;
997}
998EXPORT_SYMBOL_GPL(fsl_mc_get_endpoint);
999
J. German Riverabbf9d172015-03-05 19:29:10 -06001000static int parse_mc_ranges(struct device *dev,
1001 int *paddr_cells,
1002 int *mc_addr_cells,
1003 int *mc_size_cells,
Arnd Bergmanna45e47f2017-02-27 21:42:16 +01001004 const __be32 **ranges_start)
J. German Riverabbf9d172015-03-05 19:29:10 -06001005{
1006 const __be32 *prop;
1007 int range_tuple_cell_count;
1008 int ranges_len;
1009 int tuple_len;
1010 struct device_node *mc_node = dev->of_node;
1011
1012 *ranges_start = of_get_property(mc_node, "ranges", &ranges_len);
1013 if (!(*ranges_start) || !ranges_len) {
1014 dev_warn(dev,
Rob Herring6b825b12018-08-27 19:51:18 -05001015 "missing or empty ranges property for device tree node '%pOFn'\n",
1016 mc_node);
J. German Riverabbf9d172015-03-05 19:29:10 -06001017 return 0;
1018 }
1019
1020 *paddr_cells = of_n_addr_cells(mc_node);
1021
1022 prop = of_get_property(mc_node, "#address-cells", NULL);
1023 if (prop)
1024 *mc_addr_cells = be32_to_cpup(prop);
1025 else
1026 *mc_addr_cells = *paddr_cells;
1027
1028 prop = of_get_property(mc_node, "#size-cells", NULL);
1029 if (prop)
1030 *mc_size_cells = be32_to_cpup(prop);
1031 else
1032 *mc_size_cells = of_n_size_cells(mc_node);
1033
1034 range_tuple_cell_count = *paddr_cells + *mc_addr_cells +
1035 *mc_size_cells;
1036
1037 tuple_len = range_tuple_cell_count * sizeof(__be32);
1038 if (ranges_len % tuple_len != 0) {
Rob Herring6b825b12018-08-27 19:51:18 -05001039 dev_err(dev, "malformed ranges property '%pOFn'\n", mc_node);
J. German Riverabbf9d172015-03-05 19:29:10 -06001040 return -EINVAL;
1041 }
1042
Arnd Bergmanna45e47f2017-02-27 21:42:16 +01001043 return ranges_len / tuple_len;
J. German Riverabbf9d172015-03-05 19:29:10 -06001044}
1045
1046static int get_mc_addr_translation_ranges(struct device *dev,
1047 struct fsl_mc_addr_translation_range
1048 **ranges,
J. German Riveraba72f252015-09-25 11:21:01 -05001049 u8 *num_ranges)
J. German Riverabbf9d172015-03-05 19:29:10 -06001050{
Arnd Bergmanna45e47f2017-02-27 21:42:16 +01001051 int ret;
J. German Riverabbf9d172015-03-05 19:29:10 -06001052 int paddr_cells;
1053 int mc_addr_cells;
1054 int mc_size_cells;
1055 int i;
1056 const __be32 *ranges_start;
1057 const __be32 *cell;
1058
Arnd Bergmanna45e47f2017-02-27 21:42:16 +01001059 ret = parse_mc_ranges(dev,
Brett Hitchcock814f3be22017-05-14 13:20:03 -07001060 &paddr_cells,
1061 &mc_addr_cells,
1062 &mc_size_cells,
1063 &ranges_start);
Arnd Bergmanna45e47f2017-02-27 21:42:16 +01001064 if (ret < 0)
1065 return ret;
J. German Riverabbf9d172015-03-05 19:29:10 -06001066
Arnd Bergmanna45e47f2017-02-27 21:42:16 +01001067 *num_ranges = ret;
1068 if (!ret) {
J. German Riverabbf9d172015-03-05 19:29:10 -06001069 /*
1070 * Missing or empty ranges property ("ranges;") for the
1071 * 'fsl,qoriq-mc' node. In this case, identity mapping
1072 * will be used.
1073 */
1074 *ranges = NULL;
1075 return 0;
1076 }
1077
1078 *ranges = devm_kcalloc(dev, *num_ranges,
1079 sizeof(struct fsl_mc_addr_translation_range),
1080 GFP_KERNEL);
1081 if (!(*ranges))
1082 return -ENOMEM;
1083
1084 cell = ranges_start;
1085 for (i = 0; i < *num_ranges; ++i) {
1086 struct fsl_mc_addr_translation_range *range = &(*ranges)[i];
1087
J. German Rivera1ee695f2015-09-23 16:11:03 -05001088 range->mc_region_type = of_read_number(cell, 1);
1089 range->start_mc_offset = of_read_number(cell + 1,
1090 mc_addr_cells - 1);
J. German Riverabbf9d172015-03-05 19:29:10 -06001091 cell += mc_addr_cells;
1092 range->start_phys_addr = of_read_number(cell, paddr_cells);
1093 cell += paddr_cells;
J. German Rivera1ee695f2015-09-23 16:11:03 -05001094 range->end_mc_offset = range->start_mc_offset +
J. German Riverabbf9d172015-03-05 19:29:10 -06001095 of_read_number(cell, mc_size_cells);
1096
1097 cell += mc_size_cells;
1098 }
1099
1100 return 0;
1101}
1102
Lee Jonesd71b57d2021-06-17 12:04:55 +01001103/*
J. German Riverabbf9d172015-03-05 19:29:10 -06001104 * fsl_mc_bus_probe - callback invoked when the root MC bus is being
1105 * added
1106 */
1107static int fsl_mc_bus_probe(struct platform_device *pdev)
1108{
Laurentiu Tudor0cf9f502017-06-27 17:41:24 +03001109 struct fsl_mc_obj_desc obj_desc;
J. German Riverabbf9d172015-03-05 19:29:10 -06001110 int error;
1111 struct fsl_mc *mc;
1112 struct fsl_mc_device *mc_bus_dev = NULL;
1113 struct fsl_mc_io *mc_io = NULL;
1114 int container_id;
1115 phys_addr_t mc_portal_phys_addr;
Makarand Pawagi63051662020-06-19 09:20:13 +01001116 u32 mc_portal_size, mc_stream_id;
1117 struct resource *plat_res;
1118
J. German Riverabbf9d172015-03-05 19:29:10 -06001119 mc = devm_kzalloc(&pdev->dev, sizeof(*mc), GFP_KERNEL);
1120 if (!mc)
1121 return -ENOMEM;
1122
1123 platform_set_drvdata(pdev, mc);
1124
Makarand Pawagi63051662020-06-19 09:20:13 +01001125 plat_res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Laurentiu Tudor61243c02020-11-05 17:30:49 +02001126 if (plat_res) {
Laurentiu Tudoraef85b52020-09-14 13:54:59 +03001127 mc->fsl_mc_regs = devm_ioremap_resource(&pdev->dev, plat_res);
Laurentiu Tudor61243c02020-11-05 17:30:49 +02001128 if (IS_ERR(mc->fsl_mc_regs))
1129 return PTR_ERR(mc->fsl_mc_regs);
1130 }
Makarand Pawagi63051662020-06-19 09:20:13 +01001131
Laurentiu Tudor74abd1f2020-11-05 17:30:50 +02001132 if (mc->fsl_mc_regs) {
Laurentiu Tudor74abd1f2020-11-05 17:30:50 +02001133 if (IS_ENABLED(CONFIG_ACPI) && !dev_of_node(&pdev->dev)) {
1134 mc_stream_id = readl(mc->fsl_mc_regs + FSL_MC_FAPR);
1135 /*
1136 * HW ORs the PL and BMT bit, places the result in bit
1137 * 14 of the StreamID and ORs in the ICID. Calculate it
1138 * accordingly.
1139 */
1140 mc_stream_id = (mc_stream_id & 0xffff) |
Makarand Pawagi63051662020-06-19 09:20:13 +01001141 ((mc_stream_id & (MC_FAPR_PL | MC_FAPR_BMT)) ?
Laurentiu Tudor74abd1f2020-11-05 17:30:50 +02001142 BIT(14) : 0);
1143 error = acpi_dma_configure_id(&pdev->dev,
1144 DEV_DMA_COHERENT,
1145 &mc_stream_id);
Laurentiu Tudorf8cfa9b2021-07-15 17:07:12 +03001146 if (error == -EPROBE_DEFER)
1147 return error;
Laurentiu Tudor74abd1f2020-11-05 17:30:50 +02001148 if (error)
1149 dev_warn(&pdev->dev,
1150 "failed to configure dma: %d.\n",
1151 error);
1152 }
Laurentiu Tudorf8cfa9b2021-07-15 17:07:12 +03001153
1154 /*
1155 * Some bootloaders pause the MC firmware before booting the
1156 * kernel so that MC will not cause faults as soon as the
1157 * SMMU probes due to the fact that there's no configuration
1158 * in place for MC.
1159 * At this point MC should have all its SMMU setup done so make
1160 * sure it is resumed.
1161 */
Laurentiu Tudorc40cbad2021-07-15 17:07:13 +03001162 writel(readl(mc->fsl_mc_regs + FSL_MC_GCR1) &
1163 (~(GCR1_P1_STOP | GCR1_P2_STOP)),
Laurentiu Tudorf8cfa9b2021-07-15 17:07:12 +03001164 mc->fsl_mc_regs + FSL_MC_GCR1);
Makarand Pawagi63051662020-06-19 09:20:13 +01001165 }
1166
J. German Riverabbf9d172015-03-05 19:29:10 -06001167 /*
1168 * Get physical address of MC portal for the root DPRC:
1169 */
Makarand Pawagi63051662020-06-19 09:20:13 +01001170 plat_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1171 mc_portal_phys_addr = plat_res->start;
1172 mc_portal_size = resource_size(plat_res);
Laurentiu Tudor8990f962021-07-15 17:07:18 +03001173 mc_portal_base_phys_addr = mc_portal_phys_addr & ~0x3ffffff;
1174
J. German Riverabbf9d172015-03-05 19:29:10 -06001175 error = fsl_create_mc_io(&pdev->dev, mc_portal_phys_addr,
J. German Rivera1129cde2016-01-06 16:03:24 -06001176 mc_portal_size, NULL,
1177 FSL_MC_IO_ATOMIC_CONTEXT_PORTAL, &mc_io);
J. German Riverabbf9d172015-03-05 19:29:10 -06001178 if (error < 0)
1179 return error;
1180
J. German Rivera40577432015-09-23 16:10:59 -05001181 error = mc_get_version(mc_io, 0, &mc_version);
J. German Riverabbf9d172015-03-05 19:29:10 -06001182 if (error != 0) {
1183 dev_err(&pdev->dev,
1184 "mc_get_version() failed with error %d\n", error);
1185 goto error_cleanup_mc_io;
1186 }
1187
Stuart Yodere3494af2016-10-26 11:20:31 -05001188 dev_info(&pdev->dev, "MC firmware version: %u.%u.%u\n",
J. German Riverabbf9d172015-03-05 19:29:10 -06001189 mc_version.major, mc_version.minor, mc_version.revision);
1190
Makarand Pawagi63051662020-06-19 09:20:13 +01001191 if (dev_of_node(&pdev->dev)) {
1192 error = get_mc_addr_translation_ranges(&pdev->dev,
1193 &mc->translation_ranges,
1194 &mc->num_translation_ranges);
1195 if (error < 0)
1196 goto error_cleanup_mc_io;
1197 }
J. German Riverabbf9d172015-03-05 19:29:10 -06001198
Ioana Ciorneidecd3d02016-10-26 11:20:34 -05001199 error = dprc_get_container_id(mc_io, 0, &container_id);
J. German Riverabbf9d172015-03-05 19:29:10 -06001200 if (error < 0) {
1201 dev_err(&pdev->dev,
Laurentiu Tudor58acb382017-02-07 09:43:50 -06001202 "dprc_get_container_id() failed: %d\n", error);
J. German Riverabbf9d172015-03-05 19:29:10 -06001203 goto error_cleanup_mc_io;
1204 }
1205
Laurentiu Tudor0cf9f502017-06-27 17:41:24 +03001206 memset(&obj_desc, 0, sizeof(struct fsl_mc_obj_desc));
Ioana Ciorneidecd3d02016-10-26 11:20:34 -05001207 error = dprc_get_api_version(mc_io, 0,
1208 &obj_desc.ver_major,
1209 &obj_desc.ver_minor);
Itai Katz9529d162016-04-11 11:55:55 -05001210 if (error < 0)
1211 goto error_cleanup_mc_io;
1212
J. German Riverabbf9d172015-03-05 19:29:10 -06001213 obj_desc.vendor = FSL_MC_VENDOR_FREESCALE;
1214 strcpy(obj_desc.type, "dprc");
1215 obj_desc.id = container_id;
J. German Riveraa17f4aa2015-10-17 11:18:23 -05001216 obj_desc.irq_count = 1;
J. German Riverabbf9d172015-03-05 19:29:10 -06001217 obj_desc.region_count = 0;
1218
1219 error = fsl_mc_device_add(&obj_desc, mc_io, &pdev->dev, &mc_bus_dev);
1220 if (error < 0)
1221 goto error_cleanup_mc_io;
1222
1223 mc->root_mc_bus_dev = mc_bus_dev;
Makarand Pawagi63051662020-06-19 09:20:13 +01001224 mc_bus_dev->dev.fwnode = pdev->dev.fwnode;
J. German Riverabbf9d172015-03-05 19:29:10 -06001225 return 0;
1226
1227error_cleanup_mc_io:
1228 fsl_destroy_mc_io(mc_io);
1229 return error;
1230}
1231
Lee Jonesd71b57d2021-06-17 12:04:55 +01001232/*
J. German Riverabbf9d172015-03-05 19:29:10 -06001233 * fsl_mc_bus_remove - callback invoked when the root MC bus is being
1234 * removed
1235 */
1236static int fsl_mc_bus_remove(struct platform_device *pdev)
1237{
1238 struct fsl_mc *mc = platform_get_drvdata(pdev);
1239
Laurentiu Tudora385dd72017-11-17 15:38:32 +02001240 if (!fsl_mc_is_root_dprc(&mc->root_mc_bus_dev->dev))
J. German Riverabbf9d172015-03-05 19:29:10 -06001241 return -EINVAL;
1242
1243 fsl_mc_device_remove(mc->root_mc_bus_dev);
Bharat Bhushanf9362712016-06-22 16:40:48 -05001244
1245 fsl_destroy_mc_io(mc->root_mc_bus_dev->mc_io);
1246 mc->root_mc_bus_dev->mc_io = NULL;
1247
Laurentiu Tudor8c97a4f2021-07-15 17:07:15 +03001248 bus_unregister_notifier(&fsl_mc_bus_type, &fsl_mc_nb);
1249
Laurentiu Tudor39243fc2021-07-15 17:07:16 +03001250 if (mc->fsl_mc_regs) {
1251 /*
1252 * Pause the MC firmware so that it doesn't crash in certain
1253 * scenarios, such as kexec.
1254 */
1255 writel(readl(mc->fsl_mc_regs + FSL_MC_GCR1) |
1256 (GCR1_P1_STOP | GCR1_P2_STOP),
1257 mc->fsl_mc_regs + FSL_MC_GCR1);
1258 }
1259
J. German Riverabbf9d172015-03-05 19:29:10 -06001260 return 0;
1261}
1262
Laurentiu Tudor3ab520c2021-07-15 17:07:14 +03001263static void fsl_mc_bus_shutdown(struct platform_device *pdev)
1264{
1265 fsl_mc_bus_remove(pdev);
1266}
1267
J. German Riverabbf9d172015-03-05 19:29:10 -06001268static const struct of_device_id fsl_mc_bus_match_table[] = {
1269 {.compatible = "fsl,qoriq-mc",},
1270 {},
1271};
1272
1273MODULE_DEVICE_TABLE(of, fsl_mc_bus_match_table);
1274
Makarand Pawagi63051662020-06-19 09:20:13 +01001275static const struct acpi_device_id fsl_mc_bus_acpi_match_table[] = {
1276 {"NXP0008", 0 },
1277 { }
1278};
1279MODULE_DEVICE_TABLE(acpi, fsl_mc_bus_acpi_match_table);
1280
J. German Riverabbf9d172015-03-05 19:29:10 -06001281static struct platform_driver fsl_mc_bus_driver = {
1282 .driver = {
1283 .name = "fsl_mc_bus",
J. German Riverabbf9d172015-03-05 19:29:10 -06001284 .pm = NULL,
1285 .of_match_table = fsl_mc_bus_match_table,
Makarand Pawagi63051662020-06-19 09:20:13 +01001286 .acpi_match_table = fsl_mc_bus_acpi_match_table,
J. German Riverabbf9d172015-03-05 19:29:10 -06001287 },
1288 .probe = fsl_mc_bus_probe,
1289 .remove = fsl_mc_bus_remove,
Laurentiu Tudor3ab520c2021-07-15 17:07:14 +03001290 .shutdown = fsl_mc_bus_shutdown,
J. German Riverabbf9d172015-03-05 19:29:10 -06001291};
1292
Laurentiu Tudor8c97a4f2021-07-15 17:07:15 +03001293static int fsl_mc_bus_notifier(struct notifier_block *nb,
1294 unsigned long action, void *data)
1295{
1296 struct device *dev = data;
1297 struct resource *res;
1298 void __iomem *fsl_mc_regs;
1299
1300 if (action != BUS_NOTIFY_ADD_DEVICE)
1301 return 0;
1302
1303 if (!of_match_device(fsl_mc_bus_match_table, dev) &&
1304 !acpi_match_device(fsl_mc_bus_acpi_match_table, dev))
1305 return 0;
1306
1307 res = platform_get_resource(to_platform_device(dev), IORESOURCE_MEM, 1);
1308 if (!res)
1309 return 0;
1310
1311 fsl_mc_regs = ioremap(res->start, resource_size(res));
1312 if (!fsl_mc_regs)
1313 return 0;
1314
1315 /*
1316 * Make sure that the MC firmware is paused before the IOMMU setup for
1317 * it is done or otherwise the firmware will crash right after the SMMU
1318 * gets probed and enabled.
1319 */
1320 writel(readl(fsl_mc_regs + FSL_MC_GCR1) | (GCR1_P1_STOP | GCR1_P2_STOP),
1321 fsl_mc_regs + FSL_MC_GCR1);
1322 iounmap(fsl_mc_regs);
1323
1324 return 0;
1325}
1326
1327static struct notifier_block fsl_mc_nb = {
1328 .notifier_call = fsl_mc_bus_notifier,
J. German Riverabbf9d172015-03-05 19:29:10 -06001329};
1330
1331static int __init fsl_mc_bus_driver_init(void)
1332{
1333 int error;
1334
J. German Riverabbf9d172015-03-05 19:29:10 -06001335 error = bus_register(&fsl_mc_bus_type);
1336 if (error < 0) {
Stuart Yodera6737832016-10-26 11:20:29 -05001337 pr_err("bus type registration failed: %d\n", error);
J. German Riverabbf9d172015-03-05 19:29:10 -06001338 goto error_cleanup_cache;
1339 }
1340
J. German Riverabbf9d172015-03-05 19:29:10 -06001341 error = platform_driver_register(&fsl_mc_bus_driver);
1342 if (error < 0) {
1343 pr_err("platform_driver_register() failed: %d\n", error);
1344 goto error_cleanup_bus;
1345 }
1346
J. German Riveraf2f27262015-03-05 19:29:11 -06001347 error = dprc_driver_init();
1348 if (error < 0)
1349 goto error_cleanup_driver;
1350
J. German Riverae91ffa92015-03-27 16:01:08 -05001351 error = fsl_mc_allocator_driver_init();
1352 if (error < 0)
1353 goto error_cleanup_dprc_driver;
1354
Laurentiu Tudor8c97a4f2021-07-15 17:07:15 +03001355 return bus_register_notifier(&platform_bus_type, &fsl_mc_nb);
J. German Riverabbf9d172015-03-05 19:29:10 -06001356
J. German Riverae91ffa92015-03-27 16:01:08 -05001357error_cleanup_dprc_driver:
1358 dprc_driver_exit();
1359
J. German Riveraf2f27262015-03-05 19:29:11 -06001360error_cleanup_driver:
1361 platform_driver_unregister(&fsl_mc_bus_driver);
1362
J. German Riverabbf9d172015-03-05 19:29:10 -06001363error_cleanup_bus:
1364 bus_unregister(&fsl_mc_bus_type);
1365
1366error_cleanup_cache:
J. German Riverabbf9d172015-03-05 19:29:10 -06001367 return error;
1368}
J. German Riverabbf9d172015-03-05 19:29:10 -06001369postcore_initcall(fsl_mc_bus_driver_init);