blob: 3609314f4e3285282fe5842a8a2480830eeeb28e [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>
zbao246e84b2012-07-13 18:47:03 +080011#include "hudson.h"
Kyösti Mälkki29d9c562014-10-16 21:35:48 +030012#include "imc.h"
zbao246e84b2012-07-13 18:47:03 +080013#include "smbus.h"
Alexandru Gagniuc86777e32014-04-20 14:36:29 -050014#include "smi.h"
zbao246e84b2012-07-13 18:47:03 +080015
zbao246e84b2012-07-13 18:47:03 +080016
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050017#define PM_REG_USB_ENABLE 0xef
18
19enum usb_enable {
20 USB_EN_DEVFN_12_0 = (1 << 0),
21 USB_EN_DEVFN_12_2 = (1 << 1),
22 USB_EN_DEVFN_13_0 = (1 << 2),
23 USB_EN_DEVFN_13_2 = (1 << 3),
24 USB_EN_DEVFN_16_0 = (1 << 4),
25 USB_EN_DEVFN_16_2 = (1 << 5),
26};
27
28static void hudson_disable_usb(u8 disable)
29{
30 u8 reg8;
31
32 /* Bit 7 handles routing, 6 is reserved. we don't mess with those */
33 disable &= 0x3f;
34
35 reg8 = pm_read8(PM_REG_USB_ENABLE);
36 reg8 &= ~disable;
37 pm_write8(PM_REG_USB_ENABLE, reg8);
38}
39
Elyes HAOUASa93e7542018-05-19 14:30:47 +020040void hudson_enable(struct device *dev)
zbao246e84b2012-07-13 18:47:03 +080041{
Elyes HAOUASbfc255a2020-03-07 13:05:14 +010042 printk(BIOS_DEBUG, "%s()\n", __func__);
Dave Frodinea909632013-05-31 08:15:57 -060043 switch (dev->path.pci.devfn) {
Tobias Diedrichae3adff2014-11-08 00:38:33 +010044 case PCI_DEVFN(0x14, 5):
45 if (dev->enabled == 0) {
Kyösti Mälkki0bc06ab2018-05-20 15:41:05 +030046 u32 usb_device_id = pci_read_config16(dev, PCI_DEVICE_ID);
Tobias Diedrichae3adff2014-11-08 00:38:33 +010047 u8 reg8;
Kyösti Mälkki9d9a5522016-11-19 22:14:59 +020048 if (usb_device_id == PCI_DEVICE_ID_AMD_SB900_USB_20_5) {
Tobias Diedrichae3adff2014-11-08 00:38:33 +010049 /* turn off and remove device 0:14.5 from PCI space */
50 reg8 = pm_read8(0xef);
51 reg8 &= ~(1 << 6);
52 pm_write8(0xef, reg8);
53 }
54 }
55 break;
56
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050057 case PCI_DEVFN(0x14, 7):
Dave Frodinea909632013-05-31 08:15:57 -060058 if (dev->enabled == 0) {
Kyösti Mälkki0bc06ab2018-05-20 15:41:05 +030059 u32 sd_device_id = pci_read_config16(dev, PCI_DEVICE_ID);
Dave Frodinea909632013-05-31 08:15:57 -060060 /* turn off the SDHC controller in the PM reg */
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050061 u8 reg8;
Dave Frodinea909632013-05-31 08:15:57 -060062 if (sd_device_id == PCI_DEVICE_ID_AMD_HUDSON_SD) {
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050063 reg8 = pm_read8(0xe7);
64 reg8 &= ~(1 << 0);
65 pm_write8(0xe7, reg8);
Dave Frodinea909632013-05-31 08:15:57 -060066 }
67 else if (sd_device_id == PCI_DEVICE_ID_AMD_YANGTZE_SD) {
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050068 reg8 = pm_read8(0xe8);
69 reg8 &= ~(1 << 0);
70 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);
74 reg8 &= ~(1 << 6);
75 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);
Jacob Garber4c33a3a2019-07-12 10:34:06 -060083 /* fall through */
84 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);
Jacob Garber4c33a3a2019-07-12 10:34:06 -060091 /* fall through */
92 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);
Jacob Garber4c33a3a2019-07-12 10:34:06 -060099 /* fall through */
100 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
zbao246e84b2012-07-13 18:47:03 +0800109
Alexandru Gagniuc86777e32014-04-20 14:36:29 -0500110static void hudson_init_acpi_ports(void)
111{
112 /* We use some of these ports in SMM regardless of whether or not
113 * ACPI tables are generated. Enable these ports indiscriminately.
114 */
115
116 pm_write16(0x60, ACPI_PM_EVT_BLK);
117 pm_write16(0x62, ACPI_PM1_CNT_BLK);
118 pm_write16(0x64, ACPI_PM_TMR_BLK);
119 pm_write16(0x68, ACPI_GPE0_BLK);
Timothy Pearson033bb4b2015-02-10 22:21:39 -0600120 /* CpuControl is in \_PR.CP00, 6 bytes */
Alexandru Gagniuc86777e32014-04-20 14:36:29 -0500121 pm_write16(0x66, ACPI_CPU_CONTROL);
122
Julius Wernercd49cce2019-03-05 16:53:33 -0800123 if (CONFIG(HAVE_SMI_HANDLER)) {
Alexandru Gagniuc86777e32014-04-20 14:36:29 -0500124 pm_write16(0x6a, ACPI_SMI_CTL_PORT);
125 hudson_enable_acpi_cmd_smi();
126 } else {
127 pm_write16(0x6a, 0);
128 }
129
130 /* AcpiDecodeEnable, When set, SB uses the contents of the PM registers
131 * at index 60-6B to decode ACPI I/O address. AcpiSmiEn & SmiCmdEn
132 */
133 pm_write8(0x74, 1<<0 | 1<<1 | 1<<4 | 1<<2);
134}
135
136static void hudson_init(void *chip_info)
137{
138 hudson_init_acpi_ports();
139}
140
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300141static void hudson_final(void *chip_info)
142{
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300143 /* AMD AGESA does not enable thermal zone, so we enable it here. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800144 if (CONFIG(HUDSON_IMC_FWM) &&
145 !CONFIG(ACPI_ENABLE_THERMAL_ZONE))
Kyösti Mälkkieb064b32017-08-24 21:20:10 +0300146 enable_imc_thermal_zone();
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300147}
148
zbao246e84b2012-07-13 18:47:03 +0800149struct chip_operations southbridge_amd_agesa_hudson_ops = {
150 CHIP_NAME("ATI HUDSON")
151 .enable_dev = hudson_enable,
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300152 .init = hudson_init,
153 .final = hudson_final
zbao246e84b2012-07-13 18:47:03 +0800154};