| [1] | 1 | /* | 
|---|
 | 2 |  * dev_nic.c - NIC (Network 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-MKH. | 
|---|
 | 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-MKH; 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 <printk.h> | 
|---|
| [3] | 27 | #include <chdev.h> | 
|---|
| [1] | 28 | #include <thread.h> | 
|---|
| [259] | 29 | #include <hal_drivers.h> | 
|---|
| [1] | 30 | #include <dev_nic.h> | 
|---|
 | 31 |  | 
|---|
 | 32 | ///////////////////////////////////////////////////////////////////////////////////////// | 
|---|
 | 33 | // Extern global variables | 
|---|
 | 34 | ///////////////////////////////////////////////////////////////////////////////////////// | 
|---|
 | 35 |  | 
|---|
| [3] | 36 | extern chdev_directory_t  chdev_dir;         // allocated in kernel_init.c | 
|---|
| [1] | 37 |  | 
|---|
| [188] | 38 | ////////////////////////////////// | 
|---|
 | 39 | void dev_nic_init( chdev_t * nic ) | 
|---|
| [1] | 40 | { | 
|---|
| [188] | 41 |     // the PIC chdev must be initialized before the NIC chdev, because | 
|---|
 | 42 |     // the NIC chdev initialisation requires the routing of an external IRQ. | 
|---|
 | 43 |     xptr_t  pic_xp  = chdev_dir.pic; | 
|---|
| [1] | 44 |  | 
|---|
| [492] | 45 |     assert( (pic_xp != XPTR_NULL) , "ICU not initialised before NIC" ); | 
|---|
| [188] | 46 |  | 
|---|
| [3] | 47 |     // get "impl" , "channel" , "is_rx" fields from chdev descriptor | 
|---|
| [188] | 48 |     uint32_t  impl    = nic->impl; | 
|---|
 | 49 |     uint32_t  channel = nic->channel; | 
|---|
 | 50 |     bool_t    is_rx   = nic->is_rx; | 
|---|
| [1] | 51 |  | 
|---|
| [23] | 52 |     // set chdev name | 
|---|
| [407] | 53 |     if( is_rx ) snprintf( nic->name , 16 , "nic%d_rx" , channel ); | 
|---|
 | 54 |     else        snprintf( nic->name , 16 , "nic%d_tx" , channel ); | 
|---|
| [23] | 55 |  | 
|---|
| [259] | 56 |     // call driver init function | 
|---|
 | 57 |     hal_drivers_nic_init( nic , impl ); | 
|---|
| [1] | 58 |  | 
|---|
| [188] | 59 |     // select a core to execute the NIC server thread | 
|---|
| [3] | 60 |     lid_t lid = cluster_select_local_core(); | 
|---|
| [1] | 61 |  | 
|---|
| [188] | 62 |     // bind the NIC IRQ to the selected core | 
|---|
 | 63 |     // but does NOT enable it | 
|---|
 | 64 |     dev_pic_bind_irq( lid , nic ); | 
|---|
| [3] | 65 |  | 
|---|
| [1] | 66 |     // create server thread | 
|---|
| [3] | 67 |     thread_t * new_thread; | 
|---|
| [1] | 68 |     error_t    error; | 
|---|
 | 69 |  | 
|---|
| [3] | 70 |     error = thread_kernel_create( &new_thread, | 
|---|
 | 71 |                                   THREAD_DEV, | 
|---|
 | 72 |                                   &chdev_sequencial_server, | 
|---|
| [188] | 73 |                                   nic, | 
|---|
| [3] | 74 |                                   lid );  | 
|---|
| [1] | 75 |  | 
|---|
| [492] | 76 |     assert( (error == 0) , "cannot create server thread" ); | 
|---|
| [1] | 77 |  | 
|---|
| [3] | 78 |     // set "server" field in chdev descriptor | 
|---|
| [188] | 79 |     nic->server = new_thread; | 
|---|
| [1] | 80 |      | 
|---|
| [408] | 81 |     // set "chdev" field in thread descriptor | 
|---|
 | 82 |     new_thread->chdev = nic; | 
|---|
 | 83 |  | 
|---|
 | 84 |     // unblock server thread | 
|---|
| [3] | 85 |     thread_unblock( XPTR( local_cxy , new_thread ) , THREAD_BLOCKED_GLOBAL ); | 
|---|
| [1] | 86 |  | 
|---|
 | 87 | }  // end dev_nic_init() | 
|---|
 | 88 |  | 
|---|
 | 89 | /////////////////////////////////// | 
|---|
 | 90 | error_t dev_nic_read( pkd_t * pkd ) | 
|---|
 | 91 | { | 
|---|
 | 92 |     error_t  error; | 
|---|
 | 93 |  | 
|---|
 | 94 |     // get pointers on this NIC-RX kernel thread  | 
|---|
 | 95 |     thread_t * thread_ptr = CURRENT_THREAD; | 
|---|
 | 96 |     xptr_t     thread_xp  = XPTR( local_cxy , thread_ptr ); | 
|---|
 | 97 |  | 
|---|
 | 98 |     // get local pointer on core running this kernel thead | 
|---|
 | 99 |     core_t * core = thread_ptr->core; | 
|---|
 | 100 |  | 
|---|
| [438] | 101 | #if DEBUG_DEV_NIC_RX | 
|---|
| [437] | 102 | uint32_t cycle = (uint32_t)hal_get_cycles(); | 
|---|
| [438] | 103 | if( DEBUG_DEV_NIC_RX < cycle ) | 
|---|
| [437] | 104 | printk("\n[DBG] %s : thread %x enters for packet %x in cluster %x\n",  | 
|---|
 | 105 | __FUNCTION__ , thread_ptr , pkd , local_cxy ); | 
|---|
 | 106 | #endif | 
|---|
| [1] | 107 |  | 
|---|
| [3] | 108 |     // get pointer on NIC-RX chdev descriptor | 
|---|
| [408] | 109 |     uint32_t   channel = thread_ptr->chdev->channel;  | 
|---|
| [3] | 110 |     xptr_t     dev_xp  = chdev_dir.nic_rx[channel]; | 
|---|
| [1] | 111 |     cxy_t      dev_cxy = GET_CXY( dev_xp ); | 
|---|
| [3] | 112 |     chdev_t  * dev_ptr = (chdev_t *)GET_PTR( dev_xp ); | 
|---|
| [1] | 113 |  | 
|---|
| [492] | 114 |     assert( (dev_xp != XPTR_NULL) , "undefined NIC chdev descriptor" ); | 
|---|
| [1] | 115 |  | 
|---|
| [492] | 116 |     assert( (dev_cxy == local_cxy) , " chdev must be local" ); | 
|---|
| [1] | 117 |  | 
|---|
 | 118 |     // initialize command in thread descriptor | 
|---|
| [279] | 119 |     thread_ptr->nic_cmd.dev_xp = dev_xp; | 
|---|
| [1] | 120 |  | 
|---|
 | 121 |     // call driver to test readable | 
|---|
| [279] | 122 |     thread_ptr->nic_cmd.cmd = NIC_CMD_READABLE; | 
|---|
| [1] | 123 |     dev_ptr->cmd( thread_xp ); | 
|---|
 | 124 |  | 
|---|
 | 125 |     // check error | 
|---|
| [279] | 126 |     error = thread_ptr->nic_cmd.error; | 
|---|
| [1] | 127 |     if( error ) return error; | 
|---|
 | 128 |  | 
|---|
 | 129 |     // block and deschedule if queue non readable | 
|---|
| [279] | 130 |     if( thread_ptr->nic_cmd.status == false )   | 
|---|
| [1] | 131 |     { | 
|---|
 | 132 |         // enable NIC-RX IRQ  | 
|---|
| [238] | 133 |         dev_pic_enable_irq( core->lid , dev_xp ); | 
|---|
| [1] | 134 |  | 
|---|
| [188] | 135 |         // block on THREAD_BLOCKED_IO condition and deschedule | 
|---|
| [436] | 136 |         thread_block( XPTR( local_cxy , thread_ptr ) , THREAD_BLOCKED_IO ); | 
|---|
| [408] | 137 |         sched_yield("client blocked on I/O"); | 
|---|
| [1] | 138 |  | 
|---|
| [188] | 139 |         // disable NIC-RX IRQ  | 
|---|
| [238] | 140 |         dev_pic_disable_irq( core->lid , dev_xp ); | 
|---|
| [1] | 141 |     } | 
|---|
 | 142 |  | 
|---|
 | 143 |     // call driver for actual read  | 
|---|
| [279] | 144 |     thread_ptr->nic_cmd.cmd     = NIC_CMD_READ; | 
|---|
 | 145 |     thread_ptr->nic_cmd.buffer  = pkd->buffer; | 
|---|
| [1] | 146 |     dev_ptr->cmd( thread_xp ); | 
|---|
 | 147 |  | 
|---|
 | 148 |     // check error | 
|---|
| [279] | 149 |     error = thread_ptr->nic_cmd.error; | 
|---|
| [1] | 150 |     if( error ) return error; | 
|---|
 | 151 |  | 
|---|
 | 152 |     // returns packet length    | 
|---|
| [279] | 153 |     pkd->length = thread_ptr->nic_cmd.length; | 
|---|
| [1] | 154 |  | 
|---|
| [438] | 155 | #if DEBUG_DEV_NIC_RX | 
|---|
| [437] | 156 | cycle = (uint32_t)hal_get_cycles(); | 
|---|
| [438] | 157 | if( DEBUG_DEV_NIC_RX < cycle ) | 
|---|
| [437] | 158 | printk("\n[DBG] %s : thread %x exit for packet %x in cluster %x\n",  | 
|---|
 | 159 | __FUNCTION__ , thread_ptr , pkd , local_cxy ); | 
|---|
 | 160 | #endif | 
|---|
| [1] | 161 |  | 
|---|
 | 162 |     return 0; | 
|---|
 | 163 |  | 
|---|
 | 164 | }   // end dev_nic_read() | 
|---|
 | 165 |  | 
|---|
 | 166 |  | 
|---|
 | 167 | //////////////////////////////////// | 
|---|
 | 168 | error_t dev_nic_write( pkd_t * pkd ) | 
|---|
 | 169 | { | 
|---|
 | 170 |     error_t error; | 
|---|
 | 171 |  | 
|---|
 | 172 |     // get pointers on the NIC-TX kernel tread  | 
|---|
 | 173 |     thread_t * thread_ptr = CURRENT_THREAD; | 
|---|
 | 174 |     xptr_t     thread_xp  = XPTR( local_cxy , thread_ptr ); | 
|---|
 | 175 |  | 
|---|
 | 176 |     // get local pointer on core running this kernel thead | 
|---|
 | 177 |     core_t * core = thread_ptr->core; | 
|---|
 | 178 |  | 
|---|
| [438] | 179 | #if DEBUG_DEV_NIC_RX | 
|---|
| [437] | 180 | uint32_t cycle = (uint32_t)hal_get_cycles(); | 
|---|
| [438] | 181 | if( DEBUG_DEV_NIC_RX < cycle ) | 
|---|
| [437] | 182 | printk("\n[DBG] %s : thread %x enters for packet %x in cluster %x\n",  | 
|---|
 | 183 | __FUNCTION__ , thread_ptr , pkd , local_cxy ); | 
|---|
 | 184 | #endif | 
|---|
| [1] | 185 |  | 
|---|
| [3] | 186 |     // get pointer on NIC-TX chdev descriptor | 
|---|
| [408] | 187 |     uint32_t   channel = thread_ptr->chdev->channel;  | 
|---|
| [3] | 188 |     xptr_t     dev_xp  = chdev_dir.nic_tx[channel]; | 
|---|
| [1] | 189 |     cxy_t      dev_cxy = GET_CXY( dev_xp ); | 
|---|
| [3] | 190 |     chdev_t  * dev_ptr = (chdev_t *)GET_PTR( dev_xp ); | 
|---|
| [1] | 191 |  | 
|---|
| [492] | 192 |     assert( (dev_xp != XPTR_NULL) , "undefined NIC chdev descriptor" ); | 
|---|
| [1] | 193 |  | 
|---|
| [492] | 194 |     assert( (dev_cxy == local_cxy) , " chdev must be local" ); | 
|---|
| [1] | 195 |  | 
|---|
 | 196 |     // initialize command in thread descriptor | 
|---|
| [279] | 197 |     thread_ptr->nic_cmd.dev_xp = dev_xp; | 
|---|
| [1] | 198 |  | 
|---|
 | 199 |     // call driver to test writable | 
|---|
| [279] | 200 |     thread_ptr->nic_cmd.cmd = NIC_CMD_WRITABLE; | 
|---|
| [1] | 201 |     dev_ptr->cmd( thread_xp ); | 
|---|
 | 202 |  | 
|---|
 | 203 |     // check error | 
|---|
| [279] | 204 |     error = thread_ptr->nic_cmd.error; | 
|---|
| [1] | 205 |     if( error ) return error; | 
|---|
 | 206 |  | 
|---|
 | 207 |     // block and deschedule if queue non writable | 
|---|
| [279] | 208 |     if( thread_ptr->nic_cmd.status == false )   | 
|---|
| [1] | 209 |     { | 
|---|
 | 210 |         // enable NIC-TX IRQ  | 
|---|
| [238] | 211 |         dev_pic_enable_irq( core->lid ,dev_xp ); | 
|---|
| [1] | 212 |  | 
|---|
 | 213 |         // block on THREAD_BLOCKED I/O condition and deschedule | 
|---|
| [436] | 214 |         thread_block( XPTR( local_cxy , thread_ptr ) , THREAD_BLOCKED_IO ); | 
|---|
| [408] | 215 |         sched_yield("client blocked on I/O"); | 
|---|
| [1] | 216 |  | 
|---|
 | 217 |         // disable NIC-TX IRQ  | 
|---|
| [238] | 218 |         dev_pic_disable_irq( core->lid , dev_xp ); | 
|---|
| [1] | 219 |     } | 
|---|
 | 220 |  | 
|---|
 | 221 |     // call driver for actual write | 
|---|
| [279] | 222 |     thread_ptr->nic_cmd.cmd    = NIC_CMD_WRITE; | 
|---|
 | 223 |     thread_ptr->nic_cmd.buffer = pkd->buffer; | 
|---|
 | 224 |     thread_ptr->nic_cmd.length = pkd->length; | 
|---|
| [1] | 225 |     dev_ptr->cmd( thread_xp ); | 
|---|
 | 226 |  | 
|---|
 | 227 |     // check error | 
|---|
| [279] | 228 |     error = thread_ptr->nic_cmd.error; | 
|---|
| [1] | 229 |     if( error ) return error; | 
|---|
 | 230 |  | 
|---|
| [438] | 231 | #if DEBUG_DEV_NIC_RX | 
|---|
| [437] | 232 | cycle = (uint32_t)hal_get_cycles(); | 
|---|
| [438] | 233 | if( DEBUG_DEV_NIC_RX < cycle ) | 
|---|
| [437] | 234 | printk("\n[DBG] %s : thread %x exit for packet %x in cluster %x\n",  | 
|---|
 | 235 | __FUNCTION__ , thread_ptr , pkd , local_cxy ); | 
|---|
 | 236 | #endif | 
|---|
| [1] | 237 |  | 
|---|
 | 238 |     return 0; | 
|---|
 | 239 | }  // end dev_nic_write() | 
|---|
 | 240 |  | 
|---|
 | 241 |  | 
|---|
 | 242 |  | 
|---|