X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/8a677ebb8955dbe1b09e755dbb8343a3b8fdddb1..8e7d9af004f36ed0d2dc94d1e8254e2ff5a32503:/ich2/smi.c diff --git a/ich2/smi.c b/ich2/smi.c index 0a0ddf4..c9a1f0e 100644 --- a/ich2/smi.c +++ b/ich2/smi.c @@ -1,3 +1,14 @@ +/* smi.c + * System management interrupt dispatch routines for ICH2 southbridge + * NetWatch system management mode administration console + * + * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. + * This program is free software; you can redistribute and/or modify it under + * the terms found in the file LICENSE in the root of this source tree. + * + */ + + #include #include #include @@ -42,7 +53,10 @@ void smi_poll() if (sts & ICH2_SMI_STS_BIOS_STS) { - output("Unhandled: BIOS_STS"); + if (_handlers[SMI_EVENT_GBL_RLS] == SMI_HANDLER_NONE) + output("Unhandled: BIOS_STS"); + else if (_handlers[SMI_EVENT_GBL_RLS] != SMI_HANDLER_IGNORE) + _handlers[SMI_EVENT_GBL_RLS](SMI_EVENT_GBL_RLS); outl(_get_PMBASE() + ICH2_PMBASE_SMI_STS, ICH2_SMI_STS_BIOS_STS); } @@ -205,6 +219,11 @@ int smi_enable_event(smi_event_t ev) inl(_get_PMBASE() + ICH2_PMBASE_DEVTRAP_EN) | ICH2_DEVTRAP_EN_KBC_TRP_EN); return 0; + case SMI_EVENT_GBL_RLS: + outl(_get_PMBASE() + ICH2_PMBASE_SMI_EN, + inl(_get_PMBASE() + ICH2_PMBASE_SMI_EN) | + ICH2_SMI_EN_BIOS_EN); + return 0; default: return -1; } @@ -224,6 +243,11 @@ int smi_disable_event(smi_event_t ev) inl(_get_PMBASE() + ICH2_PMBASE_DEVTRAP_EN) & ~ICH2_DEVTRAP_EN_KBC_TRP_EN); return 0; + case SMI_EVENT_GBL_RLS: + outl(_get_PMBASE() + ICH2_PMBASE_SMI_EN, + inl(_get_PMBASE() + ICH2_PMBASE_SMI_EN) & + ~ICH2_SMI_EN_BIOS_EN); + return 0; default: return -1; }