blob: 3d82c370994bc667cdd0c51df1134697adcaefea [file] [log] [blame]
Marc Jones24484842017-05-04 21:17:45 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2017 Advanced Micro Devices, 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.
14 */
Marc Jones1587dc82017-05-15 18:55:11 -060015
Marc Jones24484842017-05-04 21:17:45 -060016#include <chip.h>
Marshall Dawson9db8a442017-09-20 10:24:28 -060017#include <bootstate.h>
18#include <console/console.h>
Marc Jones1587dc82017-05-15 18:55:11 -060019#include <cpu/amd/mtrr.h>
20#include <cpu/cpu.h>
Marc Jones24484842017-05-04 21:17:45 -060021#include <device/device.h>
22#include <device/pci.h>
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060023#include <soc/cpu.h>
Marc Jones1587dc82017-05-15 18:55:11 -060024#include <soc/northbridge.h>
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060025#include <soc/southbridge.h>
Marshall Dawsonf5e057c2017-10-12 16:10:14 -060026#include <amdblocks/psp.h>
Richard Spiegel0ad74ac2017-12-08 16:53:29 -070027#include <amdblocks/agesawrapper.h>
28#include <amdblocks/agesawrapper_call.h>
Marc Jones24484842017-05-04 21:17:45 -060029
Marc Jones1587dc82017-05-15 18:55:11 -060030struct device_operations cpu_bus_ops = {
31 .read_resources = DEVICE_NOOP,
32 .set_resources = DEVICE_NOOP,
33 .enable_resources = DEVICE_NOOP,
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060034 .init = stoney_init_cpus,
Marc Jones6bfcf662017-08-06 17:42:35 -060035 .acpi_fill_ssdt_generator = generate_cpu_entries,
Marc Jones24484842017-05-04 21:17:45 -060036};
37
Marc Jones1587dc82017-05-15 18:55:11 -060038struct device_operations pci_domain_ops = {
39 .read_resources = domain_read_resources,
40 .set_resources = domain_set_resources,
41 .enable_resources = domain_enable_resources,
Marc Jones1587dc82017-05-15 18:55:11 -060042 .scan_bus = pci_domain_scan_bus,
43 .ops_pci_bus = pci_bus_default_ops,
Marc Jones24484842017-05-04 21:17:45 -060044};
45
46static void enable_dev(device_t dev)
47{
48 /* Set the operations if it is a special bus type */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060049 if (dev->path.type == DEVICE_PATH_DOMAIN)
Marc Jones24484842017-05-04 21:17:45 -060050 dev->ops = &pci_domain_ops;
Marshall Dawson4e101ad2017-06-15 12:17:38 -060051 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER)
Marc Jones24484842017-05-04 21:17:45 -060052 dev->ops = &cpu_bus_ops;
Marshall Dawson4e101ad2017-06-15 12:17:38 -060053 else if (dev->path.type == DEVICE_PATH_PCI)
Marc Jonesdfeb1c42017-08-07 19:08:24 -060054 sb_enable(dev);
Marc Jones24484842017-05-04 21:17:45 -060055}
56
57static void soc_init(void *chip_info)
58{
Marc Jonesdfeb1c42017-08-07 19:08:24 -060059 southbridge_init(chip_info);
Richard Spiegel9d0921b2017-12-19 10:24:50 -070060 setup_bsp_ramtop();
Marc Jones24484842017-05-04 21:17:45 -060061}
62
63static void soc_final(void *chip_info)
64{
Marc Jonesdfeb1c42017-08-07 19:08:24 -060065 southbridge_final(chip_info);
Marc Jones1587dc82017-05-15 18:55:11 -060066 fam15_finalize(chip_info);
Marc Jones24484842017-05-04 21:17:45 -060067}
68
69struct chip_operations soc_amd_stoneyridge_ops = {
70 CHIP_NAME("AMD StoneyRidge SOC")
71 .enable_dev = &enable_dev,
72 .init = &soc_init,
73 .final = &soc_final
74};
Marshall Dawson9db8a442017-09-20 10:24:28 -060075
Marshall Dawsonf5e057c2017-10-12 16:10:14 -060076static void earliest_ramstage(void *unused)
Marshall Dawson9db8a442017-09-20 10:24:28 -060077{
78 post_code(0x46);
Marshall Dawsonf5e057c2017-10-12 16:10:14 -060079 if (IS_ENABLED(CONFIG_SOC_AMD_PSP_SELECTABLE_SMU_FW))
80 psp_load_named_blob(MBOX_BIOS_CMD_SMU_FW2, "smu_fw2");
81
82 post_code(0x47);
Richard Spiegel138a1d22017-12-13 13:26:21 -070083 do_agesawrapper(agesawrapper_amdinitenv, "amdinitenv");
Marshall Dawson9db8a442017-09-20 10:24:28 -060084}
85
Marshall Dawsonf5e057c2017-10-12 16:10:14 -060086BOOT_STATE_INIT_ENTRY(BS_PRE_DEVICE, BS_ON_ENTRY, earliest_ramstage, NULL);