blob: c3b82577e1dda25ba96dd99f1f797cf93cdf3769 [file] [log] [blame]
Stefan Reinauer8e073822012-04-04 00:07:22 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Stefan Reinauer8e073822012-04-04 00:07:22 +020015 */
16
17#include <console/console.h>
18#include <device/device.h>
19#include <device/pci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020020#include <device/pci_ops.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +020021#include <device/pci_ids.h>
22#include "pch.h"
23
24static void pci_init(struct device *dev)
25{
26 u16 reg16;
27 u8 reg8;
28
29 printk(BIOS_DEBUG, "PCI init.\n");
30 /* Enable Bus Master */
31 reg16 = pci_read_config16(dev, PCI_COMMAND);
32 reg16 |= PCI_COMMAND_MASTER;
33 pci_write_config16(dev, PCI_COMMAND, reg16);
34
35 /* This device has no interrupt */
36 pci_write_config8(dev, INTR, 0xff);
37
38 /* disable parity error response and SERR */
39 reg16 = pci_read_config16(dev, BCTRL);
40 reg16 &= ~(1 << 0);
41 reg16 &= ~(1 << 1);
42 pci_write_config16(dev, BCTRL, reg16);
43
44 /* Master Latency Count must be set to 0x04! */
45 reg8 = pci_read_config8(dev, SMLT);
46 reg8 &= 0x07;
47 reg8 |= (0x04 << 3);
48 pci_write_config8(dev, SMLT, reg8);
49
50 /* Will this improve throughput of bus masters? */
51 pci_write_config8(dev, PCI_MIN_GNT, 0x06);
52
53 /* Clear errors in status registers */
54 reg16 = pci_read_config16(dev, PSTS);
55 //reg16 |= 0xf900;
56 pci_write_config16(dev, PSTS, reg16);
57
58 reg16 = pci_read_config16(dev, SECSTS);
59 // reg16 |= 0xf900;
60 pci_write_config16(dev, SECSTS, reg16);
61}
62
Stefan Reinauer8e073822012-04-04 00:07:22 +020063static void ich_pci_dev_enable_resources(struct device *dev)
64{
Stefan Reinauer8e073822012-04-04 00:07:22 +020065 uint16_t command;
66
Stefan Reinauer8e073822012-04-04 00:07:22 +020067 command = pci_read_config16(dev, PCI_COMMAND);
68 command |= dev->command;
Stefan Reinauer8e073822012-04-04 00:07:22 +020069 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
70 pci_write_config16(dev, PCI_COMMAND, command);
Stefan Reinauer8e073822012-04-04 00:07:22 +020071}
72
73static void ich_pci_bus_enable_resources(struct device *dev)
74{
75 uint16_t ctrl;
76 /* enable IO in command register if there is VGA card
77 * connected with (even it does not claim IO resource)
78 */
79 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
80 dev->command |= PCI_COMMAND_IO;
81 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
82 ctrl |= dev->link_list->bridge_ctrl;
83 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* error check */
84 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
85 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
86
87 /* This is the reason we need our own pci_bus_enable_resources */
88 ich_pci_dev_enable_resources(dev);
89}
90
Stefan Reinauer8e073822012-04-04 00:07:22 +020091static struct pci_operations pci_ops = {
Kyösti Mälkkidbd31322019-03-20 17:55:27 +020092 .set_subsystem = pci_dev_set_subsystem,
Stefan Reinauer8e073822012-04-04 00:07:22 +020093};
94
95static struct device_operations device_ops = {
96 .read_resources = pci_bus_read_resources,
97 .set_resources = pci_dev_set_resources,
98 .enable_resources = ich_pci_bus_enable_resources,
99 .init = pci_init,
100 .scan_bus = pci_scan_bridge,
101 .ops_pci = &pci_ops,
102};
103
104static const struct pci_driver pch_pci __pci_driver = {
105 .ops = &device_ops,
106 .vendor = PCI_VENDOR_ID_INTEL,
107 .device = 0x2448,
108};