blob: 2a6dc1744a2c6f3da8392bd0b766a95e6c92fdf7 [file] [log] [blame]
Duncan Laurie61680272014-05-05 12:42:35 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <cbmem.h>
21#include <console/console.h>
22#include <device/device.h>
23#include <device/pci.h>
24#include <device/pci_ids.h>
25#include <device/pci_ops.h>
26#include <arch/io.h>
27#include <delay.h>
28#include <broadwell/adsp.h>
29#include <broadwell/device_nvs.h>
30#include <broadwell/iobp.h>
31#include <broadwell/nvs.h>
32#include <broadwell/pch.h>
33#include <broadwell/ramstage.h>
34#include <broadwell/rcba.h>
35#include <chip.h>
36
37static void adsp_init(struct device *dev)
38{
39 config_t *config = dev->chip_info;
40 struct resource *bar0, *bar1;
41 u32 tmp32;
42
43 /* Ensure memory and bus master are enabled */
44 tmp32 = pci_read_config32(dev, PCI_COMMAND);
45 tmp32 |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
46 pci_write_config32(dev, PCI_COMMAND, tmp32);
47
48 /* Find BAR0 and BAR1 */
49 bar0 = find_resource(dev, PCI_BASE_ADDRESS_0);
50 if (!bar0)
51 return;
52 bar1 = find_resource(dev, PCI_BASE_ADDRESS_1);
53 if (!bar1)
54 return;
55
56 /*
57 * Set LTR value in DSP shim LTR control register to 3ms
58 * SNOOP_REQ[13]=1b SNOOP_SCALE[12:10]=100b (1ms) SNOOP_VAL[9:0]=3h
59 */
60 tmp32 = pch_is_wpt() ? ADSP_SHIM_BASE_WPT : ADSP_SHIM_BASE_LPT;
61 write32(bar0->base + tmp32 + ADSP_SHIM_LTRC, ADSP_SHIM_LTRC_VALUE);
62
63 /* Program VDRTCTL2 D19:F0:A8[31:0] = 0x00000fff */
64 pci_write_config32(dev, ADSP_PCI_VDRTCTL2, ADSP_VDRTCTL2_VALUE);
65
66 /* Program ADSP IOBP VDLDAT1 to 0x040100 */
67 pch_iobp_write(ADSP_IOBP_VDLDAT1, ADSP_VDLDAT1_VALUE);
68
69 /* Set D3 Power Gating Enable in D19:F0:A0 based on PCH type */
70 tmp32 = pci_read_config32(dev, ADSP_PCI_VDRTCTL0);
71 if (pch_is_wpt()) {
72 tmp32 &= ~ADSP_VDRTCTL0_D3PGD_WPT;
73 tmp32 &= ~ADSP_VDRTCTL0_D3SRAMPGD_WPT;
74 } else {
75 tmp32 &= ~ADSP_VDRTCTL0_D3PGD_LPT;
76 tmp32 &= ~ADSP_VDRTCTL0_D3SRAMPGD_LPT;
77 }
78 pci_write_config32(dev, ADSP_PCI_VDRTCTL0, tmp32);
79
80 /* Set PSF Snoop to SA, RCBA+0x3350[10]=1b */
81 RCBA32_OR(0x3350, (1 << 10));
82
83 /* Set DSP IOBP PMCTL 0x1e0=0x3f */
84 pch_iobp_write(ADSP_IOBP_PMCTL, ADSP_PMCTL_VALUE);
85
86 if (config->sio_acpi_mode) {
87 /* Configure for ACPI mode */
88 global_nvs_t *gnvs;
89
90 printk(BIOS_INFO, "ADSP: Enable ACPI Mode IRQ3\n");
91
92 /* Find ACPI NVS to update BARs */
93 gnvs = (global_nvs_t *)cbmem_find(CBMEM_ID_ACPI_GNVS);
94 if (!gnvs) {
95 printk(BIOS_ERR, "Unable to locate Global NVS\n");
96 return;
97 }
98
99 /* Save BAR0 and BAR1 to ACPI NVS */
100 gnvs->dev.bar0[SIO_NVS_ADSP] = (u32)bar0->base;
101 gnvs->dev.bar1[SIO_NVS_ADSP] = (u32)bar1->base;
102 gnvs->dev.enable[SIO_NVS_ADSP] = 1;
103
104 /* Set PCI Config Disable Bit */
105 pch_iobp_update(ADSP_IOBP_PCICFGCTL, ~0, ADSP_PCICFGCTL_PCICD);
106
107 /* Set interrupt de-assert/assert opcode override to IRQ3 */
108 pch_iobp_write(ADSP_IOBP_VDLDAT2, ADSP_IOBP_ACPI_IRQ3);
109
110 /* Enable IRQ3 in RCBA */
111 RCBA32_OR(ACPIIRQEN, ADSP_ACPI_IRQEN);
112
113 /* Set ACPI Interrupt Enable Bit */
114 pch_iobp_update(ADSP_IOBP_PCICFGCTL, ~ADSP_PCICFGCTL_SPCBAD,
115 ADSP_PCICFGCTL_ACPIIE);
116
117 /* Put ADSP in D3hot */
118 tmp32 = read32(bar1->base + PCH_PCS);
119 tmp32 |= PCH_PCS_PS_D3HOT;
120 write32(bar1->base + PCH_PCS, tmp32);
121 } else {
122 printk(BIOS_INFO, "ADSP: Enable PCI Mode IRQ23\n");
123
124 /* Configure for PCI mode */
125 pci_write_config32(dev, PCI_INTERRUPT_LINE, ADSP_PCI_IRQ);
126
127 /* Clear ACPI Interrupt Enable Bit */
128 pch_iobp_update(ADSP_IOBP_PCICFGCTL,
129 ~(ADSP_PCICFGCTL_SPCBAD | ADSP_PCICFGCTL_ACPIIE), 0);
130 }
131}
132
133static struct device_operations adsp_ops = {
134 .read_resources = &pci_dev_read_resources,
135 .set_resources = &pci_dev_set_resources,
136 .enable_resources = &pci_dev_enable_resources,
137 .init = &adsp_init,
138 .ops_pci = &broadwell_pci_ops,
139};
140
141static const unsigned short pci_device_ids[] = {
142 0x9c36, /* LynxPoint */
143 0x9cb6, /* WildcatPoint */
144 0
145};
146
147static const struct pci_driver pch_adsp __pci_driver = {
148 .ops = &adsp_ops,
149 .vendor = PCI_VENDOR_ID_INTEL,
150 .devices = pci_device_ids,
151};
152