blob: 4b272c780e101477074a85bb317f8cfc0671fa08 [file] [log] [blame]
Rob Herring37fc0ed2011-10-24 08:50:20 +00001/*
2 * Copyright 2010-2011 Calxeda, Inc.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Rob Herring37fc0ed2011-10-24 08:50:20 +00005 */
6
7#include <common.h>
8#include <ahci.h>
Rob Herringbd0d90e2012-02-21 12:52:26 +00009#include <netdev.h>
Rob Herring37fc0ed2011-10-24 08:50:20 +000010#include <scsi.h>
11
12#include <asm/sizes.h>
Rob Herring877012d2012-02-01 16:57:54 +000013#include <asm/io.h>
Rob Herring37fc0ed2011-10-24 08:50:20 +000014
Rob Herring76c39992013-06-12 22:24:52 -050015#define HB_AHCI_BASE 0xffe08000
16
Rob Herring0c34e692012-02-01 16:57:55 +000017#define HB_SREG_A9_PWR_REQ 0xfff3cf00
Rob Herring4a3ea212012-02-01 16:57:57 +000018#define HB_SREG_A9_BOOT_SRC_STAT 0xfff3cf04
Rob Herring76c39992013-06-12 22:24:52 -050019#define HB_SREG_A9_PWRDOM_STAT 0xfff3cf20
20
Rob Herring0c34e692012-02-01 16:57:55 +000021#define HB_PWR_SUSPEND 0
22#define HB_PWR_SOFT_RESET 1
23#define HB_PWR_HARD_RESET 2
24#define HB_PWR_SHUTDOWN 3
25
Rob Herring76c39992013-06-12 22:24:52 -050026#define PWRDOM_STAT_SATA 0x80000000
27#define PWRDOM_STAT_PCI 0x40000000
28#define PWRDOM_STAT_EMMC 0x20000000
29
Rob Herring37fc0ed2011-10-24 08:50:20 +000030DECLARE_GLOBAL_DATA_PTR;
31
32/*
33 * Miscellaneous platform dependent initialisations
34 */
35int board_init(void)
36{
37 icache_enable();
38
39 return 0;
40}
41
Rob Herring9a420982011-12-15 11:15:50 +000042/* We know all the init functions have been run now */
43int board_eth_init(bd_t *bis)
44{
45 int rc = 0;
46
47#ifdef CONFIG_CALXEDA_XGMAC
48 rc += calxedaxgmac_initialize(0, 0xfff50000);
49 rc += calxedaxgmac_initialize(1, 0xfff51000);
50#endif
51 return rc;
52}
53
Rob Herring95395022013-06-12 22:24:53 -050054#ifdef CONFIG_MISC_INIT_R
Rob Herring37fc0ed2011-10-24 08:50:20 +000055int misc_init_r(void)
56{
Rob Herring4a3ea212012-02-01 16:57:57 +000057 char envbuffer[16];
58 u32 boot_choice;
Rob Herring76c39992013-06-12 22:24:52 -050059 u32 reg = readl(HB_SREG_A9_PWRDOM_STAT);
Rob Herring4a3ea212012-02-01 16:57:57 +000060
Rob Herring76c39992013-06-12 22:24:52 -050061 if (reg & PWRDOM_STAT_SATA) {
62 ahci_init(HB_AHCI_BASE);
63 scsi_scan(1);
64 }
Rob Herring4a3ea212012-02-01 16:57:57 +000065
66 boot_choice = readl(HB_SREG_A9_BOOT_SRC_STAT) & 0xff;
67 sprintf(envbuffer, "bootcmd%d", boot_choice);
68 if (getenv(envbuffer)) {
69 sprintf(envbuffer, "run bootcmd%d", boot_choice);
70 setenv("bootcmd", envbuffer);
71 } else
72 setenv("bootcmd", "");
73
Rob Herring37fc0ed2011-10-24 08:50:20 +000074 return 0;
75}
Rob Herring95395022013-06-12 22:24:53 -050076#endif
Rob Herring37fc0ed2011-10-24 08:50:20 +000077
78int dram_init(void)
79{
80 gd->ram_size = SZ_512M;
81 return 0;
82}
83
84void dram_init_banksize(void)
85{
86 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
87 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
88}
89
Rob Herring76c39992013-06-12 22:24:52 -050090#if defined(CONFIG_OF_BOARD_SETUP)
91void ft_board_setup(void *fdt, bd_t *bd)
92{
93 static const char disabled[] = "disabled";
94 u32 reg = readl(HB_SREG_A9_PWRDOM_STAT);
95
96 if (!(reg & PWRDOM_STAT_SATA))
97 do_fixup_by_compat(fdt, "calxeda,hb-ahci", "status",
98 disabled, sizeof(disabled), 1);
99
100 if (!(reg & PWRDOM_STAT_EMMC))
101 do_fixup_by_compat(fdt, "calxeda,hb-sdhci", "status",
102 disabled, sizeof(disabled), 1);
103}
104#endif
105
Rob Herring37fc0ed2011-10-24 08:50:20 +0000106void reset_cpu(ulong addr)
107{
Rob Herring0c34e692012-02-01 16:57:55 +0000108 writel(HB_PWR_HARD_RESET, HB_SREG_A9_PWR_REQ);
Rob Herring5bedf882012-12-02 17:06:22 +0000109
110 wfi();
Rob Herring37fc0ed2011-10-24 08:50:20 +0000111}