blob: 3cc7e12f2a7d43898d61ec8568a3c9c8ca4010b7 [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Laurie61680272014-05-05 12:42:35 -05002
Duncan Laurie61680272014-05-05 12:42:35 -05003#include <console/console.h>
4#include <device/device.h>
5#include <device/pci.h>
6#include <device/pci_ids.h>
7#include <device/pci_ops.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02008#include <device/mmio.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -07009#include <soc/adsp.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070010#include <soc/pch.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070011#include <soc/rcba.h>
Angel Pons3cc2c382020-10-23 20:38:23 +020012#include <soc/intel/broadwell/pch/chip.h>
Angel Ponsc423ce22021-04-19 16:13:31 +020013#include <southbridge/intel/lynxpoint/iobp.h>
Duncan Laurie61680272014-05-05 12:42:35 -050014
15static void adsp_init(struct device *dev)
16{
Angel Pons3cc2c382020-10-23 20:38:23 +020017 const struct soc_intel_broadwell_pch_config *config = config_of(dev);
Duncan Laurie61680272014-05-05 12:42:35 -050018 struct resource *bar0, *bar1;
19 u32 tmp32;
20
21 /* Ensure memory and bus master are enabled */
Elyes HAOUASb887adf2020-04-29 10:42:34 +020022 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY);
Duncan Laurie61680272014-05-05 12:42:35 -050023
24 /* Find BAR0 and BAR1 */
25 bar0 = find_resource(dev, PCI_BASE_ADDRESS_0);
26 if (!bar0)
27 return;
28 bar1 = find_resource(dev, PCI_BASE_ADDRESS_1);
29 if (!bar1)
30 return;
31
32 /*
33 * Set LTR value in DSP shim LTR control register to 3ms
34 * SNOOP_REQ[13]=1b SNOOP_SCALE[12:10]=100b (1ms) SNOOP_VAL[9:0]=3h
35 */
36 tmp32 = pch_is_wpt() ? ADSP_SHIM_BASE_WPT : ADSP_SHIM_BASE_LPT;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080037 write32(res2mmio(bar0, tmp32 + ADSP_SHIM_LTRC, 0),
38 ADSP_SHIM_LTRC_VALUE);
Duncan Laurie61680272014-05-05 12:42:35 -050039
40 /* Program VDRTCTL2 D19:F0:A8[31:0] = 0x00000fff */
41 pci_write_config32(dev, ADSP_PCI_VDRTCTL2, ADSP_VDRTCTL2_VALUE);
42
43 /* Program ADSP IOBP VDLDAT1 to 0x040100 */
44 pch_iobp_write(ADSP_IOBP_VDLDAT1, ADSP_VDLDAT1_VALUE);
45
46 /* Set D3 Power Gating Enable in D19:F0:A0 based on PCH type */
47 tmp32 = pci_read_config32(dev, ADSP_PCI_VDRTCTL0);
Duncan Lauried9f95072014-10-01 13:47:20 -070048 if (pch_is_wpt()) {
49 if (config->adsp_d3_pg_enable) {
50 tmp32 &= ~ADSP_VDRTCTL0_D3PGD_WPT;
51 if (config->adsp_sram_pg_enable)
52 tmp32 &= ~ADSP_VDRTCTL0_D3SRAMPGD_WPT;
53 else
54 tmp32 |= ADSP_VDRTCTL0_D3SRAMPGD_WPT;
Duncan Laurie3ed4d392014-07-31 10:41:56 -070055 } else {
Duncan Lauried9f95072014-10-01 13:47:20 -070056 tmp32 |= ADSP_VDRTCTL0_D3PGD_WPT;
Duncan Laurie3ed4d392014-07-31 10:41:56 -070057 }
Duncan Laurie61680272014-05-05 12:42:35 -050058 } else {
Duncan Lauried9f95072014-10-01 13:47:20 -070059 if (config->adsp_d3_pg_enable) {
Duncan Laurie3ed4d392014-07-31 10:41:56 -070060 tmp32 &= ~ADSP_VDRTCTL0_D3PGD_LPT;
Duncan Lauried9f95072014-10-01 13:47:20 -070061 if (config->adsp_sram_pg_enable)
62 tmp32 &= ~ADSP_VDRTCTL0_D3SRAMPGD_LPT;
63 else
64 tmp32 |= ADSP_VDRTCTL0_D3SRAMPGD_LPT;
65 } else {
66 tmp32 |= ADSP_VDRTCTL0_D3PGD_LPT;
Duncan Laurie3ed4d392014-07-31 10:41:56 -070067 }
Duncan Laurie61680272014-05-05 12:42:35 -050068 }
69 pci_write_config32(dev, ADSP_PCI_VDRTCTL0, tmp32);
70
71 /* Set PSF Snoop to SA, RCBA+0x3350[10]=1b */
72 RCBA32_OR(0x3350, (1 << 10));
73
74 /* Set DSP IOBP PMCTL 0x1e0=0x3f */
75 pch_iobp_write(ADSP_IOBP_PMCTL, ADSP_PMCTL_VALUE);
76
77 if (config->sio_acpi_mode) {
Kyösti Mälkki4abc7312021-01-12 17:46:30 +020078 /* Configure for ACPI mode */
Duncan Laurie61680272014-05-05 12:42:35 -050079 printk(BIOS_INFO, "ADSP: Enable ACPI Mode IRQ3\n");
80
Angel Pons34bd6ba2021-04-19 22:38:55 +020081 /* Save BAR0 and BAR1 */
82 struct pch_acpi_device_state *state = get_acpi_device_state(PCH_ACPI_ADSP);
83 state->enable = 1;
84 state->bar0 = (u32)bar0->base;
85 state->bar1 = (u32)bar1->base;
Duncan Laurie61680272014-05-05 12:42:35 -050086
87 /* Set PCI Config Disable Bit */
88 pch_iobp_update(ADSP_IOBP_PCICFGCTL, ~0, ADSP_PCICFGCTL_PCICD);
89
90 /* Set interrupt de-assert/assert opcode override to IRQ3 */
91 pch_iobp_write(ADSP_IOBP_VDLDAT2, ADSP_IOBP_ACPI_IRQ3);
92
93 /* Enable IRQ3 in RCBA */
94 RCBA32_OR(ACPIIRQEN, ADSP_ACPI_IRQEN);
95
96 /* Set ACPI Interrupt Enable Bit */
97 pch_iobp_update(ADSP_IOBP_PCICFGCTL, ~ADSP_PCICFGCTL_SPCBAD,
98 ADSP_PCICFGCTL_ACPIIE);
99
100 /* Put ADSP in D3hot */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800101 tmp32 = read32(res2mmio(bar1, PCH_PCS, 0));
Duncan Laurie61680272014-05-05 12:42:35 -0500102 tmp32 |= PCH_PCS_PS_D3HOT;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800103 write32(res2mmio(bar1, PCH_PCS, 0), tmp32);
Duncan Laurie61680272014-05-05 12:42:35 -0500104 } else {
105 printk(BIOS_INFO, "ADSP: Enable PCI Mode IRQ23\n");
106
107 /* Configure for PCI mode */
Elyes HAOUASfac28932020-05-03 08:30:09 +0200108 pci_write_config8(dev, PCI_INTERRUPT_LINE, ADSP_PCI_IRQ);
Duncan Laurie61680272014-05-05 12:42:35 -0500109
110 /* Clear ACPI Interrupt Enable Bit */
111 pch_iobp_update(ADSP_IOBP_PCICFGCTL,
112 ~(ADSP_PCICFGCTL_SPCBAD | ADSP_PCICFGCTL_ACPIIE), 0);
113 }
114}
115
116static struct device_operations adsp_ops = {
Elyes HAOUAS1d191272018-11-27 12:23:48 +0100117 .read_resources = pci_dev_read_resources,
118 .set_resources = pci_dev_set_resources,
119 .enable_resources = pci_dev_enable_resources,
120 .init = adsp_init,
Angel Ponscb2080f2020-10-23 15:45:44 +0200121 .ops_pci = &pci_dev_ops_pci,
Duncan Laurie61680272014-05-05 12:42:35 -0500122};
123
124static const unsigned short pci_device_ids[] = {
125 0x9c36, /* LynxPoint */
126 0x9cb6, /* WildcatPoint */
127 0
128};
129
130static const struct pci_driver pch_adsp __pci_driver = {
131 .ops = &adsp_ops,
132 .vendor = PCI_VENDOR_ID_INTEL,
133 .devices = pci_device_ids,
134};