2018-11-15 02:07:52 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/*
|
|
|
|
* Configuration for MediaTek MT7629 SoC
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 MediaTek Inc.
|
|
|
|
* Author: Ryder Lee <ryder.lee@mediatek.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MT7629_H
|
|
|
|
#define __MT7629_H
|
|
|
|
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
|
|
|
/* Miscellaneous configurable options */
|
|
|
|
|
|
|
|
/* Environment */
|
|
|
|
|
2022-12-02 21:42:31 +00:00
|
|
|
#define CFG_SYS_UBOOT_BASE (0x30000000 + CONFIG_SPL_PAD_TO)
|
2018-11-15 02:07:52 +00:00
|
|
|
|
|
|
|
/* SPL -> Uboot */
|
|
|
|
|
|
|
|
/* UBoot -> Kernel */
|
|
|
|
|
|
|
|
/* DRAM */
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_BASE 0x40000000
|
2018-11-15 02:07:52 +00:00
|
|
|
|
2018-12-20 08:12:57 +00:00
|
|
|
/* Ethernet */
|
|
|
|
|
2018-11-15 02:07:52 +00:00
|
|
|
#endif
|