Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 2 | /* |
Patrice Chotard | 3bc599c | 2017-10-23 09:53:58 +0200 | [diff] [blame] | 3 | * Copyright (C) 2016, STMicroelectronics - All Rights Reserved |
| 4 | * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics. |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Vikas Manocha | 2d9c33c | 2017-04-10 15:02:54 -0700 | [diff] [blame] | 8 | #include <dm.h> |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 9 | #include <init.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 10 | #include <log.h> |
Patrice Chotard | 77594d7 | 2019-02-22 15:04:44 +0100 | [diff] [blame] | 11 | #include <miiphy.h> |
| 12 | #include <phy_interface.h> |
Vikas Manocha | 2d9c33c | 2017-04-10 15:02:54 -0700 | [diff] [blame] | 13 | #include <ram.h> |
Simon Glass | b03e051 | 2019-11-14 12:57:24 -0700 | [diff] [blame] | 14 | #include <serial.h> |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 15 | #include <spl.h> |
yannick fertre | 92eac58 | 2018-03-02 15:59:28 +0100 | [diff] [blame] | 16 | #include <splash.h> |
| 17 | #include <st_logo_data.h> |
| 18 | #include <video.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 19 | #include <asm/global_data.h> |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 20 | #include <asm/io.h> |
| 21 | #include <asm/armv7m.h> |
| 22 | #include <asm/arch/stm32.h> |
Michael Kurz | b20b70f | 2017-01-22 16:04:27 +0100 | [diff] [blame] | 23 | #include <asm/arch/syscfg.h> |
Vikas Manocha | 2f80a9f | 2017-04-10 15:03:00 -0700 | [diff] [blame] | 24 | #include <asm/gpio.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 25 | #include <linux/delay.h> |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 26 | |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Toshifumi NISHINAGA | 25c1b13 | 2016-07-08 01:02:25 +0900 | [diff] [blame] | 29 | int dram_init(void) |
| 30 | { |
Patrice Chotard | 16613ed | 2022-04-27 13:53:57 +0200 | [diff] [blame] | 31 | #ifndef CONFIG_SPL_BUILD |
Patrice Chotard | 8ff21d6 | 2018-08-03 13:09:55 +0200 | [diff] [blame] | 32 | int rv; |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 33 | struct udevice *dev; |
Vikas Manocha | 2d9c33c | 2017-04-10 15:02:54 -0700 | [diff] [blame] | 34 | rv = uclass_get_device(UCLASS_RAM, 0, &dev); |
| 35 | if (rv) { |
| 36 | debug("DRAM init failed: %d\n", rv); |
| 37 | return rv; |
| 38 | } |
Toshifumi NISHINAGA | 25c1b13 | 2016-07-08 01:02:25 +0900 | [diff] [blame] | 39 | |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 40 | #endif |
Patrice Chotard | 8ff21d6 | 2018-08-03 13:09:55 +0200 | [diff] [blame] | 41 | return fdtdec_setup_mem_size_base(); |
Vikas Manocha | 57af3cc | 2017-04-10 15:03:01 -0700 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | int dram_init_banksize(void) |
| 45 | { |
Patrice Chotard | 8ff21d6 | 2018-08-03 13:09:55 +0200 | [diff] [blame] | 46 | return fdtdec_setup_memory_banksize(); |
Toshifumi NISHINAGA | 25c1b13 | 2016-07-08 01:02:25 +0900 | [diff] [blame] | 47 | } |
| 48 | |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 49 | #ifdef CONFIG_SPL_BUILD |
Vikas Manocha | 55a3ef7 | 2017-05-28 12:55:13 -0700 | [diff] [blame] | 50 | #ifdef CONFIG_SPL_OS_BOOT |
| 51 | int spl_start_uboot(void) |
| 52 | { |
| 53 | debug("SPL: booting kernel\n"); |
| 54 | /* break into full u-boot on 'c' */ |
| 55 | return serial_tstc() && serial_getc() == 'c'; |
| 56 | } |
| 57 | #endif |
| 58 | |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 59 | int spl_dram_init(void) |
| 60 | { |
| 61 | struct udevice *dev; |
| 62 | int rv; |
| 63 | rv = uclass_get_device(UCLASS_RAM, 0, &dev); |
| 64 | if (rv) |
| 65 | debug("DRAM init failed: %d\n", rv); |
| 66 | return rv; |
| 67 | } |
| 68 | void spl_board_init(void) |
| 69 | { |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 70 | preloader_console_init(); |
Giulio Benetti | 6bd8845 | 2021-04-04 20:21:35 +0200 | [diff] [blame] | 71 | spl_dram_init(); |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 72 | arch_cpu_init(); /* to configure mpu for sdram rw permissions */ |
| 73 | } |
| 74 | u32 spl_boot_device(void) |
| 75 | { |
Vikas Manocha | 1a73bd8 | 2017-05-28 12:55:14 -0700 | [diff] [blame] | 76 | return BOOT_DEVICE_XIP; |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 77 | } |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 78 | #endif |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 79 | |
Vikas Manocha | 2f80a9f | 2017-04-10 15:03:00 -0700 | [diff] [blame] | 80 | int board_late_init(void) |
| 81 | { |
| 82 | struct gpio_desc gpio = {}; |
| 83 | int node; |
| 84 | |
| 85 | node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "st,led1"); |
| 86 | if (node < 0) |
| 87 | return -1; |
| 88 | |
Simon Glass | 150c5af | 2017-05-30 21:47:09 -0600 | [diff] [blame] | 89 | gpio_request_by_name_nodev(offset_to_ofnode(node), "led-gpio", 0, &gpio, |
Vikas Manocha | 2f80a9f | 2017-04-10 15:03:00 -0700 | [diff] [blame] | 90 | GPIOD_IS_OUT); |
| 91 | |
| 92 | if (dm_gpio_is_valid(&gpio)) { |
| 93 | dm_gpio_set_value(&gpio, 0); |
| 94 | mdelay(10); |
| 95 | dm_gpio_set_value(&gpio, 1); |
| 96 | } |
| 97 | |
| 98 | /* read button 1*/ |
| 99 | node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "st,button1"); |
| 100 | if (node < 0) |
| 101 | return -1; |
| 102 | |
Simon Glass | 150c5af | 2017-05-30 21:47:09 -0600 | [diff] [blame] | 103 | gpio_request_by_name_nodev(offset_to_ofnode(node), "button-gpio", 0, |
| 104 | &gpio, GPIOD_IS_IN); |
Vikas Manocha | 2f80a9f | 2017-04-10 15:03:00 -0700 | [diff] [blame] | 105 | |
| 106 | if (dm_gpio_is_valid(&gpio)) { |
| 107 | if (dm_gpio_get_value(&gpio)) |
| 108 | puts("usr button is at HIGH LEVEL\n"); |
| 109 | else |
| 110 | puts("usr button is at LOW LEVEL\n"); |
| 111 | } |
| 112 | |
| 113 | return 0; |
| 114 | } |
| 115 | |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 116 | int board_init(void) |
| 117 | { |
Patrice Chotard | 20fe38e | 2018-01-18 14:10:05 +0100 | [diff] [blame] | 118 | #ifdef CONFIG_ETH_DESIGNWARE |
Marek Behún | 123ca11 | 2022-04-07 00:33:01 +0200 | [diff] [blame] | 119 | ofnode node; |
Patrice Chotard | 77594d7 | 2019-02-22 15:04:44 +0100 | [diff] [blame] | 120 | |
Marek Behún | 123ca11 | 2022-04-07 00:33:01 +0200 | [diff] [blame] | 121 | node = ofnode_by_compatible(ofnode_null(), "st,stm32-dwmac"); |
| 122 | if (!ofnode_valid(node)) |
Patrice Chotard | 77594d7 | 2019-02-22 15:04:44 +0100 | [diff] [blame] | 123 | return -1; |
| 124 | |
Marek Behún | 123ca11 | 2022-04-07 00:33:01 +0200 | [diff] [blame] | 125 | switch (ofnode_read_phy_mode(node)) { |
Patrice Chotard | 77594d7 | 2019-02-22 15:04:44 +0100 | [diff] [blame] | 126 | case PHY_INTERFACE_MODE_RMII: |
| 127 | STM32_SYSCFG->pmc |= SYSCFG_PMC_MII_RMII_SEL; |
| 128 | break; |
| 129 | case PHY_INTERFACE_MODE_MII: |
| 130 | STM32_SYSCFG->pmc &= ~SYSCFG_PMC_MII_RMII_SEL; |
| 131 | break; |
| 132 | default: |
Marek Behún | 123ca11 | 2022-04-07 00:33:01 +0200 | [diff] [blame] | 133 | printf("Unsupported PHY interface!\n"); |
Patrice Chotard | 77594d7 | 2019-02-22 15:04:44 +0100 | [diff] [blame] | 134 | } |
Patrice Chotard | 20fe38e | 2018-01-18 14:10:05 +0100 | [diff] [blame] | 135 | #endif |
| 136 | |
yannick fertre | 92eac58 | 2018-03-02 15:59:28 +0100 | [diff] [blame] | 137 | #if defined(CONFIG_CMD_BMP) |
| 138 | bmp_display((ulong)stmicroelectronics_uboot_logo_8bit_rle, |
| 139 | BMP_ALIGN_CENTER, BMP_ALIGN_CENTER); |
| 140 | #endif /* CONFIG_CMD_BMP */ |
| 141 | |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 142 | return 0; |
| 143 | } |