diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-11-07 05:03:07 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-11-07 06:30:47 +0000 |
commit | 67190214aa92c7bd6bfaa4dedfaf074acb3e5c69 (patch) | |
tree | 3240426169840f5af99a1345559da64eef9a93e7 /docs/resources/misc/donotusethis_macbook_acpi.diff | |
parent | 95259e28ef047923258434898113d70c8e544eab (diff) | |
download | librebootfr-67190214aa92c7bd6bfaa4dedfaf074acb3e5c69.tar.gz librebootfr-67190214aa92c7bd6bfaa4dedfaf074acb3e5c69.zip |
reorganize docs to build building html sources easier
Diffstat (limited to 'docs/resources/misc/donotusethis_macbook_acpi.diff')
-rw-r--r-- | docs/resources/misc/donotusethis_macbook_acpi.diff | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/resources/misc/donotusethis_macbook_acpi.diff b/docs/resources/misc/donotusethis_macbook_acpi.diff new file mode 100644 index 00000000..61a55c64 --- /dev/null +++ b/docs/resources/misc/donotusethis_macbook_acpi.diff @@ -0,0 +1,28 @@ +diff --git a/src/mainboard/apple/macbook21/mainboard.c b/src/mainboard/apple/macbook21/mainboard.c +index 9a025dd..a2adb76 100644 +--- a/src/mainboard/apple/macbook21/mainboard.c ++++ b/src/mainboard/apple/macbook21/mainboard.c +@@ -40,6 +40,12 @@ + extern const u32 *cim_verb_data; + extern u32 cim_verb_data_size; + ++static acpi_cstate_t cst_entries[] = { ++ { 1, 1, 1000, { 0x7f, 1, 2, { 0 }, 1, 0 } }, ++ { 2, 1, 500, { 0x01, 8, 0, { 0 }, DEFAULT_PMBASE + LV2, 0 } }, ++ { 2, 17, 250, { 0x01, 8, 0, { 0 }, DEFAULT_PMBASE + LV3, 0 } }, ++}; ++ + #if CONFIG_PCI_OPTION_ROM_RUN_YABEL || CONFIG_PCI_OPTION_ROM_RUN_REALMODE + static int int15_handler(void) + { +@@ -73,7 +79,8 @@ static int int15_handler(void) + + int get_cst_entries(acpi_cstate_t **entries) + { +- return 0; ++ *entries = cst_entries; ++ return ARRAY_SIZE(cst_entries); + } + + static void mainboard_init(device_t dev) + |