summaryrefslogtreecommitdiffstats
path: root/src/northbridge/intel/pineview/acpi/pineview.asl
blob: 074e9007d7567e7d398d163ef13e27078f9fbb49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* SPDX-License-Identifier: GPL-2.0-only */

#include "hostbridge.asl"
#include "../iomap.h"
#include <southbridge/intel/common/rcba.h>

/* PCI Device Resource Consumption */
Device (PDRC)
{
	Name (_HID, EISAID("PNP0C02"))
	Name (_UID, 1)

	/* This does not seem to work correctly yet - set values statically for
	 * now.
	 */

	Name (PDRS, ResourceTemplate() {
		Memory32Fixed(ReadWrite, DEFAULT_RCBA, 0x00004000)
		Memory32Fixed(ReadWrite, DEFAULT_MCHBAR,   0x00004000)
		Memory32Fixed(ReadWrite, DEFAULT_DMIBAR,   0x00001000)
		Memory32Fixed(ReadWrite, DEFAULT_EPBAR,    0x00001000)
		Memory32Fixed(ReadWrite, CONFIG_MMCONF_BASE_ADDRESS, 0x10000000)
		Memory32Fixed(ReadWrite, 0xfed20000, 0x00020000) /* Misc ICH */
		Memory32Fixed(ReadWrite, 0xfed40000, 0x00005000) /* Misc ICH */
		Memory32Fixed(ReadWrite, 0xfed45000, 0x0004b000) /* Misc ICH */
	})

	/* Current Resource Settings */
	Method (_CRS, 0, Serialized)
	{
		Return(PDRS)
	}
}

// PCIe graphics port 0:1.0
#include "peg.asl"