blob: 5f34fec45019cb4d2e0879b6a3aa6194168b45b2 [file] [log] [blame]
Rob Herring37fc0ed2011-10-24 08:50:20 +00001/*
2 * Copyright 2010-2011 Calxeda, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
7 * any later version.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include <common.h>
19#include <ahci.h>
Rob Herringbd0d90e2012-02-21 12:52:26 +000020#include <netdev.h>
Rob Herring37fc0ed2011-10-24 08:50:20 +000021#include <scsi.h>
22
23#include <asm/sizes.h>
24
25DECLARE_GLOBAL_DATA_PTR;
26
27/*
28 * Miscellaneous platform dependent initialisations
29 */
30int board_init(void)
31{
32 icache_enable();
33
34 return 0;
35}
36
Rob Herring9a420982011-12-15 11:15:50 +000037/* We know all the init functions have been run now */
38int board_eth_init(bd_t *bis)
39{
40 int rc = 0;
41
42#ifdef CONFIG_CALXEDA_XGMAC
43 rc += calxedaxgmac_initialize(0, 0xfff50000);
44 rc += calxedaxgmac_initialize(1, 0xfff51000);
45#endif
46 return rc;
47}
48
Rob Herring37fc0ed2011-10-24 08:50:20 +000049int misc_init_r(void)
50{
51 ahci_init(0xffe08000);
52 scsi_scan(1);
53 return 0;
54}
55
56int dram_init(void)
57{
58 gd->ram_size = SZ_512M;
59 return 0;
60}
61
62void dram_init_banksize(void)
63{
64 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
65 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
66}
67
68void reset_cpu(ulong addr)
69{
70}