1 | /* |
---|
2 | * hal_ppm.c - Generic Physical Page Manager API implementation for TSAR |
---|
3 | * |
---|
4 | * Authors Alain Greiner (2016,2017,2018,2019) |
---|
5 | * |
---|
6 | * Copyright (c) UPMC Sorbonne Universites |
---|
7 | * |
---|
8 | * This file is part of ALMOS-MKH. |
---|
9 | * |
---|
10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
11 | * under the terms of the GNU General Public License as published by |
---|
12 | * the Free Software Foundation; version 2.0 of the License. |
---|
13 | * |
---|
14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
17 | * General Public License for more details. |
---|
18 | * |
---|
19 | * You should have received a copy of the GNU General Public License |
---|
20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
22 | */ |
---|
23 | |
---|
24 | #include <kernel_config.h> |
---|
25 | #include <hal_kernel_types.h> |
---|
26 | #include <hal_ppm.h> |
---|
27 | #include <hal_special.h> |
---|
28 | #include <printk.h> |
---|
29 | #include <busylock.h> |
---|
30 | #include <process.h> |
---|
31 | #include <ppm.h> |
---|
32 | #include <thread.h> |
---|
33 | #include <cluster.h> |
---|
34 | #include <page.h> |
---|
35 | |
---|
36 | ////////////////////////////////////////////////////////////////////////////////////////// |
---|
37 | // This file contains the TSAR specific code for the physical memory |
---|
38 | // allocators initialisation. |
---|
39 | // |
---|
40 | // For The TSAR architecture, the kernel pointers are identity mapped: |
---|
41 | // - the 32 bits PTR value is identical to the 32 bits LPA value, |
---|
42 | // - the 64 bits XPTR value is identical to the 64 bits PADDR value. |
---|
43 | // This hal_ppm_init() function initializes the pages_tbl[] array used by the generic |
---|
44 | // kmem memory allocator in the local cluster. This array starts in first free page |
---|
45 | // after kernel code, as defined by the 'pages_offset' field in boot_info. |
---|
46 | ////////////////////////////////////////////////////////////////////////////////////////// |
---|
47 | |
---|
48 | |
---|
49 | /////////////////////////////////////////// |
---|
50 | error_t hal_ppm_init( boot_info_t * info ) |
---|
51 | { |
---|
52 | uint32_t i; |
---|
53 | |
---|
54 | // get relevant info from boot_info structure |
---|
55 | uint32_t pages_nr = info->pages_nr; |
---|
56 | uint32_t pages_tbl_offset = info->pages_offset; |
---|
57 | |
---|
58 | // get pointer on local Physical Page Manager |
---|
59 | ppm_t * ppm = &LOCAL_CLUSTER->ppm; |
---|
60 | |
---|
61 | // initialize lock protecting the free_pages[] lists |
---|
62 | remote_busylock_init( XPTR( local_cxy , &ppm->free_lock ) , LOCK_PPM_FREE ); |
---|
63 | |
---|
64 | // initialize lock protecting the dirty_pages list |
---|
65 | remote_queuelock_init( XPTR( local_cxy , &ppm->dirty_lock ) , LOCK_PPM_DIRTY ); |
---|
66 | |
---|
67 | // initialize all free_pages[] lists as empty |
---|
68 | for( i = 0 ; i < CONFIG_PPM_MAX_ORDER ; i++ ) |
---|
69 | { |
---|
70 | list_root_init( &ppm->free_pages_root[i] ); |
---|
71 | ppm->free_pages_nr[i] = 0; |
---|
72 | } |
---|
73 | |
---|
74 | // initialize dirty_list as empty |
---|
75 | list_root_init( &ppm->dirty_root ); |
---|
76 | |
---|
77 | // compute size of pages_tbl[] array rounded to an integer number of pages |
---|
78 | uint32_t bytes = ARROUND_UP( pages_nr * sizeof(page_t), CONFIG_PPM_PAGE_SIZE ); |
---|
79 | |
---|
80 | // compute number of pages required to store page descriptor array |
---|
81 | uint32_t pages_tbl_nr = bytes >> CONFIG_PPM_PAGE_ORDER; |
---|
82 | |
---|
83 | // compute total number of reserved pages (kernel code & pages_tbl[]) |
---|
84 | uint32_t reserved_pages = pages_tbl_offset + pages_tbl_nr; |
---|
85 | |
---|
86 | // initialize pages_nr, pages_tbl, and vaddr_base pointers |
---|
87 | // (TSAR uses identity mapping for kernel pointers) |
---|
88 | // x86 architectures should use vaddr_base = 0xFFFF8000000000 + (cxy << 36) |
---|
89 | ppm->pages_nr = pages_nr; |
---|
90 | ppm->vaddr_base = NULL; |
---|
91 | ppm->pages_tbl = (page_t*)( ppm->vaddr_base + |
---|
92 | (pages_tbl_offset << CONFIG_PPM_PAGE_ORDER) ); |
---|
93 | |
---|
94 | // initialize all page descriptors in pages_tbl[] |
---|
95 | for( i = 0 ; i < pages_nr ; i++ ) |
---|
96 | { |
---|
97 | page_init( &ppm->pages_tbl[i] ); |
---|
98 | |
---|
99 | // TODO optimisation for this enormous loop on small pages: |
---|
100 | // make only a partial init with a memset, and complete the |
---|
101 | // initialisation when page is allocated [AG] |
---|
102 | } |
---|
103 | |
---|
104 | // - set PG_RESERVED flag for reserved pages (kernel code & pages_tbl[]) |
---|
105 | // - release all other pages to populate the free lists |
---|
106 | for( i = 0 ; i < reserved_pages ; i++) |
---|
107 | { |
---|
108 | page_set_flag( &ppm->pages_tbl[i] , PG_RESERVED ); |
---|
109 | } |
---|
110 | for( i = reserved_pages ; i < pages_nr ; i++ ) |
---|
111 | { |
---|
112 | ppm_free_pages_nolock( &ppm->pages_tbl[i] ); |
---|
113 | |
---|
114 | // TODO optimisation : decompose this enormous set of small pages |
---|
115 | // to several sets of big pages with various order values [AG] |
---|
116 | } |
---|
117 | |
---|
118 | // check consistency |
---|
119 | return ppm_assert_order(); |
---|
120 | |
---|
121 | } // end hal_ppm_init() |
---|
122 | |
---|
123 | |
---|