Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 1 | /* |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 2 | * (C) Copyright 2010-2011 |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 3 | * Daniel Gorsulowski <daniel.gorsulowski@esd.eu> |
| 4 | * esd electronic system design gmbh <www.esd.eu> |
| 5 | * |
| 6 | * (C) Copyright 2007-2008 |
Stelian Pop | c9e798d | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 7 | * Stelian Pop <stelian@popies.net> |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 8 | * Lead Tech Design <www.leadtechdesign.com> |
| 9 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame^] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <common.h> |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 14 | #include <asm/io.h> |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 15 | #include <asm/arch/at91sam9_smc.h> |
| 16 | #include <asm/arch/at91_common.h> |
| 17 | #include <asm/arch/at91_pmc.h> |
| 18 | #include <asm/arch/at91_rstc.h> |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 19 | #include <asm/arch/at91_matrix.h> |
| 20 | #include <asm/arch/at91_pio.h> |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 21 | #include <asm/arch/clk.h> |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 22 | #include <netdev.h> |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 23 | #ifdef CONFIG_LCD |
| 24 | # include <atmel_lcdc.h> |
| 25 | # include <lcd.h> |
| 26 | # ifdef CONFIG_LCD_INFO |
| 27 | # include <nand.h> |
| 28 | # include <version.h> |
| 29 | # endif |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 30 | #endif |
| 31 | |
| 32 | DECLARE_GLOBAL_DATA_PTR; |
| 33 | |
| 34 | /* |
| 35 | * Miscelaneous platform dependent initialisations |
| 36 | */ |
| 37 | |
| 38 | static int hw_rev = -1; /* hardware revision */ |
| 39 | |
| 40 | int get_hw_rev(void) |
| 41 | { |
| 42 | if (hw_rev >= 0) |
| 43 | return hw_rev; |
| 44 | |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 45 | hw_rev = at91_get_pio_value(AT91_PIO_PORTB, 19); |
| 46 | hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 20) << 1; |
| 47 | hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 21) << 2; |
| 48 | hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 22) << 3; |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 49 | |
| 50 | if (hw_rev == 15) |
| 51 | hw_rev = 0; |
| 52 | |
| 53 | return hw_rev; |
| 54 | } |
| 55 | |
| 56 | #ifdef CONFIG_CMD_NAND |
| 57 | static void otc570_nand_hw_init(void) |
| 58 | { |
| 59 | unsigned long csa; |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 60 | at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0; |
| 61 | at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX; |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 62 | |
| 63 | /* Enable CS3 */ |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 64 | csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A; |
| 65 | writel(csa, &matrix->csa[0]); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 66 | |
| 67 | /* Configure SMC CS3 for NAND/SmartMedia */ |
Daniel Gorsulowski | c21052b | 2012-01-25 03:19:50 +0000 | [diff] [blame] | 68 | writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(1) | |
| 69 | AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(2), |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 70 | &smc->cs[3].setup); |
| 71 | |
| 72 | writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) | |
| 73 | AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3), |
| 74 | &smc->cs[3].pulse); |
| 75 | |
Daniel Gorsulowski | c21052b | 2012-01-25 03:19:50 +0000 | [diff] [blame] | 76 | writel(AT91_SMC_CYCLE_NWE(6) | AT91_SMC_CYCLE_NRD(6), |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 77 | &smc->cs[3].cycle); |
| 78 | writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE | |
| 79 | AT91_SMC_MODE_EXNW_DISABLE | |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 80 | AT91_SMC_MODE_DBW_8 | |
Daniel Gorsulowski | c21052b | 2012-01-25 03:19:50 +0000 | [diff] [blame] | 81 | AT91_SMC_MODE_TDF_CYCLE(12), |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 82 | &smc->cs[3].mode); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 83 | |
| 84 | /* Configure RDY/BSY */ |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 85 | at91_set_pio_input(CONFIG_SYS_NAND_READY_PIN, 1); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 86 | |
| 87 | /* Enable NandFlash */ |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 88 | at91_set_pio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 89 | } |
| 90 | #endif /* CONFIG_CMD_NAND */ |
| 91 | |
| 92 | #ifdef CONFIG_MACB |
| 93 | static void otc570_macb_hw_init(void) |
| 94 | { |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 95 | at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC; |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 96 | /* Enable clock */ |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 97 | writel(1 << ATMEL_ID_EMAC, &pmc->pcer); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 98 | at91_macb_hw_init(); |
| 99 | } |
| 100 | #endif |
| 101 | |
| 102 | /* |
| 103 | * Static memory controller initialization to enable Beckhoff ET1100 EtherCAT |
| 104 | * controller debugging |
| 105 | * The ET1100 is located at physical address 0x70000000 |
| 106 | * Its process memory is located at physical address 0x70001000 |
| 107 | */ |
| 108 | static void otc570_ethercat_hw_init(void) |
| 109 | { |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 110 | at91_smc_t *smc1 = (at91_smc_t *) ATMEL_BASE_SMC1; |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 111 | |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 112 | /* Configure SMC EBI1_CS0 for EtherCAT */ |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 113 | writel(AT91_SMC_SETUP_NWE(0) | AT91_SMC_SETUP_NCS_WR(0) | |
| 114 | AT91_SMC_SETUP_NRD(0) | AT91_SMC_SETUP_NCS_RD(0), |
| 115 | &smc1->cs[0].setup); |
| 116 | writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(9) | |
| 117 | AT91_SMC_PULSE_NRD(5) | AT91_SMC_PULSE_NCS_RD(9), |
| 118 | &smc1->cs[0].pulse); |
| 119 | writel(AT91_SMC_CYCLE_NWE(10) | AT91_SMC_CYCLE_NRD(6), |
| 120 | &smc1->cs[0].cycle); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 121 | /* |
| 122 | * Configure behavior at external wait signal, byte-select mode, 16 bit |
| 123 | * data bus width, none data float wait states and TDF optimization |
| 124 | */ |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 125 | writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_EXNW_READY | |
| 126 | AT91_SMC_MODE_DBW_16 | AT91_SMC_MODE_TDF_CYCLE(0) | |
| 127 | AT91_SMC_MODE_TDF, &smc1->cs[0].mode); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 128 | |
| 129 | /* Configure RDY/BSY */ |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 130 | at91_set_b_periph(AT91_PIO_PORTE, 20, 0); /* EBI1_NWAIT */ |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | #ifdef CONFIG_LCD |
| 134 | /* Number of columns and rows, pixel clock in Hz and hsync/vsync polarity */ |
| 135 | vidinfo_t panel_info = { |
| 136 | .vl_col = 640, |
| 137 | .vl_row = 480, |
| 138 | .vl_clk = 25175000, |
| 139 | .vl_sync = ATMEL_LCDC_INVLINE_INVERTED | |
| 140 | ATMEL_LCDC_INVFRAME_INVERTED, |
| 141 | |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 142 | .vl_bpix = LCD_BPP,/* Bits per pixel, 0 = 1bit, 3 = 8bit */ |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 143 | .vl_tft = 1, /* 0 = passive, 1 = TFT */ |
| 144 | .vl_vsync_len = 1, /* Length of vertical sync in NOL */ |
| 145 | .vl_upper_margin = 35, /* Idle lines at the frame start */ |
| 146 | .vl_lower_margin = 5, /* Idle lines at the end of the frame */ |
| 147 | .vl_hsync_len = 5, /* Width of the LCDHSYNC pulse */ |
| 148 | .vl_left_margin = 112, /* Idle cycles at the line beginning */ |
| 149 | .vl_right_margin = 1, /* Idle cycles at the end of the line */ |
| 150 | |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 151 | .mmio = ATMEL_BASE_LCDC, |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 152 | }; |
| 153 | |
| 154 | void lcd_enable(void) |
| 155 | { |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 156 | at91_set_pio_value(AT91_PIO_PORTA, 30, 0); /* power up */ |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | void lcd_disable(void) |
| 160 | { |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 161 | at91_set_pio_value(AT91_PIO_PORTA, 30, 1); /* power down */ |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | static void otc570_lcd_hw_init(void) |
| 165 | { |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 166 | at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC; |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 167 | |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 168 | at91_set_a_periph(AT91_PIO_PORTC, 0, 0); /* LCDVSYNC */ |
| 169 | at91_set_a_periph(AT91_PIO_PORTC, 1, 0); /* LCDHSYNC */ |
| 170 | at91_set_a_periph(AT91_PIO_PORTC, 2, 0); /* LCDDOTCK */ |
| 171 | at91_set_a_periph(AT91_PIO_PORTC, 3, 0); /* LCDDEN */ |
| 172 | at91_set_b_periph(AT91_PIO_PORTB, 9, 0); /* LCDCC */ |
| 173 | at91_set_a_periph(AT91_PIO_PORTC, 6, 0); /* LCDD2 */ |
| 174 | at91_set_a_periph(AT91_PIO_PORTC, 7, 0); /* LCDD3 */ |
| 175 | at91_set_a_periph(AT91_PIO_PORTC, 8, 0); /* LCDD4 */ |
| 176 | at91_set_a_periph(AT91_PIO_PORTC, 9, 0); /* LCDD5 */ |
| 177 | at91_set_a_periph(AT91_PIO_PORTC, 10, 0); /* LCDD6 */ |
| 178 | at91_set_a_periph(AT91_PIO_PORTC, 11, 0); /* LCDD7 */ |
| 179 | at91_set_a_periph(AT91_PIO_PORTC, 14, 0); /* LCDD10 */ |
| 180 | at91_set_a_periph(AT91_PIO_PORTC, 15, 0); /* LCDD11 */ |
| 181 | at91_set_a_periph(AT91_PIO_PORTC, 16, 0); /* LCDD12 */ |
| 182 | at91_set_b_periph(AT91_PIO_PORTC, 12, 0); /* LCDD13 */ |
| 183 | at91_set_a_periph(AT91_PIO_PORTC, 18, 0); /* LCDD14 */ |
| 184 | at91_set_a_periph(AT91_PIO_PORTC, 19, 0); /* LCDD15 */ |
| 185 | at91_set_a_periph(AT91_PIO_PORTC, 22, 0); /* LCDD18 */ |
| 186 | at91_set_a_periph(AT91_PIO_PORTC, 23, 0); /* LCDD19 */ |
| 187 | at91_set_a_periph(AT91_PIO_PORTC, 24, 0); /* LCDD20 */ |
| 188 | at91_set_b_periph(AT91_PIO_PORTC, 17, 0); /* LCDD21 */ |
| 189 | at91_set_a_periph(AT91_PIO_PORTC, 26, 0); /* LCDD22 */ |
| 190 | at91_set_a_periph(AT91_PIO_PORTC, 27, 0); /* LCDD23 */ |
| 191 | at91_set_pio_output(AT91_PIO_PORTA, 30, 1); /* PCI */ |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 192 | |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 193 | writel(1 << ATMEL_ID_LCDC, &pmc->pcer); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | #ifdef CONFIG_LCD_INFO |
| 197 | void lcd_show_board_info(void) |
| 198 | { |
| 199 | ulong dram_size, nand_size; |
| 200 | int i; |
| 201 | char temp[32]; |
| 202 | |
| 203 | dram_size = 0; |
| 204 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) |
| 205 | dram_size += gd->bd->bi_dram[i].size; |
| 206 | nand_size = 0; |
| 207 | for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++) |
| 208 | nand_size += nand_info[i].size; |
| 209 | |
| 210 | lcd_printf("\n%s\n", U_BOOT_VERSION); |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 211 | lcd_printf("CPU at %s MHz\n", strmhz(temp, get_cpu_clk_rate())); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 212 | lcd_printf(" %ld MB SDRAM, %ld MB NAND\n", |
| 213 | dram_size >> 20, |
| 214 | nand_size >> 20 ); |
| 215 | lcd_printf(" Board : esd ARM9 HMI Panel - OTC570\n"); |
| 216 | lcd_printf(" Hardware-revision: 1.%d\n", get_hw_rev()); |
| 217 | lcd_printf(" Mach-type : %lu\n", gd->bd->bi_arch_number); |
| 218 | } |
| 219 | #endif /* CONFIG_LCD_INFO */ |
| 220 | #endif /* CONFIG_LCD */ |
| 221 | |
| 222 | int dram_init(void) |
| 223 | { |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 224 | gd->ram_size = get_ram_size( |
| 225 | (void *)CONFIG_SYS_SDRAM_BASE, |
| 226 | CONFIG_SYS_SDRAM_SIZE); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 227 | return 0; |
| 228 | } |
| 229 | |
| 230 | int board_eth_init(bd_t *bis) |
| 231 | { |
| 232 | int rc = 0; |
| 233 | #ifdef CONFIG_MACB |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 234 | rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x00); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 235 | #endif |
| 236 | return rc; |
| 237 | } |
| 238 | |
| 239 | int checkboard(void) |
| 240 | { |
| 241 | char str[32]; |
| 242 | |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 243 | puts("Board : esd ARM9 HMI Panel - OTC570"); |
Wolfgang Denk | cdb7497 | 2010-07-24 21:55:43 +0200 | [diff] [blame] | 244 | if (getenv_f("serial#", str, sizeof(str)) > 0) { |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 245 | puts(", serial# "); |
| 246 | puts(str); |
| 247 | } |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 248 | printf("\n"); |
| 249 | printf("Hardware-revision: 1.%d\n", get_hw_rev()); |
| 250 | printf("Mach-type : %lu\n", gd->bd->bi_arch_number); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 251 | return 0; |
| 252 | } |
| 253 | |
| 254 | #ifdef CONFIG_SERIAL_TAG |
| 255 | void get_board_serial(struct tag_serialnr *serialnr) |
| 256 | { |
| 257 | char *str; |
| 258 | |
| 259 | char *serial = getenv("serial#"); |
| 260 | if (serial) { |
| 261 | str = strchr(serial, '_'); |
| 262 | if (str && (strlen(str) >= 4)) { |
| 263 | serialnr->high = (*(str + 1) << 8) | *(str + 2); |
| 264 | serialnr->low = simple_strtoul(str + 3, NULL, 16); |
| 265 | } |
| 266 | } else { |
| 267 | serialnr->high = 0; |
| 268 | serialnr->low = 0; |
| 269 | } |
| 270 | } |
| 271 | #endif |
| 272 | |
| 273 | #ifdef CONFIG_REVISION_TAG |
| 274 | u32 get_board_rev(void) |
| 275 | { |
| 276 | return hw_rev | 0x100; |
| 277 | } |
| 278 | #endif |
| 279 | |
| 280 | #ifdef CONFIG_MISC_INIT_R |
| 281 | int misc_init_r(void) |
| 282 | { |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 283 | char str[64]; |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 284 | at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC; |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 285 | |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 286 | at91_set_pio_output(AT91_PIO_PORTA, 29, 1); |
| 287 | at91_set_a_periph(AT91_PIO_PORTA, 26, 1); /* TXD0 */ |
| 288 | at91_set_a_periph(AT91_PIO_PORTA, 27, 0); /* RXD0 */ |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 289 | writel(1 << ATMEL_ID_USART0, &pmc->pcer); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 290 | /* Set USART_MODE = 1 (RS485) */ |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 291 | writel(1, 0xFFF8C004); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 292 | |
| 293 | printf("USART0: "); |
| 294 | |
Wolfgang Denk | cdb7497 | 2010-07-24 21:55:43 +0200 | [diff] [blame] | 295 | if (getenv_f("usart0", str, sizeof(str)) == -1) { |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 296 | printf("No entry - assuming 1-wire\n"); |
| 297 | /* CTS pin, works as mode select pin (0 = 1-wire; 1 = RS485) */ |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 298 | at91_set_pio_output(AT91_PIO_PORTA, 29, 0); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 299 | } else { |
| 300 | if (strcmp(str, "1-wire") == 0) { |
| 301 | printf("%s\n", str); |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 302 | at91_set_pio_output(AT91_PIO_PORTA, 29, 0); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 303 | } else if (strcmp(str, "rs485") == 0) { |
| 304 | printf("%s\n", str); |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 305 | at91_set_pio_output(AT91_PIO_PORTA, 29, 1); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 306 | } else { |
| 307 | printf("Wrong entry - assuming 1-wire "); |
| 308 | printf("(valid values are '1-wire' or 'rs485')\n"); |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 309 | at91_set_pio_output(AT91_PIO_PORTA, 29, 0); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 310 | } |
| 311 | } |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 312 | #ifdef CONFIG_LCD |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 313 | printf("Display memory address: 0x%08lX\n", gd->fb_base); |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 314 | #endif |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 315 | |
| 316 | return 0; |
| 317 | } |
| 318 | #endif /* CONFIG_MISC_INIT_R */ |
| 319 | |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 320 | int board_early_init_f(void) |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 321 | { |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 322 | at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC; |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 323 | |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 324 | /* enable all clocks */ |
| 325 | writel((1 << ATMEL_ID_PIOA) | |
| 326 | (1 << ATMEL_ID_PIOB) | |
| 327 | (1 << ATMEL_ID_PIOCDE) | |
| 328 | (1 << ATMEL_ID_TWI) | |
| 329 | (1 << ATMEL_ID_SPI0) | |
| 330 | #ifdef CONFIG_LCD |
| 331 | (1 << ATMEL_ID_LCDC) | |
| 332 | #endif |
| 333 | (1 << ATMEL_ID_UHP), |
Daniel Gorsulowski | 6258b04 | 2010-02-11 14:57:04 +0100 | [diff] [blame] | 334 | &pmc->pcer); |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 335 | |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 336 | at91_seriald_hw_init(); |
| 337 | |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 338 | /* arch number of OTC570-Board */ |
| 339 | gd->bd->bi_arch_number = MACH_TYPE_OTC570; |
| 340 | |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 341 | return 0; |
| 342 | } |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 343 | |
Daniel Gorsulowski | a950c81 | 2011-04-18 04:15:02 +0000 | [diff] [blame] | 344 | int board_init(void) |
| 345 | { |
| 346 | /* initialize ET1100 Controller */ |
| 347 | otc570_ethercat_hw_init(); |
| 348 | |
| 349 | /* adress of boot parameters */ |
| 350 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
| 351 | |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 352 | #ifdef CONFIG_CMD_NAND |
| 353 | otc570_nand_hw_init(); |
| 354 | #endif |
Daniel Gorsulowski | 44d8025 | 2010-01-25 10:50:41 +0100 | [diff] [blame] | 355 | #ifdef CONFIG_HAS_DATAFLASH |
| 356 | at91_spi0_hw_init(1 << 0); |
| 357 | #endif |
| 358 | #ifdef CONFIG_MACB |
| 359 | otc570_macb_hw_init(); |
| 360 | #endif |
| 361 | #ifdef CONFIG_AT91_CAN |
| 362 | at91_can_hw_init(); |
| 363 | #endif |
| 364 | #ifdef CONFIG_USB_OHCI_NEW |
| 365 | at91_uhp_hw_init(); |
| 366 | #endif |
| 367 | #ifdef CONFIG_LCD |
| 368 | otc570_lcd_hw_init(); |
| 369 | #endif |
| 370 | return 0; |
| 371 | } |