Blame view

include/drm/i915_component.h 1.68 KB
58fddc288   Imre Deak   drm/i915: add com...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  /*
   * Copyright © 2014 Intel Corporation
   *
   * Permission is hereby granted, free of charge, to any person obtaining a
   * copy of this software and associated documentation files (the "Software"),
   * to deal in the Software without restriction, including without limitation
   * the rights to use, copy, modify, merge, publish, distribute, sublicense,
   * and/or sell copies of the Software, and to permit persons to whom the
   * Software is furnished to do so, subject to the following conditions:
   *
   * The above copyright notice and this permission notice (including the next
   * paragraph) shall be included in all copies or substantial portions of the
   * Software.
   *
   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
   * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
   * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
   * IN THE SOFTWARE.
   */
  
  #ifndef _I915_COMPONENT_H_
  #define _I915_COMPONENT_H_
ae891abe7   Takashi Iwai   drm/i915: Split a...
26
  #include "drm_audio_component.h"
7e8275c2f   Libin Yang   drm/i915: set pro...
27
28
  /* MAX_PORT is the number of port
   * It must be sync with I915_MAX_PORTS defined i915_drv.h
7e8275c2f   Libin Yang   drm/i915: set pro...
29
   */
841b5ed7a   Rodrigo Vivi   drm/i915/cnl: Add...
30
  #define MAX_PORTS 6
7e8275c2f   Libin Yang   drm/i915: set pro...
31

3f4c90bd2   Libin Yang   drm/i915: add ker...
32
  /**
be15aad6e   David Henningsson   drm/i915: Improve...
33
   * struct i915_audio_component - Used for direct communication between i915 and hda drivers
3f4c90bd2   Libin Yang   drm/i915: add ker...
34
35
   */
  struct i915_audio_component {
be15aad6e   David Henningsson   drm/i915: Improve...
36
  	/**
ae891abe7   Takashi Iwai   drm/i915: Split a...
37
  	 * @base: the drm_audio_component base class
be15aad6e   David Henningsson   drm/i915: Improve...
38
  	 */
ae891abe7   Takashi Iwai   drm/i915: Split a...
39
  	struct drm_audio_component	base;
be15aad6e   David Henningsson   drm/i915: Improve...
40
41
42
  	/**
  	 * @aud_sample_rate: the array of audio sample rate per port
  	 */
7e8275c2f   Libin Yang   drm/i915: set pro...
43
  	int aud_sample_rate[MAX_PORTS];
58fddc288   Imre Deak   drm/i915: add com...
44
45
46
  };
  
  #endif /* _I915_COMPONENT_H_ */