source: trunk/kernel/devices/dev_txt.c @ 645

Last change on this file since 645 was 637, checked in by alain, 5 years ago

Introduce the non-standard pthread_parallel_create() system call
and re-write the <fft> and <sort> applications to improve the
intrinsic paralelism in applications.

File size: 9.7 KB
RevLine 
[1]1/*
2 * dev_txt.c - TXT (Text Terminal) generic device API implementation.
[49]3 *
[626]4 * Author  Alain Greiner    (2016,2017,2018,2019)
[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>
26#include <hal_remote.h>
[77]27#include <hal_drivers.h>
[1]28#include <thread.h>
[565]29#include <remote_busylock.h>
[407]30#include <chdev.h>
[1]31#include <rpc.h>
32#include <printk.h>
33#include <dev_txt.h>
34
35/////////////////////////////////////////////////////////////////////////////////////////
36// Extern global variables
37/////////////////////////////////////////////////////////////////////////////////////////
38
[3]39extern chdev_directory_t  chdev_dir;         // allocated in kernel_init.c
[1]40
[565]41
[438]42#if (DEBUG_SYS_READ & 1)
[407]43extern uint32_t enter_txt_read;
44extern uint32_t exit_txt_read;
45#endif
46
[438]47#if (DEBUG_SYS_WRITE & 1)
[435]48extern uint32_t enter_txt_write;
49extern uint32_t exit_txt_write;
50#endif
51
[565]52///////////////////////////////////////////////////
[527]53const char * dev_txt_type_str( dev_txt_cmd_t type )
[435]54{
[619]55    switch (type)
56    {
57        case (TXT_SYNC_WRITE): return "TXT_SYNC_WRITE";
58        case (TXT_READ):       return "TXT_READ";
59        case (TXT_WRITE):      return "TXT_WRITE";
60        default:               return "undefined";
61    }
[435]62}
63
[188]64//////////////////////////////////
65void dev_txt_init( chdev_t * txt )
[1]66{
[188]67    // For all TXT channels other than the TXT0 (kernel terminal),
68    // the PIC chdev must be initialized before the TXT chdev, because
69    // the TXT chdev initialization requires the routing of an external IRQ
[1]70
[188]71    xptr_t    pic_xp  = chdev_dir.pic;
72    uint32_t  channel = txt->channel;
73    uint32_t  impl    = txt->impl;
[407]74    bool_t    is_rx   = txt->is_rx;
[1]75
[492]76    assert( (pic_xp != XPTR_NULL) || (channel == 0) ,
[188]77            "PIC not initialised before TXT" );
78
[23]79    // set chdev name
[407]80    if( is_rx ) snprintf( txt->name , 16 , "txt%d_rx" , channel );
81    else        snprintf( txt->name , 16 , "txt%d_tx" , channel );
[23]82
[422]83    // set TXT chdev extension
84    txt->ext.txt.owner_xp = XPTR_NULL;
85    xlist_root_init( XPTR( local_cxy, &txt->ext.txt.root ) );
[565]86    remote_busylock_init( XPTR( local_cxy , &txt->ext.txt.lock ), LOCK_CHDEV_TXTLIST );
[422]87   
[245]88    // call driver init function
89    hal_drivers_txt_init(txt, impl);
[1]90
[422]91    // no server thread and no IRQ routing for TXT0
[540]92    // except for LETI where there MUST be IRQ routing
[422]93    // no server thread for IMPL_TXT_RS2 (multiplexed in software, not hardware)
[255]94    if( channel != 0 && impl != IMPL_TXT_RS2 )
[188]95    {
[407]96        // select a core to execute the server thread
[637]97        lid_t lid = cluster_select_local_core( local_cxy );
[3]98
[540]99        // The unique IRQ from cluster 00's MTTY must be bound to a RX chdev
100        // so that all IRQs are considered as RX IRQs and treated as such
101        // Indeed, IRQs are raised by the MTTY only on user keystroke, so IRQs must
102        // always be considered as RX IRQs.
103        if ( ( impl != IMPL_TXT_MTY ) || ( channel == 1 && is_rx == 1 ) ) 
104        {
[407]105        // bind IRQ to the selected core
[188]106        dev_pic_bind_irq( lid , txt );
[3]107
[407]108        // enable IRQ
[238]109        dev_pic_enable_irq( lid , XPTR( local_cxy , txt ) );
[540]110        }
[3]111
[188]112        // create server thread
113        thread_t * new_thread;
114        error_t    error;
[3]115
[188]116        error = thread_kernel_create( &new_thread,
117                                      THREAD_DEV,
[619]118                                      &chdev_server_func,
[188]119                                      txt,
120                                      lid );
[3]121
[492]122        assert( (error == 0) , "cannot create server thread" );
[1]123
[188]124        // set "server" field in chdev descriptor
125        txt->server = new_thread;
[1]126
[408]127        // set "chdev" field in thread descriptor
128        new_thread->chdev = txt;
129
130        // unblock server thread
[188]131        thread_unblock( XPTR( local_cxy , new_thread ) , THREAD_BLOCKED_GLOBAL );
132    }
[637]133}  // end dev_txt_init()
[1]134
135//////////////////////////////////////////////////////////////////////////////////
[3]136// This static function is called by dev_txt_read(), dev_txt_write() functions.
[1]137////////////////////////////////////i/////////////////////////////////////////////
138static error_t dev_txt_access( uint32_t   type,
139                               uint32_t   channel,
140                               char     * buffer,
141                               uint32_t   count )
142{
[407]143    xptr_t     dev_xp;
[1]144    thread_t * this = CURRENT_THREAD;
145
146    // check channel argument
[492]147    assert( (channel < CONFIG_MAX_TXT_CHANNELS) , "illegal channel index" );
[1]148
[3]149    // get extended pointer on remote TXT chdev descriptor
[407]150    if( type == TXT_WRITE )  dev_xp = chdev_dir.txt_tx[channel];
151    else                     dev_xp = chdev_dir.txt_rx[channel];
[1]152
[492]153    assert( (dev_xp != XPTR_NULL) , "undefined TXT chdev descriptor" );
[1]154
155    // register command in calling thread descriptor
[279]156    this->txt_cmd.dev_xp  = dev_xp;
157    this->txt_cmd.type    = type;
158    this->txt_cmd.buf_xp  = XPTR( local_cxy , buffer );
159    this->txt_cmd.count   = count;
[1]160
[3]161    // register client thread in waiting queue, activate server thread
162    // block client thread on THREAD_BLOCKED_IO and deschedule.
163    // it is re-activated by the ISR signaling IO operation completion.
[407]164    chdev_register_command( dev_xp );
[1]165
166    // return I/O operation status from calling thread descriptor
[279]167    return this->txt_cmd.error;
[1]168
[637]169}  // end dev_txt_access()
170
[1]171/////////////////////////////////////////
172error_t dev_txt_write( uint32_t   channel,
173                       char     * buffer,
174                       uint32_t   count )
175{
[637]176    error_t error;
[436]177
[438]178#if (DEBUG_SYS_WRITE & 1)
[436]179enter_txt_write = hal_time_stamp();
180#endif
181
[438]182#if DEBUG_DEV_TXT_TX
[619]183thread_t * this  = CURRENT_THREAD;
184uint32_t   cycle = (uint32_t)hal_get_cycles();
[438]185if( DEBUG_DEV_TXT_TX < cycle )
[637]186printk("\n[%s] thread[%x,%x] enters for <%s> / cycle %d\n",
187__FUNCTION__, this->process->pid, this->trdid, buffer, cycle );
[436]188#endif
189
[637]190    // If we use MTTY (vci_multi_tty), we do a synchronous write on TXT[0]
191    // If we use TTY  (vci_tty_tsar), we do a standard asynchronous write
192    // TODO this is not very clean ... [AG]
193
194    // get pointers on chdev
[539]195    xptr_t dev_xp = chdev_dir.txt_tx[0];
[637]196    cxy_t     dev_cxy = GET_CXY( dev_xp );
197    chdev_t * dev_ptr = GET_PTR( dev_xp );
[539]198
199    if( dev_ptr->impl == IMPL_TXT_MTY )
200    {
201        // get driver command function
202        dev_aux_t * aux = (dev_aux_t *)hal_remote_lpt( XPTR( dev_cxy , &dev_ptr->aux ) );
203
204        // build arguments structure
205        txt_sync_args_t  args;
206        args.dev_xp = dev_xp;
207        args.buffer = buffer;
208        args.count  = count;
209        args.channel = channel;
210
[637]211        // call directly the driver function
[539]212        aux( &args );
213
[637]214        error = 0;
[539]215    }
216    else
217    {
[637]218        // register command in chdev queue for an asynchronous access
219        error = dev_txt_access( TXT_WRITE , channel , buffer , count );
220
221        if( error )
222        {
223            printk("\n[ERROR] in %s : cannot write string %s / cycle %d\n",
224            __FUNCTION__, buffer, (uint32_t)hal_get_cycles() );
225        }
[539]226    }
[436]227
[438]228#if DEBUG_DEV_TXT_TX
[436]229cycle = (uint32_t)hal_get_cycles();
[438]230if( DEBUG_DEV_TXT_TX < cycle )
[637]231printk("\n[%s] thread[%x,%x] exit /  cycle %d\n",
[619]232__FUNCTION__, this->process->pid, this->trdid, cycle );
[436]233#endif
234
[438]235#if (DEBUG_SYS_WRITE & 1)
[436]236exit_txt_write = hal_time_stamp();
237#endif
238
[637]239    return error;
[49]240
[637]241}  // end dev_txt_write()
242
[1]243/////////////////////////////////////////
244error_t dev_txt_read( uint32_t   channel,
245                      char     * buffer )
246{
[637]247    error_t error;
[436]248
[438]249#if (DEBUG_SYS_READ & 1)
[436]250enter_txt_read = hal_time_stamp();
251#endif
252
[438]253#if DEBUG_DEV_TXT_RX
[619]254thread_t * this  = CURRENT_THREAD;
255uint32_t   cycle = (uint32_t)hal_get_cycles();
[438]256if( DEBUG_DEV_TXT_RX < cycle )
[619]257printk("\n[%s] thread[%x,%x] enters / cycle %d\n",
258__FUNCTION__, this->process->pid, this->trdid, cycle );
[436]259#endif
260
[637]261    // register command in chdev queue for an asynchronous access
262    error = dev_txt_access( TXT_READ , channel , buffer , 1 );
[436]263
[637]264    if( error )
265    {
266        printk("\n[ERROR] in %s : cannot get character / cycle %d\n",
267        __FUNCTION__, (uint32_t)hal_get_cycles() );
268    }
269
[438]270#if DEBUG_DEV_TXT_RX
[436]271cycle = (uint32_t)hal_get_cycles();
[438]272if( DEBUG_DEV_TXT_RX < cycle )
[637]273printk("\n[%s] thread[%x,%x] get character <%c> / cycle %d\n",
274__FUNCTION__, this->process->pid, this->trdid, *buffer, cycle );
[436]275#endif
276
[438]277#if (DEBUG_SYS_READ & 1)
[436]278exit_txt_read = hal_time_stamp();
279#endif
280
[637]281    return error;
[1]282
[637]283}  // end dev_txt_read()
284
[565]285////////////////////////////////////////////////
286error_t dev_txt_sync_write( const char * buffer,
287                            uint32_t     count )
[1]288{
[49]289    // get extended pointer on TXT[0] chdev
[407]290    xptr_t  dev_xp = chdev_dir.txt_tx[0];
[1]291
[492]292    assert( (dev_xp != XPTR_NULL) ,
[407]293    "undefined TXT0 chdev descriptor" );
[23]294
[407]295    // get TXTO chdev cluster and local pointer
296    cxy_t    dev_cxy  = GET_CXY( dev_xp );
[565]297    chdev_t * dev_ptr = GET_PTR( dev_xp );
[1]298
[49]299    // get driver command function
[407]300    dev_aux_t * aux = (dev_aux_t *)hal_remote_lpt( XPTR( dev_cxy , &dev_ptr->aux ) );
[1]301
[407]302    // build arguments structure
[435]303    txt_sync_args_t  args;
[407]304    args.dev_xp = dev_xp;
305    args.buffer = buffer;
306    args.count  = count;
[539]307    args.channel = 0;
[407]308
[279]309    // call driver function
[407]310    aux( &args );
[1]311
[407]312    return 0;
[49]313}
[1]314
Note: See TracBrowser for help on using the repository browser.