[75] | 1 | /* |
---|
| 2 | * soclib_bdv.c - soclib simple block device driver implementation. |
---|
| 3 | * |
---|
[437] | 4 | * Author Alain Greiner (2016,2017,2018) |
---|
[75] | 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 | |
---|
[451] | 24 | #include <soclib_bdv.h> |
---|
| 25 | #include <hal_kernel_types.h> |
---|
[75] | 26 | #include <chdev.h> |
---|
| 27 | #include <dev_ioc.h> |
---|
[265] | 28 | #include <printk.h> |
---|
[75] | 29 | #include <thread.h> |
---|
| 30 | |
---|
| 31 | /////////////////////////////////////// |
---|
| 32 | void soclib_bdv_init( chdev_t * chdev ) |
---|
| 33 | { |
---|
[610] | 34 | // get extended pointer on SOCLIB_BDV peripheral base |
---|
[75] | 35 | xptr_t bdv_xp = chdev->base; |
---|
| 36 | |
---|
[211] | 37 | // set driver specific fields |
---|
| 38 | chdev->cmd = &soclib_bdv_cmd; |
---|
| 39 | chdev->isr = &soclib_bdv_isr; |
---|
| 40 | |
---|
[75] | 41 | // get hardware device cluster and local pointer |
---|
| 42 | cxy_t bdv_cxy = GET_CXY( bdv_xp ); |
---|
| 43 | uint32_t * bdv_ptr = (uint32_t *)GET_PTR( bdv_xp ); |
---|
| 44 | |
---|
| 45 | // get block_size and block_count |
---|
[570] | 46 | uint32_t block_size = hal_remote_l32( XPTR( bdv_cxy , bdv_ptr + BDV_BLOCK_SIZE_REG ) ); |
---|
| 47 | uint32_t block_count = hal_remote_l32( XPTR( bdv_cxy , bdv_ptr + BDV_SIZE_REG ) ); |
---|
[75] | 48 | |
---|
| 49 | // set IOC device descriptor extension |
---|
| 50 | chdev->ext.ioc.size = block_size; |
---|
| 51 | chdev->ext.ioc.count = block_count; |
---|
| 52 | |
---|
| 53 | } // end soclib_bdv_init() |
---|
| 54 | |
---|
| 55 | |
---|
| 56 | ////////////////////////////////////////////////////////////// |
---|
| 57 | void __attribute__ ((noinline)) soclib_bdv_cmd( xptr_t th_xp ) |
---|
| 58 | { |
---|
[279] | 59 | uint32_t cmd_type; // IOC_READ / IOC_WRITE / IOC_SYNC_READ |
---|
| 60 | uint32_t lba; |
---|
| 61 | uint32_t count; |
---|
| 62 | xptr_t buf_xp; |
---|
| 63 | xptr_t ioc_xp; |
---|
[610] | 64 | uint32_t status; // I/0 operation status (from BDV) |
---|
| 65 | reg_t save_sr; // for critical section |
---|
| 66 | uint32_t op; // BDV_OP_READ / BDV_OP_WRITE |
---|
[75] | 67 | |
---|
| 68 | // get client thread cluster and local pointer |
---|
| 69 | cxy_t th_cxy = GET_CXY( th_xp ); |
---|
[440] | 70 | thread_t * th_ptr = GET_PTR( th_xp ); |
---|
[75] | 71 | |
---|
[610] | 72 | #if (DEBUG_HAL_IOC_RX || DEBUG_HAL_IOC_TX) |
---|
| 73 | uint32_t cycle = (uint32_t)hal_get_cycles(); |
---|
| 74 | thread_t * this = CURRENT_THREAD; |
---|
| 75 | process_t * process = hal_remote_lpt( XPTR( th_cxy , &th_ptr->process ) ); |
---|
| 76 | pid_t client_pid = hal_remote_l32( XPTR( th_cxy , &process->pid ) ); |
---|
| 77 | trdid_t client_trdid = hal_remote_l32( XPTR( th_cxy , &th_ptr->trdid ) ); |
---|
| 78 | #endif |
---|
| 79 | |
---|
[75] | 80 | // get command arguments and extended pointer on IOC device |
---|
[610] | 81 | cmd_type = hal_remote_l32( XPTR( th_cxy , &th_ptr->ioc_cmd.type ) ); |
---|
| 82 | lba = hal_remote_l32( XPTR( th_cxy , &th_ptr->ioc_cmd.lba ) ); |
---|
| 83 | count = hal_remote_l32( XPTR( th_cxy , &th_ptr->ioc_cmd.count ) ); |
---|
[570] | 84 | buf_xp = (xptr_t)hal_remote_l64( XPTR( th_cxy , &th_ptr->ioc_cmd.buf_xp ) ); |
---|
| 85 | ioc_xp = (xptr_t)hal_remote_l64( XPTR( th_cxy , &th_ptr->ioc_cmd.dev_xp ) ); |
---|
[75] | 86 | |
---|
[438] | 87 | #if DEBUG_HAL_IOC_RX |
---|
| 88 | if( (DEBUG_HAL_IOC_RX < cycle) && (cmd_type != IOC_WRITE ) ) |
---|
[610] | 89 | printk("\n[%s] thread[%x,%x] enters for client thread[%x,%x] / RX / cycle %d\n", |
---|
| 90 | __FUNCTION__ , this->process->pid, this->trdid, client_pid, client_trdid, cycle ); |
---|
[437] | 91 | #endif |
---|
| 92 | |
---|
[438] | 93 | #if DEBUG_HAL_IOC_TX |
---|
| 94 | if( (DEBUG_HAL_IOC_TX < cycle) && (cmd_type == IOC_WRITE) ) |
---|
[610] | 95 | printk("\n[%s] thread[%x,%x] enters for client thread[%x,%x] / TX / cycle %d\n", |
---|
| 96 | __FUNCTION__ , this->process->pid, this->trdid, client_pid, client_trdid, cycle ); |
---|
[437] | 97 | #endif |
---|
| 98 | |
---|
[75] | 99 | // get IOC device cluster and local pointer |
---|
[279] | 100 | cxy_t ioc_cxy = GET_CXY( ioc_xp ); |
---|
[440] | 101 | chdev_t * ioc_ptr = GET_PTR( ioc_xp ); |
---|
[75] | 102 | |
---|
[440] | 103 | // get cluster and pointers for SOCLIB-BDV peripheral segment base |
---|
[570] | 104 | xptr_t seg_xp = (xptr_t)hal_remote_l64( XPTR( ioc_cxy , &ioc_ptr->base ) ); |
---|
[440] | 105 | cxy_t seg_cxy = GET_CXY( seg_xp ); |
---|
| 106 | uint32_t * seg_ptr = GET_PTR( seg_xp ); |
---|
[75] | 107 | |
---|
| 108 | // split buffer address in two 32 bits words |
---|
| 109 | uint32_t buf_lsb = (uint32_t)(buf_xp); |
---|
| 110 | uint32_t buf_msb = (uint32_t)(buf_xp>>32); |
---|
| 111 | |
---|
[610] | 112 | // select operation |
---|
[615] | 113 | if( (cmd_type == IOC_READ) || (cmd_type == IOC_SYNC_READ) ) op = BDV_OP_READ; |
---|
| 114 | else op = BDV_OP_WRITE; |
---|
[75] | 115 | |
---|
[610] | 116 | // set SOCLIB_BDV registers to configure the I/O operation |
---|
[570] | 117 | hal_remote_s32( XPTR( seg_cxy , seg_ptr + BDV_IRQ_ENABLE_REG ) , 1 ); |
---|
| 118 | hal_remote_s32( XPTR( seg_cxy , seg_ptr + BDV_BUFFER_REG ) , buf_lsb ); |
---|
| 119 | hal_remote_s32( XPTR( seg_cxy , seg_ptr + BDV_BUFFER_EXT_REG ) , buf_msb ); |
---|
| 120 | hal_remote_s32( XPTR( seg_cxy , seg_ptr + BDV_LBA_REG ) , lba ); |
---|
| 121 | hal_remote_s32( XPTR( seg_cxy , seg_ptr + BDV_COUNT_REG ) , count ); |
---|
[75] | 122 | |
---|
| 123 | // waiting policy depends on the command type |
---|
[407] | 124 | // - for IOC_READ / IOC_WRITE commands, this function is called by the server thread |
---|
[610] | 125 | // that blocks and deschedules after launching the I/O transfer. |
---|
| 126 | // The I/O operation status is reported in the command by the ISR. |
---|
[615] | 127 | // - for IOC_SYNC_READ / IOC_SYNC_WRITE command, this function is called by the client |
---|
| 128 | // thread that polls the BDV status register until I/O transfer completion. |
---|
[75] | 129 | |
---|
[615] | 130 | if( (cmd_type == IOC_SYNC_READ) || (cmd_type == IOC_SYNC_WRITE) ) // polling policy |
---|
[75] | 131 | { |
---|
[610] | 132 | // launch I/O operation on BDV device |
---|
| 133 | hal_remote_s32( XPTR( seg_cxy , seg_ptr + BDV_OP_REG ) , op ); |
---|
| 134 | |
---|
| 135 | // wait completion |
---|
[75] | 136 | while (1) |
---|
| 137 | { |
---|
[570] | 138 | status = hal_remote_l32( XPTR( seg_cxy , seg_ptr + BDV_STATUS_REG ) ); |
---|
[75] | 139 | |
---|
[615] | 140 | if( (status == BDV_READ_SUCCESS) || |
---|
| 141 | (status == BDV_WRITE_SUCCESS) ) // successfully completed |
---|
[75] | 142 | { |
---|
[570] | 143 | hal_remote_s32( XPTR( th_cxy , &th_ptr->ioc_cmd.error ) , 0 ); |
---|
[75] | 144 | break; |
---|
| 145 | } |
---|
| 146 | else if( status == BDV_BUSY ) // non completed |
---|
| 147 | { |
---|
| 148 | continue; |
---|
| 149 | } |
---|
| 150 | else // error reported |
---|
| 151 | { |
---|
[570] | 152 | hal_remote_s32( XPTR( th_cxy , &th_ptr->ioc_cmd.error ) , 1 ); |
---|
[75] | 153 | break; |
---|
| 154 | } |
---|
| 155 | } |
---|
| 156 | } |
---|
[615] | 157 | else // descheduling + IRQ policy |
---|
[75] | 158 | { |
---|
[610] | 159 | // enter critical section to atomically |
---|
| 160 | // lauch I/O operation and deschedule |
---|
| 161 | hal_disable_irq( &save_sr ); |
---|
| 162 | |
---|
| 163 | // launch I/O operation on BDV device |
---|
| 164 | hal_remote_s32( XPTR( seg_cxy , seg_ptr + BDV_OP_REG ) , op ); |
---|
| 165 | |
---|
| 166 | // server thread blocks on ISR |
---|
[436] | 167 | thread_block( XPTR( local_cxy , CURRENT_THREAD ) , THREAD_BLOCKED_ISR ); |
---|
[610] | 168 | |
---|
| 169 | #if DEBUG_HAL_IOC_RX |
---|
| 170 | if( (DEBUG_HAL_IOC_RX < cycle) && (cmd_type != IOC_WRITE ) ) |
---|
| 171 | printk("\n[%s] thread[%x,%x] blocks & deschedules after lauching RX transfer\n", |
---|
| 172 | __FUNCTION__ , this->process->pid, this->trdid ); |
---|
| 173 | #endif |
---|
| 174 | |
---|
| 175 | #if DEBUG_HAL_IOC_TX |
---|
| 176 | if( (DEBUG_HAL_IOC_TX < cycle) && (cmd_type == IOC_WRITE) ) |
---|
| 177 | printk("\n[%s] thread[%x,%x] blocks & deschedules after lauching TX transfer\n", |
---|
| 178 | __FUNCTION__ , this->process->pid, this->trdid ); |
---|
| 179 | #endif |
---|
| 180 | // server thread deschedules |
---|
[408] | 181 | sched_yield("blocked on ISR"); |
---|
[407] | 182 | |
---|
[610] | 183 | // exit critical section |
---|
| 184 | hal_restore_irq( save_sr ); |
---|
[75] | 185 | } |
---|
| 186 | |
---|
[438] | 187 | #if DEBUG_HAL_IOC_RX |
---|
[437] | 188 | cycle = (uint32_t)hal_get_cycles(); |
---|
[610] | 189 | if( (DEBUG_HAL_IOC_RX < cycle) && (cmd_type != IOC_WRITE) ) |
---|
| 190 | printk("\n[%s] thread[%x,%x] exit after RX for client thread[%x,%x] / cycle %d\n", |
---|
| 191 | __FUNCTION__, this->process->pid, this->trdid, client_pid, client_trdid, cycle ); |
---|
[437] | 192 | #endif |
---|
| 193 | |
---|
[438] | 194 | #if DEBUG_HAL_IOC_TX |
---|
[437] | 195 | cycle = (uint32_t)hal_get_cycles(); |
---|
[610] | 196 | if( (DEBUG_HAL_IOC_TX < cycle) && (cmd_type == IOC_WRITE) ) |
---|
| 197 | printk("\n[%s] thread[%x,%x] exit after TX for client thread[%x,%x] / cycle %d\n", |
---|
| 198 | __FUNCTION__, this->process->pid, this->trdid, client_pid, client_trdid, cycle ); |
---|
[437] | 199 | #endif |
---|
| 200 | |
---|
[75] | 201 | } // end soclib_bdv_cmd() |
---|
| 202 | |
---|
| 203 | |
---|
| 204 | ///////////////////////////////////////////////////////////////// |
---|
| 205 | void __attribute__ ((noinline)) soclib_bdv_isr( chdev_t * chdev ) |
---|
| 206 | { |
---|
[437] | 207 | error_t error = 0; |
---|
| 208 | |
---|
[610] | 209 | // get extended pointer on server thread |
---|
| 210 | xptr_t server_xp = XPTR( local_cxy , chdev->server ); |
---|
| 211 | |
---|
[75] | 212 | // get extended pointer on client thread |
---|
[610] | 213 | xptr_t root = XPTR( local_cxy , &chdev->wait_root ); |
---|
[570] | 214 | xptr_t client_xp = XLIST_FIRST( root , thread_t , wait_list ); |
---|
[75] | 215 | |
---|
| 216 | // get client thread cluster and local pointer |
---|
| 217 | cxy_t client_cxy = GET_CXY( client_xp ); |
---|
[610] | 218 | thread_t * client_ptr = GET_PTR( client_xp ); |
---|
[75] | 219 | |
---|
[437] | 220 | // get command type |
---|
[570] | 221 | uint32_t cmd_type = hal_remote_l32( XPTR( client_cxy , &client_ptr->ioc_cmd.type ) ); |
---|
[437] | 222 | |
---|
[610] | 223 | #if (DEBUG_HAL_IOC_RX || DEBUG_HAL_IOC_TX) |
---|
| 224 | uint32_t cycle = (uint32_t)hal_get_cycles(); |
---|
| 225 | process_t * process = hal_remote_lpt( XPTR( client_cxy , &client_ptr->process ) ); |
---|
| 226 | pid_t client_pid = hal_remote_l32( XPTR( client_cxy , &process->pid ) ); |
---|
| 227 | trdid_t client_trdid = hal_remote_l32( XPTR( client_cxy , &client_ptr->trdid ) ); |
---|
| 228 | thread_t * server = GET_PTR( server_xp ); |
---|
| 229 | pid_t server_pid = server->process->pid; |
---|
| 230 | trdid_t server_trdid = server->trdid; |
---|
| 231 | #endif |
---|
| 232 | |
---|
[75] | 233 | // get SOCLIB_BDV device cluster and local pointer |
---|
| 234 | cxy_t bdv_cxy = GET_CXY( chdev->base ); |
---|
[610] | 235 | uint32_t * bdv_ptr = GET_PTR( chdev->base ); |
---|
[75] | 236 | |
---|
| 237 | // get BDV status register and acknowledge IRQ |
---|
[570] | 238 | uint32_t status = hal_remote_l32( XPTR( bdv_cxy , bdv_ptr + BDV_STATUS_REG ) ); |
---|
[75] | 239 | |
---|
[437] | 240 | if( cmd_type == IOC_READ ) |
---|
[75] | 241 | { |
---|
[437] | 242 | error = (status != BDV_READ_SUCCESS); |
---|
| 243 | |
---|
[438] | 244 | #if DEBUG_HAL_IOC_RX |
---|
| 245 | if( DEBUG_HAL_IOC_RX < cycle ) |
---|
[610] | 246 | printk("\n[%s] RX transfer completed for client[%x,%x] / server[%x,%x] / cycle %d\n", |
---|
| 247 | __FUNCTION__, client_pid, client_trdid, server_pid, server_trdid, cycle ); |
---|
[437] | 248 | #endif |
---|
| 249 | |
---|
[75] | 250 | } |
---|
[437] | 251 | else if( cmd_type == IOC_WRITE ) |
---|
[75] | 252 | { |
---|
[437] | 253 | error = (status != BDV_WRITE_SUCCESS); |
---|
| 254 | |
---|
[438] | 255 | #if DEBUG_HAL_IOC_TX |
---|
| 256 | if( DEBUG_HAL_IOC_TX < cycle ) |
---|
[610] | 257 | printk("\n[%s] TX transfer completed for client[%x,%x] / server[%x,%x] / cycle %d\n", |
---|
| 258 | __FUNCTION__, client_pid, client_trdid, server_pid, server_trdid, cycle ); |
---|
[437] | 259 | #endif |
---|
| 260 | |
---|
[75] | 261 | } |
---|
[437] | 262 | else |
---|
| 263 | { |
---|
[492] | 264 | assert( false , "IOC_SYNC_READ should not use IRQ" ); |
---|
[437] | 265 | } |
---|
[75] | 266 | |
---|
[437] | 267 | // set operation status in command |
---|
[570] | 268 | hal_remote_s32( XPTR( client_cxy , &client_ptr->ioc_cmd.error ) , error ); |
---|
[437] | 269 | |
---|
[75] | 270 | // unblock server thread |
---|
[436] | 271 | thread_unblock( server_xp , THREAD_BLOCKED_ISR ); |
---|
[75] | 272 | |
---|
| 273 | } // end soclib_bdv_isr() |
---|
| 274 | |
---|
| 275 | |
---|
| 276 | |
---|