blob: 109ad847724b4b46e06dd27881c1e52a60fe5043 [file] [log] [blame]
Angel Ponsba38f372020-04-05 15:46:45 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Lee Leahy77ff0b12015-05-05 15:07:29 -07002
Kyösti Mälkki13f66502019-03-03 08:01:05 +02003#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02004#include <device/pci_ops.h>
Kyösti Mälkki5daa1d32020-06-14 12:01:58 +03005#include <acpi/acpi_gnvs.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -07006#include <console/console.h>
7#include <device/device.h>
8#include <device/pci.h>
9#include <device/pci_ids.h>
10#include <reg_script.h>
11
12#include <soc/iomap.h>
13#include <soc/iosf.h>
14#include <soc/lpc.h>
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020015#include <soc/device_nvs.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070016#include <soc/pattrs.h>
17#include <soc/pci_devs.h>
Lee Leahy32471722015-04-20 15:20:28 -070018#include <soc/pm.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070019#include <soc/ramstage.h>
20#include "chip.h"
21
Lee Leahy32471722015-04-20 15:20:28 -070022/*
23 * The LPE audio devices needs 1MiB of memory reserved aligned to a 512MiB
24 * address. Just take 1MiB @ 512MiB.
25 */
Lee Leahy77ff0b12015-05-05 15:07:29 -070026#define FIRMWARE_PHYS_BASE (512 << 20)
Matt DeVillier83ef07a2018-01-21 16:37:24 -060027#define FIRMWARE_PHYS_LENGTH (2 << 20)
Lee Leahy77ff0b12015-05-05 15:07:29 -070028#define FIRMWARE_PCI_REG_BASE 0xa8
29#define FIRMWARE_PCI_REG_LENGTH 0xac
30#define FIRMWARE_REG_BASE_C0 0x144000
31#define FIRMWARE_REG_LENGTH_C0 (FIRMWARE_REG_BASE_C0 + 4)
32
Elyes HAOUASb13fac32018-05-24 22:29:44 +020033static void assign_device_nvs(struct device *dev, u32 *field,
34 unsigned int index)
Lee Leahy77ff0b12015-05-05 15:07:29 -070035{
36 struct resource *res;
37
Angel Ponsc1bfbe02021-11-03 13:18:53 +010038 res = probe_resource(dev, index);
Lee Leahy77ff0b12015-05-05 15:07:29 -070039 if (res)
40 *field = res->base;
41}
42
Elyes HAOUASb13fac32018-05-24 22:29:44 +020043static void lpe_enable_acpi_mode(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070044{
45 static const struct reg_script ops[] = {
46 /* Disable PCI interrupt, enable Memory and Bus Master */
Elyes HAOUAS066e61f2020-04-29 10:28:20 +020047 REG_PCI_OR16(PCI_COMMAND,
Angel Ponsaee7ab22020-03-19 00:31:58 +010048 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | PCI_COMMAND_INT_DISABLE),
49
Lee Leahy77ff0b12015-05-05 15:07:29 -070050 /* Enable ACPI mode */
51 REG_IOSF_OR(IOSF_PORT_0x58, LPE_PCICFGCTR1,
Angel Ponsaee7ab22020-03-19 00:31:58 +010052 LPE_PCICFGCTR1_PCI_CFG_DIS | LPE_PCICFGCTR1_ACPI_INT_EN),
53
Lee Leahy77ff0b12015-05-05 15:07:29 -070054 REG_SCRIPT_END
55 };
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020056 struct device_nvs *dev_nvs = acpi_get_device_nvs();
Lee Leahy77ff0b12015-05-05 15:07:29 -070057
58 /* Save BAR0, BAR1, and firmware base to ACPI NVS */
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020059 assign_device_nvs(dev, &dev_nvs->lpe_bar0, PCI_BASE_ADDRESS_0);
60 assign_device_nvs(dev, &dev_nvs->lpe_bar1, PCI_BASE_ADDRESS_2);
61 assign_device_nvs(dev, &dev_nvs->lpe_fw, FIRMWARE_PCI_REG_BASE);
Lee Leahy77ff0b12015-05-05 15:07:29 -070062
63 /* Device is enabled in ACPI mode */
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020064 dev_nvs->lpe_en = 1;
Lee Leahy77ff0b12015-05-05 15:07:29 -070065
66 /* Put device in ACPI mode */
67 reg_script_run_on_dev(dev, ops);
68}
69
Elyes HAOUASb13fac32018-05-24 22:29:44 +020070static void setup_codec_clock(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070071{
72 uint32_t reg;
73 u32 *clk_reg;
Lee Leahy32471722015-04-20 15:20:28 -070074 struct soc_intel_braswell_config *config;
Lee Leahy77ff0b12015-05-05 15:07:29 -070075 const char *freq_str;
76
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +030077 config = config_of(dev);
fdurairxaff502e2015-08-21 15:36:53 -070078 switch (config->lpe_codec_clk_src) {
79 case LPE_CLK_SRC_XTAL:
80 /* XTAL driven bit2=0 */
81 freq_str = "19.2MHz External Crystal";
82 reg = CLK_SRC_XTAL;
Lee Leahy77ff0b12015-05-05 15:07:29 -070083 break;
Angel Ponsaee7ab22020-03-19 00:31:58 +010084
fdurairxaff502e2015-08-21 15:36:53 -070085 case LPE_CLK_SRC_PLL:
86 /* PLL driven bit2=1 */
87 freq_str = "19.2MHz PLL";
88 reg = CLK_SRC_PLL;
Lee Leahy77ff0b12015-05-05 15:07:29 -070089 break;
Angel Ponsaee7ab22020-03-19 00:31:58 +010090
Lee Leahy77ff0b12015-05-05 15:07:29 -070091 default:
fdurairxaff502e2015-08-21 15:36:53 -070092 reg = CLK_SRC_XTAL;
93 printk(BIOS_DEBUG, "LPE codec clock default to using Crystal\n");
Lee Leahy77ff0b12015-05-05 15:07:29 -070094 return;
95 }
96
97 /* Default to always running. */
98 reg |= CLK_CTL_ON;
99
Lee Leahy77ff0b12015-05-05 15:07:29 -0700100 printk(BIOS_DEBUG, "LPE Audio codec clock set to %sMHz.\n", freq_str);
101
Angel Ponsaee7ab22020-03-19 00:31:58 +0100102 clk_reg = (u32 *)(PMC_BASE_ADDRESS + PLT_CLK_CTL_0);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700103
104 write32(clk_reg, (read32(clk_reg) & ~0x7) | reg);
105}
106
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200107static void lpe_stash_firmware_info(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700108{
109 struct resource *res;
110 struct resource *mmio;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700111
Angel Ponsc1bfbe02021-11-03 13:18:53 +0100112 res = probe_resource(dev, FIRMWARE_PCI_REG_BASE);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700113 if (res == NULL) {
114 printk(BIOS_DEBUG, "LPE Firmware memory not found.\n");
115 return;
116 }
Lee Leahy32471722015-04-20 15:20:28 -0700117 printk(BIOS_DEBUG, "LPE FW Resource: 0x%08x\n", (u32) res->base);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700118
119 /* Continue using old way of informing firmware address / size. */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100120 pci_write_config32(dev, FIRMWARE_PCI_REG_BASE, res->base);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700121 pci_write_config32(dev, FIRMWARE_PCI_REG_LENGTH, res->size);
122
Lee Leahy32471722015-04-20 15:20:28 -0700123 /* Also put the address in MMIO space like on C0 BTM */
124 mmio = find_resource(dev, PCI_BASE_ADDRESS_0);
Angel Ponsaee7ab22020-03-19 00:31:58 +0100125 write32((void *)(uintptr_t)(mmio->base + FIRMWARE_REG_BASE_C0), res->base);
126 write32((void *)(uintptr_t)(mmio->base + FIRMWARE_REG_LENGTH_C0), res->size);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700127}
128
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200129static void lpe_init(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700130{
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300131 struct soc_intel_braswell_config *config = config_of(dev);
Lee Leahy32471722015-04-20 15:20:28 -0700132
Lee Leahy77ff0b12015-05-05 15:07:29 -0700133 lpe_stash_firmware_info(dev);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700134 setup_codec_clock(dev);
135
136 if (config->lpe_acpi_mode)
137 lpe_enable_acpi_mode(dev);
138}
139
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200140static void lpe_read_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700141{
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600142 struct resource *res;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700143 pci_dev_read_resources(dev);
144
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600145 /*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100146 * Allocate the BAR1 resource at index 2 to fulfill the Windows driver
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600147 * interface requirements even though the PCI device has only one BAR
148 */
149 res = new_resource(dev, PCI_BASE_ADDRESS_2);
150 res->base = 0;
151 res->size = 0x1000;
152 res->limit = 0xffffffff;
153 res->gran = 12;
154 res->align = 12;
155 res->flags = IORESOURCE_MEM;
156
Angel Ponsaee7ab22020-03-19 00:31:58 +0100157 reserved_ram_resource(dev, FIRMWARE_PCI_REG_BASE, FIRMWARE_PHYS_BASE >> 10,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700158 FIRMWARE_PHYS_LENGTH >> 10);
159}
160
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200161static void lpe_set_resources(struct device *dev)
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600162{
163 struct resource *res;
164
Angel Ponsc1bfbe02021-11-03 13:18:53 +0100165 res = probe_resource(dev, PCI_BASE_ADDRESS_2);
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600166 if (res != NULL)
167 res->flags |= IORESOURCE_STORED;
168
169 pci_dev_set_resources(dev);
170}
171
Lee Leahy77ff0b12015-05-05 15:07:29 -0700172static const struct device_operations device_ops = {
173 .read_resources = lpe_read_resources,
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600174 .set_resources = lpe_set_resources,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700175 .enable_resources = pci_dev_enable_resources,
176 .init = lpe_init,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700177 .ops_pci = &soc_pci_ops,
178};
179
180static const struct pci_driver southcluster __pci_driver = {
181 .ops = &device_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100182 .vendor = PCI_VID_INTEL,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700183 .device = LPE_DEVID,
184};