Devicetree
 help / color / mirror / Atom feed
From: Liviu Dudau <Liviu.Dudau@arm.com>
To: linux-pci <linux-pci@vger.kernel.org>,
	Bjorn Helgaas <bhelgaas@google.com>,
	Catalin Marinas <Catalin.Marinas@arm.com>,
	Will Deacon <Will.Deacon@arm.com>,
	linaro-kernel <linaro-kernel@lists.linaro.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	Tanmay Inamdar <tinamdar@apm.com>,
	LKML <linux-kernel@vger.kernel.org>,
	LAKML <linux-arm-kernel@lists.infradead.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Subject: [PATCH v4 1/6] pci: Introduce pci_register_io_range() helper function.
Date: Mon,  3 Mar 2014 17:33:11 +0000	[thread overview]
Message-ID: <1393867996-32299-2-git-send-email-Liviu.Dudau@arm.com> (raw)
In-Reply-To: <1393867996-32299-1-git-send-email-Liviu.Dudau@arm.com>

Some architectures do not share x86 simple view of the I/O space and
instead use a range of addresses that map to external devices. For PCI,
these ranges can be expressed by OF bindings in a device tree file.

Introduce a pci_register_io_range() helper function that can be used
by the architecture code to keep track of the io ranges described by the
PCI bindings.

Signed-off-by: Liviu Dudau <Liviu.Dudau@arm.com>

diff --git a/drivers/of/address.c b/drivers/of/address.c
index 1a54f1f..d1bb30f 100644
--- a/drivers/of/address.c
+++ b/drivers/of/address.c
@@ -619,6 +619,11 @@ const __be32 *of_get_address(struct device_node *dev, int index, u64 *size,
 }
 EXPORT_SYMBOL(of_get_address);
 
+int __weak pci_register_io_range(phys_addr_t addr, resource_size_t size)
+{
+	return 0;
+}
+
 unsigned long __weak pci_address_to_pio(phys_addr_t address)
 {
 	if (address > IO_SPACE_LIMIT)
diff --git a/include/linux/of_address.h b/include/linux/of_address.h
index 5f6ed6b..40c418d 100644
--- a/include/linux/of_address.h
+++ b/include/linux/of_address.h
@@ -56,6 +56,7 @@ extern void __iomem *of_iomap(struct device_node *device, int index);
 extern const __be32 *of_get_address(struct device_node *dev, int index,
 			   u64 *size, unsigned int *flags);
 
+extern int pci_register_io_range(phys_addr_t addr, resource_size_t size);
 extern unsigned long pci_address_to_pio(phys_addr_t addr);
 
 extern int of_pci_range_parser_init(struct of_pci_range_parser *parser,
-- 
1.9.0

  reply	other threads:[~2014-03-03 17:33 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-03 17:33 [PATCH v4 0/6] [RFC] Support for creating generic host_bridge from device tree Liviu Dudau
2014-03-03 17:33 ` Liviu Dudau [this message]
     [not found] ` <1393867996-32299-1-git-send-email-Liviu.Dudau-5wv7dgnIgG8@public.gmane.org>
2014-03-03 17:33   ` [PATCH v4 2/6] pci: OF: Fix the conversion of IO ranges into IO resources Liviu Dudau
2014-03-03 17:33 ` [PATCH v4 3/6] pci: Create pci_host_bridge before its associated bus in pci_create_root_bus Liviu Dudau
2014-03-03 17:33 ` [PATCH v4 4/6] pci: Introduce a domain number for pci_host_bridge Liviu Dudau
2014-03-03 17:33 ` [PATCH v4 5/6] pci: Use parent domain number when allocating child busses Liviu Dudau
2014-03-03 23:14   ` Tanmay Inamdar
2014-03-03 23:51     ` Liviu Dudau
2014-03-04  0:42       ` Tanmay Inamdar
     [not found]         ` <CACoXjc=FM5Bohpw6xmD0OCRX40gX2EHzWmf0dXgDosY-Wg8=ZA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-03-04  1:39           ` Liviu Dudau
2014-03-04  1:42         ` Tanmay Inamdar
     [not found]           ` <CACoXjcnzfC_7uh=-PbAsCQDb5RJVSQMXQmo-t+-uojWCP5+sDA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-03-04  1:53             ` Liviu Dudau
2014-03-03 17:33 ` [PATCH v4 6/6] pci: Add support for creating a generic host_bridge from device tree Liviu Dudau

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=1393867996-32299-2-git-send-email-Liviu.Dudau@arm.com \
    --to=liviu.dudau@arm.com \
    --cc=Catalin.Marinas@arm.com \
    --cc=Will.Deacon@arm.com \
    --cc=benh@kernel.crashing.org \
    --cc=bhelgaas@google.com \
    --cc=devicetree@vger.kernel.org \
    --cc=linaro-kernel@lists.linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=tinamdar@apm.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