blob: 1adcf024bb9a4c2221ae93bce8558d85c0b64abb [file] [log] [blame]
David Howellsb920de12008-02-08 04:19:31 -08001/* ASB2305 PCI support
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 * Derived from arch/i386/kernel/pci-pc.c
6 * (c) 1999--2000 Martin Mares <mj@suse.cz>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public Licence
10 * as published by the Free Software Foundation; either version
11 * 2 of the Licence, or (at your option) any later version.
12 */
13#include <linux/types.h>
14#include <linux/kernel.h>
15#include <linux/sched.h>
16#include <linux/pci.h>
17#include <linux/init.h>
18#include <linux/ioport.h>
19#include <linux/delay.h>
David Howells00a2f912012-12-12 15:36:40 +000020#include <linux/irq.h>
David Howellsb920de12008-02-08 04:19:31 -080021#include <asm/io.h>
22#include "pci-asb2305.h"
23
24unsigned int pci_probe = 1;
25
26int pcibios_last_bus = -1;
David Howellsb920de12008-02-08 04:19:31 -080027struct pci_ops *pci_root_ops;
28
29/*
David Howells112b4a02010-01-08 14:43:20 -080030 * The accessible PCI window does not cover the entire CPU address space, but
31 * there are devices we want to access outside of that window, so we need to
32 * insert specific PCI bus resources instead of using the platform-level bus
33 * resources directly for the PCI root bus.
34 *
Bjorn Helgaas4b84b6e2012-02-23 20:19:02 -070035 * These are configured and inserted by pcibios_init().
David Howells112b4a02010-01-08 14:43:20 -080036 */
37static struct resource pci_ioport_resource = {
38 .name = "PCI IO",
39 .start = 0xbe000000,
40 .end = 0xbe03ffff,
41 .flags = IORESOURCE_IO,
42};
43
44static struct resource pci_iomem_resource = {
45 .name = "PCI mem",
46 .start = 0xb8000000,
47 .end = 0xbbffffff,
48 .flags = IORESOURCE_MEM,
49};
50
51/*
David Howellsb920de12008-02-08 04:19:31 -080052 * Functions for accessing PCI configuration space
53 */
54
55#define CONFIG_CMD(bus, devfn, where) \
56 (0x80000000 | (bus->number << 16) | (devfn << 8) | (where & ~3))
57
58#define MEM_PAGING_REG (*(volatile __u32 *) 0xBFFFFFF4)
59#define CONFIG_ADDRESS (*(volatile __u32 *) 0xBFFFFFF8)
60#define CONFIG_DATAL(X) (*(volatile __u32 *) 0xBFFFFFFC)
61#define CONFIG_DATAW(X) (*(volatile __u16 *) (0xBFFFFFFC + ((X) & 2)))
62#define CONFIG_DATAB(X) (*(volatile __u8 *) (0xBFFFFFFC + ((X) & 3)))
63
64#define BRIDGEREGB(X) (*(volatile __u8 *) (0xBE040000 + (X)))
65#define BRIDGEREGW(X) (*(volatile __u16 *) (0xBE040000 + (X)))
66#define BRIDGEREGL(X) (*(volatile __u32 *) (0xBE040000 + (X)))
67
68static inline int __query(const struct pci_bus *bus, unsigned int devfn)
69{
70#if 0
71 return bus->number == 0 && (devfn == PCI_DEVFN(0, 0));
72 return bus->number == 1;
73 return bus->number == 0 &&
74 (devfn == PCI_DEVFN(2, 0) || devfn == PCI_DEVFN(3, 0));
75#endif
76 return 1;
77}
78
79/*
David Howellsb920de12008-02-08 04:19:31 -080080 *
81 */
82static int pci_ampci_read_config_byte(struct pci_bus *bus, unsigned int devfn,
83 int where, u32 *_value)
84{
85 u32 rawval, value;
86
87 if (bus->number == 0 && devfn == PCI_DEVFN(0, 0)) {
88 value = BRIDGEREGB(where);
89 __pcbdebug("=> %02hx", &BRIDGEREGL(where), value);
90 } else {
91 CONFIG_ADDRESS = CONFIG_CMD(bus, devfn, where);
92 rawval = CONFIG_ADDRESS;
93 value = CONFIG_DATAB(where);
94 if (__query(bus, devfn))
95 __pcidebug("=> %02hx", bus, devfn, where, value);
96 }
97
98 *_value = value;
99 return PCIBIOS_SUCCESSFUL;
100}
101
102static int pci_ampci_read_config_word(struct pci_bus *bus, unsigned int devfn,
103 int where, u32 *_value)
104{
105 u32 rawval, value;
106
107 if (bus->number == 0 && devfn == PCI_DEVFN(0, 0)) {
108 value = BRIDGEREGW(where);
109 __pcbdebug("=> %04hx", &BRIDGEREGL(where), value);
110 } else {
111 CONFIG_ADDRESS = CONFIG_CMD(bus, devfn, where);
112 rawval = CONFIG_ADDRESS;
113 value = CONFIG_DATAW(where);
114 if (__query(bus, devfn))
115 __pcidebug("=> %04hx", bus, devfn, where, value);
116 }
117
118 *_value = value;
119 return PCIBIOS_SUCCESSFUL;
120}
121
122static int pci_ampci_read_config_dword(struct pci_bus *bus, unsigned int devfn,
123 int where, u32 *_value)
124{
125 u32 rawval, value;
126
127 if (bus->number == 0 && devfn == PCI_DEVFN(0, 0)) {
128 value = BRIDGEREGL(where);
129 __pcbdebug("=> %08x", &BRIDGEREGL(where), value);
130 } else {
131 CONFIG_ADDRESS = CONFIG_CMD(bus, devfn, where);
132 rawval = CONFIG_ADDRESS;
133 value = CONFIG_DATAL(where);
134 if (__query(bus, devfn))
135 __pcidebug("=> %08x", bus, devfn, where, value);
136 }
137
138 *_value = value;
139 return PCIBIOS_SUCCESSFUL;
140}
141
142static int pci_ampci_write_config_byte(struct pci_bus *bus, unsigned int devfn,
143 int where, u8 value)
144{
145 u32 rawval;
146
147 if (bus->number == 0 && devfn == PCI_DEVFN(0, 0)) {
148 __pcbdebug("<= %02x", &BRIDGEREGB(where), value);
149 BRIDGEREGB(where) = value;
150 } else {
151 if (bus->number == 0 &&
Wei Yongjund9190912009-02-20 15:38:40 -0800152 (devfn == PCI_DEVFN(2, 0) || devfn == PCI_DEVFN(3, 0))
David Howellsb920de12008-02-08 04:19:31 -0800153 )
154 __pcidebug("<= %02x", bus, devfn, where, value);
155 CONFIG_ADDRESS = CONFIG_CMD(bus, devfn, where);
156 rawval = CONFIG_ADDRESS;
157 CONFIG_DATAB(where) = value;
158 }
159 return PCIBIOS_SUCCESSFUL;
160}
161
162static int pci_ampci_write_config_word(struct pci_bus *bus, unsigned int devfn,
163 int where, u16 value)
164{
165 u32 rawval;
166
167 if (bus->number == 0 && devfn == PCI_DEVFN(0, 0)) {
168 __pcbdebug("<= %04hx", &BRIDGEREGW(where), value);
169 BRIDGEREGW(where) = value;
170 } else {
171 if (__query(bus, devfn))
172 __pcidebug("<= %04hx", bus, devfn, where, value);
173 CONFIG_ADDRESS = CONFIG_CMD(bus, devfn, where);
174 rawval = CONFIG_ADDRESS;
175 CONFIG_DATAW(where) = value;
176 }
177 return PCIBIOS_SUCCESSFUL;
178}
179
180static int pci_ampci_write_config_dword(struct pci_bus *bus, unsigned int devfn,
181 int where, u32 value)
182{
183 u32 rawval;
184
185 if (bus->number == 0 && devfn == PCI_DEVFN(0, 0)) {
186 __pcbdebug("<= %08x", &BRIDGEREGL(where), value);
187 BRIDGEREGL(where) = value;
188 } else {
189 if (__query(bus, devfn))
190 __pcidebug("<= %08x", bus, devfn, where, value);
191 CONFIG_ADDRESS = CONFIG_CMD(bus, devfn, where);
192 rawval = CONFIG_ADDRESS;
193 CONFIG_DATAL(where) = value;
194 }
195 return PCIBIOS_SUCCESSFUL;
196}
197
198static int pci_ampci_read_config(struct pci_bus *bus, unsigned int devfn,
199 int where, int size, u32 *val)
200{
201 switch (size) {
202 case 1:
203 return pci_ampci_read_config_byte(bus, devfn, where, val);
204 case 2:
205 return pci_ampci_read_config_word(bus, devfn, where, val);
206 case 4:
207 return pci_ampci_read_config_dword(bus, devfn, where, val);
208 default:
209 BUG();
210 return -EOPNOTSUPP;
211 }
212}
213
214static int pci_ampci_write_config(struct pci_bus *bus, unsigned int devfn,
215 int where, int size, u32 val)
216{
217 switch (size) {
218 case 1:
219 return pci_ampci_write_config_byte(bus, devfn, where, val);
220 case 2:
221 return pci_ampci_write_config_word(bus, devfn, where, val);
222 case 4:
223 return pci_ampci_write_config_dword(bus, devfn, where, val);
224 default:
225 BUG();
226 return -EOPNOTSUPP;
227 }
228}
229
230static struct pci_ops pci_direct_ampci = {
231 pci_ampci_read_config,
232 pci_ampci_write_config,
233};
234
235/*
236 * Before we decide to use direct hardware access mechanisms, we try to do some
237 * trivial checks to ensure it at least _seems_ to be working -- we just test
238 * whether bus 00 contains a host bridge (this is similar to checking
239 * techniques used in XFree86, but ours should be more reliable since we
240 * attempt to make use of direct access hints provided by the PCI BIOS).
241 *
242 * This should be close to trivial, but it isn't, because there are buggy
243 * chipsets (yes, you guessed it, by Intel and Compaq) that have no class ID.
244 */
245static int __init pci_sanity_check(struct pci_ops *o)
246{
247 struct pci_bus bus; /* Fake bus and device */
248 u32 x;
249
250 bus.number = 0;
251
252 if ((!o->read(&bus, 0, PCI_CLASS_DEVICE, 2, &x) &&
253 (x == PCI_CLASS_BRIDGE_HOST || x == PCI_CLASS_DISPLAY_VGA)) ||
254 (!o->read(&bus, 0, PCI_VENDOR_ID, 2, &x) &&
255 (x == PCI_VENDOR_ID_INTEL || x == PCI_VENDOR_ID_COMPAQ)))
256 return 1;
257
David Howellse7163812010-01-08 14:43:18 -0800258 printk(KERN_ERR "PCI: Sanity check failed\n");
David Howellsb920de12008-02-08 04:19:31 -0800259 return 0;
260}
261
262static int __init pci_check_direct(void)
263{
264 unsigned long flags;
265
266 local_irq_save(flags);
267
268 /*
269 * Check if access works.
270 */
271 if (pci_sanity_check(&pci_direct_ampci)) {
272 local_irq_restore(flags);
273 printk(KERN_INFO "PCI: Using configuration ampci\n");
274 request_mem_region(0xBE040000, 256, "AMPCI bridge");
275 request_mem_region(0xBFFFFFF4, 12, "PCI ampci");
David Howells112b4a02010-01-08 14:43:20 -0800276 request_mem_region(0xBC000000, 32 * 1024 * 1024, "PCI SRAM");
David Howellsb920de12008-02-08 04:19:31 -0800277 return 0;
278 }
279
280 local_irq_restore(flags);
281 return -ENODEV;
282}
283
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800284static int is_valid_resource(struct pci_dev *dev, int idx)
David Howellsb920de12008-02-08 04:19:31 -0800285{
286 unsigned int i, type_mask = IORESOURCE_IO | IORESOURCE_MEM;
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -0700287 struct resource *devr = &dev->resource[idx], *busr;
David Howellsb920de12008-02-08 04:19:31 -0800288
289 if (dev->bus) {
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -0700290 pci_bus_for_each_resource(dev->bus, busr, i) {
David Howellsb920de12008-02-08 04:19:31 -0800291 if (!busr || (busr->flags ^ devr->flags) & type_mask)
292 continue;
293
294 if (devr->start &&
295 devr->start >= busr->start &&
296 devr->end <= busr->end)
297 return 1;
298 }
299 }
300
301 return 0;
302}
303
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800304static void pcibios_fixup_device_resources(struct pci_dev *dev)
David Howellsb920de12008-02-08 04:19:31 -0800305{
David Howells0c6e6862012-12-12 15:36:40 +0000306 int limit, i;
David Howellsb920de12008-02-08 04:19:31 -0800307
308 if (dev->bus->number != 0)
309 return;
310
311 limit = (dev->hdr_type == PCI_HEADER_TYPE_NORMAL) ?
312 PCI_BRIDGE_RESOURCES : PCI_NUM_RESOURCES;
313
314 for (i = 0; i < limit; i++) {
315 if (!dev->resource[i].flags)
316 continue;
317
David Howellsb920de12008-02-08 04:19:31 -0800318 if (is_valid_resource(dev, i))
319 pci_claim_resource(dev, i);
320 }
321}
322
323/*
324 * Called after each bus is probed, but before its children
325 * are examined.
326 */
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800327void pcibios_fixup_bus(struct pci_bus *bus)
David Howellsb920de12008-02-08 04:19:31 -0800328{
329 struct pci_dev *dev;
330
331 if (bus->self) {
332 pci_read_bridge_bases(bus);
333 pcibios_fixup_device_resources(bus->self);
334 }
335
336 list_for_each_entry(dev, &bus->devices, bus_list)
337 pcibios_fixup_device_resources(dev);
338}
339
340/*
341 * Initialization. Try all known PCI access methods. Note that we support
342 * using both PCI BIOS and direct access: in such cases, we use I/O ports
343 * to access config space, but we still keep BIOS order of cards to be
344 * compatible with 2.0.X. This should go away some day.
345 */
346static int __init pcibios_init(void)
347{
Bjorn Helgaas4b84b6e2012-02-23 20:19:02 -0700348 resource_size_t io_offset, mem_offset;
Bjorn Helgaas9a458002011-10-28 16:27:02 -0600349 LIST_HEAD(resources);
350
David Howellsb920de12008-02-08 04:19:31 -0800351 ioport_resource.start = 0xA0000000;
352 ioport_resource.end = 0xDFFFFFFF;
353 iomem_resource.start = 0xA0000000;
354 iomem_resource.end = 0xDFFFFFFF;
355
David Howells112b4a02010-01-08 14:43:20 -0800356 if (insert_resource(&iomem_resource, &pci_iomem_resource) < 0)
357 panic("Unable to insert PCI IOMEM resource\n");
358 if (insert_resource(&ioport_resource, &pci_ioport_resource) < 0)
359 panic("Unable to insert PCI IOPORT resource\n");
360
David Howellsb920de12008-02-08 04:19:31 -0800361 if (!pci_probe)
362 return 0;
363
364 if (pci_check_direct() < 0) {
365 printk(KERN_WARNING "PCI: No PCI bus detected\n");
366 return 0;
367 }
368
369 printk(KERN_INFO "PCI: Probing PCI hardware [mempage %08x]\n",
370 MEM_PAGING_REG);
371
Bjorn Helgaas4b84b6e2012-02-23 20:19:02 -0700372 io_offset = pci_ioport_resource.start -
373 (pci_ioport_resource.start & 0x00ffffff);
374 mem_offset = pci_iomem_resource.start -
375 ((pci_iomem_resource.start & 0x03ffffff) | MEM_PAGING_REG);
376
377 pci_add_resource_offset(&resources, &pci_ioport_resource, io_offset);
378 pci_add_resource_offset(&resources, &pci_iomem_resource, mem_offset);
Bjorn Helgaas7f0d21f2013-01-03 15:30:21 -0700379 pci_scan_root_bus(NULL, 0, &pci_direct_ampci, NULL, &resources);
David Howellsb920de12008-02-08 04:19:31 -0800380
381 pcibios_irq_init();
382 pcibios_fixup_irqs();
David Howellsb920de12008-02-08 04:19:31 -0800383 pcibios_resource_survey();
David Howellsb920de12008-02-08 04:19:31 -0800384 return 0;
385}
386
387arch_initcall(pcibios_init);
388
389char *__init pcibios_setup(char *str)
390{
391 if (!strcmp(str, "off")) {
392 pci_probe = 0;
393 return NULL;
394
395 } else if (!strncmp(str, "lastbus=", 8)) {
396 pcibios_last_bus = simple_strtol(str+8, NULL, 0);
397 return NULL;
398 }
399
400 return str;
401}
402
403int pcibios_enable_device(struct pci_dev *dev, int mask)
404{
405 int err;
406
Bjorn Helgaas126cda52010-01-08 14:43:19 -0800407 err = pci_enable_resources(dev, mask);
David Howellsb920de12008-02-08 04:19:31 -0800408 if (err == 0)
409 pcibios_enable_irq(dev);
410 return err;
411}
412
413/*
414 * disable the ethernet chipset
415 */
416static void __init unit_disable_pcnet(struct pci_bus *bus, struct pci_ops *o)
417{
418 u32 x;
419
420 bus->number = 0;
421
Bjorn Helgaas126cda52010-01-08 14:43:19 -0800422 o->read (bus, PCI_DEVFN(2, 0), PCI_VENDOR_ID, 4, &x);
David Howellsb920de12008-02-08 04:19:31 -0800423 o->read (bus, PCI_DEVFN(2, 0), PCI_COMMAND, 2, &x);
424 x |= PCI_COMMAND_MASTER |
425 PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
426 PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
427 o->write(bus, PCI_DEVFN(2, 0), PCI_COMMAND, 2, x);
428 o->read (bus, PCI_DEVFN(2, 0), PCI_COMMAND, 2, &x);
429 o->write(bus, PCI_DEVFN(2, 0), PCI_BASE_ADDRESS_0, 4, 0x00030001);
430 o->read (bus, PCI_DEVFN(2, 0), PCI_BASE_ADDRESS_0, 4, &x);
431
432#define RDP (*(volatile u32 *) 0xBE030010)
433#define RAP (*(volatile u32 *) 0xBE030014)
434#define __set_RAP(X) do { RAP = (X); x = RAP; } while (0)
435#define __set_RDP(X) do { RDP = (X); x = RDP; } while (0)
436#define __get_RDP() ({ RDP & 0xffff; })
437
438 __set_RAP(0);
439 __set_RDP(0x0004); /* CSR0 = STOP */
440
441 __set_RAP(88); /* check CSR88 indicates an Am79C973 */
442 BUG_ON(__get_RDP() != 0x5003);
443
444 for (x = 0; x < 100; x++)
445 asm volatile("nop");
446
447 __set_RDP(0x0004); /* CSR0 = STOP */
448}
449
450/*
451 * initialise the unit hardware
452 */
453asmlinkage void __init unit_pci_init(void)
454{
455 struct pci_bus bus; /* Fake bus and device */
456 struct pci_ops *o = &pci_direct_ampci;
457 u32 x;
458
Akira Takeuchi368dd5a2010-10-27 17:28:55 +0100459 set_intr_level(XIRQ1, NUM2GxICR_LEVEL(CONFIG_PCI_IRQ_LEVEL));
David Howellsb920de12008-02-08 04:19:31 -0800460
461 memset(&bus, 0, sizeof(bus));
462
463 MEM_PAGING_REG = 0xE8000000;
464
465 /* we need to set up the bridge _now_ or we won't be able to access the
466 * PCI config registers
467 */
468 BRIDGEREGW(PCI_COMMAND) |=
469 PCI_COMMAND_SERR | PCI_COMMAND_PARITY |
470 PCI_COMMAND_MEMORY | PCI_COMMAND_IO | PCI_COMMAND_MASTER;
471 BRIDGEREGW(PCI_STATUS) = 0xF800;
472 BRIDGEREGB(PCI_LATENCY_TIMER) = 0x10;
473 BRIDGEREGL(PCI_BASE_ADDRESS_0) = 0x80000000;
474 BRIDGEREGB(PCI_INTERRUPT_LINE) = 1;
475 BRIDGEREGL(0x48) = 0x98000000; /* AMPCI base addr */
476 BRIDGEREGB(0x41) = 0x00; /* secondary bus
477 * number */
478 BRIDGEREGB(0x42) = 0x01; /* subordinate bus
479 * number */
480 BRIDGEREGB(0x44) = 0x01;
481 BRIDGEREGL(0x50) = 0x00000001;
482 BRIDGEREGL(0x58) = 0x00001002;
483 BRIDGEREGL(0x5C) = 0x00000011;
484
485 /* we also need to set up the PCI-PCI bridge */
486 bus.number = 0;
487
488 /* IO: 0x00000000-0x00020000 */
489 o->read (&bus, PCI_DEVFN(3, 0), PCI_COMMAND, 2, &x);
490 x |= PCI_COMMAND_MASTER |
491 PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
492 PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
493 o->write(&bus, PCI_DEVFN(3, 0), PCI_COMMAND, 2, x);
494
495 o->read (&bus, PCI_DEVFN(3, 0), PCI_IO_BASE, 1, &x);
496 o->read (&bus, PCI_DEVFN(3, 0), PCI_IO_BASE_UPPER16, 4, &x);
497 o->read (&bus, PCI_DEVFN(3, 0), PCI_MEMORY_BASE, 4, &x);
498 o->read (&bus, PCI_DEVFN(3, 0), PCI_PREF_MEMORY_BASE, 4, &x);
499
500 o->write(&bus, PCI_DEVFN(3, 0), PCI_IO_BASE, 1, 0x01);
501 o->read (&bus, PCI_DEVFN(3, 0), PCI_IO_BASE, 1, &x);
502 o->write(&bus, PCI_DEVFN(3, 0), PCI_IO_BASE_UPPER16, 4, 0x00020000);
503 o->read (&bus, PCI_DEVFN(3, 0), PCI_IO_BASE_UPPER16, 4, &x);
504 o->write(&bus, PCI_DEVFN(3, 0), PCI_MEMORY_BASE, 4, 0xEBB0EA00);
505 o->read (&bus, PCI_DEVFN(3, 0), PCI_MEMORY_BASE, 4, &x);
506 o->write(&bus, PCI_DEVFN(3, 0), PCI_PREF_MEMORY_BASE, 4, 0xE9F0E800);
507 o->read (&bus, PCI_DEVFN(3, 0), PCI_PREF_MEMORY_BASE, 4, &x);
508
509 unit_disable_pcnet(&bus, o);
510}