All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marc Zyngier <marc.zyngier@arm.com>
To: "J. German Rivera" <German.Rivera@freescale.com>,
	gregkh@linuxfoundation.org, arnd@arndb.de,
	devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org
Cc: stuart.yoder@freescale.com, itai.katz@freescale.com,
	lijun.pan@freescale.com, leoli@freescale.com,
	scottwood@freescale.com, agraf@suse.de, bhamciu1@freescale.com,
	R89243@freescale.com, bhupesh.sharma@freescale.com,
	nir.erez@freescale.com, richard.schmitt@freescale.com,
	dan.carpenter@oracle.com, jiang.liu@linux.intel.com
Subject: Re: [PATCH RESEND v3 04/11] staging: fsl-mc: Added GICv3-ITS support for FSL-MC MSIs
Date: Wed, 09 Dec 2015 15:34:16 +0000	[thread overview]
Message-ID: <566849F8.20503@arm.com> (raw)
In-Reply-To: <1448404284-22258-5-git-send-email-German.Rivera@freescale.com>

On 24/11/15 22:31, J. German Rivera wrote:
> Added platform-specific MSI support layer for FSL-MC devices.
> 
> Signed-off-by: J. German Rivera <German.Rivera@freescale.com>
> ---
> CHANGE HISTORY
> 
> Changes in v3: none
> 
> Changes in v2: none
> 
>  drivers/staging/fsl-mc/bus/Makefile                |   1 +
>  .../staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c | 127 +++++++++++++++++++++
>  drivers/staging/fsl-mc/include/mc-private.h        |   4 +
>  3 files changed, 132 insertions(+)
>  create mode 100644 drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c
> 
> diff --git a/drivers/staging/fsl-mc/bus/Makefile b/drivers/staging/fsl-mc/bus/Makefile
> index a5f2ba4..e731517 100644
> --- a/drivers/staging/fsl-mc/bus/Makefile
> +++ b/drivers/staging/fsl-mc/bus/Makefile
> @@ -14,5 +14,6 @@ mc-bus-driver-objs := mc-bus.o \
>  		      dprc-driver.o \
>  		      mc-allocator.o \
>  		      mc-msi.o \
> +		      irq-gic-v3-its-fsl-mc-msi.o \
>  		      dpmcp.o \
>  		      dpbp.o
> diff --git a/drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c b/drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c
> new file mode 100644
> index 0000000..5319afa
> --- /dev/null
> +++ b/drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c
> @@ -0,0 +1,127 @@
> +/*
> + * Freescale Management Complex (MC) bus driver MSI support
> + *
> + * Copyright (C) 2015 Freescale Semiconductor, Inc.
> + * Author: German Rivera <German.Rivera@freescale.com>
> + *
> + * This file is licensed under the terms of the GNU General Public
> + * License version 2. This program is licensed "as is" without any
> + * warranty of any kind, whether express or implied.
> + */
> +
> +#include "../include/mc-private.h"
> +#include <linux/of_device.h>
> +#include <linux/of_address.h>
> +#include <linux/irqchip/arm-gic-v3.h>
> +#include <linux/irq.h>
> +#include <linux/msi.h>
> +#include <linux/of.h>
> +#include <linux/of_irq.h>
> +#include "../include/mc-sys.h"
> +#include "dprc-cmd.h"
> +
> +static struct irq_chip its_msi_irq_chip = {
> +	.name = "fsl-mc-bus-msi",
> +	.irq_mask = irq_chip_mask_parent,
> +	.irq_unmask = irq_chip_unmask_parent,
> +	.irq_eoi = irq_chip_eoi_parent,
> +	.irq_set_affinity = msi_domain_set_affinity
> +};
> +
> +static int its_fsl_mc_msi_prepare(struct irq_domain *msi_domain,
> +				  struct device *dev,
> +				  int nvec, msi_alloc_info_t *info)
> +{
> +	u32 its_dev_id;
> +	struct fsl_mc_device *mc_bus_dev = to_fsl_mc_device(dev);
> +	struct msi_domain_info *msi_info;
> +
> +	if (WARN_ON(dev->bus != &fsl_mc_bus_type))
> +		return -EINVAL;

Isn't that a bit late? You've already called to_fsl_mc_device()...

> +
> +	if (WARN_ON(!(mc_bus_dev->flags & FSL_MC_IS_DPRC)))
> +		return -EINVAL;
> +
> +	/*
> +	 * Set the device Id to be passed to the GIC-ITS:
> +	 *
> +	 * NOTE: This device id corresponds to the IOMMU stream ID
> +	 * associated with the DPRC object (ICID).
> +	 */
> +	its_dev_id = mc_bus_dev->icid;
> +	info->scratchpad[0].ul = its_dev_id;

You can probably get rid of the its_dev_id variable.

> +	msi_info = msi_get_domain_info(msi_domain->parent);
> +	return msi_info->ops->msi_prepare(msi_domain->parent, dev, nvec, info);
> +}
> +
> +static struct msi_domain_ops its_fsl_mc_msi_ops = {
> +	.msi_prepare = its_fsl_mc_msi_prepare,
> +};
> +
> +static struct msi_domain_info its_fsl_mc_msi_domain_info = {
> +	.flags	= (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS),
> +	.ops	= &its_fsl_mc_msi_ops,
> +	.chip	= &its_msi_irq_chip,
> +};
> +
> +static const struct of_device_id its_device_id[] = {
> +	{	.compatible	= "arm,gic-v3-its",	},
> +	{},
> +};
> +
> +int __init its_fsl_mc_msi_init(void)
> +{
> +	struct device_node *np;
> +	struct irq_domain *parent;
> +	struct irq_domain *mc_msi_domain;
> +
> +	for (np = of_find_matching_node(NULL, its_device_id); np;
> +	     np = of_find_matching_node(np, its_device_id)) {
> +		if (!of_property_read_bool(np, "msi-controller"))
> +			continue;
> +
> +		parent = irq_find_matching_host(np, DOMAIN_BUS_NEXUS);
> +		if (!parent || !msi_get_domain_info(parent)) {
> +			pr_err("%s: unable to locate ITS domain\n",
> +			       np->full_name);
> +			continue;
> +		}
> +
> +		mc_msi_domain =
> +		    fsl_mc_msi_create_irq_domain(of_node_to_fwnode(np),
> +						 &its_fsl_mc_msi_domain_info,
> +						 parent);

Please keep both sides of the assignment on the same line.

> +		if (!mc_msi_domain) {
> +			pr_err("%s: unable to create fsl-mc domain\n",
> +			       np->full_name);
> +			continue;
> +		}
> +
> +		WARN_ON(mc_msi_domain->host_data !=
> +				&its_fsl_mc_msi_domain_info);

Same here.

> +
> +		pr_info("fsl-mc MSI: %s domain created\n", np->full_name);
> +	}
> +
> +	return 0;
> +}
> +
> +void its_fsl_mc_msi_cleanup(void)
> +{
> +	struct device_node *np;
> +
> +	for (np = of_find_matching_node(NULL, its_device_id); np;
> +	     np = of_find_matching_node(np, its_device_id)) {
> +		struct irq_domain *mc_msi_domain =
> +			irq_find_matching_host(np, DOMAIN_BUS_FSL_MC_MSI);

Same here.

> +
> +		if (!of_property_read_bool(np, "msi-controller"))
> +			continue;
> +
> +		mc_msi_domain =
> +			irq_find_matching_host(np, DOMAIN_BUS_FSL_MC_MSI);

And here.

> +		if (mc_msi_domain &&
> +		    mc_msi_domain->host_data == &its_fsl_mc_msi_domain_info)
> +			irq_domain_remove(mc_msi_domain);
> +	}
> +}
> diff --git a/drivers/staging/fsl-mc/include/mc-private.h b/drivers/staging/fsl-mc/include/mc-private.h
> index 0b294d4..3423993 100644
> --- a/drivers/staging/fsl-mc/include/mc-private.h
> +++ b/drivers/staging/fsl-mc/include/mc-private.h
> @@ -133,4 +133,8 @@ int fsl_mc_msi_domain_alloc_irqs(struct device *dev,
> 
>  void fsl_mc_msi_domain_free_irqs(struct device *dev);
> 
> +int __init its_fsl_mc_msi_init(void);
> +
> +void its_fsl_mc_msi_cleanup(void);
> +
>  #endif /* _FSL_MC_PRIVATE_H_ */
> --
> 2.3.3
> 

Thanks,

	M.
-- 
Jazz is not dead. It just smells funny...

  reply	other threads:[~2015-12-09 15:34 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-24 22:31 [PATCH RESEND v3 00/11] staging: fsl-mc: MC bus MSI support J. German Rivera
2015-11-24 22:31 ` [PATCH RESEND v3 01/11] irqdomain: Added domain bus token DOMAIN_BUS_FSL_MC_MSI J. German Rivera
2015-12-09 15:45   ` Marc Zyngier
2015-11-24 22:31 ` [PATCH RESEND v3 02/11] fsl-mc: msi: Added FSL-MC-specific member to the msi_desc's union J. German Rivera
2015-12-09 15:46   ` Marc Zyngier
2015-11-24 22:31 ` [PATCH RESEND v3 03/11] staging: fsl-mc: Added generic MSI support for FSL-MC devices J. German Rivera
2015-12-09 15:54   ` Marc Zyngier
2015-11-24 22:31 ` [PATCH RESEND v3 04/11] staging: fsl-mc: Added GICv3-ITS support for FSL-MC MSIs J. German Rivera
2015-12-09 15:34   ` Marc Zyngier [this message]
2015-11-24 22:31 ` [PATCH RESEND v3 05/11] staging: fsl-mc: Extended MC bus allocator to include IRQs J. German Rivera
2015-11-24 22:31 ` [PATCH RESEND v3 06/11] staging: fsl-mc: Changed DPRC built-in portal's mc_io to be atomic J. German Rivera
2015-11-24 22:31 ` [PATCH RESEND v3 07/11] staging: fsl-mc: Populate the IRQ pool for an MC bus instance J. German Rivera
2015-11-24 22:31 ` [PATCH RESEND v3 08/11] staging: fsl-mc: set MSI domain for DPRC objects J. German Rivera
2015-11-24 22:31 ` [PATCH RESEND v3 09/11] staging: fsl-mc: Fixed bug in dprc_probe() error path J. German Rivera
2015-11-24 22:31 ` [PATCH RESEND v3 10/11] staging: fsl-mc: Added DPRC interrupt handler J. German Rivera
2015-11-24 22:31 ` [PATCH RESEND v3 11/11] staging: fsl-mc: Added MSI support to the MC bus driver J. German Rivera

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=566849F8.20503@arm.com \
    --to=marc.zyngier@arm.com \
    --cc=German.Rivera@freescale.com \
    --cc=R89243@freescale.com \
    --cc=agraf@suse.de \
    --cc=arnd@arndb.de \
    --cc=bhamciu1@freescale.com \
    --cc=bhupesh.sharma@freescale.com \
    --cc=dan.carpenter@oracle.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=itai.katz@freescale.com \
    --cc=jiang.liu@linux.intel.com \
    --cc=leoli@freescale.com \
    --cc=lijun.pan@freescale.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nir.erez@freescale.com \
    --cc=richard.schmitt@freescale.com \
    --cc=scottwood@freescale.com \
    --cc=stuart.yoder@freescale.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.