Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Configuration for Pumpkin board |
| 4 | * |
| 5 | * Copyright (C) 2019 BayLibre, SAS |
| 6 | * Author: Fabien Parent <fparent@baylibre.com |
| 7 | */ |
| 8 | |
Fabien Parent | 86e07d5 | 2021-02-15 19:07:44 +0100 | [diff] [blame] | 9 | #ifndef __MT8516_H |
| 10 | #define __MT8516_H |
Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 11 | |
| 12 | #include <linux/sizes.h> |
| 13 | |
Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 14 | #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_TEXT_BASE |
| 15 | #define CONFIG_SYS_MALLOC_LEN SZ_4M |
| 16 | |
| 17 | #define CONFIG_CPU_ARMV8 |
| 18 | #define COUNTER_FREQUENCY 13000000 |
| 19 | |
| 20 | #define CONFIG_SYS_NS16550_SERIAL |
| 21 | #define CONFIG_SYS_NS16550_REG_SIZE -4 |
| 22 | #define CONFIG_SYS_NS16550_MEM32 |
| 23 | #define CONFIG_SYS_NS16550_COM1 0x11005000 |
| 24 | #define CONFIG_SYS_NS16550_CLK 26000000 |
| 25 | |
Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 26 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + SZ_2M - \ |
| 27 | GENERATED_GBL_DATA_SIZE) |
| 28 | |
| 29 | #define CONFIG_SYS_BOOTM_LEN SZ_64M |
| 30 | |
| 31 | /* Environment settings */ |
| 32 | #include <config_distro_bootcmd.h> |
| 33 | |
Fabien Parent | 21f5932 | 2021-02-15 19:07:46 +0100 | [diff] [blame] | 34 | #define BOOT_TARGET_DEVICES(func) \ |
| 35 | func(MMC, mmc, 0) |
Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 36 | |
| 37 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Fabien Parent | 21f5932 | 2021-02-15 19:07:46 +0100 | [diff] [blame] | 38 | "scriptaddr=0x40000000\0" \ |
| 39 | BOOTENV |
Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 40 | |
| 41 | #endif |