blob: 5b0744ff6ba506a6847521c5b2c89090d39729cb [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
rev13@wp.pled09a552015-03-01 12:44:42 +01002/*
3 * (C) Copyright 2011, 2012, 2013
4 * Yuri Tikhonov, Emcraft Systems, yur@emcraft.com
5 * Alexander Potashev, Emcraft Systems, aspotashev@emcraft.com
6 * Vladimir Khusainov, Emcraft Systems, vlad@emcraft.com
7 * Pavel Boldin, Emcraft Systems, paboldin@emcraft.com
8 *
9 * (C) Copyright 2015
Kamil Lulko66562412015-12-01 09:08:19 +010010 * Kamil Lulko, <kamil.lulko@gmail.com>
rev13@wp.pled09a552015-03-01 12:44:42 +010011 */
12
13#include <common.h>
Simon Glass9d922452017-05-17 17:18:03 -060014#include <dm.h>
Simon Glass691d7192020-05-10 11:40:02 -060015#include <init.h>
Patrice Chotard4a56fd42017-12-12 09:49:39 +010016
rev13@wp.pled09a552015-03-01 12:44:42 +010017#include <asm/io.h>
rev13@wp.pled09a552015-03-01 12:44:42 +010018#include <asm/arch/stm32.h>
rev13@wp.pled09a552015-03-01 12:44:42 +010019
20DECLARE_GLOBAL_DATA_PTR;
21
rev13@wp.pled09a552015-03-01 12:44:42 +010022int dram_init(void)
23{
rev13@wp.pled09a552015-03-01 12:44:42 +010024 int rv;
Patrice Chotard7fd65ef2017-12-12 09:49:34 +010025 struct udevice *dev;
rev13@wp.pled09a552015-03-01 12:44:42 +010026
Patrice Chotard7fd65ef2017-12-12 09:49:34 +010027 rv = uclass_get_device(UCLASS_RAM, 0, &dev);
28 if (rv) {
29 debug("DRAM init failed: %d\n", rv);
30 return rv;
31 }
rev13@wp.pled09a552015-03-01 12:44:42 +010032
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +053033 if (fdtdec_setup_mem_size_base() != 0)
Patrice Chotard7fd65ef2017-12-12 09:49:34 +010034 rv = -EINVAL;
rev13@wp.pled09a552015-03-01 12:44:42 +010035
36 return rv;
37}
38
Patrice Chotard7fd65ef2017-12-12 09:49:34 +010039int dram_init_banksize(void)
40{
41 fdtdec_setup_memory_banksize();
42
43 return 0;
44}
45
rev13@wp.pled09a552015-03-01 12:44:42 +010046u32 get_board_rev(void)
47{
48 return 0;
49}
50
51int board_early_init_f(void)
52{
rev13@wp.pled09a552015-03-01 12:44:42 +010053 return 0;
54}
55
56int board_init(void)
57{
Patrice Chotard725e09b2018-08-03 11:46:11 +020058 gd->bd->bi_boot_params = gd->bd->bi_dram[0].start + 0x100;
rev13@wp.pled09a552015-03-01 12:44:42 +010059
60 return 0;
61}
Antonio Borneo089fddf2015-07-19 22:19:46 +080062
63#ifdef CONFIG_MISC_INIT_R
64int misc_init_r(void)
65{
66 char serialno[25];
67 uint32_t u_id_low, u_id_mid, u_id_high;
68
Simon Glass00caae62017-08-03 12:22:12 -060069 if (!env_get("serial#")) {
Antonio Borneo089fddf2015-07-19 22:19:46 +080070 u_id_low = readl(&STM32_U_ID->u_id_low);
71 u_id_mid = readl(&STM32_U_ID->u_id_mid);
72 u_id_high = readl(&STM32_U_ID->u_id_high);
73 sprintf(serialno, "%08x%08x%08x",
74 u_id_high, u_id_mid, u_id_low);
Simon Glass382bee52017-08-03 12:22:09 -060075 env_set("serial#", serialno);
Antonio Borneo089fddf2015-07-19 22:19:46 +080076 }
77
78 return 0;
79}
80#endif