Re: [PATCH] ARM: allow, but warn, when issuing ioremap() on RAM

From: Felipe Contreras
Date: Mon Oct 11 2010 - 06:39:28 EST


On Mon, Oct 11, 2010 at 1:05 PM, Catalin Marinas
<catalin.marinas@xxxxxxx> wrote:
> We could be a bit more flexible as a temporary solution. But that's a
> hack and doesn't guarantee the attributes that the driver requested. If
> the driver would use writel/readl, that's not too bad since we pushed
> explicit barriers in these macros.
>
> It would need to be improved to invalidate the corresponding cache lines
> (using the DMA API?) but it would look even worse.
>
>
> diff --git a/arch/arm/mm/ioremap.c b/arch/arm/mm/ioremap.c
> index 6bdf42c..082bbd0 100644
> --- a/arch/arm/mm/ioremap.c
> +++ b/arch/arm/mm/ioremap.c
> @@ -204,10 +204,13 @@ void __iomem * __arm_ioremap_pfn_caller(unsigned long pfn,
> Â#endif
>
> Â Â Â Â/*
> - Â Â Â Â* Don't allow RAM to be mapped - this causes problems with ARMv6+
> + Â Â Â Â* Don't allow RAM to be mapped as Device memory - this causes
> + Â Â Â Â* problems with ARMv6+
> Â Â Â Â */
> Â Â Â Âif (WARN_ON(pfn_valid(pfn)))
> - Â Â Â Â Â Â Â return NULL;
> + Â Â Â Â Â Â Â if (__LINUX_ARM_ARCH__ >= 6 &&
> + Â Â Â Â Â Â Â Â Â (mtype != MT_DEVICE_CACHED || mtype != MT_DEVICE_WC))
> + Â Â Â Â Â Â Â Â Â Â Â mtype = MT_DEVICE_WC;
>
> Â Â Â Âtype = get_mem_type(mtype);
> Â Â Â Âif (!type)

I will try that, but from what I can see this might still break some
drivers, right? I still think just having the warning for now should
be enough.

Anyway, I'm reading the TRM and I can't find any mention of this.
Catalin, can you point out where is this mentioned, and also, can you
confirm if this would affect only the memory that has the double
mapping, or it can corrupt other memory as well?

Cheers.

--
Felipe Contreras
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/