blob: e9897b3976ff94635c84e636d1a835acabee9d7d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese9106ed02016-01-29 09:14:54 +01002/*
3 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
Stefan Roese9106ed02016-01-29 09:14:54 +01004 */
5
6#include <common.h>
Simon Glass97589732020-05-10 11:40:02 -06007#include <init.h>
Stefan Roese9106ed02016-01-29 09:14:54 +01008#include <miiphy.h>
Simon Glass274e0b02020-05-10 11:39:56 -06009#include <net.h>
Stefan Roese9106ed02016-01-29 09:14:54 +010010#include <netdev.h>
11#include <asm/io.h>
12#include <asm/arch/cpu.h>
13#include <asm/arch/soc.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060014#include <linux/bitops.h>
Stefan Roese9106ed02016-01-29 09:14:54 +010015
16DECLARE_GLOBAL_DATA_PTR;
17
18/*
19 * Those values and defines are taken from the Marvell U-Boot version
20 * "u-boot-2013.01-2014_T2.0" for the board Armada 375 DB-88F6720
21 */
22#define DB_88F6720_MPP0_7 0x00020020 /* SPI */
23#define DB_88F6720_MPP8_15 0x22000022 /* SPI , I2C */
24#define DB_88F6720_MPP16_23 0x22222222 /* UART, TDM*/
25#define DB_88F6720_MPP24_31 0x33333333 /* SDIO, SPI1*/
26#define DB_88F6720_MPP32_39 0x04403330 /* SPI1, External SMI */
27#define DB_88F6720_MPP40_47 0x22002044 /* UART1, GE0, SATA0 LED */
28#define DB_88F6720_MPP48_55 0x22222222 /* GE0 */
29#define DB_88F6720_MPP56_63 0x04444422 /* GE0 , LED_MATRIX, GPIO */
30#define DB_88F6720_MPP64_67 0x014 /* LED_MATRIX, SATA1 LED*/
31
32#define DB_88F6720_GPP_OUT_ENA_LOW 0xFFFFFFFF
33#define DB_88F6720_GPP_OUT_ENA_MID 0x7FFFFFFF
34#define DB_88F6720_GPP_OUT_ENA_HIGH 0xFFFFFFFF
35#define DB_88F6720_GPP_OUT_VAL_LOW 0x0
36#define DB_88F6720_GPP_OUT_VAL_MID BIT(31) /* SATA Power output enable */
37#define DB_88F6720_GPP_OUT_VAL_HIGH 0x0
38#define DB_88F6720_GPP_POL_LOW 0x0
39#define DB_88F6720_GPP_POL_MID 0x0
40#define DB_88F6720_GPP_POL_HIGH 0x0
41
42int board_early_init_f(void)
43{
44 /* Configure MPP */
45 writel(DB_88F6720_MPP0_7, MVEBU_MPP_BASE + 0x00);
46 writel(DB_88F6720_MPP8_15, MVEBU_MPP_BASE + 0x04);
47 writel(DB_88F6720_MPP16_23, MVEBU_MPP_BASE + 0x08);
48 writel(DB_88F6720_MPP24_31, MVEBU_MPP_BASE + 0x0c);
49 writel(DB_88F6720_MPP32_39, MVEBU_MPP_BASE + 0x10);
50 writel(DB_88F6720_MPP40_47, MVEBU_MPP_BASE + 0x14);
51 writel(DB_88F6720_MPP48_55, MVEBU_MPP_BASE + 0x18);
52 writel(DB_88F6720_MPP56_63, MVEBU_MPP_BASE + 0x1c);
53 writel(DB_88F6720_MPP64_67, MVEBU_MPP_BASE + 0x20);
54
55 /* Configure GPIO */
56 /* Set GPP Out value */
57 writel(DB_88F6720_GPP_OUT_VAL_LOW, MVEBU_GPIO0_BASE + 0x00);
58 writel(DB_88F6720_GPP_OUT_VAL_MID, MVEBU_GPIO1_BASE + 0x00);
59 writel(DB_88F6720_GPP_OUT_VAL_HIGH, MVEBU_GPIO2_BASE + 0x00);
60
61 /* Set GPP Polarity */
62 writel(DB_88F6720_GPP_POL_LOW, MVEBU_GPIO0_BASE + 0x0c);
63 writel(DB_88F6720_GPP_POL_MID, MVEBU_GPIO1_BASE + 0x0c);
64 writel(DB_88F6720_GPP_POL_HIGH, MVEBU_GPIO2_BASE + 0x0c);
65
66 /* Set GPP Out Enable */
67 writel(DB_88F6720_GPP_OUT_ENA_LOW, MVEBU_GPIO0_BASE + 0x04);
68 writel(DB_88F6720_GPP_OUT_ENA_MID, MVEBU_GPIO1_BASE + 0x04);
69 writel(DB_88F6720_GPP_OUT_ENA_HIGH, MVEBU_GPIO2_BASE + 0x04);
70
71 return 0;
72}
73
74int board_init(void)
75{
76 /* adress of boot parameters */
77 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
78
79 return 0;
80}
81
82int checkboard(void)
83{
84 puts("Board: Marvell DB-88F6720\n");
85
86 return 0;
87}
88
89int board_eth_init(bd_t *bis)
90{
91 cpu_eth_init(bis); /* Built in controller(s) come first */
92 return pci_eth_init(bis);
93}