Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.1.
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * PCIe host controller driver for Mobiveil PCIe Host controller
  4 *
  5 * Copyright (c) 2018 Mobiveil Inc.
  6 * Copyright 2019-2020 NXP
  7 *
  8 * Author: Subrahmanya Lingappa <l.subrahmanya@mobiveil.co.in>
  9 *	   Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
 10 */
 11
 12#include <linux/init.h>
 13#include <linux/interrupt.h>
 14#include <linux/irq.h>
 15#include <linux/irqchip/chained_irq.h>
 16#include <linux/irqdomain.h>
 17#include <linux/kernel.h>
 18#include <linux/module.h>
 19#include <linux/msi.h>
 20#include <linux/of_address.h>
 21#include <linux/of_irq.h>
 22#include <linux/of_platform.h>
 23#include <linux/of_pci.h>
 24#include <linux/pci.h>
 25#include <linux/platform_device.h>
 26#include <linux/slab.h>
 27
 28#include "pcie-mobiveil.h"
 29
 30static bool mobiveil_pcie_valid_device(struct pci_bus *bus, unsigned int devfn)
 31{
 32	/* Only one device down on each root port */
 33	if (pci_is_root_bus(bus) && (devfn > 0))
 34		return false;
 35
 36	/*
 37	 * Do not read more than one device on the bus directly
 38	 * attached to RC
 39	 */
 40	if ((bus->primary == to_pci_host_bridge(bus->bridge)->busnr) && (PCI_SLOT(devfn) > 0))
 41		return false;
 42
 43	return true;
 44}
 45
 46/*
 47 * mobiveil_pcie_map_bus - routine to get the configuration base of either
 48 * root port or endpoint
 49 */
 50static void __iomem *mobiveil_pcie_map_bus(struct pci_bus *bus,
 51					   unsigned int devfn, int where)
 52{
 53	struct mobiveil_pcie *pcie = bus->sysdata;
 54	struct mobiveil_root_port *rp = &pcie->rp;
 55	u32 value;
 56
 57	if (!mobiveil_pcie_valid_device(bus, devfn))
 58		return NULL;
 59
 60	/* RC config access */
 61	if (pci_is_root_bus(bus))
 62		return pcie->csr_axi_slave_base + where;
 63
 64	/*
 65	 * EP config access (in Config/APIO space)
 66	 * Program PEX Address base (31..16 bits) with appropriate value
 67	 * (BDF) in PAB_AXI_AMAP_PEX_WIN_L0 Register.
 68	 * Relies on pci_lock serialization
 69	 */
 70	value = bus->number << PAB_BUS_SHIFT |
 71		PCI_SLOT(devfn) << PAB_DEVICE_SHIFT |
 72		PCI_FUNC(devfn) << PAB_FUNCTION_SHIFT;
 73
 74	mobiveil_csr_writel(pcie, value, PAB_AXI_AMAP_PEX_WIN_L(WIN_NUM_0));
 75
 76	return rp->config_axi_slave_base + where;
 77}
 78
 79static struct pci_ops mobiveil_pcie_ops = {
 80	.map_bus = mobiveil_pcie_map_bus,
 81	.read = pci_generic_config_read,
 82	.write = pci_generic_config_write,
 83};
 84
 85static void mobiveil_pcie_isr(struct irq_desc *desc)
 86{
 87	struct irq_chip *chip = irq_desc_get_chip(desc);
 88	struct mobiveil_pcie *pcie = irq_desc_get_handler_data(desc);
 89	struct device *dev = &pcie->pdev->dev;
 90	struct mobiveil_root_port *rp = &pcie->rp;
 91	struct mobiveil_msi *msi = &rp->msi;
 92	u32 msi_data, msi_addr_lo, msi_addr_hi;
 93	u32 intr_status, msi_status;
 94	unsigned long shifted_status;
 95	u32 bit, virq, val, mask;
 96
 97	/*
 98	 * The core provides a single interrupt for both INTx/MSI messages.
 99	 * So we'll read both INTx and MSI status
100	 */
101
102	chained_irq_enter(chip, desc);
103
104	/* read INTx status */
105	val = mobiveil_csr_readl(pcie, PAB_INTP_AMBA_MISC_STAT);
106	mask = mobiveil_csr_readl(pcie, PAB_INTP_AMBA_MISC_ENB);
107	intr_status = val & mask;
108
109	/* Handle INTx */
110	if (intr_status & PAB_INTP_INTX_MASK) {
111		shifted_status = mobiveil_csr_readl(pcie,
112						    PAB_INTP_AMBA_MISC_STAT);
113		shifted_status &= PAB_INTP_INTX_MASK;
114		shifted_status >>= PAB_INTX_START;
115		do {
116			for_each_set_bit(bit, &shifted_status, PCI_NUM_INTX) {
117				virq = irq_find_mapping(rp->intx_domain,
118							bit + 1);
119				if (virq)
120					generic_handle_irq(virq);
121				else
122					dev_err_ratelimited(dev, "unexpected IRQ, INT%d\n",
123							    bit);
124
125				/* clear interrupt handled */
126				mobiveil_csr_writel(pcie,
127						    1 << (PAB_INTX_START + bit),
128						    PAB_INTP_AMBA_MISC_STAT);
129			}
130
131			shifted_status = mobiveil_csr_readl(pcie,
132							    PAB_INTP_AMBA_MISC_STAT);
133			shifted_status &= PAB_INTP_INTX_MASK;
134			shifted_status >>= PAB_INTX_START;
135		} while (shifted_status != 0);
136	}
137
138	/* read extra MSI status register */
139	msi_status = readl_relaxed(pcie->apb_csr_base + MSI_STATUS_OFFSET);
140
141	/* handle MSI interrupts */
142	while (msi_status & 1) {
143		msi_data = readl_relaxed(pcie->apb_csr_base + MSI_DATA_OFFSET);
144
145		/*
146		 * MSI_STATUS_OFFSET register gets updated to zero
147		 * once we pop not only the MSI data but also address
148		 * from MSI hardware FIFO. So keeping these following
149		 * two dummy reads.
150		 */
151		msi_addr_lo = readl_relaxed(pcie->apb_csr_base +
152					    MSI_ADDR_L_OFFSET);
153		msi_addr_hi = readl_relaxed(pcie->apb_csr_base +
154					    MSI_ADDR_H_OFFSET);
155		dev_dbg(dev, "MSI registers, data: %08x, addr: %08x:%08x\n",
156			msi_data, msi_addr_hi, msi_addr_lo);
157
158		virq = irq_find_mapping(msi->dev_domain, msi_data);
159		if (virq)
160			generic_handle_irq(virq);
161
162		msi_status = readl_relaxed(pcie->apb_csr_base +
163					   MSI_STATUS_OFFSET);
164	}
165
166	/* Clear the interrupt status */
167	mobiveil_csr_writel(pcie, intr_status, PAB_INTP_AMBA_MISC_STAT);
168	chained_irq_exit(chip, desc);
169}
170
171static int mobiveil_pcie_parse_dt(struct mobiveil_pcie *pcie)
172{
173	struct device *dev = &pcie->pdev->dev;
174	struct platform_device *pdev = pcie->pdev;
175	struct device_node *node = dev->of_node;
176	struct mobiveil_root_port *rp = &pcie->rp;
177	struct resource *res;
178
179	/* map config resource */
180	res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
181					   "config_axi_slave");
182	rp->config_axi_slave_base = devm_pci_remap_cfg_resource(dev, res);
183	if (IS_ERR(rp->config_axi_slave_base))
184		return PTR_ERR(rp->config_axi_slave_base);
185	rp->ob_io_res = res;
186
187	/* map csr resource */
188	res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
189					   "csr_axi_slave");
190	pcie->csr_axi_slave_base = devm_pci_remap_cfg_resource(dev, res);
191	if (IS_ERR(pcie->csr_axi_slave_base))
192		return PTR_ERR(pcie->csr_axi_slave_base);
193	pcie->pcie_reg_base = res->start;
194
195	/* read the number of windows requested */
196	if (of_property_read_u32(node, "apio-wins", &pcie->apio_wins))
197		pcie->apio_wins = MAX_PIO_WINDOWS;
198
199	if (of_property_read_u32(node, "ppio-wins", &pcie->ppio_wins))
200		pcie->ppio_wins = MAX_PIO_WINDOWS;
201
202	return 0;
203}
204
205static void mobiveil_pcie_enable_msi(struct mobiveil_pcie *pcie)
206{
207	phys_addr_t msg_addr = pcie->pcie_reg_base;
208	struct mobiveil_msi *msi = &pcie->rp.msi;
209
210	msi->num_of_vectors = PCI_NUM_MSI;
211	msi->msi_pages_phys = (phys_addr_t)msg_addr;
212
213	writel_relaxed(lower_32_bits(msg_addr),
214		       pcie->apb_csr_base + MSI_BASE_LO_OFFSET);
215	writel_relaxed(upper_32_bits(msg_addr),
216		       pcie->apb_csr_base + MSI_BASE_HI_OFFSET);
217	writel_relaxed(4096, pcie->apb_csr_base + MSI_SIZE_OFFSET);
218	writel_relaxed(1, pcie->apb_csr_base + MSI_ENABLE_OFFSET);
219}
220
221int mobiveil_host_init(struct mobiveil_pcie *pcie, bool reinit)
222{
223	struct mobiveil_root_port *rp = &pcie->rp;
224	struct pci_host_bridge *bridge = rp->bridge;
225	u32 value, pab_ctrl, type;
226	struct resource_entry *win;
227
228	pcie->ib_wins_configured = 0;
229	pcie->ob_wins_configured = 0;
230
231	if (!reinit) {
232		/* setup bus numbers */
233		value = mobiveil_csr_readl(pcie, PCI_PRIMARY_BUS);
234		value &= 0xff000000;
235		value |= 0x00ff0100;
236		mobiveil_csr_writel(pcie, value, PCI_PRIMARY_BUS);
237	}
238
239	/*
240	 * program Bus Master Enable Bit in Command Register in PAB Config
241	 * Space
242	 */
243	value = mobiveil_csr_readl(pcie, PCI_COMMAND);
244	value |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
245	mobiveil_csr_writel(pcie, value, PCI_COMMAND);
246
247	/*
248	 * program PIO Enable Bit to 1 (and PEX PIO Enable to 1) in PAB_CTRL
249	 * register
250	 */
251	pab_ctrl = mobiveil_csr_readl(pcie, PAB_CTRL);
252	pab_ctrl |= (1 << AMBA_PIO_ENABLE_SHIFT) | (1 << PEX_PIO_ENABLE_SHIFT);
253	mobiveil_csr_writel(pcie, pab_ctrl, PAB_CTRL);
254
255	/*
256	 * program PIO Enable Bit to 1 and Config Window Enable Bit to 1 in
257	 * PAB_AXI_PIO_CTRL Register
258	 */
259	value = mobiveil_csr_readl(pcie, PAB_AXI_PIO_CTRL);
260	value |= APIO_EN_MASK;
261	mobiveil_csr_writel(pcie, value, PAB_AXI_PIO_CTRL);
262
263	/* Enable PCIe PIO master */
264	value = mobiveil_csr_readl(pcie, PAB_PEX_PIO_CTRL);
265	value |= 1 << PIO_ENABLE_SHIFT;
266	mobiveil_csr_writel(pcie, value, PAB_PEX_PIO_CTRL);
267
268	/*
269	 * we'll program one outbound window for config reads and
270	 * another default inbound window for all the upstream traffic
271	 * rest of the outbound windows will be configured according to
272	 * the "ranges" field defined in device tree
273	 */
274
275	/* config outbound translation window */
276	program_ob_windows(pcie, WIN_NUM_0, rp->ob_io_res->start, 0,
277			   CFG_WINDOW_TYPE, resource_size(rp->ob_io_res));
278
279	/* memory inbound translation window */
280	program_ib_windows(pcie, WIN_NUM_0, 0, 0, MEM_WINDOW_TYPE, IB_WIN_SIZE);
281
282	/* Get the I/O and memory ranges from DT */
283	resource_list_for_each_entry(win, &bridge->windows) {
284		if (resource_type(win->res) == IORESOURCE_MEM)
285			type = MEM_WINDOW_TYPE;
286		else if (resource_type(win->res) == IORESOURCE_IO)
287			type = IO_WINDOW_TYPE;
288		else
289			continue;
290
291		/* configure outbound translation window */
292		program_ob_windows(pcie, pcie->ob_wins_configured,
293				   win->res->start,
294				   win->res->start - win->offset,
295				   type, resource_size(win->res));
296	}
297
298	/* fixup for PCIe class register */
299	value = mobiveil_csr_readl(pcie, PAB_INTP_AXI_PIO_CLASS);
300	value &= 0xff;
301	value |= (PCI_CLASS_BRIDGE_PCI << 16);
302	mobiveil_csr_writel(pcie, value, PAB_INTP_AXI_PIO_CLASS);
303
304	return 0;
305}
306
307static void mobiveil_mask_intx_irq(struct irq_data *data)
308{
309	struct irq_desc *desc = irq_to_desc(data->irq);
310	struct mobiveil_pcie *pcie;
311	struct mobiveil_root_port *rp;
312	unsigned long flags;
313	u32 mask, shifted_val;
314
315	pcie = irq_desc_get_chip_data(desc);
316	rp = &pcie->rp;
317	mask = 1 << ((data->hwirq + PAB_INTX_START) - 1);
318	raw_spin_lock_irqsave(&rp->intx_mask_lock, flags);
319	shifted_val = mobiveil_csr_readl(pcie, PAB_INTP_AMBA_MISC_ENB);
320	shifted_val &= ~mask;
321	mobiveil_csr_writel(pcie, shifted_val, PAB_INTP_AMBA_MISC_ENB);
322	raw_spin_unlock_irqrestore(&rp->intx_mask_lock, flags);
323}
324
325static void mobiveil_unmask_intx_irq(struct irq_data *data)
326{
327	struct irq_desc *desc = irq_to_desc(data->irq);
328	struct mobiveil_pcie *pcie;
329	struct mobiveil_root_port *rp;
330	unsigned long flags;
331	u32 shifted_val, mask;
332
333	pcie = irq_desc_get_chip_data(desc);
334	rp = &pcie->rp;
335	mask = 1 << ((data->hwirq + PAB_INTX_START) - 1);
336	raw_spin_lock_irqsave(&rp->intx_mask_lock, flags);
337	shifted_val = mobiveil_csr_readl(pcie, PAB_INTP_AMBA_MISC_ENB);
338	shifted_val |= mask;
339	mobiveil_csr_writel(pcie, shifted_val, PAB_INTP_AMBA_MISC_ENB);
340	raw_spin_unlock_irqrestore(&rp->intx_mask_lock, flags);
341}
342
343static struct irq_chip intx_irq_chip = {
344	.name = "mobiveil_pcie:intx",
345	.irq_enable = mobiveil_unmask_intx_irq,
346	.irq_disable = mobiveil_mask_intx_irq,
347	.irq_mask = mobiveil_mask_intx_irq,
348	.irq_unmask = mobiveil_unmask_intx_irq,
349};
350
351/* routine to setup the INTx related data */
352static int mobiveil_pcie_intx_map(struct irq_domain *domain, unsigned int irq,
353				  irq_hw_number_t hwirq)
354{
355	irq_set_chip_and_handler(irq, &intx_irq_chip, handle_level_irq);
356	irq_set_chip_data(irq, domain->host_data);
357
358	return 0;
359}
360
361/* INTx domain operations structure */
362static const struct irq_domain_ops intx_domain_ops = {
363	.map = mobiveil_pcie_intx_map,
364};
365
366static struct irq_chip mobiveil_msi_irq_chip = {
367	.name = "Mobiveil PCIe MSI",
368	.irq_mask = pci_msi_mask_irq,
369	.irq_unmask = pci_msi_unmask_irq,
370};
371
372static struct msi_domain_info mobiveil_msi_domain_info = {
373	.flags	= (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS |
374		   MSI_FLAG_PCI_MSIX),
375	.chip	= &mobiveil_msi_irq_chip,
376};
377
378static void mobiveil_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
379{
380	struct mobiveil_pcie *pcie = irq_data_get_irq_chip_data(data);
381	phys_addr_t addr = pcie->pcie_reg_base + (data->hwirq * sizeof(int));
382
383	msg->address_lo = lower_32_bits(addr);
384	msg->address_hi = upper_32_bits(addr);
385	msg->data = data->hwirq;
386
387	dev_dbg(&pcie->pdev->dev, "msi#%d address_hi %#x address_lo %#x\n",
388		(int)data->hwirq, msg->address_hi, msg->address_lo);
389}
390
391static int mobiveil_msi_set_affinity(struct irq_data *irq_data,
392				     const struct cpumask *mask, bool force)
393{
394	return -EINVAL;
395}
396
397static struct irq_chip mobiveil_msi_bottom_irq_chip = {
398	.name			= "Mobiveil MSI",
399	.irq_compose_msi_msg	= mobiveil_compose_msi_msg,
400	.irq_set_affinity	= mobiveil_msi_set_affinity,
401};
402
403static int mobiveil_irq_msi_domain_alloc(struct irq_domain *domain,
404					 unsigned int virq,
405					 unsigned int nr_irqs, void *args)
406{
407	struct mobiveil_pcie *pcie = domain->host_data;
408	struct mobiveil_msi *msi = &pcie->rp.msi;
409	unsigned long bit;
410
411	WARN_ON(nr_irqs != 1);
412	mutex_lock(&msi->lock);
413
414	bit = find_first_zero_bit(msi->msi_irq_in_use, msi->num_of_vectors);
415	if (bit >= msi->num_of_vectors) {
416		mutex_unlock(&msi->lock);
417		return -ENOSPC;
418	}
419
420	set_bit(bit, msi->msi_irq_in_use);
421
422	mutex_unlock(&msi->lock);
423
424	irq_domain_set_info(domain, virq, bit, &mobiveil_msi_bottom_irq_chip,
425			    domain->host_data, handle_level_irq, NULL, NULL);
426	return 0;
427}
428
429static void mobiveil_irq_msi_domain_free(struct irq_domain *domain,
430					 unsigned int virq,
431					 unsigned int nr_irqs)
432{
433	struct irq_data *d = irq_domain_get_irq_data(domain, virq);
434	struct mobiveil_pcie *pcie = irq_data_get_irq_chip_data(d);
435	struct mobiveil_msi *msi = &pcie->rp.msi;
436
437	mutex_lock(&msi->lock);
438
439	if (!test_bit(d->hwirq, msi->msi_irq_in_use))
440		dev_err(&pcie->pdev->dev, "trying to free unused MSI#%lu\n",
441			d->hwirq);
442	else
443		__clear_bit(d->hwirq, msi->msi_irq_in_use);
444
445	mutex_unlock(&msi->lock);
446}
447static const struct irq_domain_ops msi_domain_ops = {
448	.alloc	= mobiveil_irq_msi_domain_alloc,
449	.free	= mobiveil_irq_msi_domain_free,
450};
451
452static int mobiveil_allocate_msi_domains(struct mobiveil_pcie *pcie)
453{
454	struct device *dev = &pcie->pdev->dev;
455	struct fwnode_handle *fwnode = of_node_to_fwnode(dev->of_node);
456	struct mobiveil_msi *msi = &pcie->rp.msi;
457
458	mutex_init(&msi->lock);
459	msi->dev_domain = irq_domain_add_linear(NULL, msi->num_of_vectors,
460						&msi_domain_ops, pcie);
461	if (!msi->dev_domain) {
462		dev_err(dev, "failed to create IRQ domain\n");
463		return -ENOMEM;
464	}
465
466	msi->msi_domain = pci_msi_create_irq_domain(fwnode,
467						    &mobiveil_msi_domain_info,
468						    msi->dev_domain);
469	if (!msi->msi_domain) {
470		dev_err(dev, "failed to create MSI domain\n");
471		irq_domain_remove(msi->dev_domain);
472		return -ENOMEM;
473	}
474
475	return 0;
476}
477
478static int mobiveil_pcie_init_irq_domain(struct mobiveil_pcie *pcie)
479{
480	struct device *dev = &pcie->pdev->dev;
481	struct device_node *node = dev->of_node;
482	struct mobiveil_root_port *rp = &pcie->rp;
483	int ret;
484
485	/* setup INTx */
486	rp->intx_domain = irq_domain_add_linear(node, PCI_NUM_INTX,
487						&intx_domain_ops, pcie);
488
489	if (!rp->intx_domain) {
490		dev_err(dev, "Failed to get a INTx IRQ domain\n");
491		return -ENOMEM;
492	}
493
494	raw_spin_lock_init(&rp->intx_mask_lock);
495
496	/* setup MSI */
497	ret = mobiveil_allocate_msi_domains(pcie);
498	if (ret)
499		return ret;
500
501	return 0;
502}
503
504static int mobiveil_pcie_integrated_interrupt_init(struct mobiveil_pcie *pcie)
505{
506	struct platform_device *pdev = pcie->pdev;
507	struct device *dev = &pdev->dev;
508	struct mobiveil_root_port *rp = &pcie->rp;
509	struct resource *res;
510	int ret;
511
512	/* map MSI config resource */
513	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "apb_csr");
514	pcie->apb_csr_base = devm_pci_remap_cfg_resource(dev, res);
515	if (IS_ERR(pcie->apb_csr_base))
516		return PTR_ERR(pcie->apb_csr_base);
517
518	/* setup MSI hardware registers */
519	mobiveil_pcie_enable_msi(pcie);
520
521	rp->irq = platform_get_irq(pdev, 0);
522	if (rp->irq < 0)
523		return rp->irq;
524
525	/* initialize the IRQ domains */
526	ret = mobiveil_pcie_init_irq_domain(pcie);
527	if (ret) {
528		dev_err(dev, "Failed creating IRQ Domain\n");
529		return ret;
530	}
531
532	irq_set_chained_handler_and_data(rp->irq, mobiveil_pcie_isr, pcie);
533
534	/* Enable interrupts */
535	mobiveil_csr_writel(pcie, (PAB_INTP_INTX_MASK | PAB_INTP_MSI_MASK),
536			    PAB_INTP_AMBA_MISC_ENB);
537
538
539	return 0;
540}
541
542static int mobiveil_pcie_interrupt_init(struct mobiveil_pcie *pcie)
543{
544	struct mobiveil_root_port *rp = &pcie->rp;
545
546	if (rp->ops->interrupt_init)
547		return rp->ops->interrupt_init(pcie);
548
549	return mobiveil_pcie_integrated_interrupt_init(pcie);
550}
551
552static bool mobiveil_pcie_is_bridge(struct mobiveil_pcie *pcie)
553{
554	u32 header_type;
555
556	header_type = mobiveil_csr_readb(pcie, PCI_HEADER_TYPE);
557	header_type &= 0x7f;
558
559	return header_type == PCI_HEADER_TYPE_BRIDGE;
560}
561
562int mobiveil_pcie_host_probe(struct mobiveil_pcie *pcie)
563{
564	struct mobiveil_root_port *rp = &pcie->rp;
565	struct pci_host_bridge *bridge = rp->bridge;
566	struct device *dev = &pcie->pdev->dev;
567	int ret;
568
569	ret = mobiveil_pcie_parse_dt(pcie);
570	if (ret) {
571		dev_err(dev, "Parsing DT failed, ret: %x\n", ret);
572		return ret;
573	}
574
575	if (!mobiveil_pcie_is_bridge(pcie))
576		return -ENODEV;
577
578	/*
579	 * configure all inbound and outbound windows and prepare the RC for
580	 * config access
581	 */
582	ret = mobiveil_host_init(pcie, false);
583	if (ret) {
584		dev_err(dev, "Failed to initialize host\n");
585		return ret;
586	}
587
588	ret = mobiveil_pcie_interrupt_init(pcie);
589	if (ret) {
590		dev_err(dev, "Interrupt init failed\n");
591		return ret;
592	}
593
594	/* Initialize bridge */
595	bridge->sysdata = pcie;
596	bridge->ops = &mobiveil_pcie_ops;
597
598	ret = mobiveil_bringup_link(pcie);
599	if (ret) {
600		dev_info(dev, "link bring-up failed\n");
601		return ret;
602	}
603
604	return pci_host_probe(bridge);
605}