2018-09-05 13:12:35 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Stefan Roese <sr@denx.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2020-02-03 14:36:16 +00:00
|
|
|
#include <malloc.h>
|
2020-11-12 08:35:33 +00:00
|
|
|
#include <asm/addrspace.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2020-05-10 17:40:13 +00:00
|
|
|
#include <linux/bitops.h>
|
2018-09-05 13:12:35 +00:00
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
2020-04-21 07:28:34 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2018-09-05 13:12:35 +00:00
|
|
|
|
|
|
|
int dram_init(void)
|
|
|
|
{
|
2020-11-12 08:35:33 +00:00
|
|
|
gd->ram_size = get_ram_size((void *)KSEG1, SZ_256M);
|
2018-09-05 13:12:35 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2019-05-28 06:11:37 +00:00
|
|
|
|
|
|
|
int last_stage_init(void)
|
|
|
|
{
|
|
|
|
void *src, *dst;
|
|
|
|
|
|
|
|
src = malloc(SZ_64K);
|
|
|
|
dst = malloc(SZ_64K);
|
|
|
|
if (!src || !dst) {
|
|
|
|
printf("Can't allocate buffer for cache cleanup copy!\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It has been noticed, that sometimes the d-cache is not in a
|
|
|
|
* "clean-state" when U-Boot is running on MT7688. This was
|
|
|
|
* detected when using the ethernet driver (which uses d-cache)
|
|
|
|
* and a TFTP command does not complete. Copying an area of 64KiB
|
|
|
|
* in DDR at a very late bootup time in U-Boot, directly before
|
|
|
|
* calling into the prompt, seems to fix this issue.
|
|
|
|
*/
|
|
|
|
memcpy(dst, src, SZ_64K);
|
|
|
|
free(src);
|
|
|
|
free(dst);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|