Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
u-boot-2015.04
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vesta
u-boot-2015.04
Commits
1069a5cf
Commit
1069a5cf
authored
14 years ago
by
Daniel Gorsulowski
Committed by
Albert ARIBAUD
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
at91: fixed at91sam9263 system file
Signed-off-by:
Daniel Gorsulowski
<
Daniel.Gorsulowski@esd.eu
>
parent
673678ea
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c
+18
-37
18 additions, 37 deletions
arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c
with
18 additions
and
37 deletions
arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c
+
18
−
37
View file @
1069a5cf
...
...
@@ -3,7 +3,7 @@
* Stelian Pop <stelian.pop@leadtechdesign.com>
* Lead Tech Design <www.leadtechdesign.com>
*
* (C) Copyright 2009
* (C) Copyright 2009
-2011
* Daniel Gorsulowski <daniel.gorsulowski@esd.eu>
* esd electronic system design gmbh <www.esd.eu>
*
...
...
@@ -27,78 +27,59 @@
*/
#include
<common.h>
#include
<asm/io.h>
#include
<asm/arch/hardware.h>
#include
<asm/arch/io.h>
#include
<asm/arch/at91_common.h>
#include
<asm/arch/at91_pmc.h>
#include
<asm/arch/at91_pio.h>
void
at91_serial0_hw_init
(
void
)
{
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
91_PMC
_BASE
;
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
MEL
_BASE
_PMC
;
at91_set_a_periph
(
AT91_PIO_PORTA
,
26
,
1
);
/* TXD0 */
at91_set_a_periph
(
AT91_PIO_PORTA
,
27
,
0
);
/* RXD0 */
writel
(
1
<<
AT
91SAM9263
_ID_US0
,
&
pmc
->
pcer
);
writel
(
1
<<
AT
MEL
_ID_US
ART
0
,
&
pmc
->
pcer
);
}
void
at91_serial1_hw_init
(
void
)
{
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
91_PMC
_BASE
;
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
MEL
_BASE
_PMC
;
at91_set_a_periph
(
AT91_PIO_PORTD
,
0
,
1
);
/* TXD1 */
at91_set_a_periph
(
AT91_PIO_PORTD
,
1
,
0
);
/* RXD1 */
writel
(
1
<<
AT
91SAM9263
_ID_US1
,
&
pmc
->
pcer
);
writel
(
1
<<
AT
MEL
_ID_US
ART
1
,
&
pmc
->
pcer
);
}
void
at91_serial2_hw_init
(
void
)
{
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
91_PMC
_BASE
;
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
MEL
_BASE
_PMC
;
at91_set_a_periph
(
AT91_PIO_PORTD
,
2
,
1
);
/* TXD2 */
at91_set_a_periph
(
AT91_PIO_PORTD
,
3
,
0
);
/* RXD2 */
writel
(
1
<<
AT
91SAM9263
_ID_US2
,
&
pmc
->
pcer
);
writel
(
1
<<
AT
MEL
_ID_US
ART
2
,
&
pmc
->
pcer
);
}
void
at91_serial
3
_hw_init
(
void
)
void
at91_serial
d
_hw_init
(
void
)
{
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
91_PMC
_BASE
;
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
MEL
_BASE
_PMC
;
at91_set_a_periph
(
AT91_PIO_PORTC
,
30
,
0
);
/* DRXD */
at91_set_a_periph
(
AT91_PIO_PORTC
,
31
,
1
);
/* DTXD */
writel
(
1
<<
AT
91
_ID_SYS
,
&
pmc
->
pcer
);
writel
(
1
<<
AT
MEL
_ID_SYS
,
&
pmc
->
pcer
);
}
void
at91_serial_hw_init
(
void
)
{
#ifdef CONFIG_USART0
at91_serial0_hw_init
();
#endif
#ifdef CONFIG_USART1
at91_serial1_hw_init
();
#endif
#ifdef CONFIG_USART2
at91_serial2_hw_init
();
#endif
#ifdef CONFIG_USART3
/* DBGU */
at91_serial3_hw_init
();
#endif
}
#ifdef CONFIG_HAS_DATAFLASH
#if defined(CONFIG_HAS_DATAFLASH) || defined(CONFIG_ATMEL_SPI)
void
at91_spi0_hw_init
(
unsigned
long
cs_mask
)
{
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
91_PMC
_BASE
;
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
MEL
_BASE
_PMC
;
at91_set_b_periph
(
AT91_PIO_PORTA
,
0
,
0
);
/* SPI0_MISO */
at91_set_b_periph
(
AT91_PIO_PORTA
,
1
,
0
);
/* SPI0_MOSI */
at91_set_b_periph
(
AT91_PIO_PORTA
,
2
,
0
);
/* SPI0_SPCK */
/* Enable clock */
writel
(
1
<<
AT
91SAM9263
_ID_SPI0
,
&
pmc
->
pcer
);
writel
(
1
<<
AT
MEL
_ID_SPI0
,
&
pmc
->
pcer
);
if
(
cs_mask
&
(
1
<<
0
))
{
at91_set_b_periph
(
AT91_PIO_PORTA
,
5
,
1
);
...
...
@@ -128,14 +109,14 @@ void at91_spi0_hw_init(unsigned long cs_mask)
void
at91_spi1_hw_init
(
unsigned
long
cs_mask
)
{
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
91_PMC
_BASE
;
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
MEL
_BASE
_PMC
;
at91_set_a_periph
(
AT91_PIO_PORTB
,
12
,
0
);
/* SPI1_MISO */
at91_set_a_periph
(
AT91_PIO_PORTB
,
13
,
0
);
/* SPI1_MOSI */
at91_set_a_periph
(
AT91_PIO_PORTB
,
14
,
0
);
/* SPI1_SPCK */
/* Enable clock */
writel
(
1
<<
AT
91SAM9263
_ID_SPI1
,
&
pmc
->
pcer
);
writel
(
1
<<
AT
MEL
_ID_SPI1
,
&
pmc
->
pcer
);
if
(
cs_mask
&
(
1
<<
0
))
{
at91_set_a_periph
(
AT91_PIO_PORTB
,
15
,
1
);
...
...
@@ -203,12 +184,12 @@ void at91_uhp_hw_init(void)
#ifdef CONFIG_AT91_CAN
void
at91_can_hw_init
(
void
)
{
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
91_PMC
_BASE
;
at91_pmc_t
*
pmc
=
(
at91_pmc_t
*
)
AT
MEL
_BASE
_PMC
;
at91_set_a_periph
(
AT91_PIO_PORTA
,
13
,
0
);
/* CAN_TX */
at91_set_a_periph
(
AT91_PIO_PORTA
,
14
,
1
);
/* CAN_RX */
/* Enable clock */
writel
(
1
<<
AT
91SAM9263
_ID_CAN
,
&
pmc
->
pcer
);
writel
(
1
<<
AT
MEL
_ID_CAN
,
&
pmc
->
pcer
);
}
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment