blob: a0162cab219042475468a8d48a633cf8a26c19c8 [file] [log] [blame]
Chris Packham0e316662019-01-10 21:01:00 +13001/* 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
Chris Packham0e316662019-01-10 21:01:00 +130013/*
14 * NS16550 Configuration
15 */
Tom Rini91092132022-11-16 13:10:28 -050016#define CFG_SYS_NS16550_CLK CONFIG_SYS_TCLK
Chris Packham0e316662019-01-10 21:01:00 +130017#if !defined(CONFIG_DM_SERIAL)
Tom Rini91092132022-11-16 13:10:28 -050018#define CFG_SYS_NS16550_COM1 MV_UART_CONSOLE_BASE
Chris Packham0e316662019-01-10 21:01:00 +130019#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
Chris Packham0e316662019-01-10 21:01:00 +130027/* NAND */
Chris Packham0e316662019-01-10 21:01:00 +130028
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 */
Chris Packham0e316662019-01-10 21:01:00 +130034
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
Chris Packham0e316662019-01-10 21:01:00 +130043/* Environment in SPI NOR flash */
Chris Packham0e316662019-01-10 21:01:00 +130044
Chris Packham0e316662019-01-10 21:01:00 +130045#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
46
Chris Packham0e316662019-01-10 21:01:00 +130047/* NAND */
Chris Packham0e316662019-01-10 21:01:00 +130048
Chris Packham0e316662019-01-10 21:01:00 +130049#include <asm/arch/config.h>
50
Chris Packham0e316662019-01-10 21:01:00 +130051/* 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
Chris Packham0e316662019-01-10 21:01:00 +130056#define CONFIG_UBI_PART user
57#define CONFIG_UBIFS_VOLUME user
58
Chris Packham0e316662019-01-10 21:01:00 +130059#endif /* _CONFIG_X530_H */