From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heiko Schocher Date: Thu, 10 Dec 2015 10:35:59 +0100 Subject: [U-Boot] [PATCH v2 3/3] board: atmel: clean up the PMC_PLLICPR init code In-Reply-To: <1449646720-30057-4-git-send-email-wenyou.yang@atmel.com> References: <1449646720-30057-1-git-send-email-wenyou.yang@atmel.com> <1449646720-30057-4-git-send-email-wenyou.yang@atmel.com> Message-ID: <5669477F.1040908@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hello Wenyou, Am 09.12.2015 um 08:38 schrieb Wenyou Yang: > Due to introducing the PMC_PLLICPR init function, use this > function to clean up the code. > > Signed-off-by: Wenyou Yang > --- > > Changes in v2: None > > board/atmel/sama5d3_xplained/sama5d3_xplained.c | 4 +--- > board/atmel/sama5d3xek/sama5d3xek.c | 4 +--- > board/atmel/sama5d4_xplained/sama5d4_xplained.c | 4 +--- > board/atmel/sama5d4ek/sama5d4ek.c | 4 +--- > 4 files changed, 4 insertions(+), 12 deletions(-) Tested on the smartweb board, see log: http://xeidos.ddns.net/buildbot/builders/smartweb_dfu/builds/29/steps/shell/logs/tbotlog Tested-by: Heiko Schocher bye, Heiko > > diff --git a/board/atmel/sama5d3_xplained/sama5d3_xplained.c b/board/atmel/sama5d3_xplained/sama5d3_xplained.c > index d180b41..6532970 100644 > --- a/board/atmel/sama5d3_xplained/sama5d3_xplained.c > +++ b/board/atmel/sama5d3_xplained/sama5d3_xplained.c > @@ -10,7 +10,6 @@ > #include > #include > #include > -#include > #include > #include > #include > @@ -198,7 +197,6 @@ void mem_init(void) > > void at91_pmc_init(void) > { > - struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC; > u32 tmp; > > tmp = AT91_PMC_PLLAR_29 | > @@ -207,7 +205,7 @@ void at91_pmc_init(void) > AT91_PMC_PLLXR_DIV(1); > at91_plla_init(tmp); > > - writel(0x3 << 8, &pmc->pllicpr); > + at91_pllicpr_init(AT91_PMC_IPLL_PLLA(0x3)); > > tmp = AT91_PMC_MCKR_MDIV_4 | > AT91_PMC_MCKR_CSS_PLLA; > diff --git a/board/atmel/sama5d3xek/sama5d3xek.c b/board/atmel/sama5d3xek/sama5d3xek.c > index 777e57e..7a804e8 100644 > --- a/board/atmel/sama5d3xek/sama5d3xek.c > +++ b/board/atmel/sama5d3xek/sama5d3xek.c > @@ -10,7 +10,6 @@ > #include > #include > #include > -#include > #include > #include > #include > @@ -457,7 +456,6 @@ void mem_init(void) > > void at91_pmc_init(void) > { > - struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC; > u32 tmp; > > tmp = AT91_PMC_PLLAR_29 | > @@ -466,7 +464,7 @@ void at91_pmc_init(void) > AT91_PMC_PLLXR_DIV(1); > at91_plla_init(tmp); > > - writel(0x3 << 8, &pmc->pllicpr); > + at91_pllicpr_init(AT91_PMC_IPLL_PLLA(0x3)); > > tmp = AT91_PMC_MCKR_MDIV_4 | > AT91_PMC_MCKR_CSS_PLLA; > diff --git a/board/atmel/sama5d4_xplained/sama5d4_xplained.c b/board/atmel/sama5d4_xplained/sama5d4_xplained.c > index e95310c..3fec662 100644 > --- a/board/atmel/sama5d4_xplained/sama5d4_xplained.c > +++ b/board/atmel/sama5d4_xplained/sama5d4_xplained.c > @@ -8,7 +8,6 @@ > #include > #include > #include > -#include > #include > #include > #include > @@ -397,7 +396,6 @@ void mem_init(void) > > void at91_pmc_init(void) > { > - struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC; > u32 tmp; > > tmp = AT91_PMC_PLLAR_29 | > @@ -406,7 +404,7 @@ void at91_pmc_init(void) > AT91_PMC_PLLXR_DIV(1); > at91_plla_init(tmp); > > - writel(0x0 << 8, &pmc->pllicpr); > + at91_pllicpr_init(AT91_PMC_IPLL_PLLA(0x0)); > > tmp = AT91_PMC_MCKR_H32MXDIV | > AT91_PMC_MCKR_PLLADIV_2 | > diff --git a/board/atmel/sama5d4ek/sama5d4ek.c b/board/atmel/sama5d4ek/sama5d4ek.c > index c92e2588..6ccbc64 100644 > --- a/board/atmel/sama5d4ek/sama5d4ek.c > +++ b/board/atmel/sama5d4ek/sama5d4ek.c > @@ -8,7 +8,6 @@ > #include > #include > #include > -#include > #include > #include > #include > @@ -393,7 +392,6 @@ void mem_init(void) > > void at91_pmc_init(void) > { > - struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC; > u32 tmp; > > tmp = AT91_PMC_PLLAR_29 | > @@ -402,7 +400,7 @@ void at91_pmc_init(void) > AT91_PMC_PLLXR_DIV(1); > at91_plla_init(tmp); > > - writel(0x0 << 8, &pmc->pllicpr); > + at91_pllicpr_init(AT91_PMC_IPLL_PLLA(0x0)); > > tmp = AT91_PMC_MCKR_H32MXDIV | > AT91_PMC_MCKR_PLLADIV_2 | > -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany