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

Last change on this file since 254 was 107, checked in by max@…, 7 years ago

reorder the code a bit, to reduce the (future) diff with x86

File size: 4.1 KB
RevLine 
[50]1/*
[107]2 * hal_ppm.c - Generic Physical Page Manager API implementation for TSAR
[50]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
[53]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>
[50]35
36//////////////////////////////////////////////////////////////////////////////////////////
[106]37// For The TSAR architecture, the kernel pointers are identity mapped:
38// - the 32 bits PTR value is identical to the 32 bits LPA value,
[50]39// - the 64 bits XPTR value is identical to the 64 bits PADDR value.
40// The pages_tbl[] is mapped in first free page after kernel code.
41// There is no other reserved zones than the zone occupied by the kernel code.
42//////////////////////////////////////////////////////////////////////////////////////////
43
44
[53]45///////////////////////////////////////////
46error_t  hal_ppm_init( boot_info_t * info )
[50]47{
[106]48        uint32_t i;
[53]49
[106]50        // get relevant info from boot_info structure
[107]51        uint32_t pages_nr         = info->pages_nr;
52        uint32_t pages_tbl_offset = info->pages_offset;
53        uint32_t rsvd_nr          = info->rsvd_nr;
[50]54
[106]55        // check no reserved zones other than kernel code for TSAR
56        assert( (rsvd_nr == 0 ) , __FUNCTION__ , "NO reserved zones for TSAR\n" );
[50]57
[106]58        // get pointer on local Physical Page Manager
59        ppm_t * ppm = &LOCAL_CLUSTER->ppm;
60
61        // initialize lock protecting the free_pages[] lists
[50]62        spinlock_init( &ppm->free_lock );
63
[106]64        // initialize lock protecting the dirty_pages list
[50]65        spinlock_init( &ppm->dirty_lock );
66
[106]67        // initialize all free_pages[] lists as empty
[50]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
[106]74        // initialize dirty_list as empty
75        list_root_init( &ppm->dirty_root );
[50]76
[106]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 );
[50]79
[106]80        // compute number of pages required to store page descriptor array
[50]81        uint32_t pages_tbl_nr = bytes >> CONFIG_PPM_PAGE_SHIFT;
82
[106]83        // compute total number of reserved pages (kernel code & pages_tbl[])
[53]84        uint32_t reserved_pages = pages_tbl_offset + pages_tbl_nr;
[50]85
[107]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_SHIFT) );
93
[106]94        // initialize all page descriptors in pages_tbl[]
[50]95        for( i = 0 ; i < pages_nr ; i++ )
[106]96        {
97                page_init( &ppm->pages_tbl[i] );
[50]98
[106]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        }
[50]103
[106]104        // - set PG_RESERVED flag for reserved pages (kernel code & pages_tbl[])
105        // - release all other pages to populate the free lists
[50]106        for( i = 0 ; i < reserved_pages ; i++)
[106]107        {
108                page_set_flag( &ppm->pages_tbl[i] , PG_RESERVED );
109        }
[50]110        for( i = reserved_pages ; i < pages_nr ; i++ )
111        {
[106]112                ppm_free_pages_nolock( &ppm->pages_tbl[i] );
[50]113
[106]114                // TODO optimisation : decompose this enormous set of small pages
115                // to several sets of big pages with various order values
[50]116        }
117
[106]118        // check consistency
119        return ppm_assert_order( ppm );
120}
[50]121
Note: See TracBrowser for help on using the repository browser.