From bfe07899e372ac41c0a6dd4efac25458f5d48c9c Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Sun, 21 Feb 2016 14:27:21 +0100 Subject: util: Add a very simple utility to test POST cards. It was tested with a mini-PCI POST card on a Toshiba Satellite 1410 laptop with the stock BIOS. Change-Id: Icdc0860e2c72b17862601c2cc59eaf0f3d8a0e54 Signed-off-by: Denis 'GNUtoo' Carikli Reviewed-on: https://review.coreboot.org/13763 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- util/post/post.c | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 util/post/post.c (limited to 'util/post/post.c') diff --git a/util/post/post.c b/util/post/post.c new file mode 100644 index 0000000000..6d67909f35 --- /dev/null +++ b/util/post/post.c @@ -0,0 +1,91 @@ +/* + * Copyright (C) 2016 Denis 'GNUtoo' Carikli + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#include +#include +#include +#include +#include +#include + +#define POST_DEFAULT_IO_PORT 0x80 + +void usage(char *progname, const char *error, ...) +{ + printf("Usage: %s [PORT]\n", progname); + printf("The VALUE argument is an integer between 0x00 and 0xff\n"); + printf("The PORT argument is an integer between 0x00 and 0xffff\n"); + + if (error) { + va_list args; + + va_start(args, error); + vprintf(error, args); + va_end(args); + }; +} + +void check_int(long val, int min, int max, int err, char *string, char *endptr, + char *progname) +{ + if (val < min || val > max) { + usage(progname, + "\nError: The value has to be between 0x%x and 0x%x\n", + min, max); + exit(EXIT_FAILURE); + } + + if (endptr == string || *endptr != '\0') { + usage(progname, "\nError: An integer is required\n"); + exit(EXIT_FAILURE); + } + + if ((err) && (!val)) { + perror("strtol"); + exit(EXIT_FAILURE); + } +} + +int main(int argc, char *argv[]) +{ + unsigned long val; + unsigned long port = POST_DEFAULT_IO_PORT; + char *endptr; + int err; + + if (argc != 2 && argc != 3) { + usage(argv[0], NULL); + exit(EXIT_FAILURE); + } + + val = strtol(argv[1], &endptr, 0); + err = errno; + check_int(val, 0x00, 0xff, err, argv[1], endptr, argv[0]); + + if (argc > 2) { + port = strtol(argv[2], &endptr, 0); + err = errno; + check_int(port, 0x0000, 0xffff, err, argv[2], endptr, argv[0]); + } + + err = iopl(3); + if (err == -1) { + perror("Not root"); + exit(EXIT_FAILURE); + } + + outb(val, port); + + return 0; +} -- cgit v1.2.3