blob: 79fb371250ebed7459253144ccdf69bb64ec0f01 [file] [log] [blame]
Stefan Reinauercc46e732009-03-13 00:44:09 +00001/*
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.
Stefan Reinauercc46e732009-03-13 00:44:09 +000015 */
16
Patrick Georgi334328a2012-02-16 19:01:22 +010017#include "hostbridge.asl"
18#include "../i945.h"
Stefan Reinauercc46e732009-03-13 00:44:09 +000019
Denis 'GNUtoo' Carikli4b213a82013-03-28 14:24:39 +010020/* Operating System Capabilities Method */
21Method (_OSC, 4)
22{
Denis 'GNUtoo' Carikli4b213a82013-03-28 14:24:39 +010023 /* Check for proper PCI/PCIe UUID */
24 If (LEqual(Arg0, ToUUID("33DB4D5B-1FF7-401C-9657-7441C03DD766")))
25 {
26 /* Let OS control everything */
27 Return(Arg3)
28 } Else {
Marc Jones1faa11e2018-08-15 22:17:45 -060029 CreateDWordField(Arg3, 0, CDW1)
Denis 'GNUtoo' Carikli4b213a82013-03-28 14:24:39 +010030 Or(CDW1, 4, CDW1) // Unrecognized UUID, so set bit 2 to 1
31 Return(Arg3)
32 }
33}
34
Stefan Reinauercc46e732009-03-13 00:44:09 +000035/* PCI Device Resource Consumption */
36Device (PDRC)
37{
38 Name (_HID, EISAID("PNP0C02"))
39 Name (_UID, 1)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000040
41 // This does not seem to work correctly yet - set values statically for
42 // now.
Stefan Reinauer109ab312009-08-12 16:08:05 +000043
Stefan Reinauer71a3d962009-07-21 21:44:24 +000044 //Name (PDRS, ResourceTemplate() {
45 // Memory32Fixed(ReadWrite, 0x00000000, 0x00004000, RCRB) // RCBA
46 // Memory32Fixed(ReadWrite, 0x00000000, 0x00004000, MCHB) // MCHBAR
47 // Memory32Fixed(ReadWrite, 0x00000000, 0x00001000, DMIB) // DMIBAR
48 // Memory32Fixed(ReadWrite, 0x00000000, 0x00001000, EGPB) // EPBAR
49 // Memory32Fixed(ReadWrite, 0x00000000, 0x00000000, PCIE) // PCIE BAR
50 // Memory32Fixed(ReadWrite, 0xfed20000, 0x00070000, ICHB) // Misc ICH
51 //})
52
Stefan Reinauercc46e732009-03-13 00:44:09 +000053 Name (PDRS, ResourceTemplate() {
Stefan Reinauer71a3d962009-07-21 21:44:24 +000054 Memory32Fixed(ReadWrite, 0xfed1c000, 0x00004000) // RCBA
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000055 Memory32Fixed(ReadWrite, DEFAULT_MCHBAR, 0x00004000)
56 Memory32Fixed(ReadWrite, DEFAULT_DMIBAR, 0x00001000)
57 Memory32Fixed(ReadWrite, DEFAULT_EPBAR, 0x00001000)
58 Memory32Fixed(ReadWrite, DEFAULT_PCIEXBAR, 0x04000000)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000059 Memory32Fixed(ReadWrite, 0xfed20000, 0x00020000) // Misc ICH
60 Memory32Fixed(ReadWrite, 0xfed40000, 0x00005000) // Misc ICH
61 Memory32Fixed(ReadWrite, 0xfed45000, 0x0004b000) // Misc ICH
Stefan Reinauercc46e732009-03-13 00:44:09 +000062 })
63
64 // Current Resource Settings
65 Method (_CRS, 0, Serialized)
66 {
Stefan Reinauer71a3d962009-07-21 21:44:24 +000067 //CreateDwordField(PDRS, ^RCRB._BAS, RBR0)
68 //ShiftLeft(\_SB.PCI0.LPCB.RCBA, 14, RBR0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000069
Stefan Reinauer71a3d962009-07-21 21:44:24 +000070 //CreateDwordField(PDRS, ^MCHB._BAS, MBR0)
71 //ShiftLeft(\_SB.PCI0.MCHC.MHBR, 14, MBR0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000072
Stefan Reinauer71a3d962009-07-21 21:44:24 +000073 //CreateDwordField(PDRS, ^DMIB._BAS, DBR0)
74 //ShiftLeft(\_SB.PCI0.MCHC.DMBR, 12, DBR0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000075
Stefan Reinauer71a3d962009-07-21 21:44:24 +000076 //CreateDwordField(PDRS, ^EGPB._BAS, EBR0)
77 //ShiftLeft(\_SB.PCI0.MCHC.EPBR, 12, EBR0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000078
Stefan Reinauer71a3d962009-07-21 21:44:24 +000079 //CreateDwordField(PDRS, ^PCIE._BAS, PBR0)
80 //ShiftLeft(\_SB.PCI0.MCHC.PXBR, 26, PBR0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000081
Stefan Reinauer71a3d962009-07-21 21:44:24 +000082 //CreateDwordField(PDRS, ^PCIE._LEN, PSZ0)
83 //ShiftLeft(0x10000000, \_SB.PCI0.MCHC.PXSZ, PSZ0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000084
85 Return(PDRS)
86 }
87}
88
89// PCIe graphics port 0:1.0
Patrick Georgi334328a2012-02-16 19:01:22 +010090#include "peg.asl"
Stefan Reinauercc46e732009-03-13 00:44:09 +000091
92// Integrated graphics 0:2.0
Patrick Georgi334328a2012-02-16 19:01:22 +010093#include "igd.asl"