From 5cfd583c5c2d803dd240768ec343b5a95f42c785 Mon Sep 17 00:00:00 2001 From: Christoph Grenz Date: Sun, 18 Sep 2011 22:54:51 +0200 Subject: console: support integrated 7-segment displays for POST codes Add a configuration option POST_PORT which defaults to 0x80 and can be redefined by boards which have integrated POST displays on another I/O port. Change post.c to output POST codes to this port instead of 0x80 hardcoded. Change-Id: I8f8e820f8c75641b35e7249bf622b63a3604b9f3 Signed-off-by: Christoph Grenz Reviewed-on: http://review.coreboot.org/221 Tested-by: build bot (Jenkins) Reviewed-by: Rudolf Marek Reviewed-by: Patrick Georgi --- src/console/post.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/console/post.c') diff --git a/src/console/post.c b/src/console/post.c index 3872c2d4fe..7fc9d6fc6e 100644 --- a/src/console/post.c +++ b/src/console/post.c @@ -32,6 +32,6 @@ void post_code(uint8_t value) print_emerg_hex8(value); print_emerg("\n"); #endif - outb(value, 0x80); + outb(value, CONFIG_POST_PORT); #endif } -- cgit v1.2.3