1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#include <linux/kernel.h>
16#include <linux/pci.h>
17#include <linux/delay.h>
18#include <linux/string.h>
19#include <linux/init.h>
20#include <linux/capability.h>
21#include <linux/sched.h>
22#include <linux/errno.h>
23#include <linux/bootmem.h>
24#include <linux/irq.h>
25#include <linux/io.h>
26#include <linux/uaccess.h>
27#include <linux/export.h>
28
29#include <asm/processor.h>
30#include <asm/sections.h>
31#include <asm/byteorder.h>
32#include <asm/hv_driver.h>
33#include <hv/drv_pcie_rc_intf.h>
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59int __write_once tile_plx_gen1;
60
61static struct pci_controller controllers[TILE_NUM_PCIE];
62static int num_controllers;
63static int pci_scan_flags[TILE_NUM_PCIE];
64
65static struct pci_ops tile_cfg_ops;
66
67
68
69
70
71resource_size_t pcibios_align_resource(void *data, const struct resource *res,
72 resource_size_t size, resource_size_t align)
73{
74 return res->start;
75}
76EXPORT_SYMBOL(pcibios_align_resource);
77
78
79
80
81
82
83
84static int __devinit tile_pcie_open(int controller_id, int config_type)
85{
86 char filename[32];
87 int fd;
88
89 sprintf(filename, "pcie/%d/config%d", controller_id, config_type);
90
91 fd = hv_dev_open((HV_VirtAddr)filename, 0);
92
93 return fd;
94}
95
96
97
98
99
100static int __devinit tile_init_irqs(int controller_id,
101 struct pci_controller *controller)
102{
103 char filename[32];
104 int fd;
105 int ret;
106 int x;
107 struct pcie_rc_config rc_config;
108
109 sprintf(filename, "pcie/%d/ctl", controller_id);
110 fd = hv_dev_open((HV_VirtAddr)filename, 0);
111 if (fd < 0) {
112 pr_err("PCI: hv_dev_open(%s) failed\n", filename);
113 return -1;
114 }
115 ret = hv_dev_pread(fd, 0, (HV_VirtAddr)(&rc_config),
116 sizeof(rc_config), PCIE_RC_CONFIG_MASK_OFF);
117 hv_dev_close(fd);
118 if (ret != sizeof(rc_config)) {
119 pr_err("PCI: wanted %zd bytes, got %d\n",
120 sizeof(rc_config), ret);
121 return -1;
122 }
123
124 controller->irq_base = rc_config.intr;
125
126 for (x = 0; x < 4; x++)
127 tile_irq_activate(rc_config.intr + x,
128 TILE_IRQ_HW_CLEAR);
129
130 if (rc_config.plx_gen1)
131 controller->plx_gen1 = 1;
132
133 return 0;
134}
135
136
137
138
139
140
141
142
143
144int __devinit tile_pci_init(void)
145{
146 int i;
147
148 pr_info("PCI: Searching for controllers...\n");
149
150
151 num_controllers = 0;
152
153
154
155 for (i = 0; i < TILE_NUM_PCIE; i++) {
156
157
158
159
160 if (pci_scan_flags[i] == 0) {
161 int hv_cfg_fd0 = -1;
162 int hv_cfg_fd1 = -1;
163 int hv_mem_fd = -1;
164 char name[32];
165 struct pci_controller *controller;
166
167
168
169
170
171 hv_cfg_fd0 = tile_pcie_open(i, 0);
172 if (hv_cfg_fd0 < 0)
173 continue;
174 hv_cfg_fd1 = tile_pcie_open(i, 1);
175 if (hv_cfg_fd1 < 0) {
176 pr_err("PCI: Couldn't open config fd to HV "
177 "for controller %d\n", i);
178 goto err_cont;
179 }
180
181 sprintf(name, "pcie/%d/mem", i);
182 hv_mem_fd = hv_dev_open((HV_VirtAddr)name, 0);
183 if (hv_mem_fd < 0) {
184 pr_err("PCI: Could not open mem fd to HV!\n");
185 goto err_cont;
186 }
187
188 pr_info("PCI: Found PCI controller #%d\n", i);
189
190 controller = &controllers[i];
191
192 controller->index = i;
193 controller->hv_cfg_fd[0] = hv_cfg_fd0;
194 controller->hv_cfg_fd[1] = hv_cfg_fd1;
195 controller->hv_mem_fd = hv_mem_fd;
196 controller->first_busno = 0;
197 controller->last_busno = 0xff;
198 controller->ops = &tile_cfg_ops;
199
200 num_controllers++;
201 continue;
202
203err_cont:
204 if (hv_cfg_fd0 >= 0)
205 hv_dev_close(hv_cfg_fd0);
206 if (hv_cfg_fd1 >= 0)
207 hv_dev_close(hv_cfg_fd1);
208 if (hv_mem_fd >= 0)
209 hv_dev_close(hv_mem_fd);
210 continue;
211 }
212 }
213
214
215
216
217
218 for (i = 0; i < num_controllers; i++) {
219 struct pci_controller *controller = &controllers[i];
220
221 if (controller->plx_gen1)
222 tile_plx_gen1 = 1;
223 }
224
225 return num_controllers;
226}
227
228
229
230
231
232static int tile_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
233{
234 struct pci_controller *controller =
235 (struct pci_controller *)dev->sysdata;
236 return (pin - 1) + controller->irq_base;
237}
238
239
240static void __devinit fixup_read_and_payload_sizes(void)
241{
242 struct pci_dev *dev = NULL;
243 int smallest_max_payload = 0x1;
244 int max_read_size = 0x2;
245 u16 new_values;
246
247
248 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
249 int pcie_caps_offset;
250 u32 devcap;
251 int max_payload;
252
253 pcie_caps_offset = pci_find_capability(dev, PCI_CAP_ID_EXP);
254 if (pcie_caps_offset == 0)
255 continue;
256
257 pci_read_config_dword(dev, pcie_caps_offset + PCI_EXP_DEVCAP,
258 &devcap);
259 max_payload = devcap & PCI_EXP_DEVCAP_PAYLOAD;
260 if (max_payload < smallest_max_payload)
261 smallest_max_payload = max_payload;
262 }
263
264
265 new_values = (max_read_size << 12) | (smallest_max_payload << 5);
266 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
267 int pcie_caps_offset;
268 u16 devctl;
269
270 pcie_caps_offset = pci_find_capability(dev, PCI_CAP_ID_EXP);
271 if (pcie_caps_offset == 0)
272 continue;
273
274 pci_read_config_word(dev, pcie_caps_offset + PCI_EXP_DEVCTL,
275 &devctl);
276 devctl &= ~(PCI_EXP_DEVCTL_PAYLOAD | PCI_EXP_DEVCTL_READRQ);
277 devctl |= new_values;
278 pci_write_config_word(dev, pcie_caps_offset + PCI_EXP_DEVCTL,
279 devctl);
280 }
281}
282
283
284
285
286
287
288
289
290int __devinit pcibios_init(void)
291{
292 int i;
293
294 pr_info("PCI: Probing PCI hardware\n");
295
296
297
298
299
300
301 mdelay(250);
302
303
304 for (i = 0; i < TILE_NUM_PCIE; i++) {
305
306
307
308
309
310 if (pci_scan_flags[i] == 0 && controllers[i].ops != NULL) {
311 struct pci_controller *controller = &controllers[i];
312 struct pci_bus *bus;
313
314 if (tile_init_irqs(i, controller)) {
315 pr_err("PCI: Could not initialize IRQs\n");
316 continue;
317 }
318
319 pr_info("PCI: initializing controller #%d\n", i);
320
321
322
323
324
325
326
327
328
329
330 bus = pci_scan_bus(0, controller->ops, controller);
331 controller->root_bus = bus;
332 controller->last_busno = bus->subordinate;
333 }
334 }
335
336
337 pci_fixup_irqs(pci_common_swizzle, tile_map_irq);
338
339
340
341
342
343
344
345 pci_assign_unassigned_resources();
346
347
348 fixup_read_and_payload_sizes();
349
350
351 for (i = 0; i < TILE_NUM_PCIE; i++) {
352
353
354
355
356
357 if (pci_scan_flags[i] == 0 && controllers[i].ops != NULL) {
358 struct pci_bus *root_bus = controllers[i].root_bus;
359 struct pci_bus *next_bus;
360 struct pci_dev *dev;
361
362 list_for_each_entry(dev, &root_bus->devices, bus_list) {
363
364
365
366
367 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI &&
368 (PCI_SLOT(dev->devfn) == 0)) {
369 next_bus = dev->subordinate;
370 controllers[i].mem_resources[0] =
371 *next_bus->resource[0];
372 controllers[i].mem_resources[1] =
373 *next_bus->resource[1];
374 controllers[i].mem_resources[2] =
375 *next_bus->resource[2];
376
377
378 pci_scan_flags[i] = 1;
379
380 break;
381 }
382 }
383 }
384 }
385
386 return 0;
387}
388subsys_initcall(pcibios_init);
389
390
391
392
393void __devinit pcibios_fixup_bus(struct pci_bus *bus)
394{
395
396}
397
398void pcibios_set_master(struct pci_dev *dev)
399{
400
401}
402
403
404
405
406
407char __devinit *pcibios_setup(char *str)
408{
409
410 return str;
411}
412
413
414
415
416void __devinit pcibios_update_irq(struct pci_dev *dev, int irq)
417{
418 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
419}
420
421
422
423
424
425
426
427
428int pcibios_enable_device(struct pci_dev *dev, int mask)
429{
430 u16 cmd, old_cmd;
431 u8 header_type;
432 int i;
433 struct resource *r;
434
435 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type);
436
437 pci_read_config_word(dev, PCI_COMMAND, &cmd);
438 old_cmd = cmd;
439 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) {
440
441
442
443
444 cmd |= PCI_COMMAND_IO;
445 cmd |= PCI_COMMAND_MEMORY;
446 } else {
447
448
449
450
451 for (i = 0; i < 6; i++) {
452 r = &dev->resource[i];
453 if (r->flags & IORESOURCE_UNSET) {
454 pr_err("PCI: Device %s not available "
455 "because of resource collisions\n",
456 pci_name(dev));
457 return -EINVAL;
458 }
459 if (r->flags & IORESOURCE_IO)
460 cmd |= PCI_COMMAND_IO;
461 if (r->flags & IORESOURCE_MEM)
462 cmd |= PCI_COMMAND_MEMORY;
463 }
464 }
465
466
467
468
469 if (cmd != old_cmd)
470 pci_write_config_word(dev, PCI_COMMAND, cmd);
471 return 0;
472}
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490static int __devinit tile_cfg_read(struct pci_bus *bus,
491 unsigned int devfn,
492 int offset,
493 int size,
494 u32 *val)
495{
496 struct pci_controller *controller = bus->sysdata;
497 int busnum = bus->number & 0xff;
498 int slot = (devfn >> 3) & 0x1f;
499 int function = devfn & 0x7;
500 u32 addr;
501 int config_mode = 1;
502
503
504
505
506
507
508
509
510 if (busnum == 0) {
511
512
513
514
515 if (slot) {
516 *val = 0xFFFFFFFF;
517 return 0;
518 }
519 config_mode = 0;
520 }
521
522 addr = busnum << 20;
523 addr |= slot << 15;
524 addr |= function << 12;
525 addr |= (offset & 0xFFF);
526
527 return hv_dev_pread(controller->hv_cfg_fd[config_mode], 0,
528 (HV_VirtAddr)(val), size, addr);
529}
530
531
532
533
534
535
536static int __devinit tile_cfg_write(struct pci_bus *bus,
537 unsigned int devfn,
538 int offset,
539 int size,
540 u32 val)
541{
542 struct pci_controller *controller = bus->sysdata;
543 int busnum = bus->number & 0xff;
544 int slot = (devfn >> 3) & 0x1f;
545 int function = devfn & 0x7;
546 u32 addr;
547 int config_mode = 1;
548 HV_VirtAddr valp = (HV_VirtAddr)&val;
549
550
551
552
553 if (busnum == 0) {
554
555
556
557
558 if (slot)
559 return 0;
560 config_mode = 0;
561 }
562
563 addr = busnum << 20;
564 addr |= slot << 15;
565 addr |= function << 12;
566 addr |= (offset & 0xFFF);
567
568#ifdef __BIG_ENDIAN
569
570 valp += 4 - size;
571#endif
572
573 return hv_dev_pwrite(controller->hv_cfg_fd[config_mode], 0,
574 valp, size, addr);
575}
576
577
578static struct pci_ops tile_cfg_ops = {
579 .read = tile_cfg_read,
580 .write = tile_cfg_write,
581};
582
583
584
585
586
587
588
589
590
591
592
593
594#define TILE_READ(size, type) \
595type _tile_read##size(unsigned long addr) \
596{ \
597 type val; \
598 int idx = 0; \
599 if (addr > controllers[0].mem_resources[1].end && \
600 addr > controllers[0].mem_resources[2].end) \
601 idx = 1; \
602 if (hv_dev_pread(controllers[idx].hv_mem_fd, 0, \
603 (HV_VirtAddr)(&val), sizeof(type), addr)) \
604 pr_err("PCI: read %zd bytes at 0x%lX failed\n", \
605 sizeof(type), addr); \
606 return val; \
607} \
608EXPORT_SYMBOL(_tile_read##size)
609
610TILE_READ(b, u8);
611TILE_READ(w, u16);
612TILE_READ(l, u32);
613TILE_READ(q, u64);
614
615#define TILE_WRITE(size, type) \
616void _tile_write##size(type val, unsigned long addr) \
617{ \
618 int idx = 0; \
619 if (addr > controllers[0].mem_resources[1].end && \
620 addr > controllers[0].mem_resources[2].end) \
621 idx = 1; \
622 if (hv_dev_pwrite(controllers[idx].hv_mem_fd, 0, \
623 (HV_VirtAddr)(&val), sizeof(type), addr)) \
624 pr_err("PCI: write %zd bytes at 0x%lX failed\n", \
625 sizeof(type), addr); \
626} \
627EXPORT_SYMBOL(_tile_write##size)
628
629TILE_WRITE(b, u8);
630TILE_WRITE(w, u16);
631TILE_WRITE(l, u32);
632TILE_WRITE(q, u64);
633