diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2013-05-26 23:56:43 +0200 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2013-06-07 02:49:06 +0200 |
commit | 7ed739445ba7ba6ffcf38d647426a44f905ac087 (patch) | |
tree | 88da8582c40967e1ebbc3fd3f97e53d97c544ecb | |
parent | 8130b1ec1bc53a1dcd20910e8d73499ad7ada466 (diff) |
i945: Add Display defines for int15h handler.
Change-Id: I7bc99761c7047e64b4e29c307ad779cec49c17c8
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
Reviewed-on: http://review.coreboot.org/3306
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
-rw-r--r-- | src/northbridge/intel/i945/i945.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/northbridge/intel/i945/i945.h b/src/northbridge/intel/i945/i945.h index 8d53fc6c38..862af2a256 100644 --- a/src/northbridge/intel/i945/i945.h +++ b/src/northbridge/intel/i945/i945.h @@ -32,6 +32,17 @@ /* Everything below this line is ignored in the DSDT */ #ifndef __ACPI__ +/* Display defines for the interrupt 15h handler */ +#define INT15_5F35_CL_DISPLAY_DEFAULT 0 +#define INT15_5F35_CL_DISPLAY_CRT (1 << 0) +#define INT15_5F35_CL_DISPLAY_TV (1 << 1) +#define INT15_5F35_CL_DISPLAY_EFP (1 << 2) +#define INT15_5F35_CL_DISPLAY_LCD (1 << 3) +#define INT15_5F35_CL_DISPLAY_CRT2 (1 << 4) +#define INT15_5F35_CL_DISPLAY_TV2 (1 << 5) +#define INT15_5F35_CL_DISPLAY_EFP2 (1 << 6) +#define INT15_5F35_CL_DISPLAY_LCD2 (1 << 7) + /* Device 0:0.0 PCI configuration space (Host Bridge) */ #define EPBAR 0x40 |