mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
board: atmel: sama5d2_icp: enable green led on SPL completion
Enable the green led on SPL completion. Red led has no pulldown and it will be lighted by default when the board starts up. If the PMIC is not configured to enable LDO2, the leds will not light. Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
This commit is contained in:
parent
2950c514e8
commit
bc2d313d68
1 changed files with 8 additions and 0 deletions
|
@ -79,6 +79,13 @@ static void board_can_stdby_dis(void)
|
|||
atmel_pio4_set_pio_output(AT91_PIO_PORTB, 25, 0);
|
||||
}
|
||||
|
||||
static void board_leds_init(void)
|
||||
{
|
||||
atmel_pio4_set_pio_output(AT91_PIO_PORTB, 0, 0); /* RED */
|
||||
atmel_pio4_set_pio_output(AT91_PIO_PORTB, 1, 1); /* GREEN */
|
||||
atmel_pio4_set_pio_output(AT91_PIO_PORTA, 31, 0); /* BLUE */
|
||||
}
|
||||
|
||||
/* deassert reset lines for external periph in case of warm reboot */
|
||||
static void board_reset_additional_periph(void)
|
||||
{
|
||||
|
@ -118,6 +125,7 @@ void spl_board_init(void)
|
|||
#endif
|
||||
board_reset_additional_periph();
|
||||
board_can_stdby_dis();
|
||||
board_leds_init();
|
||||
}
|
||||
|
||||
void spl_display_print(void)
|
||||
|
|
Loading…
Reference in a new issue