Thomas Gleixner | 1802d0b | 2019-05-27 08:55:21 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 2 | /* |
| 3 | * hdmi-codec.h - HDMI Codec driver API |
| 4 | * |
Alexander A. Klimov | 7ed33ea | 2020-07-19 17:17:05 +0200 | [diff] [blame] | 5 | * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 6 | * |
| 7 | * Author: Jyri Sarha <jsarha@ti.com> |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef __HDMI_CODEC_H__ |
| 11 | #define __HDMI_CODEC_H__ |
| 12 | |
Kuninori Morimoto | 96203fb | 2017-05-18 01:40:20 +0000 | [diff] [blame] | 13 | #include <linux/of_graph.h> |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 14 | #include <linux/hdmi.h> |
| 15 | #include <drm/drm_edid.h> |
| 16 | #include <sound/asoundef.h> |
Kuninori Morimoto | 96203fb | 2017-05-18 01:40:20 +0000 | [diff] [blame] | 17 | #include <sound/soc.h> |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 18 | #include <uapi/sound/asound.h> |
| 19 | |
| 20 | /* |
| 21 | * Protocol between ASoC cpu-dai and HDMI-encoder |
| 22 | */ |
| 23 | struct hdmi_codec_daifmt { |
| 24 | enum { |
| 25 | HDMI_I2S, |
| 26 | HDMI_RIGHT_J, |
| 27 | HDMI_LEFT_J, |
| 28 | HDMI_DSP_A, |
| 29 | HDMI_DSP_B, |
| 30 | HDMI_AC97, |
| 31 | HDMI_SPDIF, |
| 32 | } fmt; |
Takashi Sakamoto | 9e4d59a | 2016-12-16 18:26:54 +0900 | [diff] [blame] | 33 | unsigned int bit_clk_inv:1; |
| 34 | unsigned int frame_clk_inv:1; |
| 35 | unsigned int bit_clk_master:1; |
| 36 | unsigned int frame_clk_master:1; |
Sia Jee Heng | 28785f5 | 2021-02-04 09:42:55 +0800 | [diff] [blame] | 37 | /* bit_fmt could be standard PCM format or |
| 38 | * IEC958 encoded format. ALSA IEC958 plugin will pass |
| 39 | * IEC958_SUBFRAME format to the underneath driver. |
| 40 | */ |
| 41 | snd_pcm_format_t bit_fmt; |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | /* |
| 45 | * HDMI audio parameters |
| 46 | */ |
| 47 | struct hdmi_codec_params { |
| 48 | struct hdmi_audio_infoframe cea; |
| 49 | struct snd_aes_iec958 iec; |
| 50 | int sample_rate; |
| 51 | int sample_width; |
| 52 | int channels; |
| 53 | }; |
| 54 | |
Cheng-Yi Chiang | 6fa5963 | 2019-07-17 16:33:23 +0800 | [diff] [blame] | 55 | typedef void (*hdmi_codec_plugged_cb)(struct device *dev, |
| 56 | bool plugged); |
| 57 | |
Kuninori Morimoto | efc9194 | 2016-06-24 02:47:55 +0000 | [diff] [blame] | 58 | struct hdmi_codec_pdata; |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 59 | struct hdmi_codec_ops { |
| 60 | /* |
| 61 | * Called when ASoC starts an audio stream setup. |
| 62 | * Optional |
| 63 | */ |
Kuninori Morimoto | efc9194 | 2016-06-24 02:47:55 +0000 | [diff] [blame] | 64 | int (*audio_startup)(struct device *dev, void *data); |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 65 | |
| 66 | /* |
| 67 | * Configures HDMI-encoder for audio stream. |
Maxime Ripard | 2fef64e | 2021-05-25 15:23:47 +0200 | [diff] [blame] | 68 | * Having either prepare or hw_params is mandatory. |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 69 | */ |
Kuninori Morimoto | efc9194 | 2016-06-24 02:47:55 +0000 | [diff] [blame] | 70 | int (*hw_params)(struct device *dev, void *data, |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 71 | struct hdmi_codec_daifmt *fmt, |
| 72 | struct hdmi_codec_params *hparms); |
| 73 | |
| 74 | /* |
Maxime Ripard | 2fef64e | 2021-05-25 15:23:47 +0200 | [diff] [blame] | 75 | * Configures HDMI-encoder for audio stream. Can be called |
| 76 | * multiple times for each setup. |
| 77 | * |
| 78 | * Having either prepare or hw_params is mandatory. |
| 79 | */ |
| 80 | int (*prepare)(struct device *dev, void *data, |
| 81 | struct hdmi_codec_daifmt *fmt, |
| 82 | struct hdmi_codec_params *hparms); |
| 83 | |
| 84 | /* |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 85 | * Shuts down the audio stream. |
| 86 | * Mandatory |
| 87 | */ |
Kuninori Morimoto | efc9194 | 2016-06-24 02:47:55 +0000 | [diff] [blame] | 88 | void (*audio_shutdown)(struct device *dev, void *data); |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 89 | |
| 90 | /* |
| 91 | * Mute/unmute HDMI audio stream. |
| 92 | * Optional |
| 93 | */ |
Kuninori Morimoto | d789710 | 2020-07-09 10:55:45 +0900 | [diff] [blame] | 94 | int (*mute_stream)(struct device *dev, void *data, |
| 95 | bool enable, int direction); |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 96 | |
| 97 | /* |
| 98 | * Provides EDID-Like-Data from connected HDMI device. |
| 99 | * Optional |
| 100 | */ |
Kuninori Morimoto | efc9194 | 2016-06-24 02:47:55 +0000 | [diff] [blame] | 101 | int (*get_eld)(struct device *dev, void *data, |
| 102 | uint8_t *buf, size_t len); |
Kuninori Morimoto | 96203fb | 2017-05-18 01:40:20 +0000 | [diff] [blame] | 103 | |
| 104 | /* |
| 105 | * Getting DAI ID |
| 106 | * Optional |
| 107 | */ |
| 108 | int (*get_dai_id)(struct snd_soc_component *comment, |
| 109 | struct device_node *endpoint); |
Cheng-Yi Chiang | 6fa5963 | 2019-07-17 16:33:23 +0800 | [diff] [blame] | 110 | |
| 111 | /* |
| 112 | * Hook callback function to handle connector plug event. |
| 113 | * Optional |
| 114 | */ |
| 115 | int (*hook_plugged_cb)(struct device *dev, void *data, |
| 116 | hdmi_codec_plugged_cb fn, |
| 117 | struct device *codec_dev); |
Kuninori Morimoto | d789710 | 2020-07-09 10:55:45 +0900 | [diff] [blame] | 118 | |
| 119 | /* bit field */ |
| 120 | unsigned int no_capture_mute:1; |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 121 | }; |
| 122 | |
| 123 | /* HDMI codec initalization data */ |
| 124 | struct hdmi_codec_pdata { |
| 125 | const struct hdmi_codec_ops *ops; |
| 126 | uint i2s:1; |
| 127 | uint spdif:1; |
| 128 | int max_i2s_channels; |
Kuninori Morimoto | efc9194 | 2016-06-24 02:47:55 +0000 | [diff] [blame] | 129 | void *data; |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 130 | }; |
| 131 | |
Cheng-Yi Chiang | 6fa5963 | 2019-07-17 16:33:23 +0800 | [diff] [blame] | 132 | struct snd_soc_component; |
| 133 | struct snd_soc_jack; |
| 134 | |
Jyri Sarha | 0918411 | 2016-03-31 16:36:00 +0300 | [diff] [blame] | 135 | #define HDMI_CODEC_DRV_NAME "hdmi-audio-codec" |
| 136 | |
| 137 | #endif /* __HDMI_CODEC_H__ */ |