mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-12 03:58:47 +01:00
Add support for the lwmon5 board reset via GPIO58.
Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
This commit is contained in:
parent
f694e32f93
commit
0f009f781b
2 changed files with 7 additions and 0 deletions
|
|
@ -594,3 +594,8 @@ void video_get_info_str (int line_number, char *info)
|
|||
}
|
||||
#endif
|
||||
#endif /* CONFIG_VIDEO */
|
||||
|
||||
void board_reset(void)
|
||||
{
|
||||
gpio_write_bit(CFG_GPIO_BOARD_RESET, 1);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@
|
|||
#define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
|
||||
#define CONFIG_BOARD_POSTCLK_INIT 1 /* Call board_postclk_init */
|
||||
#define CONFIG_MISC_INIT_R 1 /* Call misc_init_r */
|
||||
#define CONFIG_BOARD_RESET 1 /* Call board_reset */
|
||||
|
||||
/*-----------------------------------------------------------------------
|
||||
* Base addresses -- Note these are effective addresses where the
|
||||
|
|
@ -516,6 +517,7 @@
|
|||
#define CFG_GPIO_EEPROM_EXT_WP 55
|
||||
#define CFG_GPIO_HIGHSIDE 56
|
||||
#define CFG_GPIO_EEPROM_INT_WP 57
|
||||
#define CFG_GPIO_BOARD_RESET 58
|
||||
#define CFG_GPIO_LIME_S 59
|
||||
#define CFG_GPIO_LIME_RST 60
|
||||
#define CFG_GPIO_SYSMON_STATUS 62
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue