Linux Audio

Check our new training course

Loading...
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Synopsys DesignWare PCIe host controller driver
  4 *
  5 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
  6 *		http://www.samsung.com
  7 *
  8 * Author: Jingoo Han <jg1.han@samsung.com>
  9 */
 10
 
 11#include <linux/irqchip/chained_irq.h>
 12#include <linux/irqdomain.h>
 
 13#include <linux/of_address.h>
 14#include <linux/of_pci.h>
 15#include <linux/pci_regs.h>
 16#include <linux/platform_device.h>
 17
 18#include "../../pci.h"
 19#include "pcie-designware.h"
 20
 21static struct pci_ops dw_pcie_ops;
 22
 23static int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
 24			       u32 *val)
 25{
 26	struct dw_pcie *pci;
 27
 28	if (pp->ops->rd_own_conf)
 29		return pp->ops->rd_own_conf(pp, where, size, val);
 30
 31	pci = to_dw_pcie_from_pp(pp);
 32	return dw_pcie_read(pci->dbi_base + where, size, val);
 33}
 34
 35static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
 36			       u32 val)
 37{
 38	struct dw_pcie *pci;
 39
 40	if (pp->ops->wr_own_conf)
 41		return pp->ops->wr_own_conf(pp, where, size, val);
 42
 43	pci = to_dw_pcie_from_pp(pp);
 44	return dw_pcie_write(pci->dbi_base + where, size, val);
 45}
 46
 47static void dw_msi_ack_irq(struct irq_data *d)
 48{
 49	irq_chip_ack_parent(d);
 50}
 51
 52static void dw_msi_mask_irq(struct irq_data *d)
 53{
 54	pci_msi_mask_irq(d);
 55	irq_chip_mask_parent(d);
 56}
 57
 58static void dw_msi_unmask_irq(struct irq_data *d)
 59{
 60	pci_msi_unmask_irq(d);
 61	irq_chip_unmask_parent(d);
 62}
 63
 64static struct irq_chip dw_pcie_msi_irq_chip = {
 65	.name = "PCI-MSI",
 66	.irq_ack = dw_msi_ack_irq,
 67	.irq_mask = dw_msi_mask_irq,
 68	.irq_unmask = dw_msi_unmask_irq,
 69};
 70
 71static struct msi_domain_info dw_pcie_msi_domain_info = {
 72	.flags	= (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS |
 73		   MSI_FLAG_PCI_MSIX | MSI_FLAG_MULTI_PCI_MSI),
 74	.chip	= &dw_pcie_msi_irq_chip,
 75};
 76
 77/* MSI int handler */
 78irqreturn_t dw_handle_msi_irq(struct pcie_port *pp)
 79{
 80	int i, pos, irq;
 81	u32 val, num_ctrls;
 
 82	irqreturn_t ret = IRQ_NONE;
 
 83
 84	num_ctrls = pp->num_vectors / MAX_MSI_IRQS_PER_CTRL;
 85
 86	for (i = 0; i < num_ctrls; i++) {
 87		dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_STATUS +
 88					(i * MSI_REG_CTRL_BLOCK_SIZE),
 89				    4, &val);
 90		if (!val)
 91			continue;
 92
 93		ret = IRQ_HANDLED;
 
 94		pos = 0;
 95		while ((pos = find_next_bit((unsigned long *) &val,
 96					    MAX_MSI_IRQS_PER_CTRL,
 97					    pos)) != MAX_MSI_IRQS_PER_CTRL) {
 98			irq = irq_find_mapping(pp->irq_domain,
 99					       (i * MAX_MSI_IRQS_PER_CTRL) +
100					       pos);
101			generic_handle_irq(irq);
102			pos++;
103		}
104	}
105
106	return ret;
107}
108
109/* Chained MSI interrupt service routine */
110static void dw_chained_msi_isr(struct irq_desc *desc)
111{
112	struct irq_chip *chip = irq_desc_get_chip(desc);
113	struct pcie_port *pp;
114
115	chained_irq_enter(chip, desc);
116
117	pp = irq_desc_get_handler_data(desc);
118	dw_handle_msi_irq(pp);
119
120	chained_irq_exit(chip, desc);
121}
122
123static void dw_pci_setup_msi_msg(struct irq_data *d, struct msi_msg *msg)
124{
125	struct pcie_port *pp = irq_data_get_irq_chip_data(d);
126	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
127	u64 msi_target;
128
129	msi_target = (u64)pp->msi_data;
130
131	msg->address_lo = lower_32_bits(msi_target);
132	msg->address_hi = upper_32_bits(msi_target);
133
134	msg->data = d->hwirq;
135
136	dev_dbg(pci->dev, "msi#%d address_hi %#x address_lo %#x\n",
137		(int)d->hwirq, msg->address_hi, msg->address_lo);
138}
139
140static int dw_pci_msi_set_affinity(struct irq_data *d,
141				   const struct cpumask *mask, bool force)
142{
143	return -EINVAL;
144}
145
146static void dw_pci_bottom_mask(struct irq_data *d)
147{
148	struct pcie_port *pp = irq_data_get_irq_chip_data(d);
 
149	unsigned int res, bit, ctrl;
150	unsigned long flags;
151
152	raw_spin_lock_irqsave(&pp->lock, flags);
153
154	ctrl = d->hwirq / MAX_MSI_IRQS_PER_CTRL;
155	res = ctrl * MSI_REG_CTRL_BLOCK_SIZE;
156	bit = d->hwirq % MAX_MSI_IRQS_PER_CTRL;
157
158	pp->irq_mask[ctrl] |= BIT(bit);
159	dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_MASK + res, 4,
160			    pp->irq_mask[ctrl]);
161
162	raw_spin_unlock_irqrestore(&pp->lock, flags);
163}
164
165static void dw_pci_bottom_unmask(struct irq_data *d)
166{
167	struct pcie_port *pp = irq_data_get_irq_chip_data(d);
 
168	unsigned int res, bit, ctrl;
169	unsigned long flags;
170
171	raw_spin_lock_irqsave(&pp->lock, flags);
172
173	ctrl = d->hwirq / MAX_MSI_IRQS_PER_CTRL;
174	res = ctrl * MSI_REG_CTRL_BLOCK_SIZE;
175	bit = d->hwirq % MAX_MSI_IRQS_PER_CTRL;
176
177	pp->irq_mask[ctrl] &= ~BIT(bit);
178	dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_MASK + res, 4,
179			    pp->irq_mask[ctrl]);
180
181	raw_spin_unlock_irqrestore(&pp->lock, flags);
182}
183
184static void dw_pci_bottom_ack(struct irq_data *d)
185{
186	struct pcie_port *pp  = irq_data_get_irq_chip_data(d);
 
187	unsigned int res, bit, ctrl;
188
189	ctrl = d->hwirq / MAX_MSI_IRQS_PER_CTRL;
190	res = ctrl * MSI_REG_CTRL_BLOCK_SIZE;
191	bit = d->hwirq % MAX_MSI_IRQS_PER_CTRL;
192
193	dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_STATUS + res, 4, BIT(bit));
194}
195
196static struct irq_chip dw_pci_msi_bottom_irq_chip = {
197	.name = "DWPCI-MSI",
198	.irq_ack = dw_pci_bottom_ack,
199	.irq_compose_msi_msg = dw_pci_setup_msi_msg,
200	.irq_set_affinity = dw_pci_msi_set_affinity,
201	.irq_mask = dw_pci_bottom_mask,
202	.irq_unmask = dw_pci_bottom_unmask,
203};
204
205static int dw_pcie_irq_domain_alloc(struct irq_domain *domain,
206				    unsigned int virq, unsigned int nr_irqs,
207				    void *args)
208{
209	struct pcie_port *pp = domain->host_data;
210	unsigned long flags;
211	u32 i;
212	int bit;
213
214	raw_spin_lock_irqsave(&pp->lock, flags);
215
216	bit = bitmap_find_free_region(pp->msi_irq_in_use, pp->num_vectors,
217				      order_base_2(nr_irqs));
218
219	raw_spin_unlock_irqrestore(&pp->lock, flags);
220
221	if (bit < 0)
222		return -ENOSPC;
223
224	for (i = 0; i < nr_irqs; i++)
225		irq_domain_set_info(domain, virq + i, bit + i,
226				    pp->msi_irq_chip,
227				    pp, handle_edge_irq,
228				    NULL, NULL);
229
230	return 0;
231}
232
233static void dw_pcie_irq_domain_free(struct irq_domain *domain,
234				    unsigned int virq, unsigned int nr_irqs)
235{
236	struct irq_data *d = irq_domain_get_irq_data(domain, virq);
237	struct pcie_port *pp = irq_data_get_irq_chip_data(d);
238	unsigned long flags;
239
240	raw_spin_lock_irqsave(&pp->lock, flags);
241
242	bitmap_release_region(pp->msi_irq_in_use, d->hwirq,
243			      order_base_2(nr_irqs));
244
245	raw_spin_unlock_irqrestore(&pp->lock, flags);
246}
247
248static const struct irq_domain_ops dw_pcie_msi_domain_ops = {
249	.alloc	= dw_pcie_irq_domain_alloc,
250	.free	= dw_pcie_irq_domain_free,
251};
252
253int dw_pcie_allocate_domains(struct pcie_port *pp)
254{
255	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
256	struct fwnode_handle *fwnode = of_node_to_fwnode(pci->dev->of_node);
257
258	pp->irq_domain = irq_domain_create_linear(fwnode, pp->num_vectors,
259					       &dw_pcie_msi_domain_ops, pp);
260	if (!pp->irq_domain) {
261		dev_err(pci->dev, "Failed to create IRQ domain\n");
262		return -ENOMEM;
263	}
264
 
 
265	pp->msi_domain = pci_msi_create_irq_domain(fwnode,
266						   &dw_pcie_msi_domain_info,
267						   pp->irq_domain);
268	if (!pp->msi_domain) {
269		dev_err(pci->dev, "Failed to create MSI domain\n");
270		irq_domain_remove(pp->irq_domain);
271		return -ENOMEM;
272	}
273
274	return 0;
275}
276
277void dw_pcie_free_msi(struct pcie_port *pp)
278{
279	if (pp->msi_irq) {
280		irq_set_chained_handler(pp->msi_irq, NULL);
281		irq_set_handler_data(pp->msi_irq, NULL);
 
 
 
282	}
283
284	irq_domain_remove(pp->msi_domain);
285	irq_domain_remove(pp->irq_domain);
 
 
 
 
 
 
 
 
 
286
287	if (pp->msi_page)
288		__free_page(pp->msi_page);
 
289}
290
291void dw_pcie_msi_init(struct pcie_port *pp)
292{
293	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
294	struct device *dev = pci->dev;
295	u64 msi_target;
 
 
296
297	pp->msi_page = alloc_page(GFP_KERNEL);
298	pp->msi_data = dma_map_page(dev, pp->msi_page, 0, PAGE_SIZE,
299				    DMA_FROM_DEVICE);
300	if (dma_mapping_error(dev, pp->msi_data)) {
301		dev_err(dev, "Failed to map MSI data\n");
302		__free_page(pp->msi_page);
303		pp->msi_page = NULL;
304		return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305	}
306	msi_target = (u64)pp->msi_data;
 
307
308	/* Program the msi_data */
309	dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4,
310			    lower_32_bits(msi_target));
311	dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4,
312			    upper_32_bits(msi_target));
313}
314EXPORT_SYMBOL_GPL(dw_pcie_msi_init);
315
316int dw_pcie_host_init(struct pcie_port *pp)
317{
318	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
319	struct device *dev = pci->dev;
320	struct device_node *np = dev->of_node;
321	struct platform_device *pdev = to_platform_device(dev);
322	struct resource_entry *win, *tmp;
323	struct pci_bus *child;
324	struct pci_host_bridge *bridge;
325	struct resource *cfg_res;
326	u32 hdr_type;
327	int ret;
 
328
329	raw_spin_lock_init(&pci->pp.lock);
 
330
331	cfg_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "config");
332	if (cfg_res) {
333		pp->cfg0_size = resource_size(cfg_res) >> 1;
334		pp->cfg1_size = resource_size(cfg_res) >> 1;
335		pp->cfg0_base = cfg_res->start;
336		pp->cfg1_base = cfg_res->start + pp->cfg0_size;
337	} else if (!pp->va_cfg0_base) {
338		dev_err(dev, "Missing *config* reg space\n");
339	}
340
341	bridge = devm_pci_alloc_host_bridge(dev, 0);
342	if (!bridge)
343		return -ENOMEM;
344
345	ret = devm_of_pci_get_host_bridge_resources(dev, 0, 0xff,
346					&bridge->windows, &pp->io_base);
347	if (ret)
348		return ret;
 
 
 
 
 
 
349
350	ret = devm_request_pci_bus_resources(dev, &bridge->windows);
 
 
351	if (ret)
352		return ret;
353
354	/* Get the I/O and memory ranges from DT */
355	resource_list_for_each_entry_safe(win, tmp, &bridge->windows) {
356		switch (resource_type(win->res)) {
357		case IORESOURCE_IO:
358			ret = devm_pci_remap_iospace(dev, win->res,
359						     pp->io_base);
360			if (ret) {
361				dev_warn(dev, "Error %d: failed to map resource %pR\n",
362					 ret, win->res);
363				resource_list_destroy_entry(win);
364			} else {
365				pp->io = win->res;
366				pp->io->name = "I/O";
367				pp->io_size = resource_size(pp->io);
368				pp->io_bus_addr = pp->io->start - win->offset;
369			}
370			break;
371		case IORESOURCE_MEM:
372			pp->mem = win->res;
373			pp->mem->name = "MEM";
374			pp->mem_size = resource_size(pp->mem);
375			pp->mem_bus_addr = pp->mem->start - win->offset;
376			break;
377		case 0:
378			pp->cfg = win->res;
379			pp->cfg0_size = resource_size(pp->cfg) >> 1;
380			pp->cfg1_size = resource_size(pp->cfg) >> 1;
381			pp->cfg0_base = pp->cfg->start;
382			pp->cfg1_base = pp->cfg->start + pp->cfg0_size;
383			break;
384		case IORESOURCE_BUS:
385			pp->busn = win->res;
386			break;
387		}
388	}
389
390	if (!pci->dbi_base) {
391		pci->dbi_base = devm_pci_remap_cfgspace(dev,
392						pp->cfg->start,
393						resource_size(pp->cfg));
394		if (!pci->dbi_base) {
395			dev_err(dev, "Error with ioremap\n");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
396			return -ENOMEM;
397		}
398	}
399
400	pp->mem_base = pp->mem->start;
 
