summaryrefslogtreecommitdiff
path: root/com32/modules/vpdtest.c
blob: 1d50c68001b7ce8d966bb10d16359b07b6e79b31 (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
59
60
61
62
63
64
65
66
67
68
69
/* ----------------------------------------------------------------------- *
 *
 *   Copyright 2009 Erwan Velu - All Rights Reserved
 *
 *   Permission is hereby granted, free of charge, to any person
 *   obtaining a copy of this software and associated documentation
 *   files (the "Software"), to deal in the Software without
 *   restriction, including without limitation the rights to use,
 *   copy, modify, merge, publish, distribute, sublicense, and/or
 *   sell copies of the Software, and to permit persons to whom
 *   the Software is furnished to do so, subject to the following
 *   conditions:
 *
 *   The above copyright notice and this permission notice shall
 *   be included in all copies or substantial portions of the Software.
 *
 *   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 *   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 *   HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 *   WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 *   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 *   OTHER DEALINGS IN THE SOFTWARE.
 *
 * -----------------------------------------------------------------------
*/

/*
 * vpdtest.c
 *
 * VPD demo program using libcom32
 */

#include <string.h>
#include <stdio.h>
#include <console.h>
#include "vpd/vpd.h"

int main(void)
{
    s_vpd vpd;
    openconsole(&dev_stdcon_r, &dev_stdcon_w);

    if (vpd_decode(&vpd) == -ENOVPDTABLE) {
	printf("No VPD Structure found\n");
	return -1;
    } else {
	printf("VPD present at address : 0x%s\n", vpd.base_address);
    }
    if (strlen(vpd.bios_build_id) > 0)
	printf("Bios Build ID                 : %s\n", vpd.bios_build_id);
    if (strlen(vpd.bios_release_date) > 0)
	printf("Bios Release Date             : %s\n", vpd.bios_release_date);
    if (strlen(vpd.bios_version) > 0)
	printf("Bios Version                  : %s\n", vpd.bios_version);
    if (strlen(vpd.default_flash_filename) > 0)
	printf("Default Flash Filename        : %s\n",
	       vpd.default_flash_filename);
    if (strlen(vpd.box_serial_number) > 0)
	printf("Box Serial Number             : %s\n", vpd.box_serial_number);
    if (strlen(vpd.motherboard_serial_number) > 0)
	printf("Motherboard Serial Number     : %s\n",
	       vpd.motherboard_serial_number);
    if (strlen(vpd.machine_type_model) > 0)
	printf("Machine Type/Model            : %s\n", vpd.machine_type_model);

    return 0;
}