forked from Sepanta/pcie-driver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.8 KiB
63 lines
1.8 KiB
#include "api.h"
|
|
#include <sys/mman.h>
|
|
#include <sys/types.h>
|
|
#include <sys/ioctl.h>
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <time.h>
|
|
|
|
#include <sys/poll.h>
|
|
|
|
#include <pthread.h>
|
|
/*************************************************************************************************/
|
|
UltraSoundDevice::UltraSoundDevice()
|
|
{
|
|
files[0] = open("/proc/usd_reg_0", O_RDWR, 0);
|
|
bars[0]= mmap(NULL, 64 * 1024, PROT_READ | PROT_WRITE, MAP_SHARED, files[0], 0);
|
|
|
|
files[1] = open("/proc/usd_reg_1", O_RDWR, 0);
|
|
bars[1]= mmap(NULL, 128 * 1024 * 1024, PROT_READ | PROT_WRITE, MAP_SHARED, files[1], 0);
|
|
}
|
|
|
|
/*************************************************************************************************/
|
|
UltraSoundDevice::~UltraSoundDevice()
|
|
{
|
|
munmap(bars[0], 64 * 1024);
|
|
munmap(bars[1], 128 * 1024 * 1024);
|
|
|
|
for(int i = 0; i < BAR_NUM; i++)
|
|
{
|
|
close(files[i]);
|
|
}
|
|
}
|
|
|
|
/*************************************************************************************************/
|
|
uint8_t UltraSoundDevice::readByte(uint32_t address, uint32_t bar)
|
|
{
|
|
uint8_t* ptr = (uint8_t*)bars[bar];
|
|
|
|
return ptr[address];
|
|
}
|
|
|
|
/*************************************************************************************************/
|
|
uint32_t UltraSoundDevice::readWord(uint32_t address, uint32_t bar)
|
|
{
|
|
uint32_t* ptr = (uint32_t*)bars[bar];
|
|
|
|
return ptr[address / 4];
|
|
}
|
|
|
|
/*************************************************************************************************/
|
|
void UltraSoundDevice::writeByte(uint32_t address, uint32_t bar, uint8_t data)
|
|
{
|
|
uint8_t* ptr = (uint8_t*)bars[bar];
|
|
ptr[address] = data;
|
|
}
|
|
|
|
/*************************************************************************************************/
|
|
void UltraSoundDevice::writeWord(uint32_t address, uint32_t bar, uint32_t data)
|
|
{
|
|
uint32_t* ptr = (uint32_t*)bars[bar];
|
|
ptr[address / 4] = data;
|
|
}
|
|
|