From cade865a43daf19df8ac972f44d6bc40639e81c0 Mon Sep 17 00:00:00 2001 From: Neil Armstrong Date: Thu, 12 Oct 2017 15:50:32 +0200 Subject: 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 Reviewed-by: Beniamino Galvani --- include/configs/p212.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 include/configs/p212.h (limited to 'include/configs/p212.h') 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 + * + * 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 + +#endif /* __CONFIG_H */ -- cgit