| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * arch/sh64/mm/hugetlbpage.c | 
 | 3 |  * | 
 | 4 |  * SuperH HugeTLB page support. | 
 | 5 |  * | 
 | 6 |  * Cloned from sparc64 by Paul Mundt. | 
 | 7 |  * | 
 | 8 |  * Copyright (C) 2002, 2003 David S. Miller (davem@redhat.com) | 
 | 9 |  */ | 
 | 10 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/init.h> | 
 | 12 | #include <linux/fs.h> | 
 | 13 | #include <linux/mm.h> | 
 | 14 | #include <linux/hugetlb.h> | 
 | 15 | #include <linux/pagemap.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/slab.h> | 
 | 17 | #include <linux/sysctl.h> | 
 | 18 |  | 
 | 19 | #include <asm/mman.h> | 
 | 20 | #include <asm/pgalloc.h> | 
 | 21 | #include <asm/tlb.h> | 
 | 22 | #include <asm/tlbflush.h> | 
 | 23 | #include <asm/cacheflush.h> | 
 | 24 |  | 
| David Gibson | 63551ae | 2005-06-21 17:14:44 -0700 | [diff] [blame] | 25 | pte_t *huge_pte_alloc(struct mm_struct *mm, unsigned long addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | { | 
 | 27 | 	pgd_t *pgd; | 
 | 28 | 	pmd_t *pmd; | 
 | 29 | 	pte_t *pte = NULL; | 
 | 30 |  | 
 | 31 | 	pgd = pgd_offset(mm, addr); | 
 | 32 | 	if (pgd) { | 
 | 33 | 		pmd = pmd_alloc(mm, pgd, addr); | 
 | 34 | 		if (pmd) | 
 | 35 | 			pte = pte_alloc_map(mm, pmd, addr); | 
 | 36 | 	} | 
 | 37 | 	return pte; | 
 | 38 | } | 
 | 39 |  | 
| David Gibson | 63551ae | 2005-06-21 17:14:44 -0700 | [diff] [blame] | 40 | pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { | 
 | 42 | 	pgd_t *pgd; | 
 | 43 | 	pmd_t *pmd; | 
 | 44 | 	pte_t *pte = NULL; | 
 | 45 |  | 
 | 46 | 	pgd = pgd_offset(mm, addr); | 
 | 47 | 	if (pgd) { | 
 | 48 | 		pmd = pmd_offset(pgd, addr); | 
 | 49 | 		if (pmd) | 
 | 50 | 			pte = pte_offset_map(pmd, addr); | 
 | 51 | 	} | 
 | 52 | 	return pte; | 
 | 53 | } | 
 | 54 |  | 
| Chen, Kenneth W | 39dde65 | 2006-12-06 20:32:03 -0800 | [diff] [blame] | 55 | int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep) | 
 | 56 | { | 
 | 57 | 	return 0; | 
 | 58 | } | 
 | 59 |  | 
| Hugh Dickins | 147efea | 2005-10-29 18:16:09 -0700 | [diff] [blame] | 60 | void set_huge_pte_at(struct mm_struct *mm, unsigned long addr, | 
 | 61 | 		     pte_t *ptep, pte_t entry) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { | 
| Hugh Dickins | 147efea | 2005-10-29 18:16:09 -0700 | [diff] [blame] | 63 | 	int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 |  | 
 | 65 | 	for (i = 0; i < (1 << HUGETLB_PAGE_ORDER); i++) { | 
| Hugh Dickins | 147efea | 2005-10-29 18:16:09 -0700 | [diff] [blame] | 66 | 		set_pte_at(mm, addr, ptep, entry); | 
 | 67 | 		ptep++; | 
 | 68 | 		addr += PAGE_SIZE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | 		pte_val(entry) += PAGE_SIZE; | 
 | 70 | 	} | 
 | 71 | } | 
 | 72 |  | 
| Hugh Dickins | 147efea | 2005-10-29 18:16:09 -0700 | [diff] [blame] | 73 | pte_t huge_ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, | 
 | 74 | 			      pte_t *ptep) | 
| David Gibson | 63551ae | 2005-06-21 17:14:44 -0700 | [diff] [blame] | 75 | { | 
 | 76 | 	pte_t entry; | 
| Hugh Dickins | 147efea | 2005-10-29 18:16:09 -0700 | [diff] [blame] | 77 | 	int i; | 
| David Gibson | 63551ae | 2005-06-21 17:14:44 -0700 | [diff] [blame] | 78 |  | 
 | 79 | 	entry = *ptep; | 
 | 80 |  | 
 | 81 | 	for (i = 0; i < (1 << HUGETLB_PAGE_ORDER); i++) { | 
| Hugh Dickins | 147efea | 2005-10-29 18:16:09 -0700 | [diff] [blame] | 82 | 		pte_clear(mm, addr, ptep); | 
 | 83 | 		addr += PAGE_SIZE; | 
 | 84 | 		ptep++; | 
| David Gibson | 63551ae | 2005-06-21 17:14:44 -0700 | [diff] [blame] | 85 | 	} | 
 | 86 |  | 
 | 87 | 	return entry; | 
 | 88 | } | 
 | 89 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | struct page *follow_huge_addr(struct mm_struct *mm, | 
 | 91 | 			      unsigned long address, int write) | 
 | 92 | { | 
 | 93 | 	return ERR_PTR(-EINVAL); | 
 | 94 | } | 
 | 95 |  | 
 | 96 | int pmd_huge(pmd_t pmd) | 
 | 97 | { | 
 | 98 | 	return 0; | 
 | 99 | } | 
 | 100 |  | 
 | 101 | struct page *follow_huge_pmd(struct mm_struct *mm, unsigned long address, | 
 | 102 | 			     pmd_t *pmd, int write) | 
 | 103 | { | 
 | 104 | 	return NULL; | 
 | 105 | } |