From 909472367fe4bbc91c43c0d8c4d9acb10d95e737 Mon Sep 17 00:00:00 2001 From: Greg Watson Date: Thu, 22 Jan 2004 01:03:41 +0000 Subject: [PATCH] memory mapped I/O git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1353 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/config/Options.lb | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/src/config/Options.lb b/src/config/Options.lb index ef59a779e8..2c12cf62c8 100644 --- a/src/config/Options.lb +++ b/src/config/Options.lb @@ -547,31 +547,43 @@ define PCIC0_CFGADDR default none format "0x%x" export used - comment "PCI Configuration Address Register" + comment "Address of PCI Configuration Address Register" end define PCIC0_CFGDATA default none format "0x%x" export used - comment "PCI Configuration Data Register" + comment "Address of PCI Configuration Data Register" +end +define ISA_IO_BASE + default none + format "0x%x" + export used + comment "Base address of PCI/ISA I/O address range" +end +define ISA_MEM_BASE + default none + format "0x%x" + export used + comment "Base address of PCI/ISA memory address range" end define PNP_CFGADDR default none format "0x%x" export used - comment "PNP Configuration Address Register" + comment "PNP Configuration Address Register offset" end define PNP_CFGDATA default none format "0x%x" export used - comment "PNP Configuration Data Register" + comment "PNP Configuration Data Register offset" end -define UART0_IO_BASE +define _IO_BASE default none format "0x%x" export used - comment "UART 0 base address" + comment "Base address of memory mapped I/O operations" end ###############################################