blob: 8c16410944d4714f6ffdfb8dc5b1e2eca3c5c026 [file] [log] [blame]
Alexey Brodkina7069dd2014-02-04 12:56:19 +04001/*
2 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <dwmmc.h>
9#include <malloc.h>
10#include <netdev.h>
11#include <phy.h>
Alexey Brodkin0241c312015-04-09 19:50:58 +030012#include "axs10x.h"
Alexey Brodkina7069dd2014-02-04 12:56:19 +040013
14DECLARE_GLOBAL_DATA_PTR;
15
16int board_mmc_init(bd_t *bis)
17{
18 struct dwmci_host *host = NULL;
19
20 host = malloc(sizeof(struct dwmci_host));
21 if (!host) {
22 printf("dwmci_host malloc fail!\n");
23 return 1;
24 }
25
26 memset(host, 0, sizeof(struct dwmci_host));
27 host->name = "Synopsys Mobile storage";
28 host->ioaddr = (void *)ARC_DWMMC_BASE;
29 host->buswidth = 4;
30 host->dev_index = 0;
Alexey Brodkind5717e82015-04-02 10:19:12 +030031 host->bus_hz = 50000000;
Alexey Brodkina7069dd2014-02-04 12:56:19 +040032
Alexey Brodkind5717e82015-04-02 10:19:12 +030033 add_dwmci(host, host->bus_hz, 400000);
Alexey Brodkina7069dd2014-02-04 12:56:19 +040034
35 return 0;
36}
37
38int board_eth_init(bd_t *bis)
39{
Alexey Brodkinf39b2a62014-02-08 10:24:35 +040040 if (designware_initialize(ARC_DWGMAC_BASE,
Alexey Brodkina7069dd2014-02-04 12:56:19 +040041 PHY_INTERFACE_MODE_RGMII) >= 0)
42 return 1;
43
44 return 0;
45}
Alexey Brodkin0241c312015-04-09 19:50:58 +030046
47
48#define AXS_MB_CREG 0xE0011000
49
50int board_early_init_f(void)
51{
52 if (readl((void __iomem *)AXS_MB_CREG + 0x234) & (1 << 28))
53 gd->board_type = AXS_MB_V3;
54 else
55 gd->board_type = AXS_MB_V2;
56
57 return 0;
58}