2019-05-27 13:55:05 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2013-05-30 21:07:10 +07:00
|
|
|
/*
|
|
|
|
*/
|
2015-01-08 22:54:15 +07:00
|
|
|
#ifndef __SOUND_HDA_INTEL_H
|
|
|
|
#define __SOUND_HDA_INTEL_H
|
|
|
|
|
2015-02-20 00:04:17 +07:00
|
|
|
#include "hda_controller.h"
|
2015-01-08 22:54:15 +07:00
|
|
|
|
|
|
|
struct hda_intel {
|
|
|
|
struct azx chip;
|
|
|
|
|
|
|
|
/* for pending irqs */
|
|
|
|
struct work_struct irq_pending_work;
|
|
|
|
|
|
|
|
/* sync probing */
|
|
|
|
struct completion probe_wait;
|
|
|
|
struct work_struct probe_work;
|
|
|
|
|
|
|
|
/* card list (for power_save trigger) */
|
|
|
|
struct list_head list;
|
|
|
|
|
|
|
|
/* extra flags */
|
|
|
|
unsigned int irq_pending_warned:1;
|
2015-04-15 03:13:18 +07:00
|
|
|
unsigned int probe_continued:1;
|
2015-01-08 22:54:15 +07:00
|
|
|
|
2015-09-05 01:49:36 +07:00
|
|
|
/* vga_switcheroo setup */
|
2015-01-08 22:54:15 +07:00
|
|
|
unsigned int use_vga_switcheroo:1;
|
|
|
|
unsigned int vga_switcheroo_registered:1;
|
|
|
|
unsigned int init_failed:1; /* delayed init failed */
|
|
|
|
|
2015-04-29 16:43:36 +07:00
|
|
|
bool need_i915_power:1; /* the hda controller needs i915 power */
|
2015-01-08 22:54:15 +07:00
|
|
|
};
|
2013-05-30 21:07:10 +07:00
|
|
|
|
|
|
|
#endif
|