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 | |
Tom Rini | 9109213 | 2022-11-16 13:10:28 -0500 | [diff] [blame] | 15 | #define CFG_SYS_NS16550_COM1 0x11005000 |
| 16 | #define CFG_SYS_NS16550_CLK 26000000 |
Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 17 | |
Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 18 | /* Environment settings */ |
| 19 | #include <config_distro_bootcmd.h> |
| 20 | |
Fabien Parent | 21f5932 | 2021-02-15 19:07:46 +0100 | [diff] [blame] | 21 | #define BOOT_TARGET_DEVICES(func) \ |
| 22 | func(MMC, mmc, 0) |
Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 23 | |
| 24 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Fabien Parent | 21f5932 | 2021-02-15 19:07:46 +0100 | [diff] [blame] | 25 | "scriptaddr=0x40000000\0" \ |
| 26 | BOOTENV |
Fabien Parent | bb4c5d6 | 2019-07-18 19:08:09 +0200 | [diff] [blame] | 27 | |
| 28 | #endif |