blob: 239a09763ae1bc775f66bfd9250e35a46502d69e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roese6f8c2d42016-05-25 08:21:21 +02002/*
3 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
Stefan Roese6f8c2d42016-05-25 08:21:21 +02004 */
5
Stefan Roese633fa0e2016-10-25 10:56:19 +02006#ifndef _CONFIG_MVEBU_ARMADA_8K_H
7#define _CONFIG_MVEBU_ARMADA_8K_H
Stefan Roese6f8c2d42016-05-25 08:21:21 +02008
9/*
10 * High Level Configuration Options (easy to change)
11 */
Tom Rini65cc0e22022-11-16 13:10:41 -050012#define CFG_SYS_TCLK 250000000 /* 250MHz */
Stefan Roese6f8c2d42016-05-25 08:21:21 +020013
Stefan Roese6f8c2d42016-05-25 08:21:21 +020014/* additions for new ARM relocation support */
Tom Riniaa6e94d2022-11-16 13:10:37 -050015#define CFG_SYS_SDRAM_BASE 0x00000000
Stefan Roese6f8c2d42016-05-25 08:21:21 +020016
Stefan Roese6f8c2d42016-05-25 08:21:21 +020017/* auto boot */
Stefan Roese6f8c2d42016-05-25 08:21:21 +020018
Tom Rini65cc0e22022-11-16 13:10:41 -050019#define CFG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, \
Stefan Roese6f8c2d42016-05-25 08:21:21 +020020 115200, 230400, 460800, 921600 }
21
Stefan Roese6f8c2d42016-05-25 08:21:21 +020022/*
Stefan Roese6f8c2d42016-05-25 08:21:21 +020023 * Other required minimal configurations
24 */
Stefan Roese6f8c2d42016-05-25 08:21:21 +020025
Baruch Siach7e1d3222018-08-14 18:05:46 +030026/* When runtime detection fails this is the default */
Baruch Siach7e1d3222018-08-14 18:05:46 +030027
Stefan Roese6f8c2d42016-05-25 08:21:21 +020028/* USB ethernet */
Stefan Roese6f8c2d42016-05-25 08:21:21 +020029
30/*
Stefan Roese1ec5aa62016-10-27 13:36:45 +020031 * PCI configuration
32 */
Stefan Roese1ec5aa62016-10-27 13:36:45 +020033
Mark Kettenisbdca6612018-03-17 09:34:27 +010034#define BOOT_TARGET_DEVICES(func) \
35 func(MMC, mmc, 1) \
36 func(MMC, mmc, 0) \
37 func(USB, usb, 0) \
38 func(SCSI, scsi, 0) \
39 func(PXE, pxe, na) \
40 func(DHCP, dhcp, na)
41
42#include <config_distro_bootcmd.h>
43
Tom Rini0613c362022-12-04 10:03:50 -050044#define CFG_EXTRA_ENV_SETTINGS \
Heinrich Schuchardtc64e2bd2021-06-08 12:00:35 +020045 "scriptaddr=0x6d00000\0" \
46 "pxefile_addr_r=0x6e00000\0" \
47 "fdt_addr_r=0x6f00000\0" \
48 "kernel_addr_r=0x7000000\0" \
49 "ramdisk_addr_r=0xa000000\0" \
Mark Kettenisbdca6612018-03-17 09:34:27 +010050 "fdtfile=marvell/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
51 BOOTENV
52
Stefan Roese633fa0e2016-10-25 10:56:19 +020053#endif /* _CONFIG_MVEBU_ARMADA_8K_H */