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.
40 lines
657 B
40 lines
657 B
11 years ago
|
/*
|
||
10 years ago
|
* Copyright (C) 2012-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
|
||
11 years ago
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef ARCH_BOARD_H
|
||
|
#define ARCH_BOARD_H
|
||
|
|
||
10 years ago
|
#if defined(CONFIG_MICRO_SUPPORT_CARD)
|
||
11 years ago
|
void support_card_reset(void);
|
||
|
void support_card_init(void);
|
||
11 years ago
|
void support_card_late_init(void);
|
||
11 years ago
|
int check_support_card(void);
|
||
10 years ago
|
void led_puts(const char *s);
|
||
11 years ago
|
#else
|
||
10 years ago
|
static inline void support_card_reset(void)
|
||
11 years ago
|
{
|
||
|
}
|
||
|
|
||
10 years ago
|
static inline void support_card_init(void)
|
||
11 years ago
|
{
|
||
|
}
|
||
|
|
||
10 years ago
|
static inline void support_card_late_init(void)
|
||
11 years ago
|
{
|
||
|
}
|
||
|
|
||
10 years ago
|
static inline int check_support_card(void)
|
||
11 years ago
|
{
|
||
10 years ago
|
return 0;
|
||
11 years ago
|
}
|
||
10 years ago
|
|
||
|
static inline void led_puts(const char *s)
|
||
|
{
|
||
|
}
|
||
10 years ago
|
#endif
|
||
11 years ago
|
|
||
11 years ago
|
#endif /* ARCH_BOARD_H */
|