1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/mmio.h>
4 #include <device/pci_ops.h>
5 #include <acpi/acpi_gnvs.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>
12 #include <soc/iomap.h>
15 #include <soc/device_nvs.h>
16 #include <soc/pattrs.h>
17 #include <soc/pci_devs.h>
19 #include <soc/ramstage.h>
23 * The LPE audio devices needs 1MiB of memory reserved aligned to a 512MiB
24 * address. Just take 1MiB @ 512MiB.
26 #define FIRMWARE_PHYS_BASE (512 << 20)
27 #define FIRMWARE_PHYS_LENGTH (1 << 20)
28 #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)
33 static void assign_device_nvs(struct device
*dev
, u32
*field
, unsigned int index
)
37 res
= probe_resource(dev
, index
);
42 static void lpe_enable_acpi_mode(struct device
*dev
)
44 static const struct reg_script ops
[] = {
45 /* Disable PCI interrupt, enable Memory and Bus Master */
46 REG_PCI_OR16(PCI_COMMAND
,
47 PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
| PCI_COMMAND_INT_DISABLE
),
49 /* Enable ACPI mode */
50 REG_IOSF_OR(IOSF_PORT_0x58
, LPE_PCICFGCTR1
,
51 LPE_PCICFGCTR1_PCI_CFG_DIS
| LPE_PCICFGCTR1_ACPI_INT_EN
),
55 struct device_nvs
*dev_nvs
= acpi_get_device_nvs();
57 /* Save BAR0, BAR1, and firmware base to ACPI NVS */
58 assign_device_nvs(dev
, &dev_nvs
->lpe_bar0
, PCI_BASE_ADDRESS_0
);
59 assign_device_nvs(dev
, &dev_nvs
->lpe_bar1
, PCI_BASE_ADDRESS_1
);
60 assign_device_nvs(dev
, &dev_nvs
->lpe_fw
, FIRMWARE_PCI_REG_BASE
);
62 /* Device is enabled in ACPI mode */
65 /* Put device in ACPI mode */
66 reg_script_run_on_dev(dev
, ops
);
69 static void setup_codec_clock(struct device
*dev
)
73 struct soc_intel_baytrail_config
*config
;
76 config
= config_of(dev
);
77 switch (config
->lpe_codec_clk_freq
) {
80 reg
= CLK_FREQ_19P2MHZ
;
89 printk(BIOS_DEBUG
, "LPE codec clock not required.\n");
93 /* Default to always running. */
96 if (config
->lpe_codec_clk_num
< 0 || config
->lpe_codec_clk_num
> 5) {
97 printk(BIOS_DEBUG
, "Invalid LPE codec clock number.\n");
101 printk(BIOS_DEBUG
, "LPE Audio codec clock set to %sMHz.\n", freq_str
);
103 clk_reg
= (u32
*)(PMC_BASE_ADDRESS
+ PLT_CLK_CTL_0
);
104 clk_reg
+= config
->lpe_codec_clk_num
;
106 write32(clk_reg
, (read32(clk_reg
) & ~0x7) | reg
);
109 static void lpe_stash_firmware_info(struct device
*dev
)
111 struct resource
*res
;
112 struct resource
*mmio
;
113 const struct pattrs
*pattrs
= pattrs_get();
115 res
= probe_resource(dev
, FIRMWARE_PCI_REG_BASE
);
117 printk(BIOS_DEBUG
, "LPE Firmware memory not found.\n");
121 /* Continue using old way of informing firmware address / size. */
122 pci_write_config32(dev
, FIRMWARE_PCI_REG_BASE
, res
->base
);
123 pci_write_config32(dev
, FIRMWARE_PCI_REG_LENGTH
, res
->size
);
125 /* C0 and later steppings use an offset in the MMIO space. */
126 if (pattrs
->stepping
>= STEP_C0
) {
127 mmio
= find_resource(dev
, PCI_BASE_ADDRESS_0
);
128 write32((u32
*)(uintptr_t)(mmio
->base
+ FIRMWARE_REG_BASE_C0
),
130 write32((u32
*)(uintptr_t)(mmio
->base
+ FIRMWARE_REG_LENGTH_C0
),
135 static void lpe_init(struct device
*dev
)
137 struct soc_intel_baytrail_config
*config
= config_of(dev
);
139 lpe_stash_firmware_info(dev
);
140 setup_codec_clock(dev
);
142 if (config
->lpe_acpi_mode
)
143 lpe_enable_acpi_mode(dev
);
146 static void lpe_read_resources(struct device
*dev
)
148 pci_dev_read_resources(dev
);
150 reserved_ram_range(dev
, FIRMWARE_PCI_REG_BASE
, FIRMWARE_PHYS_BASE
,
151 FIRMWARE_PHYS_LENGTH
);
154 static const struct device_operations device_ops
= {
155 .read_resources
= lpe_read_resources
,
156 .set_resources
= pci_dev_set_resources
,
157 .enable_resources
= pci_dev_enable_resources
,
159 .ops_pci
= &soc_pci_ops
,
162 static const struct pci_driver southcluster __pci_driver
= {
164 .vendor
= PCI_VID_INTEL
,