Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 scusa ma cosa c'entra? le devi trovare e modificare nel SSDT oltretutto sono tutte in fila HS01 etc etc Link to comment Share on other sites More sharing options...
Support Team Anto65 Posted February 7, 2021 Author Support Team Share Posted February 7, 2021 si hai ragione anche il registro me le mostra hs01, hs02, .... ss01... Link to comment Share on other sites More sharing options...
Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 Te l'ha spiegato bene @iCanaro le porte ci sono dove hai lasciato attivo e quindi GUPC(One): per le HS cambi come ho evidenziato nell'immagine per le SS invece di (One,0x00) metterai (One,0x03) Nota: se hai un BT, la relativa porta HS dovrà essere (One,0xFF) Link to comment Share on other sites More sharing options...
Support Team Anto65 Posted February 7, 2021 Author Support Team Share Posted February 7, 2021 si fatto riavvviato pero' mi sa che non va ,eppure la patch l ho applicata Link to comment Share on other sites More sharing options...
Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 guarda bene la tua foto HS01 hai lasciato Return (GUPC(One)) ma deve essere? come spiegato sopra 😄 Return (GENG(One,0x00)) Sottolineo: devi lavorare nel Method _UPC, non toccare _PLD etc... Guarda l'esempio nella foto che ti ho allegato Link to comment Share on other sites More sharing options...
Support Team Anto65 Posted February 7, 2021 Author Support Team Share Posted February 7, 2021 a ma quindi lo devo inserire io GENG ? Pensavo la patch facesse tutto , praticamente applicavo il tuo metodo ma su GUPC Link to comment Share on other sites More sharing options...
Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 Esatto la patch aggiunge ma tu dopo devi fare a mano modificando e usando appunto la definizione della mia patch applicata prima Come può essere automatica una cosa del genere? una patch per tutti come base non può sapere quale porte sono attive, quali no etc.. per qualsiasi hardware 🙂 Link to comment Share on other sites More sharing options...
Support Team Anto65 Posted February 7, 2021 Author Support Team Share Posted February 7, 2021 pensavo sovrascriveva il metodo GUPC ok Scope (\_SB.PCI0.XHC.RHUB.HS02) { Method (_UPC, 0, NotSerialized) // _UPC: USB Port Capabilities { Return (GUPC (One)) } Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { Return (GENG (One, 0x02)) } } non mi va ancora devo eliminare lo spazio dopo GENG ? Link to comment Share on other sites More sharing options...
Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 Non va bene Perchè modifichi _PLD? quello non va toccato, te l'ho detto anche prima Rimettilo come era devi modificare così sempre e solo in _UPC Scope (\_SB.PCI0.XHC.RHUB.HS02) { Method (_UPC, 0, NotSerialized) // _UPC: USB Port Capabilities { Return (GENG (One,0x00)) } Method (_PLD, 0, NotSerialized) // _PLD: Physical Location of Device { Return (GPLD (One, 0x02)) <--- NON qui } } Link to comment Share on other sites More sharing options...
Support Team Anto65 Posted February 7, 2021 Author Support Team Share Posted February 7, 2021 forse adesso si iMac di Antuneddu.zip e' normale che come in foto vengono viste come ExpressCard ? Link to comment Share on other sites More sharing options...
Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 perchè hai messo connettore 0x02? per le HS? 🙂 mi alleghi il tuo ssdt? oppure lo prendo dal primo post? Link to comment Share on other sites More sharing options...
Support Team iCanaro Posted February 7, 2021 Support Team Share Posted February 7, 2021 24 minuti fa, antuneddu ha scritto: normale che come in foto vengono viste come ExpressCard ? forse perché hai sbagliato qualcosa?! in _UPC devi sostituire Return (GUPC (One)) con --> Return (GENG (One, 0x00)) questo per le porte USB2 come definire le porte è spiegato nel txt Spoiler /* * Maintained by Gengik84, MacOS86.it * * example: * Return (GENG (One, 0x03)) for connector type usb3 ( standard connector ) * or Return (GENG (One, 0x09)) for connector type usb3 type C ( HS+SS with Switch ) * or Return (GENG (One, 0xFF)) for internal (255) * * Other connector type available: * * Return (GENG (One, 0x00)) for connector type usb2 ( Type A ) * Return (GENG (One, 0x0A)) for connector type usb3 type C ( HS+SS without Switch ) */ e visto che come me, fare casini è un'attimo, ad ogni sostituzione, compila, così se hai sbagliato qualcosa, anche uno spazio, avrai un'errore e capisci subito dove hai cannato 😉 1 Link to comment Share on other sites More sharing options...
Support Team Anto65 Posted February 7, 2021 Author Support Team Share Posted February 7, 2021 2 minuti fa, iCanaro ha scritto: forse perché hai sbagliato qualcosa?! in _UPC devi sostituire Return (GUPC (One)) con --> Return (GENG (One, 0x00)) questo per le porte USB2 come definire le porte è spiegato nel txt Mostra contenuto nascosto /* * Maintained by Gengik84, MacOS86.it * * example: * Return (GENG (One, 0x03)) for connector type usb3 ( standard connector ) * or Return (GENG (One, 0x09)) for connector type usb3 type C ( HS+SS with Switch ) * or Return (GENG (One, 0xFF)) for internal (255) * * Other connector type available: * * Return (GENG (One, 0x00)) for connector type usb2 ( Type A ) * Return (GENG (One, 0x0A)) for connector type usb3 type C ( HS+SS without Switch ) */ ridi ridi 😂 21 minuti fa, Gengik84 ha scritto: perchè hai messo connettore 0x02? per le HS? 🙂 mi alleghi il tuo ssdt? oppure lo prendo dal primo post? ho corretto con 0x00 la internal 0x255 giusto ? Antuneddu.zip 1 Link to comment Share on other sites More sharing options...
Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 4 minuti fa, antuneddu ha scritto: ho corretto con 0x00 la internal 0x255 giusto ? 🤯 nope ... è 0xFF 255 è solo in decimale... se leggi la patch c'è scritto l'ha appena messo iCanaro Link to comment Share on other sites More sharing options...
Support Team Anto65 Posted February 7, 2021 Author Support Team Share Posted February 7, 2021 solo quella quindi ? ok volo ahah non pensavo tutto sto lavoro per le usb mariiaaaa Link to comment Share on other sites More sharing options...
Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 Sei andato in confusione per una cosa veramente facile alla fine 🙂 Rifai con calma, senza furia Prova questo... SSDT-3.aml.zip Link to comment Share on other sites More sharing options...
Support Team Solution Anto65 Posted February 7, 2021 Author Support Team Solution Share Posted February 7, 2021 ma ci sono adesso , non c' ho perso tanto tempo 😂 questa SSDT-3 l ho incorniciata e appesa al muro ahaha 1 Link to comment Share on other sites More sharing options...
Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 ok bene 🙂 perchè la HS11 interna? non mi sembrava di averci visto un BT collegato internamente, erro? Link to comment Share on other sites More sharing options...
Support Team Anto65 Posted February 7, 2021 Author Support Team Share Posted February 7, 2021 BT no sd si ,anche questa 0x00 ì Adesso, antuneddu ha scritto: BT no sd si ,anche questa 0x00 ? scusa non ho capito se devo lasciare cosi o cambiarla ? 1 Link to comment Share on other sites More sharing options...
Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 se anche quella è una porta fisica dove tu puoi collegare un dispositivo esterno allora deve essere 0x00 se fosse BT, come anche per esempio un lettore SD sul case quindi collegato a usb interna diretta sulla mobo, allora va interna 0xFF (255 in decimale) 1 Link to comment Share on other sites More sharing options...
Support Team Anto65 Posted February 7, 2021 Author Support Team Share Posted February 7, 2021 ok allora e' solo lettore sd e grazie per la pazienza Link to comment Share on other sites More sharing options...
Administrators Gengik84 Posted February 7, 2021 Administrators Share Posted February 7, 2021 Di nulla, figurati 🙂 Link to comment Share on other sites More sharing options...
Support Team iCanaro Posted February 7, 2021 Support Team Share Posted February 7, 2021 bene! nei tag ho messo risolto (mappatura con acpi) e rifinito (definizione connettori) 🤞 Link to comment Share on other sites More sharing options...
Support Team Anto65 Posted February 7, 2021 Author Support Team Share Posted February 7, 2021 Grazie e non mi dare più compiti ahahaha 2 Link to comment Share on other sites More sharing options...
Support Team iCanaro Posted February 7, 2021 Support Team Share Posted February 7, 2021 per ora nient'altro 😁 visto che eri caldo per mappatura con acpi, ti ho fatto finire l'allenamento.... poi in futuro ci si potrà dedicare agli MMIO Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now