Basic support for en7523/en7529/en7562 SoCs. Within a patch only serial console will be supported. Signed-off-by: Mikhail Kshevetskiy <mikhail.kshevetskiy@iopsys.eu>
22 lines
421 B
C
22 lines
421 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Configuration for Airoha EN7523
|
|
*
|
|
* Author: Mikhail Kshevetskiy <mikhail.kshevetskiy@iopsys.eu>
|
|
*/
|
|
|
|
#ifndef __EN7523_H
|
|
#define __EN7523_H
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
#define CFG_SYS_UBOOT_BASE CONFIG_TEXT_BASE
|
|
|
|
#define CFG_SYS_INIT_RAM_ADDR CONFIG_TEXT_BASE
|
|
#define CFG_SYS_INIT_RAM_SIZE SZ_2M
|
|
|
|
/* DRAM */
|
|
#define CFG_SYS_SDRAM_BASE 0x80000000
|
|
|
|
#endif
|