mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
bc4adc97cf
This patch adds general board files based on MT7988 SoCs. MT7988 uses one mmc controller for booting from both SD and eMMC, and the pins of mmc controller booting from SD are also shared with one of spi controllers. So two configs are need for these boot types: 1. mt7988_rfb_defconfig - SPI-NOR, SPI-NAND and eMMC 2. mt7988_sd_rfb_defconfig - SPI-NAND and SD Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
14 lines
257 B
C
14 lines
257 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Configuration for MediaTek MT7988 SoC
|
|
*
|
|
* Copyright (C) 2022 MediaTek Inc.
|
|
* Author: Sam Shih <sam.shih@mediatek.com>
|
|
*/
|
|
|
|
#ifndef __MT7988_H
|
|
#define __MT7988_H
|
|
|
|
#define CFG_MAX_MEM_MAPPED 0xC0000000
|
|
|
|
#endif
|