1
2
3
4
5
6
7
8#include <common.h>
9#include <asm/io.h>
10#include <asm/arch/at91_common.h>
11#include <asm/arch/clk.h>
12#include <asm/arch/gpio.h>
13
14
15
16
17
18
19
20
21
22
23#ifdef CONFIG_AT91_GPIO_PULLUP
24# define PUP CONFIG_AT91_GPIO_PULLUP
25#else
26# define PUP 0
27#endif
28
29void at91_serial0_hw_init(void)
30{
31 at91_set_a_periph(AT91_PIO_PORTA, 6, 1);
32 at91_set_a_periph(AT91_PIO_PORTA, 7, PUP);
33 at91_periph_clk_enable(ATMEL_ID_USART0);
34}
35
36void at91_serial1_hw_init(void)
37{
38 at91_set_a_periph(AT91_PIO_PORTA, 11, 1);
39 at91_set_a_periph(AT91_PIO_PORTA, 12, PUP);
40 at91_periph_clk_enable(ATMEL_ID_USART1);
41}
42
43void at91_serial2_hw_init(void)
44{
45 at91_set_a_periph(AT91_PIO_PORTA, 13, 1);
46 at91_set_a_periph(AT91_PIO_PORTA, 14, PUP);
47 at91_periph_clk_enable(ATMEL_ID_USART2);
48}
49
50void at91_seriald_hw_init(void)
51{
52 at91_set_a_periph(AT91_PIO_PORTA, 21, PUP);
53 at91_set_a_periph(AT91_PIO_PORTA, 22, 1);
54 at91_periph_clk_enable(ATMEL_ID_SYS);
55}
56
57#ifdef CONFIG_ATMEL_SPI
58void at91_spi0_hw_init(unsigned long cs_mask)
59{
60 at91_set_a_periph(AT91_PIO_PORTA, 25, PUP);
61 at91_set_a_periph(AT91_PIO_PORTA, 26, PUP);
62 at91_set_a_periph(AT91_PIO_PORTA, 27, PUP);
63
64 at91_periph_clk_enable(ATMEL_ID_SPI);
65
66 if (cs_mask & (1 << 0)) {
67 at91_set_a_periph(AT91_PIO_PORTA, 28, 1);
68 }
69 if (cs_mask & (1 << 1)) {
70 at91_set_b_periph(AT91_PIO_PORTB, 7, 1);
71 }
72 if (cs_mask & (1 << 2)) {
73 at91_set_a_periph(AT91_PIO_PORTD, 8, 1);
74 }
75 if (cs_mask & (1 << 3)) {
76 at91_set_b_periph(AT91_PIO_PORTD, 9, 1);
77 }
78 if (cs_mask & (1 << 4)) {
79 at91_set_pio_output(AT91_PIO_PORTA, 28, 1);
80 }
81 if (cs_mask & (1 << 5)) {
82 at91_set_pio_output(AT91_PIO_PORTB, 7, 1);
83 }
84 if (cs_mask & (1 << 6)) {
85 at91_set_pio_output(AT91_PIO_PORTD, 8, 1);
86 }
87 if (cs_mask & (1 << 7)) {
88 at91_set_pio_output(AT91_PIO_PORTD, 9, 1);
89 }
90}
91#endif
92
93#ifdef CONFIG_GENERIC_ATMEL_MCI
94void at91_mci_hw_init(void)
95{
96 at91_set_a_periph(AT91_PIO_PORTA, 2, 0);
97 at91_set_a_periph(AT91_PIO_PORTA, 1, 0);
98 at91_set_a_periph(AT91_PIO_PORTA, 0, 0);
99 at91_set_a_periph(AT91_PIO_PORTA, 3, 0);
100 at91_set_a_periph(AT91_PIO_PORTA, 4, 0);
101 at91_set_a_periph(AT91_PIO_PORTA, 5, 0);
102
103 at91_periph_clk_enable(ATMEL_ID_MCI);
104}
105#endif
106