blob: 40450ca914be43106eb78d3415f190a5af59a983 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vikas Manocha1b51c932016-02-11 15:47:20 -08002/*
Patrice Chotard789ee0e2017-10-23 09:53:58 +02003 * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
4 * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
Vikas Manocha1b51c932016-02-11 15:47:20 -08005 */
6
7#include <common.h>
Vikas Manocha096be332017-04-10 15:02:54 -07008#include <dm.h>
Simon Glassa7b51302019-11-14 12:57:46 -07009#include <init.h>
yannick fertre030af822018-03-02 15:59:28 +010010#include <lcd.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Patrice Chotardd8c77552019-02-22 15:04:44 +010012#include <miiphy.h>
13#include <phy_interface.h>
Vikas Manocha096be332017-04-10 15:02:54 -070014#include <ram.h>
Simon Glass36736182019-11-14 12:57:24 -070015#include <serial.h>
Vikas Manocha50218ae2017-05-28 12:55:10 -070016#include <spl.h>
yannick fertre030af822018-03-02 15:59:28 +010017#include <splash.h>
18#include <st_logo_data.h>
19#include <video.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060020#include <asm/global_data.h>
Vikas Manocha1b51c932016-02-11 15:47:20 -080021#include <asm/io.h>
22#include <asm/armv7m.h>
23#include <asm/arch/stm32.h>
24#include <asm/arch/gpio.h>
Michael Kurz812962b2017-01-22 16:04:27 +010025#include <asm/arch/syscfg.h>
Vikas Manocha9c7573e2017-04-10 15:03:00 -070026#include <asm/gpio.h>
Simon Glassdbd79542020-05-10 11:40:11 -060027#include <linux/delay.h>
Vikas Manocha1b51c932016-02-11 15:47:20 -080028
29DECLARE_GLOBAL_DATA_PTR;
30
Toshifumi NISHINAGA18bd7632016-07-08 01:02:25 +090031int dram_init(void)
32{
Vikas Manocha50218ae2017-05-28 12:55:10 -070033#ifndef CONFIG_SUPPORT_SPL
Patrice Chotardb75feec2018-08-03 13:09:55 +020034 int rv;
Vikas Manocha50218ae2017-05-28 12:55:10 -070035 struct udevice *dev;
Vikas Manocha096be332017-04-10 15:02:54 -070036 rv = uclass_get_device(UCLASS_RAM, 0, &dev);
37 if (rv) {
38 debug("DRAM init failed: %d\n", rv);
39 return rv;
40 }
Vikas Manochab6fd9eb2017-04-10 15:03:01 -070041
Vikas Manocha50218ae2017-05-28 12:55:10 -070042#endif
Patrice Chotardb75feec2018-08-03 13:09:55 +020043 return fdtdec_setup_mem_size_base();
Vikas Manochab6fd9eb2017-04-10 15:03:01 -070044}
45
46int dram_init_banksize(void)
47{
Patrice Chotardb75feec2018-08-03 13:09:55 +020048 return fdtdec_setup_memory_banksize();
Toshifumi NISHINAGA18bd7632016-07-08 01:02:25 +090049}
50
Vikas Manocha1a8fde72017-04-10 15:02:59 -070051int board_early_init_f(void)
Michael Kurz337ff2a2017-01-22 16:04:30 +010052{
Michael Kurz337ff2a2017-01-22 16:04:30 +010053 return 0;
54}
Michael Kurz337ff2a2017-01-22 16:04:30 +010055
Vikas Manocha50218ae2017-05-28 12:55:10 -070056#ifdef CONFIG_SPL_BUILD
Vikas Manochab785bb42017-05-28 12:55:13 -070057#ifdef CONFIG_SPL_OS_BOOT
58int spl_start_uboot(void)
59{
60 debug("SPL: booting kernel\n");
61 /* break into full u-boot on 'c' */
62 return serial_tstc() && serial_getc() == 'c';
63}
64#endif
65
Vikas Manocha50218ae2017-05-28 12:55:10 -070066int spl_dram_init(void)
67{
68 struct udevice *dev;
69 int rv;
70 rv = uclass_get_device(UCLASS_RAM, 0, &dev);
71 if (rv)
72 debug("DRAM init failed: %d\n", rv);
73 return rv;
74}
75void spl_board_init(void)
76{
77 spl_dram_init();
78 preloader_console_init();
79 arch_cpu_init(); /* to configure mpu for sdram rw permissions */
80}
81u32 spl_boot_device(void)
82{
Vikas Manochaf0e32c02017-05-28 12:55:14 -070083 return BOOT_DEVICE_XIP;
Vikas Manocha50218ae2017-05-28 12:55:10 -070084}
85
86#endif
Vikas Manocha1b51c932016-02-11 15:47:20 -080087u32 get_board_rev(void)
88{
Vikas Manocha1b51c932016-02-11 15:47:20 -080089 return 0;
90}
91
Vikas Manocha9c7573e2017-04-10 15:03:00 -070092int board_late_init(void)
93{
94 struct gpio_desc gpio = {};
95 int node;
96
97 node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "st,led1");
98 if (node < 0)
99 return -1;
100
Simon Glass1d9af1f2017-05-30 21:47:09 -0600101 gpio_request_by_name_nodev(offset_to_ofnode(node), "led-gpio", 0, &gpio,
Vikas Manocha9c7573e2017-04-10 15:03:00 -0700102 GPIOD_IS_OUT);
103
104 if (dm_gpio_is_valid(&gpio)) {
105 dm_gpio_set_value(&gpio, 0);
106 mdelay(10);
107 dm_gpio_set_value(&gpio, 1);
108 }
109
110 /* read button 1*/
111 node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "st,button1");
112 if (node < 0)
113 return -1;
114
Simon Glass1d9af1f2017-05-30 21:47:09 -0600115 gpio_request_by_name_nodev(offset_to_ofnode(node), "button-gpio", 0,
116 &gpio, GPIOD_IS_IN);
Vikas Manocha9c7573e2017-04-10 15:03:00 -0700117
118 if (dm_gpio_is_valid(&gpio)) {
119 if (dm_gpio_get_value(&gpio))
120 puts("usr button is at HIGH LEVEL\n");
121 else
122 puts("usr button is at LOW LEVEL\n");
123 }
124
125 return 0;
126}
127
Vikas Manocha1b51c932016-02-11 15:47:20 -0800128int board_init(void)
129{
Vikas Manochab6fd9eb2017-04-10 15:03:01 -0700130 gd->bd->bi_boot_params = gd->bd->bi_dram[0].start + 0x100;
Patrice Chotarde2d564e2018-01-18 14:10:05 +0100131
132#ifdef CONFIG_ETH_DESIGNWARE
Patrice Chotardd8c77552019-02-22 15:04:44 +0100133 const char *phy_mode;
134 int node;
135
136 node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "st,stm32-dwmac");
137 if (node < 0)
138 return -1;
139
140 phy_mode = fdt_getprop(gd->fdt_blob, node, "phy-mode", NULL);
141
142 switch (phy_get_interface_by_name(phy_mode)) {
143 case PHY_INTERFACE_MODE_RMII:
144 STM32_SYSCFG->pmc |= SYSCFG_PMC_MII_RMII_SEL;
145 break;
146 case PHY_INTERFACE_MODE_MII:
147 STM32_SYSCFG->pmc &= ~SYSCFG_PMC_MII_RMII_SEL;
148 break;
149 default:
150 printf("PHY interface %s not supported !\n", phy_mode);
151 }
Patrice Chotarde2d564e2018-01-18 14:10:05 +0100152#endif
153
yannick fertre030af822018-03-02 15:59:28 +0100154#if defined(CONFIG_CMD_BMP)
155 bmp_display((ulong)stmicroelectronics_uboot_logo_8bit_rle,
156 BMP_ALIGN_CENTER, BMP_ALIGN_CENTER);
157#endif /* CONFIG_CMD_BMP */
158
Vikas Manocha1b51c932016-02-11 15:47:20 -0800159 return 0;
160}