blob: 243938a0ebb7a805717f1e56af13bc78fd817734 [file] [log] [blame]
Stefan Roese65da15e2018-09-05 15:12:35 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018 Stefan Roese <sr@denx.de>
4 */
5
Simon Glass1cedca12023-08-21 21:17:01 -06006#include <event.h>
Simon Glass97589732020-05-10 11:40:02 -06007#include <init.h>
Simon Glass9bc15642020-02-03 07:36:16 -07008#include <malloc.h>
developeraf2c7542020-11-12 16:35:33 +08009#include <asm/addrspace.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <asm/global_data.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060011#include <linux/bitops.h>
Stefan Roese65da15e2018-09-05 15:12:35 +020012#include <linux/io.h>
13#include <linux/sizes.h>
Stefan Roese65da15e2018-09-05 15:12:35 +020014
developer29b37c52020-04-21 09:28:34 +020015DECLARE_GLOBAL_DATA_PTR;
Stefan Roese65da15e2018-09-05 15:12:35 +020016
17int dram_init(void)
18{
developer2fddd722022-05-20 11:22:21 +080019 gd->ram_size = get_ram_size((void *)KSEG1, CONFIG_MAX_MEM_SIZE << 20);
Stefan Roese65da15e2018-09-05 15:12:35 +020020
21 return 0;
22}
Stefan Roese17679e42019-05-28 08:11:37 +020023
Simon Glass1cedca12023-08-21 21:17:01 -060024#ifndef CONFIG_SPL_BUILD
25static int last_stage_init(void)
Stefan Roese17679e42019-05-28 08:11:37 +020026{
27 void *src, *dst;
28
29 src = malloc(SZ_64K);
30 dst = malloc(SZ_64K);
31 if (!src || !dst) {
32 printf("Can't allocate buffer for cache cleanup copy!\n");
33 return 0;
34 }
35
36 /*
37 * It has been noticed, that sometimes the d-cache is not in a
38 * "clean-state" when U-Boot is running on MT7688. This was
39 * detected when using the ethernet driver (which uses d-cache)
40 * and a TFTP command does not complete. Copying an area of 64KiB
41 * in DDR at a very late bootup time in U-Boot, directly before
42 * calling into the prompt, seems to fix this issue.
43 */
44 memcpy(dst, src, SZ_64K);
45 free(src);
46 free(dst);
47
48 return 0;
49}
Simon Glass1cedca12023-08-21 21:17:01 -060050EVENT_SPY_SIMPLE(EVT_LAST_STAGE_INIT, last_stage_init);
51#endif