blob: 0f9666008430588e60efd95ccca848985acf7d5f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vikas Manochae66c49f2016-02-11 15:47:20 -08002/*
Patrice Chotard3bc599c2017-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 Manochae66c49f2016-02-11 15:47:20 -08005 */
6
7#include <common.h>
Vikas Manocha2d9c33c2017-04-10 15:02:54 -07008#include <dm.h>
Simon Glass52559322019-11-14 12:57:46 -07009#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Patrice Chotard77594d72019-02-22 15:04:44 +010011#include <miiphy.h>
12#include <phy_interface.h>
Vikas Manocha2d9c33c2017-04-10 15:02:54 -070013#include <ram.h>
Simon Glassb03e0512019-11-14 12:57:24 -070014#include <serial.h>
Vikas Manochab9747692017-05-28 12:55:10 -070015#include <spl.h>
yannick fertre92eac582018-03-02 15:59:28 +010016#include <splash.h>
yannick fertre92eac582018-03-02 15:59:28 +010017#include <video.h>
Simon Glass401d1c42020-10-30 21:38:53 -060018#include <asm/global_data.h>
Vikas Manochae66c49f2016-02-11 15:47:20 -080019#include <asm/io.h>
20#include <asm/armv7m.h>
21#include <asm/arch/stm32.h>
Michael Kurzb20b70f2017-01-22 16:04:27 +010022#include <asm/arch/syscfg.h>
Vikas Manocha2f80a9f2017-04-10 15:03:00 -070023#include <asm/gpio.h>
Simon Glassc05ed002020-05-10 11:40:11 -060024#include <linux/delay.h>
Vikas Manochae66c49f2016-02-11 15:47:20 -080025
26DECLARE_GLOBAL_DATA_PTR;
27
Toshifumi NISHINAGA25c1b132016-07-08 01:02:25 +090028int dram_init(void)
29{
Patrice Chotard16613ed2022-04-27 13:53:57 +020030#ifndef CONFIG_SPL_BUILD
Patrice Chotard8ff21d62018-08-03 13:09:55 +020031 int rv;
Vikas Manochab9747692017-05-28 12:55:10 -070032 struct udevice *dev;
Vikas Manocha2d9c33c2017-04-10 15:02:54 -070033 rv = uclass_get_device(UCLASS_RAM, 0, &dev);
34 if (rv) {
35 debug("DRAM init failed: %d\n", rv);
36 return rv;
37 }
Toshifumi NISHINAGA25c1b132016-07-08 01:02:25 +090038
Vikas Manochab9747692017-05-28 12:55:10 -070039#endif
Patrice Chotard8ff21d62018-08-03 13:09:55 +020040 return fdtdec_setup_mem_size_base();
Vikas Manocha57af3cc2017-04-10 15:03:01 -070041}
42
43int dram_init_banksize(void)
44{
Patrice Chotard8ff21d62018-08-03 13:09:55 +020045 return fdtdec_setup_memory_banksize();
Toshifumi NISHINAGA25c1b132016-07-08 01:02:25 +090046}
47
Vikas Manochab9747692017-05-28 12:55:10 -070048#ifdef CONFIG_SPL_BUILD
Vikas Manocha55a3ef72017-05-28 12:55:13 -070049#ifdef CONFIG_SPL_OS_BOOT
50int spl_start_uboot(void)
51{
52 debug("SPL: booting kernel\n");
53 /* break into full u-boot on 'c' */
54 return serial_tstc() && serial_getc() == 'c';
55}
56#endif
57
Vikas Manochab9747692017-05-28 12:55:10 -070058int spl_dram_init(void)
59{
60 struct udevice *dev;
61 int rv;
62 rv = uclass_get_device(UCLASS_RAM, 0, &dev);
63 if (rv)
64 debug("DRAM init failed: %d\n", rv);
65 return rv;
66}
67void spl_board_init(void)
68{
Vikas Manochab9747692017-05-28 12:55:10 -070069 preloader_console_init();
Giulio Benetti6bd88452021-04-04 20:21:35 +020070 spl_dram_init();
Vikas Manochab9747692017-05-28 12:55:10 -070071 arch_cpu_init(); /* to configure mpu for sdram rw permissions */
72}
73u32 spl_boot_device(void)
74{
Vikas Manocha1a73bd82017-05-28 12:55:14 -070075 return BOOT_DEVICE_XIP;
Vikas Manochab9747692017-05-28 12:55:10 -070076}
Vikas Manochab9747692017-05-28 12:55:10 -070077#endif
Vikas Manochae66c49f2016-02-11 15:47:20 -080078
Vikas Manocha2f80a9f2017-04-10 15:03:00 -070079int board_late_init(void)
80{
81 struct gpio_desc gpio = {};
82 int node;
83
84 node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "st,led1");
85 if (node < 0)
86 return -1;
87
Simon Glass150c5af2017-05-30 21:47:09 -060088 gpio_request_by_name_nodev(offset_to_ofnode(node), "led-gpio", 0, &gpio,
Vikas Manocha2f80a9f2017-04-10 15:03:00 -070089 GPIOD_IS_OUT);
90
91 if (dm_gpio_is_valid(&gpio)) {
92 dm_gpio_set_value(&gpio, 0);
93 mdelay(10);
94 dm_gpio_set_value(&gpio, 1);
95 }
96
97 /* read button 1*/
98 node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "st,button1");
99 if (node < 0)
100 return -1;
101
Simon Glass150c5af2017-05-30 21:47:09 -0600102 gpio_request_by_name_nodev(offset_to_ofnode(node), "button-gpio", 0,
103 &gpio, GPIOD_IS_IN);
Vikas Manocha2f80a9f2017-04-10 15:03:00 -0700104
105 if (dm_gpio_is_valid(&gpio)) {
106 if (dm_gpio_get_value(&gpio))
107 puts("usr button is at HIGH LEVEL\n");
108 else
109 puts("usr button is at LOW LEVEL\n");
110 }
111
112 return 0;
113}
114
Vikas Manochae66c49f2016-02-11 15:47:20 -0800115int board_init(void)
116{
Patrice Chotard20fe38e2018-01-18 14:10:05 +0100117#ifdef CONFIG_ETH_DESIGNWARE
Marek Behún123ca112022-04-07 00:33:01 +0200118 ofnode node;
Patrice Chotard77594d72019-02-22 15:04:44 +0100119
Marek Behún123ca112022-04-07 00:33:01 +0200120 node = ofnode_by_compatible(ofnode_null(), "st,stm32-dwmac");
121 if (!ofnode_valid(node))
Patrice Chotard77594d72019-02-22 15:04:44 +0100122 return -1;
123
Marek Behún123ca112022-04-07 00:33:01 +0200124 switch (ofnode_read_phy_mode(node)) {
Patrice Chotard77594d72019-02-22 15:04:44 +0100125 case PHY_INTERFACE_MODE_RMII:
126 STM32_SYSCFG->pmc |= SYSCFG_PMC_MII_RMII_SEL;
127 break;
128 case PHY_INTERFACE_MODE_MII:
129 STM32_SYSCFG->pmc &= ~SYSCFG_PMC_MII_RMII_SEL;
130 break;
131 default:
Marek Behún123ca112022-04-07 00:33:01 +0200132 printf("Unsupported PHY interface!\n");
Patrice Chotard77594d72019-02-22 15:04:44 +0100133 }
Patrice Chotard20fe38e2018-01-18 14:10:05 +0100134#endif
135
Vikas Manochae66c49f2016-02-11 15:47:20 -0800136 return 0;
137}