[258] | 1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | // File : ioc_driver.h |
---|
| 3 | // Date : 01/11/2013 |
---|
| 4 | // Author : alain greiner |
---|
| 5 | // Copyright (c) UPMC-LIP6 |
---|
| 6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 7 | |
---|
[289] | 8 | #ifndef _GIET_IOC_DRIVER_H_ |
---|
| 9 | #define _GIET_IOC_DRIVER_H_ |
---|
[258] | 10 | |
---|
| 11 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 12 | // IOC (vci_block device) registers offsets |
---|
| 13 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 14 | |
---|
| 15 | enum IOC_driver_modes |
---|
| 16 | { |
---|
[295] | 17 | IOC_BOOT_MODE = 0, // Polling IOC_STATUS / no access right checking |
---|
| 18 | IOC_KERNEL_MODE = 1, // Descheduling + IRQ / no access right checking |
---|
| 19 | IOC_USER_MODE = 2, // Descheduling + IRQ / access right checking |
---|
[258] | 20 | }; |
---|
| 21 | |
---|
| 22 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[295] | 23 | // IOC global variables (generic disk controller) |
---|
[258] | 24 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 25 | |
---|
| 26 | extern volatile unsigned int _ioc_iommu_ix1; |
---|
| 27 | extern volatile unsigned int _ioc_iommu_npages; |
---|
| 28 | |
---|
[295] | 29 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 30 | // IOC access functions (generic disk controller) |
---|
| 31 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 32 | |
---|
[289] | 33 | extern unsigned int _ioc_init( unsigned int channel ); |
---|
[258] | 34 | |
---|
[295] | 35 | extern unsigned int _ioc_write( unsigned int channel, |
---|
| 36 | unsigned int mode, |
---|
[258] | 37 | unsigned int lba, |
---|
| 38 | const void* buffer, |
---|
| 39 | unsigned int count ); |
---|
| 40 | |
---|
[295] | 41 | extern unsigned int _ioc_read( unsigned int channel, |
---|
| 42 | unsigned int mode, |
---|
[258] | 43 | unsigned int lba, |
---|
| 44 | void* buffer, |
---|
| 45 | unsigned int count ); |
---|
| 46 | |
---|
[295] | 47 | extern unsigned int _ioc_get_status( unsigned int channel ); |
---|
[258] | 48 | |
---|
| 49 | extern unsigned int _ioc_get_block_size(); |
---|
| 50 | |
---|
| 51 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 52 | |
---|
| 53 | |
---|
| 54 | #endif |
---|
| 55 | |
---|
| 56 | // Local Variables: |
---|
| 57 | // tab-width: 4 |
---|
| 58 | // c-basic-offset: 4 |
---|
| 59 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 60 | // indent-tabs-mode: nil |
---|
| 61 | // End: |
---|
| 62 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 63 | |
---|