blob: d3a8bc40446204740c03459b580c3970861828b9 [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>
Justin TerAvest13101a72018-01-24 14:23:12 -070023#include <drivers/i2c/designware/dw_i2c.h>
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060024#include <soc/cpu.h>
Marc Jones1587dc82017-05-15 18:55:11 -060025#include <soc/northbridge.h>
Justin TerAvest949d6662018-01-24 14:20:03 -070026#include <soc/pci_devs.h>
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060027#include <soc/southbridge.h>
Marshall Dawsonf5e057c2017-10-12 16:10:14 -060028#include <amdblocks/psp.h>
Richard Spiegel0ad74ac2017-12-08 16:53:29 -070029#include <amdblocks/agesawrapper.h>
30#include <amdblocks/agesawrapper_call.h>
Marc Jones24484842017-05-04 21:17:45 -060031
Justin TerAvest13101a72018-01-24 14:23:12 -070032/* Supplied by i2c.c */
33extern struct device_operations stoneyridge_i2c_mmio_ops;
34extern const char *i2c_acpi_name(const struct device *dev);
35
Marc Jones1587dc82017-05-15 18:55:11 -060036struct device_operations cpu_bus_ops = {
37 .read_resources = DEVICE_NOOP,
38 .set_resources = DEVICE_NOOP,
39 .enable_resources = DEVICE_NOOP,
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060040 .init = stoney_init_cpus,
Marc Jones6bfcf662017-08-06 17:42:35 -060041 .acpi_fill_ssdt_generator = generate_cpu_entries,
Marc Jones24484842017-05-04 21:17:45 -060042};
43
Justin TerAvest949d6662018-01-24 14:20:03 -070044static const char *soc_acpi_name(const struct device *dev)
45{
46 if (dev->path.type == DEVICE_PATH_DOMAIN)
47 return "PCI0";
48 if (dev->path.type != DEVICE_PATH_PCI)
49 return NULL;
50
51 switch (dev->path.pci.devfn) {
52 case EHCI1_DEVFN:
53 return "EHC0";
54 case LPC_DEVFN:
55 return "LPCB";
56 case SATA_DEVFN:
57 return "STCR";
58 case SD_DEVFN:
59 return "SDCN";
60 case SMBUS_DEVFN:
61 return "SBUS";
62 case XHCI_DEVFN:
63 return "XHC0";
64 default:
65 return NULL;
66 }
67};
68
Marc Jones1587dc82017-05-15 18:55:11 -060069struct device_operations pci_domain_ops = {
70 .read_resources = domain_read_resources,
71 .set_resources = domain_set_resources,
72 .enable_resources = domain_enable_resources,
Marc Jones1587dc82017-05-15 18:55:11 -060073 .scan_bus = pci_domain_scan_bus,
74 .ops_pci_bus = pci_bus_default_ops,
Justin TerAvest949d6662018-01-24 14:20:03 -070075 .acpi_name = soc_acpi_name,
Marc Jones24484842017-05-04 21:17:45 -060076};
77
78static void enable_dev(device_t dev)
79{
80 /* Set the operations if it is a special bus type */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060081 if (dev->path.type == DEVICE_PATH_DOMAIN)
Marc Jones24484842017-05-04 21:17:45 -060082 dev->ops = &pci_domain_ops;
Marshall Dawson4e101ad2017-06-15 12:17:38 -060083 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER)
Marc Jones24484842017-05-04 21:17:45 -060084 dev->ops = &cpu_bus_ops;
Marshall Dawson4e101ad2017-06-15 12:17:38 -060085 else if (dev->path.type == DEVICE_PATH_PCI)
Marc Jonesdfeb1c42017-08-07 19:08:24 -060086 sb_enable(dev);
Justin TerAvest13101a72018-01-24 14:23:12 -070087 else if (dev->path.type == DEVICE_PATH_MMIO)
88 if (i2c_acpi_name(dev) != NULL)
89 dev->ops = &stoneyridge_i2c_mmio_ops;
Marc Jones24484842017-05-04 21:17:45 -060090}
91
92static void soc_init(void *chip_info)
93{
Marc Jonesdfeb1c42017-08-07 19:08:24 -060094 southbridge_init(chip_info);
Richard Spiegel9d0921b2017-12-19 10:24:50 -070095 setup_bsp_ramtop();
Marc Jones24484842017-05-04 21:17:45 -060096}
97
98static void soc_final(void *chip_info)
99{
Marc Jonesdfeb1c42017-08-07 19:08:24 -0600100 southbridge_final(chip_info);
Marc Jones1587dc82017-05-15 18:55:11 -0600101 fam15_finalize(chip_info);
Marc Jones24484842017-05-04 21:17:45 -0600102}
103
104struct chip_operations soc_amd_stoneyridge_ops = {
105 CHIP_NAME("AMD StoneyRidge SOC")
106 .enable_dev = &enable_dev,
107 .init = &soc_init,
108 .final = &soc_final
109};
Marshall Dawson9db8a442017-09-20 10:24:28 -0600110
Marshall Dawsonf5e057c2017-10-12 16:10:14 -0600111static void earliest_ramstage(void *unused)
Marshall Dawson9db8a442017-09-20 10:24:28 -0600112{
113 post_code(0x46);
Marshall Dawsonf5e057c2017-10-12 16:10:14 -0600114 if (IS_ENABLED(CONFIG_SOC_AMD_PSP_SELECTABLE_SMU_FW))
115 psp_load_named_blob(MBOX_BIOS_CMD_SMU_FW2, "smu_fw2");
116
117 post_code(0x47);
Richard Spiegel138a1d22017-12-13 13:26:21 -0700118 do_agesawrapper(agesawrapper_amdinitenv, "amdinitenv");
Marshall Dawson9db8a442017-09-20 10:24:28 -0600119}
120
Marshall Dawsonf5e057c2017-10-12 16:10:14 -0600121BOOT_STATE_INIT_ENTRY(BS_PRE_DEVICE, BS_ON_ENTRY, earliest_ramstage, NULL);