blob: 7f642194ba98c1e9bbc9c2ab8a5f410669d0e687 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgi2efc8802012-11-06 11:03:53 +01002
3#include "hostbridge.asl"
Angel Pons2f30e8c2020-09-16 13:29:21 +02004#include "../memmap.h"
5#include <southbridge/intel/i82801ix/i82801ix.h>
Elyes HAOUAS4ec67fc2019-10-30 12:39:17 +01006#include <southbridge/intel/common/rcba.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +01007
8/* PCI Device Resource Consumption */
9Device (PDRC)
10{
11 Name (_HID, EISAID("PNP0C02"))
12 Name (_UID, 1)
13
14 // This does not seem to work correctly yet - set values statically for
15 // now.
Patrick Georgi2efc8802012-11-06 11:03:53 +010016 Name (PDRS, ResourceTemplate() {
Elyes HAOUAS4ec67fc2019-10-30 12:39:17 +010017 Memory32Fixed(ReadWrite, DEFAULT_RCBA, 0x00004000)
Patrick Georgi2efc8802012-11-06 11:03:53 +010018 Memory32Fixed(ReadWrite, DEFAULT_MCHBAR, 0x00004000)
19 Memory32Fixed(ReadWrite, DEFAULT_DMIBAR, 0x00001000)
20 Memory32Fixed(ReadWrite, DEFAULT_EPBAR, 0x00001000)
Angel Pons1ac6f8b2021-01-20 13:13:26 +010021 Memory32Fixed(ReadWrite, CONFIG_MMCONF_BASE_ADDRESS, CONFIG_MMCONF_LENGTH)
Patrick Georgi2efc8802012-11-06 11:03:53 +010022 Memory32Fixed(ReadWrite, 0xfed20000, 0x00020000) // Misc ICH
23 Memory32Fixed(ReadWrite, 0xfed40000, 0x00005000) // Misc ICH
24 Memory32Fixed(ReadWrite, 0xfed45000, 0x0004b000) // Misc ICH
25 })
26
27 // Current Resource Settings
28 Method (_CRS, 0, Serialized)
29 {
Patrick Georgi2efc8802012-11-06 11:03:53 +010030 Return(PDRS)
31 }
32}
33
34// PCIe graphics port 0:1.0
35#include "peg.asl"
Matt DeVillierc6589ae2020-11-28 13:17:54 -060036
37// Integrated graphics 0:2.0
38#include <drivers/intel/gma/acpi/gfx.asl>