blob: 55e464cc7cf1352ca81435c38cd3ed9834e81158 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
rev13@wp.pl6b5e5a92015-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 Lulko75d48a62015-12-01 09:08:19 +010010 * Kamil Lulko, <kamil.lulko@gmail.com>
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010011 */
12
13#include <common.h>
Simon Glass11c89f32017-05-17 17:18:03 -060014#include <dm.h>
Simon Glassed38aef2020-05-10 11:40:03 -060015#include <env.h>
Simon Glass97589732020-05-10 11:40:02 -060016#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060017#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.h>
Patrice Chotardf3a701a2017-12-12 09:49:39 +010019
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010020#include <asm/io.h>
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010021#include <asm/arch/stm32.h>
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010022
23DECLARE_GLOBAL_DATA_PTR;
24
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010025int dram_init(void)
26{
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010027 int rv;
Patrice Chotardb59d10f2017-12-12 09:49:34 +010028 struct udevice *dev;
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010029
Patrice Chotardb59d10f2017-12-12 09:49:34 +010030 rv = uclass_get_device(UCLASS_RAM, 0, &dev);
31 if (rv) {
32 debug("DRAM init failed: %d\n", rv);
33 return rv;
34 }
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010035
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053036 if (fdtdec_setup_mem_size_base() != 0)
Patrice Chotardb59d10f2017-12-12 09:49:34 +010037 rv = -EINVAL;
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010038
Patrice Chotardb59d10f2017-12-12 09:49:34 +010039 return rv;
40}
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010041
Patrice Chotardb59d10f2017-12-12 09:49:34 +010042int dram_init_banksize(void)
43{
44 fdtdec_setup_memory_banksize();
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010045
Patrice Chotardb59d10f2017-12-12 09:49:34 +010046 return 0;
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010047}
48
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010049int board_init(void)
50{
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +010051 return 0;
52}
Antonio Borneo989e8b22015-07-19 22:19:46 +080053
54#ifdef CONFIG_MISC_INIT_R
55int misc_init_r(void)
56{
57 char serialno[25];
58 uint32_t u_id_low, u_id_mid, u_id_high;
59
Simon Glass64b723f2017-08-03 12:22:12 -060060 if (!env_get("serial#")) {
Antonio Borneo989e8b22015-07-19 22:19:46 +080061 u_id_low = readl(&STM32_U_ID->u_id_low);
62 u_id_mid = readl(&STM32_U_ID->u_id_mid);
63 u_id_high = readl(&STM32_U_ID->u_id_high);
64 sprintf(serialno, "%08x%08x%08x",
65 u_id_high, u_id_mid, u_id_low);
Simon Glass6a38e412017-08-03 12:22:09 -060066 env_set("serial#", serialno);
Antonio Borneo989e8b22015-07-19 22:19:46 +080067 }
68
69 return 0;
70}
71#endif