Skip to content
Snippets Groups Projects
Commit d2acb986 authored by Bo Shen's avatar Bo Shen Committed by Andreas Bießmann
Browse files

arm: atmel: sama5d3: early enable PIO peripherals


Enable the PIO peripherals early than other peripherals.

Signed-off-by: default avatarBo Shen <voice.shen@atmel.com>
Signed-off-by: default avatarAndreas Bießmann <andreas.devel@googlemail.com>
parent ebfde6db
No related branches found
No related tags found
No related merge requests found
......@@ -158,6 +158,12 @@ void lcd_show_board_info(void)
int board_early_init_f(void)
{
at91_periph_clk_enable(ATMEL_ID_PIOA);
at91_periph_clk_enable(ATMEL_ID_PIOB);
at91_periph_clk_enable(ATMEL_ID_PIOC);
at91_periph_clk_enable(ATMEL_ID_PIOD);
at91_periph_clk_enable(ATMEL_ID_PIOE);
at91_seriald_hw_init();
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment