2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License as published by the
4 * Free Software Foundation; either version 2 of the License, or (at your
5 * option) any later version.
7 * Copyright (C) 2003, 04, 11 Ralf Baechle (ralf@linux-mips.org)
8 * Copyright (C) 2011 Wind River Systems,
9 * written by Ralf Baechle (ralf@linux-mips.org)
11 #include <linux/bug.h>
12 #include <linux/kernel.h>
14 #include <linux/bootmem.h>
15 #include <linux/export.h>
16 #include <linux/init.h>
17 #include <linux/types.h>
18 #include <linux/pci.h>
19 #include <linux/of_address.h>
21 #include <asm/cpu-info.h>
23 unsigned long PCIBIOS_MIN_IO
;
24 EXPORT_SYMBOL(PCIBIOS_MIN_IO
);
26 unsigned long PCIBIOS_MIN_MEM
;
27 EXPORT_SYMBOL(PCIBIOS_MIN_MEM
);
29 static int __init
pcibios_set_cache_line_size(void)
31 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
35 * Set PCI cacheline size to that of the highest level in the
38 lsize
= c
->dcache
.linesz
;
39 lsize
= c
->scache
.linesz
? : lsize
;
40 lsize
= c
->tcache
.linesz
? : lsize
;
44 pci_dfl_cache_line_size
= lsize
>> 2;
46 pr_debug("PCI: pci_cache_line_size set to %d bytes\n", lsize
);
49 arch_initcall(pcibios_set_cache_line_size
);
51 void pci_resource_to_user(const struct pci_dev
*dev
, int bar
,
52 const struct resource
*rsrc
, resource_size_t
*start
,
55 phys_addr_t size
= resource_size(rsrc
);
57 *start
= fixup_bigphys_addr(rsrc
->start
, size
);
58 *end
= rsrc
->start
+ size
- 1;
61 int pci_mmap_page_range(struct pci_dev
*dev
, struct vm_area_struct
*vma
,
62 enum pci_mmap_state mmap_state
, int write_combine
)
67 * I/O space can be accessed via normal processor loads and stores on
68 * this platform but for now we elect not to do this and portable
69 * drivers should not do this anyway.
71 if (mmap_state
== pci_mmap_io
)
75 * Ignore write-combine; for now only return uncached mappings.
77 prot
= pgprot_val(vma
->vm_page_prot
);
78 prot
= (prot
& ~_CACHE_MASK
) | _CACHE_UNCACHED
;
79 vma
->vm_page_prot
= __pgprot(prot
);
81 return remap_pfn_range(vma
, vma
->vm_start
, vma
->vm_pgoff
,
82 vma
->vm_end
- vma
->vm_start
, vma
->vm_page_prot
);