blob: b2d0ad8c3f22bc9b7d73aad36b7cebfb6eb58ce1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +00002/*
Tony Dinha69a7862022-01-25 19:33:44 -08003 * Copyright (C) 2021-2022 Tony Dinh <mibodhi@gmail.com>
4 * Copyright (C) 2013-2021 Suriyan Ramasami <suriyan.r@gmail.com>
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +00005 *
6 * Based on dockstar.c originally written by
7 * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu>
8 *
9 * Based on sheevaplug.c originally written by
10 * Prafulla Wadaskar <prafulla@marvell.com>
11 * (C) Copyright 2009
12 * Marvell Semiconductor <www.marvell.com>
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +000013 */
14
Simon Glass1ea97892020-05-10 11:40:00 -060015#include <bootstage.h>
Simon Glass97589732020-05-10 11:40:02 -060016#include <init.h>
Tony Dinha69a7862022-01-25 19:33:44 -080017#include <netdev.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.h>
Simon Glass0ffb9d62017-05-31 19:47:48 -060019#include <asm/mach-types.h>
Stefan Roesec2437842014-10-22 12:13:06 +020020#include <asm/arch/soc.h>
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +000021#include <asm/arch/mpp.h>
22#include <asm/arch/cpu.h>
23#include <asm/io.h>
Tony Dinha69a7862022-01-25 19:33:44 -080024#include <linux/bitops.h>
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +000025
26DECLARE_GLOBAL_DATA_PTR;
27
28int board_early_init_f(void)
29{
30 /* Multi-Purpose Pins Functionality configuration */
31 static const u32 kwmpp_config[] = {
32 MPP0_NF_IO2,
33 MPP1_NF_IO3,
34 MPP2_NF_IO4,
35 MPP3_NF_IO5,
36 MPP4_NF_IO6,
37 MPP5_NF_IO7,
38 MPP6_SYSRST_OUTn,
39 MPP7_GPO,
40 MPP8_UART0_RTS,
41 MPP9_UART0_CTS,
42 MPP10_UART0_TXD,
43 MPP11_UART0_RXD,
44 MPP12_SD_CLK,
45 MPP13_SD_CMD,
46 MPP14_SD_D0,
47 MPP15_SD_D1,
48 MPP16_SD_D2,
49 MPP17_SD_D3,
50 MPP18_NF_IO0,
51 MPP19_NF_IO1,
52 MPP20_GPIO,
53 MPP21_GPIO,
54 MPP22_GPIO,
55 MPP23_GPIO,
56 MPP24_GPIO,
57 MPP25_GPIO,
58 MPP26_GPIO,
59 MPP27_GPIO,
60 MPP28_GPIO,
61 MPP29_TSMP9,
62 MPP30_GPIO,
63 MPP31_GPIO,
64 MPP32_GPIO,
65 MPP33_GPIO,
66 MPP34_GPIO,
67 MPP35_GPIO,
68 MPP36_GPIO,
69 MPP37_GPIO,
70 MPP38_GPIO,
71 MPP39_GPIO,
72 MPP40_GPIO,
73 MPP41_GPIO,
74 MPP42_GPIO,
75 MPP43_GPIO,
76 MPP44_GPIO,
77 MPP45_GPIO,
78 MPP46_GPIO,
79 MPP47_GPIO,
80 MPP48_GPIO,
81 MPP49_GPIO,
82 0
83 };
84
85 /*
86 * default gpio configuration
87 * There are maximum 64 gpios controlled through 2 sets of registers
88 * the below configuration configures mainly initial LED status
89 */
Stefan Roesec50ab392014-10-22 12:13:11 +020090 mvebu_config_gpio(GOFLEXHOME_OE_VAL_LOW,
91 GOFLEXHOME_OE_VAL_HIGH,
92 GOFLEXHOME_OE_LOW, GOFLEXHOME_OE_HIGH);
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +000093 kirkwood_mpp_conf(kwmpp_config, NULL);
94 return 0;
95}
96
Tony Dinha69a7862022-01-25 19:33:44 -080097int board_eth_init(struct bd_info *bis)
98{
99 return cpu_eth_init(bis);
100}
101
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +0000102int board_init(void)
103{
Tom Rini48157342017-01-25 20:42:35 -0500104 /*
105 * arch number of board
106 */
107 gd->bd->bi_arch_number = MACH_TYPE_GOFLEXHOME;
108
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +0000109 /* address of boot parameters */
Stefan Roese0b741752014-10-22 12:13:13 +0200110 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +0000111
112 return 0;
113}
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +0000114
Tom Rinia9765d02021-05-03 16:48:58 -0400115#if CONFIG_IS_ENABLED(BOOTSTAGE)
Tony Dinha69a7862022-01-25 19:33:44 -0800116#define GREEN_LED BIT(14)
117#define ORANGE_LED BIT(15)
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +0000118#define BOTH_LEDS (GREEN_LED | ORANGE_LED)
119#define NEITHER_LED 0
120
121static void set_leds(u32 leds, u32 blinking)
122{
123 struct kwgpio_registers *r;
124 u32 oe;
125 u32 bl;
126
Stefan Roesec50ab392014-10-22 12:13:11 +0200127 r = (struct kwgpio_registers *)MVEBU_GPIO1_BASE;
Suriyan Ramasamif0ec8af2013-04-11 07:17:25 +0000128 oe = readl(&r->oe) | BOTH_LEDS;
129 writel(oe & ~leds, &r->oe); /* active low */
130 bl = readl(&r->blink_en) & ~BOTH_LEDS;
131 writel(bl | blinking, &r->blink_en);
132}
133
134void show_boot_progress(int val)
135{
136 switch (val) {
137 case BOOTSTAGE_ID_RUN_OS: /* booting Linux */
138 set_leds(BOTH_LEDS, NEITHER_LED);
139 break;
140 case BOOTSTAGE_ID_NET_ETH_START: /* Ethernet initialization */
141 set_leds(GREEN_LED, GREEN_LED);
142 break;
143 default:
144 if (val < 0) /* error */
145 set_leds(ORANGE_LED, ORANGE_LED);
146 break;
147 }
148}
Tom Rinia9765d02021-05-03 16:48:58 -0400149#endif