blob: d586d33f73bf58441e2ae0150386e0adbba65452 [file] [log] [blame]
zbao246e84b2012-07-13 18:47:03 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 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.
zbao246e84b2012-07-13 18:47:03 +080014 */
15
Michał Żygowskif3db2ae2019-11-24 13:26:10 +010016#include <amdblocks/acpimmio.h>
zbao246e84b2012-07-13 18:47:03 +080017#include <console/console.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020018#include <device/mmio.h>
zbao246e84b2012-07-13 18:47:03 +080019#include <device/device.h>
20#include <device/pci.h>
Kyösti Mälkki0bc06ab2018-05-20 15:41:05 +030021#include <device/pci_def.h>
zbao246e84b2012-07-13 18:47:03 +080022#include <device/pci_ids.h>
23#include <device/pci_ops.h>
zbao246e84b2012-07-13 18:47:03 +080024#include "hudson.h"
Kyösti Mälkki29d9c562014-10-16 21:35:48 +030025#include "imc.h"
zbao246e84b2012-07-13 18:47:03 +080026#include "smbus.h"
Alexandru Gagniuc86777e32014-04-20 14:36:29 -050027#include "smi.h"
zbao246e84b2012-07-13 18:47:03 +080028
zbao246e84b2012-07-13 18:47:03 +080029
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050030#define PM_REG_USB_ENABLE 0xef
31
32enum usb_enable {
33 USB_EN_DEVFN_12_0 = (1 << 0),
34 USB_EN_DEVFN_12_2 = (1 << 1),
35 USB_EN_DEVFN_13_0 = (1 << 2),
36 USB_EN_DEVFN_13_2 = (1 << 3),
37 USB_EN_DEVFN_16_0 = (1 << 4),
38 USB_EN_DEVFN_16_2 = (1 << 5),
39};
40
41static void hudson_disable_usb(u8 disable)
42{
43 u8 reg8;
44
45 /* Bit 7 handles routing, 6 is reserved. we don't mess with those */
46 disable &= 0x3f;
47
48 reg8 = pm_read8(PM_REG_USB_ENABLE);
49 reg8 &= ~disable;
50 pm_write8(PM_REG_USB_ENABLE, reg8);
51}
52
Elyes HAOUASa93e7542018-05-19 14:30:47 +020053void hudson_enable(struct device *dev)
zbao246e84b2012-07-13 18:47:03 +080054{
Martin Rothf5726ea2013-01-18 12:55:40 -070055 printk(BIOS_DEBUG, "hudson_enable()\n");
Dave Frodinea909632013-05-31 08:15:57 -060056 switch (dev->path.pci.devfn) {
Tobias Diedrichae3adff2014-11-08 00:38:33 +010057 case PCI_DEVFN(0x14, 5):
58 if (dev->enabled == 0) {
Kyösti Mälkki0bc06ab2018-05-20 15:41:05 +030059 u32 usb_device_id = pci_read_config16(dev, PCI_DEVICE_ID);
Tobias Diedrichae3adff2014-11-08 00:38:33 +010060 u8 reg8;
Kyösti Mälkki9d9a5522016-11-19 22:14:59 +020061 if (usb_device_id == PCI_DEVICE_ID_AMD_SB900_USB_20_5) {
Tobias Diedrichae3adff2014-11-08 00:38:33 +010062 /* turn off and remove device 0:14.5 from PCI space */
63 reg8 = pm_read8(0xef);
64 reg8 &= ~(1 << 6);
65 pm_write8(0xef, reg8);
66 }
67 }
68 break;
69
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050070 case PCI_DEVFN(0x14, 7):
Dave Frodinea909632013-05-31 08:15:57 -060071 if (dev->enabled == 0) {
Kyösti Mälkki0bc06ab2018-05-20 15:41:05 +030072 u32 sd_device_id = pci_read_config16(dev, PCI_DEVICE_ID);
Dave Frodinea909632013-05-31 08:15:57 -060073 /* turn off the SDHC controller in the PM reg */
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050074 u8 reg8;
Dave Frodinea909632013-05-31 08:15:57 -060075 if (sd_device_id == PCI_DEVICE_ID_AMD_HUDSON_SD) {
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050076 reg8 = pm_read8(0xe7);
77 reg8 &= ~(1 << 0);
78 pm_write8(0xe7, reg8);
Dave Frodinea909632013-05-31 08:15:57 -060079 }
80 else if (sd_device_id == PCI_DEVICE_ID_AMD_YANGTZE_SD) {
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050081 reg8 = pm_read8(0xe8);
82 reg8 &= ~(1 << 0);
83 pm_write8(0xe8, reg8);
Dave Frodinea909632013-05-31 08:15:57 -060084 }
85 /* remove device 0:14.7 from PCI space */
Alexandru Gagniuc342ac642014-04-14 16:44:19 -050086 reg8 = pm_read8(0xd3);
87 reg8 &= ~(1 << 6);
88 pm_write8(0xd3, reg8);
Dave Frodinea909632013-05-31 08:15:57 -060089 }
90 break;
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050091
92 /* Make sure to disable other functions if function 0 is disabled */
93 case PCI_DEVFN(0x12, 0):
94 if (dev->enabled == 0)
95 hudson_disable_usb(USB_EN_DEVFN_12_0);
Jacob Garber4c33a3a2019-07-12 10:34:06 -060096 /* fall through */
97 case PCI_DEVFN(0x12, 2):
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -050098 if (dev->enabled == 0)
99 hudson_disable_usb(USB_EN_DEVFN_12_2);
100 break;
101 case PCI_DEVFN(0x13, 0):
102 if (dev->enabled == 0)
103 hudson_disable_usb(USB_EN_DEVFN_13_0);
Jacob Garber4c33a3a2019-07-12 10:34:06 -0600104 /* fall through */
105 case PCI_DEVFN(0x13, 2):
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -0500106 if (dev->enabled == 0)
107 hudson_disable_usb(USB_EN_DEVFN_13_2);
108 break;
109 case PCI_DEVFN(0x16, 0):
110 if (dev->enabled == 0)
111 hudson_disable_usb(USB_EN_DEVFN_16_0);
Jacob Garber4c33a3a2019-07-12 10:34:06 -0600112 /* fall through */
113 case PCI_DEVFN(0x16, 2):
Alexandru Gagniucd2e5f682014-04-16 16:33:03 -0500114 if (dev->enabled == 0)
115 hudson_disable_usb(USB_EN_DEVFN_16_2);
116 break;
Dave Frodinea909632013-05-31 08:15:57 -0600117 default:
118 break;
119 }
zbao246e84b2012-07-13 18:47:03 +0800120}
121
zbao246e84b2012-07-13 18:47:03 +0800122
Alexandru Gagniuc86777e32014-04-20 14:36:29 -0500123static void hudson_init_acpi_ports(void)
124{
125 /* We use some of these ports in SMM regardless of whether or not
126 * ACPI tables are generated. Enable these ports indiscriminately.
127 */
128
129 pm_write16(0x60, ACPI_PM_EVT_BLK);
130 pm_write16(0x62, ACPI_PM1_CNT_BLK);
131 pm_write16(0x64, ACPI_PM_TMR_BLK);
132 pm_write16(0x68, ACPI_GPE0_BLK);
Timothy Pearson033bb4b2015-02-10 22:21:39 -0600133 /* CpuControl is in \_PR.CP00, 6 bytes */
Alexandru Gagniuc86777e32014-04-20 14:36:29 -0500134 pm_write16(0x66, ACPI_CPU_CONTROL);
135
Julius Wernercd49cce2019-03-05 16:53:33 -0800136 if (CONFIG(HAVE_SMI_HANDLER)) {
Alexandru Gagniuc86777e32014-04-20 14:36:29 -0500137 pm_write16(0x6a, ACPI_SMI_CTL_PORT);
138 hudson_enable_acpi_cmd_smi();
139 } else {
140 pm_write16(0x6a, 0);
141 }
142
143 /* AcpiDecodeEnable, When set, SB uses the contents of the PM registers
144 * at index 60-6B to decode ACPI I/O address. AcpiSmiEn & SmiCmdEn
145 */
146 pm_write8(0x74, 1<<0 | 1<<1 | 1<<4 | 1<<2);
147}
148
149static void hudson_init(void *chip_info)
150{
151 hudson_init_acpi_ports();
152}
153
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300154static void hudson_final(void *chip_info)
155{
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300156 /* AMD AGESA does not enable thermal zone, so we enable it here. */
Julius Wernercd49cce2019-03-05 16:53:33 -0800157 if (CONFIG(HUDSON_IMC_FWM) &&
158 !CONFIG(ACPI_ENABLE_THERMAL_ZONE))
Kyösti Mälkkieb064b32017-08-24 21:20:10 +0300159 enable_imc_thermal_zone();
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300160}
161
zbao246e84b2012-07-13 18:47:03 +0800162struct chip_operations southbridge_amd_agesa_hudson_ops = {
163 CHIP_NAME("ATI HUDSON")
164 .enable_dev = hudson_enable,
Kyösti Mälkki29d9c562014-10-16 21:35:48 +0300165 .init = hudson_init,
166 .final = hudson_final
zbao246e84b2012-07-13 18:47:03 +0800167};