blob: 4678e1ff95544335aac188fc56bc5a66961538f7 [file] [log] [blame]
Patrick Georgi2efc8802012-11-06 11:03:53 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Patrick Georgi2efc8802012-11-06 11:03:53 +010015 */
16
17#include "hostbridge.asl"
18#include "../gm45.h"
19
20/* PCI Device Resource Consumption */
21Device (PDRC)
22{
23 Name (_HID, EISAID("PNP0C02"))
24 Name (_UID, 1)
25
26 // This does not seem to work correctly yet - set values statically for
27 // now.
28
29 //Name (PDRS, ResourceTemplate() {
30 // Memory32Fixed(ReadWrite, 0x00000000, 0x00004000, RCRB) // RCBA
31 // Memory32Fixed(ReadWrite, 0x00000000, 0x00004000, MCHB) // MCHBAR
32 // Memory32Fixed(ReadWrite, 0x00000000, 0x00001000, DMIB) // DMIBAR
33 // Memory32Fixed(ReadWrite, 0x00000000, 0x00001000, EGPB) // EPBAR
34 // Memory32Fixed(ReadWrite, 0x00000000, 0x00000000, PCIE) // PCIE BAR
35 // Memory32Fixed(ReadWrite, 0xfed20000, 0x00070000, ICHB) // Misc ICH
36 //})
37
38 Name (PDRS, ResourceTemplate() {
39 Memory32Fixed(ReadWrite, 0xfed1c000, 0x00004000) // RCBA
40 Memory32Fixed(ReadWrite, DEFAULT_MCHBAR, 0x00004000)
41 Memory32Fixed(ReadWrite, DEFAULT_DMIBAR, 0x00001000)
42 Memory32Fixed(ReadWrite, DEFAULT_EPBAR, 0x00001000)
Kyösti Mälkki503d3242019-03-05 07:54:28 +020043 Memory32Fixed(ReadWrite, CONFIG_MMCONF_BASE_ADDRESS, 0x04000000)
Patrick Georgi2efc8802012-11-06 11:03:53 +010044 Memory32Fixed(ReadWrite, 0xfed20000, 0x00020000) // Misc ICH
45 Memory32Fixed(ReadWrite, 0xfed40000, 0x00005000) // Misc ICH
46 Memory32Fixed(ReadWrite, 0xfed45000, 0x0004b000) // Misc ICH
47 })
48
49 // Current Resource Settings
50 Method (_CRS, 0, Serialized)
51 {
52 //CreateDwordField(PDRS, ^RCRB._BAS, RBR0)
53 //ShiftLeft(\_SB.PCI0.LPCB.RCBA, 14, RBR0)
54
55 //CreateDwordField(PDRS, ^MCHB._BAS, MBR0)
56 //ShiftLeft(\_SB.PCI0.MCHC.MHBR, 14, MBR0)
57
58 //CreateDwordField(PDRS, ^DMIB._BAS, DBR0)
59 //ShiftLeft(\_SB.PCI0.MCHC.DMBR, 12, DBR0)
60
61 //CreateDwordField(PDRS, ^EGPB._BAS, EBR0)
62 //ShiftLeft(\_SB.PCI0.MCHC.EPBR, 12, EBR0)
63
64 //CreateDwordField(PDRS, ^PCIE._BAS, PBR0)
65 //ShiftLeft(\_SB.PCI0.MCHC.PXBR, 26, PBR0)
66
67 //CreateDwordField(PDRS, ^PCIE._LEN, PSZ0)
68 //ShiftLeft(0x10000000, \_SB.PCI0.MCHC.PXSZ, PSZ0)
69
70 Return(PDRS)
71 }
72}
73
74// PCIe graphics port 0:1.0
75#include "peg.asl"
76
77// Integrated graphics 0:2.0
Nico Huber62047d12015-08-27 15:07:03 +020078#include <drivers/intel/gma/acpi/non-pch.asl>