26 lines
742 B
C
26 lines
742 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* HD audio Component Binding Interface
|
|
*
|
|
* Copyright (C) 2021 Cirrus Logic, Inc. and
|
|
* Cirrus Logic International Semiconductor Ltd.
|
|
*/
|
|
|
|
#include <linux/acpi.h>
|
|
#include <linux/component.h>
|
|
|
|
#define HDA_MAX_COMPONENTS 4
|
|
#define HDA_MAX_NAME_SIZE 50
|
|
|
|
struct hda_component {
|
|
struct device *dev;
|
|
char name[HDA_MAX_NAME_SIZE];
|
|
struct hda_codec *codec;
|
|
struct acpi_device *adev;
|
|
bool acpi_notifications_supported;
|
|
void (*acpi_notify)(acpi_handle handle, u32 event, struct device *dev);
|
|
void (*pre_playback_hook)(struct device *dev, int action);
|
|
void (*playback_hook)(struct device *dev, int action);
|
|
void (*post_playback_hook)(struct device *dev, int action);
|
|
};
|