blob: 3da7619d78d742703a2a0c67178e0458bcffece7 [file] [log] [blame]
Fabien Parente96bedf2021-02-15 19:21:12 +01001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Configuration for MT8183 based boards
4 *
5 * Copyright (C) 2021 BayLibre, SAS
6 * Author: Fabien Parent <fparent@baylibre.com
7 */
8
9#ifndef __MT8183_H
10#define __MT8183_H
11
12#include <linux/sizes.h>
13
Fabien Parente96bedf2021-02-15 19:21:12 +010014
Tom Rini91092132022-11-16 13:10:28 -050015#define CFG_SYS_NS16550_COM1 0x11005200
16#define CFG_SYS_NS16550_CLK 26000000
Fabien Parente96bedf2021-02-15 19:21:12 +010017
Fabien Parente96bedf2021-02-15 19:21:12 +010018/* Environment settings */
19#include <config_distro_bootcmd.h>
20
21#define BOOT_TARGET_DEVICES(func) \
22 func(MMC, mmc, 0)
23
24#define CONFIG_EXTRA_ENV_SETTINGS \
25 "scriptaddr=0x40000000\0" \
26 BOOTENV
27
28#endif