diff options
author | Michal Simek <monstr@monstr.eu> | 2010-01-18 09:27:10 -0500 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-03-11 08:04:27 -0500 |
commit | a6475c132278c1be158a13872c233aeab8a00176 (patch) | |
tree | d25967ef6fc4fb408d9c6c7c0582edc9ff4760a3 /arch/microblaze/include/asm/pgtable.h | |
parent | d3afa58c20b65155af9f0d5eaa59fe2d367ac432 (diff) |
microblaze: Enable PCI, missing files
There are two parts of changes. The first is just enable
PCI in Makefiles and in Kconfig. The second is the rest of
missing files. I didn't want to add it with previous patch
because that patch is too big.
Current Microblaze toolchain has problem with weak symbols
that's why is necessary to apply this changes to be possible
to compile pci support.
Xilinx knows about this problem.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/include/asm/pgtable.h')
-rw-r--r-- | arch/microblaze/include/asm/pgtable.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/microblaze/include/asm/pgtable.h b/arch/microblaze/include/asm/pgtable.h index cc3a4dfc3eaa..1c47f6f8bfb6 100644 --- a/arch/microblaze/include/asm/pgtable.h +++ b/arch/microblaze/include/asm/pgtable.h | |||
@@ -90,6 +90,21 @@ static inline pte_t pte_mkspecial(pte_t pte) { return pte; } | |||
90 | #endif /* __ASSEMBLY__ */ | 90 | #endif /* __ASSEMBLY__ */ |
91 | 91 | ||
92 | /* | 92 | /* |
93 | * Macro to mark a page protection value as "uncacheable". | ||
94 | */ | ||
95 | |||
96 | #define _PAGE_CACHE_CTL (_PAGE_GUARDED | _PAGE_NO_CACHE | \ | ||
97 | _PAGE_WRITETHRU) | ||
98 | |||
99 | #define pgprot_noncached(prot) \ | ||
100 | (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \ | ||
101 | _PAGE_NO_CACHE | _PAGE_GUARDED)) | ||
102 | |||
103 | #define pgprot_noncached_wc(prot) \ | ||
104 | (__pgprot((pgprot_val(prot) & ~_PAGE_CACHE_CTL) | \ | ||
105 | _PAGE_NO_CACHE)) | ||
106 | |||
107 | /* | ||
93 | * The MicroBlaze MMU is identical to the PPC-40x MMU, and uses a hash | 108 | * The MicroBlaze MMU is identical to the PPC-40x MMU, and uses a hash |
94 | * table containing PTEs, together with a set of 16 segment registers, to | 109 | * table containing PTEs, together with a set of 16 segment registers, to |
95 | * define the virtual to physical address mapping. | 110 | * define the virtual to physical address mapping. |