1 
2 /*
3  * Copyright (c) 2010-2011 Adrian Chadd, Xenion Pty Ltd.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28 
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <string.h>
33 #include <sys/types.h>
34 #include <err.h>
35 
36 #include "eeprom.h"
37 #include "9287.h"
38 
39 void
40 usage(char *argv[])
41 {
42 	printf("Usage: %s <eeprom dump file>\n", argv[0]);
43 	printf("\n");
44 	printf("  The eeprom dump file is a text hexdump of an EEPROM.\n");
45 	printf("  The lines must be formatted as follows:\n");
46 	printf("  0xAAAA: 0xDD 0xDD 0xDD 0xDD 0xDD 0xDD 0xDD 0xDD\n");
47 	printf("  where each line must have exactly eight data bytes.\n");
48 	exit(127);
49 }
50 
51 int
52 main(int argc, char *argv[])
53 {
54 	uint16_t *eep = NULL;
55 	eep = calloc(4096, sizeof(int16_t));
56 
57 	if (argc < 2)
58 		usage(argv);
59 
60 	load_eeprom_dump(argv[1], eep);
61 
62 	eeprom_9287_base_print(eep);
63 	eeprom_9287_custdata_print(eep);
64 	printf("\n2.4ghz:\n");
65 	eeprom_9287_modal_print(eep);
66 	printf("\n");
67 
68 	eeprom_9287_calfreqpiers_print(eep);
69 	printf("\n");
70 
71 	eeprom_9287_print_targets(eep);
72 	printf("\n");
73 
74 	eeprom_9287_ctl_print(eep);
75 	printf("\n");
76 
77 	eeprom_9287_print_edges(eep);
78 	printf("\n");
79 
80 	eeprom_9287_print_other(eep);
81 	printf("\n");
82 
83 	free(eep);
84 	exit(0);
85 }
86