blob: c002985cf451ca138e764d9c7ad23512a6b22f02 [file] [log] [blame]
Philippe Reynesa241ccd2022-02-11 19:18:38 +01001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2022 Philippe Reynes <philippe.reynes@softathome.com>
4 */
5
6#include <linux/sizes.h>
7
8/*
9 * common
10 */
11
12/* UART */
13#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, \
14 230400, 500000, 1500000 }
15/* Memory usage */
16#define CONFIG_SYS_MAXARGS 24
17
18/*
19 * 6853
20 */
21
22/* RAM */
23#define CONFIG_SYS_SDRAM_BASE 0x00000000
24
25/* U-Boot */
26#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + SZ_16M)
27
28#ifdef CONFIG_MTD_RAW_NAND
29#define CONFIG_SYS_MAX_NAND_DEVICE 1
30#endif /* CONFIG_MTD_RAW_NAND */
31
32/*
33 * 96753ref
34 */