Administrators oldnapalm Posted December 24, 2010 Administrators Share Posted December 24, 2010 Fix para placas que apresentam baixa performance dos HDs SATA quando no modo AHCI (outros HDs que não o do sistema). Consiste em passar os IRQs dos devices RTC0 e TMR para o device HPET (opcional mas recomendado) e liberar o IRQ do device PIC para ser usado pela controladora SATA (esta é a "chave" do fix). Fix por THe KiNG do Project OS X http://www.projectosx.com/forum/index.php?showtopic=564 HPET original: Device (HPET) { Name (_HID, EisaId ("PNP0103")) Name (CRS, ResourceTemplate () { Memory32Fixed (ReadOnly, 0xFED00000, // Address Base 0x00000400, // Address Length _Y0F) }) OperationRegion (^LPCR, SystemMemory, 0xFED1F404, 0x04) Field (LPCR, AnyAcc, NoLock, Preserve) { HPTS, 2, , 5, HPTE, 1, Offset (0x04) } Method (_STA, 0, NotSerialized) { If (LEqual (OSFL (), Zero)) { If (HPTE) { Return (0x0F) } } Else { If (HPTE) { Return (0x0B) } } Return (Zero) } Method (_CRS, 0, NotSerialized) { CreateDWordField (CRS, \_SB.PCI0.SBRG.HPET._Y0F._BAS, HPT) Multiply (HPTS, 0x1000, Local0) Add (Local0, 0xFED00000, HPT) Return (CRS) } } HPET modificado: Device (HPET) { Name (_HID, EisaId ("PNP0103")) Name (CRS, ResourceTemplate () { IRQNoFlags () {0} IRQNoFlags () {8} Memory32Fixed (ReadOnly, 0xFED00000, // Address Base 0x00000400, // Address Length _Y0F) }) OperationRegion (^LPCR, SystemMemory, 0xFED1F404, 0x04) Field (LPCR, AnyAcc, NoLock, Preserve) { HPTS, 2, , 5, HPTE, 1, Offset (0x04) } Method (_STA, 0, NotSerialized) { If (LEqual (OSFL (), Zero)) { If (HPTE) { Return (0x0F) } } Else { If (HPTE) { Return (0x0B) } } Return (Zero) } Method (_CRS, 0, NotSerialized) { CreateDWordField (CRS, \_SB.PCI0.SBRG.HPET._Y0F._BAS, HPT) Multiply (HPTS, 0x1000, Local0) Add (Local0, 0xFED00000, HPT) Return (CRS) } } RTC0 original: Device (RTC0) { Name (_HID, EisaId ("PNP0B00")) Name (_CRS, ResourceTemplate () { IO (Decode16, 0x0070, // Range Minimum 0x0070, // Range Maximum 0x00, // Alignment 0x02, // Length ) IRQNoFlags () {8} }) } RTC0 modificado: Device (RTC0) { Name (_HID, EisaId ("PNP0B00")) Name (_CRS, ResourceTemplate () { IO (Decode16, 0x0070, // Range Minimum 0x0070, // Range Maximum 0x00, // Alignment 0x02, // Length ) }) } TMR original: Device (TMR) { Name (_HID, EisaId ("PNP0100")) Name (_CRS, ResourceTemplate () { IO (Decode16, 0x0040, // Range Minimum 0x0040, // Range Maximum 0x00, // Alignment 0x04, // Length ) IRQNoFlags () {0} }) } TMR modificado: Device (TMR) { Name (_HID, EisaId ("PNP0100")) Name (_CRS, ResourceTemplate () { IO (Decode16, 0x0040, // Range Minimum 0x0040, // Range Maximum 0x01, // Alignment 0x04, // Length ) }) } PIC original: Device (PIC) { Name (_HID, EisaId ("PNP0000")) Name (_CRS, ResourceTemplate () { IO (Decode16, 0x0020, // Range Minimum 0x0020, // Range Maximum 0x00, // Alignment 0x02, // Length ) IO (Decode16, 0x00A0, // Range Minimum 0x00A0, // Range Maximum 0x00, // Alignment 0x02, // Length ) IRQNoFlags () {2} }) } PIC modificado: Device (PIC) { Name (_HID, EisaId ("PNP0000")) Name (_CRS, ResourceTemplate () { IO (Decode16, 0x0020, // Range Minimum 0x0020, // Range Maximum 0x00, // Alignment 0x02, // Length ) IO (Decode16, 0x00A0, // Range Minimum 0x00A0, // Range Maximum 0x00, // Alignment 0x02, // Length ) }) } Quote Donation with Paypal HERE Donation with Stripe HERE Donation with BuyMeaCoffee HERE Donation with Mercado Livre HERE Donation with Binance 0xdbe48ef6b158f1dd0035d7f49555c99e52f72714 Donation with BTC 33HeGCuCSh4tUBqdYkQqKpSDa1E7WeAJQ3 Donation with PicPay @danielnmaldonado Donation with PiX @danielnmaldonado@gmail.com Link to comment Share on other sites More sharing options...
deantonibrito Posted July 13, 2011 Share Posted July 13, 2011 Obrigado pelo post. É oq eu procurava. Porem Está me gerando muitas dúvidas. Uso a placa ASUS p6td Deluxe.. instal todo no insanelymac.. DSDT by Ifabio SInto lentidão qdo o hd estáem atividade.. (como criar abas no Safari, etc) Editei a dsdt extamente como acima e continua igual!! A não a temperatura q aumentou em 10º!!?? Como consigo o IOregister? Imploro por uma ajuda..!! obrigado Quote Link to comment Share on other sites More sharing options...
Administrators oldnapalm Posted July 13, 2011 Author Administrators Share Posted July 13, 2011 Use o Auto-Patcher, essa placa é suportada http://Olarila.com/forum/viewtopic.php?f=7&t=60 Instalação conforme este tópico http://Olarila.com/forum/viewtopic.php?f=3&t=103 Quote Donation with Paypal HERE Donation with Stripe HERE Donation with BuyMeaCoffee HERE Donation with Mercado Livre HERE Donation with Binance 0xdbe48ef6b158f1dd0035d7f49555c99e52f72714 Donation with BTC 33HeGCuCSh4tUBqdYkQqKpSDa1E7WeAJQ3 Donation with PicPay @danielnmaldonado Donation with PiX @danielnmaldonado@gmail.com Link to comment Share on other sites More sharing options...
deantonibrito Posted July 13, 2011 Share Posted July 13, 2011 Já usei e não mudou nada.. Esse problema ja está ficando insuportável mesmo!! tks man!!! Quote Link to comment Share on other sites More sharing options...
Administrators oldnapalm Posted July 13, 2011 Author Administrators Share Posted July 13, 2011 Antes de rodar o Auto-Patcher, remova esse DSDT pronto que você baixou e reinicie. Quote Donation with Paypal HERE Donation with Stripe HERE Donation with BuyMeaCoffee HERE Donation with Mercado Livre HERE Donation with Binance 0xdbe48ef6b158f1dd0035d7f49555c99e52f72714 Donation with BTC 33HeGCuCSh4tUBqdYkQqKpSDa1E7WeAJQ3 Donation with PicPay @danielnmaldonado Donation with PiX @danielnmaldonado@gmail.com Link to comment Share on other sites More sharing options...
deantonibrito Posted July 13, 2011 Share Posted July 13, 2011 Não vai dar pau reiniciar sem o DSDT? Quote Link to comment Share on other sites More sharing options...
Administrators oldnapalm Posted July 13, 2011 Author Administrators Share Posted July 13, 2011 Não deveria, mas se você tem receio, rode o Auto-Patcher no Windows, ou renomeie o dsdt.aml e caso não funcionar sem, basta especificar o nome do arquivo no boot: DSDT=/Extra/velho.aml -v Quote Donation with Paypal HERE Donation with Stripe HERE Donation with BuyMeaCoffee HERE Donation with Mercado Livre HERE Donation with Binance 0xdbe48ef6b158f1dd0035d7f49555c99e52f72714 Donation with BTC 33HeGCuCSh4tUBqdYkQqKpSDa1E7WeAJQ3 Donation with PicPay @danielnmaldonado Donation with PiX @danielnmaldonado@gmail.com Link to comment Share on other sites More sharing options...
deantonibrito Posted July 13, 2011 Share Posted July 13, 2011 removi, restartei e dei o auto patcher.. problema persistiu. Editei o HPET igual do The King tbm.. e nada Quote Link to comment Share on other sites More sharing options...
kimmysawi Posted July 19, 2018 Share Posted July 19, 2018 Uso a placa ASUS p6td Deluxe.. instal todo no insanelymac.. see reviews of phenq diet pills DSDT by Ifabio SInto lentidão qdo o hd estáem atividade.. (como criar abas no Safari, etc) All of these can measure with do and die situation because of that Graphic and Nvidea card Quote Link to comment Share on other sites More sharing options...