1*9e5fbd4fSriastradh /* $NetBSD: intel_lpe_audio.c,v 1.1 2021/12/19 11:49:12 riastradh Exp $ */
2*9e5fbd4fSriastradh
3*9e5fbd4fSriastradh /*-
4*9e5fbd4fSriastradh * Copyright (c) 2021 The NetBSD Foundation, Inc.
5*9e5fbd4fSriastradh * All rights reserved.
6*9e5fbd4fSriastradh *
7*9e5fbd4fSriastradh * This code is derived from software contributed to The NetBSD Foundation
8*9e5fbd4fSriastradh * by Taylor R. Campbell.
9*9e5fbd4fSriastradh *
10*9e5fbd4fSriastradh * Redistribution and use in source and binary forms, with or without
11*9e5fbd4fSriastradh * modification, are permitted provided that the following conditions
12*9e5fbd4fSriastradh * are met:
13*9e5fbd4fSriastradh * 1. Redistributions of source code must retain the above copyright
14*9e5fbd4fSriastradh * notice, this list of conditions and the following disclaimer.
15*9e5fbd4fSriastradh * 2. Redistributions in binary form must reproduce the above copyright
16*9e5fbd4fSriastradh * notice, this list of conditions and the following disclaimer in the
17*9e5fbd4fSriastradh * documentation and/or other materials provided with the distribution.
18*9e5fbd4fSriastradh *
19*9e5fbd4fSriastradh * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20*9e5fbd4fSriastradh * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21*9e5fbd4fSriastradh * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22*9e5fbd4fSriastradh * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23*9e5fbd4fSriastradh * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24*9e5fbd4fSriastradh * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25*9e5fbd4fSriastradh * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26*9e5fbd4fSriastradh * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27*9e5fbd4fSriastradh * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28*9e5fbd4fSriastradh * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29*9e5fbd4fSriastradh * POSSIBILITY OF SUCH DAMAGE.
30*9e5fbd4fSriastradh */
31*9e5fbd4fSriastradh
32*9e5fbd4fSriastradh /* intel_lpe_audio.c stubs */
33*9e5fbd4fSriastradh
34*9e5fbd4fSriastradh #include <sys/cdefs.h>
35*9e5fbd4fSriastradh __KERNEL_RCSID(0, "$NetBSD: intel_lpe_audio.c,v 1.1 2021/12/19 11:49:12 riastradh Exp $");
36*9e5fbd4fSriastradh
37*9e5fbd4fSriastradh #include "i915_drv.h"
38*9e5fbd4fSriastradh
39*9e5fbd4fSriastradh #include "display/intel_lpe_audio.h"
40*9e5fbd4fSriastradh
41*9e5fbd4fSriastradh int
intel_lpe_audio_init(struct drm_i915_private * dev_priv)42*9e5fbd4fSriastradh intel_lpe_audio_init(struct drm_i915_private *dev_priv)
43*9e5fbd4fSriastradh {
44*9e5fbd4fSriastradh return 0;
45*9e5fbd4fSriastradh }
46*9e5fbd4fSriastradh
47*9e5fbd4fSriastradh void
intel_lpe_audio_teardown(struct drm_i915_private * dev_priv)48*9e5fbd4fSriastradh intel_lpe_audio_teardown(struct drm_i915_private *dev_priv)
49*9e5fbd4fSriastradh {
50*9e5fbd4fSriastradh }
51*9e5fbd4fSriastradh
52*9e5fbd4fSriastradh void
intel_lpe_audio_irq_handler(struct drm_i915_private * dev_priv)53*9e5fbd4fSriastradh intel_lpe_audio_irq_handler(struct drm_i915_private *dev_priv)
54*9e5fbd4fSriastradh {
55*9e5fbd4fSriastradh }
56*9e5fbd4fSriastradh
57*9e5fbd4fSriastradh void
intel_lpe_audio_notify(struct drm_i915_private * dev_priv,enum pipe pipe,enum port port,const void * eld,int ls_clock,bool dp_output)58*9e5fbd4fSriastradh intel_lpe_audio_notify(struct drm_i915_private *dev_priv, enum pipe pipe,
59*9e5fbd4fSriastradh enum port port, const void *eld, int ls_clock, bool dp_output)
60*9e5fbd4fSriastradh {
61*9e5fbd4fSriastradh }
62