blob: fddf00d3d13cb8c52205f9b09f93a60e7987c8cc [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 Rini65cc0e22022-11-16 13:10:41 -050016#define CFG_SYS_NS16550_CLK CFG_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
Chris Packham0e316662019-01-10 21:01:00 +130035#define MTDPARTS_MTDOOPS "errlog"
36
37/* Partition support */
38
39/* Additional FS support/configuration */
40
Chris Packham0e316662019-01-10 21:01:00 +130041/* Environment in SPI NOR flash */
Chris Packham0e316662019-01-10 21:01:00 +130042
Chris Packham0e316662019-01-10 21:01:00 +130043#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
44
Chris Packham0e316662019-01-10 21:01:00 +130045/* NAND */
Chris Packham0e316662019-01-10 21:01:00 +130046
Chris Packham0e316662019-01-10 21:01:00 +130047#include <asm/arch/config.h>
48
Chris Packham0e316662019-01-10 21:01:00 +130049/* Keep device tree and initrd in low memory so the kernel can access them */
Tom Rini0613c362022-12-04 10:03:50 -050050#define CFG_EXTRA_ENV_SETTINGS \
Chris Packham0e316662019-01-10 21:01:00 +130051 "fdt_high=0x10000000\0" \
52 "initrd_high=0x10000000\0"
53
Chris Packham0e316662019-01-10 21:01:00 +130054#endif /* _CONFIG_X530_H */