Chameleon

Chameleon Commit Details

Date:2015-04-16 16:17:16 (9 years 8 days ago)
Author:ErmaC
Commit:2653
Parents: 2652
Message:Typo and correction for gma.c
Changes:
M/trunk/doc/BootHelp.txt
M/trunk/i386/libsaio/gma.c

File differences

trunk/i386/libsaio/gma.c
6464
6565
6666
67
67
6868
6969
7070
......
134134
135135
136136
137
137
138138
139139
140140
......
838838
839839
840840
841
841
842842
843843
844844
845845
846
846
847847
848848
849849
#define AAPL_LEN_HSW ( sizeof(default_aapl_haswell) / sizeof(uint8_t) )
#if DEBUG_BDW
static uint8_t default_aapl_broadwell[]={ 0x00,0x00,0xe0,0x16 }; // broadwell_ig_vals[3]
static uint8_t default_aapl_broadwell[]={ 0x00,0x00,0x1e,0x16 }; // broadwell_ig_vals[3]
#define AAPL_LEN_BDW ( sizeof(default_aapl_broadwell) / sizeof(uint8_t) )
#endif
{ 0x00,0x00,0x06,0x16 },// 0 - 16060000 Broadwell GT1 (Intel HD Graphics)
{ 0x00,0x00,0x0e,0x16 },// 1 - 160e0000 Broadwell GT1 (Intel HD Graphics)
{ 0x00,0x00,0x16,0x16 },// 2 - 16160000 Broadwell GT2 (Intel HD Graphics 5500)
{ 0x00,0x00,0xe0,0x16 },// 3 - 161e0000 Broadwell GT2 (MacBook) (Intel HD Graphics 5300)
{ 0x00,0x00,0x1e,0x16 },// 3 - 161e0000 Broadwell GT2 (MacBook) (Intel HD Graphics 5300)
{ 0x00,0x00,0x26,0x16 },// 4 - 16260000 Broadwell GT3 (MacBook Air) (Intel HD Graphics 6000)
{ 0x00,0x00,0x2b,0x16 },// 5 - 162b0000 Broadwell GT3 (MacBook Pro) (Intel Iris Graphics 6100)
{ 0x00,0x00,0x22,0x16 },// 6 - 16220000 Broadwell GT3 (Intel Iris Pro Graphics 6200)
}
else
{
verbose("AAPL,ig-platform-id was set in org.chameleon.Boot.plist with bad value please choose a number between 0 and 19.\n");
verbose("AAPL,ig-platform-id was set in org.chameleon.Boot.plist with bad value please choose a number between 0 and 18.\n");
}
}
else
{
uint32_t ig_platform_id = 0x0f00260d; // set the default platform ig
uint32_t ig_platform_id = 0x161e0000; // set the default platform ig
devprop_add_value(device, "AAPL,ig-platform-id", (uint8_t *)&ig_platform_id, 4);
}
trunk/doc/BootHelp.txt
9999
100100
101101
102
103
104
102
103
104
105105
106106
107107
VBIOS=Yes|No Inject VBIOS to device-properties.
display_0=<value> Inject alternate value of display-cfg into NVDA,Display-A@0 (HEX).
display_1=<value> Inject alternate value of display-cfg into NVDA,Display-B@1 (HEX).
IntelCapriFB=<value> For Intel HD 4xxx, range 0-11.
IntelAzulFB=<value> For Intel HD 5xxx/IRIS, range 0-15.
IntelBdwFB=<value> For Intel HD 6xxx/IRIS, range 0-19.
IntelCapriFB=<value> For Intel Ivy Bridge, range 0-11.
IntelAzulFB=<value> For Intel Haswell, range 0-16.
IntelBdwFB=<value> For Intel Broadwell, range 0-18.
InjectIntel-ig=<value> Inject alternate value into AAPL,ig-platform-id (HEX).
EnableBacklight=Yes Enable Back light option for NVIDIA and ATI

Archive Download the corresponding diff file

Revision: 2653