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
437 B
16 lines
437 B
/*
|
|
* Copyright (C) 2004-2006 Atmel Corporation
|
|
* Copyright (C) 2015 Andreas Bießmann <andreas.devel@googlmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
#include <common.h>
|
|
#include <atmel_mci.h>
|
|
#include <asm/arch/hardware.h>
|
|
|
|
/* provide cpu_mmc_init, to overwrite provide board_mmc_init */
|
|
int cpu_mmc_init(bd_t *bd)
|
|
{
|
|
/* This calls the atmel_mci_init in gen_atmel_mci.c */
|
|
return atmel_mci_init((void *)ATMEL_BASE_MMCI);
|
|
}
|
|
|