]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/miromico/hammerhead/hammerhead.c
avr32: convert to dram_init()
[people/ms/u-boot.git] / board / miromico / hammerhead / hammerhead.c
CommitLineData
5c374c9e
JM
1/*
2 * Copyright (C) 2008 Miromico AG
3 *
4 * Mostly copied form atmel ATNGW100 sources
5 *
1a459660 6 * SPDX-License-Identifier: GPL-2.0+
5c374c9e
JM
7 */
8
5c374c9e 9#include <common.h>
89973f8a 10#include <netdev.h>
5c374c9e
JM
11
12#include <asm/io.h>
13#include <asm/sdram.h>
14#include <asm/arch/clk.h>
5c374c9e 15#include <asm/arch/hmatrix.h>
5d73bc7a 16#include <asm/arch/hardware.h>
1f36f73f 17#include <asm/arch/mmu.h>
ab0df36f 18#include <asm/arch/portmux.h>
5c374c9e
JM
19
20DECLARE_GLOBAL_DATA_PTR;
21
1f36f73f
HS
22struct mmu_vm_range mmu_vmr_table[CONFIG_SYS_NR_VM_REGIONS] = {
23 {
e9ed41cc
AB
24 .virt_pgno = CONFIG_SYS_FLASH_BASE >> MMU_PAGE_SHIFT,
25 .nr_pages = CONFIG_SYS_FLASH_SIZE >> MMU_PAGE_SHIFT,
26 .phys = (CONFIG_SYS_FLASH_BASE >> MMU_PAGE_SHIFT)
1f36f73f
HS
27 | MMU_VMR_CACHE_NONE,
28 }, {
e9ed41cc
AB
29 .virt_pgno = CONFIG_SYS_SDRAM_BASE >> MMU_PAGE_SHIFT,
30 .nr_pages = EBI_SDRAM_SIZE >> MMU_PAGE_SHIFT,
31 .phys = (CONFIG_SYS_SDRAM_BASE >> MMU_PAGE_SHIFT)
1f36f73f
HS
32 | MMU_VMR_CACHE_WRBACK,
33 },
34};
35
5c374c9e
JM
36static const struct sdram_config sdram_config = {
37 .data_bits = SDRAM_DATA_32BIT,
38 .row_bits = 13,
39 .col_bits = 9,
40 .bank_bits = 2,
41 .cas = 3,
42 .twr = 2,
43 .trc = 7,
44 .trp = 2,
45 .trcd = 2,
46 .tras = 5,
47 .txsr = 5,
48 /* 7.81 us */
49 .refresh_period = (781 * (SDRAMC_BUS_HZ / 1000)) / 100000,
50};
51
5c374c9e
JM
52#ifdef CONFIG_CMD_NET
53int board_eth_init(bd_t *bis)
54{
f4278b71
AB
55 return macb_eth_initialize(0, (void *)ATMEL_BASE_MACB0,
56 bis->bi_phy_id[0]);
5c374c9e
JM
57}
58#endif
59
60int board_early_init_f(void)
61{
62 /* Enable SDRAM in the EBI mux */
63 hmatrix_slave_write(EBI, SFR, HMATRIX_BIT(EBI_SDRAM_ENABLE));
64
ab0df36f 65 portmux_enable_ebi(32, 23, 0, PORTMUX_DRIVE_HIGH);
18667860
AB
66 sdram_init(uncached(EBI_SDRAM_BASE), &sdram_config);
67
ab0df36f 68 portmux_enable_usart1(PORTMUX_DRIVE_MIN);
5c374c9e
JM
69
70#if defined(CONFIG_MACB)
ab0df36f 71 portmux_enable_macb0(PORTMUX_MACB_MII, PORTMUX_DRIVE_HIGH);
5c374c9e
JM
72#endif
73#if defined(CONFIG_MMC)
ab0df36f 74 portmux_enable_mmci(0, PORTMUX_MMCI_4BIT, PORTMUX_DRIVE_LOW);
5c374c9e
JM
75#endif
76 return 0;
77}
78
25e6854d 79int board_early_init_r(void)
5c374c9e
JM
80{
81 gd->bd->bi_phy_id[0] = 0x01;
25e6854d 82 return 0;
5c374c9e
JM
83}
84
36d375fa 85int board_postclk_init(void)
5c374c9e
JM
86{
87 /* Hammerhead boards uses GCLK3 as 25MHz output to ethernet PHY */
abdde2b1
HS
88 gclk_enable_output(3, PORTMUX_DRIVE_LOW);
89 gclk_set_rate(3, GCLK_PARENT_OSC0, 25000000);
36d375fa 90 return 0;
5c374c9e 91}