* [PATCH] ARM: mm: fix pci_ioremap_io() offset check
@ 2018-08-03 14:40 Thomas Petazzoni
2018-08-03 16:20 ` Nicolas Pitre
0 siblings, 1 reply; 2+ messages in thread
From: Thomas Petazzoni @ 2018-08-03 14:40 UTC (permalink / raw)
To: linux-arm-kernel
IO_SPACE_LIMIT is the ending address of the PCI IO space, i.e
something like 0xfffff (and not 0x100000).
Therefore, when offset = 0xf0000 is passed as argument, this function
fails even though the offset + SZ_64K fits below the
IO_SPACE_LIMIT. This makes the last chunk of 64 KB of the I/O space
not usable as it cannot be mapped.
This patch fixes that by substracing 1 to offset + SZ_64K, so that we
compare the addrss of the last byte of the I/O space against
IO_SPACE_LIMIT instead of the address of the first byte of what is
after the I/O space.
Fixes: c2794437091a4 ("ARM: Add fixed PCI i/o mapping")
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
arch/arm/mm/ioremap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mm/ioremap.c b/arch/arm/mm/ioremap.c
index fc91205ff46c..5bf9443cfbaa 100644
--- a/arch/arm/mm/ioremap.c
+++ b/arch/arm/mm/ioremap.c
@@ -473,7 +473,7 @@ void pci_ioremap_set_mem_type(int mem_type)
int pci_ioremap_io(unsigned int offset, phys_addr_t phys_addr)
{
- BUG_ON(offset + SZ_64K > IO_SPACE_LIMIT);
+ BUG_ON(offset + SZ_64K - 1 > IO_SPACE_LIMIT);
return ioremap_page_range(PCI_IO_VIRT_BASE + offset,
PCI_IO_VIRT_BASE + offset + SZ_64K,
--
2.14.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] ARM: mm: fix pci_ioremap_io() offset check
2018-08-03 14:40 [PATCH] ARM: mm: fix pci_ioremap_io() offset check Thomas Petazzoni
@ 2018-08-03 16:20 ` Nicolas Pitre
0 siblings, 0 replies; 2+ messages in thread
From: Nicolas Pitre @ 2018-08-03 16:20 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, 3 Aug 2018, Thomas Petazzoni wrote:
> IO_SPACE_LIMIT is the ending address of the PCI IO space, i.e
> something like 0xfffff (and not 0x100000).
>
> Therefore, when offset = 0xf0000 is passed as argument, this function
> fails even though the offset + SZ_64K fits below the
> IO_SPACE_LIMIT. This makes the last chunk of 64 KB of the I/O space
> not usable as it cannot be mapped.
>
> This patch fixes that by substracing 1 to offset + SZ_64K, so that we
> compare the addrss of the last byte of the I/O space against
> IO_SPACE_LIMIT instead of the address of the first byte of what is
> after the I/O space.
>
> Fixes: c2794437091a4 ("ARM: Add fixed PCI i/o mapping")
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Acked-by: Nicolas Pitre <nico@linaro.org>
> ---
> arch/arm/mm/ioremap.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mm/ioremap.c b/arch/arm/mm/ioremap.c
> index fc91205ff46c..5bf9443cfbaa 100644
> --- a/arch/arm/mm/ioremap.c
> +++ b/arch/arm/mm/ioremap.c
> @@ -473,7 +473,7 @@ void pci_ioremap_set_mem_type(int mem_type)
>
> int pci_ioremap_io(unsigned int offset, phys_addr_t phys_addr)
> {
> - BUG_ON(offset + SZ_64K > IO_SPACE_LIMIT);
> + BUG_ON(offset + SZ_64K - 1 > IO_SPACE_LIMIT);
>
> return ioremap_page_range(PCI_IO_VIRT_BASE + offset,
> PCI_IO_VIRT_BASE + offset + SZ_64K,
> --
> 2.14.4
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-08-03 16:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-03 14:40 [PATCH] ARM: mm: fix pci_ioremap_io() offset check Thomas Petazzoni
2018-08-03 16:20 ` Nicolas Pitre
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).