upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
380 B
16 lines
380 B
/*
|
|
* (C) Copyright 2009
|
|
* Kevin Morfitt, Fearnside Systems Ltd, <kevin.morfitt@fearnside-systems.co.uk>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifdef CONFIG_S3C2400
|
|
#include <asm/arch/s3c2400.h>
|
|
#elif defined CONFIG_S3C2410
|
|
#include <asm/arch/s3c2410.h>
|
|
#elif defined CONFIG_S3C2440
|
|
#include <asm/arch/s3c2440.h>
|
|
#else
|
|
#error Please define the s3c24x0 cpu type
|
|
#endif
|
|
|