diff options
| author | Chris Metcalf <cmetcalf@tilera.com> | 2011-02-28 16:37:34 -0500 |
|---|---|---|
| committer | Chris Metcalf <cmetcalf@tilera.com> | 2011-03-10 13:17:53 -0500 |
| commit | 76c567fbba50c3da2f4d40e2e551bab26cfd4381 (patch) | |
| tree | 6e3c92a266d0ec255e1930adf5ba5268cd71dee9 | |
| parent | 09c17eab075ceeafb53935d858c575b6776394d1 (diff) | |
arch/tile: support 4KB page size as well as 64KB
The Tilera architecture traditionally supports 64KB page sizes
to improve TLB utilization and improve performance when the
hardware is being used primarily to run a single application.
For more generic server scenarios, it can be beneficial to run
with 4KB page sizes, so this commit allows that to be specified
(by modifying the arch/tile/include/hv/pagesize.h header).
As part of this change, we also re-worked the PTE management
slightly so that PTE writes all go through a __set_pte() function
where we can do some additional validation. The set_pte_order()
function was eliminated since the "order" argument wasn't being used.
One bug uncovered was in the PCI DMA code, which wasn't properly
flushing the specified range. This was benign with 64KB pages,
but with 4KB pages we were getting some larger flushes wrong.
The per-cpu memory reservation code also needed updating to
conform with the newer percpu stuff; before it always chose 64KB,
and that was always correct, but with 4KB granularity we now have
to pay closer attention and reserve the amount of memory that will
be requested when the percpu code starts allocating.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
| -rw-r--r-- | arch/tile/Kconfig | 6 | ||||
| -rw-r--r-- | arch/tile/include/asm/hugetlb.h | 2 | ||||
| -rw-r--r-- | arch/tile/include/asm/page.h | 34 | ||||
| -rw-r--r-- | arch/tile/include/asm/pgalloc.h | 7 | ||||
| -rw-r--r-- | arch/tile/include/asm/pgtable.h | 31 | ||||
| -rw-r--r-- | arch/tile/include/asm/pgtable_32.h | 8 | ||||
| -rw-r--r-- | arch/tile/include/asm/stack.h | 3 | ||||
| -rw-r--r-- | arch/tile/include/asm/thread_info.h | 1 | ||||
| -rw-r--r-- | arch/tile/kernel/intvec_32.S | 16 | ||||
| -rw-r--r-- | arch/tile/kernel/machine_kexec.c | 7 | ||||
| -rw-r--r-- | arch/tile/kernel/pci-dma.c | 38 | ||||
| -rw-r--r-- | arch/tile/kernel/process.c | 2 | ||||
| -rw-r--r-- | arch/tile/kernel/setup.c | 20 | ||||
| -rw-r--r-- | arch/tile/lib/memcpy_tile64.c | 4 | ||||
| -rw-r--r-- | arch/tile/mm/homecache.c | 2 | ||||
| -rw-r--r-- | arch/tile/mm/init.c | 18 | ||||
| -rw-r--r-- | arch/tile/mm/migrate_32.S | 1 | ||||
| -rw-r--r-- | arch/tile/mm/pgtable.c | 170 |
18 files changed, 235 insertions, 135 deletions
diff --git a/arch/tile/Kconfig b/arch/tile/Kconfig index eed0fc5dfe67..f3b78701c219 100644 --- a/arch/tile/Kconfig +++ b/arch/tile/Kconfig | |||
| @@ -202,12 +202,6 @@ config NODES_SHIFT | |||
| 202 | By default, 2, i.e. 2^2 == 4 DDR2 controllers. | 202 | By default, 2, i.e. 2^2 == 4 DDR2 controllers. |
| 203 | In a system with more controllers, this value should be raised. | 203 | In a system with more controllers, this value should be raised. |
| 204 | 204 | ||
| 205 | # Need 16MB areas to enable hugetlb | ||
| 206 | # See build-time check in arch/tile/mm/init.c. | ||
| 207 | config FORCE_MAX_ZONEORDER | ||
| 208 | int | ||
| 209 | default 9 | ||
| 210 | |||
| 211 | choice | 205 | choice |
| 212 | depends on !TILEGX | 206 | depends on !TILEGX |
| 213 | prompt "Memory split" if EXPERT | 207 | prompt "Memory split" if EXPERT |
diff --git a/arch/tile/include/asm/hugetlb.h b/arch/tile/include/asm/hugetlb.h index 0521c277bbde..d396d1805163 100644 --- a/arch/tile/include/asm/hugetlb.h +++ b/arch/tile/include/asm/hugetlb.h | |||
| @@ -54,7 +54,7 @@ static inline void hugetlb_free_pgd_range(struct mmu_gather *tlb, | |||
| 54 | static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr, | 54 | static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr, |
| 55 | pte_t *ptep, pte_t pte) | 55 | pte_t *ptep, pte_t pte) |
| 56 | { | 56 | { |
| 57 | set_pte_order(ptep, pte, HUGETLB_PAGE_ORDER); | 57 | set_pte(ptep, pte); |
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm, | 60 | static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm, |
diff --git a/arch/tile/include/asm/page.h b/arch/tile/include/asm/page.h index 7979a45430d3..3eb53525bf9d 100644 --- a/arch/tile/include/asm/page.h +++ b/arch/tile/include/asm/page.h | |||
| @@ -16,10 +16,11 @@ | |||
| 16 | #define _ASM_TILE_PAGE_H | 16 | #define _ASM_TILE_PAGE_H |
| 17 | 17 | ||
| 18 | #include <linux/const.h> | 18 | #include <linux/const.h> |
| 19 | #include <hv/pagesize.h> | ||
| 19 | 20 | ||
| 20 | /* PAGE_SHIFT and HPAGE_SHIFT determine the page sizes. */ | 21 | /* PAGE_SHIFT and HPAGE_SHIFT determine the page sizes. */ |
| 21 | #define PAGE_SHIFT 16 | 22 | #define PAGE_SHIFT HV_LOG2_PAGE_SIZE_SMALL |
| 22 | #define HPAGE_SHIFT 24 | 23 | #define HPAGE_SHIFT HV_LOG2_PAGE_SIZE_LARGE |
| 23 | 24 | ||
| 24 | #define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT) | 25 | #define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT) |
| 25 | #define HPAGE_SIZE (_AC(1, UL) << HPAGE_SHIFT) | 26 | #define HPAGE_SIZE (_AC(1, UL) << HPAGE_SHIFT) |
| @@ -29,25 +30,18 @@ | |||
| 29 | 30 | ||
| 30 | #ifdef __KERNEL__ | 31 | #ifdef __KERNEL__ |
| 31 | 32 | ||
| 32 | #include <hv/hypervisor.h> | ||
| 33 | #include <arch/chip.h> | ||
| 34 | |||
| 35 | /* | 33 | /* |
| 36 | * The {,H}PAGE_SHIFT values must match the HV_LOG2_PAGE_SIZE_xxx | 34 | * If the Kconfig doesn't specify, set a maximum zone order that |
| 37 | * definitions in <hv/hypervisor.h>. We validate this at build time | 35 | * is enough so that we can create huge pages from small pages given |
| 38 | * here, and again at runtime during early boot. We provide a | 36 | * the respective sizes of the two page types. See <linux/mmzone.h>. |
| 39 | * separate definition since userspace doesn't have <hv/hypervisor.h>. | ||
| 40 | * | ||
| 41 | * Be careful to distinguish PAGE_SHIFT from HV_PTE_INDEX_PFN, since | ||
| 42 | * they are the same on i386 but not TILE. | ||
| 43 | */ | 37 | */ |
| 44 | #if HV_LOG2_PAGE_SIZE_SMALL != PAGE_SHIFT | 38 | #ifndef CONFIG_FORCE_MAX_ZONEORDER |
| 45 | # error Small page size mismatch in Linux | 39 | #define CONFIG_FORCE_MAX_ZONEORDER (HPAGE_SHIFT - PAGE_SHIFT + 1) |
| 46 | #endif | ||
| 47 | #if HV_LOG2_PAGE_SIZE_LARGE != HPAGE_SHIFT | ||
| 48 | # error Huge page size mismatch in Linux | ||
| 49 | #endif | 40 | #endif |
| 50 | 41 | ||
| 42 | #include <hv/hypervisor.h> | ||
| 43 | #include <arch/chip.h> | ||
| 44 | |||
| 51 | #ifndef __ASSEMBLY__ | 45 | #ifndef __ASSEMBLY__ |
| 52 | 46 | ||
| 53 | #include <linux/types.h> | 47 | #include <linux/types.h> |
| @@ -81,12 +75,6 @@ static inline void copy_user_page(void *to, void *from, unsigned long vaddr, | |||
| 81 | * Hypervisor page tables are made of the same basic structure. | 75 | * Hypervisor page tables are made of the same basic structure. |
| 82 | */ | 76 | */ |
| 83 | 77 | ||
| 84 | typedef __u64 pteval_t; | ||
| 85 | typedef __u64 pmdval_t; | ||
| 86 | typedef __u64 pudval_t; | ||
| 87 | typedef __u64 pgdval_t; | ||
| 88 | typedef __u64 pgprotval_t; | ||
| 89 | |||
| 90 | typedef HV_PTE pte_t; | 78 | typedef HV_PTE pte_t; |
| 91 | typedef HV_PTE pgd_t; | 79 | typedef HV_PTE pgd_t; |
| 92 | typedef HV_PTE pgprot_t; | 80 | typedef HV_PTE pgprot_t; |
diff --git a/arch/tile/include/asm/pgalloc.h b/arch/tile/include/asm/pgalloc.h index cf52791a5501..e919c0bdc22d 100644 --- a/arch/tile/include/asm/pgalloc.h +++ b/arch/tile/include/asm/pgalloc.h | |||
| @@ -41,9 +41,9 @@ | |||
| 41 | static inline void set_pmd(pmd_t *pmdp, pmd_t pmd) | 41 | static inline void set_pmd(pmd_t *pmdp, pmd_t pmd) |
| 42 | { | 42 | { |
| 43 | #ifdef CONFIG_64BIT | 43 | #ifdef CONFIG_64BIT |
| 44 | set_pte_order(pmdp, pmd, L2_USER_PGTABLE_ORDER); | 44 | set_pte(pmdp, pmd); |
| 45 | #else | 45 | #else |
| 46 | set_pte_order(&pmdp->pud.pgd, pmd.pud.pgd, L2_USER_PGTABLE_ORDER); | 46 | set_pte(&pmdp->pud.pgd, pmd.pud.pgd); |
| 47 | #endif | 47 | #endif |
| 48 | } | 48 | } |
| 49 | 49 | ||
| @@ -100,6 +100,9 @@ pte_t *get_prealloc_pte(unsigned long pfn); | |||
| 100 | /* During init, we can shatter kernel huge pages if needed. */ | 100 | /* During init, we can shatter kernel huge pages if needed. */ |
| 101 | void shatter_pmd(pmd_t *pmd); | 101 | void shatter_pmd(pmd_t *pmd); |
| 102 | 102 | ||
| 103 | /* After init, a more complex technique is required. */ | ||
| 104 | void shatter_huge_page(unsigned long addr); | ||
| 105 | |||
| 103 | #ifdef __tilegx__ | 106 | #ifdef __tilegx__ |
| 104 | /* We share a single page allocator for both L1 and L2 page tables. */ | 107 | /* We share a single page allocator for both L1 and L2 page tables. */ |
| 105 | #if HV_L1_SIZE != HV_L2_SIZE | 108 | #if HV_L1_SIZE != HV_L2_SIZE |
diff --git a/arch/tile/include/asm/pgtable.h b/arch/tile/include/asm/pgtable.h index a6604e9485da..1a20b7ef8ea2 100644 --- a/arch/tile/include/asm/pgtable.h +++ b/arch/tile/include/asm/pgtable.h | |||
| @@ -233,15 +233,23 @@ static inline void __pte_clear(pte_t *ptep) | |||
| 233 | #define pgd_ERROR(e) \ | 233 | #define pgd_ERROR(e) \ |
| 234 | pr_err("%s:%d: bad pgd 0x%016llx.\n", __FILE__, __LINE__, pgd_val(e)) | 234 | pr_err("%s:%d: bad pgd 0x%016llx.\n", __FILE__, __LINE__, pgd_val(e)) |
| 235 | 235 | ||
| 236 | /* Return PA and protection info for a given kernel VA. */ | ||
| 237 | int va_to_cpa_and_pte(void *va, phys_addr_t *cpa, pte_t *pte); | ||
| 238 | |||
| 239 | /* | ||
| 240 | * __set_pte() ensures we write the 64-bit PTE with 32-bit words in | ||
| 241 | * the right order on 32-bit platforms and also allows us to write | ||
| 242 | * hooks to check valid PTEs, etc., if we want. | ||
| 243 | */ | ||
| 244 | void __set_pte(pte_t *ptep, pte_t pte); | ||
| 245 | |||
| 236 | /* | 246 | /* |
| 237 | * set_pte_order() sets the given PTE and also sanity-checks the | 247 | * set_pte() sets the given PTE and also sanity-checks the |
| 238 | * requested PTE against the page homecaching. Unspecified parts | 248 | * requested PTE against the page homecaching. Unspecified parts |
| 239 | * of the PTE are filled in when it is written to memory, i.e. all | 249 | * of the PTE are filled in when it is written to memory, i.e. all |
| 240 | * caching attributes if "!forcecache", or the home cpu if "anyhome". | 250 | * caching attributes if "!forcecache", or the home cpu if "anyhome". |
| 241 | */ | 251 | */ |
| 242 | extern void set_pte_order(pte_t *ptep, pte_t pte, int order); | 252 | extern void set_pte(pte_t *ptep, pte_t pte); |
| 243 | |||
| 244 | #define set_pte(ptep, pteval) set_pte_order(ptep, pteval, 0) | ||
| 245 | #define set_pte_at(mm, addr, ptep, pteval) set_pte(ptep, pteval) | 253 | #define set_pte_at(mm, addr, ptep, pteval) set_pte(ptep, pteval) |
| 246 | #define set_pte_atomic(pteptr, pteval) set_pte(pteptr, pteval) | 254 | #define set_pte_atomic(pteptr, pteval) set_pte(pteptr, pteval) |
