ACPI: Add prefetch decoding to the address space parser
Add support of PREFETCH attributre to ACPI address space and extended address space parser. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
72e26b0d48
commit
fcb29bbcd5
1 changed files with 3 additions and 0 deletions
|
@ -200,6 +200,9 @@ static bool acpi_decode_space(struct resource *res,
|
||||||
if (addr->producer_consumer == ACPI_PRODUCER)
|
if (addr->producer_consumer == ACPI_PRODUCER)
|
||||||
res->flags |= IORESOURCE_WINDOW;
|
res->flags |= IORESOURCE_WINDOW;
|
||||||
|
|
||||||
|
if (addr->info.mem.caching == ACPI_PREFETCHABLE_MEMORY)
|
||||||
|
res->flags |= IORESOURCE_PREFETCH;
|
||||||
|
|
||||||
return !(res->flags & IORESOURCE_DISABLED);
|
return !(res->flags & IORESOURCE_DISABLED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue