blob: 27c3718352d0e45f0b31dd395464b3d568c674a1 [file] [log] [blame]
Fabien Parentbb4c5d62019-07-18 19:08:09 +02001/* 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 Parent86e07d52021-02-15 19:07:44 +01009#ifndef __MT8516_H
10#define __MT8516_H
Fabien Parentbb4c5d62019-07-18 19:08:09 +020011
12#include <linux/sizes.h>
13
Tom Rini91092132022-11-16 13:10:28 -050014#define CFG_SYS_NS16550_COM1 0x11005000
15#define CFG_SYS_NS16550_CLK 26000000
Fabien Parentbb4c5d62019-07-18 19:08:09 +020016
Fabien Parentbb4c5d62019-07-18 19:08:09 +020017/* Environment settings */
18#include <config_distro_bootcmd.h>
19
Fabien Parent21f59322021-02-15 19:07:46 +010020#define BOOT_TARGET_DEVICES(func) \
21 func(MMC, mmc, 0)
Fabien Parentbb4c5d62019-07-18 19:08:09 +020022
Tom Rini0613c362022-12-04 10:03:50 -050023#define CFG_EXTRA_ENV_SETTINGS \
Fabien Parent21f59322021-02-15 19:07:46 +010024 "scriptaddr=0x40000000\0" \
25 BOOTENV
Fabien Parentbb4c5d62019-07-18 19:08:09 +020026
27#endif