1 /* Copyright 2008 - 2016 Freescale Semiconductor, Inc.
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are met:
5 * * Redistributions of source code must retain the above copyright
6 * notice, this list of conditions and the following disclaimer.
7 * * Redistributions in binary form must reproduce the above copyright
8 * notice, this list of conditions and the following disclaimer in the
9 * documentation and/or other materials provided with the distribution.
10 * * Neither the name of Freescale Semiconductor nor the
11 * names of its contributors may be used to endorse or promote products
12 * derived from this software without specific prior written permission.
14 * ALTERNATIVELY, this software may be distributed under the terms of the
15 * GNU General Public License ("GPL") as published by the Free Software
16 * Foundation, either version 2 of that License or (at your option) any
19 * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY
20 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #include "qman_priv.h"
33 struct qman_portal *qman_dma_portal;
34 EXPORT_SYMBOL(qman_dma_portal);
36 /* Enable portal interupts (as opposed to polling mode) */
37 #define CONFIG_FSL_DPA_PIRQ_SLOW 1
38 #define CONFIG_FSL_DPA_PIRQ_FAST 1
40 static struct cpumask portal_cpus;
41 static int __qman_portals_probed;
42 /* protect qman global registers and global data shared among portals */
43 static DEFINE_SPINLOCK(qman_lock);
45 static void portal_set_cpu(struct qm_portal_config *pcfg, int cpu)
47 #ifdef CONFIG_FSL_PAMU
48 struct device *dev = pcfg->dev;
51 pcfg->iommu_domain = iommu_domain_alloc(&platform_bus_type);
52 if (!pcfg->iommu_domain) {
53 dev_err(dev, "%s(): iommu_domain_alloc() failed", __func__);
56 ret = fsl_pamu_configure_l1_stash(pcfg->iommu_domain, cpu);
58 dev_err(dev, "%s(): fsl_pamu_configure_l1_stash() = %d",
62 ret = iommu_attach_device(pcfg->iommu_domain, dev);
64 dev_err(dev, "%s(): iommu_device_attach() = %d", __func__,
71 qman_set_sdest(pcfg->channel, cpu);
75 #ifdef CONFIG_FSL_PAMU
77 iommu_domain_free(pcfg->iommu_domain);
78 pcfg->iommu_domain = NULL;
82 static struct qman_portal *init_pcfg(struct qm_portal_config *pcfg)
84 struct qman_portal *p;
87 /* We need the same LIODN offset for all portals */
88 qman_liodn_fixup(pcfg->channel);
90 pcfg->iommu_domain = NULL;
91 portal_set_cpu(pcfg, pcfg->cpu);
93 p = qman_create_affine_portal(pcfg, NULL);
95 dev_crit(pcfg->dev, "%s: Portal failure on cpu %d\n",
100 /* Determine what should be interrupt-vs-poll driven */
101 #ifdef CONFIG_FSL_DPA_PIRQ_SLOW
102 irq_sources |= QM_PIRQ_EQCI | QM_PIRQ_EQRI | QM_PIRQ_MRI |
105 #ifdef CONFIG_FSL_DPA_PIRQ_FAST
106 irq_sources |= QM_PIRQ_DQRI;
108 qman_p_irqsource_add(p, irq_sources);
110 spin_lock(&qman_lock);
111 if (cpumask_equal(&portal_cpus, cpu_possible_mask)) {
112 /* all assigned portals are initialized now */
116 if (!qman_dma_portal)
119 spin_unlock(&qman_lock);
121 dev_info(pcfg->dev, "Portal initialised, cpu %d\n", pcfg->cpu);
126 static void qman_portal_update_sdest(const struct qm_portal_config *pcfg,
129 #ifdef CONFIG_FSL_PAMU /* TODO */
130 if (pcfg->iommu_domain) {
131 if (fsl_pamu_configure_l1_stash(pcfg->iommu_domain, cpu) < 0) {
133 "Failed to update pamu stash setting\n");
138 qman_set_sdest(pcfg->channel, cpu);
141 static int qman_offline_cpu(unsigned int cpu)
143 struct qman_portal *p;
144 const struct qm_portal_config *pcfg;
146 p = affine_portals[cpu];
148 pcfg = qman_get_qm_portal_config(p);
150 /* select any other online CPU */
151 cpu = cpumask_any_but(cpu_online_mask, cpu);
152 irq_set_affinity(pcfg->irq, cpumask_of(cpu));
153 qman_portal_update_sdest(pcfg, cpu);
159 static int qman_online_cpu(unsigned int cpu)
161 struct qman_portal *p;
162 const struct qm_portal_config *pcfg;
164 p = affine_portals[cpu];
166 pcfg = qman_get_qm_portal_config(p);
168 irq_set_affinity(pcfg->irq, cpumask_of(cpu));
169 qman_portal_update_sdest(pcfg, cpu);
175 int qman_portals_probed(void)
177 return __qman_portals_probed;
179 EXPORT_SYMBOL_GPL(qman_portals_probed);
181 static int qman_portal_probe(struct platform_device *pdev)
183 struct device *dev = &pdev->dev;
184 struct device_node *node = dev->of_node;
185 struct qm_portal_config *pcfg;
186 struct resource *addr_phys[2];
187 int irq, cpu, err, i;
190 err = qman_is_probed();
192 return -EPROBE_DEFER;
194 dev_err(&pdev->dev, "failing probe due to qman probe error\n");
198 pcfg = devm_kmalloc(dev, sizeof(*pcfg), GFP_KERNEL);
200 __qman_portals_probed = -1;
206 addr_phys[0] = platform_get_resource(pdev, IORESOURCE_MEM,
209 dev_err(dev, "Can't get %pOF property 'reg::CE'\n", node);
213 addr_phys[1] = platform_get_resource(pdev, IORESOURCE_MEM,
216 dev_err(dev, "Can't get %pOF property 'reg::CI'\n", node);
220 err = of_property_read_u32(node, "cell-index", &val);
222 dev_err(dev, "Can't get %pOF property 'cell-index'\n", node);
223 __qman_portals_probed = -1;
228 irq = platform_get_irq(pdev, 0);
233 pcfg->addr_virt_ce = memremap(addr_phys[0]->start,
234 resource_size(addr_phys[0]),
235 QBMAN_MEMREMAP_ATTR);
236 if (!pcfg->addr_virt_ce) {
237 dev_err(dev, "memremap::CE failed\n");
241 pcfg->addr_virt_ci = ioremap(addr_phys[1]->start,
242 resource_size(addr_phys[1]));
243 if (!pcfg->addr_virt_ci) {
244 dev_err(dev, "ioremap::CI failed\n");
248 pcfg->pools = qm_get_pools_sdqcr();
250 spin_lock(&qman_lock);
251 cpu = cpumask_first_zero(&portal_cpus);
252 if (cpu >= nr_cpu_ids) {
253 __qman_portals_probed = 1;
254 /* unassigned portal, skip init */
255 spin_unlock(&qman_lock);
259 cpumask_set_cpu(cpu, &portal_cpus);
260 spin_unlock(&qman_lock);
263 if (dma_set_mask(dev, DMA_BIT_MASK(40))) {
264 dev_err(dev, "dma_set_mask() failed\n");
265 goto err_portal_init;
268 if (!init_pcfg(pcfg)) {
269 dev_err(dev, "portal init failed\n");
270 goto err_portal_init;
273 /* clear irq affinity if assigned cpu is offline */
274 if (!cpu_online(cpu))
275 qman_offline_cpu(cpu);
278 if (__qman_portals_probed == 1 && qman_requires_cleanup()) {
280 * QMan wasn't reset prior to boot (Kexec for example)
281 * Empty all the frame queues so they are in reset state
283 for (i = 0; i < qm_get_fqid_maxcnt(); i++) {
284 err = qman_shutdown_fq(i);
286 dev_err(dev, "Failed to shutdown frame queue %d\n",
288 goto err_portal_init;
297 iounmap(pcfg->addr_virt_ci);
299 memunmap(pcfg->addr_virt_ce);
301 __qman_portals_probed = -1;
306 static const struct of_device_id qman_portal_ids[] = {
308 .compatible = "fsl,qman-portal",
312 MODULE_DEVICE_TABLE(of, qman_portal_ids);
314 static struct platform_driver qman_portal_driver = {
316 .name = KBUILD_MODNAME,
317 .of_match_table = qman_portal_ids,
319 .probe = qman_portal_probe,
322 static int __init qman_portal_driver_register(struct platform_driver *drv)
326 ret = platform_driver_register(drv);
330 ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
331 "soc/qman_portal:online",
332 qman_online_cpu, qman_offline_cpu);
334 pr_err("qman: failed to register hotplug callbacks.\n");
335 platform_driver_unregister(drv);
341 module_driver(qman_portal_driver,
342 qman_portal_driver_register, platform_driver_unregister);