401
402	if (!pp->va_cfg0_base) {
403		pp->va_cfg0_base = devm_pci_remap_cfgspace(dev,
404					pp->cfg0_base, pp->cfg0_size);
405		if (!pp->va_cfg0_base) {
406			dev_err(dev, "Error with ioremap in function\n");
407			return -ENOMEM;
408		}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409	}
410
411	if (!pp->va_cfg1_base) {
412		pp->va_cfg1_base = devm_pci_remap_cfgspace(dev,
413						pp->cfg1_base,
414						pp->cfg1_size);
415		if (!pp->va_cfg1_base) {
416			dev_err(dev, "Error with ioremap\n");
417			return -ENOMEM;
418		}
 
 
 
 
419	}
420
421	ret = of_property_read_u32(np, "num-viewport", &pci->num_viewport);
422	if (ret)
423		pci->num_viewport = 2;
 
 
 
 
 
 
424
425	if (pci_msi_enabled()) {
 
 
 
 
426		/*
427		 * If a specific SoC driver needs to change the
428		 * default number of vectors, it needs to implement
429		 * the set_num_vectors callback.
430		 */
431		if (!pp->ops->set_num_vectors) {
432			pp->num_vectors = MSI_DEF_NUM_VECTORS;
433		} else {
434			pp->ops->set_num_vectors(pp);
435
436			if (pp->num_vectors > MAX_MSI_IRQS ||
437			    pp->num_vectors == 0) {
438				dev_err(dev,
439					"Invalid number of vectors\n");
440				return -EINVAL;
441			}
442		}
443
444		if (!pp->ops->msi_host_init) {
445			pp->msi_irq_chip = &dw_pci_msi_bottom_irq_chip;
446
447			ret = dw_pcie_allocate_domains(pp);
448			if (ret)
449				return ret;
450
451			if (pp->msi_irq)
452				irq_set_chained_handler_and_data(pp->msi_irq,
453							    dw_chained_msi_isr,
454							    pp);
455		} else {
456			ret = pp->ops->msi_host_init(pp);
457			if (ret < 0)
458				return ret;
 
 
 
 
459		}
460	}
461
462	if (pp->ops->host_init) {
463		ret = pp->ops->host_init(pp);
464		if (ret)
465			goto err_free_msi;
466	}
467
468	ret = dw_pcie_rd_own_conf(pp, PCI_HEADER_TYPE, 1, &hdr_type);
469	if (ret != PCIBIOS_SUCCESSFUL) {
470		dev_err(pci->dev, "Failed reading PCI_HEADER_TYPE cfg space reg (ret: 0x%x)\n",
471			ret);
472		ret = pcibios_err_to_errno(ret);
473		goto err_free_msi;
474	}
475	if (hdr_type != PCI_HEADER_TYPE_BRIDGE) {
476		dev_err(pci->dev,
477			"PCIe controller is not set to bridge type (hdr_type: 0x%x)!\n",
478			hdr_type);
479		ret = -EIO;
480		goto err_free_msi;
 
 
 
 
 
 
 
 
 
481	}
482
483	pp->root_bus_nr = pp->busn->start;
 
