Jean-Christophe PLAGNIOL-VILLARD | 1699da6 | 2009-05-13 21:01:13 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007-2008 |
| 3 | * Stelian Pop <stelian.pop@leadtechdesign.com> |
| 4 | * Lead Tech Design <www.leadtechdesign.com> |
| 5 | * |
Daniel Gorsulowski | 45627fc | 2009-06-30 23:03:33 +0200 | [diff] [blame] | 6 | * (C) Copyright 2009 |
| 7 | * Daniel Gorsulowski <daniel.gorsulowski@esd.eu> |
| 8 | * esd electronic system design gmbh <www.esd.eu> |
| 9 | * |
Jean-Christophe PLAGNIOL-VILLARD | 1699da6 | 2009-05-13 21:01:13 +0200 | [diff] [blame] | 10 | * 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 | |
| 35 | void at91_serial0_hw_init(void) |
| 36 | { |
| 37 | at91_set_A_periph(AT91_PIN_PA26, 1); /* TXD0 */ |
| 38 | at91_set_A_periph(AT91_PIN_PA27, 0); /* RXD0 */ |
| 39 | at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_US0); |
| 40 | } |
| 41 | |
| 42 | void at91_serial1_hw_init(void) |
| 43 | { |
| 44 | at91_set_A_periph(AT91_PIN_PD0, 1); /* TXD1 */ |
| 45 | at91_set_A_periph(AT91_PIN_PD1, 0); /* RXD1 */ |
| 46 | at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_US1); |
| 47 | } |
| 48 | |
| 49 | void at91_serial2_hw_init(void) |
| 50 | { |
| 51 | at91_set_A_periph(AT91_PIN_PD2, 1); /* TXD2 */ |
| 52 | at91_set_A_periph(AT91_PIN_PD3, 0); /* RXD2 */ |
| 53 | at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_US2); |
| 54 | } |
| 55 | |
| 56 | void at91_serial3_hw_init(void) |
| 57 | { |
| 58 | at91_set_A_periph(AT91_PIN_PC30, 0); /* DRXD */ |
| 59 | at91_set_A_periph(AT91_PIN_PC31, 1); /* DTXD */ |
| 60 | at91_sys_write(AT91_PMC_PCER, 1 << AT91_ID_SYS); |
| 61 | } |
| 62 | |
| 63 | void 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 |
| 83 | void at91_spi0_hw_init(unsigned long cs_mask) |
| 84 | { |
| 85 | at91_set_B_periph(AT91_PIN_PA0, 0); /* SPI0_MISO */ |
| 86 | at91_set_B_periph(AT91_PIN_PA1, 0); /* SPI0_MOSI */ |
| 87 | at91_set_B_periph(AT91_PIN_PA2, 0); /* SPI0_SPCK */ |
| 88 | |
| 89 | /* Enable clock */ |
| 90 | at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_SPI0); |
| 91 | |
| 92 | if (cs_mask & (1 << 0)) { |
| 93 | at91_set_B_periph(AT91_PIN_PA5, 1); |
| 94 | } |
| 95 | if (cs_mask & (1 << 1)) { |
| 96 | at91_set_B_periph(AT91_PIN_PA3, 1); |
| 97 | } |
| 98 | if (cs_mask & (1 << 2)) { |
| 99 | at91_set_B_periph(AT91_PIN_PA4, 1); |
| 100 | } |
| 101 | if (cs_mask & (1 << 3)) { |
| 102 | at91_set_B_periph(AT91_PIN_PB11, 1); |
| 103 | } |
| 104 | if (cs_mask & (1 << 4)) { |
| 105 | at91_set_gpio_output(AT91_PIN_PA5, 1); |
| 106 | } |
| 107 | if (cs_mask & (1 << 5)) { |
| 108 | at91_set_gpio_output(AT91_PIN_PA3, 1); |
| 109 | } |
| 110 | if (cs_mask & (1 << 6)) { |
| 111 | at91_set_gpio_output(AT91_PIN_PA4, 1); |
| 112 | } |
| 113 | if (cs_mask & (1 << 7)) { |
| 114 | at91_set_gpio_output(AT91_PIN_PB11, 1); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | void at91_spi1_hw_init(unsigned long cs_mask) |
| 119 | { |
| 120 | at91_set_A_periph(AT91_PIN_PB12, 0); /* SPI1_MISO */ |
| 121 | at91_set_A_periph(AT91_PIN_PB13, 0); /* SPI1_MOSI */ |
| 122 | at91_set_A_periph(AT91_PIN_PB14, 0); /* SPI1_SPCK */ |
| 123 | |
| 124 | /* Enable clock */ |
| 125 | at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_SPI1); |
| 126 | |
| 127 | if (cs_mask & (1 << 0)) { |
| 128 | at91_set_A_periph(AT91_PIN_PB15, 1); |
| 129 | } |
| 130 | if (cs_mask & (1 << 1)) { |
| 131 | at91_set_A_periph(AT91_PIN_PB16, 1); |
| 132 | } |
| 133 | if (cs_mask & (1 << 2)) { |
| 134 | at91_set_A_periph(AT91_PIN_PB17, 1); |
| 135 | } |
| 136 | if (cs_mask & (1 << 3)) { |
| 137 | at91_set_A_periph(AT91_PIN_PB18, 1); |
| 138 | } |
| 139 | if (cs_mask & (1 << 4)) { |
| 140 | at91_set_gpio_output(AT91_PIN_PB15, 1); |
| 141 | } |
| 142 | if (cs_mask & (1 << 5)) { |
| 143 | at91_set_gpio_output(AT91_PIN_PB16, 1); |
| 144 | } |
| 145 | if (cs_mask & (1 << 6)) { |
| 146 | at91_set_gpio_output(AT91_PIN_PB17, 1); |
| 147 | } |
| 148 | if (cs_mask & (1 << 7)) { |
| 149 | at91_set_gpio_output(AT91_PIN_PB18, 1); |
| 150 | } |
| 151 | } |
| 152 | #endif |
| 153 | |
| 154 | #ifdef CONFIG_MACB |
| 155 | void at91_macb_hw_init(void) |
| 156 | { |
| 157 | at91_set_A_periph(AT91_PIN_PE21, 0); /* ETXCK_EREFCK */ |
| 158 | at91_set_B_periph(AT91_PIN_PC25, 0); /* ERXDV */ |
| 159 | at91_set_A_periph(AT91_PIN_PE25, 0); /* ERX0 */ |
| 160 | at91_set_A_periph(AT91_PIN_PE26, 0); /* ERX1 */ |
| 161 | at91_set_A_periph(AT91_PIN_PE27, 0); /* ERXER */ |
| 162 | at91_set_A_periph(AT91_PIN_PE28, 0); /* ETXEN */ |
| 163 | at91_set_A_periph(AT91_PIN_PE23, 0); /* ETX0 */ |
| 164 | at91_set_A_periph(AT91_PIN_PE24, 0); /* ETX1 */ |
| 165 | at91_set_A_periph(AT91_PIN_PE30, 0); /* EMDIO */ |
| 166 | at91_set_A_periph(AT91_PIN_PE29, 0); /* EMDC */ |
| 167 | |
| 168 | #ifndef CONFIG_RMII |
| 169 | at91_set_A_periph(AT91_PIN_PE22, 0); /* ECRS */ |
| 170 | at91_set_B_periph(AT91_PIN_PC26, 0); /* ECOL */ |
| 171 | at91_set_B_periph(AT91_PIN_PC22, 0); /* ERX2 */ |
| 172 | at91_set_B_periph(AT91_PIN_PC23, 0); /* ERX3 */ |
| 173 | at91_set_B_periph(AT91_PIN_PC27, 0); /* ERXCK */ |
| 174 | at91_set_B_periph(AT91_PIN_PC20, 0); /* ETX2 */ |
| 175 | at91_set_B_periph(AT91_PIN_PC21, 0); /* ETX3 */ |
| 176 | at91_set_B_periph(AT91_PIN_PC24, 0); /* ETXER */ |
| 177 | #endif |
| 178 | } |
| 179 | #endif |
| 180 | |
| 181 | #ifdef CONFIG_USB_OHCI_NEW |
| 182 | void at91_uhp_hw_init(void) |
| 183 | { |
| 184 | /* Enable VBus on UHP ports */ |
| 185 | at91_set_gpio_output(AT91_PIN_PA21, 0); |
| 186 | at91_set_gpio_output(AT91_PIN_PA24, 0); |
| 187 | } |
| 188 | #endif |
Daniel Gorsulowski | 45627fc | 2009-06-30 23:03:33 +0200 | [diff] [blame] | 189 | |
| 190 | #ifdef CONFIG_AT91_CAN |
| 191 | void at91_can_hw_init(void) |
| 192 | { |
| 193 | at91_set_A_periph(AT91_PIN_PA13, 0); /* CAN_TX */ |
| 194 | at91_set_A_periph(AT91_PIN_PA14, 1); /* CAN_RX */ |
| 195 | |
| 196 | /* Enable clock */ |
| 197 | at91_sys_write(AT91_PMC_PCER, 1 << AT91SAM9263_ID_CAN); |
| 198 | } |
| 199 | #endif |