blob: fbf205ece08149921fee84ee5121a32c0da29a9a [file] [log] [blame]
Angel Ponsae593872020-04-04 18:50:57 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Marc Jones1587dc82017-05-15 18:55:11 -06002
Marshall Dawson9db8a442017-09-20 10:24:28 -06003#include <bootstate.h>
4#include <console/console.h>
Marc Jones1587dc82017-05-15 18:55:11 -06005#include <cpu/amd/mtrr.h>
Marc Jones24484842017-05-04 21:17:45 -06006#include <device/device.h>
7#include <device/pci.h>
Justin TerAvest13101a72018-01-24 14:23:12 -07008#include <drivers/i2c/designware/dw_i2c.h>
Duncan Laurie32bdffa2018-05-07 15:37:28 -07009#include <soc/acpi.h>
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060010#include <soc/cpu.h>
Marc Jones1587dc82017-05-15 18:55:11 -060011#include <soc/northbridge.h>
Justin TerAvest949d6662018-01-24 14:20:03 -070012#include <soc/pci_devs.h>
Marshall Dawsona7bfbbe2017-09-13 17:24:53 -060013#include <soc/southbridge.h>
Marshall Dawsonf5e057c2017-10-12 16:10:14 -060014#include <amdblocks/psp.h>
Richard Spiegel0ad74ac2017-12-08 16:53:29 -070015#include <amdblocks/agesawrapper.h>
16#include <amdblocks/agesawrapper_call.h>
Karthikeyan Ramasubramanian4f87ae12021-03-18 23:16:29 -060017#include <amdblocks/i2c.h>
Marc Jones24484842017-05-04 21:17:45 -060018
Elyes HAOUASc3385072019-03-21 15:38:06 +010019#include "chip.h"
20
Justin TerAvest13101a72018-01-24 14:23:12 -070021/* Supplied by i2c.c */
Karthikeyan Ramasubramanian4f87ae12021-03-18 23:16:29 -060022extern struct device_operations soc_amd_i2c_mmio_ops;
Justin TerAvest13101a72018-01-24 14:23:12 -070023
Marc Jones1587dc82017-05-15 18:55:11 -060024struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +020025 .read_resources = noop_read_resources,
26 .set_resources = noop_set_resources,
Kyösti Mälkki79e12ab2020-05-31 09:21:07 +030027 .init = mp_cpu_bus_init,
Nico Huber68680dd2020-03-31 17:34:52 +020028 .acpi_fill_ssdt = generate_cpu_entries,
Marc Jones24484842017-05-04 21:17:45 -060029};
30
Duncan Laurie32bdffa2018-05-07 15:37:28 -070031const char *soc_acpi_name(const struct device *dev)
Justin TerAvest949d6662018-01-24 14:20:03 -070032{
33 if (dev->path.type == DEVICE_PATH_DOMAIN)
34 return "PCI0";
Duncan Laurie32bdffa2018-05-07 15:37:28 -070035
36 if (dev->path.type == DEVICE_PATH_USB) {
37 switch (dev->path.usb.port_type) {
38 case 0:
39 /* Root Hub */
40 return "RHUB";
41 case 2:
42 /* USB2 ports */
43 switch (dev->path.usb.port_id) {
44 case 0: return "HS01";
45 case 1: return "HS02";
46 case 2: return "HS03";
47 case 3: return "HS04";
48 case 4: return "HS05";
49 case 5: return "HS06";
50 case 6: return "HS07";
51 case 7: return "HS08";
52 }
53 break;
54 case 3:
55 /* USB3 ports */
56 switch (dev->path.usb.port_id) {
57 case 0: return "SS01";
58 case 1: return "SS02";
59 case 2: return "SS03";
60 }
61 break;
62 }
63 return NULL;
64 }
65
Justin TerAvest949d6662018-01-24 14:20:03 -070066 if (dev->path.type != DEVICE_PATH_PCI)
67 return NULL;
68
69 switch (dev->path.pci.devfn) {
Marc Jones6dcb6c22018-07-26 17:07:13 -060070 case GFX_DEVFN:
71 return "IGFX";
Marc Jones9022b9d2018-05-25 20:53:44 -060072 case PCIE0_DEVFN:
73 return "PBR4";
74 case PCIE1_DEVFN:
75 return "PBR5";
76 case PCIE2_DEVFN:
77 return "PBR6";
78 case PCIE3_DEVFN:
79 return "PBR7";
80 case PCIE4_DEVFN:
81 return "PBR8";
Justin TerAvest949d6662018-01-24 14:20:03 -070082 case EHCI1_DEVFN:
83 return "EHC0";
Justin TerAvest949d6662018-01-24 14:20:03 -070084 case SD_DEVFN:
85 return "SDCN";
Justin TerAvest949d6662018-01-24 14:20:03 -070086 case XHCI_DEVFN:
87 return "XHC0";
88 default:
89 return NULL;
90 }
91};
92
Felix Heldd28e1592020-12-05 02:13:10 +010093static struct device_operations pci_domain_ops = {
Furquan Shaikhfc752b62020-05-13 12:14:11 -070094 .read_resources = domain_read_resources,
95 .set_resources = pci_domain_set_resources,
Marc Jones1587dc82017-05-15 18:55:11 -060096 .enable_resources = domain_enable_resources,
Marc Jones1587dc82017-05-15 18:55:11 -060097 .scan_bus = pci_domain_scan_bus,
Justin TerAvest949d6662018-01-24 14:20:03 -070098 .acpi_name = soc_acpi_name,
Marc Jones24484842017-05-04 21:17:45 -060099};
100
Karthikeyan Ramasubramanian4f87ae12021-03-18 23:16:29 -0600101static void set_mmio_dev_ops(struct device *dev)
102{
103 switch (dev->path.mmio.addr) {
104 case I2CA_BASE_ADDRESS:
105 case I2CB_BASE_ADDRESS:
106 case I2CC_BASE_ADDRESS:
107 case I2CD_BASE_ADDRESS:
108 dev->ops = &soc_amd_i2c_mmio_ops;
109 break;
110 }
111}
112
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200113static void enable_dev(struct device *dev)
Marc Jones24484842017-05-04 21:17:45 -0600114{
115 /* Set the operations if it is a special bus type */
Felix Held237bc2ef2021-02-09 16:46:14 +0100116 switch (dev->path.type) {
117 case DEVICE_PATH_DOMAIN:
Marc Jones24484842017-05-04 21:17:45 -0600118 dev->ops = &pci_domain_ops;
Felix Held237bc2ef2021-02-09 16:46:14 +0100119 break;
120 case DEVICE_PATH_CPU_CLUSTER:
Marc Jones24484842017-05-04 21:17:45 -0600121 dev->ops = &cpu_bus_ops;
Felix Held237bc2ef2021-02-09 16:46:14 +0100122 break;
Felix Held237bc2ef2021-02-09 16:46:14 +0100123 case DEVICE_PATH_MMIO:
Karthikeyan Ramasubramanian4f87ae12021-03-18 23:16:29 -0600124 set_mmio_dev_ops(dev);
Felix Held237bc2ef2021-02-09 16:46:14 +0100125 break;
126 default:
127 break;
128 }
Marc Jones24484842017-05-04 21:17:45 -0600129}
130
131static void soc_init(void *chip_info)
132{
Felix Helda21690b2021-01-29 16:01:10 +0100133 fch_init(chip_info);
Richard Spiegel9d0921b2017-12-19 10:24:50 -0700134 setup_bsp_ramtop();
Marc Jones24484842017-05-04 21:17:45 -0600135}
136
137static void soc_final(void *chip_info)
138{
Felix Helda21690b2021-01-29 16:01:10 +0100139 fch_final(chip_info);
Marc Jones1587dc82017-05-15 18:55:11 -0600140 fam15_finalize(chip_info);
Marc Jones24484842017-05-04 21:17:45 -0600141}
142
143struct chip_operations soc_amd_stoneyridge_ops = {
144 CHIP_NAME("AMD StoneyRidge SOC")
Elyes HAOUAS1d191272018-11-27 12:23:48 +0100145 .enable_dev = enable_dev,
146 .init = soc_init,
147 .final = soc_final
Marc Jones24484842017-05-04 21:17:45 -0600148};
Marshall Dawson9db8a442017-09-20 10:24:28 -0600149
Marshall Dawsonf5e057c2017-10-12 16:10:14 -0600150static void earliest_ramstage(void *unused)
Marshall Dawson9db8a442017-09-20 10:24:28 -0600151{
Kyösti Mälkki9e591c42021-01-09 12:37:25 +0200152 if (!acpi_is_wakeup_s3()) {
Marshall Dawson8f2a7e02017-11-01 11:44:48 -0600153 post_code(0x46);
Julius Wernercd49cce2019-03-05 16:53:33 -0800154 if (CONFIG(SOC_AMD_PSP_SELECTABLE_SMU_FW))
Marshall Dawson737e56a2020-01-19 16:32:08 -0700155 psp_load_named_blob(BLOB_SMU_FW2, "smu_fw2");
Marshall Dawsonf5e057c2017-10-12 16:10:14 -0600156
Marshall Dawson8f2a7e02017-11-01 11:44:48 -0600157 post_code(0x47);
Kyösti Mälkki6e512c42018-06-14 06:57:05 +0300158 do_agesawrapper(AMD_INIT_ENV, "amdinitenv");
Marshall Dawson8f2a7e02017-11-01 11:44:48 -0600159 } else {
160 /* Complete the initial system restoration */
161 post_code(0x46);
Kyösti Mälkki6e512c42018-06-14 06:57:05 +0300162 do_agesawrapper(AMD_S3LATE_RESTORE, "amds3laterestore");
Marshall Dawson8f2a7e02017-11-01 11:44:48 -0600163 }
Marshall Dawson9db8a442017-09-20 10:24:28 -0600164}
165
Marshall Dawsonf5e057c2017-10-12 16:10:14 -0600166BOOT_STATE_INIT_ENTRY(BS_PRE_DEVICE, BS_ON_ENTRY, earliest_ramstage, NULL);