484
485	bridge->dev.parent = dev;
486	bridge->sysdata = pp;
487	bridge->busnr = pp->root_bus_nr;
488	bridge->ops = &dw_pcie_ops;
489	bridge->map_irq = of_irq_parse_and_map_pci;
490	bridge->swizzle_irq = pci_common_swizzle;
491
492	ret = pci_scan_root_bus_bridge(bridge);
493	if (ret)
494		goto err_free_msi;
495
496	pp->root_bus = bridge->bus;
 
497
498	if (pp->ops->scan_bus)
499		pp->ops->scan_bus(pp);
500
501	pci_bus_size_bridges(pp->root_bus);
502	pci_bus_assign_resources(pp->root_bus);
503
504	list_for_each_entry(child, &pp->root_bus->children, node)
505		pcie_bus_configure_settings(child);
506
507	pci_bus_add_devices(pp->root_bus);
508	return 0;
509
510err_free_msi:
511	if (pci_msi_enabled() && !pp->ops->msi_host_init)
512		dw_pcie_free_msi(pp);
 
 
 
 
 
513	return ret;
514}
515EXPORT_SYMBOL_GPL(dw_pcie_host_init);
516
517void dw_pcie_host_deinit(struct pcie_port *pp)
518{
519	pci_stop_root_bus(pp->root_bus);
520	pci_remove_root_bus(pp->root_bus);
521	if (pci_msi_enabled() && !pp->ops->msi_host_init)
 
 
 
 
 
 
 
522		dw_pcie_free_msi(pp);
 
 
 
523}
524EXPORT_SYMBOL_GPL(dw_pcie_host_deinit);
525
526static int dw_pcie_access_other_conf(struct pcie_port *pp, struct pci_bus *bus,
527				     u32 devfn, int where, int size, u32 *val,
528				     bool write)
529{
530	int ret, type;
531	u32 busdev, cfg_size;
532	u64 cpu_addr;
533	void __iomem *va_cfg_base;
534	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 
 
 
 
 
 
 
 
 
 
 
 
 
535
536	busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
537		 PCIE_ATU_FUNC(PCI_FUNC(devfn));
538
539	if (bus->parent->number == pp->root_bus_nr) {
540		type = PCIE_ATU_TYPE_CFG0;
541		cpu_addr = pp->cfg0_base;
542		cfg_size = pp->cfg0_size;
543		va_cfg_base = pp->va_cfg0_base;
544	} else {
545		type = PCIE_ATU_TYPE_CFG1;
546		cpu_addr = pp->cfg1_base;
547		cfg_size = pp->cfg1_size;
548		va_cfg_base = pp->va_cfg1_base;
549	}
550
551	dw_pcie_prog_outbound_atu(pci, PCIE_ATU_REGION_INDEX1,
552				  type, cpu_addr,
553				  busdev, cfg_size);
554	if (write)
555		ret = dw_pcie_write(va_cfg_base + where, size, *val);
556	else
557		ret = dw_pcie_read(va_cfg_base + where, size, val);
558
559	if (pci->num_viewport <= 2)
560		dw_pcie_prog_outbound_atu(pci, PCIE_ATU_REGION_INDEX1,
561					  PCIE_ATU_TYPE_IO, pp->io_base,
562					  pp->io_bus_addr, pp->io_size);
563
564	return ret;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565}
566
567static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
568				 u32 devfn, int where, int size, u32 *val)
569{
570	if (pp->ops->rd_other_conf)
571		return pp->ops->rd_other_conf(pp, bus, devfn, where,
572					      size, val);
573
574	return dw_pcie_access_other_conf(pp, bus, devfn, where, size, val,
575					 false);
 
 
 
 
 
 
 
 
 
 
 
576}
577
578static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
579				 u32 devfn, int where, int size, u32 val)
 
 
 
 
 
580{
581	if (pp->ops->wr_other_conf)
582		return pp->ops->wr_other_conf(pp, bus, devfn, where,
583					      size, val);
584
585	return dw_pcie_access_other_conf(pp, bus, devfn, where, size, &val,
586					 true);
 
 
587}
 
 
 
 
 
 
 
