blob: f9ac330c33edee7aa790893524f66d3dbd212133 [file] [log] [blame]
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +02001/*
2 * Copyright (C) 2008 Atmel Corporation
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +02005 */
6#include <common.h>
Ben Warren89973f82008-08-31 22:22:04 -07007#include <netdev.h>
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +02008
9#include <asm/io.h>
10#include <asm/sdram.h>
11#include <asm/arch/clk.h>
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +020012#include <asm/arch/hmatrix.h>
Haavard Skinnemoen1f36f732010-08-12 13:52:54 +070013#include <asm/arch/mmu.h>
Haavard Skinnemoenab0df362008-08-29 21:09:49 +020014#include <asm/arch/portmux.h>
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +020015
16DECLARE_GLOBAL_DATA_PTR;
17
Haavard Skinnemoen1f36f732010-08-12 13:52:54 +070018struct mmu_vm_range mmu_vmr_table[CONFIG_SYS_NR_VM_REGIONS] = {
19 {
Andreas Bießmanne9ed41c2015-02-06 23:06:42 +010020 .virt_pgno = CONFIG_SYS_FLASH_BASE >> MMU_PAGE_SHIFT,
21 .nr_pages = CONFIG_SYS_FLASH_SIZE >> MMU_PAGE_SHIFT,
22 .phys = (CONFIG_SYS_FLASH_BASE >> MMU_PAGE_SHIFT)
Haavard Skinnemoen1f36f732010-08-12 13:52:54 +070023 | MMU_VMR_CACHE_NONE,
24 }, {
Andreas Bießmanne9ed41c2015-02-06 23:06:42 +010025 .virt_pgno = CONFIG_SYS_SDRAM_BASE >> MMU_PAGE_SHIFT,
26 .nr_pages = EBI_SDRAM_SIZE >> MMU_PAGE_SHIFT,
27 .phys = (CONFIG_SYS_SDRAM_BASE >> MMU_PAGE_SHIFT)
Haavard Skinnemoen1f36f732010-08-12 13:52:54 +070028 | MMU_VMR_CACHE_WRBACK,
29 },
30};
31
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +020032static const struct sdram_config sdram_config = {
33 /* MT48LC4M32B2P-6 (16 MB) */
34 .data_bits = SDRAM_DATA_32BIT,
35 .row_bits = 12,
36 .col_bits = 8,
37 .bank_bits = 2,
38 .cas = 3,
39 .twr = 2,
40 .trc = 7,
41 .trp = 2,
42 .trcd = 2,
43 .tras = 5,
44 .txsr = 5,
45 /* 15.6 us */
46 .refresh_period = (156 * (SDRAMC_BUS_HZ / 1000)) / 10000,
47};
48
49int board_early_init_f(void)
50{
51 /* Enable SDRAM in the EBI mux */
52 hmatrix_slave_write(EBI, SFR, HMATRIX_BIT(EBI_SDRAM_ENABLE));
53
Haavard Skinnemoenab0df362008-08-29 21:09:49 +020054 portmux_enable_ebi(32, 23, 0, PORTMUX_DRIVE_HIGH);
Andreas Bießmann18667862015-02-06 23:06:43 +010055
56 sdram_init(uncached(EBI_SDRAM_BASE), &sdram_config);
57
Haavard Skinnemoenab0df362008-08-29 21:09:49 +020058 portmux_enable_usart3(PORTMUX_DRIVE_MIN);
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +020059#if defined(CONFIG_MACB)
Haavard Skinnemoenab0df362008-08-29 21:09:49 +020060 portmux_enable_macb0(PORTMUX_MACB_MII, PORTMUX_DRIVE_HIGH);
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +020061#endif
62#if defined(CONFIG_MMC)
Haavard Skinnemoenab0df362008-08-29 21:09:49 +020063 portmux_enable_mmci(0, PORTMUX_MMCI_4BIT, PORTMUX_DRIVE_LOW);
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +020064#endif
65
66 return 0;
67}
68
Haavard Skinnemoen25e68542008-08-31 18:46:35 +020069int board_early_init_r(void)
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +020070{
71 gd->bd->bi_phy_id[0] = 0x01;
Haavard Skinnemoen25e68542008-08-31 18:46:35 +020072 return 0;
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +020073}
74
75#if defined(CONFIG_MACB) && defined(CONFIG_CMD_NET)
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +020076int board_eth_init(bd_t *bi)
77{
Andreas Bießmannf4278b72010-11-04 23:15:31 +000078 return macb_eth_initialize(0, (void *)ATMEL_BASE_MACB0,
79 bi->bi_phy_id[0]);
Hans-Christian Egtvedt0eb57172008-08-06 14:42:13 +020080}
81#endif