mirror of https://gitee.com/openkylin/linux.git
ARM: realview: fix map_desc alignment
REALVIEW_PBX_TILE_GIC_CPU_BASE is not 4KB aligned which causes an overlapping mapping. Use REALVIEW_PBX_TILE_SCU_BASE instead which is aligned. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
This commit is contained in:
parent
38bd7493aa
commit
9ceceb652a
|
@ -98,8 +98,8 @@ static struct map_desc realview_pbx_io_desc[] __initdata = {
|
||||||
|
|
||||||
static struct map_desc realview_local_io_desc[] __initdata = {
|
static struct map_desc realview_local_io_desc[] __initdata = {
|
||||||
{
|
{
|
||||||
.virtual = IO_ADDRESS(REALVIEW_PBX_TILE_GIC_CPU_BASE),
|
.virtual = IO_ADDRESS(REALVIEW_PBX_TILE_SCU_BASE),
|
||||||
.pfn = __phys_to_pfn(REALVIEW_PBX_TILE_GIC_CPU_BASE),
|
.pfn = __phys_to_pfn(REALVIEW_PBX_TILE_SCU_BASE),
|
||||||
.length = SZ_4K,
|
.length = SZ_4K,
|
||||||
.type = MT_DEVICE,
|
.type = MT_DEVICE,
|
||||||
}, {
|
}, {
|
||||||
|
|
Loading…
Reference in New Issue