blob: 2bf228b135e3442eccacc652784754f86bad255a [file] [log] [blame]
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauer54309d62009-01-20 22:53:10 +00004 * Copyright (C) 2008-2009 coresystems GmbH
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00005 *
Stefan Reinauera8e11682009-03-11 14:54:18 +00006 * 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.
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000010 *
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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <console/console.h>
22#include <device/device.h>
23#include <device/pci.h>
24#include <device/pci_ids.h>
25
26static void pci_init(struct device *dev)
27{
28 u16 reg16;
Stefan Reinauera8e11682009-03-11 14:54:18 +000029 u8 reg8;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000030
Stefan Reinauera8e11682009-03-11 14:54:18 +000031 /* Enable Bus Master */
32 reg16 = pci_read_config16(dev, PCI_COMMAND);
33 reg16 |= PCI_COMMAND_MASTER;
34 pci_write_config16(dev, PCI_COMMAND, reg16);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000035
Stefan Reinauera8e11682009-03-11 14:54:18 +000036 /* This device has no interrupt */
37 pci_write_config8(dev, 0x3c, 0xff);
38
39 /* disable parity error response and SERR */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000040 reg16 = pci_read_config16(dev, 0x3e);
41 reg16 &= ~(1 << 0);
Stefan Reinauera8e11682009-03-11 14:54:18 +000042 reg16 &= ~(1 << 1);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000043 pci_write_config16(dev, 0x3e, reg16);
44
Stefan Reinauera8e11682009-03-11 14:54:18 +000045 /* Master Latency Count must be set to 0x04! */
46 reg8 = pci_read_config8(dev, 0x1b);
47 reg8 &= 0x07;
48 reg8 |= (0x04 << 3);
49 pci_write_config8(dev, 0x1b, reg8);
Stefan Reinauer54309d62009-01-20 22:53:10 +000050
51 /* Will this improve throughput of bus masters? */
52 pci_write_config8(dev, PCI_MIN_GNT, 0x06);
Stefan Reinauera8e11682009-03-11 14:54:18 +000053
54 /* Clear errors in status registers */
55 reg16 = pci_read_config16(dev, 0x06);
56 //reg16 |= 0xf900;
57 pci_write_config16(dev, 0x06, reg16);
58
59 reg16 = pci_read_config16(dev, 0x1e);
60 // reg16 |= 0xf900;
61 pci_write_config16(dev, 0x1e, reg16);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000062}
63
Stefan Reinauera8e11682009-03-11 14:54:18 +000064#undef PCI_BRIDGE_UPDATE_COMMAND
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000065static void ich_pci_dev_enable_resources(struct device *dev)
66{
67 const struct pci_operations *ops;
68 uint16_t command;
69
70 /* Set the subsystem vendor and device id for mainboard devices */
71 ops = ops_pci(dev);
72 if (dev->on_mainboard && ops && ops->set_subsystem) {
73 printk_debug("%s subsystem <- %02x/%02x\n",
74 dev_path(dev),
75 MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID,
76 MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID);
77 ops->set_subsystem(dev,
78 MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID,
79 MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID);
80 }
81
Stefan Reinauera8e11682009-03-11 14:54:18 +000082 command = pci_read_config16(dev, PCI_COMMAND);
83 command |= dev->command;
84#if PCI_BRIDGE_UPDATE_COMMAND
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000085 /* If we write to PCI_COMMAND, on some systems
86 * this will cause the ROM and APICs not being visible
87 * anymore.
88 */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000089 printk_debug("%s cmd <- %02x\n", dev_path(dev), command);
90 pci_write_config16(dev, PCI_COMMAND, command);
Stefan Reinauera8e11682009-03-11 14:54:18 +000091#else
92 printk_debug("%s cmd <- %02x (NOT WRITTEN!)\n", dev_path(dev), command);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000093#endif
94}
95
96static void ich_pci_bus_enable_resources(struct device *dev)
97{
98 uint16_t ctrl;
99 /* enable IO in command register if there is VGA card
100 * connected with (even it does not claim IO resource)
101 */
102 if (dev->link[0].bridge_ctrl & PCI_BRIDGE_CTL_VGA)
103 dev->command |= PCI_COMMAND_IO;
104 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
105 ctrl |= dev->link[0].bridge_ctrl;
106 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* error check */
107 printk_debug("%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
108 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
109
110 /* This is the reason we need our own pci_bus_enable_resources */
111 ich_pci_dev_enable_resources(dev);
112
113 enable_childrens_resources(dev);
114}
115
116static void set_subsystem(device_t dev, unsigned vendor, unsigned device)
117{
Stefan Reinauera8e11682009-03-11 14:54:18 +0000118 /* NOTE: This is not the default position! */
119 if (!vendor || !device) {
120 pci_write_config32(dev, 0x54,
121 pci_read_config32(dev, PCI_VENDOR_ID));
122 } else {
123 pci_write_config32(dev, 0x54,
124 ((device & 0xffff) << 16) | (vendor & 0xffff));
125 }
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000126}
127
128static struct pci_operations pci_ops = {
129 .set_subsystem = set_subsystem,
130};
131
132static struct device_operations device_ops = {
133 .read_resources = pci_bus_read_resources,
134 .set_resources = pci_dev_set_resources,
135 .enable_resources = ich_pci_bus_enable_resources,
136 .init = pci_init,
137 .scan_bus = pci_scan_bridge,
138 .ops_pci = &pci_ops,
139};
140
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000141/* Desktop */
Uwe Hermannbddc6932008-10-29 13:51:31 +0000142/* 82801BA/CA/DB/EB/ER/FB/FR/FW/FRW/GB/GR/GDH/HB/IB/6300ESB/i3100 */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000143static const struct pci_driver i82801g_pci __pci_driver = {
144 .ops = &device_ops,
Uwe Hermannbddc6932008-10-29 13:51:31 +0000145 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann5d7a1c82008-10-31 18:41:09 +0000146 .device = 0x244e,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000147};
148
149/* Mobile / Ultra Mobile */
Uwe Hermannbddc6932008-10-29 13:51:31 +0000150/* 82801BAM/CAM/DBL/DBM/FBM/GBM/GHM/GU/HBM/HEM */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000151static const struct pci_driver i82801gmu_pci __pci_driver = {
152 .ops = &device_ops,
Uwe Hermannbddc6932008-10-29 13:51:31 +0000153 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann5d7a1c82008-10-31 18:41:09 +0000154 .device = 0x2448,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000155};