Lines Matching full:qman

266  * Keeping a list here of QMan registers I have not yet covered;
272 /* Pointer to the start of the QMan's CCSR space */
357 /* Check to see if QMan has already been initialized */ in qm_set_memory()
363 pr_err("Attempted to reinitialize QMan with different BAR, got 0x%llx read BARE=0x%x BAR=0x%x\n", in qm_set_memory()
374 pr_crit("memremap() of QMan private memory failed\n"); in qm_set_memory()
382 * cache must be flushed since QMan does non coherent accesses in qm_set_memory()
442 * QMan needs two global memory areas initialized at boot time:
446 * and the addresses and sizes are initialized when the QMan device is probed
454 * string is set to fsl-qman-fqd and fsl-qman-pfdr
596 /* Only initialize PFDRs if the QMan was not initialized before */ in qman_init_ccsr()
768 dev_err(dev, "Unknown QMan version\n"); in fsl_qman_probe()
782 ret = qbman_init_private_mem(dev, 0, "fsl,qman-fqd", &fqd_a, &fqd_sz); in fsl_qman_probe()
798 ret = qbman_init_private_mem(dev, 1, "fsl,qman-pfdr", &pfdr_a, &pfdr_sz); in fsl_qman_probe()
818 ret = devm_request_irq(dev, err_irq, qman_isr, IRQF_SHARED, "qman-err", in fsl_qman_probe()
834 qm_fqalloc = devm_gen_pool_create(dev, 0, -1, "qman-fqalloc"); in fsl_qman_probe()
837 dev_err(dev, "qman-fqalloc pool init failed (%d)\n", ret); in fsl_qman_probe()
841 qm_qpalloc = devm_gen_pool_create(dev, 0, -1, "qman-qpalloc"); in fsl_qman_probe()
844 dev_err(dev, "qman-qpalloc pool init failed (%d)\n", ret); in fsl_qman_probe()
848 qm_cgralloc = devm_gen_pool_create(dev, 0, -1, "qman-cgralloc"); in fsl_qman_probe()
851 dev_err(dev, "qman-cgralloc pool init failed (%d)\n", ret); in fsl_qman_probe()
874 .compatible = "fsl,qman",