Devices

Clover官方Wiki Config.plist 参数架构讲解04 —— Devices --> Part 1
本帖最后由 neycwby09 于 2014-3-16 16:52 编辑

04.Clover官方Wiki

4.1 Device 模块完整代码 以及 一些杂项
注意!因Clover官方wiki Devices 部分尚未更新,部分定义可能会有变动,以下本帖内容将随时更新修正!
旧版 Devices 参数,详>>论坛媛版置顶贴”Devices块参数”部分
包含所有参数的Devices部分代码:
(本部分包含所有设置参数,请根据不同配置自行调整,不能直接套用!)
  1. <key>Devices</key>
  2.         <dict>
  3.                 <key>LpcTune</key>
  4.                 <true/>
  5.                 <key>Inject</key>
  6.                 <true/>
  7.                 <key>NoDefaultProperties</key>
  8.                 <true/>
  9.                 <key>UseIntelHDMI</key>
  10.                 <true/>
  11.                 <key>Properties</key>
  12. <string>7a00000001000000010000006e0000000200000002010c00d041030a0000000001010600001b7fff040028000000500069006e0043006f006e00660069006700750072006100740069006f006e00730000000800000001080100180000006c00610079006f00750074002d00690064000000080000000c000000</string>
  13.                 <key>AddProperties</key>
  14.                 <array>
  15.                         <dict>
  16.                                 <key>Device</key>
  17.                                 <string>NVidia</string>
  18.                                 <key>Key</key>
  19.                                 <string>AAPL,HasPanel</string>
  20.                                 <key>Value</key>
  21.                                 <data>
  22.                                 AQAAAA==
  23.                                 </data>
  24.                         </dict>
  25.                         <dict>
  26.                                 <key>Device</key>
  27.                                 <string>NVidia</string>
  28.                                 <key>Key</key>
  29.                                 <string>AAPL,Haslid</string>
  30.                                 <key>Value</key>
  31.                                 <data>
  32.                                 AQAAAA==
  33.                                 </data>
  34.                         </dict>
  35.                 </array>
  36.                 <key>FakeID</key>
  37.                 <dict>
  38.                         <key>ATI</key>
  39.                         <string>0x67501002</string>
  40.                         <key>IMEI</key>
  41.                         <string>0x1E3A8086</string>
  42.                         <key>IntelGFX</key>
  43.                         <string>0x0126</string>
  44.                         <key>LAN</key>
  45.                         <string>0x20008086</string>
  46.                         <key>NVidia</key>
  47.                         <string>0x0</string>
  48.                         <key>SATA</key>
  49.                         <string>0x25628086</string>
  50.                         <key>WIFI</key>
  51.                         <string>0x431214e4</string>
  52.                         <key>XHCI</key>
  53.                         <string>0x0</string>
  54.                 </dict>
  55.                 <key>Audio</key>
  56.                 <dict>
  57.                         <key>Inject</key>
  58.                         <string>Detect</string>
  59.                 </dict>
  60.                 <key>USB</key>
  61.                 <dict>
  62.                         <key>AddClockID</key>
  63.                         <true/>
  64.                         <key>FixOwnership</key>
  65.                         <true/>
  66.                         <key>HighCurrent</key>
  67.                         <true/>
  68.                         <key>Inject</key>
  69.                         <true/>
  70.                 </dict>
  71.         </dict>
复制代码
LpcTune 选项
  1. <key>LpcTune</key>
  2. <true/>
复制代码
参数名称:LpcTune
参数设置:<true/> 开启 || <false/> 关闭 建议关闭
参数说明 :功能开启英特尔“SpeedStep”,这项参数对目前主流平台没有意义,适合旧平台。
Enable Intel SpeedStep - not related to Enhanced Intel SpeedStep Technology (EIST) and C-,P-States!
This makes no sense, either it's not Intel SpeedStep and it's confusing or this should be removed as EIST is ISS. ISS is v1.1, EIST is v3.1.

这项参数设置后将移除EIST,变为ISS,而ISS是V1.1标准。目前大多数主流平台都支持EIST即: V3.1标准。
原文解释如下:
  1. V1.1 is used by second generation Pentium III processors. It enables the CPU to switch between two modes: high and low frequency. This is done by modifying the CPU's multiplier. A 1 GHz Pentium III consuming about 20 watts could be reduced to 600 MHz which reduces the power consumption to about 6 watts.
  2. V2.1 (Enhanced SpeedStep) is used in Pentium III-Mobile processors and is similar to the previous version, but in the low frequency mode the CPU also uses a different voltage than the high frequency mode.
  3. V2.2 is adapted for Pentium 4-Mobile processors. With this, a 1.8 GHz Pentium 4-M consuming about 30 watts can lower its frequency to 1.2 GHz, thus reducing power consumption to about 20 watts.
  4. V3.1 (EIST) is used with the first and second generation of Pentium M processors (Banias and Dothan cores, used in Centrino platforms). With this technology, the CPU varies its frequency (and voltage) between about 40% and 100% of its base frequency in increments of 100 MHz (for Banias core) or 133 MHz (for Dothan core). With this technology, Intel also introduces realtime Level 2 cache capacity variation, further improving power savings.
  5. V3.2 (Enhanced EIST) is adapted for multi-core processors with unified Level 2 cache.
复制代码
PS:EIST全称为“Enhanced Intel SpeedStep Technology”,它能够根据不同的系统工作量自动调节处理器的电压和频率,以减少耗电量和发热量。 详>>百科

Inject 选项
  1. <key>Inject</key>
  2. <false/>
复制代码
参数名称: Inject
参数设置: <true/>开启 || <false/> 关闭
参数说明:开启后Clover自动注入设备属性关闭,允许从属性选项(Properties)里添加自定义字符串方式注入设备属性。

NoDefaultProperties 选项
  1. <key>NoDefaultProperties</key>
  2. <true/>
复制代码
参数名称:NoDefaultProperties
参数设置:<true/> 开启 ||<false/> 关闭
参数说明:使用这个参数会生成空的 _DSM函数,影响DSDT fixes功能面板中显卡、声卡、网卡、WiFi(无线网卡)的修复效果。

UseIntelHDMI 选项
  1. <key>UseIntelHDMI</key>
  2. <false/>
复制代码
参数名称:UseIntelHDMI
参数设置:<true/> 开启 || <false/> 关闭
参数说明:使用IntelHMDI 音频输出。详>>〔 Rev2590〕说明

来自 <http://bbs.pcbeta.com/forum.php?mod=viewthread&tid=1485696&page=1#pid39567258>


评论

此博客中的热门博文

使用Clover启动OS X安装器

 Clover介绍 及 新版 config.plist 代码作用详解.

Boot 模块 Legacy,Timeout,DefaultVolume,DefaultLoader 选项