2 * Copyright 2011 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
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>
26 #include <linux/uaccess.h>
27 #include <linux/export.h>
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>
37 * Initialization flow and process
38 * -------------------------------
40 * This files contains the routines to search for PCI buses,
41 * enumerate the buses, and configure any attached devices.
43 * There are two entry points here:
45 * This sets up the pci_controller structs, and opens the
46 * FDs to the hypervisor. This is called from setup_arch() early
47 * in the boot process.
49 * This probes the PCI bus(es) for any attached hardware. It's
50 * called by subsys_initcall. All of the real work is done by the
51 * generic Linux PCI layer.
56 * This flag tells if the platform is TILEmpower that needs
57 * special configuration for the PLX switch chip.
59 int __write_once tile_plx_gen1
;
61 static struct pci_controller controllers
[TILE_NUM_PCIE
];
62 static int num_controllers
;
63 static int pci_scan_flags
[TILE_NUM_PCIE
];
65 static struct pci_ops tile_cfg_ops
;
69 * We don't need to worry about the alignment of resources.
71 resource_size_t
pcibios_align_resource(void *data
, const struct resource
*res
,
72 resource_size_t size
, resource_size_t align
)
76 EXPORT_SYMBOL(pcibios_align_resource
);
79 * Open a FD to the hypervisor PCI device.
81 * controller_id is the controller number, config type is 0 or 1 for
82 * config0 or config1 operations.
84 static int __devinit
tile_pcie_open(int controller_id
, int config_type
)
89 sprintf(filename
, "pcie/%d/config%d", controller_id
, config_type
);
91 fd
= hv_dev_open((HV_VirtAddr
)filename
, 0);
98 * Get the IRQ numbers from the HV and set up the handlers for them.
100 static int __devinit
tile_init_irqs(int controller_id
,
101 struct pci_controller
*controller
)
107 struct pcie_rc_config rc_config
;
109 sprintf(filename
, "pcie/%d/ctl", controller_id
);
110 fd
= hv_dev_open((HV_VirtAddr
)filename
, 0);
112 pr_err("PCI: hv_dev_open(%s) failed\n", filename
);
115 ret
= hv_dev_pread(fd
, 0, (HV_VirtAddr
)(&rc_config
),
116 sizeof(rc_config
), PCIE_RC_CONFIG_MASK_OFF
);
118 if (ret
!= sizeof(rc_config
)) {
119 pr_err("PCI: wanted %zd bytes, got %d\n",
120 sizeof(rc_config
), ret
);
123 /* Record irq_base so that we can map INTx to IRQ # later. */
124 controller
->irq_base
= rc_config
.intr
;
126 for (x
= 0; x
< 4; x
++)
127 tile_irq_activate(rc_config
.intr
+ x
,
130 if (rc_config
.plx_gen1
)
131 controller
->plx_gen1
= 1;
137 * First initialization entry point, called from setup_arch().
139 * Find valid controllers and fill in pci_controller structs for each
142 * Returns the number of controllers discovered.
144 int __devinit
tile_pci_init(void)
148 pr_info("PCI: Searching for controllers...\n");
150 /* Re-init number of PCIe controllers to support hot-plug feature. */
153 /* Do any configuration we need before using the PCIe */
155 for (i
= 0; i
< TILE_NUM_PCIE
; i
++) {
157 * To see whether we need a real config op based on
158 * the results of pcibios_init(), to support PCIe hot-plug.
160 if (pci_scan_flags
[i
] == 0) {
165 struct pci_controller
*controller
;
168 * Open the fd to the HV. If it fails then this
169 * device doesn't exist.
171 hv_cfg_fd0
= tile_pcie_open(i
, 0);
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
);
181 sprintf(name
, "pcie/%d/mem", i
);
182 hv_mem_fd
= hv_dev_open((HV_VirtAddr
)name
, 0);
184 pr_err("PCI: Could not open mem fd to HV!\n");
188 pr_info("PCI: Found PCI controller #%d\n", i
);
190 controller
= &controllers
[i
];
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
;
205 hv_dev_close(hv_cfg_fd0
);
207 hv_dev_close(hv_cfg_fd1
);
209 hv_dev_close(hv_mem_fd
);
215 * Before using the PCIe, see if we need to do any platform-specific
216 * configuration, such as the PLX switch Gen 1 issue on TILEmpower.
218 for (i
= 0; i
< num_controllers
; i
++) {
219 struct pci_controller
*controller
= &controllers
[i
];
221 if (controller
->plx_gen1
)
225 return num_controllers
;
229 * (pin - 1) converts from the PCI standard's [1:4] convention to
230 * a normal [0:3] range.
232 static int tile_map_irq(const struct pci_dev
*dev
, u8 slot
, u8 pin
)
234 struct pci_controller
*controller
=
235 (struct pci_controller
*)dev
->sysdata
;
236 return (pin
- 1) + controller
->irq_base
;
240 static void __devinit
fixup_read_and_payload_sizes(void)
242 struct pci_dev
*dev
= NULL
;
243 int smallest_max_payload
= 0x1; /* Tile maxes out at 256 bytes. */
244 int max_read_size
= 0x2; /* Limit to 512 byte reads. */
247 /* Scan for the smallest maximum payload size. */
248 while ((dev
= pci_get_device(PCI_ANY_ID
, PCI_ANY_ID
, dev
)) != NULL
) {
249 int pcie_caps_offset
;
253 pcie_caps_offset
= pci_find_capability(dev
, PCI_CAP_ID_EXP
);
254 if (pcie_caps_offset
== 0)
257 pci_read_config_dword(dev
, pcie_caps_offset
+ PCI_EXP_DEVCAP
,
259 max_payload
= devcap
& PCI_EXP_DEVCAP_PAYLOAD
;
260 if (max_payload
< smallest_max_payload
)
261 smallest_max_payload
= max_payload
;
264 /* Now, set the max_payload_size for all devices to that value. */
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
;
270 pcie_caps_offset
= pci_find_capability(dev
, PCI_CAP_ID_EXP
);
271 if (pcie_caps_offset
== 0)
274 pci_read_config_word(dev
, pcie_caps_offset
+ PCI_EXP_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
,
285 * Second PCI initialization entry point, called by subsys_initcall.
287 * The controllers have been set up by the time we get here, by a call to
290 int __devinit
pcibios_init(void)
294 pr_info("PCI: Probing PCI hardware\n");
297 * Delay a bit in case devices aren't ready. Some devices are
298 * known to require at least 20ms here, but we use a more
299 * conservative value.
303 /* Scan all of the recorded PCI controllers. */
304 for (i
= 0; i
< TILE_NUM_PCIE
; i
++) {
306 * Do real pcibios init ops if the controller is initialized
307 * by tile_pci_init() successfully and not initialized by
308 * pcibios_init() yet to support PCIe hot-plug.
310 if (pci_scan_flags
[i
] == 0 && controllers
[i
].ops
!= NULL
) {
311 struct pci_controller
*controller
= &controllers
[i
];
314 if (tile_init_irqs(i
, controller
)) {
315 pr_err("PCI: Could not initialize IRQs\n");
319 pr_info("PCI: initializing controller #%d\n", i
);
322 * This comes from the generic Linux PCI driver.
324 * It reads the PCI tree for this bus into the Linux
327 * This is inlined in linux/pci.h and calls into
328 * pci_scan_bus_parented() in probe.c.
330 bus
= pci_scan_bus(0, controller
->ops
, controller
);
331 controller
->root_bus
= bus
;
332 controller
->last_busno
= bus
->subordinate
;
336 /* Do machine dependent PCI interrupt routing */
337 pci_fixup_irqs(pci_common_swizzle
, tile_map_irq
);
340 * This comes from the generic Linux PCI driver.
342 * It allocates all of the resources (I/O memory, etc)
343 * associated with the devices read in above.
345 pci_assign_unassigned_resources();
347 /* Configure the max_read_size and max_payload_size values. */
348 fixup_read_and_payload_sizes();
350 /* Record the I/O resources in the PCI controller structure. */
351 for (i
= 0; i
< TILE_NUM_PCIE
; i
++) {
353 * Do real pcibios init ops if the controller is initialized
354 * by tile_pci_init() successfully and not initialized by
355 * pcibios_init() yet to support PCIe hot-plug.
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
;
362 list_for_each_entry(dev
, &root_bus
->devices
, bus_list
) {
364 * Find the PCI host controller, ie. the 1st
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];
378 pci_scan_flags
[i
] = 1;
388 subsys_initcall(pcibios_init
);
391 * No bus fixups needed.
393 void __devinit
pcibios_fixup_bus(struct pci_bus
*bus
)
395 /* Nothing needs to be done. */
398 void pcibios_set_master(struct pci_dev
*dev
)
400 /* No special bus mastering setup handling. */
404 * This can be called from the generic PCI layer, but doesn't need to
407 char __devinit
*pcibios_setup(char *str
)
409 /* Nothing needs to be done. */
414 * This is called from the generic Linux layer.
416 void __devinit
pcibios_update_irq(struct pci_dev
*dev
, int irq
)
418 pci_write_config_byte(dev
, PCI_INTERRUPT_LINE
, irq
);
422 * Enable memory and/or address decoding, as appropriate, for the
423 * device described by the 'dev' struct.
425 * This is called from the generic PCI layer, and can be called
426 * for bridges or endpoints.
428 int pcibios_enable_device(struct pci_dev
*dev
, int mask
)
435 pci_read_config_byte(dev
, PCI_HEADER_TYPE
, &header_type
);
437 pci_read_config_word(dev
, PCI_COMMAND
, &cmd
);
439 if ((header_type
& 0x7F) == PCI_HEADER_TYPE_BRIDGE
) {
441 * For bridges, we enable both memory and I/O decoding
444 cmd
|= PCI_COMMAND_IO
;
445 cmd
|= PCI_COMMAND_MEMORY
;
448 * For endpoints, we enable memory and/or I/O decoding
449 * only if they have a memory resource of that type.
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",
459 if (r
->flags
& IORESOURCE_IO
)
460 cmd
|= PCI_COMMAND_IO
;
461 if (r
->flags
& IORESOURCE_MEM
)
462 cmd
|= PCI_COMMAND_MEMORY
;
467 * We only write the command if it changed.
470 pci_write_config_word(dev
, PCI_COMMAND
, cmd
);
474 /****************************************************************
476 * Tile PCI config space read/write routines
478 ****************************************************************/
481 * These are the normal read and write ops
482 * These are expanded with macros from pci_bus_read_config_byte() etc.
484 * devfn is the combined PCI slot & function.
486 * offset is in bytes, from the start of config space for the
487 * specified bus & slot.
490 static int __devinit
tile_cfg_read(struct pci_bus
*bus
,
496 struct pci_controller
*controller
= bus
->sysdata
;
497 int busnum
= bus
->number
& 0xff;
498 int slot
= (devfn
>> 3) & 0x1f;
499 int function
= devfn
& 0x7;
504 * There is no bridge between the Tile and bus 0, so we
505 * use config0 to talk to bus 0.
507 * If we're talking to a bus other than zero then we
508 * must have found a bridge.
512 * We fake an empty slot for (busnum == 0) && (slot > 0),
513 * since there is only one slot on bus 0.
522 addr
= busnum
<< 20; /* Bus in 27:20 */
523 addr
|= slot
<< 15; /* Slot (device) in 19:15 */
524 addr
|= function
<< 12; /* Function is in 14:12 */
525 addr
|= (offset
& 0xFFF); /* byte address in 0:11 */
527 return hv_dev_pread(controller
->hv_cfg_fd
[config_mode
], 0,
528 (HV_VirtAddr
)(val
), size
, addr
);
533 * See tile_cfg_read() for relevant comments.
534 * Note that "val" is the value to write, not a pointer to that value.
536 static int __devinit
tile_cfg_write(struct pci_bus
*bus
,
542 struct pci_controller
*controller
= bus
->sysdata
;
543 int busnum
= bus
->number
& 0xff;
544 int slot
= (devfn
>> 3) & 0x1f;
545 int function
= devfn
& 0x7;
548 HV_VirtAddr valp
= (HV_VirtAddr
)&val
;
551 * For bus 0 slot 0 we use config 0 accesses.
555 * We fake an empty slot for (busnum == 0) && (slot > 0),
556 * since there is only one slot on bus 0.
563 addr
= busnum
<< 20; /* Bus in 27:20 */
564 addr
|= slot
<< 15; /* Slot (device) in 19:15 */
565 addr
|= function
<< 12; /* Function is in 14:12 */
566 addr
|= (offset
& 0xFFF); /* byte address in 0:11 */
569 /* Point to the correct part of the 32-bit "val". */
573 return hv_dev_pwrite(controller
->hv_cfg_fd
[config_mode
], 0,
578 static struct pci_ops tile_cfg_ops
= {
579 .read
= tile_cfg_read
,
580 .write
= tile_cfg_write
,
585 * In the following, each PCI controller's mem_resources[1]
586 * represents its (non-prefetchable) PCI memory resource.
587 * mem_resources[0] and mem_resources[2] refer to its PCI I/O and
588 * prefetchable PCI memory resources, respectively.
589 * For more details, see pci_setup_bridge() in setup-bus.c.
590 * By comparing the target PCI memory address against the
591 * end address of controller 0, we can determine the controller
592 * that should accept the PCI memory access.
594 #define TILE_READ(size, type) \
595 type _tile_read##size(unsigned long addr) \
599 if (addr > controllers[0].mem_resources[1].end && \
600 addr > controllers[0].mem_resources[2].end) \
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); \
608 EXPORT_SYMBOL(_tile_read##size)
615 #define TILE_WRITE(size, type) \
616 void _tile_write##size(type val, unsigned long addr) \
619 if (addr > controllers[0].mem_resources[1].end && \
620 addr > controllers[0].mem_resources[2].end) \
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); \
627 EXPORT_SYMBOL(_tile_write##size)