Contribute
Register

DSDT error for ASUS RAMPAGE V EXTREME X99

Status
Not open for further replies.
Joined
Jun 15, 2015
Messages
195
Motherboard
Clevo P750ZM(Clover)
CPU
I7-4790K/Z97
Graphics
GTX980M,1920x1080
Mac
  1. 0
Classic Mac
  1. 0
Mobile Phone
  1. 0
hello everyone,

there are 2 type of errors in the dsdt.

  1. Min/Max/Length/Gran are all zero, but no resource tag
  2. Address Min is greater than Address Max


use the formula(Range Maximum - Range Minimum + 1 = Length) to solve first type of error (same problem fromhttp://www.insanelymac.com/forum/top...ss-max-errors/)

but i have no idea how to solve second one

eg:
WordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
0x0000, // Granularity
0x3548, // Range Minimum
0x0000, // Range Maximum
0x0000, // Translation Offset
0x0000, // Length
,, , TypeStatic)

notice that max=0 and min is a number>0

here is the original dsdt file View attachment DSDT.aml


Thanks in advance!
 
Hi loppol,

I'm a newbie, but I would try:

Code:
                WordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
                    0x0000,             // Granularity
                    0x3548,             // Range Minimum
                    0x3549,             // Range Maximum
                    0x0000,             // Translation Offset
                    0x0002,             // Length
                    ,, , TypeStatic)

This seems to fix the compilation errors, but I have no clue what will happen when you use this code.

Either that or just remove the invalid entries.

Here is the DSL compiling: View attachment loppol_ASUS_RAMPAGE_V_EXTREME_X99.dsl.zip

Question: Have you managed to get your p750zm's LCD backlight to work? I have a p750dm and I suppose it would use the same method as yours and I have not yet managed to control mine.

Thanks
 
hello everyone,

there are 2 type of errors in the dsdt.

  1. Min/Max/Length/Gran are all zero, but no resource tag
  2. Address Min is greater than Address Max


use the formula(Range Maximum - Range Minimum + 1 = Length) to solve first type of error (same problem fromhttp://www.insanelymac.com/forum/top...ss-max-errors/)

but i have no idea how to solve second one


eg:
WordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
0x0000, // Granularity
0x3548, // Range Minimum
0x0000, // Range Maximum
0x0000, // Translation Offset
0x0000, // Length
,, , TypeStatic)


notice that max=0 and min is a number>0

here is the original dsdt file View attachment 179766


Thanks in advance!
Hey loppol, did you ever resolve this? I have the same thing; nine 6501 errors, three groups of three, on an Asus X99A/USB3.1 with a 5820k. It is very frustrating as I have managed to extract a good DSDT several times. A few days ago, it started coming up with these errors and I have no idea why, let alone how to fix them.
 
Status
Not open for further replies.
Back
Top