KVM
early_alloc.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2020 Google LLC
4  * Author: Quentin Perret <qperret@google.com>
5  */
6 
7 #include <asm/kvm_pgtable.h>
8 
9 #include <nvhe/early_alloc.h>
10 #include <nvhe/memory.h>
11 
12 struct kvm_pgtable_mm_ops hyp_early_alloc_mm_ops;
14 
15 static unsigned long base;
16 static unsigned long end;
17 static unsigned long cur;
18 
19 unsigned long hyp_early_alloc_nr_used_pages(void)
20 {
21  return (cur - base) >> PAGE_SHIFT;
22 }
23 
24 void *hyp_early_alloc_contig(unsigned int nr_pages)
25 {
26  unsigned long size = (nr_pages << PAGE_SHIFT);
27  void *ret = (void *)cur;
28 
29  if (!nr_pages)
30  return NULL;
31 
32  if (end - cur < size)
33  return NULL;
34 
35  cur += size;
36  memset(ret, 0, size);
37 
38  return ret;
39 }
40 
41 void *hyp_early_alloc_page(void *arg)
42 {
43  return hyp_early_alloc_contig(1);
44 }
45 
46 static void hyp_early_alloc_get_page(void *addr) { }
47 static void hyp_early_alloc_put_page(void *addr) { }
48 
49 void hyp_early_alloc_init(void *virt, unsigned long size)
50 {
51  base = cur = (unsigned long)virt;
52  end = base + size;
53 
59 }
struct kvm_pgtable_mm_ops hyp_early_alloc_mm_ops
Definition: early_alloc.c:12
unsigned long hyp_early_alloc_nr_used_pages(void)
Definition: early_alloc.c:19
static unsigned long base
Definition: early_alloc.c:15
static unsigned long cur
Definition: early_alloc.c:17
void * hyp_early_alloc_contig(unsigned int nr_pages)
Definition: early_alloc.c:24
void hyp_early_alloc_init(void *virt, unsigned long size)
Definition: early_alloc.c:49
void * hyp_early_alloc_page(void *arg)
Definition: early_alloc.c:41
s64 __ro_after_init hyp_physvirt_offset
Definition: early_alloc.c:13
static void hyp_early_alloc_get_page(void *addr)
Definition: early_alloc.c:46
static void hyp_early_alloc_put_page(void *addr)
Definition: early_alloc.c:47
static unsigned long end
Definition: early_alloc.c:16
size_t size
Definition: gen-hyprel.c:133
static void * hyp_phys_to_virt(phys_addr_t phys)
Definition: memory.h:20
static phys_addr_t hyp_virt_to_phys(void *addr)
Definition: memory.h:25
struct vgic_global kvm_vgic_global_state __ro_after_init
Definition: vgic.c:20