mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
b72894f14d
Nand and QSPI are not defined now but this will be extended. Based on selected bootmode boot_targets are rewritten. Patch also contains detection if variables are saved. If yes don't rewrite boot_targets variable. Also move variable setup to the end of file because SCSI needs to be defined before others macros are using it. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Alexander Graf <agraf@suse.de>
22 lines
549 B
C
22 lines
549 B
C
/*
|
|
* Configuration for Xilinx ZynqMP zc1751 XM015 DC1
|
|
*
|
|
* (C) Copyright 2015 Xilinx, Inc.
|
|
* Michal Simek <michal.simek@xilinx.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __CONFIG_ZYNQMP_ZC1751_XM015_DC1_H
|
|
#define __CONFIG_ZYNQMP_ZC1751_XM015_DC1_H
|
|
|
|
#define CONFIG_ZYNQ_SDHCI0
|
|
#define CONFIG_ZYNQ_SDHCI1
|
|
#define CONFIG_AHCI
|
|
#define CONFIG_ZYNQMP_XHCI_LIST {ZYNQMP_USB0_XHCI_BASEADDR}
|
|
|
|
#define CONFIG_IDENT_STRING " Xilinx ZynqMP ZC1751 xm015 dc1"
|
|
|
|
#include <configs/xilinx_zynqmp.h>
|
|
|
|
#endif /* __CONFIG_ZYNQMP_ZC1751_XM015_DC1_H */
|