blob: 90bdcc2f5f92797e5d28f58389fbbd24fa9220fd [file] [log] [blame]
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +02001/*
2 * (C) Copyright 2007-2008
3 * Stelian Pop <stelian.pop@leadtechdesign.com>
4 * Lead Tech Design <www.leadtechdesign.com>
5 *
Daniel Gorsulowski96d1b472009-06-30 23:03:33 +02006 * (C) Copyright 2009
7 * Daniel Gorsulowski <daniel.gorsulowski@esd.eu>
8 * esd electronic system design gmbh <www.esd.eu>
9 *
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020010 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
29#include <common.h>
30#include <asm/arch/at91_common.h>
31#include <asm/arch/at91_pmc.h>
32#include <asm/arch/gpio.h>
33#include <asm/arch/io.h>
34
35void at91_serial0_hw_init(void)
36{
Jens Scharsigb49d15c2010-02-03 22:46:46 +010037 at91_set_a_periph(AT91_PIO_PORTA, 26, 1); /* TXD0 */
38 at91_set_a_periph(AT91_PIO_PORTA, 27, 0); /* RXD0 */
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020039 at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_US0);
40}
41
42void at91_serial1_hw_init(void)
43{
Jens Scharsigb49d15c2010-02-03 22:46:46 +010044 at91_set_a_periph(AT91_PIO_PORTD, 0, 1); /* TXD1 */
45 at91_set_a_periph(AT91_PIO_PORTD, 1, 0); /* RXD1 */
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020046 at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_US1);
47}
48
49void at91_serial2_hw_init(void)
50{
Jens Scharsigb49d15c2010-02-03 22:46:46 +010051 at91_set_a_periph(AT91_PIO_PORTD, 2, 1); /* TXD2 */
52 at91_set_a_periph(AT91_PIO_PORTD, 3, 0); /* RXD2 */
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020053 at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_US2);
54}
55
56void at91_serial3_hw_init(void)
57{
Jens Scharsigb49d15c2010-02-03 22:46:46 +010058 at91_set_a_periph(AT91_PIO_PORTC, 30, 0); /* DRXD */
59 at91_set_a_periph(AT91_PIO_PORTC, 31, 1); /* DTXD */
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020060 at91_sys_write(AT91_PMC_PCER, 1 << AT91_ID_SYS);
61}
62
63void at91_serial_hw_init(void)
64{
65#ifdef CONFIG_USART0
66 at91_serial0_hw_init();
67#endif
68
69#ifdef CONFIG_USART1
70 at91_serial1_hw_init();
71#endif
72
73#ifdef CONFIG_USART2
74 at91_serial2_hw_init();
75#endif
76
77#ifdef CONFIG_USART3 /* DBGU */
78 at91_serial3_hw_init();
79#endif
80}
81
82#ifdef CONFIG_HAS_DATAFLASH
83void at91_spi0_hw_init(unsigned long cs_mask)
84{
Jens Scharsigb49d15c2010-02-03 22:46:46 +010085 at91_set_b_periph(AT91_PIO_PORTA, 0, 0); /* SPI0_MISO */
86 at91_set_b_periph(AT91_PIO_PORTA, 1, 0); /* SPI0_MOSI */
87 at91_set_b_periph(AT91_PIO_PORTA, 2, 0); /* SPI0_SPCK */
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020088
89 /* Enable clock */
90 at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_SPI0);
91
92 if (cs_mask & (1 << 0)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010093 at91_set_b_periph(AT91_PIO_PORTA, 5, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020094 }
95 if (cs_mask & (1 << 1)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010096 at91_set_b_periph(AT91_PIO_PORTA, 3, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +020097 }
98 if (cs_mask & (1 << 2)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +010099 at91_set_b_periph(AT91_PIO_PORTA, 4, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200100 }
101 if (cs_mask & (1 << 3)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100102 at91_set_b_periph(AT91_PIO_PORTB, 11, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200103 }
104 if (cs_mask & (1 << 4)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100105 at91_set_pio_output(AT91_PIO_PORTA, 5, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200106 }
107 if (cs_mask & (1 << 5)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100108 at91_set_pio_output(AT91_PIO_PORTA, 3, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200109 }
110 if (cs_mask & (1 << 6)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100111 at91_set_pio_output(AT91_PIO_PORTA, 4, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200112 }
113 if (cs_mask & (1 << 7)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100114 at91_set_pio_output(AT91_PIO_PORTB, 11, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200115 }
116}
117
118void at91_spi1_hw_init(unsigned long cs_mask)
119{
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100120 at91_set_a_periph(AT91_PIO_PORTB, 12, 0); /* SPI1_MISO */
121 at91_set_a_periph(AT91_PIO_PORTB, 13, 0); /* SPI1_MOSI */
122 at91_set_a_periph(AT91_PIO_PORTB, 14, 0); /* SPI1_SPCK */
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200123
124 /* Enable clock */
125 at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_SPI1);
126
127 if (cs_mask & (1 << 0)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100128 at91_set_a_periph(AT91_PIO_PORTB, 15, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200129 }
130 if (cs_mask & (1 << 1)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100131 at91_set_a_periph(AT91_PIO_PORTB, 16, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200132 }
133 if (cs_mask & (1 << 2)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100134 at91_set_a_periph(AT91_PIO_PORTB, 17, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200135 }
136 if (cs_mask & (1 << 3)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100137 at91_set_a_periph(AT91_PIO_PORTB, 18, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200138 }
139 if (cs_mask & (1 << 4)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100140 at91_set_pio_output(AT91_PIO_PORTB, 15, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200141 }
142 if (cs_mask & (1 << 5)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100143 at91_set_pio_output(AT91_PIO_PORTB, 16, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200144 }
145 if (cs_mask & (1 << 6)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100146 at91_set_pio_output(AT91_PIO_PORTB, 17, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200147 }
148 if (cs_mask & (1 << 7)) {
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100149 at91_set_pio_output(AT91_PIO_PORTB, 18, 1);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200150 }
151}
152#endif
153
154#ifdef CONFIG_MACB
155void at91_macb_hw_init(void)
156{
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100157 at91_set_a_periph(AT91_PIO_PORTE, 21, 0); /* ETXCK_EREFCK */
158 at91_set_b_periph(AT91_PIO_PORTC, 25, 0); /* ERXDV */
159 at91_set_a_periph(AT91_PIO_PORTE, 25, 0); /* ERX0 */
160 at91_set_a_periph(AT91_PIO_PORTE, 26, 0); /* ERX1 */
161 at91_set_a_periph(AT91_PIO_PORTE, 27, 0); /* ERXER */
162 at91_set_a_periph(AT91_PIO_PORTE, 28, 0); /* ETXEN */
163 at91_set_a_periph(AT91_PIO_PORTE, 23, 0); /* ETX0 */
164 at91_set_a_periph(AT91_PIO_PORTE, 24, 0); /* ETX1 */
165 at91_set_a_periph(AT91_PIO_PORTE, 30, 0); /* EMDIO */
166 at91_set_a_periph(AT91_PIO_PORTE, 29, 0); /* EMDC */
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200167
168#ifndef CONFIG_RMII
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100169 at91_set_a_periph(AT91_PIO_PORTE, 22, 0); /* ECRS */
170 at91_set_b_periph(AT91_PIO_PORTC, 26, 0); /* ECOL */
171 at91_set_b_periph(AT91_PIO_PORTC, 22, 0); /* ERX2 */
172 at91_set_b_periph(AT91_PIO_PORTC, 23, 0); /* ERX3 */
173 at91_set_b_periph(AT91_PIO_PORTC, 27, 0); /* ERXCK */
174 at91_set_b_periph(AT91_PIO_PORTC, 20, 0); /* ETX2 */
175 at91_set_b_periph(AT91_PIO_PORTC, 21, 0); /* ETX3 */
176 at91_set_b_periph(AT91_PIO_PORTC, 24, 0); /* ETXER */
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200177#endif
178}
179#endif
180
181#ifdef CONFIG_USB_OHCI_NEW
182void at91_uhp_hw_init(void)
183{
184 /* Enable VBus on UHP ports */
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100185 at91_set_pio_output(AT91_PIO_PORTA, 21, 0);
186 at91_set_pio_output(AT91_PIO_PORTA, 24, 0);
Jean-Christophe PLAGNIOL-VILLARD2495b2d2009-05-13 21:01:13 +0200187}
188#endif
Daniel Gorsulowski96d1b472009-06-30 23:03:33 +0200189
190#ifdef CONFIG_AT91_CAN
191void at91_can_hw_init(void)
192{
Jens Scharsigb49d15c2010-02-03 22:46:46 +0100193 at91_set_a_periph(AT91_PIO_PORTA, 13, 0); /* CAN_TX */
194 at91_set_a_periph(AT91_PIO_PORTA, 14, 1); /* CAN_RX */
Daniel Gorsulowski96d1b472009-06-30 23:03:33 +0200195
196 /* Enable clock */
197 at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_CAN);
198}
199#endif