blob: a36fdc617cc6229fd282ffe8697042502686f103 [file] [log] [blame]
Patrick Georgie72a8a32012-11-06 11:05:09 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * 2012 secunet Security Networks AG
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of
10 * the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Patrick Georgie72a8a32012-11-06 11:05:09 +010016 */
17
18#include <console/console.h>
19#include <device/device.h>
20#include <device/pci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020021#include <device/pci_ops.h>
Patrick Georgie72a8a32012-11-06 11:05:09 +010022#include <device/pciexp.h>
23#include <device/pci_ids.h>
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +010024#include <southbridge/intel/common/pciehp.h>
25#include "chip.h"
Patrick Georgie72a8a32012-11-06 11:05:09 +010026
27static void pci_init(struct device *dev)
28{
29 u16 reg16;
30 u32 reg32;
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +010031 struct southbridge_intel_i82801ix_config *config = dev->chip_info;
Patrick Georgie72a8a32012-11-06 11:05:09 +010032
33 printk(BIOS_DEBUG, "Initializing ICH9 PCIe root port.\n");
34
35 /* Enable Bus Master */
36 reg32 = pci_read_config32(dev, PCI_COMMAND);
37 reg32 |= PCI_COMMAND_MASTER;
38 pci_write_config32(dev, PCI_COMMAND, reg32);
39
40 /* Set Cache Line Size to 0x10 */
41 // This has no effect but the OS might expect it
42 pci_write_config8(dev, 0x0c, 0x10);
43
44 reg16 = pci_read_config16(dev, 0x3e);
45 reg16 &= ~(1 << 0); /* disable parity error response */
46 reg16 |= (1 << 2); /* ISA enable */
47 pci_write_config16(dev, 0x3e, reg16);
48
49 /* Enable IO xAPIC on this PCIe port */
50 reg32 = pci_read_config32(dev, 0xd8);
51 reg32 |= (1 << 7);
52 pci_write_config32(dev, 0xd8, reg32);
53
54 /* Enable Backbone Clock Gating */
55 reg32 = pci_read_config32(dev, 0xe1);
56 reg32 |= (1 << 3) | (1 << 2) | (1 << 1) | (1 << 0);
57 pci_write_config32(dev, 0xe1, reg32);
58
Patrick Georgie72a8a32012-11-06 11:05:09 +010059 /* Set VC0 transaction class */
Kyösti Mälkki9b143e12013-07-26 08:35:09 +030060 reg32 = pci_read_config32(dev, 0x114);
Patrick Georgie72a8a32012-11-06 11:05:09 +010061 reg32 &= 0xffffff00;
62 reg32 |= 1;
Kyösti Mälkki9b143e12013-07-26 08:35:09 +030063 pci_write_config32(dev, 0x114, reg32);
Patrick Georgie72a8a32012-11-06 11:05:09 +010064
65 /* Mask completion timeouts */
Kyösti Mälkki9b143e12013-07-26 08:35:09 +030066 reg32 = pci_read_config32(dev, 0x148);
Patrick Georgie72a8a32012-11-06 11:05:09 +010067 reg32 |= (1 << 14);
Kyösti Mälkki9b143e12013-07-26 08:35:09 +030068 pci_write_config32(dev, 0x148, reg32);
Patrick Georgie72a8a32012-11-06 11:05:09 +010069
70 /* Lock R/WO Correctable Error Mask. */
Kyösti Mälkki9b143e12013-07-26 08:35:09 +030071 pci_write_config32(dev, 0x154, pci_read_config32(dev, 0x154));
Patrick Georgie72a8a32012-11-06 11:05:09 +010072
73 /* Clear errors in status registers */
74 reg16 = pci_read_config16(dev, 0x06);
75 pci_write_config16(dev, 0x06, reg16);
76 reg16 = pci_read_config16(dev, 0x1e);
77 pci_write_config16(dev, 0x1e, reg16);
78
79 /* Get configured ASPM state */
80 const enum aspm_type apmc = pci_read_config32(dev, 0x50) & 3;
81
82 /* If both L0s and L1 enabled then set root port 0xE8[1]=1 */
83 if (apmc == PCIE_ASPM_BOTH) {
84 reg32 = pci_read_config32(dev, 0xe8);
85 reg32 |= (1 << 1);
86 pci_write_config32(dev, 0xe8, reg32);
87 }
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +010088
89 /* Enable expresscard hotplug events. */
90 if (config->pcie_hotplug_map[PCI_FUNC(dev->path.pci.devfn)]) {
91 pci_write_config32(dev, 0xd8,
92 pci_read_config32(dev, 0xd8)
93 | (1 << 30));
94 pci_write_config16(dev, 0x42, 0x142);
95 }
Patrick Georgie72a8a32012-11-06 11:05:09 +010096}
97
Elyes HAOUAS8aa50732018-05-13 13:34:58 +020098static void pcie_set_subsystem(struct device *dev, unsigned vendor,
99 unsigned device)
Patrick Georgie72a8a32012-11-06 11:05:09 +0100100{
101 /* NOTE: 0x94 is not the default position! */
102 if (!vendor || !device) {
103 pci_write_config32(dev, 0x94,
104 pci_read_config32(dev, 0));
105 } else {
106 pci_write_config32(dev, 0x94,
107 ((device & 0xffff) << 16) | (vendor & 0xffff));
108 }
109}
110
Elyes HAOUAS8aa50732018-05-13 13:34:58 +0200111static void pch_pciexp_scan_bridge(struct device *dev)
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100112{
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100113 struct southbridge_intel_i82801ix_config *config = dev->chip_info;
114
115 /* Normal PCIe Scan */
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200116 pciexp_scan_bridge(dev);
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100117
118 if (config->pcie_hotplug_map[PCI_FUNC(dev->path.pci.devfn)]) {
119 intel_acpi_pcie_hotplug_scan_slot(dev->link_list);
120 }
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100121}
122
Patrick Georgie72a8a32012-11-06 11:05:09 +0100123static struct pci_operations pci_ops = {
124 .set_subsystem = pcie_set_subsystem,
125};
126
127static struct device_operations device_ops = {
128 .read_resources = pci_bus_read_resources,
129 .set_resources = pci_dev_set_resources,
130 .enable_resources = pci_bus_enable_resources,
131 .init = pci_init,
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +0100132 .scan_bus = pch_pciexp_scan_bridge,
Patrick Georgie72a8a32012-11-06 11:05:09 +0100133 .ops_pci = &pci_ops,
134};
135
136/* 82801Ix (ICH9DH/ICH9DO/ICH9R/ICH9/ICH9M-E/ICH9M) */
137static const unsigned short pci_device_ids[] = {
138 0x2940, /* Port 1 */
139 0x2942, /* Port 2 */
140 0x2944, /* Port 3 */
141 0x2946, /* Port 4 */
142 0x2948, /* Port 5 */
143 0x294a, /* Port 6 */
144 0
145};
146static const struct pci_driver ich9_pcie __pci_driver = {
147 .ops = &device_ops,
148 .vendor = PCI_VENDOR_ID_INTEL,
149 .devices = pci_device_ids,
150};