blob: 14be808136d40cf8ca86e0fd8b59b68c2b0fca99 [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>
15#include <soc/nvs.h>
16#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
38 res = find_resource(dev, index);
39 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älkki0c1dd9c2020-06-17 23:37:49 +030056 struct global_nvs *gnvs;
Lee Leahy77ff0b12015-05-05 15:07:29 -070057
58 /* Find ACPI NVS to update BARs */
Kyösti Mälkki5daa1d32020-06-14 12:01:58 +030059 gnvs = acpi_get_gnvs();
60 if (!gnvs)
Lee Leahy77ff0b12015-05-05 15:07:29 -070061 return;
Lee Leahy77ff0b12015-05-05 15:07:29 -070062
63 /* Save BAR0, BAR1, and firmware base to ACPI NVS */
64 assign_device_nvs(dev, &gnvs->dev.lpe_bar0, PCI_BASE_ADDRESS_0);
Matt DeVillier5d6ab452018-01-17 19:39:52 -060065 assign_device_nvs(dev, &gnvs->dev.lpe_bar1, PCI_BASE_ADDRESS_2);
Lee Leahy77ff0b12015-05-05 15:07:29 -070066 assign_device_nvs(dev, &gnvs->dev.lpe_fw, FIRMWARE_PCI_REG_BASE);
67
68 /* Device is enabled in ACPI mode */
69 gnvs->dev.lpe_en = 1;
70
71 /* Put device in ACPI mode */
72 reg_script_run_on_dev(dev, ops);
73}
74
Elyes HAOUASb13fac32018-05-24 22:29:44 +020075static void setup_codec_clock(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070076{
77 uint32_t reg;
78 u32 *clk_reg;
Lee Leahy32471722015-04-20 15:20:28 -070079 struct soc_intel_braswell_config *config;
Lee Leahy77ff0b12015-05-05 15:07:29 -070080 const char *freq_str;
81
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +030082 config = config_of(dev);
fdurairxaff502e2015-08-21 15:36:53 -070083 switch (config->lpe_codec_clk_src) {
84 case LPE_CLK_SRC_XTAL:
85 /* XTAL driven bit2=0 */
86 freq_str = "19.2MHz External Crystal";
87 reg = CLK_SRC_XTAL;
Lee Leahy77ff0b12015-05-05 15:07:29 -070088 break;
Angel Ponsaee7ab22020-03-19 00:31:58 +010089
fdurairxaff502e2015-08-21 15:36:53 -070090 case LPE_CLK_SRC_PLL:
91 /* PLL driven bit2=1 */
92 freq_str = "19.2MHz PLL";
93 reg = CLK_SRC_PLL;
Lee Leahy77ff0b12015-05-05 15:07:29 -070094 break;
Angel Ponsaee7ab22020-03-19 00:31:58 +010095
Lee Leahy77ff0b12015-05-05 15:07:29 -070096 default:
fdurairxaff502e2015-08-21 15:36:53 -070097 reg = CLK_SRC_XTAL;
98 printk(BIOS_DEBUG, "LPE codec clock default to using Crystal\n");
Lee Leahy77ff0b12015-05-05 15:07:29 -070099 return;
100 }
101
102 /* Default to always running. */
103 reg |= CLK_CTL_ON;
104
Lee Leahy77ff0b12015-05-05 15:07:29 -0700105 printk(BIOS_DEBUG, "LPE Audio codec clock set to %sMHz.\n", freq_str);
106
Angel Ponsaee7ab22020-03-19 00:31:58 +0100107 clk_reg = (u32 *)(PMC_BASE_ADDRESS + PLT_CLK_CTL_0);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700108
109 write32(clk_reg, (read32(clk_reg) & ~0x7) | reg);
110}
111
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200112static void lpe_stash_firmware_info(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700113{
114 struct resource *res;
115 struct resource *mmio;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700116
117 res = find_resource(dev, FIRMWARE_PCI_REG_BASE);
118 if (res == NULL) {
119 printk(BIOS_DEBUG, "LPE Firmware memory not found.\n");
120 return;
121 }
Lee Leahy32471722015-04-20 15:20:28 -0700122 printk(BIOS_DEBUG, "LPE FW Resource: 0x%08x\n", (u32) res->base);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700123
124 /* Continue using old way of informing firmware address / size. */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100125 pci_write_config32(dev, FIRMWARE_PCI_REG_BASE, res->base);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700126 pci_write_config32(dev, FIRMWARE_PCI_REG_LENGTH, res->size);
127
Lee Leahy32471722015-04-20 15:20:28 -0700128 /* Also put the address in MMIO space like on C0 BTM */
129 mmio = find_resource(dev, PCI_BASE_ADDRESS_0);
Angel Ponsaee7ab22020-03-19 00:31:58 +0100130 write32((void *)(uintptr_t)(mmio->base + FIRMWARE_REG_BASE_C0), res->base);
131 write32((void *)(uintptr_t)(mmio->base + FIRMWARE_REG_LENGTH_C0), res->size);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700132}
133
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200134static void lpe_init(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700135{
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300136 struct soc_intel_braswell_config *config = config_of(dev);
Lee Leahy32471722015-04-20 15:20:28 -0700137
Lee Leahy77ff0b12015-05-05 15:07:29 -0700138 lpe_stash_firmware_info(dev);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700139 setup_codec_clock(dev);
140
141 if (config->lpe_acpi_mode)
142 lpe_enable_acpi_mode(dev);
143}
144
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200145static void lpe_read_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700146{
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600147 struct resource *res;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700148 pci_dev_read_resources(dev);
149
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600150 /*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100151 * Allocate the BAR1 resource at index 2 to fulfill the Windows driver
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600152 * interface requirements even though the PCI device has only one BAR
153 */
154 res = new_resource(dev, PCI_BASE_ADDRESS_2);
155 res->base = 0;
156 res->size = 0x1000;
157 res->limit = 0xffffffff;
158 res->gran = 12;
159 res->align = 12;
160 res->flags = IORESOURCE_MEM;
161
Angel Ponsaee7ab22020-03-19 00:31:58 +0100162 reserved_ram_resource(dev, FIRMWARE_PCI_REG_BASE, FIRMWARE_PHYS_BASE >> 10,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700163 FIRMWARE_PHYS_LENGTH >> 10);
164}
165
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200166static void lpe_set_resources(struct device *dev)
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600167{
168 struct resource *res;
169
170 res = find_resource(dev, PCI_BASE_ADDRESS_2);
171 if (res != NULL)
172 res->flags |= IORESOURCE_STORED;
173
174 pci_dev_set_resources(dev);
175}
176
Lee Leahy77ff0b12015-05-05 15:07:29 -0700177static const struct device_operations device_ops = {
178 .read_resources = lpe_read_resources,
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600179 .set_resources = lpe_set_resources,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700180 .enable_resources = pci_dev_enable_resources,
181 .init = lpe_init,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700182 .ops_pci = &soc_pci_ops,
183};
184
185static const struct pci_driver southcluster __pci_driver = {
186 .ops = &device_ops,
187 .vendor = PCI_VENDOR_ID_INTEL,
188 .device = LPE_DEVID,
189};