David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * include/asm-xtensa/pgalloc.h |
| 4 | * |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5 | * Copyright (C) 2001-2007 Tensilica Inc. |
| 6 | */ |
| 7 | |
| 8 | #ifndef _XTENSA_PGALLOC_H |
| 9 | #define _XTENSA_PGALLOC_H |
| 10 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 11 | #ifdef CONFIG_MMU |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 12 | #include <linux/highmem.h> |
| 13 | #include <linux/slab.h> |
| 14 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 15 | #define __HAVE_ARCH_PTE_ALLOC_ONE_KERNEL |
| 16 | #define __HAVE_ARCH_PTE_ALLOC_ONE |
| 17 | #include <asm-generic/pgalloc.h> |
| 18 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 19 | /* |
| 20 | * Allocating and freeing a pmd is trivial: the 1-entry pmd is |
| 21 | * inside the pgd, so has no extra memory associated with it. |
| 22 | */ |
| 23 | |
| 24 | #define pmd_populate_kernel(mm, pmdp, ptep) \ |
| 25 | (pmd_val(*(pmdp)) = ((unsigned long)ptep)) |
| 26 | #define pmd_populate(mm, pmdp, page) \ |
| 27 | (pmd_val(*(pmdp)) = ((unsigned long)page_to_virt(page))) |
| 28 | #define pmd_pgtable(pmd) pmd_page(pmd) |
| 29 | |
| 30 | static inline pgd_t* |
| 31 | pgd_alloc(struct mm_struct *mm) |
| 32 | { |
| 33 | return (pgd_t*) __get_free_pages(GFP_KERNEL | __GFP_ZERO, PGD_ORDER); |
| 34 | } |
| 35 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 36 | static inline void ptes_clear(pte_t *ptep) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 37 | { |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 38 | int i; |
| 39 | |
| 40 | for (i = 0; i < PTRS_PER_PTE; i++) |
| 41 | pte_clear(NULL, 0, ptep + i); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 42 | } |
| 43 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 44 | static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 45 | { |
| 46 | pte_t *ptep; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 47 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 48 | ptep = (pte_t *)__pte_alloc_one_kernel(mm); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 49 | if (!ptep) |
| 50 | return NULL; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 51 | ptes_clear(ptep); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 52 | return ptep; |
| 53 | } |
| 54 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 55 | static inline pgtable_t pte_alloc_one(struct mm_struct *mm) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 56 | { |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 57 | struct page *page; |
| 58 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 59 | page = __pte_alloc_one(mm, GFP_PGTABLE_USER); |
| 60 | if (!page) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 61 | return NULL; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 62 | ptes_clear(page_address(page)); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 63 | return page; |
| 64 | } |
| 65 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 66 | #define pmd_pgtable(pmd) pmd_page(pmd) |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 67 | #endif /* CONFIG_MMU */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 68 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 69 | #endif /* _XTENSA_PGALLOC_H */ |