blob: df21e9d9a586d44d879e2ac7ca3c609cbe93ffd7 [file] [log] [blame]
Angel Ponsae593872020-04-04 18:50:57 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Martin Roth5c354b92019-04-22 14:55:16 -06002
Raul E Rangelc3d78462021-01-22 15:23:02 -07003#include <arch/ioapic.h>
4
Martin Roth5c354b92019-04-22 14:55:16 -06005/* System Bus */
6/* _SB.PCI0 */
7
8/* Operating System Capabilities Method */
9Method(_OSC,4)
10{
11 /* Check for proper PCI/PCIe UUID */
Elyes HAOUAS28b68ae2020-09-24 20:18:26 +020012 If (Arg0 == ToUUID("33DB4D5B-1FF7-401C-9657-7441C03DD766"))
Martin Roth5c354b92019-04-22 14:55:16 -060013 {
14 /* Let OS control everything */
15 Return (Arg3)
16 } Else {
17 CreateDWordField(Arg3,0,CDW1)
Elyes HAOUAS28b68ae2020-09-24 20:18:26 +020018 CDW1 |= 4 // Unrecognized UUID
19 Return (Arg3)
Martin Roth5c354b92019-04-22 14:55:16 -060020 }
21}
22
Martin Roth5c354b92019-04-22 14:55:16 -060023/* 0:14.3 - LPC */
24#include <soc/amd/common/acpi/lpc.asl>
Josie Nordrumda4d9da2020-10-22 17:50:20 -060025#include <soc/amd/common/acpi/platform.asl>
Martin Roth5c354b92019-04-22 14:55:16 -060026
Martin Roth5c354b92019-04-22 14:55:16 -060027Name(CRES, ResourceTemplate() {
28 /* Set the Bus number and Secondary Bus number for the PCI0 device
29 * The Secondary bus range for PCI0 lets the system
30 * know what bus values are allowed on the downstream
31 * side of this PCI bus if there is a PCI-PCI bridge.
Martin Roth26f97f92021-10-01 14:53:22 -060032 * PCI buses can have 256 secondary buses which
Martin Roth5c354b92019-04-22 14:55:16 -060033 * range from [0-0xFF] but they do not need to be
34 * sequential.
35 */
36 WordBusNumber (ResourceProducer, MinFixed, MaxFixed, PosDecode,
37 0x0000, /* address granularity */
38 0x0000, /* range minimum */
39 0x00ff, /* range maximum */
40 0x0000, /* translation */
41 0x0100, /* length */
42 ,, PSB0) /* ResourceSourceIndex, ResourceSource, DescriptorName */
43
44 IO(Decode16, 0x0cf8, 0x0cf8, 1, 8)
45
46 WORDIO(ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
47 0x0000, /* address granularity */
48 0x0000, /* range minimum */
49 0x0cf7, /* range maximum */
50 0x0000, /* translation */
51 0x0cf8 /* length */
52 )
Martin Roth5c354b92019-04-22 14:55:16 -060053
54 WORDIO(ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
55 0x0000, /* address granularity */
56 0x0d00, /* range minimum */
57 0xffff, /* range maximum */
58 0x0000, /* translation */
59 0xf300 /* length */
60 )
61
62 Memory32Fixed(READONLY, 0x000a0000, 0x00020000, VGAM) /* VGA memory space */
63 Memory32Fixed(READONLY, 0x000c0000, 0x00020000, EMM1) /* Assume C0000-E0000 empty */
64
65 /* memory space for PCI BARs below 4GB */
66 Memory32Fixed(ReadOnly, 0x00000000, 0x00000000, MMIO)
67}) /* End Name(_SB.PCI0.CRES) */
68
69Method(_CRS, 0) {
70 /* DBGO("\\_SB\\PCI0\\_CRS\n") */
71 CreateDWordField(CRES, ^MMIO._BAS, MM1B)
72 CreateDWordField(CRES, ^MMIO._LEN, MM1L)
73
Raul E Rangeld75ee462021-02-18 16:50:47 -070074 /* Declare memory between TOM1 and MMCONF as available for PCI MMIO. */
Elyes HAOUAS28b68ae2020-09-24 20:18:26 +020075 MM1B = TOM1
Shelley Chen4e9bb332021-10-20 15:43:45 -070076 Local0 = CONFIG_ECAM_MMCONF_BASE_ADDRESS
Elyes HAOUAS28b68ae2020-09-24 20:18:26 +020077 Local0 -= TOM1
78 MM1L = Local0
Martin Roth5c354b92019-04-22 14:55:16 -060079
Aaron Durbin8c28e512020-06-23 13:49:21 -060080 CreateWordField(CRES, ^PSB0._MAX, BMAX)
81 CreateWordField(CRES, ^PSB0._LEN, BLEN)
Shelley Chen4e9bb332021-10-20 15:43:45 -070082 BMAX = CONFIG_ECAM_MMCONF_BUS_NUMBER - 1
83 BLEN = CONFIG_ECAM_MMCONF_BUS_NUMBER
Aaron Durbin8c28e512020-06-23 13:49:21 -060084
Martin Roth5c354b92019-04-22 14:55:16 -060085 Return(CRES) /* note to change the Name buffer */
86} /* end of Method(_SB.PCI0._CRS) */