diff options
author | Neil Armstrong <narmstrong@baylibre.com> | 2017-10-12 15:50:32 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-11-17 07:43:32 -0500 |
commit | cade865a43daf19df8ac972f44d6bc40639e81c0 (patch) | |
tree | 14f37720e6ae7a54098683249dd6174b6fe0e368 /include/configs/p212.h | |
parent | 16ec5ebdf83046edc0f80332297a8f6ed5e3518c (diff) | |
download | u-boot-cade865a43daf19df8ac972f44d6bc40639e81c0.tar.gz |
arm: add initial support for Amlogic P212 based on Meson GXL family
This adds platform code for the Amlogic P212 reference board based on a
Meson GXL (S905X) SoC with the Meson GXL configuration.
This initial submission only supports UART and MMC/SDCard, support for the
internal Ethernet PHY in Work In Progress.
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Beniamino Galvani <b.galvani@gmail.com>
Diffstat (limited to 'include/configs/p212.h')
-rw-r--r-- | include/configs/p212.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/configs/p212.h b/include/configs/p212.h new file mode 100644 index 0000000000..04773843e4 --- /dev/null +++ b/include/configs/p212.h @@ -0,0 +1,22 @@ +/* + * Configuration for Amlogic P212 + * + * Copyright (C) 2017 Baylibre, SAS + * Author: Neil Armstrong <narmstrong@baylibre.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __CONFIG_H +#define __CONFIG_H + +#define CONFIG_MISC_INIT_R + +/* Serial setup */ +#define CONFIG_CONS_INDEX 0 + +#define MESON_FDTFILE_SETTING "fdtfile=amlogic/meson-gxl-s905x-p212.dtb\0" + +#include <configs/meson-gxbb-common.h> + +#endif /* __CONFIG_H */ |