source: trunk/hal/tsar_mips32/core/hal_ppm.c @ 420

Last change on this file since 420 was 409, checked in by alain, 6 years ago

Fix bugs in exec

File size: 4.1 KB
Line 
1/*
2 * hal_ppm.c - Generic Physical Page Manager API implementation for TSAR
3 *
4 * Authors  Alain Greiner (2016,2017)
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_types.h>
26#include <hal_ppm.h>
27#include <hal_special.h>
28#include <printk.h>
29#include <spinlock.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 'offset' field in boot_info.
46//////////////////////////////////////////////////////////////////////////////////////////
47
48///////////////////////////////////////////
49error_t  hal_ppm_init( boot_info_t * info )
50{
51        uint32_t i;
52
53        // get relevant info from boot_info structure
54        uint32_t pages_nr         = info->pages_nr;
55        uint32_t pages_tbl_offset = info->pages_offset;
56
57        // get pointer on local Physical Page Manager
58        ppm_t * ppm = &LOCAL_CLUSTER->ppm;
59
60        // initialize lock protecting the free_pages[] lists
61        spinlock_init( &ppm->free_lock );
62
63        // initialize lock protecting the dirty_pages list
64        spinlock_init( &ppm->dirty_lock );
65
66        // initialize all free_pages[] lists as empty
67        for( i = 0 ; i < CONFIG_PPM_MAX_ORDER ; i++ )
68        {
69                list_root_init( &ppm->free_pages_root[i] );
70                ppm->free_pages_nr[i] = 0;
71        }
72
73        // initialize dirty_list as empty
74        list_root_init( &ppm->dirty_root );
75
76        // compute size of pages_tbl[] array rounded to an integer number of pages
77        uint32_t bytes = ARROUND_UP( pages_nr * sizeof(page_t), CONFIG_PPM_PAGE_SIZE );
78
79        // compute number of pages required to store page descriptor array
80        uint32_t pages_tbl_nr = bytes >> CONFIG_PPM_PAGE_SHIFT;
81
82        // compute total number of reserved pages (kernel code & pages_tbl[])
83        uint32_t reserved_pages = pages_tbl_offset + pages_tbl_nr;
84
85        // initialize pages_nr, pages_tbl, and vaddr_base pointers
86        // (TSAR uses identity mapping for kernel pointers)
87        // x86 architectures should use vaddr_base = 0xFFFF8000000000 + (cxy << 36)
88        ppm->pages_nr   = pages_nr;
89        ppm->vaddr_base = NULL;
90        ppm->pages_tbl  = (page_t*)( ppm->vaddr_base +
91                                     (pages_tbl_offset << CONFIG_PPM_PAGE_SHIFT) );
92
93        // initialize all page descriptors in pages_tbl[]
94        for( i = 0 ; i < pages_nr ; i++ )
95        {
96                page_init( &ppm->pages_tbl[i] );
97
98                // TODO optimisation for this enormous loop on small pages:
99                // make only a partial init with a memset, and complete the
100                // initialisation when page is allocated [AG]
101        }
102
103        // - set PG_RESERVED flag for reserved pages (kernel code & pages_tbl[])
104        // - release all other pages to populate the free lists
105        for( i = 0 ; i < reserved_pages ; i++)
106        {
107                page_set_flag( &ppm->pages_tbl[i] , PG_RESERVED );
108        }
109        for( i = reserved_pages ; i < pages_nr ; i++ )
110        {
111                ppm_free_pages_nolock( &ppm->pages_tbl[i] );
112
113                // TODO optimisation : decompose this enormous set of small pages
114                // to several sets of big pages with various order values
115        }
116
117        // check consistency
118        return ppm_assert_order( ppm );
119
120}  // end hal_ppm_init()
121
122
Note: See TracBrowser for help on using the repository browser.