mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
board: lx2160a: Align RD tables address to 64KB
As the lower 16bit of the redistributor pending table is reserved for describing the memory attributes, we must give a 64KB aligned address to the GIC LPI initialization function. Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com> Reviewed-by: Wasim Khan <wasim.khan@nxp.com> Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
df32ce2dbe
commit
90ae271393
1 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <fdt_support.h>
|
#include <fdt_support.h>
|
||||||
#include <linux/libfdt.h>
|
#include <linux/libfdt.h>
|
||||||
|
#include <linux/sizes.h>
|
||||||
#include <fsl-mc/fsl_mc.h>
|
#include <fsl-mc/fsl_mc.h>
|
||||||
#include <env_internal.h>
|
#include <env_internal.h>
|
||||||
#include <efi_loader.h>
|
#include <efi_loader.h>
|
||||||
|
@ -694,7 +695,7 @@ int ft_board_setup(void *blob, bd_t *bd)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_GIC_V3_ITS
|
#ifdef CONFIG_GIC_V3_ITS
|
||||||
gic_lpi_base = gd->arch.resv_ram - GIC_LPI_SIZE;
|
gic_lpi_base = ALIGN(gd->arch.resv_ram - GIC_LPI_SIZE, SZ_64K);
|
||||||
ret = fdt_fixup_gic_lpi_memory(blob, gic_lpi_base);
|
ret = fdt_fixup_gic_lpi_memory(blob, gic_lpi_base);
|
||||||
if (!ret && gic_lpi_tables_init(gic_lpi_base, cpu_numcores()))
|
if (!ret && gic_lpi_tables_init(gic_lpi_base, cpu_numcores()))
|
||||||
debug("%s: failed to init gic-lpi-tables\n", __func__);
|
debug("%s: failed to init gic-lpi-tables\n", __func__);
|
||||||
|
|
Loading…
Reference in a new issue