blob: e8aae4cb81637594b83b9e5674cdae76b9f2b18f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Luka Perkove5841e12012-04-17 09:22:17 +00002/*
3 * Copyright (C) 2011-2012
4 * Gerald Kerma <dreagle@doukki.net>
Luka Perkov3fdf7592012-12-03 03:24:15 +00005 * Luka Perkov <luka@openwrt.org>
Luka Perkove5841e12012-04-17 09:22:17 +00006 * Simon Baatz <gmbnomis@gmail.com>
Luka Perkove5841e12012-04-17 09:22:17 +00007 */
8
9#include <common.h>
10#include <miiphy.h>
Simon Baatza0452342012-07-20 09:59:14 +000011#include <asm/io.h>
Luka Perkove5841e12012-04-17 09:22:17 +000012#include <asm/arch/cpu.h>
Stefan Roese3dc23f72014-10-22 12:13:06 +020013#include <asm/arch/soc.h>
Luka Perkove5841e12012-04-17 09:22:17 +000014#include <asm/arch/mpp.h>
15#include "ib62x0.h"
16
17DECLARE_GLOBAL_DATA_PTR;
18
19int board_early_init_f(void)
20{
21 /*
22 * default gpio configuration
23 * There are maximum 64 gpios controlled through 2 sets of registers
24 * the below configuration configures mainly initial LED status
25 */
Stefan Roesed5c51322014-10-22 12:13:11 +020026 mvebu_config_gpio(IB62x0_OE_VAL_LOW,
27 IB62x0_OE_VAL_HIGH,
28 IB62x0_OE_LOW, IB62x0_OE_HIGH);
Luka Perkove5841e12012-04-17 09:22:17 +000029
Simon Baatza0452342012-07-20 09:59:14 +000030 /* Set SATA activity LEDs to default off */
31 writel(MVSATAHC_LED_POLARITY_CTRL, MVSATAHC_LED_CONF_REG);
Luka Perkove5841e12012-04-17 09:22:17 +000032 /* Multi-Purpose Pins Functionality configuration */
Albert ARIBAUD9d86f0c2012-11-26 11:27:36 +000033 static const u32 kwmpp_config[] = {
Luka Perkove5841e12012-04-17 09:22:17 +000034 MPP0_NF_IO2,
35 MPP1_NF_IO3,
36 MPP2_NF_IO4,
37 MPP3_NF_IO5,
38 MPP4_NF_IO6,
39 MPP5_NF_IO7,
40 MPP6_SYSRST_OUTn,
41 MPP8_TW_SDA,
42 MPP9_TW_SCK,
43 MPP10_UART0_TXD,
44 MPP11_UART0_RXD,
45 MPP18_NF_IO0,
46 MPP19_NF_IO1,
47 MPP20_SATA1_ACTn,
48 MPP21_SATA0_ACTn,
49 MPP22_GPIO, /* Power LED red */
50 MPP24_GPIO, /* Power off device */
51 MPP25_GPIO, /* Power LED green */
52 MPP27_GPIO, /* USB transfer LED */
53 MPP28_GPIO, /* Reset button */
54 MPP29_GPIO, /* USB Copy button */
55 0
56 };
Valentin Longchamp84683632012-06-01 01:31:00 +000057 kirkwood_mpp_conf(kwmpp_config, NULL);
Luka Perkove5841e12012-04-17 09:22:17 +000058 return 0;
59}
60
61int board_init(void)
62{
63 /* adress of boot parameters */
Stefan Roese96c5f082014-10-22 12:13:13 +020064 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
Luka Perkove5841e12012-04-17 09:22:17 +000065
66 return 0;
67}