source: trunk/kernel/mm/kcm.c @ 54

Last change on this file since 54 was 53, checked in by alain, 7 years ago

Compilation OK pout TSAR

File size: 10.3 KB
RevLine 
[1]1/*
2 * kcm.c - Per cluster & per type Kernel Cache Manager access functions
[18]3 *
[1]4 * Author  Ghassan Almaless (2008,2009,2010,2011,2012)
[50]5 *         Alain Greiner    (2016,2017)
[1]6 *
7 * Copyright (c) UPMC Sorbonne Universites
8 *
9 * This file is part of ALMOS-MKH.
10 *
11 * ALMOS-MKH is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; version 2.0 of the License.
14 *
15 * ALMOS-MKH is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with ALMOS-MKH; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
[14]25#include <kernel_config.h>
[1]26#include <hal_types.h>
27#include <hal_special.h>
28#include <list.h>
29#include <printk.h>
30#include <bits.h>
31#include <ppm.h>
32#include <thread.h>
33#include <page.h>
34#include <cluster.h>
[7]35#include <kmem.h>
[1]36#include <kcm.h>
37
38//////////////////////////////////////////////////////////////////////////////////////
[7]39// This static function returns pointer on an allocated block from an active page.
[1]40// It returns NULL if no block available in selected page.
41// It changes the page status if required.
42//////////////////////////////////////////////////////////////////////////////////////
[50]43// @ kcm      : pointer on kcm allocator.
44// @ kcm_page : pointer on active kcm page to use.
[7]45/////////////////////////////////////////////////////////////////////////////////////
46static void * kcm_get_block( kcm_t      * kcm,
[50]47                             kcm_page_t * kcm_page )
[1]48{
[50]49        kcm_dmsg("\n[INFO] %s : enters for %s / page %x / count = %d / active = %d\n",
50                 __FUNCTION__ , kmem_type_str( kcm->type ) ,
51             (intptr_t)kcm_page , kcm_page->count , kcm_page->active );
[1]52
[50]53        assert( kcm_page->active , __FUNCTION__ , "kcm_page should be active" );
54
[20]55        // get first block available
[50]56        int32_t index = bitmap_ffs( kcm_page->bitmap , kcm->blocks_nr );
[1]57
[50]58        assert( (index != -1) , __FUNCTION__ , "kcm_page should not be full" );
[18]59
[20]60        // allocate block
[50]61        bitmap_clear( kcm_page->bitmap , index );
[7]62
[50]63        // increase kcm_page count
64        kcm_page->count ++;
[1]65
[50]66        // change the kcm_page to busy if no more free block in page
67        if( kcm_page->count >= kcm->blocks_nr )
[20]68        {
[50]69        kcm_page->active = 0;
70                list_unlink( &kcm_page->list);
[1]71                kcm->active_pages_nr --;
72
[50]73                list_add_first( &kcm->busy_root , &kcm_page->list);
[1]74                kcm->busy_pages_nr ++;
[50]75                kcm_page->busy = 1;
[20]76        }
[1]77
[50]78    // compute return pointer
79    void * ptr = (void *)((intptr_t)kcm_page + CONFIG_KCM_SLOT_SIZE
80                 + (index * kcm->block_size) );
[1]81
[50]82        kcm_dmsg("\n[INFO] %s : allocated one block  %s / ptr = %x / page = %x / count = %d\n",
83                 __FUNCTION__ , kmem_type_str( kcm->type ) , (uint32_t)ptr ,
84             (intptr_t)kcm_page , kcm_page->count );
85
86        return ptr;
87
[7]88}  // kcm_get_block()
89
[1]90/////////////////////////////////////////////////////////////////////////////////////
91// This static function releases a previously allocated block.
[50]92// It changes the kcm_page status if required.
[1]93/////////////////////////////////////////////////////////////////////////////////////
[7]94// @ kcm   : pointer on kcm allocator.
95// @ ptr   : pointer on block to be released.
96/////////////////////////////////////////////////////////////////////////////////////
97static void kcm_put_block ( kcm_t * kcm,
98                            void  * ptr )
[1]99{
[50]100        kcm_page_t * kcm_page;
[20]101        uint32_t     index;
[18]102
[50]103    // compute pointer on kcm_page from block pointer
104        kcm_page = (kcm_page_t*)((intptr_t)ptr & ~CONFIG_PPM_PAGE_MASK);
[18]105
[50]106    // compute block index from block pointer
107        index = ((uint8_t *)ptr - (uint8_t *)kcm_page - CONFIG_KCM_SLOT_SIZE) / kcm->block_size;
[18]108
[50]109        bitmap_set( kcm_page->bitmap , index );
110        kcm_page->count --;
111
[20]112        // change the page to active if it was busy
[50]113        if( kcm_page->busy )
[1]114        {
[50]115                kcm_page->busy = 0;
116                list_unlink( &kcm_page->list );
[1]117                kcm->busy_pages_nr --;
118
[50]119                list_add_last( &kcm->active_root, &kcm_page->list );
[1]120                kcm->active_pages_nr ++;
[50]121                kcm_page->active = 1;
[1]122        }
123
[50]124        // change the kcm_page to free if last block in active page
125        if( (kcm_page->active) && (kcm_page->count == 0) )
[1]126        {
[50]127                kcm_page->active = 0;
128                list_unlink( &kcm_page->list);
[1]129                kcm->active_pages_nr --;
130
[50]131                list_add_first( &kcm->free_root , &kcm_page->list);
[1]132                kcm->free_pages_nr ++;
133        }
[7]134}  // kcm_put_block()
[1]135
136/////////////////////////////////////////////////////////////////////////////////////
[7]137// This static function allocates one page from PPM. It initializes
[50]138// the kcm_page descriptor, and introduces the new kcm_page into freelist.
[1]139/////////////////////////////////////////////////////////////////////////////////////
140static error_t freelist_populate( kcm_t * kcm )
141{
142        page_t     * page;
[50]143        kcm_page_t * kcm_page;
[20]144        kmem_req_t   req;
[1]145
[20]146        // get one page from local PPM
147        req.type  = KMEM_PAGE;
148        req.size  = 0;
149        req.flags = AF_KERNEL;
150        page = kmem_alloc( &req );
[18]151
[7]152        if( page == NULL )
153        {
[18]154                printk("\n[ERROR] in %s : failed to allocate page in cluster %d\n",
[20]155                       __FUNCTION__ , local_cxy );
156                return ENOMEM;
[7]157        }
158
[20]159        // get page base address
[53]160        kcm_page = (kcm_page_t *)ppm_page2vaddr( page );
[1]161
[20]162        // initialize KCM-page descriptor
[50]163        bitmap_set_range( kcm_page->bitmap , 0 , kcm->blocks_nr );
[1]164
[50]165        kcm_page->busy          = 0;
166        kcm_page->active        = 0;
167        kcm_page->count      = 0;
168        kcm_page->kcm           = kcm;
169        kcm_page->page          = page;
[1]170
[20]171        // introduce new page in free-list
[50]172        list_add_first( &kcm->free_root , &kcm_page->list );
[1]173        kcm->free_pages_nr ++;
[18]174
[1]175        return 0;
176
[7]177}  // freelist_populate()
178
[1]179/////////////////////////////////////////////////////////////////////////////////////
[20]180// This private function gets one KCM page from the KCM freelist.
[1]181// It populates the freelist if required.
182/////////////////////////////////////////////////////////////////////////////////////
183static kcm_page_t * freelist_get( kcm_t * kcm )
184{
[7]185        error_t      error;
[50]186        kcm_page_t * kcm_page;
[1]187
[20]188        // get a new page from PPM if freelist empty
[1]189        if( kcm->free_pages_nr == 0 )
190        {
[20]191                error = freelist_populate( kcm );
192                if( error ) return NULL;
[1]193        }
194
[50]195        // get first KCM page from freelist and unlink it
196        kcm_page = LIST_FIRST( &kcm->free_root, kcm_page_t , list );
197        list_unlink( &kcm_page->list );
[1]198        kcm->free_pages_nr --;
199
[50]200        return kcm_page;
[1]201
[7]202} // freelist_get()
[1]203
[7]204
205//////////////////////////////
206void kcm_init( kcm_t    * kcm,
207                   uint32_t   type )
[1]208{
[50]209    // the kcm_page descriptor mut fit in the KCM slot
210    assert( (sizeof(kcm_page_t) <= CONFIG_KCM_SLOT_SIZE) ,
211             __FUNCTION__ , "KCM slot too small\n" );
[1]212
[20]213        // initialize lock
[1]214        spinlock_init( &kcm->lock );
215
[20]216        // initialize KCM type
[1]217        kcm->type = type;
218
[20]219        // initialize KCM page lists
[1]220        kcm->free_pages_nr   = 0;
221        kcm->busy_pages_nr   = 0;
222        kcm->active_pages_nr = 0;
223        list_root_init( &kcm->free_root );
224        list_root_init( &kcm->busy_root );
225        list_root_init( &kcm->active_root );
226
[50]227        // initialize block size
228        uint32_t block_size = ARROUND_UP( kmem_type_size( type ) , CONFIG_KCM_SLOT_SIZE );
[1]229        kcm->block_size = block_size;
[18]230
[50]231        // initialize number of blocks per page
232        uint32_t  blocks_nr = (CONFIG_PPM_PAGE_SIZE - CONFIG_KCM_SLOT_SIZE) / block_size;
233    kcm->blocks_nr = blocks_nr;
234
[20]235        kcm_dmsg("\n[INFO] %s : KCM %s initialised / block_size = %d / blocks_nr = %d\n",
[50]236                 __FUNCTION__ , kmem_type_str( type ) , kcm->block_size , kcm->blocks_nr );
[1]237
[7]238}  // kcm_init()
[1]239
240///////////////////////////////
241void kcm_destroy( kcm_t * kcm )
242{
[50]243        kcm_page_t   * kcm_page;
[1]244        list_entry_t * iter;
[18]245
[20]246        // get KCM lock
[1]247        spinlock_lock( &kcm->lock );
248
[20]249        // release all free pages
[1]250        LIST_FOREACH( &kcm->free_root , iter )
251        {
[50]252                kcm_page = (kcm_page_t *)LIST_ELEMENT( iter , kcm_page_t , list );
[1]253                list_unlink( iter );
254                kcm->free_pages_nr --;
[50]255                ppm_free_pages( kcm_page->page );
[1]256        }
257
[20]258        // release all active pages
[1]259        LIST_FOREACH( &kcm->active_root , iter )
260        {
[50]261                kcm_page = (kcm_page_t *)LIST_ELEMENT( iter , kcm_page_t , list );
[1]262                list_unlink( iter );
263                kcm->free_pages_nr --;
[50]264                ppm_free_pages( kcm_page->page );
[1]265        }
266
[20]267        // release all busy pages
[1]268        LIST_FOREACH( &kcm->busy_root , iter )
269        {
[50]270                kcm_page = (kcm_page_t *)LIST_ELEMENT( iter , kcm_page_t , list );
[1]271                list_unlink( iter );
272                kcm->free_pages_nr --;
[50]273                ppm_free_pages( kcm_page->page );
[1]274        }
275
[20]276        // release KCM lock
277        spinlock_unlock( &kcm->lock );
[1]278
[7]279}  // kcm_destroy()
[1]280
281///////////////////////////////
282void * kcm_alloc( kcm_t * kcm )
283{
[50]284        kcm_page_t * kcm_page;
[1]285        void       * ptr = NULL;   // pointer on block
286
[20]287        // get lock
[1]288        spinlock_lock( &kcm->lock );
[18]289
[20]290        // get an active page
291        if( list_is_empty( &kcm->active_root ) )  // no active page => get one
292        {
293                // get a page from free list
[50]294                kcm_page = freelist_get( kcm );
[7]295
[50]296                if( kcm_page == NULL ) return NULL;
297
[20]298                // insert page in active list
[50]299                list_add_first( &kcm->active_root , &kcm_page->list );
[20]300                kcm->active_pages_nr ++;
[50]301            kcm_page->active = 1;
302
303        kcm_dmsg("\n[INFO] %s : enters for type %s at cycle %d / new page = %x / count = %d\n",
304                         __FUNCTION__ , kmem_type_str( kcm->type ) , hal_time_stamp() ,
305                 (intptr_t)kcm_page , kcm_page->count );
306
[20]307        }
[50]308        else                                    // get first page from active list
[20]309        {
[50]310                // get page pointer from active list
311                kcm_page = (kcm_page_t *)LIST_FIRST( &kcm->active_root , kcm_page_t , list );
[7]312
[50]313                kcm_dmsg("\n[INFO] %s : enters for type %s at cycle %d / page = %x / count = %d\n",
314                         __FUNCTION__ , kmem_type_str( kcm->type ) , hal_time_stamp() , 
315                 (intptr_t)kcm_page , kcm_page->count );
[20]316        }
[1]317
[20]318        // get a block from selected active page
319        // cannot fail, as an active page cannot be full...
[50]320        ptr  = kcm_get_block( kcm , kcm_page );
[7]321
[20]322        // release lock
[50]323        spinlock_unlock( &kcm->lock );
[1]324
325        return ptr;
326
[50]327}  // end kcm_allo()
[7]328
[1]329///////////////////////////
330void kcm_free( void * ptr )
331{
[50]332        kcm_page_t * kcm_page;
[1]333        kcm_t      * kcm;
[18]334
[50]335        assert( (ptr != NULL) , __FUNCTION__ , "pointer cannot be NULL" );
[18]336
[50]337        kcm_page = (kcm_page_t *)((intptr_t)ptr & ~CONFIG_PPM_PAGE_MASK);
338        kcm      = kcm_page->kcm;
[1]339
[20]340        // get lock
[1]341        spinlock_lock( &kcm->lock );
342
[20]343        // release block
[7]344        kcm_put_block( kcm , ptr );
[1]345
[20]346        // release lock
[1]347        spinlock_unlock( &kcm->lock );
348
[50]349}  // end kcm_free()
350
[1]351////////////////////////////
352void kcm_print (kcm_t * kcm)
353{
[7]354        printk("*** KCM type = %s / free_pages = %d / busy_pages = %d / active_pages = %d\n",
[20]355               kmem_type_str( kcm->type ) ,
356               kcm->free_pages_nr ,
357               kcm->busy_pages_nr ,
358               kcm->active_pages_nr );
[1]359}
Note: See TracBrowser for help on using the repository browser.