2 #include <linux/kernel.h>
3 #include <asm/arch/hwregs/intr_vect.h>
5 void __devinit
pcibios_fixup_bus(struct pci_bus
*b
)
9 char * __devinit
pcibios_setup(char *str
)
14 void pcibios_set_master(struct pci_dev
*dev
)
17 pci_read_config_byte(dev
, PCI_LATENCY_TIMER
, &lat
);
18 printk(KERN_DEBUG
"PCI: Setting latency timer of device %s to %d\n", pci_name(dev
), lat
);
19 pci_write_config_byte(dev
, PCI_LATENCY_TIMER
, lat
);
22 int pci_mmap_page_range(struct pci_dev
*dev
, struct vm_area_struct
*vma
,
23 enum pci_mmap_state mmap_state
, int write_combine
)
27 /* Leave vm_pgoff as-is, the PCI space address is the physical
28 * address on this platform.
30 vma
->vm_flags
|= (VM_SHM
| VM_LOCKED
| VM_IO
);
32 prot
= pgprot_val(vma
->vm_page_prot
);
33 vma
->vm_page_prot
= __pgprot(prot
);
35 /* Write-combine setting is ignored, it is changed via the mtrr
36 * interfaces on this platform.
38 if (remap_pfn_range(vma
, vma
->vm_start
, vma
->vm_pgoff
,
39 vma
->vm_end
- vma
->vm_start
,
47 pcibios_align_resource(void *data
, struct resource
*res
,
48 unsigned long size
, unsigned long align
)
50 if (res
->flags
& IORESOURCE_IO
) {
51 unsigned long start
= res
->start
;
54 start
= (start
+ 0x3ff) & ~0x3ff;
60 int pcibios_enable_resources(struct pci_dev
*dev
, int mask
)
66 pci_read_config_word(dev
, PCI_COMMAND
, &cmd
);
68 for(idx
=0; idx
<6; idx
++) {
69 /* Only set up the requested stuff */
70 if (!(mask
& (1<<idx
)))
73 r
= &dev
->resource
[idx
];
74 if (!r
->start
&& r
->end
) {
75 printk(KERN_ERR
"PCI: Device %s not available because of resource collisions\n", pci_name(dev
));
78 if (r
->flags
& IORESOURCE_IO
)
79 cmd
|= PCI_COMMAND_IO
;
80 if (r
->flags
& IORESOURCE_MEM
)
81 cmd
|= PCI_COMMAND_MEMORY
;
83 if (dev
->resource
[PCI_ROM_RESOURCE
].start
)
84 cmd
|= PCI_COMMAND_MEMORY
;
86 printk("PCI: Enabling device %s (%04x -> %04x)\n", pci_name(dev
), old_cmd
, cmd
);
87 pci_write_config_word(dev
, PCI_COMMAND
, cmd
);
92 int pcibios_enable_irq(struct pci_dev
*dev
)
94 dev
->irq
= EXT_INTR_VECT
;
98 int pcibios_enable_device(struct pci_dev
*dev
, int mask
)
102 if ((err
= pcibios_enable_resources(dev
, mask
)) < 0)
105 return pcibios_enable_irq(dev
);
108 int pcibios_assign_resources(void)
110 struct pci_dev
*dev
= NULL
;
114 while ((dev
= pci_get_device(PCI_ANY_ID
, PCI_ANY_ID
, dev
)) != NULL
) {
115 int class = dev
->class >> 8;
117 /* Don't touch classless devices and host bridges */
118 if (!class || class == PCI_CLASS_BRIDGE_HOST
)
121 for(idx
=0; idx
<6; idx
++) {
122 r
= &dev
->resource
[idx
];
124 if (!r
->start
&& r
->end
)
125 pci_assign_resource(dev
, idx
);
131 EXPORT_SYMBOL(pcibios_assign_resources
);