diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2003-06-24 03:30:48 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2003-06-24 03:30:48 +0000 |
commit | a7b3cfff275e492309c064f4dcd1e0896ec49ef9 (patch) | |
tree | e0df7797b6ff3aa253eace02ee56d8ca956ae284 /src | |
parent | 39b8077ad553878d22d6f865e810b912dbedac5c (diff) |
added SMBUS stuff.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@895 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/config/Options.lb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/config/Options.lb b/src/config/Options.lb index 7cff4530a7..a0393b2f06 100644 --- a/src/config/Options.lb +++ b/src/config/Options.lb @@ -569,3 +569,23 @@ define CONFIG_UDELAY_TSC comment "" end +############################################### +# SMBUS options +############################################### +define SMBUS_MEM_DEVICE_START + default (0xa<<3) + export used + comment "The starting address on the SMBUS for the memory EEPROM" +end + +define SMBUS_MEM_DEVICE_END + default (SMBUS_MEM_DEVICE_START + 1) + export used + comment "The ending address on the SMBUS for the memory EEPROM" +end + +define SMBUS_MEM_DEVICE_INC + default 1 + export used + comment "The amount to increment device addresses on SMBUS probes" +end |