hc
2023-12-06 08f87f769b595151be1afeff53e144f543faa614
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2020 Google LLC
 * Author: Quentin Perret <qperret@google.com>
 */
 
#include <asm/kvm_pgtable.h>
 
#include <nvhe/early_alloc.h>
#include <nvhe/memory.h>
 
struct kvm_pgtable_mm_ops hyp_early_alloc_mm_ops;
s64 __ro_after_init hyp_physvirt_offset;
 
static unsigned long base;
static unsigned long end;
static unsigned long cur;
 
unsigned long hyp_early_alloc_nr_used_pages(void)
{
   return (cur - base) >> PAGE_SHIFT;
}
 
void *hyp_early_alloc_contig(unsigned int nr_pages)
{
   unsigned long size = (nr_pages << PAGE_SHIFT);
   void *ret = (void *)cur;
 
   if (!nr_pages)
       return NULL;
 
   if (end - cur < size)
       return NULL;
 
   cur += size;
   memset(ret, 0, size);
 
   return ret;
}
 
void *hyp_early_alloc_page(void *arg)
{
   return hyp_early_alloc_contig(1);
}
 
void hyp_early_alloc_init(void *virt, unsigned long size)
{
   base = cur = (unsigned long)virt;
   end = base + size;
 
   hyp_early_alloc_mm_ops.zalloc_page = hyp_early_alloc_page;
   hyp_early_alloc_mm_ops.phys_to_virt = hyp_phys_to_virt;
   hyp_early_alloc_mm_ops.virt_to_phys = hyp_virt_to_phys;
}