blob: 351105eca28fe63a04a400f534d66b2e31cd246e [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Patrick Georgie72a8a32012-11-06 11:05:09 +01003
4#include <device/device.h>
5#include <device/pci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02006#include <device/pci_ops.h>
Patrick Georgie72a8a32012-11-06 11:05:09 +01007#include <device/pci_ids.h>
8#include "i82801ix.h"
9
10static void pci_init(struct device *dev)
11{
12 u16 reg16;
13 u8 reg8;
14
15 /* This device has no interrupt */
16 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0xff);
17
18 /* Master Latency Count must be set to 0x04! */
19 reg8 = pci_read_config8(dev, D30F0_SMLT);
20 reg8 &= 0x07;
21 reg8 |= (0x04 << 3);
22 pci_write_config8(dev, D30F0_SMLT, reg8);
23
24 /* Clear errors in status registers */
25 reg16 = pci_read_config16(dev, PCI_STATUS);
26 //reg16 |= 0xf900;
27 pci_write_config16(dev, PCI_STATUS, reg16);
28
29 reg16 = pci_read_config16(dev, PCI_SEC_STATUS);
30 // reg16 |= 0xf900;
31 pci_write_config16(dev, PCI_SEC_STATUS, reg16);
32}
33
Patrick Georgie72a8a32012-11-06 11:05:09 +010034static struct pci_operations pci_ops = {
Kyösti Mälkkidbd31322019-03-20 17:55:27 +020035 .set_subsystem = pci_dev_set_subsystem,
Patrick Georgie72a8a32012-11-06 11:05:09 +010036};
37
38static struct device_operations device_ops = {
39 .read_resources = pci_bus_read_resources,
40 .set_resources = pci_dev_set_resources,
41 .enable_resources = pci_bus_enable_resources,
42 .init = pci_init,
43 .scan_bus = pci_scan_bridge,
44 .reset_bus = pci_bus_reset,
45 .ops_pci = &pci_ops,
46};
47
48static const unsigned short pci_device_ids[] = {
49 0x244e, /* Desktop */
50 0x2448, /* Mobile */
51 0
52};
53
54static const struct pci_driver ich9_pci __pci_driver = {
55 .ops = &device_ops,
56 .vendor = PCI_VENDOR_ID_INTEL,
57 .devices = pci_device_ids,
58};