summaryrefslogtreecommitdiffstats
path: root/protocols/property.c
blob: 978f22eb06e16e560020887ed9ee5003d2f2c3c2 (plain)
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
#include <sys/time.h>
#include <arpa/inet.h>
#include <assert.h>

#include "pci.h"
#include "tools.h"
#include "model.h"
#include "error.h"


int pcilib_property_registers_read(pcilib_t *ctx, pcilib_register_bank_context_t *bank_ctx, pcilib_register_addr_t addr, pcilib_register_value_t *regval) {
    int err;

    const pcilib_register_bank_description_t *b = bank_ctx->bank;
    int access = b->access / 8;

    pcilib_view_t view = addr / access;
    pcilib_value_t val = {0};

    if ((view == PCILIB_VIEW_INVALID)||(view >= ctx->num_views)||(addr % access))
        return PCILIB_ERROR_INVALID_ARGUMENT;

    err = pcilib_get_property(ctx, ctx->views[view]->name, &val);
    if (err) return err;

    *regval = pcilib_get_value_as_register_value(ctx, &val, &err);

    return err;
}


int pcilib_property_registers_write(pcilib_t *ctx, pcilib_register_bank_context_t *bank_ctx, pcilib_register_addr_t addr, pcilib_register_value_t regval) {
    int err;

    const pcilib_register_bank_description_t *b = bank_ctx->bank;
    int access = b->access / 8;

    pcilib_view_t view = addr / access;
    pcilib_value_t val = {0};

    if ((view == PCILIB_VIEW_INVALID)||(view >= ctx->num_views)||(addr % access))
        return PCILIB_ERROR_INVALID_ARGUMENT;

    err = pcilib_set_value_from_register_value(ctx, &val, regval);
    if (err) return err;

    return pcilib_set_property(ctx, ctx->views[view]->name, &val);
}