blob: 50fabdc5deed7da20f9ffe03ff50e90486552e59 [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"
Elyes HAOUAS4ec67fc2019-10-30 12:39:17 +010019#include <southbridge/intel/common/rcba.h>
Stefan Reinauercc46e732009-03-13 00:44:09 +000020
Denis 'GNUtoo' Carikli4b213a82013-03-28 14:24:39 +010021/* Operating System Capabilities Method */
22Method (_OSC, 4)
23{
Denis 'GNUtoo' Carikli4b213a82013-03-28 14:24:39 +010024 /* Check for proper PCI/PCIe UUID */
25 If (LEqual(Arg0, ToUUID("33DB4D5B-1FF7-401C-9657-7441C03DD766")))
26 {
27 /* Let OS control everything */
28 Return(Arg3)
29 } Else {
Marc Jones1faa11e2018-08-15 22:17:45 -060030 CreateDWordField(Arg3, 0, CDW1)
Denis 'GNUtoo' Carikli4b213a82013-03-28 14:24:39 +010031 Or(CDW1, 4, CDW1) // Unrecognized UUID, so set bit 2 to 1
32 Return(Arg3)
33 }
34}
35
Stefan Reinauercc46e732009-03-13 00:44:09 +000036/* PCI Device Resource Consumption */
37Device (PDRC)
38{
39 Name (_HID, EISAID("PNP0C02"))
40 Name (_UID, 1)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000041
42 // This does not seem to work correctly yet - set values statically for
43 // now.
Stefan Reinauer109ab312009-08-12 16:08:05 +000044
Stefan Reinauer71a3d962009-07-21 21:44:24 +000045 //Name (PDRS, ResourceTemplate() {
46 // Memory32Fixed(ReadWrite, 0x00000000, 0x00004000, RCRB) // RCBA
47 // Memory32Fixed(ReadWrite, 0x00000000, 0x00004000, MCHB) // MCHBAR
48 // Memory32Fixed(ReadWrite, 0x00000000, 0x00001000, DMIB) // DMIBAR
49 // Memory32Fixed(ReadWrite, 0x00000000, 0x00001000, EGPB) // EPBAR
50 // Memory32Fixed(ReadWrite, 0x00000000, 0x00000000, PCIE) // PCIE BAR
51 // Memory32Fixed(ReadWrite, 0xfed20000, 0x00070000, ICHB) // Misc ICH
52 //})
53
Stefan Reinauercc46e732009-03-13 00:44:09 +000054 Name (PDRS, ResourceTemplate() {
Elyes HAOUAS4ec67fc2019-10-30 12:39:17 +010055 Memory32Fixed(ReadWrite, DEFAULT_RCBA, 0x00004000)
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000056 Memory32Fixed(ReadWrite, DEFAULT_MCHBAR, 0x00004000)
57 Memory32Fixed(ReadWrite, DEFAULT_DMIBAR, 0x00001000)
58 Memory32Fixed(ReadWrite, DEFAULT_EPBAR, 0x00001000)
Kyösti Mälkki503d3242019-03-05 07:54:28 +020059 Memory32Fixed(ReadWrite, CONFIG_MMCONF_BASE_ADDRESS, 0x04000000)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000060 Memory32Fixed(ReadWrite, 0xfed20000, 0x00020000) // Misc ICH
61 Memory32Fixed(ReadWrite, 0xfed40000, 0x00005000) // Misc ICH
62 Memory32Fixed(ReadWrite, 0xfed45000, 0x0004b000) // Misc ICH
Stefan Reinauercc46e732009-03-13 00:44:09 +000063 })
64
65 // Current Resource Settings
66 Method (_CRS, 0, Serialized)
67 {
Stefan Reinauer71a3d962009-07-21 21:44:24 +000068 //CreateDwordField(PDRS, ^RCRB._BAS, RBR0)
69 //ShiftLeft(\_SB.PCI0.LPCB.RCBA, 14, RBR0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000070
Stefan Reinauer71a3d962009-07-21 21:44:24 +000071 //CreateDwordField(PDRS, ^MCHB._BAS, MBR0)
72 //ShiftLeft(\_SB.PCI0.MCHC.MHBR, 14, MBR0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000073
Stefan Reinauer71a3d962009-07-21 21:44:24 +000074 //CreateDwordField(PDRS, ^DMIB._BAS, DBR0)
75 //ShiftLeft(\_SB.PCI0.MCHC.DMBR, 12, DBR0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000076
Stefan Reinauer71a3d962009-07-21 21:44:24 +000077 //CreateDwordField(PDRS, ^EGPB._BAS, EBR0)
78 //ShiftLeft(\_SB.PCI0.MCHC.EPBR, 12, EBR0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000079
Stefan Reinauer71a3d962009-07-21 21:44:24 +000080 //CreateDwordField(PDRS, ^PCIE._BAS, PBR0)
81 //ShiftLeft(\_SB.PCI0.MCHC.PXBR, 26, PBR0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000082
Stefan Reinauer71a3d962009-07-21 21:44:24 +000083 //CreateDwordField(PDRS, ^PCIE._LEN, PSZ0)
84 //ShiftLeft(0x10000000, \_SB.PCI0.MCHC.PXSZ, PSZ0)
Stefan Reinauercc46e732009-03-13 00:44:09 +000085
86 Return(PDRS)
87 }
88}
89
90// PCIe graphics port 0:1.0
Patrick Georgi334328a2012-02-16 19:01:22 +010091#include "peg.asl"
Stefan Reinauercc46e732009-03-13 00:44:09 +000092
93// Integrated graphics 0:2.0
Patrick Georgi334328a2012-02-16 19:01:22 +010094#include "igd.asl"