2014-08-28 16:56:48 +08:00
|
|
|
#include <generated/csr.h>
|
|
|
|
|
|
|
|
#include "rtio.h"
|
|
|
|
|
|
|
|
void rtio_init(void)
|
|
|
|
{
|
2014-09-05 12:03:22 +08:00
|
|
|
rtio_reset_write(1);
|
2014-08-28 16:56:48 +08:00
|
|
|
}
|
|
|
|
|
2014-09-14 23:30:33 +08:00
|
|
|
void rtio_oe(int channel, int oe)
|
|
|
|
{
|
|
|
|
rtio_chan_sel_write(channel);
|
|
|
|
rtio_oe_write(oe);
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:56:48 +08:00
|
|
|
void rtio_set(long long int timestamp, int channel, int value)
|
|
|
|
{
|
2014-09-05 12:03:22 +08:00
|
|
|
rtio_reset_write(0);
|
|
|
|
rtio_chan_sel_write(channel);
|
|
|
|
rtio_o_timestamp_write(timestamp);
|
|
|
|
rtio_o_value_write(value);
|
|
|
|
while(!rtio_o_writable_read());
|
|
|
|
rtio_o_we_write(1);
|
2014-08-28 16:56:48 +08:00
|
|
|
}
|
|
|
|
|
2014-09-11 23:14:45 +08:00
|
|
|
void rtio_replace(long long int timestamp, int channel, int value)
|
|
|
|
{
|
|
|
|
rtio_chan_sel_write(channel);
|
|
|
|
rtio_o_timestamp_write(timestamp);
|
|
|
|
rtio_o_value_write(value);
|
|
|
|
rtio_o_replace_write(1);
|
|
|
|
}
|
|
|
|
|
2014-08-28 16:56:48 +08:00
|
|
|
void rtio_sync(int channel)
|
|
|
|
{
|
2014-09-05 12:03:22 +08:00
|
|
|
rtio_chan_sel_write(channel);
|
|
|
|
while(rtio_o_level_read() != 0);
|
2014-08-28 16:56:48 +08:00
|
|
|
}
|
2014-09-14 23:30:33 +08:00
|
|
|
|
|
|
|
long long int rtio_get(int channel)
|
|
|
|
{
|
|
|
|
long long int r;
|
|
|
|
|
|
|
|
rtio_chan_sel_write(channel);
|
|
|
|
while(rtio_i_readable_read() || (rtio_o_level_read() != 0)) {
|
|
|
|
if(rtio_i_readable_read()) {
|
|
|
|
r = rtio_i_value_read();
|
|
|
|
rtio_i_re_write(1);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|