Merge tag 'u-boot-rockchip-20200501' of https://gitlab.denx.de/u-boot/custodians...
[platform/kernel/u-boot.git] / arch / mips / mach-mtmips / cpu.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2018 Stefan Roese <sr@denx.de>
4  */
5
6 #include <common.h>
7 #include <malloc.h>
8 #include <linux/io.h>
9 #include <linux/sizes.h>
10
11 DECLARE_GLOBAL_DATA_PTR;
12
13 int dram_init(void)
14 {
15 #ifdef CONFIG_SKIP_LOWLEVEL_INIT
16         gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, SZ_256M);
17 #endif
18
19         return 0;
20 }
21
22 int last_stage_init(void)
23 {
24         void *src, *dst;
25
26         src = malloc(SZ_64K);
27         dst = malloc(SZ_64K);
28         if (!src || !dst) {
29                 printf("Can't allocate buffer for cache cleanup copy!\n");
30                 return 0;
31         }
32
33         /*
34          * It has been noticed, that sometimes the d-cache is not in a
35          * "clean-state" when U-Boot is running on MT7688. This was
36          * detected when using the ethernet driver (which uses d-cache)
37          * and a TFTP command does not complete. Copying an area of 64KiB
38          * in DDR at a very late bootup time in U-Boot, directly before
39          * calling into the prompt, seems to fix this issue.
40          */
41         memcpy(dst, src, SZ_64K);
42         free(src);
43         free(dst);
44
45         return 0;
46 }