blob: 576ab96bb610b6832d366363db22703a5d62dae2 [file] [log] [blame]
Patrick Georgi2efc8802012-11-06 11:03:53 +01001/*
2 * This file is part of the coreboot project.
3 *
Patrick Georgi2efc8802012-11-06 11:03:53 +01004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; version 2 of
8 * the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Patrick Georgi2efc8802012-11-06 11:03:53 +010014 */
15
16#include "hostbridge.asl"
17#include "../gm45.h"
Elyes HAOUAS4ec67fc2019-10-30 12:39:17 +010018#include <southbridge/intel/common/rcba.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010019
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() {
Elyes HAOUAS4ec67fc2019-10-30 12:39:17 +010039 Memory32Fixed(ReadWrite, DEFAULT_RCBA, 0x00004000)
Patrick Georgi2efc8802012-11-06 11:03:53 +010040 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"