All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
To: Liviu Dudau <Liviu.Dudau@arm.com>
Cc: Will Deacon <Will.Deacon@arm.com>,
	"suravee.suthikulpanit@amd.com" <suravee.suthikulpanit@amd.com>,
	"bhelgaas@google.com" <bhelgaas@google.com>,
	"linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 2/2] PCI: generic: Add set_msi_parent callback
Date: Thu, 13 Nov 2014 15:22:43 +0000	[thread overview]
Message-ID: <20141113152243.GB9726@red-moon> (raw)
In-Reply-To: <20141111115227.GF12037@e106497-lin.cambridge.arm.com>

On Tue, Nov 11, 2014 at 11:52:27AM +0000, Liviu Dudau wrote:
> On Tue, Nov 11, 2014 at 11:24:24AM +0000, Will Deacon wrote:
> > Hi Suravee,
> > 
> > On Mon, Nov 10, 2014 at 07:24:40PM +0000, suravee.suthikulpanit@amd.com wrote:
> > > From: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
> > > 
> > > This patch implement set_msi_parent callback for PCI generic host controller.
> > > 
> > > Cc: Bjorn Helgass <bhelgaas@google.com>
> > > Cc: Liviu Dudau <liviu.dudau@arm.com>
> > > Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> > > Signed-off-by: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
> > > ---
> > >  drivers/pci/host/pci-host-generic.c | 14 ++++++++++++++
> > >  1 file changed, 14 insertions(+)
> > > 
> > > diff --git a/drivers/pci/host/pci-host-generic.c b/drivers/pci/host/pci-host-generic.c
> > > index 036ab1b..f9bb97a 100644
> > > --- a/drivers/pci/host/pci-host-generic.c
> > > +++ b/drivers/pci/host/pci-host-generic.c
> > > @@ -42,6 +42,7 @@ struct gen_pci {
> > >  	struct pci_host_bridge			host;
> > >  	struct gen_pci_cfg_windows		cfg;
> > >  	struct list_head			resources;
> > > +	struct msi_chip				*mchip;
> > >  };
> > >  
> > >  #ifdef CONFIG_ARM
> > > @@ -128,9 +129,19 @@ static int gen_pci_config_write(struct pci_bus *bus, unsigned int devfn,
> > >  	return PCIBIOS_SUCCESSFUL;
> > >  }
> > >  
> > > +static int gen_pci_set_msi_parent(struct pci_bus *bus)
> > > +{
> > > +	struct gen_pci *pci = bus_to_gen_pci(bus);
> > > +
> > > +	bus->msi = pci->mchip;
> > > +
> > > +	return PCIBIOS_SUCCESSFUL;
> > > +}
> > 
> > I don't think this makes much sense a host controller callback. Why can't
> > bus->msi be set in generic code?
> 
> Because of the current way in which a bus gets created and them immediately used for
> scanning devices if you use pci_scan_root_bus(). Alternative is to use pci_create_root_bus()
> and increase your code size with the body of pci_scan_root_bus().
> 
> Solution is to have pci_host_bridge holding the msi_chip pointer and that gets created
> before root bus, with pci_scan_root_bus() now having all the info needed to do successful
> setup of scanned devices.

Why can't we add a hook like pci_bus_assign_domain_nr(), say:

pci_bus_msi_init()

in pci_create_root_bus() that does what Suravee wants in a generic way ?

What am I missing ?

Lorenzo

> 
> Best regards,
> Liviu
> 
> > 
> > >  static struct pci_ops gen_pci_ops = {
> > >  	.read	= gen_pci_config_read,
> > >  	.write	= gen_pci_config_write,
> > > +	.set_msi_parent = gen_pci_set_msi_parent,
> > >  };
> > >  
> > >  static const struct of_device_id gen_pci_of_match[] = {
> > > @@ -313,6 +324,9 @@ static int gen_pci_probe(struct platform_device *pdev)
> > >  		return err;
> > >  	}
> > >  
> > > +	pci->mchip = of_pci_find_msi_chip_by_node(of_parse_phandle(np,
> > > +						  "msi-parent", 0));
> > 
> > This bit should be in the generic of_pci.c code and not duplicated for
> > each host controller.
> > 
> > Will
> > 
> 
> -- 
> ====================
> | I would like to |
> | fix the world,  |
> | but they're not |
> | giving me the   |
>  \ source code!  /
>   ---------------
>     ¯\_(ツ)_/¯

WARNING: multiple messages have this Message-ID (diff)
From: lorenzo.pieralisi@arm.com (Lorenzo Pieralisi)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/2] PCI: generic: Add set_msi_parent callback
Date: Thu, 13 Nov 2014 15:22:43 +0000	[thread overview]
Message-ID: <20141113152243.GB9726@red-moon> (raw)
In-Reply-To: <20141111115227.GF12037@e106497-lin.cambridge.arm.com>

