[1] | 1 | /* |
---|
| 2 | * dev_txt.c - TXT (Text Terminal) generic device API implementation. |
---|
[49] | 3 | * |
---|
[1] | 4 | * Author Alain Greiner (2016) |
---|
| 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> |
---|
[407] | 29 | #include <chdev.h> |
---|
[1] | 30 | #include <rpc.h> |
---|
| 31 | #include <printk.h> |
---|
| 32 | #include <dev_txt.h> |
---|
| 33 | |
---|
| 34 | ///////////////////////////////////////////////////////////////////////////////////////// |
---|
| 35 | // Extern global variables |
---|
| 36 | ///////////////////////////////////////////////////////////////////////////////////////// |
---|
| 37 | |
---|
[3] | 38 | extern chdev_directory_t chdev_dir; // allocated in kernel_init.c |
---|
[1] | 39 | |
---|
[438] | 40 | #if (DEBUG_SYS_READ & 1) |
---|
[407] | 41 | extern uint32_t enter_txt_read; |
---|
| 42 | extern uint32_t exit_txt_read; |
---|
| 43 | #endif |
---|
| 44 | |
---|
[438] | 45 | #if (DEBUG_SYS_WRITE & 1) |
---|
[435] | 46 | extern uint32_t enter_txt_write; |
---|
| 47 | extern uint32_t exit_txt_write; |
---|
| 48 | #endif |
---|
| 49 | |
---|
| 50 | //////////////////////////////////////// |
---|
[527] | 51 | const char * dev_txt_type_str( dev_txt_cmd_t type ) |
---|
[435] | 52 | { |
---|
[527] | 53 | switch (type) { |
---|
| 54 | case (TXT_SYNC_WRITE): return "TXT_SYNC_WRITE"; |
---|
| 55 | case (TXT_READ): return "TXT_READ"; |
---|
| 56 | case (TXT_WRITE): return "TXT_WRITE"; |
---|
| 57 | default: return "undefined"; |
---|
| 58 | } |
---|
[435] | 59 | } |
---|
| 60 | |
---|
[188] | 61 | ////////////////////////////////// |
---|
| 62 | void dev_txt_init( chdev_t * txt ) |
---|
[1] | 63 | { |
---|
[188] | 64 | // For all TXT channels other than the TXT0 (kernel terminal), |
---|
| 65 | // the PIC chdev must be initialized before the TXT chdev, because |
---|
| 66 | // the TXT chdev initialization requires the routing of an external IRQ |
---|
[1] | 67 | |
---|
[188] | 68 | xptr_t pic_xp = chdev_dir.pic; |
---|
| 69 | uint32_t channel = txt->channel; |
---|
| 70 | uint32_t impl = txt->impl; |
---|
[407] | 71 | bool_t is_rx = txt->is_rx; |
---|
[1] | 72 | |
---|
[492] | 73 | assert( (pic_xp != XPTR_NULL) || (channel == 0) , |
---|
[188] | 74 | "PIC not initialised before TXT" ); |
---|
| 75 | |
---|
[23] | 76 | // set chdev name |
---|
[407] | 77 | if( is_rx ) snprintf( txt->name , 16 , "txt%d_rx" , channel ); |
---|
| 78 | else snprintf( txt->name , 16 , "txt%d_tx" , channel ); |
---|
[23] | 79 | |
---|
[422] | 80 | // set TXT chdev extension |
---|
| 81 | txt->ext.txt.owner_xp = XPTR_NULL; |
---|
| 82 | xlist_root_init( XPTR( local_cxy, &txt->ext.txt.root ) ); |
---|
| 83 | remote_spinlock_init( XPTR( local_cxy , &txt->ext.txt.lock ) ); |
---|
| 84 | |
---|
[245] | 85 | // call driver init function |
---|
| 86 | hal_drivers_txt_init(txt, impl); |
---|
[1] | 87 | |
---|
[422] | 88 | // no server thread and no IRQ routing for TXT0 |
---|
| 89 | // no server thread for IMPL_TXT_RS2 (multiplexed in software, not hardware) |
---|
[255] | 90 | if( channel != 0 && impl != IMPL_TXT_RS2 ) |
---|
[188] | 91 | { |
---|
[407] | 92 | // select a core to execute the server thread |
---|
[188] | 93 | lid_t lid = cluster_select_local_core(); |
---|
[3] | 94 | |
---|
[407] | 95 | // bind IRQ to the selected core |
---|
[188] | 96 | dev_pic_bind_irq( lid , txt ); |
---|
[3] | 97 | |
---|
[407] | 98 | // enable IRQ |
---|
[238] | 99 | dev_pic_enable_irq( lid , XPTR( local_cxy , txt ) ); |
---|
[3] | 100 | |
---|
[188] | 101 | // create server thread |
---|
| 102 | thread_t * new_thread; |
---|
| 103 | error_t error; |
---|
[3] | 104 | |
---|
[188] | 105 | error = thread_kernel_create( &new_thread, |
---|
| 106 | THREAD_DEV, |
---|
| 107 | &chdev_sequencial_server, |
---|
| 108 | txt, |
---|
| 109 | lid ); |
---|
[3] | 110 | |
---|
[492] | 111 | assert( (error == 0) , "cannot create server thread" ); |
---|
[1] | 112 | |
---|
[188] | 113 | // set "server" field in chdev descriptor |
---|
| 114 | txt->server = new_thread; |
---|
[1] | 115 | |
---|
[408] | 116 | // set "chdev" field in thread descriptor |
---|
| 117 | new_thread->chdev = txt; |
---|
| 118 | |
---|
| 119 | // unblock server thread |
---|
[188] | 120 | thread_unblock( XPTR( local_cxy , new_thread ) , THREAD_BLOCKED_GLOBAL ); |
---|
| 121 | } |
---|
[49] | 122 | } |
---|
[1] | 123 | |
---|
| 124 | ////////////////////////////////////////////////////////////////////////////////// |
---|
[3] | 125 | // This static function is called by dev_txt_read(), dev_txt_write() functions. |
---|
[1] | 126 | ////////////////////////////////////i///////////////////////////////////////////// |
---|
| 127 | static error_t dev_txt_access( uint32_t type, |
---|
| 128 | uint32_t channel, |
---|
| 129 | char * buffer, |
---|
| 130 | uint32_t count ) |
---|
| 131 | { |
---|
[407] | 132 | xptr_t dev_xp; |
---|
[1] | 133 | thread_t * this = CURRENT_THREAD; |
---|
| 134 | |
---|
| 135 | // check channel argument |
---|
[492] | 136 | assert( (channel < CONFIG_MAX_TXT_CHANNELS) , "illegal channel index" ); |
---|
[1] | 137 | |
---|
[3] | 138 | // get extended pointer on remote TXT chdev descriptor |
---|
[407] | 139 | if( type == TXT_WRITE ) dev_xp = chdev_dir.txt_tx[channel]; |
---|
| 140 | else dev_xp = chdev_dir.txt_rx[channel]; |
---|
[1] | 141 | |
---|
[492] | 142 | assert( (dev_xp != XPTR_NULL) , "undefined TXT chdev descriptor" ); |
---|
[1] | 143 | |
---|
| 144 | // register command in calling thread descriptor |
---|
[279] | 145 | this->txt_cmd.dev_xp = dev_xp; |
---|
| 146 | this->txt_cmd.type = type; |
---|
| 147 | this->txt_cmd.buf_xp = XPTR( local_cxy , buffer ); |
---|
| 148 | this->txt_cmd.count = count; |
---|
[1] | 149 | |
---|
[3] | 150 | // register client thread in waiting queue, activate server thread |
---|
| 151 | // block client thread on THREAD_BLOCKED_IO and deschedule. |
---|
| 152 | // it is re-activated by the ISR signaling IO operation completion. |
---|
[407] | 153 | chdev_register_command( dev_xp ); |
---|
[1] | 154 | |
---|
| 155 | // return I/O operation status from calling thread descriptor |
---|
[279] | 156 | return this->txt_cmd.error; |
---|
[49] | 157 | } |
---|
[1] | 158 | |
---|
| 159 | ///////////////////////////////////////// |
---|
| 160 | error_t dev_txt_write( uint32_t channel, |
---|
| 161 | char * buffer, |
---|
| 162 | uint32_t count ) |
---|
| 163 | { |
---|
[436] | 164 | |
---|
[438] | 165 | #if (DEBUG_SYS_WRITE & 1) |
---|
[436] | 166 | enter_txt_write = hal_time_stamp(); |
---|
| 167 | #endif |
---|
| 168 | |
---|
[438] | 169 | #if DEBUG_DEV_TXT_TX |
---|
[436] | 170 | uint32_t cycle = (uint32_t)hal_get_cycles(); |
---|
[438] | 171 | if( DEBUG_DEV_TXT_TX < cycle ) |
---|
[436] | 172 | printk("\n[DBG] %s : thread %x enters / cycle %d\n", __FUNCTION__, CURRENT_THREAD, cycle ); |
---|
| 173 | #endif |
---|
| 174 | |
---|
[435] | 175 | return dev_txt_access( TXT_WRITE , channel , buffer , count ); |
---|
[436] | 176 | |
---|
[438] | 177 | #if DEBUG_DEV_TXT_TX |
---|
[436] | 178 | cycle = (uint32_t)hal_get_cycles(); |
---|
[438] | 179 | if( DEBUG_DEV_TXT_TX < cycle ) |
---|
[436] | 180 | printk("\n[DBG] %s : thread %x exit / cycle %d\n", __FUNCTION__, CURRENT_THREAD, cycle ); |
---|
| 181 | #endif |
---|
| 182 | |
---|
[438] | 183 | #if (DEBUG_SYS_WRITE & 1) |
---|
[436] | 184 | exit_txt_write = hal_time_stamp(); |
---|
| 185 | #endif |
---|
| 186 | |
---|
[1] | 187 | } |
---|
[49] | 188 | |
---|
[1] | 189 | ///////////////////////////////////////// |
---|
| 190 | error_t dev_txt_read( uint32_t channel, |
---|
| 191 | char * buffer ) |
---|
| 192 | { |
---|
[436] | 193 | |
---|
[438] | 194 | #if (DEBUG_SYS_READ & 1) |
---|
[436] | 195 | enter_txt_read = hal_time_stamp(); |
---|
| 196 | #endif |
---|
| 197 | |
---|
[438] | 198 | #if DEBUG_DEV_TXT_RX |
---|
[436] | 199 | uint32_t cycle = (uint32_t)hal_get_cycles(); |
---|
[438] | 200 | if( DEBUG_DEV_TXT_RX < cycle ) |
---|
[436] | 201 | printk("\n[DBG] %s : thread %x enters / cycle %d\n", __FUNCTION__, CURRENT_THREAD, cycle ); |
---|
| 202 | #endif |
---|
| 203 | |
---|
[435] | 204 | return dev_txt_access( TXT_READ , channel , buffer , 1 ); |
---|
[436] | 205 | |
---|
[438] | 206 | #if DEBUG_DEV_TXT_RX |
---|
[436] | 207 | cycle = (uint32_t)hal_get_cycles(); |
---|
[438] | 208 | if( DEBUG_DEV_TXT_RX < cycle ) |
---|
[436] | 209 | printk("\n[DBG] %s : thread %x exit / cycle %d\n", __FUNCTION__, CURRENT_THREAD, cycle ); |
---|
| 210 | #endif |
---|
| 211 | |
---|
[438] | 212 | #if (DEBUG_SYS_READ & 1) |
---|
[436] | 213 | exit_txt_read = hal_time_stamp(); |
---|
| 214 | #endif |
---|
| 215 | |
---|
[1] | 216 | } |
---|
| 217 | |
---|
[407] | 218 | ////////////////////////////////////////////// |
---|
| 219 | error_t dev_txt_sync_write( char * buffer, |
---|
[3] | 220 | uint32_t count ) |
---|
[1] | 221 | { |
---|
[49] | 222 | // get extended pointer on TXT[0] chdev |
---|
[407] | 223 | xptr_t dev_xp = chdev_dir.txt_tx[0]; |
---|
[1] | 224 | |
---|
[492] | 225 | assert( (dev_xp != XPTR_NULL) , |
---|
[407] | 226 | "undefined TXT0 chdev descriptor" ); |
---|
[23] | 227 | |
---|
[407] | 228 | // get TXTO chdev cluster and local pointer |
---|
| 229 | cxy_t dev_cxy = GET_CXY( dev_xp ); |
---|
| 230 | chdev_t * dev_ptr = (chdev_t *)GET_PTR( dev_xp ); |
---|
[1] | 231 | |
---|
[49] | 232 | // get driver command function |
---|
[407] | 233 | dev_aux_t * aux = (dev_aux_t *)hal_remote_lpt( XPTR( dev_cxy , &dev_ptr->aux ) ); |
---|
[1] | 234 | |
---|
[407] | 235 | // build arguments structure |
---|
[435] | 236 | txt_sync_args_t args; |
---|
[407] | 237 | args.dev_xp = dev_xp; |
---|
| 238 | args.buffer = buffer; |
---|
| 239 | args.count = count; |
---|
| 240 | |
---|
[279] | 241 | // call driver function |
---|
[407] | 242 | aux( &args ); |
---|
[1] | 243 | |
---|
[407] | 244 | return 0; |
---|
[49] | 245 | } |
---|
[1] | 246 | |
---|