Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 Stefan Roese <sr@denx.de> |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
Stefan Roese | 633fa0e | 2016-10-25 10:56:19 +0200 | [diff] [blame] | 6 | #ifndef _CONFIG_MVEBU_ARMADA_8K_H |
| 7 | #define _CONFIG_MVEBU_ARMADA_8K_H |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 8 | |
| 9 | /* |
| 10 | * High Level Configuration Options (easy to change) |
| 11 | */ |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 12 | #define CFG_SYS_TCLK 250000000 /* 250MHz */ |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 13 | |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 14 | /* additions for new ARM relocation support */ |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 15 | #define CFG_SYS_SDRAM_BASE 0x00000000 |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 16 | |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 17 | /* auto boot */ |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 18 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 19 | #define CFG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, \ |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 20 | 115200, 230400, 460800, 921600 } |
| 21 | |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 22 | /* |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 23 | * Other required minimal configurations |
| 24 | */ |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 25 | |
Baruch Siach | 7e1d322 | 2018-08-14 18:05:46 +0300 | [diff] [blame] | 26 | /* When runtime detection fails this is the default */ |
Baruch Siach | 7e1d322 | 2018-08-14 18:05:46 +0300 | [diff] [blame] | 27 | |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 28 | /* USB ethernet */ |
Stefan Roese | 6f8c2d4 | 2016-05-25 08:21:21 +0200 | [diff] [blame] | 29 | |
| 30 | /* |
Stefan Roese | 1ec5aa6 | 2016-10-27 13:36:45 +0200 | [diff] [blame] | 31 | * PCI configuration |
| 32 | */ |
Stefan Roese | 1ec5aa6 | 2016-10-27 13:36:45 +0200 | [diff] [blame] | 33 | |
Mark Kettenis | bdca661 | 2018-03-17 09:34:27 +0100 | [diff] [blame] | 34 | #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 Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 44 | #define CFG_EXTRA_ENV_SETTINGS \ |
Heinrich Schuchardt | c64e2bd | 2021-06-08 12:00:35 +0200 | [diff] [blame] | 45 | "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 Kettenis | bdca661 | 2018-03-17 09:34:27 +0100 | [diff] [blame] | 50 | "fdtfile=marvell/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \ |
| 51 | BOOTENV |
| 52 | |
Stefan Roese | 633fa0e | 2016-10-25 10:56:19 +0200 | [diff] [blame] | 53 | #endif /* _CONFIG_MVEBU_ARMADA_8K_H */ |