blob: b3ab59318d91a7a2817e6615efba1ef3fc0a2c37 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Cobalt Qube/Raq PCI support
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 1995, 1996, 1997, 2002, 2003 by Ralf Baechle
9 * Copyright (C) 2001, 2002, 2003 by Liam Davies (ldavies@agile.tv)
10 */
11#include <linux/types.h>
12#include <linux/pci.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/io.h>
17#include <asm/gt64120.h>
18
Yoichi Yuasa44320f22007-05-10 20:00:55 +090019#include <cobalt.h>
Yoichi Yuasad5ab1a62007-09-13 23:51:26 +090020#include <irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Yoichi Yuasab4126e82007-10-02 22:54:41 +090022/*
23 * PCI slot numbers
24 */
25#define COBALT_PCICONF_CPU 0x06
26#define COBALT_PCICONF_ETH0 0x07
27#define COBALT_PCICONF_RAQSCSI 0x08
28#define COBALT_PCICONF_VIA 0x09
29#define COBALT_PCICONF_PCISLOT 0x0A
30#define COBALT_PCICONF_ETH1 0x0C
31
32/*
33 * The Cobalt board ID information. The boards have an ID number wired
34 * into the VIA that is available in the high nibble of register 94.
35 */
36#define VIA_COBALT_BRD_ID_REG 0x94
37#define VIA_COBALT_BRD_REG_to_ID(reg) ((unsigned char)(reg) >> 4)
38
Greg Kroah-Hartman28eb0e42012-12-21 14:04:39 -080039static void qube_raq_galileo_early_fixup(struct pci_dev *dev)
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000040{
41 if (dev->devfn == PCI_DEVFN(0, 0) &&
42 (dev->class >> 8) == PCI_CLASS_MEMORY_OTHER) {
43
44 dev->class = (PCI_CLASS_BRIDGE_HOST << 8) | (dev->class & 0xff);
45
46 printk(KERN_INFO "Galileo: fixed bridge class\n");
47 }
48}
49
50DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_MARVELL, PCI_DEVICE_ID_MARVELL_GT64111,
51 qube_raq_galileo_early_fixup);
52
Greg Kroah-Hartman28eb0e42012-12-21 14:04:39 -080053static void qube_raq_via_bmIDE_fixup(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 unsigned short cfgword;
56 unsigned char lt;
57
58 /* Enable Bus Mastering and fast back to back. */
59 pci_read_config_word(dev, PCI_COMMAND, &cfgword);
60 cfgword |= (PCI_COMMAND_FAST_BACK | PCI_COMMAND_MASTER);
61 pci_write_config_word(dev, PCI_COMMAND, cfgword);
62
63 /* Enable both ide interfaces. ROM only enables primary one. */
64 pci_write_config_byte(dev, 0x40, 0xb);
65
66 /* Set latency timer to reasonable value. */
67 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lt);
68 if (lt < 64)
69 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 64);
Peter Horton52378442006-01-29 21:33:48 +000070 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
73DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_1,
74 qube_raq_via_bmIDE_fixup);
75
Greg Kroah-Hartman28eb0e42012-12-21 14:04:39 -080076static void qube_raq_galileo_fixup(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000078 if (dev->devfn != PCI_DEVFN(0, 0))
79 return;
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 /* Fix PCI latency-timer and cache-line-size values in Galileo
82 * host bridge.
83 */
84 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 64);
Peter Horton52378442006-01-29 21:33:48 +000085 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /*
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000088 * The code described by the comment below has been removed
89 * as it causes bus mastering by the Ethernet controllers
90 * to break under any kind of network load. We always set
91 * the retry timeouts to their maximum.
92 *
93 * --x--x--x--x--x--x--x--x--x--x--x--x--x--x--x--x--x--x--x--x--
94 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 * On all machines prior to Q2, we had the STOP line disconnected
Ralf Baechle70342282013-01-22 12:59:30 +010096 * from Galileo to VIA on PCI. The new Galileo does not function
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * correctly unless we have it connected.
98 *
99 * Therefore we must set the disconnect/retry cycle values to
100 * something sensible when using the new Galileo.
101 */
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000102
Ralf Baechle70342282013-01-22 12:59:30 +0100103 printk(KERN_INFO "Galileo: revision %u\n", dev->revision);
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000104
105#if 0
Auke Kok44c10132007-06-08 15:46:36 -0700106 if (dev->revision >= 0x10) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 /* New Galileo, assumes PCI stop line to VIA is connected. */
Yoichi Yuasa56ae5832006-10-14 00:25:04 +0900108 GT_WRITE(GT_PCI0_TOR_OFS, 0x4020);
Auke Kok44c10132007-06-08 15:46:36 -0700109 } else if (dev->revision == 0x1 || dev->revision == 0x2)
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000110#endif
111 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 signed int timeo;
113 /* XXX WE MUST DO THIS ELSE GALILEO LOCKS UP! -DaveM */
Yoichi Yuasa56ae5832006-10-14 00:25:04 +0900114 timeo = GT_READ(GT_PCI0_TOR_OFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 /* Old Galileo, assumes PCI STOP line to VIA is disconnected. */
Yoichi Yuasa56ae5832006-10-14 00:25:04 +0900116 GT_WRITE(GT_PCI0_TOR_OFS,
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000117 (0xff << 16) | /* retry count */
118 (0xff << 8) | /* timeout 1 */
Yoichi Yuasa56ae5832006-10-14 00:25:04 +0900119 0xff); /* timeout 0 */
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000120
121 /* enable PCI retry exceeded interrupt */
Yoichi Yuasa56ae5832006-10-14 00:25:04 +0900122 GT_WRITE(GT_INTRMASK_OFS, GT_INTR_RETRYCTR0_MSK | GT_READ(GT_INTRMASK_OFS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124}
125
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000126DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MARVELL, PCI_DEVICE_ID_MARVELL_GT64111,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 qube_raq_galileo_fixup);
128
Yoichi Yuasa3f2d5602007-05-11 21:43:09 +0900129int cobalt_board_id;
130
Greg Kroah-Hartman28eb0e42012-12-21 14:04:39 -0800131static void qube_raq_via_board_id_fixup(struct pci_dev *dev)
Yoichi Yuasa3f2d5602007-05-11 21:43:09 +0900132{
133 u8 id;
134 int retval;
135
136 retval = pci_read_config_byte(dev, VIA_COBALT_BRD_ID_REG, &id);
137 if (retval) {
138 panic("Cannot read board ID");
139 return;
140 }
141
142 cobalt_board_id = VIA_COBALT_BRD_REG_to_ID(id);
143
144 printk(KERN_INFO "Cobalt board ID: %d\n", cobalt_board_id);
145}
146
147DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_0,
148 qube_raq_via_board_id_fixup);
149
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000150static char irq_tab_qube1[] __initdata = {
Ralf Baechle70342282013-01-22 12:59:30 +0100151 [COBALT_PCICONF_CPU] = 0,
152 [COBALT_PCICONF_ETH0] = QUBE1_ETH0_IRQ,
Yoichi Yuasad5ab1a62007-09-13 23:51:26 +0900153 [COBALT_PCICONF_RAQSCSI] = SCSI_IRQ,
Ralf Baechle70342282013-01-22 12:59:30 +0100154 [COBALT_PCICONF_VIA] = 0,
Yoichi Yuasad5ab1a62007-09-13 23:51:26 +0900155 [COBALT_PCICONF_PCISLOT] = PCISLOT_IRQ,
Ralf Baechle70342282013-01-22 12:59:30 +0100156 [COBALT_PCICONF_ETH1] = 0
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000157};
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static char irq_tab_cobalt[] __initdata = {
Ralf Baechle70342282013-01-22 12:59:30 +0100160 [COBALT_PCICONF_CPU] = 0,
161 [COBALT_PCICONF_ETH0] = ETH0_IRQ,
Yoichi Yuasad5ab1a62007-09-13 23:51:26 +0900162 [COBALT_PCICONF_RAQSCSI] = SCSI_IRQ,
Ralf Baechle70342282013-01-22 12:59:30 +0100163 [COBALT_PCICONF_VIA] = 0,
Yoichi Yuasad5ab1a62007-09-13 23:51:26 +0900164 [COBALT_PCICONF_PCISLOT] = PCISLOT_IRQ,
Ralf Baechle70342282013-01-22 12:59:30 +0100165 [COBALT_PCICONF_ETH1] = ETH1_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166};
167
168static char irq_tab_raq2[] __initdata = {
Ralf Baechle70342282013-01-22 12:59:30 +0100169 [COBALT_PCICONF_CPU] = 0,
170 [COBALT_PCICONF_ETH0] = ETH0_IRQ,
Yoichi Yuasad5ab1a62007-09-13 23:51:26 +0900171 [COBALT_PCICONF_RAQSCSI] = RAQ2_SCSI_IRQ,
Ralf Baechle70342282013-01-22 12:59:30 +0100172 [COBALT_PCICONF_VIA] = 0,
Yoichi Yuasad5ab1a62007-09-13 23:51:26 +0900173 [COBALT_PCICONF_PCISLOT] = PCISLOT_IRQ,
Ralf Baechle70342282013-01-22 12:59:30 +0100174 [COBALT_PCICONF_ETH1] = ETH1_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175};
176
Ralf Baechle19df0d12007-07-10 17:33:00 +0100177int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Thomas Bogendoerferf6c0f322008-01-12 00:25:14 +0100179 if (cobalt_board_id <= COBALT_BRD_ID_QUBE1)
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000180 return irq_tab_qube1[slot];
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (cobalt_board_id == COBALT_BRD_ID_RAQ2)
183 return irq_tab_raq2[slot];
184
185 return irq_tab_cobalt[slot];
186}
187
188/* Do platform specific device initialization at pci_enable_device() time */
189int pcibios_plat_dev_init(struct pci_dev *dev)
190{
191 return 0;
192}