blob: 37ceb34fd481b4d03756be336090f31183fb8cba [file] [log] [blame]
Yidi Lin3d7b6062015-07-31 17:10:40 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2015 MediaTek Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Yidi Lin3d7b6062015-07-31 17:10:40 +080014 */
15
Yidi Lin3d7b6062015-07-31 17:10:40 +080016#include <device/device.h>
Yidi Lin3d7b6062015-07-31 17:10:40 +080017#include <symbols.h>
Yidi Linc6d7dcc2016-02-04 17:26:48 +080018#include <soc/emi.h>
Yidi Lin3d7b6062015-07-31 17:10:40 +080019
Elyes HAOUASb4426692018-05-25 10:09:55 +020020static void soc_read_resources(struct device *dev)
Yidi Lin3d7b6062015-07-31 17:10:40 +080021{
Yidi Linc6d7dcc2016-02-04 17:26:48 +080022 ram_resource(dev, 0, (uintptr_t)_dram / KiB, sdram_size() / KiB);
Yidi Lin3d7b6062015-07-31 17:10:40 +080023}
24
Elyes HAOUASb4426692018-05-25 10:09:55 +020025static void soc_init(struct device *dev)
Yidi Lin3d7b6062015-07-31 17:10:40 +080026{
27}
28
29static struct device_operations soc_ops = {
30 .read_resources = soc_read_resources,
31 .init = soc_init,
32};
33
Elyes HAOUASb4426692018-05-25 10:09:55 +020034static void enable_soc_dev(struct device *dev)
Yidi Lin3d7b6062015-07-31 17:10:40 +080035{
36 dev->ops = &soc_ops;
37}
38
39struct chip_operations soc_mediatek_mt8173_ops = {
Paul Menzel37277762016-07-03 09:45:26 +020040 CHIP_NAME("SOC Mediatek MT8173")
Yidi Lin47a9af42016-03-28 15:16:45 +080041 .enable_dev = enable_soc_dev,
Yidi Lin3d7b6062015-07-31 17:10:40 +080042};