blob: 394715eb5a19cb272085c8d9f2b2d57eec837b73 [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>
Lee Leahy77ff0b12015-05-05 15:07:29 -07005#include <cbmem.h>
6#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 };
56 global_nvs_t *gnvs;
57
58 /* Find ACPI NVS to update BARs */
Lee Leahy32471722015-04-20 15:20:28 -070059 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
Lee Leahy77ff0b12015-05-05 15:07:29 -070060 if (!gnvs) {
61 printk(BIOS_ERR, "Unable to locate Global NVS\n");
62 return;
63 }
64
65 /* Save BAR0, BAR1, and firmware base to ACPI NVS */
66 assign_device_nvs(dev, &gnvs->dev.lpe_bar0, PCI_BASE_ADDRESS_0);
Matt DeVillier5d6ab452018-01-17 19:39:52 -060067 assign_device_nvs(dev, &gnvs->dev.lpe_bar1, PCI_BASE_ADDRESS_2);
Lee Leahy77ff0b12015-05-05 15:07:29 -070068 assign_device_nvs(dev, &gnvs->dev.lpe_fw, FIRMWARE_PCI_REG_BASE);
69
70 /* Device is enabled in ACPI mode */
71 gnvs->dev.lpe_en = 1;
72
73 /* Put device in ACPI mode */
74 reg_script_run_on_dev(dev, ops);
75}
76
Elyes HAOUASb13fac32018-05-24 22:29:44 +020077static void setup_codec_clock(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070078{
79 uint32_t reg;
80 u32 *clk_reg;
Lee Leahy32471722015-04-20 15:20:28 -070081 struct soc_intel_braswell_config *config;
Lee Leahy77ff0b12015-05-05 15:07:29 -070082 const char *freq_str;
83
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +030084 config = config_of(dev);
fdurairxaff502e2015-08-21 15:36:53 -070085 switch (config->lpe_codec_clk_src) {
86 case LPE_CLK_SRC_XTAL:
87 /* XTAL driven bit2=0 */
88 freq_str = "19.2MHz External Crystal";
89 reg = CLK_SRC_XTAL;
Lee Leahy77ff0b12015-05-05 15:07:29 -070090 break;
Angel Ponsaee7ab22020-03-19 00:31:58 +010091
fdurairxaff502e2015-08-21 15:36:53 -070092 case LPE_CLK_SRC_PLL:
93 /* PLL driven bit2=1 */
94 freq_str = "19.2MHz PLL";
95 reg = CLK_SRC_PLL;
Lee Leahy77ff0b12015-05-05 15:07:29 -070096 break;
Angel Ponsaee7ab22020-03-19 00:31:58 +010097
Lee Leahy77ff0b12015-05-05 15:07:29 -070098 default:
fdurairxaff502e2015-08-21 15:36:53 -070099 reg = CLK_SRC_XTAL;
100 printk(BIOS_DEBUG, "LPE codec clock default to using Crystal\n");
Lee Leahy77ff0b12015-05-05 15:07:29 -0700101 return;
102 }
103
104 /* Default to always running. */
105 reg |= CLK_CTL_ON;
106
Lee Leahy77ff0b12015-05-05 15:07:29 -0700107
108 printk(BIOS_DEBUG, "LPE Audio codec clock set to %sMHz.\n", freq_str);
109
Angel Ponsaee7ab22020-03-19 00:31:58 +0100110 clk_reg = (u32 *)(PMC_BASE_ADDRESS + PLT_CLK_CTL_0);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700111
112 write32(clk_reg, (read32(clk_reg) & ~0x7) | reg);
113}
114
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200115static void lpe_stash_firmware_info(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700116{
117 struct resource *res;
118 struct resource *mmio;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700119
120 res = find_resource(dev, FIRMWARE_PCI_REG_BASE);
121 if (res == NULL) {
122 printk(BIOS_DEBUG, "LPE Firmware memory not found.\n");
123 return;
124 }
Lee Leahy32471722015-04-20 15:20:28 -0700125 printk(BIOS_DEBUG, "LPE FW Resource: 0x%08x\n", (u32) res->base);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700126
127 /* Continue using old way of informing firmware address / size. */
Angel Ponsaee7ab22020-03-19 00:31:58 +0100128 pci_write_config32(dev, FIRMWARE_PCI_REG_BASE, res->base);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700129 pci_write_config32(dev, FIRMWARE_PCI_REG_LENGTH, res->size);
130
Lee Leahy32471722015-04-20 15:20:28 -0700131 /* Also put the address in MMIO space like on C0 BTM */
132 mmio = find_resource(dev, PCI_BASE_ADDRESS_0);
Angel Ponsaee7ab22020-03-19 00:31:58 +0100133 write32((void *)(uintptr_t)(mmio->base + FIRMWARE_REG_BASE_C0), res->base);
134 write32((void *)(uintptr_t)(mmio->base + FIRMWARE_REG_LENGTH_C0), res->size);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700135}
136
Lee Leahy32471722015-04-20 15:20:28 -0700137
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200138static void lpe_init(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700139{
Kyösti Mälkki8950cfb2019-07-13 22:16:25 +0300140 struct soc_intel_braswell_config *config = config_of(dev);
Lee Leahy32471722015-04-20 15:20:28 -0700141
Angel Ponsaee7ab22020-03-19 00:31:58 +0100142 printk(BIOS_SPEW, "%s/%s (%s)\n", __FILE__, __func__, dev_name(dev));
Lee Leahy77ff0b12015-05-05 15:07:29 -0700143
144 lpe_stash_firmware_info(dev);
Lee Leahy77ff0b12015-05-05 15:07:29 -0700145 setup_codec_clock(dev);
146
147 if (config->lpe_acpi_mode)
148 lpe_enable_acpi_mode(dev);
149}
150
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200151static void lpe_read_resources(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -0700152{
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600153 struct resource *res;
Lee Leahy77ff0b12015-05-05 15:07:29 -0700154 pci_dev_read_resources(dev);
155
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600156 /*
Angel Ponsaee7ab22020-03-19 00:31:58 +0100157 * Allocate the BAR1 resource at index 2 to fulfill the Windows driver
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600158 * interface requirements even though the PCI device has only one BAR
159 */
160 res = new_resource(dev, PCI_BASE_ADDRESS_2);
161 res->base = 0;
162 res->size = 0x1000;
163 res->limit = 0xffffffff;
164 res->gran = 12;
165 res->align = 12;
166 res->flags = IORESOURCE_MEM;
167
Angel Ponsaee7ab22020-03-19 00:31:58 +0100168 reserved_ram_resource(dev, FIRMWARE_PCI_REG_BASE, FIRMWARE_PHYS_BASE >> 10,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700169 FIRMWARE_PHYS_LENGTH >> 10);
170}
171
Elyes HAOUASb13fac32018-05-24 22:29:44 +0200172static void lpe_set_resources(struct device *dev)
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600173{
174 struct resource *res;
175
176 res = find_resource(dev, PCI_BASE_ADDRESS_2);
177 if (res != NULL)
178 res->flags |= IORESOURCE_STORED;
179
180 pci_dev_set_resources(dev);
181}
182
Lee Leahy77ff0b12015-05-05 15:07:29 -0700183static const struct device_operations device_ops = {
184 .read_resources = lpe_read_resources,
Matt DeVillier5d6ab452018-01-17 19:39:52 -0600185 .set_resources = lpe_set_resources,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700186 .enable_resources = pci_dev_enable_resources,
187 .init = lpe_init,
Lee Leahy77ff0b12015-05-05 15:07:29 -0700188 .ops_pci = &soc_pci_ops,
189};
190
191static const struct pci_driver southcluster __pci_driver = {
192 .ops = &device_ops,
193 .vendor = PCI_VENDOR_ID_INTEL,
194 .device = LPE_DEVID,
195};