mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
02b5d2ed86
LS1043AQDS Specification: ------------------------- Memory subsystem: * 2GByte DDR4 DIMM * 128 Mbyte NOR flash single-chip memory * 512 Mbyte NAND flash * 16 Mbyte high-speed SPI flash * SD connector to interface with the SD memory card Ethernet: * Two RGMII ports * XFI 10G port * SGMII * QSGMII with 4x 1G ports PCIe: supports Gen 1 and Gen 2 SATA 3.0: one SATA 3.0 port USB 3.0: two micro AB connector and one type A connector UART: supports two UARTs up to 115200 bps for console Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com> Signed-off-by: Mingkai Hu <Mingkai.Hu@freescale.com> Signed-off-by: Hou Zhiqiang <B48286@freescale.com> Signed-off-by: Gong Qianyu <Qianyu.Gong@freescale.com> [York Sun: Add CONFIG_SYS_NS16550=y in defconfig] Reviewed-by: York Sun <yorksun@freescale.com>
15 lines
489 B
C
15 lines
489 B
C
/*
|
|
* Copyright 2015 Freescale Semiconductor
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _ASM_ARMV8_FSL_LAYERSCAPE_FDT_H_
|
|
#define _ASM_ARMV8_FSL_LAYERSCAPE_FDT_H_
|
|
|
|
void alloc_stream_ids(int start_id, int count, u32 *stream_ids, int max_cnt);
|
|
void append_mmu_masters(void *blob, const char *smmu_path,
|
|
const char *master_name, u32 *stream_ids, int count);
|
|
void fdt_fixup_smmu_pcie(void *blob);
|
|
void fdt_fixup_board_enet(void *fdt);
|
|
#endif /* _ASM_ARMV8_FSL_LAYERSCAPE_FDT_H_ */
|