588
589static int dw_pcie_valid_device(struct pcie_port *pp, struct pci_bus *bus,
590				int dev)
591{
592	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 
 
593
594	/* If there is no link, then there is no device */
595	if (bus->number != pp->root_bus_nr) {
596		if (!dw_pcie_link_up(pci))
597			return 0;
598	}
599
600	/* Access only one slot on each root port */
601	if (bus->number == pp->root_bus_nr && dev > 0)
602		return 0;
 
 
 
603
604	return 1;
605}
606
607static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
608			   int size, u32 *val)
609{
610	struct pcie_port *pp = bus->sysdata;
611
612	if (!dw_pcie_valid_device(pp, bus, PCI_SLOT(devfn))) {
613		*val = 0xffffffff;
614		return PCIBIOS_DEVICE_NOT_FOUND;
 
 
 
 
 
 
 
 
 
615	}
616
617	if (bus->number == pp->root_bus_nr)
618		return dw_pcie_rd_own_conf(pp, where, size, val);
 
 
 
 
 
 
 
 
 
 
 
 
 
619
620	return dw_pcie_rd_other_conf(pp, bus, devfn, where, size, val);
621}
 
 
 
 
 
 
622
623static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
624			   int where, int size, u32 val)
625{
626	struct pcie_port *pp = bus->sysdata;
627
628	if (!dw_pcie_valid_device(pp, bus, PCI_SLOT(devfn)))
629		return PCIBIOS_DEVICE_NOT_FOUND;
 
 
 
 
 
 
 
 
630
631	if (bus->number == pp->root_bus_nr)
632		return dw_pcie_wr_own_conf(pp, where, size, val);
 
633
634	return dw_pcie_wr_other_conf(pp, bus, devfn, where, size, val);
635}
636
637static struct pci_ops dw_pcie_ops = {
638	.read = dw_pcie_rd_conf,
639	.write = dw_pcie_wr_conf,
640};
641
642void dw_pcie_setup_rc(struct pcie_port *pp)
643{
644	u32 val, ctrl, num_ctrls;
645	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 
 
646
647	/*
648	 * Enable DBI read-only registers for writing/updating configuration.
649	 * Write permission gets disabled towards the end of this function.
650	 */
651	dw_pcie_dbi_ro_wr_en(pci);
652
653	dw_pcie_setup(pci);
654
655	if (!pp->ops->msi_host_init) {
656		num_ctrls = pp->num_vectors / MAX_MSI_IRQS_PER_CTRL;
657
658		/* Initialize IRQ Status array */
659		for (ctrl = 0; ctrl < num_ctrls; ctrl++) {
660			pp->irq_mask[ctrl] = ~0;
661			dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_MASK +
662					    (ctrl * MSI_REG_CTRL_BLOCK_SIZE),
663					    4, pp->irq_mask[ctrl]);
664			dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE +
665					    (ctrl * MSI_REG_CTRL_BLOCK_SIZE),
666					    4, ~0);
667		}
668	}
669
 
 
670	/* Setup RC BARs */
671	dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_0, 0x00000004);
672	dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_1, 0x00000000);
673
674	/* Setup interrupt pins */
675	val = dw_pcie_readl_dbi(pci, PCI_INTERRUPT_LINE);
676	val &= 0xffff00ff;
677	val |= 0x00000100;
678	dw_pcie_writel_dbi(pci, PCI_INTERRUPT_LINE, val);
679
680	/* Setup bus numbers */
681	val = dw_pcie_readl_dbi(pci, PCI_PRIMARY_BUS);
682	val &= 0xff000000;
683	val |= 0x00ff0100;
684	dw_pcie_writel_dbi(pci, PCI_PRIMARY_BUS, val);
685
686	/* Setup command register */
687	val = dw_pcie_readl_dbi(pci, PCI_COMMAND);
688	val &= 0xffff0000;
689	val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
690		PCI_COMMAND_MASTER | PCI_COMMAND_SERR;
691	dw_pcie_writel_dbi(pci, PCI_COMMAND, val);
692
693	/*
694	 * If the platform provides ->rd_other_conf, it means the platform
695	 * uses its own address translation component rather than ATU, so
696	 * we should not program the ATU here.
697	 */
698	if (!pp->ops->rd_other_conf) {
699		dw_pcie_prog_outbound_atu(pci, PCIE_ATU_REGION_INDEX0,
700					  PCIE_ATU_TYPE_MEM, pp->mem_base,
701					  pp->mem_bus_addr, pp->mem_size);
702		if (pci->num_viewport > 2)
703			dw_pcie_prog_outbound_atu(pci, PCIE_ATU_REGION_INDEX2,
704						  PCIE_ATU_TYPE_IO, pp->io_base,
705						  pp->io_bus_addr, pp->io_size);
706	}
707
708	dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0);
709
710	/* Program correct class for RC */
711	dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI);
712
713	dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val);
714	val |= PORT_LOGIC_SPEED_CHANGE;
715	dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val);
716
717	dw_pcie_dbi_ro_wr_dis(pci);
 
 
718}
719EXPORT_SYMBOL_GPL(dw_pcie_setup_rc);
v6.9.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Synopsys DesignWare PCIe host controller driver
  4 *
  5 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
  6 *		https://www.samsung.com
  7 *
  8 * Author: Jingoo Han <jg1.han@samsung.com>
  9 */
 10
 11#include <linux/iopoll.h>
 12#include <linux/irqchip/chained_irq.h>
 13#include <linux/irqdomain.h>
 14#include <linux/msi.h>
 15#include <linux/of_address.h>
 16#include <linux/of_pci.h>
 17#include <linux/pci_regs.h>
 18#include <linux/platform_device.h>
 19
 20#include "../../pci.h"
 21#include "pcie-designware.h"
 22
 23static struct pci_ops dw_pcie_ops;
 24static struct pci_ops dw_child_pcie_ops;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 25
 26static void dw_msi_ack_irq(struct irq_data *d)
 27{
 28	irq_chip_ack_parent(d);
 29}
 30
 31static void dw_msi_mask_irq(struct irq_data *d)
 32{
 33	pci_msi_mask_irq(d);
 34	irq_chip_mask_parent(d);
 35}
 36
 37static void dw_msi_unmask_irq(struct irq_data *d)
 38{
 39	pci_msi_unmask_irq(d);
 40	irq_chip_unmask_parent(d);
 41}
 42
 43static struct irq_chip dw_pcie_msi_irq_chip = {
 44	.name = "PCI-MSI",
 45	.irq_ack = dw_msi_ack_irq,
 46	.irq_mask = dw_msi_mask_irq,
 47	.irq_unmask = dw_msi_unmask_irq,
 48};
 49
 50static struct msi_domain_info dw_pcie_msi_domain_info = {
 51	.flags	= (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS |
 52		   MSI_FLAG_PCI_MSIX | MSI_FLAG_MULTI_PCI_MSI),
 53	.chip	= &dw_pcie_msi_irq_chip,
 54};
 55
 56/* MSI int handler */
 57irqreturn_t dw_handle_msi_irq(struct dw_pcie_rp *pp)
 58{
 59	int i, pos;
 60	unsigned long val;
 61	u32 status, num_ctrls;
 62	irqreturn_t ret = IRQ_NONE;
 63	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 64
 65	num_ctrls = pp->num_vectors / MAX_MSI_IRQS_PER_CTRL;
 66
 67	for (i = 0; i < num_ctrls; i++) {
 68		status = dw_pcie_readl_dbi(pci, PCIE_MSI_INTR0_STATUS +
 69					   (i * MSI_REG_CTRL_BLOCK_SIZE));
 70		if (!status)
 
 71			continue;
 72
 73		ret = IRQ_HANDLED;
 74		val = status;
 75		pos = 0;
 76		while ((pos = find_next_bit(&val, MAX_MSI_IRQS_PER_CTRL,
 
 77					    pos)) != MAX_MSI_IRQS_PER_CTRL) {
 78			generic_handle_domain_irq(pp->irq_domain,
 79						  (i * MAX_MSI_IRQS_PER_CTRL) +
 80						  pos);
 
 81			pos++;
 82		}
 83	}
 84
 85	return ret;
 86}
 87
 88/* Chained MSI interrupt service routine */
 89static void dw_chained_msi_isr(struct irq_desc *desc)
 90{
 91	struct irq_chip *chip = irq_desc_get_chip(desc);
 92	struct dw_pcie_rp *pp;
 93
 94	chained_irq_enter(chip, desc);
 95
 96	pp = irq_desc_get_handler_data(desc);
 97	dw_handle_msi_irq(pp);
 98
 99	chained_irq_exit(chip, desc);
100}
101
102static void dw_pci_setup_msi_msg(struct irq_data *d, struct msi_msg *msg)
103{
104	struct dw_pcie_rp *pp = irq_data_get_irq_chip_data(d);
105	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
106	u64 msi_target;
107
108	msi_target = (u64)pp->msi_data;
109
110	msg->address_lo = lower_32_bits(msi_target);
111	msg->address_hi = upper_32_bits(msi_target);
112
113	msg->data = d->hwirq;
114
115	dev_dbg(pci->dev, "msi#%d address_hi %#x address_lo %#x\n",
116		(int)d->hwirq, msg->address_hi, msg->address_lo);
117}
118
119static int dw_pci_msi_set_affinity(struct irq_data *d,
120				   const struct cpumask *mask, bool force)
121{
122	return -EINVAL;
123}
124
125static void dw_pci_bottom_mask(struct irq_data *d)
126{
127	struct dw_pcie_rp *pp = irq_data_get_irq_chip_data(d);
128	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
129	unsigned int res, bit, ctrl;
130	unsigned long flags;
131
132	raw_spin_lock_irqsave(&pp->lock, flags);
133
134	ctrl = d->hwirq / MAX_MSI_IRQS_PER_CTRL;
135	res = ctrl * MSI_REG_CTRL_BLOCK_SIZE;
136	bit = d->hwirq % MAX_MSI_IRQS_PER_CTRL;
137
138	pp->irq_mask[ctrl] |= BIT(bit);
139	dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_MASK + res, pp->irq_mask[ctrl]);
 
