coreboot-kgpe-d16/src
Kapil Porwal 4c2c2c43d0 drivers/net/r8168: Add support for ACPI DmaProperty
BUG=b:259716145
TEST=Verified SSDT on google/osiris.

Before:
Scope (\_SB.PCI0.RP01)
{
    Device (RLTK)
    {
        Name (_HID, "R8168")  // _HID: Hardware ID
        Name (_UID, 0xD0E889DD)  // _UID: Unique ID
        Name (_DDN, "Realtek r8168")  // _DDN: DOS Device Name
        Name (_ADR, 0x00000000)  // _ADR: Address
        Name (_PRW, Package (0x02)  // _PRW: Power Resources for Wake
        {
            0x07,
            0x03
        })
    }
}

After:
Scope (\_SB.PCI0.RP01)
{
    Device (RLTK)
    {
        Name (_HID, "R8168")  // _HID: Hardware ID
        Name (_UID, 0xD0E889DD)  // _UID: Unique ID
        Name (_DDN, "Realtek r8168")  // _DDN: DOS Device Name
        Name (_ADR, 0x00000000)  // _ADR: Address
        Name (_PRW, Package (0x02)  // _PRW: Power Resources for Wake
        {
            0x07,
            0x03
        })
        Name (_DSD, Package (0x02)  // _DSD: Device-Specific Data
        {
            ToUUID ("70d24161-6dd5-4c9e-8070-705531292865"),
            Package (0x01)
            {
                Package (0x02)
                {
                    "DmaProperty",
                    One
                }
            }
        })
    }
}

Signed-off-by: Kapil Porwal <kapilporwal@google.com>
Change-Id: I647230082362b1093b63793a201eba23a6289121
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70016
Reviewed-by: Subrata Banik <subratabanik@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2022-11-29 19:50:59 +00:00
..
acpi acpi: Create a common method to add DmaProperty 2022-11-29 19:48:27 +00:00
arch arch/arm: Use unified assembly syntax 2022-11-24 15:15:41 +00:00
commonlib commonlib/fsp_relocate.c: Fix cbfstool build on 32-bit host 2022-11-25 13:53:31 +00:00
console console/post.c: Sort includes 2022-10-27 15:46:39 +00:00
cpu aopen/dxplplusu: Support SMM_ASEG and SMM_TSEG 2022-11-28 10:05:28 +00:00
device device/mdio: Provide helper functions for read and write 2022-11-24 05:58:28 +00:00
drivers drivers/net/r8168: Add support for ACPI DmaProperty 2022-11-29 19:50:59 +00:00
ec ec: Add SPDX license headers to Makefiles 2022-11-22 12:43:11 +00:00
include acpi: Create a common method to add DmaProperty 2022-11-29 19:48:27 +00:00
lib lib/malloc.c: Fix log messages 2022-11-18 16:02:28 +00:00
mainboard mb/google/brya/var/kinox: Add ACPI DmaProperty for WLAN device 2022-11-29 19:50:14 +00:00
northbridge aopen/dxplplusu: Support SMM_ASEG and SMM_TSEG 2022-11-28 10:05:28 +00:00
sbom Add SBOM (Software Bill of Materials) Generation 2022-08-22 14:48:46 +00:00
security security: Remove unnecessary space after casts 2022-11-22 12:55:26 +00:00
soc soc/intel/cmn/block/pcie/rtd3: Add support for ACPI DmaProperty 2022-11-29 19:49:36 +00:00
southbridge sb,soc/intel: Drop spurious SMI entry message 2022-11-28 10:26:27 +00:00
superio src/superio: Remove unnecessary space after casts 2022-11-21 15:03:50 +00:00
vendorcode vc/intel/edk2/edk2-stable202111: Safe guard enum macro in SmBios.h 2022-11-26 23:45:26 +00:00
Kconfig build: List all Kconfigs in CBFS config file, compress it 2022-11-18 17:19:44 +00:00