blob: 4d855b30b58edf860fe43bc475eba7c783862ff8 [file] [log] [blame]
Stefan Reinauer2e73e192010-01-17 13:52:50 +00001/*
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00002 * This file is part of the coreboot project.
Stefan Reinauer2e73e192010-01-17 13:52:50 +00003 *
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00004 * Copyright (C) 2008-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
Stefan Reinauer2e73e192010-01-17 13:52:50 +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
Uwe Hermannc70e9fc2010-02-15 23:10:19 +000018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer2e73e192010-01-17 13:52:50 +000019 */
20
21#include <arch/io.h>
22#include <device/device.h>
23#include <device/pci.h>
24#include <device/pci_ops.h>
25#include <device/pci_ids.h>
26#include <console/console.h>
27#include <device/cardbus.h>
28#include "pci7420.h"
29#include "chip.h"
30
31static void pci7420_firewire_init(device_t dev)
32{
33 u8 reg8;
34
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000035 printk(BIOS_DEBUG, "TI PCI7420/7620 FireWire init\n");
Stefan Reinauer2e73e192010-01-17 13:52:50 +000036
37#ifdef ODD_IRQ_FIXUP
38 /* This is a workaround for buggy kernels. This should
39 * probably be read from the device tree, but as long
40 * as only one mainboard is using this bridge it does
41 * not matter
42 */
43 pci_write_config8(dev, PCI_INTERRUPT_PIN, INTC);
44#endif
45}
46
47static struct device_operations ti_pci7420_firewire_ops = {
48 .read_resources = pci_dev_read_resources,
49 .set_resources = pci_dev_set_resources,
50 .enable_resources = pci_dev_enable_resources,
51 .init = pci7420_firewire_init,
52};
53
54static const struct pci_driver ti_pci7420_driver __pci_driver = {
55 .ops = &ti_pci7420_firewire_ops,
56 .vendor = 0x104c,
57 .device = 0x802e,
58};
59
60static void ti_pci7420_firewire_enable_dev(device_t dev)
61{
62 /* Nothing here yet */
63}
64
65struct chip_operations southbridge_ti_pci7420_firewire_ops = {
66 CHIP_NAME("Texas Instruments PCI7420/7620 FireWire (IEEE 1394)")
67 .enable_dev = ti_pci7420_firewire_enable_dev,
68};