140
141	raw_spin_unlock_irqrestore(&pp->lock, flags);
142}
143
144static void dw_pci_bottom_unmask(struct irq_data *d)
145{
146	struct dw_pcie_rp *pp = irq_data_get_irq_chip_data(d);
147	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
148	unsigned int res, bit, ctrl;
149	unsigned long flags;
150
151	raw_spin_lock_irqsave(&pp->lock, flags);
152
153	ctrl = d->hwirq / MAX_MSI_IRQS_PER_CTRL;
154	res = ctrl * MSI_REG_CTRL_BLOCK_SIZE;
155	bit = d->hwirq % MAX_MSI_IRQS_PER_CTRL;
156
157	pp->irq_mask[ctrl] &= ~BIT(bit);
158	dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_MASK + res, pp->irq_mask[ctrl]);
 
159
160	raw_spin_unlock_irqrestore(&pp->lock, flags);
161}
162
163static void dw_pci_bottom_ack(struct irq_data *d)
164{
165	struct dw_pcie_rp *pp  = irq_data_get_irq_chip_data(d);
166	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
167	unsigned int res, bit, ctrl;
168
169	ctrl = d->hwirq / MAX_MSI_IRQS_PER_CTRL;
170	res = ctrl * MSI_REG_CTRL_BLOCK_SIZE;
171	bit = d->hwirq % MAX_MSI_IRQS_PER_CTRL;
172
173	dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_STATUS + res, BIT(bit));
174}
175
176static struct irq_chip dw_pci_msi_bottom_irq_chip = {
177	.name = "DWPCI-MSI",
178	.irq_ack = dw_pci_bottom_ack,
179	.irq_compose_msi_msg = dw_pci_setup_msi_msg,
180	.irq_set_affinity = dw_pci_msi_set_affinity,
181	.irq_mask = dw_pci_bottom_mask,
182	.irq_unmask = dw_pci_bottom_unmask,
183};
184
185static int dw_pcie_irq_domain_alloc(struct irq_domain *domain,
186				    unsigned int virq, unsigned int nr_irqs,
187				    void *args)
188{
189	struct dw_pcie_rp *pp = domain->host_data;
190	unsigned long flags;
191	u32 i;
192	int bit;
193
194	raw_spin_lock_irqsave(&pp->lock, flags);
195
196	bit = bitmap_find_free_region(pp->msi_irq_in_use, pp->num_vectors,
197				      order_base_2(nr_irqs));
198
199	raw_spin_unlock_irqrestore(&pp->lock, flags);
200
201	if (bit < 0)
202		return -ENOSPC;
203
204	for (i = 0; i < nr_irqs; i++)
205		irq_domain_set_info(domain, virq + i, bit + i,
206				    pp->msi_irq_chip,
207				    pp, handle_edge_irq,
208				    NULL, NULL);
209
210	return 0;
211}
212
213static void dw_pcie_irq_domain_free(struct irq_domain *domain,
214				    unsigned int virq, unsigned int nr_irqs)
215{
216	struct irq_data *d = irq_domain_get_irq_data(domain, virq);
217	struct dw_pcie_rp *pp = domain->host_data;
218	unsigned long flags;
219
220	raw_spin_lock_irqsave(&pp->lock, flags);
221
222	bitmap_release_region(pp->msi_irq_in_use, d->hwirq,
223			      order_base_2(nr_irqs));
224
225	raw_spin_unlock_irqrestore(&pp->lock, flags);
226}
227
228static const struct irq_domain_ops dw_pcie_msi_domain_ops = {
229	.alloc	= dw_pcie_irq_domain_alloc,
230	.free	= dw_pcie_irq_domain_free,
231};
232
233int dw_pcie_allocate_domains(struct dw_pcie_rp *pp)
234{
235	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
236	struct fwnode_handle *fwnode = of_node_to_fwnode(pci->dev->of_node);
237
238	pp->irq_domain = irq_domain_create_linear(fwnode, pp->num_vectors,
239					       &dw_pcie_msi_domain_ops, pp);
240	if (!pp->irq_domain) {
241		dev_err(pci->dev, "Failed to create IRQ domain\n");
242		return -ENOMEM;
243	}
244
245	irq_domain_update_bus_token(pp->irq_domain, DOMAIN_BUS_NEXUS);
246
247	pp->msi_domain = pci_msi_create_irq_domain(fwnode,
248						   &dw_pcie_msi_domain_info,
249						   pp->irq_domain);
250	if (!pp->msi_domain) {
251		dev_err(pci->dev, "Failed to create MSI domain\n");
252		irq_domain_remove(pp->irq_domain);
253		return -ENOMEM;
254	}
255
256	return 0;
257}
258
259static void dw_pcie_free_msi(struct dw_pcie_rp *pp)
260{
261	u32 ctrl;
262
263	for (ctrl = 0; ctrl < MAX_MSI_CTRLS; ctrl++) {
264		if (pp->msi_irq[ctrl] > 0)
265			irq_set_chained_handler_and_data(pp->msi_irq[ctrl],
266							 NULL, NULL);
267	}
268
269	irq_domain_remove(pp->msi_domain);
270	irq_domain_remove(pp->irq_domain);
271}
272
273static void dw_pcie_msi_init(struct dw_pcie_rp *pp)
274{
275	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
276	u64 msi_target = (u64)pp->msi_data;
277
278	if (!pci_msi_enabled() || !pp->has_msi_ctrl)
279		return;
280
281	/* Program the msi_data */
282	dw_pcie_writel_dbi(pci, PCIE_MSI_ADDR_LO, lower_32_bits(msi_target));
283	dw_pcie_writel_dbi(pci, PCIE_MSI_ADDR_HI, upper_32_bits(msi_target));
284}
285
286static int dw_pcie_parse_split_msi_irq(struct dw_pcie_rp *pp)
287{
288	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
289	struct device *dev = pci->dev;
290	struct platform_device *pdev = to_platform_device(dev);
291	u32 ctrl, max_vectors;
292	int irq;
293
294	/* Parse any "msiX" IRQs described in the devicetree */
295	for (ctrl = 0; ctrl < MAX_MSI_CTRLS; ctrl++) {
296		char msi_name[] = "msiX";
297
298		msi_name[3] = '0' + ctrl;
299		irq = platform_get_irq_byname_optional(pdev, msi_name);
300		if (irq == -ENXIO)
301			break;
302		if (irq < 0)
303			return dev_err_probe(dev, irq,
304					     "Failed to parse MSI IRQ '%s'\n",
305					     msi_name);
306
307		pp->msi_irq[ctrl] = irq;
308	}
309
310	/* If no "msiX" IRQs, caller should fallback to "msi" IRQ */
311	if (ctrl == 0)
312		return -ENXIO;
313
314	max_vectors = ctrl * MAX_MSI_IRQS_PER_CTRL;
315	if (pp->num_vectors > max_vectors) {
316		dev_warn(dev, "Exceeding number of MSI vectors, limiting to %u\n",
317			 max_vectors);
318		pp->num_vectors = max_vectors;
319	}
320	if (!pp->num_vectors)
321		pp->num_vectors = max_vectors;
322
323	return 0;
 
 
 
 
324}
 
