acp-config.c (3bf3e21c15d4386a5f15118ec39bbc1b67ea5759) acp-config.c (c3ab23a10771bbe06300e5374efa809789c65455)
1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2//
3// This file is provided under a dual BSD/GPLv2 license. When using or
4// redistributing this file, you may do so under either license.
5//
1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2//
3// This file is provided under a dual BSD/GPLv2 license. When using or
4// redistributing this file, you may do so under either license.
5//
6// Copyright(c) 2021 Advanced Micro Devices, Inc.
6// Copyright(c) 2021, 2023 Advanced Micro Devices, Inc.
7//
8// Authors: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com>
9//
10
11/* ACP machine configuration module */
12
13#include <linux/acpi.h>
14#include <linux/bits.h>

--- 28 unchanged lines hidden (view full) ---

43 .matches = {
44 DMI_MATCH(DMI_SYS_VENDOR, "Google"),
45 },
46 },
47 {}
48 },
49 },
50 {
7//
8// Authors: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com>
9//
10
11/* ACP machine configuration module */
12
13#include <linux/acpi.h>
14#include <linux/bits.h>

--- 28 unchanged lines hidden (view full) ---

43 .matches = {
44 DMI_MATCH(DMI_SYS_VENDOR, "Google"),
45 },
46 },
47 {}
48 },
49 },
50 {
51 .flags = FLAG_AMD_LEGACY,
52 .device = ACP_PCI_DEV_ID,
53 .dmi_table = (const struct dmi_system_id []) {
54 {
55 .matches = {
56 DMI_MATCH(DMI_SYS_VENDOR, "Valve"),
57 DMI_MATCH(DMI_PRODUCT_NAME, "Jupiter"),
58 },
59 },
60 {}
61 },
62 },
63 {
51 .flags = FLAG_AMD_SOF,
52 .device = ACP_PCI_DEV_ID,
53 .dmi_table = (const struct dmi_system_id []) {
54 {
55 .matches = {
56 DMI_MATCH(DMI_SYS_VENDOR, "Valve"),
57 DMI_MATCH(DMI_PRODUCT_NAME, "Galileo"),
58 DMI_MATCH(DMI_PRODUCT_FAMILY, "Sephiroth"),

--- 220 unchanged lines hidden ---
64 .flags = FLAG_AMD_SOF,
65 .device = ACP_PCI_DEV_ID,
66 .dmi_table = (const struct dmi_system_id []) {
67 {
68 .matches = {
69 DMI_MATCH(DMI_SYS_VENDOR, "Valve"),
70 DMI_MATCH(DMI_PRODUCT_NAME, "Galileo"),
71 DMI_MATCH(DMI_PRODUCT_FAMILY, "Sephiroth"),

--- 220 unchanged lines hidden ---