Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Chris Packham | c0def24 | 2016-09-22 12:56:14 +1200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014 Stefan Roese <sr@denx.de> |
Chris Packham | c0def24 | 2016-09-22 12:56:14 +1200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef _CONFIG_DB_88F6820_AMC_H |
| 7 | #define _CONFIG_DB_88F6820_AMC_H |
| 8 | |
| 9 | /* |
| 10 | * High Level Configuration Options (easy to change) |
| 11 | */ |
| 12 | |
Chris Packham | c0def24 | 2016-09-22 12:56:14 +1200 | [diff] [blame] | 13 | /* USB/EHCI configuration */ |
| 14 | #define CONFIG_EHCI_IS_TDI |
| 15 | |
| 16 | /* Environment in SPI NOR flash */ |
Chris Packham | c0def24 | 2016-09-22 12:56:14 +1200 | [diff] [blame] | 17 | |
Chris Packham | c0def24 | 2016-09-22 12:56:14 +1200 | [diff] [blame] | 18 | #define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */ |
| 19 | |
| 20 | /* PCIe support */ |
| 21 | #ifndef CONFIG_SPL_BUILD |
Chris Packham | c0def24 | 2016-09-22 12:56:14 +1200 | [diff] [blame] | 22 | #define CONFIG_PCI_SCAN_SHOW |
| 23 | #endif |
| 24 | |
Chris Packham | 42f7505 | 2016-09-22 12:56:15 +1200 | [diff] [blame] | 25 | /* NAND */ |
Chris Packham | 42f7505 | 2016-09-22 12:56:15 +1200 | [diff] [blame] | 26 | #define CONFIG_SYS_NAND_ONFI_DETECTION |
| 27 | |
Chris Packham | c0def24 | 2016-09-22 12:56:14 +1200 | [diff] [blame] | 28 | /* Keep device tree and initrd in lower memory so the kernel can access them */ |
| 29 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 30 | "fdt_high=0x10000000\0" \ |
| 31 | "initrd_high=0x10000000\0" |
| 32 | |
| 33 | /* SPL */ |
| 34 | /* |
| 35 | * Select the boot device here |
| 36 | * |
| 37 | * Currently supported are: |
| 38 | * SPL_BOOT_SPI_NOR_FLASH - Booting via SPI NOR flash |
| 39 | * |
| 40 | * MMC is not populated on this board. |
| 41 | * NAND support may be added in the future. |
| 42 | */ |
| 43 | #define SPL_BOOT_SPI_NOR_FLASH 1 |
| 44 | #define CONFIG_SPL_BOOT_DEVICE SPL_BOOT_SPI_NOR_FLASH |
| 45 | |
| 46 | /* Defines for SPL */ |
Chris Packham | c0def24 | 2016-09-22 12:56:14 +1200 | [diff] [blame] | 47 | #define CONFIG_SPL_SIZE (140 << 10) |
Chris Packham | c0def24 | 2016-09-22 12:56:14 +1200 | [diff] [blame] | 48 | #define CONFIG_SPL_MAX_SIZE (CONFIG_SPL_SIZE - 0x0030) |
| 49 | |
| 50 | #define CONFIG_SPL_BSS_START_ADDR (0x40000000 + CONFIG_SPL_SIZE) |
| 51 | #define CONFIG_SPL_BSS_MAX_SIZE (16 << 10) |
| 52 | |
| 53 | #ifdef CONFIG_SPL_BUILD |
| 54 | #define CONFIG_SYS_MALLOC_SIMPLE |
| 55 | #endif |
| 56 | |
| 57 | #define CONFIG_SPL_STACK (0x40000000 + ((192 - 16) << 10)) |
| 58 | #define CONFIG_SPL_BOOTROM_SAVE (CONFIG_SPL_STACK + 4) |
| 59 | |
Chris Packham | c0def24 | 2016-09-22 12:56:14 +1200 | [diff] [blame] | 60 | /* |
| 61 | * mv-common.h should be defined after CMD configs since it used them |
| 62 | * to enable certain macros |
| 63 | */ |
| 64 | #include "mv-common.h" |
| 65 | #undef CONFIG_SYS_MAXARGS |
| 66 | #define CONFIG_SYS_MAXARGS 96 |
| 67 | |
| 68 | #endif /* _CONFIG_DB_88F6820_AMC_H */ |