blob: 65e6d48db0a6adc694fdcfc17cfcb2492621209c [file] [log] [blame]
Chris Packhamb55b2c92019-01-10 21:01:00 +13001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2017 Allied Telesis Labs
4 */
5
Tom Rinidec7ea02024-05-20 13:35:03 -06006#include <config.h>
Chris Packhamb55b2c92019-01-10 21:01:00 +13007#include <command.h>
8#include <dm.h>
Simon Glass5e6201b2019-08-01 09:46:51 -06009#include <env.h>
Chris Packhamb55b2c92019-01-10 21:01:00 +130010#include <i2c.h>
Simon Glass97589732020-05-10 11:40:02 -060011#include <init.h>
Chris Packham17ca1432019-02-18 10:30:54 +130012#include <wdt.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <asm/global_data.h>
Chris Packhamb55b2c92019-01-10 21:01:00 +130014#include <asm/gpio.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060015#include <linux/bitops.h>
Chris Packhamb55b2c92019-01-10 21:01:00 +130016#include <linux/mbus.h>
17#include <linux/io.h>
18#include <asm/arch/cpu.h>
19#include <asm/arch/soc.h>
20#include "../common/gpio_hog.h"
21
22#include "../drivers/ddr/marvell/a38x/ddr3_init.h"
23#include <../serdes/a38x/high_speed_env_spec.h>
24
25DECLARE_GLOBAL_DATA_PTR;
26
27#define MVEBU_DEV_BUS_BASE (MVEBU_REGISTER(0x10400))
28
Tom Rini364d0022023-01-10 11:19:45 -050029#define CFG_NVS_LOCATION 0xf4800000
30#define CFG_NVS_SIZE (512 << 10)
Chris Packhamb55b2c92019-01-10 21:01:00 +130031
32static struct serdes_map board_serdes_map[] = {
33 {PEX0, SERDES_SPEED_5_GBPS, PEX_ROOT_COMPLEX_X1, 0, 0},
34 {DEFAULT_SERDES, SERDES_SPEED_5_GBPS, SERDES_DEFAULT_MODE, 0, 0},
35 {PEX1, SERDES_SPEED_5_GBPS, PEX_ROOT_COMPLEX_X1, 0, 0},
36 {DEFAULT_SERDES, SERDES_SPEED_5_GBPS, SERDES_DEFAULT_MODE, 0, 0},
37 {DEFAULT_SERDES, SERDES_SPEED_5_GBPS, SERDES_DEFAULT_MODE, 0, 0},
38 {DEFAULT_SERDES, SERDES_SPEED_5_GBPS, SERDES_DEFAULT_MODE, 0, 0}
39};
40
41int hws_board_topology_load(struct serdes_map **serdes_map_array, u8 *count)
42{
43 *serdes_map_array = board_serdes_map;
44 *count = ARRAY_SIZE(board_serdes_map);
45 return 0;
46}
47
48/*
49 * Define the DDR layout / topology here in the board file. This will
50 * be used by the DDR3 init code in the SPL U-Boot version to configure
51 * the DDR3 controller.
52 */
53static struct mv_ddr_topology_map board_topology_map = {
54 DEBUG_LEVEL_ERROR,
55 0x1, /* active interfaces */
56 /* cs_mask, mirror, dqs_swap, ck_swap X PUPs */
57 { { { {0x1, 0, 0, 0},
58 {0x1, 0, 0, 0},
59 {0x1, 0, 0, 0},
60 {0x1, 0, 0, 0},
61 {0x1, 0, 0, 0} },
62 SPEED_BIN_DDR_1866M, /* speed_bin */
63 MV_DDR_DEV_WIDTH_16BIT, /* sdram device width */
64 MV_DDR_DIE_CAP_4GBIT, /* die capacity */
Chris Packham1e50be32019-02-11 14:19:56 +130065 MV_DDR_FREQ_SAR, /* frequency */
Chris Packhamb55b2c92019-01-10 21:01:00 +130066 0, 0, /* cas_l cas_wl */
67 MV_DDR_TEMP_LOW, /* temperature */
68 MV_DDR_TIM_2T} }, /* timing */
69 BUS_MASK_32BIT_ECC, /* subphys mask */
70 MV_DDR_CFG_DEFAULT, /* ddr configuration data source */
Moti Buskila498475e2021-02-19 17:11:19 +010071 NOT_COMBINED, /* ddr twin-die combined */
Chris Packhamb55b2c92019-01-10 21:01:00 +130072 { {0} }, /* raw spd data */
Chris Packhame422adc2020-01-30 12:50:44 +130073 {0}, /* timing parameters */
74 { {0} }, /* electrical configuration */
75 {0}, /* electrical parameters */
Chris Packhame8462fb2022-03-01 13:53:23 +130076 0, /* ODT configuration */
Chris Packhame422adc2020-01-30 12:50:44 +130077 0, /* Clock enable mask */
78 160 /* Clock delay */
Chris Packhamb55b2c92019-01-10 21:01:00 +130079};
80
81struct mv_ddr_topology_map *mv_ddr_topology_map_get(void)
82{
83 /* Return the board topology as defined in the board code */
84 return &board_topology_map;
85}
86
87int board_early_init_f(void)
88{
89 /* Configure MPP */
90 writel(0x00001111, MVEBU_MPP_BASE + 0x00);
91 writel(0x00000000, MVEBU_MPP_BASE + 0x04);
92 writel(0x55000000, MVEBU_MPP_BASE + 0x08);
93 writel(0x55550550, MVEBU_MPP_BASE + 0x0c);
94 writel(0x55555555, MVEBU_MPP_BASE + 0x10);
95 writel(0x00100565, MVEBU_MPP_BASE + 0x14);
Chris Packham45920972022-05-02 15:16:25 +120096 writel(0x00000000, MVEBU_MPP_BASE + 0x18);
Chris Packhamb55b2c92019-01-10 21:01:00 +130097 writel(0x00004444, MVEBU_MPP_BASE + 0x1c);
98
99 return 0;
100}
101
Chris Packham17ca1432019-02-18 10:30:54 +1300102void spl_board_init(void)
103{
Chris Packham17ca1432019-02-18 10:30:54 +1300104}
105
Chris Packhamb55b2c92019-01-10 21:01:00 +1300106int board_init(void)
107{
108 /* address of boot parameters */
109 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
110
111 /* window for NVS */
Tom Rini364d0022023-01-10 11:19:45 -0500112 mbus_dt_setup_win(CFG_NVS_LOCATION, CFG_NVS_SIZE,
Chris Packhamb55b2c92019-01-10 21:01:00 +1300113 CPU_TARGET_DEVICEBUS_BOOTROM_SPI, CPU_ATTR_DEV_CS1);
114
115 /* DEV_READYn is not needed for NVS, ignore it when accessing CS1 */
116 writel(0x00004001, MVEBU_DEV_BUS_BASE + 0xc8);
117
Chris Packham17ca1432019-02-18 10:30:54 +1300118 spl_board_init();
119
Chris Packhamb55b2c92019-01-10 21:01:00 +1300120 return 0;
121}
Chris Packham17ca1432019-02-18 10:30:54 +1300122
123void arch_preboot_os(void)
124{
Rasmus Villemoes2e713662021-08-19 11:57:02 +0200125 if (CONFIG_IS_ENABLED(WDT))
126 wdt_stop_all();
Chris Packham17ca1432019-02-18 10:30:54 +1300127}
128
Chris Packhamb55b2c92019-01-10 21:01:00 +1300129static int led_7seg_init(unsigned int segments)
130{
131 int node;
132 int ret;
133 int i;
134 struct gpio_desc desc[8];
135
136 node = fdt_node_offset_by_compatible(gd->fdt_blob, 0,
137 "atl,of-led-7seg");
138 if (node < 0)
139 return -ENODEV;
140
141 ret = gpio_request_list_by_name_nodev(offset_to_ofnode(node),
142 "segment-gpios", desc,
143 ARRAY_SIZE(desc), GPIOD_IS_OUT);
144 if (ret < 0)
145 return ret;
146
147 for (i = 0; i < ARRAY_SIZE(desc); i++) {
148 ret = dm_gpio_set_value(&desc[i], !(segments & BIT(i)));
149 if (ret)
150 return ret;
151 }
152
153 return 0;
154}
155
156#ifdef CONFIG_MISC_INIT_R
157int misc_init_r(void)
158{
159 static struct gpio_desc usb_en = {}, nand_wp = {}, phy_reset[2] = {},
160 led_en = {};
161
162 gpio_hog(&usb_en, "atl,usb-enable", "enable-gpio", 1);
163 gpio_hog(&nand_wp, "atl,nand-protect", "protect-gpio", 1);
164 gpio_hog_list(phy_reset, ARRAY_SIZE(phy_reset), "atl,phy-reset", "reset-gpio", 0);
165 gpio_hog(&led_en, "atl,led-enable", "enable-gpio", 1);
166
167#ifdef MTDPARTS_MTDOOPS
168 env_set("mtdoops", MTDPARTS_MTDOOPS);
169#endif
170
171 led_7seg_init(0xff);
172
173 return 0;
174}
175#endif
176
177#ifdef CONFIG_DISPLAY_BOARDINFO
178int checkboard(void)
179{
180 puts("Board: " CONFIG_SYS_BOARD "\n");
181
182 return 0;
183}
184#endif