ASoC: SOF: Intel: hda-mlink: add helper to get SoundWire hlink
[linux-2.6-block.git] / include / sound / hda-mlink.h
1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
2 /*
3  * This file is provided under a dual BSD/GPLv2 license.  When using or
4  * redistributing this file, you may do so under either license.
5  *
6  * Copyright(c) 2022-2023 Intel Corporation. All rights reserved.
7  */
8
9 struct hdac_bus;
10 struct hdac_ext_link;
11
12 #if IS_ENABLED(CONFIG_SND_SOC_SOF_HDA_MLINK)
13
14 int hda_bus_ml_init(struct hdac_bus *bus);
15 void hda_bus_ml_free(struct hdac_bus *bus);
16
17 int hdac_bus_eml_get_count(struct hdac_bus *bus, bool alt, int elid);
18 void hdac_bus_eml_enable_interrupt(struct hdac_bus *bus, bool alt, int elid, bool enable);
19 bool hdac_bus_eml_check_interrupt(struct hdac_bus *bus, bool alt, int elid);
20
21 int hdac_bus_eml_set_syncprd_unlocked(struct hdac_bus *bus, bool alt, int elid, u32 syncprd);
22 int hdac_bus_eml_sdw_set_syncprd_unlocked(struct hdac_bus *bus, u32 syncprd);
23
24 int hdac_bus_eml_wait_syncpu_unlocked(struct hdac_bus *bus, bool alt, int elid);
25 int hdac_bus_eml_sdw_wait_syncpu_unlocked(struct hdac_bus *bus);
26
27 void hdac_bus_eml_sync_arm_unlocked(struct hdac_bus *bus, bool alt, int elid, int sublink);
28 void hdac_bus_eml_sdw_sync_arm_unlocked(struct hdac_bus *bus, int sublink);
29
30 int hdac_bus_eml_sync_go_unlocked(struct hdac_bus *bus, bool alt, int elid);
31 int hdac_bus_eml_sdw_sync_go_unlocked(struct hdac_bus *bus);
32
33 bool hdac_bus_eml_check_cmdsync_unlocked(struct hdac_bus *bus, bool alt, int elid);
34 bool hdac_bus_eml_sdw_check_cmdsync_unlocked(struct hdac_bus *bus);
35
36 int hdac_bus_eml_power_up(struct hdac_bus *bus, bool alt, int elid, int sublink);
37 int hdac_bus_eml_power_up_unlocked(struct hdac_bus *bus, bool alt, int elid, int sublink);
38
39 int hdac_bus_eml_power_down(struct hdac_bus *bus, bool alt, int elid, int sublink);
40 int hdac_bus_eml_power_down_unlocked(struct hdac_bus *bus, bool alt, int elid, int sublink);
41
42 int hdac_bus_eml_sdw_power_up_unlocked(struct hdac_bus *bus, int sublink);
43 int hdac_bus_eml_sdw_power_down_unlocked(struct hdac_bus *bus, int sublink);
44
45 int hdac_bus_eml_sdw_set_lsdiid(struct hdac_bus *bus, int sublink, int dev_num);
46
47 void hda_bus_ml_put_all(struct hdac_bus *bus);
48 void hda_bus_ml_reset_losidv(struct hdac_bus *bus);
49 int hda_bus_ml_resume(struct hdac_bus *bus);
50 int hda_bus_ml_suspend(struct hdac_bus *bus);
51
52 struct hdac_ext_link *hdac_bus_eml_ssp_get_hlink(struct hdac_bus *bus);
53 struct hdac_ext_link *hdac_bus_eml_dmic_get_hlink(struct hdac_bus *bus);
54 struct hdac_ext_link *hdac_bus_eml_sdw_get_hlink(struct hdac_bus *bus);
55
56 struct mutex *hdac_bus_eml_get_mutex(struct hdac_bus *bus, bool alt, int elid);
57
58 int hdac_bus_eml_enable_offload(struct hdac_bus *bus, bool alt, int elid, bool enable);
59
60 #else
61
62 static inline int
63 hda_bus_ml_init(struct hdac_bus *bus) { return 0; }
64
65 static inline void hda_bus_ml_free(struct hdac_bus *bus) { }
66
67 static inline int
68 hdac_bus_eml_get_count(struct hdac_bus *bus, bool alt, int elid) { return 0; }
69
70 static inline void
71 hdac_bus_eml_enable_interrupt(struct hdac_bus *bus, bool alt, int elid, bool enable) { }
72
73 static inline bool
74 hdac_bus_eml_check_interrupt(struct hdac_bus *bus, bool alt, int elid) { return false; }
75
76 static inline int
77 hdac_bus_eml_set_syncprd_unlocked(struct hdac_bus *bus, bool alt, int elid, u32 syncprd)
78 {
79         return 0;
80 }
81
82 static inline int
83 hdac_bus_eml_sdw_set_syncprd_unlocked(struct hdac_bus *bus, u32 syncprd)
84 {
85         return 0;
86 }
87
88 static inline int
89 hdac_bus_eml_wait_syncpu_unlocked(struct hdac_bus *bus, bool alt, int elid)
90 {
91         return 0;
92 }
93
94 static inline int
95 hdac_bus_eml_sdw_wait_syncpu_unlocked(struct hdac_bus *bus) { return 0; }
96
97 static inline void
98 hdac_bus_eml_sync_arm_unlocked(struct hdac_bus *bus, bool alt, int elid, int sublink) { }
99
100 static inline void
101 hdac_bus_eml_sdw_sync_arm_unlocked(struct hdac_bus *bus, int sublink) { }
102
103 static inline int
104 hdac_bus_eml_sync_go_unlocked(struct hdac_bus *bus, bool alt, int elid) { return 0; }
105
106 static inline int
107 hdac_bus_eml_sdw_sync_go_unlocked(struct hdac_bus *bus) { return 0; }
108
109 static inline bool
110 hdac_bus_eml_check_cmdsync_unlocked(struct hdac_bus *bus, bool alt, int elid) { return false; }
111
112 static inline bool
113 hdac_bus_eml_sdw_check_cmdsync_unlocked(struct hdac_bus *bus) { return false; }
114
115 static inline int
116 hdac_bus_eml_power_up(struct hdac_bus *bus, bool alt, int elid, int sublink)
117 {
118         return 0;
119 }
120
121 static inline int
122 hdac_bus_eml_power_up_unlocked(struct hdac_bus *bus, bool alt, int elid, int sublink)
123 {
124         return 0;
125 }
126
127 static inline int
128 hdac_bus_eml_power_down(struct hdac_bus *bus, bool alt, int elid, int sublink)
129 {
130         return 0;
131 }
132
133 static inline int
134 hdac_bus_eml_power_down_unlocked(struct hdac_bus *bus, bool alt, int elid, int sublink)
135 {
136         return 0;
137 }
138
139 static inline int
140 hdac_bus_eml_sdw_power_up_unlocked(struct hdac_bus *bus, int sublink) { return 0; }
141
142 static inline int
143 hdac_bus_eml_sdw_power_down_unlocked(struct hdac_bus *bus, int sublink) { return 0; }
144
145 static inline int
146 hdac_bus_eml_sdw_set_lsdiid(struct hdac_bus *bus, int sublink, int dev_num) { return 0; }
147
148 static inline void hda_bus_ml_put_all(struct hdac_bus *bus) { }
149 static inline void hda_bus_ml_reset_losidv(struct hdac_bus *bus) { }
150 static inline int hda_bus_ml_resume(struct hdac_bus *bus) { return 0; }
151 static inline int hda_bus_ml_suspend(struct hdac_bus *bus) { return 0; }
152
153 static inline struct hdac_ext_link *
154 hdac_bus_eml_ssp_get_hlink(struct hdac_bus *bus) { return NULL; }
155
156 static inline struct hdac_ext_link *
157 hdac_bus_eml_dmic_get_hlink(struct hdac_bus *bus) { return NULL; }
158
159 static inline struct hdac_ext_link *
160 hdac_bus_eml_sdw_get_hlink(struct hdac_bus *bus) { return NULL; }
161
162 static inline struct mutex *
163 hdac_bus_eml_get_mutex(struct hdac_bus *bus, bool alt, int elid) { return NULL; }
164
165 static inline int
166 hdac_bus_eml_enable_offload(struct hdac_bus *bus, bool alt, int elid, bool enable)
167 {
168         return 0;
169 }
170 #endif /* CONFIG_SND_SOC_SOF_HDA */