Jump to content

Recommended Posts

Posted

Tópico oficial:

http://www.projectosx.com/forum/index.php?showtopic=355

 

Download:

http://sourceforge.net/projects/voodoohda/files/

 

Como editar o arquivo Info.plist:

Abra o .plist com um bom editar e edite necessário.

 

Problema: kernel panic.

Solução 1: remova a AppleHDA e reinicie o sistema antes de instalar a VoodooHDA (ou use AppleHDADisabler).

Solução 2: edite o arquivo Info.plist e substitua a chave IOPCIClassMatch por IOPCIPrimaryMatch e o seu valor pelo ID da sua placa.

Antes

<key>IOPCIClassMatch</key>
<string>0x04030000&0xffff0000</string>
 

Depois

<key>IOPCIPrimaryMatch</key>
<string>0x3b568086</string>
 

0xDeviceIDVendorID

 

Como descobrir o device e vendor ID. Use o Hackintool.

https://github.com/benbaker76/Hackintool/releases

 

Problema: a kext não funciona (geralmente quando o PC tem mais do que uma placa de som, ou áudio HDMI na placa de vídeo).

Solução: use a solução 2 para o problema de kernel panic. Se quiser usar as duas placas, crie uma entrada para cada uma em IOKitPersonalities.

 

Problema: som com chiado.

Solução 1: altere o formato da saída em Aplicativos - Utilitários - Configuração de Áudio e MIDI

Solução 2: ative a opção "Use SSE2" nas preferências da VoodooHDA

Também pode ser feito pela chave Vectorize no Info.plist

