From: Bo Shen <voice.shen@atmel.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 4/7] arm: atmel: sama5d3: early enable PIO peripherals
Date: Tue, 5 Nov 2013 17:09:54 +0800 [thread overview]
Message-ID: <5278B5E2.1050401@atmel.com> (raw)
In-Reply-To: <1383292590-4308-5-git-send-email-voice.shen@atmel.com>
Hi Andreas,
On 11/1/2013 15:56, Bo Shen wrote:
> Enable the PIO peripherals early than other peripherals.
>
> Signed-off-by: Bo Shen <voice.shen@atmel.com>
>
> ---
> Changes in v2:
> - None
>
> board/atmel/sama5d3xek/sama5d3xek.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/board/atmel/sama5d3xek/sama5d3xek.c b/board/atmel/sama5d3xek/sama5d3xek.c
> index b0965ef..7fa3ae7 100644
> --- a/board/atmel/sama5d3xek/sama5d3xek.c
> +++ b/board/atmel/sama5d3xek/sama5d3xek.c
> @@ -158,6 +158,9 @@ void lcd_show_board_info(void)
>
> int board_early_init_f(void)
> {
> + at91_periph_clk_enable(ATMEL_ID_PIOA | ATMEL_ID_PIOB | ATMEL_ID_PIOC |
> + ATMEL_ID_PIOD | ATMEL_ID_PIOE);
This code is wrong, it should be as following:
--->8---
at91_periph_clk_enable(ATMEL_ID_PIOA);
at91_periph_clk_enable(ATMEL_ID_PIOB);
....
at91_periph_clk_enable(ATMEL_ID_PIOE);
---8<---
> at91_seriald_hw_init();
>
> return 0;
Best Regards,
Bo Shen
next prev parent reply other threads:[~2013-11-05 9:09 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-01 7:56 [U-Boot] [PATCH v2 0/7] arm: atmel: sama5d3: enable spl boot from SD card Bo Shen
2013-11-01 7:56 ` [U-Boot] [PATCH v2 1/7] arm: atmel: sama5d3: correct the ID for DBGU and PIT Bo Shen
2013-11-01 7:56 ` [U-Boot] [PATCH v2 2/7] arm: atmel: sama5: correct the error define of DIV Bo Shen
2013-11-01 7:56 ` [U-Boot] [PATCH v2 3/7] arm: atmel: the offset of MULA is 18 in sama5d3 Bo Shen
2013-11-01 7:56 ` [U-Boot] [PATCH v2 4/7] arm: atmel: sama5d3: early enable PIO peripherals Bo Shen
2013-11-05 9:09 ` Bo Shen [this message]
2013-11-01 7:56 ` [U-Boot] [PATCH v2 5/7] arm: atmel: add plla and mck initialize function Bo Shen
2013-11-01 7:56 ` [U-Boot] [PATCH v2 6/7] arm: atmel: add ddr2 initialization function Bo Shen
2013-11-01 7:56 ` [U-Boot] [PATCH v2 7/7] spl: mmc: FAT support boot u-boot Bo Shen
2013-11-01 9:18 ` Wolfgang Denk
2013-11-01 9:49 ` Bo Shen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5278B5E2.1050401@atmel.com \
--to=voice.shen@atmel.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.