Merge branch '2022-12-07-Kconfig-migrations' into next
[platform/kernel/u-boot.git] / include / configs / x530.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2018 Allied Telesis Labs
4  */
5
6 #ifndef _CONFIG_X530_H
7 #define _CONFIG_X530_H
8
9 /*
10  * High Level Configuration Options (easy to change)
11  */
12
13 /*
14  * NS16550 Configuration
15  */
16 #define CFG_SYS_NS16550_CLK             CFG_SYS_TCLK
17 #if !defined(CONFIG_DM_SERIAL)
18 #define CFG_SYS_NS16550_COM1            MV_UART_CONSOLE_BASE
19 #endif
20
21 /*
22  * Serial Port configuration
23  * The following definitions let you select what serial you want to use
24  * for your console driver.
25  */
26
27 /* NAND */
28
29 #define BBT_CUSTOM_SCAN
30 #define BBT_CUSTOM_SCAN_PAGE 0
31 #define BBT_CUSTOM_SCAN_POSITION 2048
32
33 /* SPI NOR flash default params, used by sf commands */
34
35 #define MTDIDS_DEFAULT                  "nand0=nand"
36 #define MTDPARTS_DEFAULT                "mtdparts=nand:240M(user),8M(errlog),8M(nand-bbt)"
37 #define MTDPARTS_MTDOOPS                "errlog"
38
39 /* Partition support */
40
41 /* Additional FS support/configuration */
42
43 /* Environment in SPI NOR flash */
44
45 #define PHY_ANEG_TIMEOUT        8000    /* PHY needs a longer aneg time */
46
47 /* NAND */
48
49 #include <asm/arch/config.h>
50
51 /* Keep device tree and initrd in low memory so the kernel can access them */
52 #define CONFIG_EXTRA_ENV_SETTINGS       \
53         "fdt_high=0x10000000\0"         \
54         "initrd_high=0x10000000\0"
55
56 #define CONFIG_UBI_PART                 user
57 #define CONFIG_UBIFS_VOLUME             user
58
59 #endif /* _CONFIG_X530_H */