325
326static int dw_pcie_msi_host_init(struct dw_pcie_rp *pp)
327{
328	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
329	struct device *dev = pci->dev;
 
330	struct platform_device *pdev = to_platform_device(dev);
331	u64 *msi_vaddr = NULL;
 
 
 
 
332	int ret;
333	u32 ctrl, num_ctrls;
334
335	for (ctrl = 0; ctrl < MAX_MSI_CTRLS; ctrl++)
336		pp->irq_mask[ctrl] = ~0;
337
338	if (!pp->msi_irq[0]) {
339		ret = dw_pcie_parse_split_msi_irq(pp);
340		if (ret < 0 && ret != -ENXIO)
341			return ret;
 
 
 
 
342	}
343
344	if (!pp->num_vectors)
345		pp->num_vectors = MSI_DEF_NUM_VECTORS;
346	num_ctrls = pp->num_vectors / MAX_MSI_IRQS_PER_CTRL;
347
348	if (!pp->msi_irq[0]) {
349		pp->msi_irq[0] = platform_get_irq_byname_optional(pdev, "msi");
350		if (pp->msi_irq[0] < 0) {
351			pp->msi_irq[0] = platform_get_irq(pdev, 0);
352			if (pp->msi_irq[0] < 0)
353				return pp->msi_irq[0];
354		}
355	}
356
357	dev_dbg(dev, "Using %d MSI vectors\n", pp->num_vectors);
358
359	pp->msi_irq_chip = &dw_pci_msi_bottom_irq_chip;
360
361	ret = dw_pcie_allocate_domains(pp);
362	if (ret)
363		return ret;
364
365	for (ctrl = 0; ctrl < num_ctrls; ctrl++) {
366		if (pp->msi_irq[ctrl] > 0)
367			irq_set_chained_handler_and_data(pp->msi_irq[ctrl],
368						    dw_chained_msi_isr, pp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369	}
370
371	/*
372	 * Even though the iMSI-RX Module supports 64-bit addresses some
373	 * peripheral PCIe devices may lack 64-bit message support. In
374	 * order not to miss MSI TLPs from those devices the MSI target
375	 * address has to be within the lowest 4GB.
376	 *
377	 * Note until there is a better alternative found the reservation is
378	 * done by allocating from the artificially limited DMA-coherent
379	 * memory.
380	 */
381	ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
382	if (!ret)
383		msi_vaddr = dmam_alloc_coherent(dev, sizeof(u64), &pp->msi_data,
384						GFP_KERNEL);
385
386	if (!msi_vaddr) {
387		dev_warn(dev, "Failed to allocate 32-bit MSI address\n");
388		dma_set_coherent_mask(dev, DMA_BIT_MASK(64));
389		msi_vaddr = dmam_alloc_coherent(dev, sizeof(u64), &pp->msi_data,
390						GFP_KERNEL);
391		if (!msi_vaddr) {
392			dev_err(dev, "Failed to allocate MSI address\n");
393			dw_pcie_free_msi(pp);
394			return -ENOMEM;
395		}
396	}
397
398	return 0;
399}
400
401int dw_pcie_host_init(struct dw_pcie_rp *pp)
402{
403	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
404	struct device *dev = pci->dev;
405	struct device_node *np = dev->of_node;
406	struct platform_device *pdev = to_platform_device(dev);
407	struct resource_entry *win;
408	struct pci_host_bridge *bridge;
409	struct resource *res;
410	int ret;
411
412	raw_spin_lock_init(&pp->lock);
413
414	ret = dw_pcie_get_resources(pci);
415	if (ret)
416		return ret;
417
418	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "config");
419	if (res) {
420		pp->cfg0_size = resource_size(res);
421		pp->cfg0_base = res->start;
422
423		pp->va_cfg0_base = devm_pci_remap_cfg_resource(dev, res);
424		if (IS_ERR(pp->va_cfg0_base))
425			return PTR_ERR(pp->va_cfg0_base);
426	} else {
427		dev_err(dev, "Missing *config* reg space\n");
428		return -ENODEV;
429	}
430
431	bridge = devm_pci_alloc_host_bridge(dev, 0);
432	if (!bridge)
433		return -ENOMEM;
434
435	pp->bridge = bridge;
436
437	/* Get the I/O range from DT */
438	win = resource_list_first_type(&bridge->windows, IORESOURCE_IO);
439	if (win) {
440		pp->io_size = resource_size(win->res);
441		pp->io_bus_addr = win->res->start - win->offset;
442		pp->io_base = pci_pio_to_address(win->res->start);
443	}
444
445	/* Set default bus ops */
446	bridge->ops = &dw_pcie_ops;
447	bridge->child_ops = &dw_child_pcie_ops;
448
449	if (pp->ops->init) {
450		ret = pp->ops->init(pp);
451		if (ret)
452			return ret;
453	}
454
455	if (pci_msi_enabled()) {
456		pp->has_msi_ctrl = !(pp->ops->msi_init ||
457				     of_property_read_bool(np, "msi-parent") ||
458				     of_property_read_bool(np, "msi-map"));
459
460		/*
461		 * For the has_msi_ctrl case the default assignment is handled
462		 * in the dw_pcie_msi_host_init().
 
463		 */
464		if (!pp->has_msi_ctrl && !pp->num_vectors) {
465			pp->num_vectors = MSI_DEF_NUM_VECTORS;
466		} else if (pp->num_vectors > MAX_MSI_IRQS) {
467			dev_err(dev, "Invalid number of vectors\n");
468			ret = -EINVAL;
469			goto err_deinit_host;
 
 
 
 
 
470		}
471
472		if (pp->ops->msi_init) {
473			ret = pp->ops->msi_init(pp);
 
 
 
 
 
 
 
 
 
 
 
474			if (ret < 0)
475				goto err_deinit_host;
476		} else if (pp->has_msi_ctrl) {
477			ret = dw_pcie_msi_host_init(pp);
478			if (ret < 0)
479				goto err_deinit_host;
480		}
481	}
482
483	dw_pcie_version_detect(pci);
 
 
 
 
484
485	dw_pcie_iatu_detect(pci);
486
487	ret = dw_pcie_edma_detect(pci);
488	if (ret)
 
 
 
 
 
 
 
 
489		goto err_free_msi;
490
491	ret = dw_pcie_setup_rc(pp);
492	if (ret)
493		goto err_remove_edma;
494
495	if (!dw_pcie_link_up(pci)) {
496		ret = dw_pcie_start_link(pci);
497		if (ret)
498			goto err_remove_edma;
499	}
500
501	/* Ignore errors, the link may come up later */
502	dw_pcie_wait_for_link(pci);
503
 
504	bridge->sysdata = pp;
 
 
 
 
505
506	ret = pci_host_probe(bridge);
507	if (ret)
508		goto err_stop_link;
509
510	if (pp->ops->post_init)
511		pp->ops->post_init(pp);
512
513	return 0;
 
 
 
 
514
515err_stop_link:
516	dw_pcie_stop_link(pci);
517
518err_remove_edma:
519	dw_pcie_edma_remove(pci);
520
521err_free_msi:
522	if (pp->has_msi_ctrl)
523		dw_pcie_free_msi(pp);
524
525err_deinit_host:
526	if (pp->ops->deinit)
527		pp->ops->deinit(pp);
528
529	return ret;
530}
531EXPORT_SYMBOL_GPL(dw_pcie_host_init);
532
533void dw_pcie_host_deinit(struct dw_pcie_rp *pp)
534{
535	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
536
537	pci_stop_root_bus(pp->bridge->bus);
538	pci_remove_root_bus(pp->bridge->bus);
539
540	dw_pcie_stop_link(pci);
541
542	dw_pcie_edma_remove(pci);
543
544	if (pp->has_msi_ctrl)
545		dw_pcie_free_msi(pp);
546
547	if (pp->ops->deinit)
548		pp->ops->deinit(pp);
549}
550EXPORT_SYMBOL_GPL(dw_pcie_host_deinit);
551
552static void __iomem *dw_pcie_other_conf_map_bus(struct pci_bus *bus,
553						unsigned int devfn, int where)
554{
555	struct dw_pcie_rp *pp = bus->sysdata;
 
 
 
 
556	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
557	int type, ret;
558	u32 busdev;
559
560	/*
561	 * Checking whether the link is up here is a last line of defense
562	 * against platforms that forward errors on the system bus as
563	 * SError upon PCI configuration transactions issued when the link
564	 * is down. This check is racy by definition and does not stop
565	 * the system from triggering an SError if the link goes down
566	 * after this check is performed.
567	 */
568	if (!dw_pcie_link_up(pci))
569		return NULL;
570
571	busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
572		 PCIE_ATU_FUNC(PCI_FUNC(devfn));
573
574	if (pci_is_root_bus(bus->parent))
575		type = PCIE_ATU_TYPE_CFG0;
576	else
 
 
 
577		type = PCIE_ATU_TYPE_CFG1;
 
 
 
 
578
579	ret = dw_pcie_prog_outbound_atu(pci, 0, type, pp->cfg0_base, busdev,
580					pp->cfg0_size);
581	if (ret)
582		return NULL;
 
 
 
583
584	return pp->va_cfg0_base + where;
585}
 
 
586
587static int dw_pcie_rd_other_conf(struct pci_bus *bus, unsigned int devfn,
588				 int where, int size, u32 *val)
589{
590	struct dw_pcie_rp *pp = bus->sysdata;
591	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
592	int ret;
593
594	ret = pci_generic_config_read(bus, devfn, where, size, val);
595	if (ret != PCIBIOS_SUCCESSFUL)
596		return ret;
597
598	if (pp->cfg0_io_shared) {
599		ret = dw_pcie_prog_outbound_atu(pci, 0, PCIE_ATU_TYPE_IO,
600						pp->io_base, pp->io_bus_addr,
601						pp->io_size);
602		if (ret)
603			return PCIBIOS_SET_FAILED;
604	}
605
606	return PCIBIOS_SUCCESSFUL;
607}
608
609static int dw_pcie_wr_other_conf(struct pci_bus *bus, unsigned int devfn,
610				 int where, int size, u32 val)
611{
612	struct dw_pcie_rp *pp = bus->sysdata;
613	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
614	int ret;
615
616	ret = pci_generic_config_write(bus, devfn, where, size, val);
617	if (ret != PCIBIOS_SUCCESSFUL)
618		return ret;
619
620	if (pp->cfg0_io_shared) {
621		ret = dw_pcie_prog_outbound_atu(pci, 0, PCIE_ATU_TYPE_IO,
622						pp->io_base, pp->io_bus_addr,
623						pp->io_size);
624		if (ret)
625			return PCIBIOS_SET_FAILED;
626	}
627
628	return PCIBIOS_SUCCESSFUL;
629}
630
631static struct pci_ops dw_child_pcie_ops = {
632	.map_bus = dw_pcie_other_conf_map_bus,
633	.read = dw_pcie_rd_other_conf,
634	.write = dw_pcie_wr_other_conf,
635};
636
637void __iomem *dw_pcie_own_conf_map_bus(struct pci_bus *bus, unsigned int devfn, int where)
638{
639	struct dw_pcie_rp *pp = bus->sysdata;
640	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 
641
642	if (PCI_SLOT(devfn) > 0)
643		return NULL;
644
645	return pci->dbi_base + where;
646}
647EXPORT_SYMBOL_GPL(dw_pcie_own_conf_map_bus);
648
649static struct pci_ops dw_pcie_ops = {
650	.map_bus = dw_pcie_own_conf_map_bus,
651	.read = pci_generic_config_read,
652	.write = pci_generic_config_write,
653};
654
655static int dw_pcie_iatu_setup(struct dw_pcie_rp *pp)
 
