summaryrefslogtreecommitdiff
path: root/src/mainboard/hp/pavilion_m6_1035dx
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/hp/pavilion_m6_1035dx')
-rw-r--r--src/mainboard/hp/pavilion_m6_1035dx/buildOpts.c11
-rw-r--r--src/mainboard/hp/pavilion_m6_1035dx/mainboard.h2
2 files changed, 12 insertions, 1 deletions
diff --git a/src/mainboard/hp/pavilion_m6_1035dx/buildOpts.c b/src/mainboard/hp/pavilion_m6_1035dx/buildOpts.c
index aa223cc567..cf9ac4fab4 100644
--- a/src/mainboard/hp/pavilion_m6_1035dx/buildOpts.c
+++ b/src/mainboard/hp/pavilion_m6_1035dx/buildOpts.c
@@ -33,6 +33,8 @@
* @e \$Revision: 23714 $ @e \$Date: 2009-12-09 17:28:37 -0600 (Wed, 09 Dec 2009) $
*/
+#include "mainboard.h"
+
#include <vendorcode/amd/agesa/f15tn/AGESA.h>
/* Include the files that instantiate the configuration definitions. */
@@ -371,6 +373,15 @@ GPIO_CONTROL pavilion_m6_1035dx_gpio[] = {
};
#define BLDCFG_FCH_GPIO_CONTROL_LIST (&pavilion_m6_1035dx_gpio[0])
+
+#define GEVENT_PIN(gpe) ((gpe) + 0x40)
+
+SCI_MAP_CONTROL m6_1035dx_sci_map[] = {
+ {GEVENT_PIN( EC_SCI_GEVENT ), EC_SCI_GPE},
+ {GEVENT_PIN( EC_LID_GEVENT ), EC_LID_GPE}, /* EC_SMI - GPE23 */
+};
+#define BLDCFG_FCH_SCI_MAP_LIST (&m6_1035dx_sci_map[0])
+
// The following definitions specify the default values for various parameters in which there are
// no clearly defined defaults to be used in the common file. The values below are based on product
// and BKDG content, please consult the AGESA Memory team for consultation.
diff --git a/src/mainboard/hp/pavilion_m6_1035dx/mainboard.h b/src/mainboard/hp/pavilion_m6_1035dx/mainboard.h
index 1e69cc9134..bbf9c43974 100644
--- a/src/mainboard/hp/pavilion_m6_1035dx/mainboard.h
+++ b/src/mainboard/hp/pavilion_m6_1035dx/mainboard.h
@@ -17,6 +17,6 @@
* we make the distinction between GEVENT pin and SCI.
*/
#define EC_SCI_GPE EC_SCI_GEVENT
-
+#define EC_LID_GPE EC_LID_GEVENT
#endif /* _MAINBOARD_HP_PAVILION_M6_1035DX_MAINBOARD_H */