blob: 98d846fd79e250e3169f492674ebcfcec7d66865 [file] [log] [blame]
Bo Shen3225f342013-05-12 22:40:54 +00001/*
2 * Copyright (C) 2012 - 2013 Atmel Corporation
3 * Bo Shen <voice.shen@atmel.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Bo Shen3225f342013-05-12 22:40:54 +00006 */
7
8#include <common.h>
Bo Shen3225f342013-05-12 22:40:54 +00009#include <asm/io.h>
10#include <asm/arch/sama5d3_smc.h>
11#include <asm/arch/at91_common.h>
Bo Shen3225f342013-05-12 22:40:54 +000012#include <asm/arch/at91_rstc.h>
13#include <asm/arch/gpio.h>
14#include <asm/arch/clk.h>
Wenyou Yang098d15b2017-04-14 08:51:44 +080015#include <debug_uart.h>
Wu, Josh89a36582015-08-19 19:11:19 +080016#include <linux/ctype.h>
Andreas Bießmannb719a082014-09-18 23:46:49 +020017#include <phy.h>
Bo Shene08d6f32013-06-26 10:11:06 +080018#include <micrel.h>
Bo Shenc5e88852013-11-15 11:12:38 +080019#include <spl.h>
20#include <asm/arch/atmel_mpddrc.h>
21#include <asm/arch/at91_wdt.h>
Bo Shen3225f342013-05-12 22:40:54 +000022
23DECLARE_GLOBAL_DATA_PTR;
24
25/* ------------------------------------------------------------------------- */
26/*
27 * Miscelaneous platform dependent initialisations
28 */
29
30#ifdef CONFIG_NAND_ATMEL
31void sama5d3xek_nand_hw_init(void)
32{
33 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
34
35 at91_periph_clk_enable(ATMEL_ID_SMC);
36
37 /* Configure SMC CS3 for NAND/SmartMedia */
38 writel(AT91_SMC_SETUP_NWE(2) | AT91_SMC_SETUP_NCS_WR(1) |
39 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(1),
40 &smc->cs[3].setup);
41 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(5) |
42 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(5),
43 &smc->cs[3].pulse);
44 writel(AT91_SMC_CYCLE_NWE(8) | AT91_SMC_CYCLE_NRD(8),
45 &smc->cs[3].cycle);
46 writel(AT91_SMC_TIMINGS_TCLR(3) | AT91_SMC_TIMINGS_TADL(10) |
47 AT91_SMC_TIMINGS_TAR(3) | AT91_SMC_TIMINGS_TRR(4) |
48 AT91_SMC_TIMINGS_TWB(5) | AT91_SMC_TIMINGS_RBNSEL(3)|
49 AT91_SMC_TIMINGS_NFSEL(1), &smc->cs[3].timings);
50 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
51 AT91_SMC_MODE_EXNW_DISABLE |
52#ifdef CONFIG_SYS_NAND_DBW_16
53 AT91_SMC_MODE_DBW_16 |
54#else /* CONFIG_SYS_NAND_DBW_8 */
55 AT91_SMC_MODE_DBW_8 |
56#endif
57 AT91_SMC_MODE_TDF_CYCLE(3),
58 &smc->cs[3].mode);
59}
60#endif
61
Masahiro Yamadae856bdc2017-02-11 22:43:54 +090062#ifdef CONFIG_MTD_NOR_FLASH
Bo Shena931b132014-07-18 16:43:07 +080063static void sama5d3xek_nor_hw_init(void)
64{
65 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
66
67 at91_periph_clk_enable(ATMEL_ID_SMC);
68
69 /* Configure SMC CS0 for NOR flash */
70 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
71 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(0),
72 &smc->cs[0].setup);
73 writel(AT91_SMC_PULSE_NWE(10) | AT91_SMC_PULSE_NCS_WR(11) |
74 AT91_SMC_PULSE_NRD(10) | AT91_SMC_PULSE_NCS_RD(11),
75 &smc->cs[0].pulse);
76 writel(AT91_SMC_CYCLE_NWE(11) | AT91_SMC_CYCLE_NRD(14),
77 &smc->cs[0].cycle);
78 writel(AT91_SMC_TIMINGS_TCLR(0) | AT91_SMC_TIMINGS_TADL(0) |
79 AT91_SMC_TIMINGS_TAR(0) | AT91_SMC_TIMINGS_TRR(0) |
80 AT91_SMC_TIMINGS_TWB(0) | AT91_SMC_TIMINGS_RBNSEL(0)|
81 AT91_SMC_TIMINGS_NFSEL(0), &smc->cs[0].timings);
82 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
83 AT91_SMC_MODE_EXNW_DISABLE |
84 AT91_SMC_MODE_DBW_16 |
85 AT91_SMC_MODE_TDF_CYCLE(1),
86 &smc->cs[0].mode);
87
88 /* Address pin (A1 ~ A23) configuration */
Wenyou Yang2dc63f72017-03-23 12:44:36 +080089 at91_pio3_set_a_periph(AT91_PIO_PORTE, 1, 0);
90 at91_pio3_set_a_periph(AT91_PIO_PORTE, 2, 0);
91 at91_pio3_set_a_periph(AT91_PIO_PORTE, 3, 0);
92 at91_pio3_set_a_periph(AT91_PIO_PORTE, 4, 0);
93 at91_pio3_set_a_periph(AT91_PIO_PORTE, 5, 0);
94 at91_pio3_set_a_periph(AT91_PIO_PORTE, 6, 0);
95 at91_pio3_set_a_periph(AT91_PIO_PORTE, 7, 0);
96 at91_pio3_set_a_periph(AT91_PIO_PORTE, 8, 0);
97 at91_pio3_set_a_periph(AT91_PIO_PORTE, 9, 0);
98 at91_pio3_set_a_periph(AT91_PIO_PORTE, 10, 0);
99 at91_pio3_set_a_periph(AT91_PIO_PORTE, 11, 0);
100 at91_pio3_set_a_periph(AT91_PIO_PORTE, 12, 0);
101 at91_pio3_set_a_periph(AT91_PIO_PORTE, 13, 0);
102 at91_pio3_set_a_periph(AT91_PIO_PORTE, 14, 0);
103 at91_pio3_set_a_periph(AT91_PIO_PORTE, 15, 0);
104 at91_pio3_set_a_periph(AT91_PIO_PORTE, 16, 0);
105 at91_pio3_set_a_periph(AT91_PIO_PORTE, 17, 0);
106 at91_pio3_set_a_periph(AT91_PIO_PORTE, 18, 0);
107 at91_pio3_set_a_periph(AT91_PIO_PORTE, 19, 0);
108 at91_pio3_set_a_periph(AT91_PIO_PORTE, 20, 0);
109 at91_pio3_set_a_periph(AT91_PIO_PORTE, 21, 0);
110 at91_pio3_set_a_periph(AT91_PIO_PORTE, 22, 0);
111 at91_pio3_set_a_periph(AT91_PIO_PORTE, 23, 0);
Bo Shena931b132014-07-18 16:43:07 +0800112 /* CS0 pin configuration */
Wenyou Yang2dc63f72017-03-23 12:44:36 +0800113 at91_pio3_set_a_periph(AT91_PIO_PORTE, 26, 0);
Bo Shena931b132014-07-18 16:43:07 +0800114}
115#endif
116
Bo Shen3225f342013-05-12 22:40:54 +0000117#ifdef CONFIG_CMD_USB
118static void sama5d3xek_usb_hw_init(void)
119{
120 at91_set_pio_output(AT91_PIO_PORTD, 25, 0);
121 at91_set_pio_output(AT91_PIO_PORTD, 26, 0);
122 at91_set_pio_output(AT91_PIO_PORTD, 27, 0);
123}
124#endif
125
126#ifdef CONFIG_GENERIC_ATMEL_MCI
127static void sama5d3xek_mci_hw_init(void)
128{
Bo Shen3225f342013-05-12 22:40:54 +0000129 at91_set_pio_output(AT91_PIO_PORTB, 10, 0); /* MCI0 Power */
130}
131#endif
132
Wenyou Yang098d15b2017-04-14 08:51:44 +0800133#ifdef CONFIG_DEBUG_UART_BOARD_INIT
134void board_debug_uart_init(void)
Bo Shen3225f342013-05-12 22:40:54 +0000135{
136 at91_seriald_hw_init();
Wenyou Yang098d15b2017-04-14 08:51:44 +0800137}
138#endif
Bo Shen3225f342013-05-12 22:40:54 +0000139
Wenyou Yang098d15b2017-04-14 08:51:44 +0800140#ifdef CONFIG_BOARD_EARLY_INIT_F
141int board_early_init_f(void)
142{
143#ifdef CONFIG_DEBUG_UART
144 debug_uart_init();
145#endif
Bo Shen3225f342013-05-12 22:40:54 +0000146 return 0;
147}
Wenyou Yang098d15b2017-04-14 08:51:44 +0800148#endif
Bo Shen3225f342013-05-12 22:40:54 +0000149
150int board_init(void)
151{
152 /* adress of boot parameters */
153 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
154
155#ifdef CONFIG_NAND_ATMEL
156 sama5d3xek_nand_hw_init();
157#endif
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900158#ifdef CONFIG_MTD_NOR_FLASH
Bo Shena931b132014-07-18 16:43:07 +0800159 sama5d3xek_nor_hw_init();
160#endif
Bo Shen3225f342013-05-12 22:40:54 +0000161#ifdef CONFIG_CMD_USB
162 sama5d3xek_usb_hw_init();
163#endif
164#ifdef CONFIG_GENERIC_ATMEL_MCI
165 sama5d3xek_mci_hw_init();
166#endif
Bo Shen3225f342013-05-12 22:40:54 +0000167 return 0;
168}
169
170int dram_init(void)
171{
172 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
173 CONFIG_SYS_SDRAM_SIZE);
174 return 0;
175}
176
Wu, Josh89a36582015-08-19 19:11:19 +0800177#ifdef CONFIG_BOARD_LATE_INIT
178int board_late_init(void)
179{
180#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
181 const int MAX_STR_LEN = 32;
182 char name[MAX_STR_LEN], *p;
183 int i;
184
185 strncpy(name, get_cpu_name(), MAX_STR_LEN);
186 for (i = 0, p = name; (*p) && (i < MAX_STR_LEN); p++, i++)
187 *p = tolower(*p);
188
189 strcat(name, "ek.dtb");
Simon Glass382bee52017-08-03 12:22:09 -0600190 env_set("dtb_name", name);
Wu, Josh89a36582015-08-19 19:11:19 +0800191#endif
Wenyou Yangfe32c6d2017-09-18 15:25:58 +0800192#ifdef CONFIG_DM_VIDEO
193 at91_video_show_board_info();
194#endif
Wu, Josh89a36582015-08-19 19:11:19 +0800195 return 0;
196}
197#endif
198
Bo Shenc5e88852013-11-15 11:12:38 +0800199/* SPL */
200#ifdef CONFIG_SPL_BUILD
201void spl_board_init(void)
202{
Wenyou Yang55415432017-09-14 11:07:44 +0800203#if CONFIG_NAND_BOOT
Bo Shen27019e42014-03-03 14:47:17 +0800204 sama5d3xek_nand_hw_init();
Bo Shenc5e88852013-11-15 11:12:38 +0800205#endif
206}
207
Wenyou Yang7e8702a2016-02-01 18:12:15 +0800208static void ddr2_conf(struct atmel_mpddrc_config *ddr2)
Bo Shenc5e88852013-11-15 11:12:38 +0800209{
210 ddr2->md = (ATMEL_MPDDRC_MD_DBW_32_BITS | ATMEL_MPDDRC_MD_DDR2_SDRAM);
211
212 ddr2->cr = (ATMEL_MPDDRC_CR_NC_COL_10 |
213 ATMEL_MPDDRC_CR_NR_ROW_14 |
214 ATMEL_MPDDRC_CR_CAS_DDR_CAS3 |
215 ATMEL_MPDDRC_CR_ENRDM_ON |
216 ATMEL_MPDDRC_CR_NB_8BANKS |
217 ATMEL_MPDDRC_CR_NDQS_DISABLED |
218 ATMEL_MPDDRC_CR_DECOD_INTERLEAVED |
219 ATMEL_MPDDRC_CR_UNAL_SUPPORTED);
220 /*
221 * As the DDR2-SDRAm device requires a refresh time is 7.8125us
222 * when DDR run at 133MHz, so it needs (7.8125us * 133MHz / 10^9) clocks
223 */
224 ddr2->rtr = 0x411;
225
226 ddr2->tpr0 = (6 << ATMEL_MPDDRC_TPR0_TRAS_OFFSET |
227 2 << ATMEL_MPDDRC_TPR0_TRCD_OFFSET |
228 2 << ATMEL_MPDDRC_TPR0_TWR_OFFSET |
229 8 << ATMEL_MPDDRC_TPR0_TRC_OFFSET |
230 2 << ATMEL_MPDDRC_TPR0_TRP_OFFSET |
231 2 << ATMEL_MPDDRC_TPR0_TRRD_OFFSET |
232 2 << ATMEL_MPDDRC_TPR0_TWTR_OFFSET |
233 2 << ATMEL_MPDDRC_TPR0_TMRD_OFFSET);
234
235 ddr2->tpr1 = (2 << ATMEL_MPDDRC_TPR1_TXP_OFFSET |
236 200 << ATMEL_MPDDRC_TPR1_TXSRD_OFFSET |
237 28 << ATMEL_MPDDRC_TPR1_TXSNR_OFFSET |
238 26 << ATMEL_MPDDRC_TPR1_TRFC_OFFSET);
239
240 ddr2->tpr2 = (7 << ATMEL_MPDDRC_TPR2_TFAW_OFFSET |
241 2 << ATMEL_MPDDRC_TPR2_TRTP_OFFSET |
242 2 << ATMEL_MPDDRC_TPR2_TRPA_OFFSET |
243 7 << ATMEL_MPDDRC_TPR2_TXARDS_OFFSET |
244 8 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET);
245}
246
247void mem_init(void)
248{
Wenyou Yang7e8702a2016-02-01 18:12:15 +0800249 struct atmel_mpddrc_config ddr2;
Bo Shenc5e88852013-11-15 11:12:38 +0800250
251 ddr2_conf(&ddr2);
252
Wenyou Yang70341e22016-02-03 10:16:50 +0800253 /* Enable MPDDR clock */
Bo Shenc5e88852013-11-15 11:12:38 +0800254 at91_periph_clk_enable(ATMEL_ID_MPDDRC);
Wenyou Yang70341e22016-02-03 10:16:50 +0800255 at91_system_clk_enable(AT91_PMC_DDR);
Bo Shenc5e88852013-11-15 11:12:38 +0800256
257 /* DDRAM2 Controller initialize */
Erik van Luijk0c01c3e2015-08-13 15:43:18 +0200258 ddr2_init(ATMEL_BASE_MPDDRC, ATMEL_BASE_DDRCS, &ddr2);
Bo Shenc5e88852013-11-15 11:12:38 +0800259}
260
261void at91_pmc_init(void)
262{
Bo Shenc5e88852013-11-15 11:12:38 +0800263 u32 tmp;
264
265 tmp = AT91_PMC_PLLAR_29 |
266 AT91_PMC_PLLXR_PLLCOUNT(0x3f) |
267 AT91_PMC_PLLXR_MUL(43) |
268 AT91_PMC_PLLXR_DIV(1);
269 at91_plla_init(tmp);
270
Wenyou Yangede86ed2016-02-02 12:46:14 +0800271 at91_pllicpr_init(AT91_PMC_IPLL_PLLA(0x3));
Bo Shenc5e88852013-11-15 11:12:38 +0800272
273 tmp = AT91_PMC_MCKR_MDIV_4 |
274 AT91_PMC_MCKR_CSS_PLLA;
275 at91_mck_init(tmp);
276}
277#endif