blob: 0c96ec15a35a12b8f8d72db1156b59522cf7e23c [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
zbao246e84b2012-07-13 18:47:03 +08002
Michał Żygowskif3db2ae2019-11-24 13:26:10 +01003#include <amdblocks/acpimmio.h>
zbao246e84b2012-07-13 18:47:03 +08004#include <console/console.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02005#include <device/mmio.h>
zbao246e84b2012-07-13 18:47:03 +08006#include <device/device.h>
7#include <device/pci.h>
Kyösti Mälkki0bc06ab2018-05-20 15:41:05 +03008#include <device/pci_def.h>
zbao246e84b2012-07-13 18:47:03 +08009#include <device/pci_ids.h>
10#include <device/pci_ops.h>
Elyes Haouas2e96e942022-02-11 22:08:52 +010011#include <types.h>
12
zbao246e84b2012-07-13 18:47:03 +080013#include "hudson.h"
Kyösti Mälkki29d9c562014-10-16 21:35:48 +030014#include "imc.h"
zbao246e84b2012-07-13 18:47:03 +080015#include "smbus.h"
Alexandru Gagniuc86777e32014-04-20 14:36:29 -050016#include "smi.h"
zbao246e84b2012-07-13 18:47:03 +080017
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050018#define PM_REG_USB_ENABLE 0xef
19
20enum usb_enable {
21 USB_EN_DEVFN_12_0 = (1 << 0),
22 USB_EN_DEVFN_12_2 = (1 << 1),
23 USB_EN_DEVFN_13_0 = (1 << 2),
24 USB_EN_DEVFN_13_2 = (1 << 3),
25 USB_EN_DEVFN_16_0 = (1 << 4),
26 USB_EN_DEVFN_16_2 = (1 << 5),
27};
28
29static void hudson_disable_usb(u8 disable)
30{
31 u8 reg8;
32
33 /* Bit 7 handles routing, 6 is reserved. we don't mess with those */
34 disable &= 0x3f;
35
36 reg8 = pm_read8(PM_REG_USB_ENABLE);
37 reg8 &= ~disable;
38 pm_write8(PM_REG_USB_ENABLE, reg8);
39}
40
Elyes HAOUASa93e7542018-05-19 14:30:47 +020041void hudson_enable(struct device *dev)
zbao246e84b2012-07-13 18:47:03 +080042{
Elyes HAOUASbfc255a2020-03-07 13:05:14 +010043 printk(BIOS_DEBUG, "%s()\n", __func__);
Dave Frodinea909632013-05-31 08:15:57 -060044 switch (dev->path.pci.devfn) {
Tobias Diedrichae3adff2014-11-08 00:38:33 +010045 case PCI_DEVFN(0x14, 5):
46 if (dev->enabled == 0) {
Kyösti Mälkki0bc06ab2018-05-20 15:41:05 +030047 u32 usb_device_id = pci_read_config16(dev, PCI_DEVICE_ID);
Tobias Diedrichae3adff2014-11-08 00:38:33 +010048 u8 reg8;
Felix Singer43b7f412022-03-07 04:34:52 +010049 if (usb_device_id == PCI_DID_AMD_SB900_USB_20_5) {
Tobias Diedrichae3adff2014-11-08 00:38:33 +010050 /* turn off and remove device 0:14.5 from PCI space */
51 reg8 = pm_read8(0xef);
Elyes Haouas2e96e942022-02-11 22:08:52 +010052 reg8 &= ~BIT(6);
Tobias Diedrichae3adff2014-11-08 00:38:33 +010053 pm_write8(0xef, reg8);
54 }
55 }
56 break;
57
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050058 case PCI_DEVFN(0x14, 7):
Dave Frodinea909632013-05-31 08:15:57 -060059 if (dev->enabled == 0) {
Kyösti Mälkki0bc06ab2018-05-20 15:41:05 +030060 u32 sd_device_id = pci_read_config16(dev, PCI_DEVICE_ID);
Dave Frodinea909632013-05-31 08:15:57 -060061 /* turn off the SDHC controller in the PM reg */
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050062 u8 reg8;
Felix Singer43b7f412022-03-07 04:34:52 +010063 if (sd_device_id == PCI_DID_AMD_HUDSON_SD) {
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050064 reg8 = pm_read8(0xe7);
Elyes Haouas2e96e942022-02-11 22:08:52 +010065 reg8 &= ~BIT(0);
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050066 pm_write8(0xe7, reg8);
Felix Singer43b7f412022-03-07 04:34:52 +010067 } else if (sd_device_id == PCI_DID_AMD_YANGTZE_SD) {
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050068 reg8 = pm_read8(0xe8);
Elyes Haouas2e96e942022-02-11 22:08:52 +010069 reg8 &= ~BIT(0);
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050070 pm_write8(0xe8, reg8);
Dave Frodinea909632013-05-31 08:15:57 -060071 }
72 /* remove device 0:14.7 from PCI space */
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050073 reg8 = pm_read8(0xd3);
Elyes Haouas2e96e942022-02-11 22:08:52 +010074 reg8 &= ~BIT(6);
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050075 pm_write8(0xd3, reg8);
Dave Frodinea909632013-05-31 08:15:57 -060076 }
77 break;
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050078
79 /* Make sure to disable other functions if function 0 is disabled */
80 case PCI_DEVFN(0x12, 0):
81 if (dev->enabled == 0)
82 hudson_disable_usb(USB_EN_DEVFN_12_0);
Arthur Heymansfff20212021-03-15 14:56:16 +010083 __fallthrough;
Jacob Garber4c33a3a2019-07-12 10:34:06 -060084 case PCI_DEVFN(0x12, 2):
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050085 if (dev->enabled == 0)
86 hudson_disable_usb(USB_EN_DEVFN_12_2);
87 break;
88 case PCI_DEVFN(0x13, 0):
89 if (dev->enabled == 0)
90 hudson_disable_usb(USB_EN_DEVFN_13_0);
Arthur Heymansfff20212021-03-15 14:56:16 +010091 __fallthrough;
Jacob Garber4c33a3a2019-07-12 10:34:06 -060092 case PCI_DEVFN(0x13, 2):
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050093 if (dev->enabled == 0)
94 hudson_disable_usb(USB_EN_DEVFN_13_2);
95 break;
96 case PCI_DEVFN(0x16, 0):
97 if (dev->enabled == 0)
98 hudson_disable_usb(USB_EN_DEVFN_16_0);
Arthur Heymansfff20212021-03-15 14:56:16 +010099 __fallthrough;
Jacob Garber4c33a3a2019-07-12 10:34:06 -0600100 case PCI_DEVFN(0x16, 2):
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -0500101 if (dev->enabled == 0)
102 hudson_disable_usb(USB_EN_DEVFN_16_2);
103 break;
Dave Frodinea909632013-05-31 08:15:57 -0600104 default:
105 break;
106 }
zbao246e84b2012-07-13 18:47:03 +0800107}
108
Alexandru Gagniuc86777e32014-04-20 14:36:29 -0500109static void hudson_init_acpi_ports(void)
110{
111 /* We use some of these ports in SMM regardless of whether or not
112 * ACPI tables are generated. Enable these ports indiscriminately.
113 */
114
115 pm_write16(0x60, ACPI_PM_EVT_BLK);
116 pm_write16(0x62, ACPI_PM1_CNT_BLK);
117 pm_write16(0x64, ACPI_PM_TMR_BLK);
118 pm_write16(0x68, ACPI_GPE0_BLK);
Timothy Pearson033bb4b2015-02-10 22:21:39 -0600119 /* CpuControl is in \_PR.CP00, 6 bytes */
Alexandru Gagniuc86777e32014-04-20 14:36:29 -0500120 pm_write16(0x66, ACPI_CPU_CONTROL);
121
Julius Wernercd49cce2019-03-05 16:53:33 -0800122 if (CONFIG(HAVE_SMI_HANDLER)) {
Alexandru Gagniuc86777e32014-04-20 14:36:29 -0500123 pm_write16(0x6a, ACPI_SMI_CTL_PORT);
124 hudson_enable_acpi_cmd_smi();
125 } else {
126 pm_write16(0x6a, 0);
127 }
128
129 /* AcpiDecodeEnable, When set, SB uses the contents of the PM registers
130 * at index 60-6B to decode ACPI I/O address. AcpiSmiEn & SmiCmdEn
131 */
Elyes Haouas2e96e942022-02-11 22:08:52 +0100132 pm_write8(0x74, BIT(0) | BIT(1) | BIT(4) | BIT(2));
Alexandru Gagniuc86777e32014-04-20 14:36:29 -0500133}
134
135static void hudson_init(void *chip_info)
136{
137 hudson_init_acpi_ports();
138}
139
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300140static void hudson_final(void *chip_info)
141{
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300142 /* AMD AGESA does not enable thermal zone, so we enable it here. */
Elyes Haouas2e96e942022-02-11 22:08:52 +0100143 if (CONFIG(HUDSON_IMC_FWM) && !CONFIG(ACPI_ENABLE_THERMAL_ZONE))
Kyösti Mälkkieb064b32017-08-24 21:20:10 +0300144 enable_imc_thermal_zone();
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300145}
146
zbao246e84b2012-07-13 18:47:03 +0800147struct chip_operations southbridge_amd_agesa_hudson_ops = {
148 CHIP_NAME("ATI HUDSON")
149 .enable_dev = hudson_enable,
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300150 .init = hudson_init,
151 .final = hudson_final
zbao246e84b2012-07-13 18:47:03 +0800152};