1*cba69eeeSIan Campbell /* 2*cba69eeeSIan Campbell * (C) Copyright 2012-2013 Henrik Nordstrom <henrik@henriknordstrom.net> 3*cba69eeeSIan Campbell * (C) Copyright 2013 Luke Kenneth Casson Leighton <lkcl@lkcl.net> 4*cba69eeeSIan Campbell * 5*cba69eeeSIan Campbell * Configuration settings for the Allwinner A20 (sun7i) CPU 6*cba69eeeSIan Campbell * 7*cba69eeeSIan Campbell * SPDX-License-Identifier: GPL-2.0+ 8*cba69eeeSIan Campbell */ 9*cba69eeeSIan Campbell #ifndef __CONFIG_H 10*cba69eeeSIan Campbell #define __CONFIG_H 11*cba69eeeSIan Campbell 12*cba69eeeSIan Campbell /* 13*cba69eeeSIan Campbell * A20 specific configuration 14*cba69eeeSIan Campbell */ 15*cba69eeeSIan Campbell #define CONFIG_SUN7I /* sun7i SoC generation */ 16*cba69eeeSIan Campbell 17*cba69eeeSIan Campbell #define CONFIG_SYS_PROMPT "sun7i# " 18*cba69eeeSIan Campbell 19*cba69eeeSIan Campbell /* 20*cba69eeeSIan Campbell * Include common sunxi configuration where most the settings are 21*cba69eeeSIan Campbell */ 22*cba69eeeSIan Campbell #include <configs/sunxi-common.h> 23*cba69eeeSIan Campbell 24*cba69eeeSIan Campbell #endif /* __CONFIG_H */ 25