blob: 514db3cd64549dc023a78a341d4465cbe59e6ab5 [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.
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000015 */
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 Reinauerdebb11f2008-10-29 04:46:52 +000021#include <device/pci_ids.h>
Stefan Reinauerde3206a2010-02-22 06:09:43 +000022#include "i82801gx.h"
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000023
24static void pci_init(struct device *dev)
25{
26 u16 reg16;
Stefan Reinauera8e11682009-03-11 14:54:18 +000027 u8 reg8;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000028
Stefan Reinauera8e11682009-03-11 14:54:18 +000029 /* Enable Bus Master */
30 reg16 = pci_read_config16(dev, PCI_COMMAND);
31 reg16 |= PCI_COMMAND_MASTER;
32 pci_write_config16(dev, PCI_COMMAND, reg16);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000033
Stefan Reinauera8e11682009-03-11 14:54:18 +000034 /* This device has no interrupt */
Stefan Reinauerde3206a2010-02-22 06:09:43 +000035 pci_write_config8(dev, INTR, 0xff);
Stefan Reinauera8e11682009-03-11 14:54:18 +000036
37 /* disable parity error response and SERR */
Stefan Reinauerde3206a2010-02-22 06:09:43 +000038 reg16 = pci_read_config16(dev, BCTRL);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000039 reg16 &= ~(1 << 0);
Stefan Reinauera8e11682009-03-11 14:54:18 +000040 reg16 &= ~(1 << 1);
Stefan Reinauerde3206a2010-02-22 06:09:43 +000041 pci_write_config16(dev, BCTRL, reg16);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000042
Stefan Reinauera8e11682009-03-11 14:54:18 +000043 /* Master Latency Count must be set to 0x04! */
Stefan Reinauerde3206a2010-02-22 06:09:43 +000044 reg8 = pci_read_config8(dev, SMLT);
Stefan Reinauera8e11682009-03-11 14:54:18 +000045 reg8 &= 0x07;
46 reg8 |= (0x04 << 3);
Stefan Reinauerde3206a2010-02-22 06:09:43 +000047 pci_write_config8(dev, SMLT, reg8);
Stefan Reinauer54309d62009-01-20 22:53:10 +000048
49 /* Will this improve throughput of bus masters? */
50 pci_write_config8(dev, PCI_MIN_GNT, 0x06);
Stefan Reinauera8e11682009-03-11 14:54:18 +000051
52 /* Clear errors in status registers */
Stefan Reinauerde3206a2010-02-22 06:09:43 +000053 reg16 = pci_read_config16(dev, PSTS);
Stefan Reinauera8e11682009-03-11 14:54:18 +000054 //reg16 |= 0xf900;
Stefan Reinauerde3206a2010-02-22 06:09:43 +000055 pci_write_config16(dev, PSTS, reg16);
Stefan Reinauera8e11682009-03-11 14:54:18 +000056
Stefan Reinauerde3206a2010-02-22 06:09:43 +000057 reg16 = pci_read_config16(dev, SECSTS);
Stefan Reinauera8e11682009-03-11 14:54:18 +000058 // reg16 |= 0xf900;
Stefan Reinauerde3206a2010-02-22 06:09:43 +000059 pci_write_config16(dev, SECSTS, reg16);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000060}
61
62static void ich_pci_dev_enable_resources(struct device *dev)
63{
64 const struct pci_operations *ops;
65 uint16_t command;
66
67 /* Set the subsystem vendor and device id for mainboard devices */
68 ops = ops_pci(dev);
69 if (dev->on_mainboard && ops && ops->set_subsystem) {
Sven Schnelle91321022011-03-01 19:58:47 +000070 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
71 dev_path(dev), dev->subsystem_vendor,
72 dev->subsystem_device);
73 ops->set_subsystem(dev, dev->subsystem_vendor,
74 dev->subsystem_device);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000075 }
76
Stefan Reinauera8e11682009-03-11 14:54:18 +000077 command = pci_read_config16(dev, PCI_COMMAND);
78 command |= dev->command;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000079 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000080 pci_write_config16(dev, PCI_COMMAND, command);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000081}
82
83static void ich_pci_bus_enable_resources(struct device *dev)
84{
85 uint16_t ctrl;
86 /* enable IO in command register if there is VGA card
87 * connected with (even it does not claim IO resource)
88 */
Myles Watson894a3472010-06-09 22:41:35 +000089 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000090 dev->command |= PCI_COMMAND_IO;
91 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +000092 ctrl |= dev->link_list->bridge_ctrl;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000093 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* error check */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000094 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000095 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
96
97 /* This is the reason we need our own pci_bus_enable_resources */
98 ich_pci_dev_enable_resources(dev);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000099}
100
Elyes HAOUAS99667032018-05-13 12:47:28 +0200101static void set_subsystem(struct device *dev, unsigned int vendor,
102 unsigned int device)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000103{
Stefan Reinauera8e11682009-03-11 14:54:18 +0000104 /* NOTE: This is not the default position! */
105 if (!vendor || !device) {
106 pci_write_config32(dev, 0x54,
107 pci_read_config32(dev, PCI_VENDOR_ID));
108 } else {
109 pci_write_config32(dev, 0x54,
110 ((device & 0xffff) << 16) | (vendor & 0xffff));
111 }
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000112}
113
114static struct pci_operations pci_ops = {
115 .set_subsystem = set_subsystem,
116};
117
118static struct device_operations device_ops = {
119 .read_resources = pci_bus_read_resources,
120 .set_resources = pci_dev_set_resources,
121 .enable_resources = ich_pci_bus_enable_resources,
122 .init = pci_init,
123 .scan_bus = pci_scan_bridge,
124 .ops_pci = &pci_ops,
125};
126
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000127/* Desktop */
Uwe Hermannbddc6932008-10-29 13:51:31 +0000128/* 82801BA/CA/DB/EB/ER/FB/FR/FW/FRW/GB/GR/GDH/HB/IB/6300ESB/i3100 */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000129static const struct pci_driver i82801g_pci __pci_driver = {
130 .ops = &device_ops,
Uwe Hermannbddc6932008-10-29 13:51:31 +0000131 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann5d7a1c82008-10-31 18:41:09 +0000132 .device = 0x244e,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000133};
134
135/* Mobile / Ultra Mobile */
Uwe Hermannbddc6932008-10-29 13:51:31 +0000136/* 82801BAM/CAM/DBL/DBM/FBM/GBM/GHM/GU/HBM/HEM */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000137static const struct pci_driver i82801gmu_pci __pci_driver = {
138 .ops = &device_ops,
Uwe Hermannbddc6932008-10-29 13:51:31 +0000139 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann5d7a1c82008-10-31 18:41:09 +0000140 .device = 0x2448,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000141};