656{
657	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
658	struct resource_entry *entry;
659	int i, ret;
660
661	/* Note the very first outbound ATU is used for CFG IOs */
662	if (!pci->num_ob_windows) {
663		dev_err(pci->dev, "No outbound iATU found\n");
664		return -EINVAL;
665	}
666
667	/*
668	 * Ensure all out/inbound windows are disabled before proceeding with
669	 * the MEM/IO (dma-)ranges setups.
670	 */
671	for (i = 0; i < pci->num_ob_windows; i++)
672		dw_pcie_disable_atu(pci, PCIE_ATU_REGION_DIR_OB, i);
673
674	for (i = 0; i < pci->num_ib_windows; i++)
675		dw_pcie_disable_atu(pci, PCIE_ATU_REGION_DIR_IB, i);
676
677	i = 0;
678	resource_list_for_each_entry(entry, &pp->bridge->windows) {
679		if (resource_type(entry->res) != IORESOURCE_MEM)
680			continue;
681
682		if (pci->num_ob_windows <= ++i)
683			break;
684
685		ret = dw_pcie_prog_outbound_atu(pci, i, PCIE_ATU_TYPE_MEM,
686						entry->res->start,
687						entry->res->start - entry->offset,
688						resource_size(entry->res));
689		if (ret) {
690			dev_err(pci->dev, "Failed to set MEM range %pr\n",
691				entry->res);
692			return ret;
693		}
694	}
695
696	if (pp->io_size) {
697		if (pci->num_ob_windows > ++i) {
698			ret = dw_pcie_prog_outbound_atu(pci, i, PCIE_ATU_TYPE_IO,
699							pp->io_base,
700							pp->io_bus_addr,
701							pp->io_size);
702			if (ret) {
703				dev_err(pci->dev, "Failed to set IO range %pr\n",
704					entry->res);
705				return ret;
706			}
707		} else {
708			pp->cfg0_io_shared = true;
709		}
710	}
711
712	if (pci->num_ob_windows <= i)
713		dev_warn(pci->dev, "Ranges exceed outbound iATU size (%d)\n",
714			 pci->num_ob_windows);
715
716	i = 0;
717	resource_list_for_each_entry(entry, &pp->bridge->dma_ranges) {
718		if (resource_type(entry->res) != IORESOURCE_MEM)
719			continue;
720
721		if (pci->num_ib_windows <= i)
722			break;
 
 
723
724		ret = dw_pcie_prog_inbound_atu(pci, i++, PCIE_ATU_TYPE_MEM,
725					       entry->res->start,
726					       entry->res->start - entry->offset,
727					       resource_size(entry->res));
728		if (ret) {
729			dev_err(pci->dev, "Failed to set DMA range %pr\n",
730				entry->res);
731			return ret;
732		}
733	}
734
735	if (pci->num_ib_windows <= i)
736		dev_warn(pci->dev, "Dma-ranges exceed inbound iATU size (%u)\n",
737			 pci->num_ib_windows);
738
739	return 0;
740}
741
742int dw_pcie_setup_rc(struct dw_pcie_rp *pp)
 
 
 
 
 
