[258] | 1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | // File : hba_driver.c |
---|
| 3 | // Date : 23/11/2013 |
---|
[295] | 4 | // Author : alain greiner |
---|
[258] | 5 | // Copyright (c) UPMC-LIP6 |
---|
| 6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 7 | // The hba_driver.c and hba_driver.h files are part ot the GIET-VM kernel. |
---|
| 8 | // This driver supports the SocLib VciMultiAhci component, that is a multi-channels, |
---|
| 9 | // block oriented, external storage contrÃŽler, respecting the AHCI standard. |
---|
| 10 | // |
---|
[320] | 11 | // The SEG_IOC_BASE virtual address must be defined in the hard_config.h file. |
---|
[295] | 12 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 13 | // Implementation notes: |
---|
[258] | 14 | // |
---|
[295] | 15 | // 1. In order to share code, the two _hba_read() and _hba_write() functions |
---|
| 16 | // call the same _hba_set_cmd() function. |
---|
[258] | 17 | // |
---|
[295] | 18 | // 2. All accesses to HBA registers are done by the two |
---|
| 19 | // _hba_set_register() and _hba_get_register() low-level functions, |
---|
| 20 | // that are handling virtual / physical extended addressing. |
---|
[258] | 21 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 22 | |
---|
| 23 | #include <giet_config.h> |
---|
| 24 | #include <ioc_driver.h> |
---|
| 25 | #include <utils.h> |
---|
| 26 | #include <tty_driver.h> |
---|
| 27 | #include <iob_driver.h> |
---|
| 28 | #include <ctx_handler.h> |
---|
| 29 | #include <mmc_driver.h> |
---|
[289] | 30 | #include <hba_driver.h> |
---|
[258] | 31 | #include <vmem.h> |
---|
| 32 | |
---|
[295] | 33 | #if !defined( NB_IOC_CHANNELS ) |
---|
| 34 | # error: You must define NB_IOC_CHANNELS in the hard_config.h file |
---|
[258] | 35 | #endif |
---|
| 36 | |
---|
[295] | 37 | #if ( NB_IOC_CHANNELS > 8 ) |
---|
| 38 | # error: NB_IOC_CHANNELS cannot be larger than 8 |
---|
[258] | 39 | #endif |
---|
| 40 | |
---|
| 41 | #define in_unckdata __attribute__((section (".unckdata"))) |
---|
| 42 | |
---|
| 43 | ////////////////////////////////////////////////////////////////// |
---|
| 44 | // Global variables |
---|
| 45 | ////////////////////////////////////////////////////////////////// |
---|
| 46 | |
---|
| 47 | // command list array (one per channel) |
---|
[295] | 48 | hba_cmd_list_t hba_cmd_list[NB_IOC_CHANNELS] __attribute__((aligned(0x1000))); |
---|
[258] | 49 | |
---|
| 50 | // command tables array (32 command tables per channel) |
---|
[295] | 51 | hba_cmd_table_t hba_cmd_table[NB_IOC_CHANNELS][32] __attribute__((aligned(0x1000))); |
---|
[258] | 52 | |
---|
| 53 | // command list physical addresses array (one per channel) |
---|
[295] | 54 | paddr_t hba_cmd_list_paddr[NB_IOC_CHANNELS]; |
---|
[258] | 55 | |
---|
| 56 | // command tables physical addresses array (32 command tables per channel) |
---|
[295] | 57 | paddr_t hba_cmd_table_paddr[NB_IOC_CHANNELS][32]; |
---|
[258] | 58 | |
---|
| 59 | // command list pointer array (one per channel) |
---|
[295] | 60 | unsigned int hba_cmd_slot[NB_IOC_CHANNELS]; |
---|
[258] | 61 | |
---|
[295] | 62 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 63 | // This low level function returns the value of register (channel / index) |
---|
| 64 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 65 | unsigned int _hba_get_register( unsigned int channel, |
---|
| 66 | unsigned int index ) |
---|
[258] | 67 | { |
---|
[320] | 68 | unsigned int* vaddr = (unsigned int*)SEG_IOC_BASE + channel*HBA_SPAN + index; |
---|
[295] | 69 | return _io_extended_read( vaddr ); |
---|
| 70 | } |
---|
[258] | 71 | |
---|
[295] | 72 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 73 | // This low level function set a new value in register (channel / index) |
---|
| 74 | ////////////////////////////////////////////////////////////////////////////// |
---|
| 75 | void _hba_set_register( unsigned int channel, |
---|
| 76 | unsigned int index, |
---|
| 77 | unsigned int value ) |
---|
| 78 | { |
---|
[320] | 79 | unsigned int* vaddr = (unsigned int*)SEG_IOC_BASE + channel*HBA_SPAN + index; |
---|
[295] | 80 | _io_extended_write( vaddr, value ); |
---|
[258] | 81 | } |
---|
| 82 | |
---|
[295] | 83 | |
---|
[258] | 84 | /////////////////////////////////////////////////////////////////////////////// |
---|
| 85 | // This function register a command in both the command list |
---|
| 86 | // and the command table, and updates the HBA_PXCI register. |
---|
| 87 | // It uses the AHCI Scatter/Gather mechanisme to split the user |
---|
| 88 | // buffer in several physical buffers, with the constraint that each physical |
---|
| 89 | // buffer must be an integer number of blocks entirely contained in a single |
---|
| 90 | // page frame. |
---|
| 91 | // return 0 if success, > 0 if error |
---|
| 92 | /////////////////////////////////////////////////////////////////////////////// |
---|
[295] | 93 | unsigned int _hba_cmd_set( unsigned int channel, // channel index |
---|
| 94 | unsigned int is_read, // to memory |
---|
[258] | 95 | unsigned int lba, // logic block address |
---|
[295] | 96 | paddr_t buffer, // buffer physical address |
---|
[258] | 97 | unsigned int count ) // number of blocks |
---|
| 98 | { |
---|
| 99 | unsigned int block_size; // defined by the block device (bytes) |
---|
| 100 | unsigned int pxci; // command list status |
---|
| 101 | unsigned int cmd_id; // command index in command list |
---|
[295] | 102 | |
---|
[258] | 103 | hba_cmd_desc_t* cmd_desc; // command descriptor pointer |
---|
| 104 | hba_cmd_table_t* cmd_table; // command table pointer |
---|
| 105 | |
---|
[289] | 106 | block_size = _hba_get_block_size(); |
---|
[258] | 107 | |
---|
| 108 | // check buffer alignment |
---|
[295] | 109 | if( buffer & (block_size-1) ) |
---|
[258] | 110 | { |
---|
[295] | 111 | _printf("\n[GIET ERROR] in _hba_set_cmd() : user buffer not block aligned\n"); |
---|
[258] | 112 | return 1; |
---|
| 113 | } |
---|
| 114 | |
---|
[295] | 115 | // get command list status from PXCI register |
---|
| 116 | pxci = _hba_get_register( channel, HBA_PXCI ); |
---|
[258] | 117 | |
---|
| 118 | // get command index and return error if command list full |
---|
[295] | 119 | cmd_id = hba_cmd_slot[channel]; |
---|
[258] | 120 | if( pxci & (1<<cmd_id ) ) |
---|
| 121 | { |
---|
[295] | 122 | _printf("\n[GIET ERROR] in _hba_set_cmd() : command list full for channel %d\n", |
---|
| 123 | channel ); |
---|
[258] | 124 | return 1; |
---|
| 125 | } |
---|
| 126 | |
---|
| 127 | // compute pointers on command descriptor and command table |
---|
[295] | 128 | cmd_desc = (hba_cmd_desc_t*)(&(hba_cmd_list[channel].desc[cmd_id])); |
---|
| 129 | cmd_table = (hba_cmd_table_t*)(&(hba_cmd_table[channel][cmd_id])); |
---|
[258] | 130 | |
---|
[295] | 131 | // set buffer descriptor in command table |
---|
| 132 | cmd_table->entry[0].dba = (unsigned int)(buffer); |
---|
| 133 | cmd_table->entry[0].dbau = (unsigned int)(buffer >> 32); |
---|
| 134 | cmd_table->entry[0].dbc = count * block_size; |
---|
| 135 | |
---|
| 136 | // initialize command table header |
---|
| 137 | cmd_table->header.lba0 = (char)lba; |
---|
| 138 | cmd_table->header.lba1 = (char)(lba>>8); |
---|
| 139 | cmd_table->header.lba2 = (char)(lba>>16); |
---|
| 140 | cmd_table->header.lba3 = (char)(lba>>24); |
---|
| 141 | cmd_table->header.lba4 = 0; |
---|
| 142 | cmd_table->header.lba5 = 0; |
---|
| 143 | |
---|
| 144 | // initialise command descriptor |
---|
| 145 | cmd_desc->prdtl[0] = 1; |
---|
| 146 | cmd_desc->prdtl[1] = 0; |
---|
| 147 | cmd_desc->ctba = (unsigned int)(hba_cmd_table_paddr[channel][cmd_id]); |
---|
| 148 | cmd_desc->ctbau = (unsigned int)(hba_cmd_table_paddr[channel][cmd_id]>>32); |
---|
| 149 | if( is_read ) cmd_desc->flag[0] = 0x00; |
---|
| 150 | else cmd_desc->flag[0] = 0x40; |
---|
| 151 | |
---|
| 152 | // update PXCI register |
---|
| 153 | _hba_set_register( channel, HBA_PXCI, (1<<cmd_id) ); |
---|
| 154 | |
---|
| 155 | // update command pointer |
---|
| 156 | hba_cmd_slot[channel] = (cmd_id + 1)%32; |
---|
| 157 | |
---|
| 158 | return 0; |
---|
| 159 | } |
---|
| 160 | |
---|
| 161 | /* This can be used for a future use with buffer in virtual space |
---|
| 162 | |
---|
[258] | 163 | // get user space page table virtual address |
---|
| 164 | user_pt_vbase = _get_context_slot(CTX_PTAB_ID); |
---|
| 165 | vpn_min = buf_vaddr >> 12; |
---|
| 166 | vpn_max = (buf_vaddr + (block_size*count) - 1) >> 12; |
---|
| 167 | offset = buf_vaddr & 0xFFF; |
---|
| 168 | offset_last = (buf_vaddr + (block_size*count) - 1) & 0xFFF; |
---|
| 169 | |
---|
| 170 | // initialize all buffer descriptors in command table |
---|
| 171 | // (loop on all virtual pages covering the user buffer) |
---|
| 172 | for( vpn = vpn_min, buf_id = 0 ; vpn <= vpn_max ; vpn++ ) |
---|
| 173 | { |
---|
| 174 | paddr_t paddr; |
---|
| 175 | unsigned int count; |
---|
| 176 | unsigned int ppn; |
---|
| 177 | unsigned int flags; |
---|
| 178 | unsigned int ko; |
---|
| 179 | unsigned int buf_id = 0; |
---|
| 180 | |
---|
| 181 | // get ppn and flags |
---|
| 182 | ko = _v2p_translate( (page_table_t*)user_pt_vbase, |
---|
| 183 | vpn, |
---|
| 184 | &ppn, |
---|
| 185 | &flags ); |
---|
| 186 | |
---|
| 187 | // check access rights |
---|
| 188 | if ( ko ) |
---|
| 189 | { |
---|
[295] | 190 | _printf("[GIET ERROR] in _hba_set_cmd() : user buffer unmapped\n"); |
---|
[258] | 191 | return 1; |
---|
| 192 | } |
---|
| 193 | if ((flags & PTE_U) == 0) |
---|
| 194 | { |
---|
[295] | 195 | _printf("[GIET ERROR] in _hba_set_cmd() : user buffer not in user space\n"); |
---|
[258] | 196 | return 1; |
---|
| 197 | } |
---|
| 198 | if (((flags & PTE_W) == 0 ) && (is_read == 0) ) |
---|
| 199 | { |
---|
[295] | 200 | _printf("[GIET ERROR] in _hba_set_cmd() : user buffer not writable\n"); |
---|
[258] | 201 | return 1; |
---|
| 202 | } |
---|
| 203 | |
---|
| 204 | // check buffer index overflow |
---|
| 205 | if( buf_id > 245 ) |
---|
| 206 | { |
---|
[295] | 207 | _printf("[GIET ERROR] in _hba_set_cmd() : max number of buffers is 248\n"); |
---|
[258] | 208 | return 1; |
---|
| 209 | } |
---|
| 210 | |
---|
| 211 | // buffer allocation |
---|
| 212 | if( vpn == vpn_min ) // first page: one single buffer |
---|
| 213 | { |
---|
| 214 | paddr = (((paddr_t)ppn) << 12) + offset; |
---|
| 215 | count = 0x1000 - offset; |
---|
| 216 | cmd_table->entry[buf_id].dba = (unsigned int)(paddr); |
---|
| 217 | cmd_table->entry[buf_id].dbau = (unsigned int)(paddr >> 32); |
---|
| 218 | cmd_table->entry[buf_id].dbc = count; |
---|
| 219 | |
---|
| 220 | #if GIET_DEBUG_HBA_DRIVER |
---|
[295] | 221 | _printf("\n- buf_index = "); |
---|
[258] | 222 | _putd( buf_id ); |
---|
[295] | 223 | _printf(" / paddr = "); |
---|
[258] | 224 | _putl( paddr ); |
---|
[295] | 225 | _printf(" / count = "); |
---|
[258] | 226 | _putd( count ); |
---|
[295] | 227 | _printf("\n"); |
---|
[258] | 228 | #endif |
---|
| 229 | buf_id++; |
---|
| 230 | } |
---|
| 231 | else if( vpn == vpn_max ) // last page: one single buffer |
---|
| 232 | { |
---|
| 233 | paddr = (((paddr_t)ppn) << 12); |
---|
| 234 | count = offset_last; |
---|
| 235 | cmd_table->entry[buf_id].dba = (unsigned int)(paddr); |
---|
| 236 | cmd_table->entry[buf_id].dbau = (unsigned int)(paddr >> 32); |
---|
| 237 | cmd_table->entry[buf_id].dbc = count; |
---|
| 238 | |
---|
| 239 | #if GIET_DEBUG_HBA_DRIVER |
---|
[295] | 240 | _printf("\n- buf_index = "); |
---|
[258] | 241 | _putd( buf_id ); |
---|
[295] | 242 | _printf(" / paddr = "); |
---|
[258] | 243 | _putl( paddr ); |
---|
[295] | 244 | _printf(" / count = "); |
---|
[258] | 245 | _putd( count ); |
---|
[295] | 246 | _printf("\n"); |
---|
[258] | 247 | #endif |
---|
| 248 | buf_id++; |
---|
| 249 | } |
---|
| 250 | else if( offset ) // midle page and offset != 0: two buffers |
---|
| 251 | { |
---|
| 252 | paddr = (((paddr_t)ppn) << 12); |
---|
| 253 | |
---|
| 254 | count = offset; |
---|
| 255 | cmd_table->entry[buf_id].dba = (unsigned int)(paddr); |
---|
| 256 | cmd_table->entry[buf_id].dbau = (unsigned int)(paddr >> 32); |
---|
| 257 | cmd_table->entry[buf_id].dbc = count; |
---|
| 258 | |
---|
| 259 | #if GIET_DEBUG_HBA_DRIVER |
---|
[295] | 260 | _printf("\n- buf_index = "); |
---|
[258] | 261 | _putd( buf_id ); |
---|
[295] | 262 | _printf(" / paddr = "); |
---|
[258] | 263 | _putl( paddr ); |
---|
[295] | 264 | _printf(" / count = "); |
---|
[258] | 265 | _putd( count ); |
---|
[295] | 266 | _printf("\n"); |
---|
[258] | 267 | #endif |
---|
| 268 | buf_id++; |
---|
| 269 | |
---|
| 270 | paddr = (((paddr_t)ppn) << 12) + offset; |
---|
| 271 | count = 0x1000 - offset; |
---|
| 272 | cmd_table->entry[buf_id].dba = (unsigned int)(paddr); |
---|
| 273 | cmd_table->entry[buf_id].dbau = (unsigned int)(paddr >> 32); |
---|
| 274 | cmd_table->entry[buf_id].dbc = count; |
---|
| 275 | |
---|
| 276 | #if GIET_DEBUG_HBA_DRIVER |
---|
[295] | 277 | _printf("\n- buf_index = "); |
---|
[258] | 278 | _putd( buf_id ); |
---|
[295] | 279 | _printf(" / paddr = "); |
---|
[258] | 280 | _putl( paddr ); |
---|
[295] | 281 | _printf(" / count = "); |
---|
[258] | 282 | _putd( count ); |
---|
[295] | 283 | _printf("\n"); |
---|
[258] | 284 | #endif |
---|
| 285 | buf_id++; |
---|
| 286 | } |
---|
| 287 | else // middle page and offset == 0: one buffer |
---|
| 288 | { |
---|
| 289 | paddr = (((paddr_t)ppn) << 12); |
---|
| 290 | count = 0x1000; |
---|
| 291 | cmd_table->entry[buf_id].dba = (unsigned int)(paddr); |
---|
| 292 | cmd_table->entry[buf_id].dbau = (unsigned int)(paddr >> 32); |
---|
| 293 | cmd_table->entry[buf_id].dbc = count; |
---|
| 294 | |
---|
| 295 | #if GIET_DEBUG_HBA_DRIVER |
---|
[295] | 296 | _printf("\n- buf_index = "); |
---|
[258] | 297 | _putd( buf_id ); |
---|
[295] | 298 | _printf(" / paddr = "); |
---|
[258] | 299 | _putl( paddr ); |
---|
[295] | 300 | _printf(" / count = "); |
---|
[258] | 301 | _putd( count ); |
---|
[295] | 302 | _printf("\n"); |
---|
[258] | 303 | #endif |
---|
| 304 | buf_id++; |
---|
| 305 | } |
---|
| 306 | } |
---|
[295] | 307 | */ |
---|
[258] | 308 | |
---|
| 309 | |
---|
| 310 | /////////////////////////////////////////////////////////////////// |
---|
| 311 | // Register a write command in Command List and Command Table |
---|
[295] | 312 | // for a single physical buffer. |
---|
[258] | 313 | // Returns 0 if success, > 0 if error. |
---|
| 314 | /////////////////////////////////////////////////////////////////// |
---|
[295] | 315 | unsigned int _hba_write( unsigned int channel, |
---|
| 316 | unsigned int mode, |
---|
[289] | 317 | unsigned int lba, |
---|
[295] | 318 | paddr_t buffer, |
---|
[258] | 319 | unsigned int count ) |
---|
| 320 | { |
---|
[295] | 321 | return _hba_cmd_set( channel, |
---|
| 322 | 0, // write |
---|
| 323 | lba, |
---|
| 324 | buffer, |
---|
| 325 | count ); |
---|
[258] | 326 | } |
---|
| 327 | |
---|
| 328 | /////////////////////////////////////////////////////////////////// |
---|
| 329 | // Register a read command in Command List and Command Table |
---|
[295] | 330 | // for a single physical buffer. |
---|
[258] | 331 | // Returns 0 if success, > 0 if error. |
---|
| 332 | /////////////////////////////////////////////////////////////////// |
---|
[295] | 333 | unsigned int _hba_read( unsigned int channel, |
---|
| 334 | unsigned int mode, |
---|
[289] | 335 | unsigned int lba, |
---|
[295] | 336 | paddr_t buffer, |
---|
[258] | 337 | unsigned int count ) |
---|
| 338 | { |
---|
[295] | 339 | return _hba_cmd_set( channel, |
---|
| 340 | 1, // read |
---|
| 341 | lba, |
---|
| 342 | buffer, |
---|
| 343 | count ); |
---|
[258] | 344 | } |
---|
[295] | 345 | |
---|
[258] | 346 | ////////////////////////////////////////////////////////////////// |
---|
[289] | 347 | // This function initializes for a given channel |
---|
[258] | 348 | // - the HBA hardware registers, |
---|
| 349 | // - the command list pointer, |
---|
| 350 | // - the command lists physical addresse, |
---|
| 351 | // - the command tables physical addresses array, |
---|
| 352 | ////////////////////////////////////////////////////////////////// |
---|
[289] | 353 | unsigned int _hba_init( unsigned int channel ) |
---|
[258] | 354 | { |
---|
| 355 | unsigned int ppn; |
---|
| 356 | unsigned int flags; |
---|
| 357 | unsigned int fail; |
---|
| 358 | unsigned int vbase; |
---|
| 359 | unsigned int c; // c == command index |
---|
| 360 | |
---|
| 361 | // get page_table pointer |
---|
| 362 | unsigned int pt = _get_context_slot(CTX_PTAB_ID); |
---|
| 363 | |
---|
[295] | 364 | // HBA registers TODO: ne faut_il pas un V2P pour PXCLB/PXCLBU ? (AG) |
---|
| 365 | _hba_set_register( channel, HBA_PXCLB , (unsigned int)&hba_cmd_list[channel] ); |
---|
| 366 | _hba_set_register( channel, HBA_PXCLBU, 0 ); |
---|
| 367 | _hba_set_register( channel, HBA_PXIE , 0x40000001 ); |
---|
| 368 | _hba_set_register( channel, HBA_PXIS , 0 ); |
---|
| 369 | _hba_set_register( channel, HBA_PXCI , 0 ); |
---|
| 370 | _hba_set_register( channel, HBA_PXCMD , 1 ); |
---|
[258] | 371 | |
---|
| 372 | // command list pointer |
---|
[289] | 373 | hba_cmd_slot[channel] = 0; |
---|
[258] | 374 | |
---|
| 375 | // Command list physical addresse |
---|
[289] | 376 | vbase = (unsigned int)(&hba_cmd_list[channel]); |
---|
[258] | 377 | fail = _v2p_translate( (page_table_t*)pt, |
---|
| 378 | vbase>>12, |
---|
| 379 | &ppn, |
---|
| 380 | &flags ); |
---|
| 381 | if ( fail ) |
---|
| 382 | { |
---|
[295] | 383 | _printf("[GIET ERROR] in _hba_init() : command list unmapped\n"); |
---|
[289] | 384 | return 1; |
---|
[258] | 385 | } |
---|
[289] | 386 | hba_cmd_list_paddr[channel] = ((paddr_t)ppn) | (vbase & 0xFFF); |
---|
[258] | 387 | |
---|
| 388 | // Command tables physical addresses |
---|
| 389 | for( c=0 ; c<32 ; c++ ) |
---|
| 390 | { |
---|
[289] | 391 | vbase = (unsigned int)(&hba_cmd_table[channel][c]); |
---|
[258] | 392 | fail = _v2p_translate( (page_table_t*)pt, |
---|
| 393 | vbase>>12, |
---|
| 394 | &ppn, |
---|
| 395 | &flags ); |
---|
| 396 | if ( fail ) |
---|
| 397 | { |
---|
[295] | 398 | _printf("[GIET ERROR] in _hba_init() : command table unmapped\n"); |
---|
[289] | 399 | return 1; |
---|
[258] | 400 | } |
---|
[289] | 401 | hba_cmd_table_paddr[channel][c] = ((paddr_t)ppn) | (vbase & 0xFFF); |
---|
[258] | 402 | } |
---|
[289] | 403 | |
---|
| 404 | return 0; |
---|
[258] | 405 | } |
---|
| 406 | |
---|
[289] | 407 | /////////////////////////////////////////////////////////////////////////////// |
---|
| 408 | // _hba_get_block_size() |
---|
| 409 | // This function returns the block_size of HBA controller |
---|
| 410 | /////////////////////////////////////////////////////////////////////////////// |
---|
| 411 | unsigned int _hba_get_block_size() |
---|
| 412 | { |
---|
| 413 | // TODO The block size must be obtained from the hardware... |
---|
| 414 | return 512; |
---|
| 415 | } |
---|
[258] | 416 | |
---|
[295] | 417 | ///////////////////////////////////////////////////////////////////////////////////// |
---|
| 418 | // This function returns the content of the HBA_PXIS register for a given channel, |
---|
| 419 | // and reset this register to acknoledge IRQ. |
---|
| 420 | // return 0 if success, > 0 if error |
---|
| 421 | ///////////////////////////////////////////////////////////////////////////////////// |
---|
| 422 | unsigned int _hba_get_status( unsigned int channel ) |
---|
| 423 | { |
---|
[258] | 424 | |
---|
[295] | 425 | if( channel >= NB_IOC_CHANNELS ) |
---|
| 426 | { |
---|
| 427 | _printf("\n[GIET ERROR] in _hba_get_status() : illegal channel\n"); |
---|
| 428 | _exit(); |
---|
| 429 | } |
---|
| 430 | |
---|
| 431 | // get HBA_PXIS value |
---|
| 432 | unsigned int status = _hba_get_register( channel, HBA_PXIS ); |
---|
| 433 | |
---|
| 434 | // reset HBA_PXIS |
---|
| 435 | _hba_set_register( channel, HBA_PXIS, 0 ); |
---|
| 436 | |
---|
| 437 | return status; |
---|
| 438 | } |
---|
| 439 | |
---|
[258] | 440 | // Local Variables: |
---|
| 441 | // tab-width: 4 |
---|
| 442 | // c-basic-offset: 4 |
---|
| 443 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 444 | // indent-tabs-mode: nil |
---|
| 445 | // End: |
---|
| 446 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 447 | |
---|