<key>Vectorize</key>
<[color=#FF0000]true[/color]/>
 

 

Problema: controle de volume não funciona.

Solução: ative a chave VoodooHDAEnableVolumeChangeFix no Info.plist

<key>VoodooHDAEnableVolumeChangeFix</key>
<[color=#FF0000]true[/color]/>
 

Problema: volume muito baixo.

Solução: ative a chave VoodooHDAEnableHalfVolumeFix no Info.plist

<key>VoodooHDAEnableHalfVolumeFix</key>
<[color=#FF0000]true[/color]/>
 

 

Problema: microfonia (audio feedback ou Larsen effect), som do microfone sai nos falantes, em laptops causa um uivo agudo.

Solução: zere a chave iGain e ajuste as chaves iMix e Mic caso o microfone não funcione

<key>iGain</key>
<string>[color=#FF0000]0[/color]</string>
 

Também pode ser feito no painel de preferências da kext. Em alguns casos pode ser necessário zerar a chave Monitor ao invés da iGain.

 

Problema: atraso (delay) no som. Ao ajustar o volume, por exemplo, demora de 1 a 2 segundos para ouvir o som de teste.

Solução 1: remova os arquivos com.apple.audio.DeviceSettings.plist e com.apple.audio.SystemSettings.plist de /Library/Preferences/Audio e reinicie.

Solução 2: use o SoundFlower.

 

Problema: entradas ou saídas não aparecem.

Solução 1: procure uma kext já modificada para o seu codec.

Para VT1708S

http://www.insanelymac.com/forum/index.php?showtopic=231508

Para AD1988B

http://www.insanelymac.com/forum/index.php?showtopic=267898

Solução 2: ajuste a chave NodesToPatch baseado na saída do getDump (download no tópico oficial).

Exemplo

<key>NodesToPatch</key>
<array>
<dict>
	<key>Codec</key>
	<integer>2</integer>
	<key>Config</key>
	<string>0x90a70120</string>
	<key>Node</key>
	<integer>12</integer>
</dict>
</array>
 

O Config (PinDefault) corresponde aos dois últimos caracteres de cada verb, na ordem inversa

0x[color=#FF0000]01[/color][color=#008000]01[/color][color=#0000FF]44[/color][color=#8000FF]10[/color] = 21471c[color=#8000FF]10[/color] 21471d[color=#0000FF]44[/color] 21471e[color=#008000]01[/color] 21471f[color=#FF0000]01[/color]
 |||||||+- [color=#8000FF]Sequence[/color]
 ||||||+-- [color=#8000FF]Default Association[/color]
 |||||+--- [color=#0000FF]Misc[/color]
 ||||+---- [color=#0000FF]Color[/color]
 |||+----- [color=#008000]Connection Type[/color]
 ||+------ [color=#008000]Default Device[/color]
 |+------- [color=#FF0000]Location[/color]
 +-------- [color=#FF0000]Port Connectivity[/color]
 

 

Exemplo mais detalhado

http://Olarila.com/forum/viewtopic.php?f=6&t=509

 

Informações sobre os codec verbs

Fonte: http://www.projectosx.com/forum/index.php?showtopic=465

 

For each input/output there is a sequence of 4 verbs.

   Jack   Color  Description                  Node     PinDefault             Original Verbs
--------------------------------------------------------------------------------------------------------
   1/8   Green  Line Out at Ext Rear        20 0x14   0x01014410   21471c10 21471d44 21471e01 21471f01
 

Its about NodeID(NID) 0x14 in hex, 20 in decimal.

 

The default verbs for it: 21471c10 21471d44 21471e01 21471f01

 

CAd (Codec Adress)NID (NodeID)Verb CommandVerb Data

 

71cXY X=Default Association Y=Sequence

 

Default Association and Sequence are used together by software to group Pin Complexes (and therefore jacks) together into functional blocks to support multichannel operation. Software may assume that all jacks with the same association number are intended to be grouped together, for instance to provide six channel analog output. The Default Association can also be used by software to prioritize resource allocation in constrained situations. Lower Default Association values would be higher in priority for resources such as processing nodes or Input and Output Converters. Note that this is the default association only, and software can override this value if required, in particular if the user provides additional information about the particular system configuration. A value of 0000b is reserved and should not be used. Software may interpret this value to indicate that the Pin Configuration data has not been properly initialized. A value of 1111b is a special value indicating that the Association has the lowest priority. Multiple different Pin Complexes may share this value, and each is intended to be exposed as independent devices.

 

Sequence indicates the order of the jacks in the association group. The lowest numbered jack in the association group should be assigned the lowest numbered channels in the stream, etc. The numbers need not be sequential within the group, only the order matters. Sequence numbers within a set of Default Associations must be unique.

 

*My notes for this, if you look on the vanilla codec verb(no matter what codec) you will see that Sequence is always 0.

Why that, and why for us on our codec verbs is different? Simple b/c Apple dosen't have multichannel analog out! so you must change it to 0.

 

*About Default Association, Keep the default one, in order, and on those that are the same replace them with new one that dosen't exist already in the dump... the values you can use are: 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d and f.(see what does verbit if you still don't understand)

 

71dXY X=Color Y=Misc

 

Color indicates the color of the physical jack for use by software.

Unknown 0 
Black 1 
Grey 2
Blue 3 
Green 4
Red 5
Orange 6
Yellow 7
Purple 8
Pink 9
Reserved A-D
White E
Other F
 

 

Misc is a bit field used to indicate other information about the jack. Currently, only bit 0 is defined. If bit 0 is set, it indicates that the jack has no presence detect capability, so even if a Pin Complex indicates that the codec hardware supports the presence detect functionality on the jack, the external circuitry is not capable of supporting the functionality.

Reserved 3

Reserved 2

Reserved 1

Jack Detect Override 0

 

*Use 0 for Jack Detect - External Device(e.g. Headphones Mic etc)

Use 1 for Jack Detect Disabled - Internal Device(e.g. Internal speakers, Internal mic)

 

71eXY X=Default Device Y=Connection Type

 

Default Device indicates the intended use of the jack or device. This can indicate either the label on the jack or the device that is hardwired to the port, as with integrated speakers and the like.

Line Out 0
Speaker  1
HP Out 2
CD 3
SPDIF Out 4
Digital Other Out 5
Modem Line Side 6
Modem Handset Side 7
Line In 8
AUX 9
Mic In A
Telephony B
SPDIF In C
Digital Other In D
Reserved E
Other F
 

 

Connection Type indicates the type of physical connection, such as a 1/8-inch stereo jack or an optical digital connector, etc. Software can use this information to provide helpful user interface descriptions to the user or to modify reported codec capabilities based on the capabilities of the physical transport external to the codec.

Unknown 0 
1/8" stereo/mono 1
1/4" stereo/mono 2
ATAPI internal 3
RCA 4
Optical 5
Other Digital 6
Other Analog 7
Multichannel Analog (DIN) 8
XLR/Professional 9
RJ-11 (Modem) A
Combination B 
Other F
 

 

71fXY X=Port Connectivity Y=Location

 

Port Connectivity indicates the external connectivity of the Pin Complex. Software can use this value to know what Pin Complexes are connected to jacks, internal devices, or not connected at all.

00b - The Port Complex is connected to a jack (1/8", ATAPI, etc.).

01b - No physical connection for Port.

10b - A fixed function device (integrated speaker, integrated mic, etc.) is attached.

11b - Both a jack and an internal device are attached. The Information provided in all other fields refers to the integrated device. The PD pin will reflect the status of the jack; the user will need to be queried to figure out what it is.

 

Location indicates the physical location of the jack or device to which the pin complex is connected. This allows software to indicate, for instance, that the device is the “Front Panel Headphone Jack” as opposed to rear panel connections.

 

*Details:

Convert the 2 digit hex number to binary.

Pad the front with zero's to make it 8 dgits.

 

Example:

0x02 = binary 10 = 00000010 8 digit binary

Reading the bits from left to right:

Port Connectivity bits 7:6 
-----------------------------------------------------------
00 - Port is connected to a Jack
01 - No External Port -or- No physical connection for Port  
10 - Fixed Function/Built In Device (integrated speaker, mic, etc)
11 - Jack and Internal device are attached 

Location Part 1 - bits 5:4
-----------------------------------------------------------
00 - External on primary chassis
01 - Internal
10 - Separate chassis
11 - Other

Location Part 2 - bits 3:0
-----------------------------------------------------------
The meaning depends on Location Part 1 

00 0000	N/A
00 0001   Rear
00 0010   Front
00 0011   Left
00 0100   Right
00 0101   Top
00 0110   Bottom
00 0111   Special (Rear panel)
00 1000   Special (Drive bay)

01 0000   N/A
01 0111   Special (Riser)
01 1000   HDMI
01 1001   ATAPI

10 0000	N/A
10 0001   Rear
10 0010   Front
10 0011   Left
10 0100   Right
10 0101   Top
10 0110   Bottom

11 0000   N/A
11 0110   ?
11 0111   Inside Mobile Lid (example: mic)
11 1000   Outside Mobile Lid

		Bits
Hex	  76 54 3210
-------------------
71f01 = 00 00 0001 - Port has a jack - It is External - Rear Location
71f02 = 00 00 0010 - Port has a jack - It is External - Front Panel Location 
71f59 = 01 01 1001 - No External Port - ATAPI 
71f18 = 00 01 1000 - Port has a jack - External - HDMI
71f90 = 10 01 0000 - Built In Device - Internal - N/A 
	  |  |  ||||
	  |  |  |--------- Location part 2
	  |  |------------ Location part 1  
	  |--------------- Port Connectivity
 

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

Oi!


O som aqui fica ruim quando a música ta alta. Começa a chiar, tremer...


Eu alterei o formato de saída

capturadetela20110714s1l.png


e marquei a caixa no Voodoo


capturadetela20110714s1.png


Mas o problema não foi resolvido. Alguma ideia?

+Configuração:

-Core 2 Duo E7400

-Windows 7 32-bits

-4 GB DDR2

-ATI HD 5850 Black Edition

Posted

Você aumentou ou reduziu a frequência no formato?


Tente usar a solução 2 para o problema de kernel panic, as vezes resolve outros problemas. No meu laptop, por exemplo, além de ter KP aleatoriamente antes de fazer a mudança, tinha um atraso no som.


Também pode ser o FSB, verifique se está correto. Depende da informação injetada pelo boot loader.

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

Eu diminuí, tava 192000,0 Hz. Reinciei o pc agora e ficou um pouco melhor, a primeira musica ficou sem tremer, mas na segunda eu já tinha algumas janelas abertas aqui e começou a tremer um pouco nas partes mais altas, mas isso so acontece quando o volume ta alto.


Vou tentar a solução 2.


Valeu Old!


----------


Update: Fiz a solução 2 do Kernel Panic, acho que ta melhor, só fica ruim quando o volume do itunes e do sistema estão no máximo. Mas já ta bom, não preciso colocar no máximo! :D


Só uma dúvida, nas informações do sistema > Áudio intergado aparece: Nenhum Áudio Integrado. Não era pra aparecer meu dispositivo de áudio alí?

+Configuração:

-Core 2 Duo E7400

-Windows 7 32-bits

-4 GB DDR2

-ATI HD 5850 Black Edition

Posted

Fiz as alterações mas o chiado fica bem baixinho.

Apesar de ouvir o microfone, ele não funciona no Skype por exemplo, eu não consigo calibrar o microfone.


há salvação??????

Ratho.

------------

Notebook - LG R490

Posted
nas informações do sistema > Áudio intergado aparece: Nenhum Áudio Integrado. Não era pra aparecer meu dispositivo de áudio alí?

Não, só aparece as informações se você aplicar um patch no device HDEF na DSDT.


Você não usou o Auto-Patcher?

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted
Fiz as alterações mas o chiado fica bem baixinho.

Apesar de ouvir o microfone, ele não funciona no Skype por exemplo, eu não consigo calibrar o microfone.


há salvação??????

Só vai funcionar se nas preferências do sistema (áudio - entrada) a barra do nível oscilar. Ajuste o iMix nas preferências da VoodooHDA.


Para não ouvir o som do microfone nos speakers ajuste o iGain, veja sobre o problema de "microfonia".

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

Teste a versão mais recente. Se mesmo após todos os ajustes não funcionar a contento, tente com versões anteriores.

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

som chiado, resolvido.


No MIDI, todos os devices.

Formato: 41100,0 Hz - 2can - 16bits inteiros

 

Info.plist

<key>Vectorize</key>
<true/>

Dell Optiplex 790 - iMac12,1 - High Sierra 10.13.6 - Ok

Intel® Core i5-2400 CPU @ 3.10GHZ - Ok

Intel HD Graphics 2000 - Vesa Driver / Replace Zotac 8400GS 256MB - Clover + NvidiaInject - OK

DDR3 4.0GB 1333Mhz - Ok

Realtek ALC269 - AppleALC.kext - Ok

Broadcom BCM43224 - AirportBrcmFixup.kext - Ok

Intel 82579LM Gigabit Ethernet - IntelMausiEthernet.kext - Ok

HDD Hitachi 500GB - Ok

Posted

Aqui ficou com chiado e resolve pelas Configurações Audio e Midi porém, sempre que reinicio o Mac, as configurações implantadas voltam ao padrão errado (formato: de 192000Hz para 48000Hz e 24bits pra 16bits). Agora apliquei o SS2 no painel da Voodoo e resolveu também. Vamos ver ao reiniciar.


No Mac da minha filha apliquei o ID da placa no kext da Voodoo mas, ainda está travando o iTunes as vezes. No DSDT não tem nada de HDEF... Pode ser por isso? Se for, qual informação eu deveria colocar? É especifica de cada placa mãe ou é igual pra todas?

Obs: DSDT gerado pelo Auto Patcher, placa mãe ASUS P5GC-MX (ALC883).


Valeu!

Mac OS CATALINA [OpenCore]

GA-Z97X-UD5H-BK | Core i7 4790k | Radeon RX 580 8GB | Samsung m.2 960 EVO

Posted

Não, a VoodooHDA não precisa de nada na DSDT, só se quiser que apareça no System Profiler, aí pode ser o HDEF "genérico", nada específico do codec

http://Olarila.com/Patches/HDEF.txt

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

Meio newbie, reconheço, mas, onde fica o Painel da Voodoo?

O som tá com chiado e não melhora através da config de áudio e midi.

Processador: Intel Core i5 2500k

Placa Mãe: GA-H67M-D2-B3

Memória: 8GB Kingston DDR3-1333MHz

Placa de Vídeo: ATI Radeon HD 4850

Fonte: Huntkey 450W

HD 1TB Samsung

Monitor: LG 23" W2353V

Mac OS X 10.8 Mountain Lion

Posted

Fica nas preferências, mas você tem que instalar. Baixe o pkg da VoodooHDA que ele instala.

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted
"Se quiser usar as duas placas, crie uma entrada para cada uma em IOKitPersonalities"...


Criar uma entrada como? quais os Valores? :?:

Faça uma cópia da que já existe, só mude o nome e a IOPCIPrimaryMatch http://Olarila.com/forum/viewtopic.php?f=18&t=454&p=4436#p4436

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

Dúvida: vcs estão instalando o kext em si ou o PKG (2.7.2)? Tentei ir pelo PKG e tive Kernel Panic. Depois editei o Info.pList com minhas informações e ainda KP. Desinstalei pelo vooodoohda-uninstall, resetei tudo, e coloquei só o kext do 2.7.3, mas isso não carrega nada (digo, não funciona o som, parece q nem carregou o kext).


EDIT: Depois de caçar um pouco sobre isso, descobri que não adianta instalar o kext no diretório Extra, porque as dependências dele estão no S/L/E. Mas se instalo no S/L/E tenho KP anyway...

Posted

Você botou o ID PCI no Info.plist e removeu a AppleHDA? Veja as dicas no primeiro post.

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted
Você botou o ID PCI no Info.plist e removeu a AppleHDA? Veja as dicas no primeiro post.

Sim, fiz tudo isso. Acabei instalando pelo multishit a versão 2.7.3 e acabou dando certo. Valeu pessoal :)


EDIT:


Falei meio cedo, agora estou tendo uns KPs meio malucos. No System Preferences, no VoodooHDA só aparece o HDMI então não consigo configurar nada por lá de Volume interno. Só estou conseguindo bootar normal com -v no boot (bizarro). Se eu não bootar pelo Verbose Mode, dá KP... Screenshots anexas.

img021jy.jpg

img022at.jpg

Posted
No System Preferences, no VoodooHDA só aparece o HDMI então não consigo configurar nada por lá de Volume interno.

Você deve ter colocado o ID errado, tem que botar o do áudio da placa mãe, não da placa de vídeo (ou botar uma entrada para cada em IOKitPersonalities, como indicado no primeiro post).

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

[Problema: kernel panic.

Solução 1: remova a AppleHDA e reinicie o sistema antes de instalar a VoodooHDA.

Solução 2: edite o arquivo Info.plist e substitua a chave IOPCIClassMatch por IOPCIPrimaryMatch e o seu valor pelo ID da sua placa.]




Aonde eu acho esse arquivo Info.plist?

Intel Core i5 3210m 2.5Ghz | 8GB DDR3 1600Mz | Radeon HD 7650m 1Gb DDR3 + Intel HD 4000 | iPhone 4 32Gb | Windows server 1TB | Japanese Gamecube | Nintendo64 | Nintendo DS Phat | Game Boy Advance | Game Boy Color | Global Village Telecom 35Mb

Posted
[Problema: kernel panic.

Solução 1: remova a AppleHDA e reinicie o sistema antes de instalar a VoodooHDA.

Solução 2: edite o arquivo Info.plist e substitua a chave IOPCIClassMatch por IOPCIPrimaryMatch e o seu valor pelo ID da sua placa.]




Aonde eu acho esse arquivo Info.plist?

Leia a terceira linha do tópico.

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

e no caso, qual kext eu tenho q selecionar? eu to com o voodoohda instalado aqui, mas nao sai som nem nada.....e nao reconhece nenhuma entrada...

Intel Core i5 3210m 2.5Ghz | 8GB DDR3 1600Mz | Radeon HD 7650m 1Gb DDR3 + Intel HD 4000 | iPhone 4 32Gb | Windows server 1TB | Japanese Gamecube | Nintendo64 | Nintendo DS Phat | Game Boy Advance | Game Boy Color | Global Village Telecom 35Mb

Posted
e no caso, qual kext eu tenho q selecionar? eu to com o voodoohda instalado aqui, mas nao sai som nem nada.....e nao reconhece nenhuma entrada...

Isso me parece óbvio, veja o título do tópico.

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...