From: Pratyush Anand <pratyush.anand@st.com>
To: Arnd Bergmann <arnd@arndb.de>
Cc: Shiraz HASHIM <shiraz.hashim@st.com>,
"viresh.linux@gmail.com" <viresh.linux@gmail.com>,
spear-devel <spear-devel@list.st.com>,
"linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>,
"devicetree-discuss@lists.ozlabs.org"
<devicetree-discuss@lists.ozlabs.org>,
"olof@lixom.net" <olof@lixom.net>
Subject: Re: [PATCH 04/15] SPEAr13xx: Add PCIe Root Complex driver support
Date: Wed, 31 Oct 2012 16:54:20 +0530 [thread overview]
Message-ID: <50910A64.7040306@st.com> (raw)
In-Reply-To: <201210302220.23690.arnd@arndb.de>
On 10/31/2012 3:50 AM, Arnd Bergmann wrote:
> On Monday 29 October 2012, Pratyush Anand wrote:
>> SPEAr13xx has dual mode PCIe controller which can be used as Root
>> Complex as well as Endpoint. This driver supports RC mode of the
>> controller.
>>
>> If CONFIG_PCI_MSI is defined then support of MSI interrupt for
>> downstream PCIe devices will be enabled.
>>
>> If CONFIG_PM is defined then it supports suspend/resume functionality.
>
> I think I've seen the same hardware before used with another driver.
> IMHO we should really make sure this does not get duplicated again and
> move this stuff to a new subdirectory drivers/pci/host. We don't yet have
> a completely architecture independent way of defining a PCIe root complex,
> but we're getting there and given of how many ARM implementations we have,
> we can just as well start with this one and adapt it to another arch if
> necesary.
>
Yes, I too wanted to put it into drivers/pci/host. But, still it would
be ARCH (arm) dependent, until we have a common solution for all
architecture. Let me know, if I can put it into drivers/pci/host even if
it works initially for ARM only.
>> +struct pcie_port {
>> + u8 controller;
>> + u8 root_bus_nr;
>> + void __iomem *dbi_base;
>> + void __iomem *va_dbi_base;
>> + void __iomem *app_base;
>> + void __iomem *va_app_base;
>> + void __iomem *base;
>> + void __iomem *phy_base;
>> + void __iomem *va_phy_base;
>> + void __iomem *cfg0_base;
>> + void __iomem *va_cfg0_base;
>> + void __iomem *cfg1_base;
>> + void __iomem *va_cfg1_base;
>> + void __iomem *mem_base;
>> + void __iomem *io_base;
>> + spinlock_t conf_lock;
>> + char mem_space_name[16];
>> + char io_space_name[16];
>> + struct resource res[2];
>> + struct pcie_port_info config;
>> + struct list_head next;
>> + struct clk *clk;
>> + int irq;
>> + int virt_irq_base;
>> + int susp_state;
>> +};
>
> Can you explain why you need a total of 13 virtual memory areas?
>
Ah, its not 13, Its just 5 all va_xxxx.
Probably, I have wrongly put __iomem annotation with physical addresses
too. I will correct. Will keep physical address as normal void *.
>> +
>> +static struct list_head pcie_port_list;
>
> I'm pretty sure you don't need your own list of ports, since we already enumerate the
> ports in the PCI code.
>
This pcie_port_list is list of private data (struct pcie_port).
Callbacks defined in struct hw_pci such as setup, scan etc are called
with first argument as controller number. Now other option could have
been to use a simple array of struct pcie_port[MAX_PORT_NUM], as other
platforms has used. But I thought to keep list as better option, so that
we are not dependent on MAX_PORT_NUM.
>> +static struct hw_pci pci;
>
> Why is this not statically initialized?
Ok, ll take care in next version.
>
>> + snprintf(pp->io_space_name, sizeof(pp->io_space_name),
>> + "PCIe %d I/O", nr);
>> + pp->io_space_name[sizeof(pp->io_space_name) - 1] = 0;
>> + pp->res[1].name = pp->io_space_name;
>> + pp->res[1].start = PCIBIOS_MIN_IO + nr * pp->config.io_size;
>> + pp->res[1].end = pp->res[1].start + (pp->config.io_size - 1);
>> + pp->res[1].flags = IORESOURCE_IO;
>> + if (request_resource(&ioport_resource, &pp->res[1]))
>> + panic("can't allocate PCIe IO space");
>> + pci_add_resource_offset(&sys->resources, &pp->res[1], sys->io_offset);
>
> Is the io_offset ever nonzero?
>
>> +void __iomem *spear13xx_pcie_io_base(unsigned long addr)
>> +{
>> + int controller = (addr - PCIBIOS_MIN_IO) / IO_SIZE_PER_PORT;
>> + struct pcie_port *pp;
>> +
>> + pp = controller_to_port(controller);
>> +
>> + return pp->io_base;
>> +}
>
> This function looks completely bogus. Subtracting PCIBIOS_MIN_IO means that
> everything is shifted by 0x1000 ports, since secondary bridges don't
> have this offset. The I/O spaces are just mapped linearly into the virtual
> address space anyway, so looking up the I/O base like this is pointless.
>
Frankly speaking, I do not have clear understanding of PCIe IO
transaction. I did not test any PCIe device with my host which might
need IO resource. Since , my host controller does support IO
transaction, I want to support it in driver. Let me explain my
requirement, please correct my understanding where I am wrong.
-- I can program one my viewport to generate IO transaction on PCIe bus,
if CPU writes between AHB address 0x80000000-0x80007FFF.
-- Now, lets say a PCIe device needs 100 io ports, then address range
0x80000000-0x80000064 will be allocated to this device by pci stack. It
will also write 0x80000000 to IO_BAR register of its configuration
address space. Now, if my CPU writes at ahb address 0x80000010 then 16th
IO port of this device will be written.
-- Probably, I need something like following and it will remove
mach/io.h , hence spear13xx_pcie_io_base too.
--- a/arch/arm/mach-spear13xx/pcie.c
+++ b/arch/arm/mach-spear13xx/pcie.c
@@ -414,7 +414,7 @@ static int __init pcie_setup(int nr, struct
pci_sys_data *sys)
pp->res[1].flags = IORESOURCE_IO;
if (request_resource(&ioport_resource, &pp->res[1]))
panic("can't allocate PCIe IO space");
- pci_add_resource_offset(&sys->resources, &pp->res[1],
sys->io_offset);
+ pci_add_resource_offset(&sys->resources, &pp->res[1], 0x80000000);
>> +static void pcie_host_init(struct pcie_port *pp)
>> +{
>> + struct pcie_port_info *config = &pp->config;
>> + void __iomem *dbi_base = pp->va_dbi_base;
>> + struct pcie_app_reg *app_reg = pp->va_app_base;
>> + u32 exp_cap_off = PCI_CAP_ID_EXP_OFFSET;
>> + u32 val;
>> +
>> + /* Keep first 64K for IO */
>> + pp->io_base = pp->base;
>> + pp->mem_base = pp->io_base + config->io_size;
>> + pp->cfg0_base = pp->mem_base + config->mem_size;
>> + pp->cfg1_base = pp->cfg0_base + config->cfg0_size;
>
> Why is the memory space part of the virtual bus address range here?
Sorry, its not virtual address. I will remove __iomem from all physical
address pointer.
>
>
>> +static int add_pcie_port(struct pcie_port *pp, struct platform_device *pdev)
>> +{
>> + struct resource *base;
>> + struct resource *dbi_base;
>> + struct resource *phy_base;
>> + int virt_irq_base;
>> + struct device_node *np = pdev->dev.of_node;
>> + struct irq_domain *irq_domain;
>> + int num_virt_irqs = NUM_INTX_IRQS;
>> +
>> + dbi_base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>> + if (!dbi_base) {
>> + dev_err(&pdev->dev, "couldn't get dbi base resource\n");
>> + return -EINVAL;
>> + }
>> + if (!devm_request_mem_region(&pdev->dev, dbi_base->start,
>> + resource_size(dbi_base), pdev->name)) {
>> + dev_err(&pdev->dev, "dbi base resource is busy\n");
>> + return -EBUSY;
>> + }
>> +
>> + pp->dbi_base = (void __iomem *)dbi_base->start;
>
> dbi_base is a resource here, which refers to a physical address. You cannot cast
> that to an __iomem token.
ok.
>
>> + pp->va_dbi_base = devm_ioremap(&pdev->dev, dbi_base->start,
>> + resource_size(dbi_base));
>
> Here you even pass that address into ioremap, so it certainly isn't a virtual address
Yes, I understand it :(
>
>> + pp->phy_base = (void __iomem *)phy_base->start;
>
> same here.
>
>> + pp->va_phy_base = devm_ioremap(&pdev->dev, phy_base->start,
>> + resource_size(phy_base));
>> + if (!pp->va_phy_base) {
>> + dev_err(&pdev->dev, "error with ioremap\n");
>> + return -ENOMEM;
>> + }
>> +
>> + base = platform_get_resource(pdev, IORESOURCE_MEM, 1);
>> + if (!base) {
>> + dev_err(&pdev->dev, "couldn't get base resource\n");
>> + return -EINVAL;
>> + }
>> +
>> + pp->base = (void __iomem *)base->start;
>
> and here.
>
>> + virt_irq_base = irq_alloc_descs(-1, 0, num_virt_irqs, 0);
>> + if (IS_ERR_VALUE(virt_irq_base)) {
>> + dev_err(&pdev->dev, "irq desc alloc failed\n");
>> + return -ENXIO;
>> + }
>> +
>> + irq_domain = irq_domain_add_legacy(np, num_virt_irqs, virt_irq_base,
>> + 0, &irq_domain_simple_ops, NULL);
>
> Why not use a linear domain?
>
>> + pp->virt_irq_base = irq_find_mapping(irq_domain, 0);
>
> Then you can get rid of virt_irq_base and use CONFIG_SPARSE_IRQ.
I do not know about. Will explore and implement.
>
>> + spin_lock_init(&pp->conf_lock);
>> + if (pcie_link_up(pp->va_app_base)) {
>> + dev_info(&pdev->dev, "link up\n");
>> + } else {
>> + dev_info(&pdev->dev, "link down\n");
>> + pcie_host_init(pp);
>> + pp->va_cfg0_base = devm_ioremap(&pdev->dev,
>> + (resource_size_t)pp->cfg0_base,
>
> cfg0_base is an __iomem token, you cannot pass that into ioremap,
> which expects a physical address.
Again cfg0_base is physical and va_cfg0_base is virtual.
>
>> + pp->config.io_size = IO_SIZE_PER_PORT;
>> + of_property_read_u32(np, "pcie-host,is_host", &pp->config.is_host);
>> + of_property_read_u32(np, "pcie-host,is_gen1", &pp->config.is_gen1);
>
> These should probably be derived from the "compatible" value.
Yes, about is_host I think, I will go with "compatible".
Let me explain why I have provided is_gen1: There are few buggy PCIe
cards which links up only if host is gen1. My host is by default gen2.
It does work with gen1 as well as gen2 devices except some buggy gen1
devices. I provided this flag, to force controller to linkup at gen1
only so that it can work with those buggy cards too.
>
>> + of_property_read_u32(np, "pcie-host,cfg0_size", &pp->config.cfg0_size);
>> + of_property_read_u32(np, "pcie-host,cfg1_size", &pp->config.cfg1_size);
>> + of_property_read_u32(np, "pcie-host,mem_size", &pp->config.mem_size);
>> + of_property_read_u32(np, "pcie-host,msg_size", &pp->config.msg_size);
>> + of_property_read_u32(np, "pcie-host,in_mem_size",
>> + &pp->config.in_mem_size);
>
> And these should come from the "ranges" property I suppose.
Ok..
Regards
Pratyush
PS: Thanks for your valuable inputs :)
>
> Arnd
> .
>
next prev parent reply other threads:[~2012-10-31 11:24 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-29 7:01 [PATCH 00/15] SPEAr13xx PCIe patches Pratyush Anand
2012-10-29 7:01 ` [PATCH 01/15] arm: source drivers/pci/pcie/kconfig Pratyush Anand
2012-10-29 7:01 ` [PATCH 02/15] arm: Call pcie_bus_configure_settings for pcie devices Pratyush Anand
2012-10-29 7:01 ` [PATCH 03/15] SPEAr13xx: Add mach/io.h Pratyush Anand
2012-10-29 7:29 ` viresh kumar
2012-10-29 8:11 ` Pratyush Anand
2012-10-30 21:45 ` Arnd Bergmann
2012-10-31 11:24 ` Pratyush Anand
2012-10-31 22:05 ` Arnd Bergmann
2012-10-29 7:01 ` [PATCH 04/15] SPEAr13xx: Add PCIe Root Complex driver support Pratyush Anand
2012-10-30 22:20 ` Arnd Bergmann
2012-10-31 11:24 ` Pratyush Anand [this message]
2012-10-31 22:00 ` Arnd Bergmann
2012-11-01 7:25 ` Pratyush Anand
2012-10-29 7:01 ` [PATCH 05/15] clk: SPEAr1340: Fix pcie0 clock name Pratyush Anand
2012-10-29 7:01 ` [PATCH 06/15] clk: SPEAr1310: Fix pcie " Pratyush Anand
2012-10-29 13:11 ` viresh kumar
2012-10-29 7:01 ` [PATCH 07/15] SPEAr1340: Add PCIe auxdata for miphy clock initialization Pratyush Anand
2012-10-29 7:01 ` [PATCH 08/15] SPEAr1310: " Pratyush Anand
2012-10-30 21:57 ` Arnd Bergmann
2012-10-29 7:01 ` [PATCH 09/15] SPEAr13xx: dts: Fix PCIe core address ranges Pratyush Anand
2012-10-29 13:23 ` viresh kumar
2012-10-30 3:23 ` Pratyush Anand
2012-10-30 21:55 ` Arnd Bergmann
2012-10-31 11:24 ` Pratyush Anand
2012-10-29 7:01 ` [PATCH 10/15] SPEAr13xx: DTS: Add auxiliary data for PCIe host Pratyush Anand
2012-10-29 13:24 ` viresh kumar
2012-10-30 3:24 ` Pratyush Anand
2012-10-30 5:47 ` Viresh Kumar
2012-10-29 7:01 ` [PATCH 11/15] SPEAr1340-evb: dts: Enable PCIe0 Pratyush Anand
2012-10-29 7:01 ` [PATCH 12/15] SPEAr1310-EVB: DTS: Fix PCIe1 enable Pratyush Anand
2012-10-29 7:01 ` [PATCH 13/15] SPEAr13xx: update kconfig for PCIe selection Pratyush Anand
2012-10-29 13:33 ` viresh kumar
2012-10-30 3:25 ` Pratyush Anand
2012-10-29 7:01 ` [PATCH 14/15] SPEAR13xx: Update makefile for PCIe inclusion Pratyush Anand
2012-10-29 13:34 ` viresh kumar
2012-10-29 7:01 ` [PATCH 15/15] SPEAR13xx: update defconfig for PCIe compilation Pratyush Anand
2012-10-29 7:16 ` [PATCH 00/15] SPEAr13xx PCIe patches viresh kumar
2012-10-29 7:22 ` Pratyush Anand
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=50910A64.7040306@st.com \
--to=pratyush.anand@st.com \
--cc=arnd@arndb.de \
--cc=devicetree-discuss@lists.ozlabs.org \
--cc=linux-pci@vger.kernel.org \
--cc=olof@lixom.net \
--cc=shiraz.hashim@st.com \
--cc=spear-devel@list.st.com \
--cc=viresh.linux@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).