blob: 83070144e729654e166583650399be715a45e01d [file] [log] [blame]
Marc Jones24484842017-05-04 21:17:45 -06001/*
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.
14 */
15
16#include <console/console.h>
17
18#include <arch/io.h>
19#include <arch/acpi.h>
20
21#include <device/device.h>
22#include <device/pci.h>
23#include <device/pci_ids.h>
24#include <device/pci_ops.h>
25#include <cbmem.h>
26#include <soc/hudson.h>
27#include <soc/smbus.h>
28#include <soc/smi.h>
29#if IS_ENABLED(CONFIG_STONEYRIDGE_IMC_FWM)
30#include <fchec.h>
31#endif
32
33
34int acpi_get_sleep_type(void)
35{
36 u16 tmp = inw(ACPI_PM1_CNT_BLK);
37 tmp = ((tmp & (7 << 10)) >> 10);
38 return (int)tmp;
39}
40
41void pm_write8(u8 reg, u8 value)
42{
43 write8((void *)(PM_MMIO_BASE + reg), value);
44}
45
46u8 pm_read8(u8 reg)
47{
48 return read8((void *)(PM_MMIO_BASE + reg));
49}
50
51void pm_write16(u8 reg, u16 value)
52{
53 write16((void *)(PM_MMIO_BASE + reg), value);
54}
55
56u16 pm_read16(u16 reg)
57{
58 return read16((void *)(PM_MMIO_BASE + reg));
59}
60
61void hudson_enable(device_t dev)
62{
63 printk(BIOS_DEBUG, "hudson_enable()\n");
64 switch (dev->path.pci.devfn) {
65 case (0x14 << 3) | 7: /* 0:14.7 SD */
66 if (dev->enabled == 0) {
67 // read the VENDEV ID
68 device_t sd_dev = dev_find_slot( 0, PCI_DEVFN( 0x14, 7));
69 u32 sd_device_id = pci_read_config32( sd_dev, 0) >> 16;
70 /* turn off the SDHC controller in the PM reg */
71 u8 reg8;
72 if (sd_device_id == PCI_DEVICE_ID_AMD_HUDSON_SD) {
73 reg8 = pm_read8(PM_HUD_SD_FLASH_CTRL);
74 reg8 &= ~BIT(0);
75 pm_write8(PM_HUD_SD_FLASH_CTRL, reg8);
76 }
77 else if (sd_device_id == PCI_DEVICE_ID_AMD_YANGTZE_SD) {
78 reg8 = pm_read8(PM_YANG_SD_FLASH_CTRL);
79 reg8 &= ~BIT(0);
80 pm_write8(PM_YANG_SD_FLASH_CTRL, reg8);
81 }
82 /* remove device 0:14.7 from PCI space */
83 reg8 = pm_read8(PM_MANUAL_RESET);
84 reg8 &= ~BIT(6);
85 pm_write8(PM_MANUAL_RESET, reg8);
86 }
87 break;
88 default:
89 break;
90 }
91}
92
93static void hudson_init_acpi_ports(void)
94{
95 /* We use some of these ports in SMM regardless of whether or not
96 * ACPI tables are generated. Enable these ports indiscriminately.
97 */
98
99 pm_write16(PM_EVT_BLK, ACPI_PM_EVT_BLK);
100 pm_write16(PM1_CNT_BLK, ACPI_PM1_CNT_BLK);
101 pm_write16(PM_TMR_BLK, ACPI_PM_TMR_BLK);
102 pm_write16(PM_GPE0_BLK, ACPI_GPE0_BLK);
103 /* CpuControl is in \_PR.CP00, 6 bytes */
104 pm_write16(PM_CPU_CTRL, ACPI_CPU_CONTROL);
105
106 if (IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)) {
107 pm_write16(PM_ACPI_SMI_CMD, ACPI_SMI_CTL_PORT);
108 hudson_enable_acpi_cmd_smi();
109 } else {
110 pm_write16(PM_ACPI_SMI_CMD, 0);
111 }
112
113 /* AcpiDecodeEnable, When set, SB uses the contents of the PM registers
114 * at index 60-6B to decode ACPI I/O address. AcpiSmiEn & SmiCmdEn
115 */
116 pm_write8(PM_ACPI_CONF, BIT(0) | BIT(1) | BIT(4) | BIT(2));
117}
118
119void hudson_init(void *chip_info)
120{
121 hudson_init_acpi_ports();
122}
123
124void hudson_final(void *chip_info)
125{
126#if IS_ENABLED(CONFIG_STONEYRIDGE_IMC_FWM)
127 agesawrapper_fchecfancontrolservice();
128#if !IS_ENABLED(CONFIG_ACPI_ENABLE_THERMAL_ZONE)
129 enable_imc_thermal_zone();
130#endif
131#endif
132}