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> |
yannick fertre | 92eac58 | 2018-03-02 15:59:28 +0100 | [diff] [blame] | 9 | #include <lcd.h> |
Patrice Chotard | 77594d7 | 2019-02-22 15:04:44 +0100 | [diff] [blame] | 10 | #include <miiphy.h> |
| 11 | #include <phy_interface.h> |
Vikas Manocha | 2d9c33c | 2017-04-10 15:02:54 -0700 | [diff] [blame] | 12 | #include <ram.h> |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 13 | #include <spl.h> |
yannick fertre | 92eac58 | 2018-03-02 15:59:28 +0100 | [diff] [blame] | 14 | #include <splash.h> |
| 15 | #include <st_logo_data.h> |
| 16 | #include <video.h> |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 17 | #include <asm/io.h> |
| 18 | #include <asm/armv7m.h> |
| 19 | #include <asm/arch/stm32.h> |
| 20 | #include <asm/arch/gpio.h> |
Michael Kurz | b20b70f | 2017-01-22 16:04:27 +0100 | [diff] [blame] | 21 | #include <asm/arch/syscfg.h> |
Vikas Manocha | 2f80a9f | 2017-04-10 15:03:00 -0700 | [diff] [blame] | 22 | #include <asm/gpio.h> |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 23 | |
| 24 | DECLARE_GLOBAL_DATA_PTR; |
| 25 | |
Toshifumi NISHINAGA | 25c1b13 | 2016-07-08 01:02:25 +0900 | [diff] [blame] | 26 | int dram_init(void) |
| 27 | { |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 28 | #ifndef CONFIG_SUPPORT_SPL |
Patrice Chotard | 8ff21d6 | 2018-08-03 13:09:55 +0200 | [diff] [blame] | 29 | int rv; |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 30 | struct udevice *dev; |
Vikas Manocha | 2d9c33c | 2017-04-10 15:02:54 -0700 | [diff] [blame] | 31 | rv = uclass_get_device(UCLASS_RAM, 0, &dev); |
| 32 | if (rv) { |
| 33 | debug("DRAM init failed: %d\n", rv); |
| 34 | return rv; |
| 35 | } |
Toshifumi NISHINAGA | 25c1b13 | 2016-07-08 01:02:25 +0900 | [diff] [blame] | 36 | |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 37 | #endif |
Patrice Chotard | 8ff21d6 | 2018-08-03 13:09:55 +0200 | [diff] [blame] | 38 | return fdtdec_setup_mem_size_base(); |
Vikas Manocha | 57af3cc | 2017-04-10 15:03:01 -0700 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | int dram_init_banksize(void) |
| 42 | { |
Patrice Chotard | 8ff21d6 | 2018-08-03 13:09:55 +0200 | [diff] [blame] | 43 | return fdtdec_setup_memory_banksize(); |
Toshifumi NISHINAGA | 25c1b13 | 2016-07-08 01:02:25 +0900 | [diff] [blame] | 44 | } |
| 45 | |
Vikas Manocha | 280057b | 2017-04-10 15:02:59 -0700 | [diff] [blame] | 46 | int board_early_init_f(void) |
Michael Kurz | d4363ba | 2017-01-22 16:04:30 +0100 | [diff] [blame] | 47 | { |
Michael Kurz | d4363ba | 2017-01-22 16:04:30 +0100 | [diff] [blame] | 48 | return 0; |
| 49 | } |
Michael Kurz | d4363ba | 2017-01-22 16:04:30 +0100 | [diff] [blame] | 50 | |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 51 | #ifdef CONFIG_SPL_BUILD |
Vikas Manocha | 55a3ef7 | 2017-05-28 12:55:13 -0700 | [diff] [blame] | 52 | #ifdef CONFIG_SPL_OS_BOOT |
| 53 | int spl_start_uboot(void) |
| 54 | { |
| 55 | debug("SPL: booting kernel\n"); |
| 56 | /* break into full u-boot on 'c' */ |
| 57 | return serial_tstc() && serial_getc() == 'c'; |
| 58 | } |
| 59 | #endif |
| 60 | |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 61 | int spl_dram_init(void) |
| 62 | { |
| 63 | struct udevice *dev; |
| 64 | int rv; |
| 65 | rv = uclass_get_device(UCLASS_RAM, 0, &dev); |
| 66 | if (rv) |
| 67 | debug("DRAM init failed: %d\n", rv); |
| 68 | return rv; |
| 69 | } |
| 70 | void spl_board_init(void) |
| 71 | { |
| 72 | spl_dram_init(); |
| 73 | preloader_console_init(); |
| 74 | arch_cpu_init(); /* to configure mpu for sdram rw permissions */ |
| 75 | } |
| 76 | u32 spl_boot_device(void) |
| 77 | { |
Vikas Manocha | 1a73bd8 | 2017-05-28 12:55:14 -0700 | [diff] [blame] | 78 | return BOOT_DEVICE_XIP; |
Vikas Manocha | b974769 | 2017-05-28 12:55:10 -0700 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | #endif |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 82 | u32 get_board_rev(void) |
| 83 | { |
| 84 | return 0; |
| 85 | } |
| 86 | |
Vikas Manocha | 2f80a9f | 2017-04-10 15:03:00 -0700 | [diff] [blame] | 87 | int board_late_init(void) |
| 88 | { |
| 89 | struct gpio_desc gpio = {}; |
| 90 | int node; |
| 91 | |
| 92 | node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "st,led1"); |
| 93 | if (node < 0) |
| 94 | return -1; |
| 95 | |
Simon Glass | 150c5af | 2017-05-30 21:47:09 -0600 | [diff] [blame] | 96 | 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] | 97 | GPIOD_IS_OUT); |
| 98 | |
| 99 | if (dm_gpio_is_valid(&gpio)) { |
| 100 | dm_gpio_set_value(&gpio, 0); |
| 101 | mdelay(10); |
| 102 | dm_gpio_set_value(&gpio, 1); |
| 103 | } |
| 104 | |
| 105 | /* read button 1*/ |
| 106 | node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "st,button1"); |
| 107 | if (node < 0) |
| 108 | return -1; |
| 109 | |
Simon Glass | 150c5af | 2017-05-30 21:47:09 -0600 | [diff] [blame] | 110 | gpio_request_by_name_nodev(offset_to_ofnode(node), "button-gpio", 0, |
| 111 | &gpio, GPIOD_IS_IN); |
Vikas Manocha | 2f80a9f | 2017-04-10 15:03:00 -0700 | [diff] [blame] | 112 | |
| 113 | if (dm_gpio_is_valid(&gpio)) { |
| 114 | if (dm_gpio_get_value(&gpio)) |
| 115 | puts("usr button is at HIGH LEVEL\n"); |
| 116 | else |
| 117 | puts("usr button is at LOW LEVEL\n"); |
| 118 | } |
| 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 123 | int board_init(void) |
| 124 | { |
Vikas Manocha | 57af3cc | 2017-04-10 15:03:01 -0700 | [diff] [blame] | 125 | gd->bd->bi_boot_params = gd->bd->bi_dram[0].start + 0x100; |
Patrice Chotard | 20fe38e | 2018-01-18 14:10:05 +0100 | [diff] [blame] | 126 | |
| 127 | #ifdef CONFIG_ETH_DESIGNWARE |
Patrice Chotard | 77594d7 | 2019-02-22 15:04:44 +0100 | [diff] [blame] | 128 | const char *phy_mode; |
| 129 | int node; |
| 130 | |
| 131 | node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "st,stm32-dwmac"); |
| 132 | if (node < 0) |
| 133 | return -1; |
| 134 | |
| 135 | phy_mode = fdt_getprop(gd->fdt_blob, node, "phy-mode", NULL); |
| 136 | |
| 137 | switch (phy_get_interface_by_name(phy_mode)) { |
| 138 | case PHY_INTERFACE_MODE_RMII: |
| 139 | STM32_SYSCFG->pmc |= SYSCFG_PMC_MII_RMII_SEL; |
| 140 | break; |
| 141 | case PHY_INTERFACE_MODE_MII: |
| 142 | STM32_SYSCFG->pmc &= ~SYSCFG_PMC_MII_RMII_SEL; |
| 143 | break; |
| 144 | default: |
| 145 | printf("PHY interface %s not supported !\n", phy_mode); |
| 146 | } |
Patrice Chotard | 20fe38e | 2018-01-18 14:10:05 +0100 | [diff] [blame] | 147 | #endif |
| 148 | |
yannick fertre | 92eac58 | 2018-03-02 15:59:28 +0100 | [diff] [blame] | 149 | #if defined(CONFIG_CMD_BMP) |
| 150 | bmp_display((ulong)stmicroelectronics_uboot_logo_8bit_rle, |
| 151 | BMP_ALIGN_CENTER, BMP_ALIGN_CENTER); |
| 152 | #endif /* CONFIG_CMD_BMP */ |
| 153 | |
Vikas Manocha | e66c49f | 2016-02-11 15:47:20 -0800 | [diff] [blame] | 154 | return 0; |
| 155 | } |