source: trunk/kernel/devices/dev_mmc.c @ 514

Last change on this file since 514 was 492, checked in by viala@…, 6 years ago

Refactoring assert calling to conform with new assert macro.

Made with this command for the general case.
find ./kernel/ hal/ -name "*.c" | xargs sed -i -e '/assert(/ s/,[ ]*FUNCTION[ ]*,/,/'

And some done by hand.

File size: 7.1 KB
RevLine 
[1]1/*
2 * dev_mmc.c - MMC (Memory Cache Controler) generic device API implementation.
3 *
[437]4 * Author  Alain Greiner    (2016,2017,2018)
[1]5 *
6 * Copyright (c) UPMC Sorbonne Universites
7 *
8 * This file is part of ALMOS-MK
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-kernel; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
[457]24#include <hal_kernel_types.h>
[1]25#include <hal_special.h>
[257]26#include <hal_drivers.h>
[1]27#include <printk.h>
[3]28#include <chdev.h>
[1]29#include <thread.h>
30#include <dev_mmc.h>
31
32/////////////////////////////////////////////////////////////////////////////////////////
33// Extern global variables
34/////////////////////////////////////////////////////////////////////////////////////////
35
[3]36extern chdev_directory_t  chdev_dir;         // allocated in kernel_init.c
[1]37
[238]38//////////////////////////////////
39void dev_mmc_init( chdev_t * mmc )
[1]40{
41    // get implementation from device descriptor
[238]42    uint32_t  impl = mmc->impl;
[1]43
[238]44    // set mmc name
45    snprintf( mmc->name , 16 , "mmc_%x" , local_cxy );
[23]46
[257]47    // call driver init function
48    hal_drivers_mmc_init( mmc , impl );
[14]49
[188]50    // bind IRQ to CP0
[238]51    dev_pic_bind_irq( 0 , mmc );
[188]52   
53    // enable IRQ
[238]54    dev_pic_enable_irq( 0 , XPTR( local_cxy , mmc ) );
[14]55
[1]56}  // end dev_mmc_init()
57
58/////////////////////////////////////////////////////////////////////////////
[440]59// This static function is called by all MMC device access functions.
[23]60// It makes some checking, takes the lock granting exclusive
61// access to MMC peripheral, call the driver to execute the command
[1]62// registered in the calling thread descriptor, and releases the lock.
63/////////////////////////////////////////////////////////////////////////////
[23]64static error_t dev_mmc_access( thread_t * this )
[1]65{
[23]66    // get extended pointer on MMC device descriptor
[279]67    xptr_t  dev_xp = this->mmc_cmd.dev_xp;
[1]68
[492]69    assert( (dev_xp != XPTR_NULL) , "target MMC device undefined" );
[1]70
71    // get MMC device cluster identifier & local pointer
[3]72    cxy_t     dev_cxy = GET_CXY( dev_xp );
[440]73    chdev_t * dev_ptr = GET_PTR( dev_xp );
[1]74
75    // get driver command function pointer from MMC device descriptor
76    dev_cmd_t * cmd = (dev_cmd_t *)hal_remote_lpt( XPTR( dev_cxy , &dev_ptr->cmd ) );
77
78    // get the MMC device remote spinlock
79    remote_spinlock_lock( XPTR( dev_cxy , &dev_ptr->wait_lock ) ); 
80
81    // call driver command
82    cmd( XPTR( local_cxy , this ) );
83   
84    // release the MMC device remote spinlock
85    remote_spinlock_unlock( XPTR( dev_cxy , &dev_ptr->wait_lock ) ); 
86
[23]87    // return operation status
[279]88    return this->mmc_cmd.error; 
[1]89
90}  // end dev_mmc_access()
91
[23]92/////////////////////////////////////////
93error_t dev_mmc_inval( xptr_t     buf_xp,
[1]94                       uint32_t   buf_size )
95{
[23]96    error_t error;
97
[1]98    // get calling thread local pointer
[440]99    thread_t  * this    = CURRENT_THREAD;
[1]100
[438]101#if DEBUG_DEV_MMC
[437]102uint32_t cycle = (uint32_t)hal_get_cycles();
[438]103if( DEBUG_DEV_MMC < cycle )
[437]104printk("\n[DBG] %s : thread %x enters / process %x / buf_xp = %l\n", 
105__FUNCTION__, this, this->process->pid , buf_xp );
106#endif
[1]107
[23]108    // get buffer cluster and local pointer
109    cxy_t  buf_cxy = GET_CXY( buf_xp );
110    void * buf_ptr = GET_PTR( buf_xp );
111   
[492]112    assert( (((intptr_t)buf_ptr & (CONFIG_CACHE_LINE_SIZE -1)) == 0) ,
[3]113             "buffer not aligned on cache line" );
[1]114
115    // store command arguments in thread descriptor
[279]116    this->mmc_cmd.dev_xp    = chdev_dir.mmc[buf_cxy];
117    this->mmc_cmd.type      = MMC_CC_INVAL;
[440]118    this->mmc_cmd.buf_ptr   = buf_ptr;
[279]119    this->mmc_cmd.buf_size  = buf_size;
[1]120
[23]121    // call MMC driver
122    error = dev_mmc_access( this );
[1]123
[438]124#if DEBUG_DEV_MMC
[437]125cycle = (uint32_t)hal_get_cycles();
[438]126if( DEBUG_DEV_MMC < cycle )
[437]127printk("\n[DBG] %s : thread %x exit / process %x / buf_xp = %l\n", 
128__FUNCTION__, this, this->process->pid , buf_xp );
129#endif
[1]130
[23]131    return error;
132}
133
134////////////////////////////////////////
135error_t dev_mmc_sync( xptr_t     buf_xp,
[1]136                      uint32_t   buf_size )
137{
[23]138    error_t error;
139
[440]140    thread_t  * this    = CURRENT_THREAD;
[1]141
[438]142#if DEBUG_DEV_MMC
[437]143uint32_t cycle = (uint32_t)hal_get_cycles();
[438]144if( DEBUG_DEV_MMC < cycle )
[437]145printk("\n[DBG] %s : thread %x enters / process %x / buf_xp = %l\n", 
146__FUNCTION__, this, this->process->pid , buf_xp );
147#endif
[1]148
[23]149    // get buffer cluster and local pointer
150    cxy_t  buf_cxy = GET_CXY( buf_xp );
151    void * buf_ptr = GET_PTR( buf_xp );
152   
[492]153    assert( (((intptr_t)buf_ptr & (CONFIG_CACHE_LINE_SIZE -1)) == 0) ,
[3]154             "buffer not aligned on cache line" );
[1]155
156    // store command arguments in thread descriptor
[279]157    this->mmc_cmd.dev_xp    = chdev_dir.mmc[buf_cxy];
158    this->mmc_cmd.type      = MMC_CC_SYNC;
[440]159    this->mmc_cmd.buf_ptr   = buf_ptr;
[279]160    this->mmc_cmd.buf_size  = buf_size;
[1]161
[23]162    // call MMC driver
163    error = dev_mmc_access( this );
[1]164
[438]165#if DEBUG_DEV_MMC
[437]166cycle = (uint32_t)hal_get_cycles();
[438]167if( DEBUG_DEV_MMC < cycle )
[437]168printk("\n[DBG] %s : thread %x exit / process %x / buf_xp = %l\n", 
169__FUNCTION__, this, this->process->pid , buf_xp );
170#endif
[1]171
[23]172    return error;
173}
174
[1]175/////////////////////////////////////////
176error_t dev_mmc_set_error( cxy_t     cxy,
177                           uint32_t  index,
178                           uint32_t  wdata )
179{
180    // get calling thread local pointer
181    thread_t * this = CURRENT_THREAD;
182
183    // store command arguments in thread descriptor
[279]184    this->mmc_cmd.dev_xp    = chdev_dir.mmc[cxy];
185    this->mmc_cmd.type      = MMC_SET_ERROR;
186    this->mmc_cmd.reg_index = index;
187    this->mmc_cmd.reg_ptr   = &wdata;
[1]188
189    // execute operation
[23]190    return dev_mmc_access( this ); 
[1]191}
192                       
193//////////////////////////////////////////
194error_t dev_mmc_get_error( cxy_t      cxy,
195                           uint32_t   index,
196                           uint32_t * rdata )
197{
198    // get calling thread local pointer
199    thread_t * this = CURRENT_THREAD;
200
201    // store command arguments in thread descriptor
[279]202    this->mmc_cmd.dev_xp    = chdev_dir.mmc[cxy];
203    this->mmc_cmd.type      = MMC_GET_ERROR;
204    this->mmc_cmd.reg_index = index;
205    this->mmc_cmd.reg_ptr   = rdata;
[1]206
207    // execute operation
[23]208    return dev_mmc_access( this ); 
[1]209}
210                       
211////////////////////////////////////////////////////
212error_t dev_mmc_get_instrumentation( cxy_t      cxy,
213                                     uint32_t   index,
214                                     uint32_t * rdata )
215{
216    // get calling thread local pointer
217    thread_t * this = CURRENT_THREAD;
218
219    // store command arguments in thread descriptor
[279]220    this->mmc_cmd.dev_xp    = chdev_dir.mmc[cxy];
221    this->mmc_cmd.type      = MMC_GET_INSTRU;
222    this->mmc_cmd.reg_index = index;
223    this->mmc_cmd.reg_ptr   = rdata;
[1]224
225    // execute operation
[23]226    return dev_mmc_access( this ); 
[1]227}
228
Note: See TracBrowser for help on using the repository browser.