blob: 32e5a2bf23af5cb48094e0c2246dfddc4f33533a [file] [log] [blame]
Sandeep Sheriker Mallikarjun641b3352019-09-27 13:08:52 +00001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018 Microchip Technology Inc. and its subsidiaries
4 *
5 * Author: Sandeep Sheriker M <sandeep.sheriker@microchip.com>
6 */
7
8#include <common.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -07009#include <init.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <asm/global_data.h>
Sandeep Sheriker Mallikarjun641b3352019-09-27 13:08:52 +000011#include <asm/io.h>
Tudor Ambaruse76c66a2019-09-27 13:09:07 +000012#include <asm/arch/at91sam9_smc.h>
Sandeep Sheriker Mallikarjun641b3352019-09-27 13:08:52 +000013#include <asm/arch/at91_common.h>
14#include <asm/arch/at91_rstc.h>
Tudor Ambaruse76c66a2019-09-27 13:09:07 +000015#include <asm/arch/at91_sfr.h>
Sandeep Sheriker Mallikarjun641b3352019-09-27 13:08:52 +000016#include <asm/arch/clk.h>
17#include <asm/arch/gpio.h>
18#include <debug_uart.h>
19#include <asm/mach-types.h>
20
Eugen Hristevf9990dc2019-09-30 07:29:01 +000021extern void at91_pda_detect(void);
22
Sandeep Sheriker Mallikarjun641b3352019-09-27 13:08:52 +000023DECLARE_GLOBAL_DATA_PTR;
24
25void at91_prepare_cpu_var(void);
26
Tudor Ambaruse76c66a2019-09-27 13:09:07 +000027#ifdef CONFIG_CMD_NAND
28static void sam9x60ek_nand_hw_init(void)
29{
30 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
31 struct atmel_sfr *sfr = (struct atmel_sfr *)ATMEL_BASE_SFR;
32 unsigned int csa;
33
34 at91_pio3_set_a_periph(AT91_PIO_PORTD, 0, 1); /* NAND OE */
35 at91_pio3_set_a_periph(AT91_PIO_PORTD, 1, 1); /* NAND WE */
36 at91_pio3_set_a_periph(AT91_PIO_PORTD, 2, 0); /* NAND ALE */
37 at91_pio3_set_a_periph(AT91_PIO_PORTD, 3, 0); /* NAND CLE */
38 /* Enable NandFlash */
39 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
40 /* Configure RDY/BSY */
41 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
42 at91_pio3_set_a_periph(AT91_PIO_PORTD, 6, 1);
43 at91_pio3_set_a_periph(AT91_PIO_PORTD, 7, 1);
44 at91_pio3_set_a_periph(AT91_PIO_PORTD, 8, 1);
45 at91_pio3_set_a_periph(AT91_PIO_PORTD, 9, 1);
46 at91_pio3_set_a_periph(AT91_PIO_PORTD, 10, 1);
47 at91_pio3_set_a_periph(AT91_PIO_PORTD, 11, 1);
48 at91_pio3_set_a_periph(AT91_PIO_PORTD, 12, 1);
49 at91_pio3_set_a_periph(AT91_PIO_PORTD, 13, 1);
50
51 at91_periph_clk_enable(ATMEL_ID_PIOD);
52
53 /* Enable CS3 */
54 csa = readl(&sfr->ebicsa);
55 csa |= AT91_SFR_CCFG_EBI_CSA(3, 1) | AT91_SFR_CCFG_NFD0_ON_D16;
56
57 /* Configure IO drive */
58 csa &= ~AT91_SFR_CCFG_EBI_DRIVE_SAM9X60;
59
60 writel(csa, &sfr->ebicsa);
61
62 /* Configure SMC CS3 for NAND/SmartMedia */
63 writel(AT91_SMC_SETUP_NWE(4), &smc->cs[3].setup);
64
65 writel(AT91_SMC_PULSE_NWE(10) | AT91_SMC_PULSE_NCS_WR(20) |
66 AT91_SMC_PULSE_NRD(10) | AT91_SMC_PULSE_NCS_RD(20),
67 &smc->cs[3].pulse);
68
69 writel(AT91_SMC_CYCLE_NWE(20) | AT91_SMC_CYCLE_NRD(20),
70 &smc->cs[3].cycle);
71
72 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
73#ifdef CONFIG_SYS_NAND_DBW_16
74 AT91_SMC_MODE_DBW_16 |
75#else /* CONFIG_SYS_NAND_DBW_8 */
76 AT91_SMC_MODE_DBW_8 |
77#endif
78 AT91_SMC_MODE_TDF | AT91_SMC_MODE_TDF_CYCLE(15),
79 &smc->cs[3].mode);
80}
81#endif
82
Sandeep Sheriker Mallikarjun641b3352019-09-27 13:08:52 +000083#ifdef CONFIG_BOARD_LATE_INIT
84int board_late_init(void)
85{
86 at91_prepare_cpu_var();
Eugen Hristevf9990dc2019-09-30 07:29:01 +000087
88 at91_pda_detect();
89
Sandeep Sheriker Mallikarjun641b3352019-09-27 13:08:52 +000090 return 0;
91}
92#endif
93
94#ifdef CONFIG_DEBUG_UART_BOARD_INIT
95void board_debug_uart_init(void)
96{
97 at91_seriald_hw_init();
98}
99#endif
100
101#ifdef CONFIG_BOARD_EARLY_INIT_F
102int board_early_init_f(void)
103{
104#ifdef CONFIG_DEBUG_UART
105 debug_uart_init();
106#endif
107 return 0;
108}
109#endif
110
Eugen Hristeva4f51ce2019-10-09 09:23:43 +0000111#define MAC24AA_MAC_OFFSET 0xfa
112
113#ifdef CONFIG_MISC_INIT_R
114int misc_init_r(void)
115{
116#ifdef CONFIG_I2C_EEPROM
117 at91_set_ethaddr(MAC24AA_MAC_OFFSET);
118#endif
119 return 0;
120}
121#endif
122
Sandeep Sheriker Mallikarjun641b3352019-09-27 13:08:52 +0000123int board_init(void)
124{
125 /* address of boot parameters */
126 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
127
Tudor Ambaruse76c66a2019-09-27 13:09:07 +0000128#ifdef CONFIG_CMD_NAND
129 sam9x60ek_nand_hw_init();
130#endif
Sandeep Sheriker Mallikarjun641b3352019-09-27 13:08:52 +0000131 return 0;
132}
133
134int dram_init(void)
135{
136 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
137 CONFIG_SYS_SDRAM_SIZE);
138 return 0;
139}