]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/sunxi/cpu_info.c
sunxi: add sun7i cpu, board and start of day support
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / sunxi / cpu_info.c
1 /*
2  * (C) Copyright 2007-2011
3  * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
4  * Tom Cubie <tangliang@allwinnertech.com>
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #include <common.h>
10 #include <asm/io.h>
11 #include <asm/arch/cpu.h>
12
13 #ifdef CONFIG_DISPLAY_CPUINFO
14 int print_cpuinfo(void)
15 {
16         puts("CPU:   Allwinner A20 (SUN7I)\n");
17         return 0;
18 }
19 #endif