blob: 1c28aaba85a8402b465b8534147a0fbc3727a62e [file] [log] [blame]
Eugen Hristev860d8ba2018-07-06 11:15:10 +03001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018 Microchip Technology, Inc.
4 * Eugen Hristev <eugen.hristev@microchip.com>
5 */
6
7#include <common.h>
8#include <debug_uart.h>
9#include <asm/io.h>
10#include <asm/arch/at91_common.h>
11#include <asm/arch/atmel_pio4.h>
12#include <asm/arch/atmel_mpddrc.h>
13#include <asm/arch/atmel_sdhci.h>
14#include <asm/arch/clk.h>
15#include <asm/arch/gpio.h>
16#include <asm/arch/sama5d2.h>
17
18DECLARE_GLOBAL_DATA_PTR;
19
20int board_late_init(void)
21{
22 return 0;
23}
24
25#ifdef CONFIG_DEBUG_UART_BOARD_INIT
26static void board_uart0_hw_init(void)
27{
28 atmel_pio4_set_c_periph(AT91_PIO_PORTB, 26, ATMEL_PIO_PUEN_MASK); /* URXD0 */
29 atmel_pio4_set_c_periph(AT91_PIO_PORTB, 27, 0); /* UTXD0 */
30
31 at91_periph_clk_enable(ATMEL_ID_UART0);
32}
33
34void board_debug_uart_init(void)
35{
36 board_uart0_hw_init();
37}
38#endif
39
40int board_early_init_f(void)
41{
42#ifdef CONFIG_DEBUG_UART
43 debug_uart_init();
44#endif
45 return 0;
46}
47
48int board_init(void)
49{
50 /* address of boot parameters */
51 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
52
53 return 0;
54}
55
56int dram_init(void)
57{
58 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
59 CONFIG_SYS_SDRAM_SIZE);
60 return 0;
61}
62
63#define MAC24AA_MAC_OFFSET 0xfa
64
65int misc_init_r(void)
66{
67#ifdef CONFIG_I2C_EEPROM
68 at91_set_ethaddr(MAC24AA_MAC_OFFSET);
69#endif
70 return 0;
71}
72
73/* SPL */
74#ifdef CONFIG_SPL_BUILD
75
Eugen Hristev50736162019-05-03 15:56:44 +030076/* deassert reset lines for external periph in case of warm reboot */
77static void board_reset_additional_periph(void)
78{
79 atmel_pio4_set_pio_output(AT91_PIO_PORTB, 16, 0); /* LAN9252_RST */
80 atmel_pio4_set_pio_output(AT91_PIO_PORTC, 2, 0); /* HSIC_RST */
81 atmel_pio4_set_pio_output(AT91_PIO_PORTC, 17, 0); /* USB2534_RST */
82 atmel_pio4_set_pio_output(AT91_PIO_PORTD, 4, 0); /* KSZ8563_RST */
83}
84
85static void board_start_additional_periph(void)
86{
87 atmel_pio4_set_pio_output(AT91_PIO_PORTB, 16, 1); /* LAN9252_RST */
88 atmel_pio4_set_pio_output(AT91_PIO_PORTC, 2, 1); /* HSIC_RST */
89 atmel_pio4_set_pio_output(AT91_PIO_PORTC, 17, 1); /* USB2534_RST */
90 atmel_pio4_set_pio_output(AT91_PIO_PORTD, 4, 1); /* KSZ8563_RST */
91}
92
Eugen Hristev860d8ba2018-07-06 11:15:10 +030093#ifdef CONFIG_SD_BOOT
94void spl_mmc_init(void)
95{
96 atmel_pio4_set_a_periph(AT91_PIO_PORTA, 1, 0); /* CMD */
97 atmel_pio4_set_a_periph(AT91_PIO_PORTA, 2, 0); /* DAT0 */
98 atmel_pio4_set_a_periph(AT91_PIO_PORTA, 3, 0); /* DAT1 */
99 atmel_pio4_set_a_periph(AT91_PIO_PORTA, 4, 0); /* DAT2 */
100 atmel_pio4_set_a_periph(AT91_PIO_PORTA, 5, 0); /* DAT3 */
101 atmel_pio4_set_a_periph(AT91_PIO_PORTA, 0, 0); /* CK */
102 atmel_pio4_set_a_periph(AT91_PIO_PORTA, 13, 0); /* CD */
103
104 at91_periph_clk_enable(ATMEL_ID_SDMMC0);
105}
106#endif
107
108void spl_board_init(void)
109{
110#ifdef CONFIG_SD_BOOT
111 spl_mmc_init();
112#endif
Eugen Hristev50736162019-05-03 15:56:44 +0300113 board_reset_additional_periph();
Eugen Hristev860d8ba2018-07-06 11:15:10 +0300114}
115
116void spl_display_print(void)
117{
Eugen Hristev50736162019-05-03 15:56:44 +0300118}
119
120void spl_board_prepare_for_boot(void)
121{
122 board_start_additional_periph();
Eugen Hristev860d8ba2018-07-06 11:15:10 +0300123}
124
125static void ddrc_conf(struct atmel_mpddrc_config *ddrc)
126{
127 ddrc->md = (ATMEL_MPDDRC_MD_DBW_32_BITS | ATMEL_MPDDRC_MD_DDR3_SDRAM);
128
129 ddrc->cr = (ATMEL_MPDDRC_CR_NC_COL_10 |
130 ATMEL_MPDDRC_CR_NR_ROW_14 |
131 ATMEL_MPDDRC_CR_CAS_DDR_CAS5 |
132 ATMEL_MPDDRC_CR_DIC_DS |
133 ATMEL_MPDDRC_CR_NB_8BANKS |
134 ATMEL_MPDDRC_CR_DECOD_INTERLEAVED |
135 ATMEL_MPDDRC_CR_UNAL_SUPPORTED);
136
137 ddrc->rtr = 0x298;
138
139 ddrc->tpr0 = ((6 << ATMEL_MPDDRC_TPR0_TRAS_OFFSET) |
140 (3 << ATMEL_MPDDRC_TPR0_TRCD_OFFSET) |
141 (3 << ATMEL_MPDDRC_TPR0_TWR_OFFSET) |
142 (9 << ATMEL_MPDDRC_TPR0_TRC_OFFSET) |
143 (3 << ATMEL_MPDDRC_TPR0_TRP_OFFSET) |
144 (4 << ATMEL_MPDDRC_TPR0_TRRD_OFFSET) |
145 (4 << ATMEL_MPDDRC_TPR0_TWTR_OFFSET) |
146 (4 << ATMEL_MPDDRC_TPR0_TMRD_OFFSET));
147
148 ddrc->tpr1 = ((27 << ATMEL_MPDDRC_TPR1_TRFC_OFFSET) |
149 (29 << ATMEL_MPDDRC_TPR1_TXSNR_OFFSET) |
150 (0 << ATMEL_MPDDRC_TPR1_TXSRD_OFFSET) |
151 (10 << ATMEL_MPDDRC_TPR1_TXP_OFFSET));
152
153 ddrc->tpr2 = ((0 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET) |
154 (0 << ATMEL_MPDDRC_TPR2_TXARDS_OFFSET) |
155 (0 << ATMEL_MPDDRC_TPR2_TRPA_OFFSET) |
156 (4 << ATMEL_MPDDRC_TPR2_TRTP_OFFSET) |
157 (7 << ATMEL_MPDDRC_TPR2_TFAW_OFFSET));
158}
159
160void mem_init(void)
161{
162 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
163 struct atmel_mpddr *mpddrc = (struct atmel_mpddr *)ATMEL_BASE_MPDDRC;
164 struct atmel_mpddrc_config ddrc_config;
165 u32 reg;
166
167 ddrc_conf(&ddrc_config);
168
169 at91_periph_clk_enable(ATMEL_ID_MPDDRC);
170 writel(AT91_PMC_DDR, &pmc->scer);
171
172 reg = readl(&mpddrc->io_calibr);
173 reg &= ~ATMEL_MPDDRC_IO_CALIBR_RDIV;
174 reg |= ATMEL_MPDDRC_IO_CALIBR_DDR3_RZQ_55;
175 reg &= ~ATMEL_MPDDRC_IO_CALIBR_TZQIO;
176 reg |= ATMEL_MPDDRC_IO_CALIBR_TZQIO_(100);
177 writel(reg, &mpddrc->io_calibr);
178
179 writel(ATMEL_MPDDRC_RD_DATA_PATH_SHIFT_ONE_CYCLE,
180 &mpddrc->rd_data_path);
181
182 ddr3_init(ATMEL_BASE_MPDDRC, ATMEL_BASE_DDRCS, &ddrc_config);
183
184 writel(0x5355, &mpddrc->cal_mr4);
185 writel(64, &mpddrc->tim_cal);
186}
187
188void at91_pmc_init(void)
189{
190 u32 tmp;
191
192 /*
193 * while coming from the ROM code, we run on PLLA @ 492 MHz / 164 MHz
194 * so we need to slow down and configure MCKR accordingly.
195 * This is why we have a special flavor of the switching function.
196 */
197 tmp = AT91_PMC_MCKR_PLLADIV_2 |
198 AT91_PMC_MCKR_MDIV_3 |
199 AT91_PMC_MCKR_CSS_MAIN;
200 at91_mck_init_down(tmp);
201
202 tmp = AT91_PMC_PLLAR_29 |
203 AT91_PMC_PLLXR_PLLCOUNT(0x3f) |
204 AT91_PMC_PLLXR_MUL(82) |
205 AT91_PMC_PLLXR_DIV(1);
206 at91_plla_init(tmp);
207
208 tmp = AT91_PMC_MCKR_H32MXDIV |
209 AT91_PMC_MCKR_PLLADIV_2 |
210 AT91_PMC_MCKR_MDIV_3 |
211 AT91_PMC_MCKR_CSS_PLLA;
212 at91_mck_init(tmp);
213}
214#endif