On Tue, Nov 11, 2014 at 11:52:27AM +0000, Liviu Dudau wrote:
> On Tue, Nov 11, 2014 at 11:24:24AM +0000, Will Deacon wrote:
> > Hi Suravee,
> > 
> > On Mon, Nov 10, 2014 at 07:24:40PM +0000, suravee.suthikulpanit at amd.com wrote:
> > > From: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
> > > 
> > > This patch implement set_msi_parent callback for PCI generic host controller.
> > > 
> > > Cc: Bjorn Helgass <bhelgaas@google.com>
> > > Cc: Liviu Dudau <liviu.dudau@arm.com>
> > > Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> > > Signed-off-by: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
> > > ---
> > >  drivers/pci/host/pci-host-generic.c | 14 ++++++++++++++
> > >  1 file changed, 14 insertions(+)
> > > 
> > > diff --git a/drivers/pci/host/pci-host-generic.c b/drivers/pci/host/pci-host-generic.c
> > > index 036ab1b..f9bb97a 100644
> > > --- a/drivers/pci/host/pci-host-generic.c
> > > +++ b/drivers/pci/host/pci-host-generic.c
> > > @@ -42,6 +42,7 @@ struct gen_pci {
> > >  	struct pci_host_bridge			host;
> > >  	struct gen_pci_cfg_windows		cfg;
> > >  	struct list_head			resources;
> > > +	struct msi_chip				*mchip;
> > >  };
> > >  
> > >  #ifdef CONFIG_ARM
> > > @@ -128,9 +129,19 @@ static int gen_pci_config_write(struct pci_bus *bus, unsigned int devfn,
> > >  	return PCIBIOS_SUCCESSFUL;
> > >  }
> > >  
> > > +static int gen_pci_set_msi_parent(struct pci_bus *bus)
> > > +{
> > > +	struct gen_pci *pci = bus_to_gen_pci(bus);
> > > +
> > > +	bus->msi = pci->mchip;
> > > +
> > > +	return PCIBIOS_SUCCESSFUL;
> > > +}
> > 
> > I don't think this makes much sense a host controller callback. Why can't
> > bus->msi be set in generic code?
> 
> Because of the current way in which a bus gets created and them immediately used for
> scanning devices if you use pci_scan_root_bus(). Alternative is to use pci_create_root_bus()
> and increase your code size with the body of pci_scan_root_bus().
> 
> Solution is to have pci_host_bridge holding the msi_chip pointer and that gets created
> before root bus, with pci_scan_root_bus() now having all the info needed to do successful
> setup of scanned devices.

Why can't we add a hook like pci_bus_assign_domain_nr(), say:

pci_bus_msi_init()

in pci_create_root_bus() that does what Suravee wants in a generic way ?

What am I missing ?

Lorenzo

> 
> Best regards,
> Liviu
> 
> > 
> > >  static struct pci_ops gen_pci_ops = {
> > >  	.read	= gen_pci_config_read,
> > >  	.write	= gen_pci_config_write,
> > > +	.set_msi_parent = gen_pci_set_msi_parent,
> > >  };
> > >  
> > >  static const struct of_device_id gen_pci_of_match[] = {
> > > @@ -313,6 +324,9 @@ static int gen_pci_probe(struct platform_device *pdev)
> > >  		return err;
> > >  	}
> > >  
> > > +	pci->mchip = of_pci_find_msi_chip_by_node(of_parse_phandle(np,
> > > +						  "msi-parent", 0));
> > 
> > This bit should be in the generic of_pci.c code and not duplicated for
> > each host controller.
> > 
> > Will
> > 
> 
> -- 
> ====================
> | I would like to |
> | fix the world,  |
> | but they're not |
> | giving me the   |
>  \ source code!  /
>   ---------------
>     ?\_(?)_/?

  reply	other threads:[~2014-11-13 15:22 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-10 19:24 [PATCH 0/2] PCI: generic: Assiging msi-controller to PCI hostbridge suravee.suthikulpanit
2014-11-10 19:24 ` suravee.suthikulpanit at amd.com
2014-11-10 19:24 ` [PATCH 1/2] PCI: Add new pci_ops for setting MSI parent for PCI bus suravee.suthikulpanit
2014-11-10 19:24   ` suravee.suthikulpanit at amd.com
2014-11-10 19:24 ` [PATCH 2/2] PCI: generic: Add set_msi_parent callback suravee.suthikulpanit
2014-11-10 19:24   ` suravee.suthikulpanit at amd.com
2014-11-11 11:24   ` Will Deacon
2014-11-11 11:24     ` Will Deacon
2014-11-11 11:52     ` Liviu Dudau
2014-11-11 11:52       ` Liviu Dudau
2014-11-13 15:22       ` Lorenzo Pieralisi [this message]
2014-11-13 15:22         ` Lorenzo Pieralisi
2014-11-13 18:32         ` Liviu Dudau
2014-11-13 18:32           ` Liviu Dudau
2014-11-13 23:19         ` Jiang Liu
2014-11-13 23:19           ` Jiang Liu
2014-11-11 15:33     ` Suravee Suthikulpanit
2014-11-11 15:33       ` Suravee Suthikulpanit
2014-11-13 15:32       ` Lorenzo Pieralisi
2014-11-13 15:32         ` Lorenzo Pieralisi

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=20141113152243.GB9726@red-moon \
    --to=lorenzo.pieralisi@arm.com \
    --cc=Liviu.Dudau@arm.com \
    --cc=Will.Deacon@arm.com \
    --cc=bhelgaas@google.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=suravee.suthikulpanit@amd.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.