[258] | 1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | // File : tty_driver.h |
---|
| 3 | // Date : 01/11/2013 |
---|
| 4 | // Author : alain greiner |
---|
| 5 | // Copyright (c) UPMC-LIP6 |
---|
| 6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 7 | |
---|
| 8 | #ifndef _GIET_TTY_DRIVERS_H_ |
---|
| 9 | #define _GIET_TTY_DRIVERS_H_ |
---|
| 10 | |
---|
[350] | 11 | #include "utils.h" |
---|
| 12 | |
---|
[258] | 13 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 14 | // TTY (vci_multi_tty) registers offsets |
---|
| 15 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 16 | |
---|
| 17 | enum TTY_registers |
---|
| 18 | { |
---|
| 19 | TTY_WRITE = 0, |
---|
| 20 | TTY_STATUS = 1, |
---|
| 21 | TTY_READ = 2, |
---|
| 22 | TTY_CONFIG = 3, |
---|
| 23 | /**/ |
---|
| 24 | TTY_SPAN = 4, |
---|
| 25 | }; |
---|
| 26 | |
---|
| 27 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[295] | 28 | // TTY variables |
---|
[258] | 29 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 30 | |
---|
[350] | 31 | extern volatile unsigned int _tty_rx_buf[]; |
---|
[258] | 32 | |
---|
[350] | 33 | extern volatile unsigned int _tty_rx_full[]; |
---|
[258] | 34 | |
---|
[350] | 35 | extern giet_lock_t _tty_lock[]; |
---|
| 36 | |
---|
[295] | 37 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 38 | // TTY access functions |
---|
| 39 | ////////////////////////////////////////////////////////////////////////////////// |
---|
[258] | 40 | |
---|
| 41 | extern unsigned int _tty_write( const char* buffer, |
---|
[295] | 42 | unsigned int length, |
---|
| 43 | unsigned int channel ); |
---|
[258] | 44 | |
---|
| 45 | extern unsigned int _tty_read( char* buffer, |
---|
[295] | 46 | unsigned int length, |
---|
| 47 | unsigned int channel ); |
---|
[258] | 48 | |
---|
[295] | 49 | extern void _tty_get_lock( unsigned int channel, |
---|
| 50 | unsigned int* save_sr_ptr ); |
---|
[258] | 51 | |
---|
[295] | 52 | extern void _tty_release_lock( unsigned int channel, |
---|
| 53 | unsigned int* save_sr_ptr ); |
---|
[258] | 54 | |
---|
[295] | 55 | extern void _tty_rx_isr( unsigned int irq_type, |
---|
| 56 | unsigned int irq_id, |
---|
| 57 | unsigned int channel ); |
---|
[258] | 58 | |
---|
[295] | 59 | extern void _tty_tx_isr( unsigned int irq_type, |
---|
| 60 | unsigned int irq_id, |
---|
| 61 | unsigned int channel ); |
---|
[258] | 62 | |
---|
[295] | 63 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 64 | // low-level access functions |
---|
| 65 | /////////////////////////////////////////////////////////////////////////////////// |
---|
[258] | 66 | |
---|
[295] | 67 | extern unsigned int _tty_get_register( unsigned int channel, |
---|
| 68 | unsigned int index ); |
---|
[258] | 69 | |
---|
[295] | 70 | extern void _tty_set_register( unsigned int channel, |
---|
| 71 | unsigned int index, |
---|
| 72 | unsigned int value ); |
---|
[258] | 73 | |
---|
| 74 | #endif |
---|
| 75 | |
---|
| 76 | // Local Variables: |
---|
| 77 | // tab-width: 4 |
---|
| 78 | // c-basic-offset: 4 |
---|
| 79 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 80 | // indent-tabs-mode: nil |
---|
| 81 | // End: |
---|
| 82 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 83 | |
---|