2 * Copyright (C) 2005-2006 Atmel Corporation
4 * See file CREDITS for list of people who contributed to this
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 #include <asm/sdram.h>
26 #include <asm/arch/clk.h>
27 #include <asm/arch/hmatrix.h>
28 #include <asm/arch/mmu.h>
29 #include <asm/arch/portmux.h>
32 DECLARE_GLOBAL_DATA_PTR;
34 struct mmu_vm_range mmu_vmr_table[CONFIG_SYS_NR_VM_REGIONS] = {
36 .virt_pgno = CONFIG_SYS_FLASH_BASE >> PAGE_SHIFT,
37 .nr_pages = CONFIG_SYS_FLASH_SIZE >> PAGE_SHIFT,
38 .phys = (CONFIG_SYS_FLASH_BASE >> PAGE_SHIFT)
41 .virt_pgno = CONFIG_SYS_SDRAM_BASE >> PAGE_SHIFT,
42 .nr_pages = EBI_SDRAM_SIZE >> PAGE_SHIFT,
43 .phys = (CONFIG_SYS_SDRAM_BASE >> PAGE_SHIFT)
44 | MMU_VMR_CACHE_WRBACK,
48 static const struct sdram_config sdram_config = {
49 #if defined(CONFIG_ATSTK1006)
50 /* Dual MT48LC16M16A2-7E (64 MB) on daughterboard */
51 .data_bits = SDRAM_DATA_32BIT,
63 .refresh_period = (781 * (SDRAMC_BUS_HZ / 1000)) / 100000,
65 /* MT48LC2M32B2P-5 (8 MB) on motherboard */
66 #ifdef CONFIG_ATSTK1004
67 .data_bits = SDRAM_DATA_16BIT,
69 .data_bits = SDRAM_DATA_32BIT,
71 #ifdef CONFIG_ATSTK1000_16MB_SDRAM
72 /* MT48LC4M32B2P-6 (16 MB) on mod'ed motherboard */
87 .refresh_period = (156 * (SDRAMC_BUS_HZ / 1000)) / 10000,
91 int board_early_init_f(void)
93 /* Enable SDRAM in the EBI mux */
94 hmatrix_slave_write(EBI, SFR, HMATRIX_BIT(EBI_SDRAM_ENABLE));
96 portmux_enable_ebi(sdram_config.data_bits, 23, 0, PORTMUX_DRIVE_HIGH);
97 portmux_enable_usart1(PORTMUX_DRIVE_MIN);
98 #if defined(CONFIG_MACB)
99 portmux_enable_macb0(PORTMUX_MACB_MII, PORTMUX_DRIVE_LOW);
100 portmux_enable_macb1(PORTMUX_MACB_MII, PORTMUX_DRIVE_LOW);
102 #if defined(CONFIG_MMC)
103 portmux_enable_mmci(0, PORTMUX_MMCI_4BIT, PORTMUX_DRIVE_LOW);
109 phys_size_t initdram(int board_type)
111 unsigned long expected_size;
112 unsigned long actual_size;
115 sdram_base = uncached(EBI_SDRAM_BASE);
117 expected_size = sdram_init(sdram_base, &sdram_config);
118 actual_size = get_ram_size(sdram_base, expected_size);
120 if (expected_size != actual_size)
121 printf("Warning: Only %lu of %lu MiB SDRAM is working\n",
122 actual_size >> 20, expected_size >> 20);
127 int board_early_init_r(void)
129 gd->bd->bi_phy_id[0] = 0x10;
130 gd->bd->bi_phy_id[1] = 0x11;
134 #ifdef CONFIG_CMD_NET
135 int board_eth_init(bd_t *bi)
137 macb_eth_initialize(0, (void *)MACB0_BASE, bi->bi_phy_id[0]);
138 macb_eth_initialize(1, (void *)MACB1_BASE, bi->bi_phy_id[1]);