1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/time.h>
#include "pci.h"
#include "pcilib.h"
#include "error.h"
#include "tools.h"
#include "nwl.h"
#include "nwl_defines.h"
int dma_nwl_start_loopback(nwl_dma_t *ctx, pcilib_dma_direction_t direction, size_t packet_size) {
uint32_t val;
// Re-initializing always
val = packet_size;
nwl_write_register(val, ctx, ctx->base_addr, PKT_SIZE_ADDRESS);
switch (direction) {
case PCILIB_DMA_BIDIRECTIONAL:
val = LOOPBACK;
break;
case PCILIB_DMA_TO_DEVICE:
return -1;
case PCILIB_DMA_FROM_DEVICE:
val = PKTGENR;
break;
}
nwl_write_register(val, ctx, ctx->base_addr, TX_CONFIG_ADDRESS);
nwl_write_register(val, ctx, ctx->base_addr, RX_CONFIG_ADDRESS);
ctx->loopback_started = 1;
return 0;
}
int dma_nwl_stop_loopback(nwl_dma_t *ctx) {
uint32_t val = 0;
if (ctx->loopback_started) {
nwl_write_register(val, ctx, ctx->base_addr, TX_CONFIG_ADDRESS);
nwl_write_register(val, ctx, ctx->base_addr, RX_CONFIG_ADDRESS);
ctx->loopback_started = 0;
}
return 0;
}
|