forked from OERV-BSP/u-boot
Merge tag 'xilinx-for-v2021.04' of https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze into next
Xilinx changes for v2021.04 arm64: - DT updates microblaze: - Add support for NOR device support spi: - Fix unaligned data write issue nand: - Minor code change xilinx: - Fru fix in limit calculation - Fill git repo link for all Xilinx boards video: - Add support for seps525 spi display tools: - Minor Vitis file support cmd/common - Minor code indentation fixes serial: - Uartlite debug uart initialization fix
This commit is contained in:
@@ -170,7 +170,7 @@ static int fru_parse_board(unsigned long addr)
|
||||
data = (u8 *)&fru_data.brd.manufacturer_type_len;
|
||||
|
||||
/* Record max structure limit not to write data over allocated space */
|
||||
limit = data + sizeof(struct fru_board_data);
|
||||
limit = (u8 *)&fru_data.brd + sizeof(struct fru_board_data);
|
||||
|
||||
for (i = 0; ; i++, data += FRU_BOARD_MAX_LEN) {
|
||||
len = fru_check_type_len(*(u8 *)addr, fru_data.brd.lang_code,
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
MICROBLAZE-GENERIC BOARD
|
||||
M: Michal Simek <monstr@monstr.eu>
|
||||
S: Maintained
|
||||
T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
|
||||
F: board/xilinx/microblaze-generic/
|
||||
F: include/configs/microblaze-generic.h
|
||||
F: configs/microblaze-generic_defconfig
|
||||
|
||||
@@ -67,7 +67,10 @@ int board_late_init(void)
|
||||
|
||||
status |= env_set_hex("ramdisk_addr_r",
|
||||
gd->ram_base + SZ_32M + SZ_4M + SZ_2M);
|
||||
|
||||
if (IS_ENABLED(CONFIG_MTD_NOR_FLASH))
|
||||
status |= env_set_hex("script_offset_nor",
|
||||
gd->bd->bi_flashstart +
|
||||
CONFIG_BOOT_SCRIPT_OFFSET);
|
||||
if (status)
|
||||
printf("%s: Saving run time variables FAILED\n", __func__);
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
XILINX_VERSAL BOARDS
|
||||
M: Michal Simek <michal.simek@xilinx.com>
|
||||
S: Maintained
|
||||
T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
|
||||
F: arch/arm/dts/versal*
|
||||
F: board/xilinx/versal/
|
||||
F: include/configs/xilinx_versal*
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
ZYNQ BOARD
|
||||
M: Michal Simek <monstr@monstr.eu>
|
||||
S: Maintained
|
||||
T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
|
||||
F: arch/arm/dts/zynq-*
|
||||
F: board/xilinx/zynq/
|
||||
F: include/configs/zynq*.h
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
XILINX_ZYNQMP BOARDS
|
||||
M: Michal Simek <michal.simek@xilinx.com>
|
||||
S: Maintained
|
||||
T: git https://gitlab.denx.de/u-boot/custodians/u-boot-microblaze.git
|
||||
F: arch/arm/dts/zynqmp-*
|
||||
F: arch/arm/dts/avnet-ultra96*
|
||||
F: board/xilinx/common/
|
||||
|
||||
Reference in New Issue
Block a user