hp/pavilion_m6_1035dx: Add GEVENT to GPE SCI mapping table
Each GEVENT pins can be mapped to a specific GPE via the SCI map. The default mapping is not appropriate for this laptop, so use the AGESA functionality to map currently known events. Change-Id: Ifa50bf000cfc8e77a6a4d84752f89838f165f7a0 Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-on: http://review.coreboot.org/5548 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
a9a3661710
commit
c4e7db51fc
|
@ -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.
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue