blob: 3380b3c3e67ae77013791c9df75ec6cc7e211d17 (
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
49
50
51
52
53
54
55
56
57
58
|
//
// Copyright 2017 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include "eeprom.h"
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
void usage(char *argv[])
{
printf("-- Usage -- \n");
printf("%s flags\n", argv[0]);
printf("Example:\n");
printf("$ %s 0x1\n", argv[0]);
}
int main(int argc, char *argv[])
{
struct usrp_sulfur_eeprom *ep;
u32 flags;
if (argc != 2) {
usage(argv);
return EXIT_FAILURE;
}
errno = 0;
flags = strtol(argv[1], NULL, 16);
if (errno) {
printf("Failed to convert flags, make sure you enter as hex\n");
return EXIT_FAILURE;
}
ep = usrp_sulfur_eeprom_from_file(NVMEM_PATH_MB);
if (!ep) {
printf("eeprom not found\n");
return EXIT_FAILURE;
}
usrp_sulfur_eeprom_print(ep);
/* Set flag */
ep->mcu_flags[0] = htonl(flags);
usrp_sulfur_eeprom_recrc(ep);
/* Write out to eeprom */
usrp_sulfur_eeprom_to_i2c(ep, "/dev/i2c-2");
free(ep);
printf("-- Reading back \n");
ep = usrp_sulfur_eeprom_from_file(NVMEM_PATH_MB);
usrp_sulfur_eeprom_print(ep);
free(ep);
}
|