[1] | 1 | /* |
---|
| 2 | * dev_txt.c - TXT (Text Terminal) generic device API implementation. |
---|
| 3 | * |
---|
| 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 | |
---|
| 24 | #include <hal_types.h> |
---|
| 25 | #include <hal_special.h> |
---|
| 26 | #include <hal_remote.h> |
---|
| 27 | #include <soclib_tty.h> |
---|
| 28 | #include <thread.h> |
---|
| 29 | #include <rpc.h> |
---|
| 30 | #include <printk.h> |
---|
| 31 | #include <dev_txt.h> |
---|
| 32 | |
---|
| 33 | ///////////////////////////////////////////////////////////////////////////////////////// |
---|
| 34 | // Extern global variables |
---|
| 35 | ///////////////////////////////////////////////////////////////////////////////////////// |
---|
| 36 | |
---|
[3] | 37 | extern chdev_directory_t chdev_dir; // allocated in kernel_init.c |
---|
[1] | 38 | |
---|
[3] | 39 | extern chdev_pic_input_t chdev_pic_input; // allocated in kernel_init.c |
---|
[1] | 40 | |
---|
[3] | 41 | //////////////////////////////////// |
---|
| 42 | void dev_txt_init( chdev_t * chdev ) |
---|
[1] | 43 | { |
---|
[3] | 44 | // the local ICU chdev must be initialized before the TXT chdev, because |
---|
| 45 | // the TXT chdev initialisation requires allocation of a WTI from local ICU |
---|
| 46 | xptr_t icu_xp = chdev_dir.icu[local_cxy]; |
---|
| 47 | assert( (icu_xp != XPTR_NULL) , __FUNCTION__ , "ICU not initialised before TXT" ); |
---|
[1] | 48 | |
---|
[3] | 49 | // get implementation and channel index |
---|
| 50 | uint32_t impl = chdev->impl; |
---|
| 51 | uint32_t channel = chdev->channel; |
---|
[1] | 52 | |
---|
[3] | 53 | // set fields "cmd", "isr", and call driver init function |
---|
[1] | 54 | if( impl == IMPL_TXT_TTY ) |
---|
| 55 | { |
---|
[3] | 56 | chdev->cmd = &soclib_tty_cmd; |
---|
| 57 | chdev->isr = &soclib_tty_isr; |
---|
| 58 | soclib_tty_init( chdev ); |
---|
[1] | 59 | } |
---|
| 60 | else |
---|
| 61 | { |
---|
[3] | 62 | assert( false , __FUNCTION__ , "undefined TXT device implementation" ); |
---|
[1] | 63 | } |
---|
| 64 | |
---|
[3] | 65 | // get a WTI mailbox from local ICU |
---|
| 66 | uint32_t wti_id = dev_icu_wti_alloc(); |
---|
| 67 | |
---|
| 68 | assert( (wti_id != -1) , __FUNCTION__ , "cannot allocate WTI mailbox" ); |
---|
| 69 | |
---|
| 70 | // select a core |
---|
| 71 | lid_t lid = cluster_select_local_core(); |
---|
| 72 | |
---|
| 73 | // enable WTI IRQ and update WTI interrupt vector |
---|
| 74 | dev_icu_enable_irq( lid , WTI_TYPE , wti_id , chdev ); |
---|
| 75 | |
---|
| 76 | // link IOC IRQ to WTI mailbox in PIC component |
---|
| 77 | uint32_t irq_id = chdev_pic_input.txt[channel]; |
---|
| 78 | dev_pic_bind_irq( irq_id , local_cxy , wti_id ); |
---|
| 79 | |
---|
[1] | 80 | // create server thread |
---|
[3] | 81 | thread_t * new_thread; |
---|
[1] | 82 | error_t error; |
---|
| 83 | |
---|
[3] | 84 | error = thread_kernel_create( &new_thread, |
---|
| 85 | THREAD_DEV, |
---|
| 86 | &chdev_sequencial_server, |
---|
| 87 | chdev, |
---|
| 88 | lid ); |
---|
| 89 | assert( (error == 0) , __FUNCTION__ , "cannot create server thread" ); |
---|
[1] | 90 | |
---|
[3] | 91 | // set "server" field in chdev descriptor |
---|
| 92 | chdev->server = new_thread; |
---|
[1] | 93 | |
---|
| 94 | // start server thread |
---|
[3] | 95 | thread_unblock( XPTR( local_cxy , new_thread ) , THREAD_BLOCKED_GLOBAL ); |
---|
[1] | 96 | |
---|
| 97 | } // end dev_txt_init() |
---|
| 98 | |
---|
| 99 | |
---|
| 100 | ////////////////////////////////////////////////////////////////////////////////// |
---|
[3] | 101 | // This static function is called by dev_txt_read(), dev_txt_write() functions. |
---|
[1] | 102 | ////////////////////////////////////i///////////////////////////////////////////// |
---|
| 103 | static error_t dev_txt_access( uint32_t type, |
---|
| 104 | uint32_t channel, |
---|
| 105 | char * buffer, |
---|
| 106 | uint32_t count ) |
---|
| 107 | { |
---|
| 108 | thread_t * this = CURRENT_THREAD; |
---|
| 109 | |
---|
| 110 | txt_dmsg("\n[INFO] in %s : thread %x in process %x enters\n", |
---|
| 111 | __FUNCTION__ , this->trdid , this->process->pid ); |
---|
| 112 | |
---|
| 113 | // check channel argument |
---|
[3] | 114 | assert( (channel < CONFIG_MAX_TXT_CHANNELS) , __FUNCTION__ , "illegal channel index" ); |
---|
[1] | 115 | |
---|
[3] | 116 | // get extended pointer on remote TXT chdev descriptor |
---|
| 117 | xptr_t dev_xp = chdev_dir.txt[channel]; |
---|
[1] | 118 | |
---|
[3] | 119 | assert( (dev_xp != XPTR_NULL) , __FUNCTION__ , "undefined TXT chdev descriptor" ); |
---|
[1] | 120 | |
---|
| 121 | // register command in calling thread descriptor |
---|
[3] | 122 | this->command.txt.dev_xp = dev_xp; |
---|
| 123 | this->command.txt.type = type; |
---|
| 124 | this->command.txt.buf_xp = XPTR( local_cxy , buffer ); |
---|
| 125 | this->command.txt.count = count; |
---|
[1] | 126 | |
---|
[3] | 127 | // register client thread in waiting queue, activate server thread |
---|
| 128 | // block client thread on THREAD_BLOCKED_IO and deschedule. |
---|
| 129 | // it is re-activated by the ISR signaling IO operation completion. |
---|
| 130 | chdev_register_command( dev_xp , this ); |
---|
[1] | 131 | |
---|
[3] | 132 | txt_dmsg("\n[INFO] in %s : thread %x in process %x completes / error = %d\n", |
---|
| 133 | __FUNCTION__ , this->trdid , this->process->pid , this->command.txt.error ); |
---|
[1] | 134 | |
---|
| 135 | // return I/O operation status from calling thread descriptor |
---|
[3] | 136 | return this->command.txt.error; |
---|
[1] | 137 | |
---|
| 138 | } // end dev_txt_access() |
---|
| 139 | |
---|
| 140 | ///////////////////////////////////////// |
---|
| 141 | error_t dev_txt_write( uint32_t channel, |
---|
| 142 | char * buffer, |
---|
| 143 | uint32_t count ) |
---|
| 144 | { |
---|
| 145 | return dev_txt_access( TXT_WRITE , channel , buffer , count ); |
---|
| 146 | } |
---|
| 147 | |
---|
| 148 | ///////////////////////////////////////// |
---|
| 149 | error_t dev_txt_read( uint32_t channel, |
---|
| 150 | char * buffer ) |
---|
| 151 | { |
---|
| 152 | return dev_txt_access( TXT_READ , channel , buffer , 1 ); |
---|
| 153 | } |
---|
| 154 | |
---|
[3] | 155 | /////////////////////////////////////////////// |
---|
| 156 | error_t dev_txt_sync_write( uint32_t channel, |
---|
| 157 | char * buffer, |
---|
| 158 | uint32_t count ) |
---|
[1] | 159 | { |
---|
[3] | 160 | // get pointer on calling thread |
---|
| 161 | thread_t * this = CURRENT_THREAD; |
---|
[1] | 162 | |
---|
[3] | 163 | // get extended pointer on TXT[0] chdev |
---|
| 164 | xptr_t dev_xp = chdev_dir.txt[channel]; |
---|
[1] | 165 | |
---|
[3] | 166 | // register command in calling thread |
---|
| 167 | this->command.txt.dev_xp = dev_xp; |
---|
| 168 | this->command.txt.type = TXT_SYNC_WRITE; |
---|
| 169 | this->command.txt.buf_xp = XPTR( local_cxy , buffer ); |
---|
| 170 | this->command.txt.count = count; |
---|
[1] | 171 | |
---|
[3] | 172 | // get driver command function |
---|
| 173 | cxy_t dev_cxy = GET_CXY( dev_xp ); |
---|
| 174 | chdev_t * dev_ptr = (chdev_t *)GET_PTR( dev_xp ); |
---|
| 175 | dev_cmd_t * cmd = (dev_cmd_t *)hal_remote_lpt( XPTR( dev_cxy , &dev_ptr->cmd ) ); |
---|
[1] | 176 | |
---|
[3] | 177 | // call directly driver command after taking chdev lock |
---|
| 178 | remote_spinlock_lock( XPTR( dev_cxy , &dev_ptr->wait_lock ) ); |
---|
| 179 | cmd( XPTR( local_cxy , this ) ); |
---|
| 180 | remote_spinlock_unlock( XPTR( dev_cxy , &dev_ptr->wait_lock ) ); |
---|
[1] | 181 | |
---|
[3] | 182 | // return I/O operation status from calling thread descriptor |
---|
| 183 | return this->command.txt.error; |
---|
| 184 | |
---|
| 185 | } // end dev_txt_sync_write() |
---|
[1] | 186 | |
---|