aboutsummaryrefslogtreecommitdiff
path: root/src/soc/mediatek/mt8192/emi.c
blob: f83acd36bcd87eb12ff64fb90fa2de7d4df86c37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only */

#include <soc/dramc_pi_api.h>

size_t sdram_size(void)
{
	size_t dram_size = 0x100000000;

	return dram_size;
}

void mt_set_emi(const struct dramc_data *dparam)
{
	init_dram(dparam);
}