743{
 
744	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
745	u32 val, ctrl, num_ctrls;
746	int ret;
747
748	/*
749	 * Enable DBI read-only registers for writing/updating configuration.
750	 * Write permission gets disabled towards the end of this function.
751	 */
752	dw_pcie_dbi_ro_wr_en(pci);
753
754	dw_pcie_setup(pci);
755
756	if (pp->has_msi_ctrl) {
757		num_ctrls = pp->num_vectors / MAX_MSI_IRQS_PER_CTRL;
758
759		/* Initialize IRQ Status array */
760		for (ctrl = 0; ctrl < num_ctrls; ctrl++) {
761			dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_MASK +
 
762					    (ctrl * MSI_REG_CTRL_BLOCK_SIZE),
763					    pp->irq_mask[ctrl]);
764			dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_ENABLE +
765					    (ctrl * MSI_REG_CTRL_BLOCK_SIZE),
766					    ~0);
767		}
768	}
769
770	dw_pcie_msi_init(pp);
771
772	/* Setup RC BARs */
773	dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_0, 0x00000004);
774	dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_1, 0x00000000);
775
776	/* Setup interrupt pins */
777	val = dw_pcie_readl_dbi(pci, PCI_INTERRUPT_LINE);
778	val &= 0xffff00ff;
779	val |= 0x00000100;
780	dw_pcie_writel_dbi(pci, PCI_INTERRUPT_LINE, val);
781
782	/* Setup bus numbers */
783	val = dw_pcie_readl_dbi(pci, PCI_PRIMARY_BUS);
784	val &= 0xff000000;
785	val |= 0x00ff0100;
786	dw_pcie_writel_dbi(pci, PCI_PRIMARY_BUS, val);
787
788	/* Setup command register */
789	val = dw_pcie_readl_dbi(pci, PCI_COMMAND);
790	val &= 0xffff0000;
791	val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
792		PCI_COMMAND_MASTER | PCI_COMMAND_SERR;
793	dw_pcie_writel_dbi(pci, PCI_COMMAND, val);
794
795	/*
796	 * If the platform provides its own child bus config accesses, it means
797	 * the platform uses its own address translation component rather than
798	 * ATU, so we should not program the ATU here.
799	 */
800	if (pp->bridge->child_ops == &dw_child_pcie_ops) {
801		ret = dw_pcie_iatu_setup(pp);
802		if (ret)
803			return ret;
 
 
 
 
804	}
805
806	dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_0, 0);
807
808	/* Program correct class for RC */
809	dw_pcie_writew_dbi(pci, PCI_CLASS_DEVICE, PCI_CLASS_BRIDGE_PCI);
810
811	val = dw_pcie_readl_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL);
812	val |= PORT_LOGIC_SPEED_CHANGE;
813	dw_pcie_writel_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL, val);
814
815	dw_pcie_dbi_ro_wr_dis(pci);
816
817	return 0;
818}
819EXPORT_SYMBOL_GPL(dw_pcie_setup_rc);
820
821int dw_pcie_suspend_noirq(struct dw_pcie *pci)
822{
823	u8 offset = dw_pcie_find_capability(pci, PCI_CAP_ID_EXP);
824	u32 val;
825	int ret;
826
827	/*
828	 * If L1SS is supported, then do not put the link into L2 as some
829	 * devices such as NVMe expect low resume latency.
830	 */
831	if (dw_pcie_readw_dbi(pci, offset + PCI_EXP_LNKCTL) & PCI_EXP_LNKCTL_ASPM_L1)
832		return 0;
833
834	if (dw_pcie_get_ltssm(pci) <= DW_PCIE_LTSSM_DETECT_ACT)
835		return 0;
836
837	if (!pci->pp.ops->pme_turn_off)
838		return 0;
839
840	pci->pp.ops->pme_turn_off(&pci->pp);
841
842	ret = read_poll_timeout(dw_pcie_get_ltssm, val, val == DW_PCIE_LTSSM_L2_IDLE,
843				PCIE_PME_TO_L2_TIMEOUT_US/10,
844				PCIE_PME_TO_L2_TIMEOUT_US, false, pci);
845	if (ret) {
846		dev_err(pci->dev, "Timeout waiting for L2 entry! LTSSM: 0x%x\n", val);
847		return ret;
848	}
849
850	if (pci->pp.ops->deinit)
851		pci->pp.ops->deinit(&pci->pp);
852
853	pci->suspended = true;
854
855	return ret;
856}
857EXPORT_SYMBOL_GPL(dw_pcie_suspend_noirq);
858
859int dw_pcie_resume_noirq(struct dw_pcie *pci)
860{
861	int ret;
862
863	if (!pci->suspended)
864		return 0;
865
866	pci->suspended = false;
867
868	if (pci->pp.ops->init) {
869		ret = pci->pp.ops->init(&pci->pp);
870		if (ret) {
871			dev_err(pci->dev, "Host init failed: %d\n", ret);
872			return ret;
873		}
874	}
875
876	dw_pcie_setup_rc(&pci->pp);
877
878	ret = dw_pcie_start_link(pci);
879	if (ret)
880		return ret;
881
882	ret = dw_pcie_wait_for_link(pci);
883	if (ret)
884		return ret;
885
886	return ret;
887}
888EXPORT_SYMBOL_GPL(dw_pcie_resume_noirq);