Loading...
1/* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */
2/* Copyright(c) 2015-17 Intel Corporation. */
3
4#ifndef __SDW_INTEL_LOCAL_H
5#define __SDW_INTEL_LOCAL_H
6
7struct hdac_bus;
8
9/**
10 * struct sdw_intel_link_res - Soundwire Intel link resource structure,
11 * typically populated by the controller driver.
12 * @hw_ops: platform-specific ops
13 * @mmio_base: mmio base of SoundWire registers
14 * @registers: Link IO registers base
15 * @ip_offset: offset for MCP_IP registers
16 * @shim: Audio shim pointer
17 * @shim_vs: Audio vendor-specific shim pointer
18 * @alh: ALH (Audio Link Hub) pointer
19 * @irq: Interrupt line
20 * @ops: Shim callback ops
21 * @dev: device implementing hw_params and free callbacks
22 * @shim_lock: mutex to handle access to shared SHIM registers
23 * @shim_mask: global pointer to check SHIM register initialization
24 * @clock_stop_quirks: mask defining requested behavior on pm_suspend
25 * @link_mask: global mask needed for power-up/down sequences
26 * @cdns: Cadence master descriptor
27 * @list: used to walk-through all masters exposed by the same controller
28 * @hbus: hdac_bus pointer, needed for power management
29 */
30struct sdw_intel_link_res {
31 const struct sdw_intel_hw_ops *hw_ops;
32
33 void __iomem *mmio_base; /* not strictly needed, useful for debug */
34 void __iomem *registers;
35 u32 ip_offset;
36 void __iomem *shim;
37 void __iomem *shim_vs;
38 void __iomem *alh;
39 int irq;
40 const struct sdw_intel_ops *ops;
41 struct device *dev;
42 struct mutex *shim_lock; /* protect shared registers */
43 u32 *shim_mask;
44 u32 clock_stop_quirks;
45 u32 link_mask;
46 struct sdw_cdns *cdns;
47 struct list_head list;
48 struct hdac_bus *hbus;
49};
50
51struct sdw_intel {
52 struct sdw_cdns cdns;
53 int instance;
54 struct sdw_intel_link_res *link_res;
55 bool startup_done;
56#ifdef CONFIG_DEBUG_FS
57 struct dentry *debugfs;
58#endif
59};
60
61struct sdw_intel_prop {
62 u16 clde;
63 u16 doaise2;
64 u16 dodse2;
65 u16 clds;
66 u16 clss;
67 u16 doaise;
68 u16 doais;
69 u16 dodse;
70 u16 dods;
71};
72
73enum intel_pdi_type {
74 INTEL_PDI_IN = 0,
75 INTEL_PDI_OUT = 1,
76 INTEL_PDI_BD = 2,
77};
78
79/*
80 * Read, write helpers for HW registers
81 */
82static inline int intel_readl(void __iomem *base, int offset)
83{
84 return readl(base + offset);
85}
86
87static inline void intel_writel(void __iomem *base, int offset, int value)
88{
89 writel(value, base + offset);
90}
91
92static inline u16 intel_readw(void __iomem *base, int offset)
93{
94 return readw(base + offset);
95}
96
97static inline void intel_writew(void __iomem *base, int offset, u16 value)
98{
99 writew(value, base + offset);
100}
101
102#define cdns_to_intel(_cdns) container_of(_cdns, struct sdw_intel, cdns)
103
104#define INTEL_MASTER_RESET_ITERATIONS 10
105
106#define SDW_INTEL_DELAYED_ENUMERATION_MS 100
107
108#define SDW_INTEL_CHECK_OPS(sdw, cb) ((sdw) && (sdw)->link_res && (sdw)->link_res->hw_ops && \
109 (sdw)->link_res->hw_ops->cb)
110#define SDW_INTEL_OPS(sdw, cb) ((sdw)->link_res->hw_ops->cb)
111
112#ifdef CONFIG_DEBUG_FS
113void intel_ace2x_debugfs_init(struct sdw_intel *sdw);
114void intel_ace2x_debugfs_exit(struct sdw_intel *sdw);
115#else
116static inline void intel_ace2x_debugfs_init(struct sdw_intel *sdw) {}
117static inline void intel_ace2x_debugfs_exit(struct sdw_intel *sdw) {}
118#endif
119
120static inline void sdw_intel_debugfs_init(struct sdw_intel *sdw)
121{
122 if (SDW_INTEL_CHECK_OPS(sdw, debugfs_init))
123 SDW_INTEL_OPS(sdw, debugfs_init)(sdw);
124}
125
126static inline void sdw_intel_debugfs_exit(struct sdw_intel *sdw)
127{
128 if (SDW_INTEL_CHECK_OPS(sdw, debugfs_exit))
129 SDW_INTEL_OPS(sdw, debugfs_exit)(sdw);
130}
131
132static inline int sdw_intel_register_dai(struct sdw_intel *sdw)
133{
134 if (SDW_INTEL_CHECK_OPS(sdw, register_dai))
135 return SDW_INTEL_OPS(sdw, register_dai)(sdw);
136 return -ENOTSUPP;
137}
138
139static inline void sdw_intel_check_clock_stop(struct sdw_intel *sdw)
140{
141 if (SDW_INTEL_CHECK_OPS(sdw, check_clock_stop))
142 SDW_INTEL_OPS(sdw, check_clock_stop)(sdw);
143}
144
145static inline int sdw_intel_start_bus(struct sdw_intel *sdw)
146{
147 if (SDW_INTEL_CHECK_OPS(sdw, start_bus))
148 return SDW_INTEL_OPS(sdw, start_bus)(sdw);
149 return -ENOTSUPP;
150}
151
152static inline int sdw_intel_start_bus_after_reset(struct sdw_intel *sdw)
153{
154 if (SDW_INTEL_CHECK_OPS(sdw, start_bus_after_reset))
155 return SDW_INTEL_OPS(sdw, start_bus_after_reset)(sdw);
156 return -ENOTSUPP;
157}
158
159static inline int sdw_intel_start_bus_after_clock_stop(struct sdw_intel *sdw)
160{
161 if (SDW_INTEL_CHECK_OPS(sdw, start_bus_after_clock_stop))
162 return SDW_INTEL_OPS(sdw, start_bus_after_clock_stop)(sdw);
163 return -ENOTSUPP;
164}
165
166static inline int sdw_intel_stop_bus(struct sdw_intel *sdw, bool clock_stop)
167{
168 if (SDW_INTEL_CHECK_OPS(sdw, stop_bus))
169 return SDW_INTEL_OPS(sdw, stop_bus)(sdw, clock_stop);
170 return -ENOTSUPP;
171}
172
173static inline int sdw_intel_link_power_up(struct sdw_intel *sdw)
174{
175 if (SDW_INTEL_CHECK_OPS(sdw, link_power_up))
176 return SDW_INTEL_OPS(sdw, link_power_up)(sdw);
177 return -ENOTSUPP;
178}
179
180static inline int sdw_intel_link_power_down(struct sdw_intel *sdw)
181{
182 if (SDW_INTEL_CHECK_OPS(sdw, link_power_down))
183 return SDW_INTEL_OPS(sdw, link_power_down)(sdw);
184 return -ENOTSUPP;
185}
186
187static inline int sdw_intel_shim_check_wake(struct sdw_intel *sdw)
188{
189 if (SDW_INTEL_CHECK_OPS(sdw, shim_check_wake))
190 return SDW_INTEL_OPS(sdw, shim_check_wake)(sdw);
191 return -ENOTSUPP;
192}
193
194static inline void sdw_intel_shim_wake(struct sdw_intel *sdw, bool wake_enable)
195{
196 if (SDW_INTEL_CHECK_OPS(sdw, shim_wake))
197 SDW_INTEL_OPS(sdw, shim_wake)(sdw, wake_enable);
198}
199
200static inline void sdw_intel_sync_arm(struct sdw_intel *sdw)
201{
202 if (SDW_INTEL_CHECK_OPS(sdw, sync_arm))
203 SDW_INTEL_OPS(sdw, sync_arm)(sdw);
204}
205
206static inline int sdw_intel_sync_go_unlocked(struct sdw_intel *sdw)
207{
208 if (SDW_INTEL_CHECK_OPS(sdw, sync_go_unlocked))
209 return SDW_INTEL_OPS(sdw, sync_go_unlocked)(sdw);
210 return -ENOTSUPP;
211}
212
213static inline int sdw_intel_sync_go(struct sdw_intel *sdw)
214{
215 if (SDW_INTEL_CHECK_OPS(sdw, sync_go))
216 return SDW_INTEL_OPS(sdw, sync_go)(sdw);
217 return -ENOTSUPP;
218}
219
220static inline bool sdw_intel_sync_check_cmdsync_unlocked(struct sdw_intel *sdw)
221{
222 if (SDW_INTEL_CHECK_OPS(sdw, sync_check_cmdsync_unlocked))
223 return SDW_INTEL_OPS(sdw, sync_check_cmdsync_unlocked)(sdw);
224 return false;
225}
226
227static inline int sdw_intel_get_link_count(struct sdw_intel *sdw)
228{
229 if (SDW_INTEL_CHECK_OPS(sdw, get_link_count))
230 return SDW_INTEL_OPS(sdw, get_link_count)(sdw);
231 return 4; /* default on older generations */
232}
233
234/* common bus management */
235int intel_start_bus(struct sdw_intel *sdw);
236int intel_start_bus_after_reset(struct sdw_intel *sdw);
237void intel_check_clock_stop(struct sdw_intel *sdw);
238int intel_start_bus_after_clock_stop(struct sdw_intel *sdw);
239int intel_stop_bus(struct sdw_intel *sdw, bool clock_stop);
240
241/* common bank switch routines */
242int intel_pre_bank_switch(struct sdw_intel *sdw);
243int intel_post_bank_switch(struct sdw_intel *sdw);
244
245#endif /* __SDW_INTEL_LOCAL_H */
1/* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */
2/* Copyright(c) 2015-17 Intel Corporation. */
3
4#ifndef __SDW_INTEL_LOCAL_H
5#define __SDW_INTEL_LOCAL_H
6
7/**
8 * struct sdw_intel_link_res - Soundwire Intel link resource structure,
9 * typically populated by the controller driver.
10 * @hw_ops: platform-specific ops
11 * @mmio_base: mmio base of SoundWire registers
12 * @registers: Link IO registers base
13 * @shim: Audio shim pointer
14 * @alh: ALH (Audio Link Hub) pointer
15 * @irq: Interrupt line
16 * @ops: Shim callback ops
17 * @dev: device implementing hw_params and free callbacks
18 * @shim_lock: mutex to handle access to shared SHIM registers
19 * @shim_mask: global pointer to check SHIM register initialization
20 * @clock_stop_quirks: mask defining requested behavior on pm_suspend
21 * @link_mask: global mask needed for power-up/down sequences
22 * @cdns: Cadence master descriptor
23 * @list: used to walk-through all masters exposed by the same controller
24 */
25struct sdw_intel_link_res {
26 const struct sdw_intel_hw_ops *hw_ops;
27
28 void __iomem *mmio_base; /* not strictly needed, useful for debug */
29 void __iomem *registers;
30 void __iomem *shim;
31 void __iomem *alh;
32 int irq;
33 const struct sdw_intel_ops *ops;
34 struct device *dev;
35 struct mutex *shim_lock; /* protect shared registers */
36 u32 *shim_mask;
37 u32 clock_stop_quirks;
38 u32 link_mask;
39 struct sdw_cdns *cdns;
40 struct list_head list;
41};
42
43struct sdw_intel {
44 struct sdw_cdns cdns;
45 int instance;
46 struct sdw_intel_link_res *link_res;
47 bool startup_done;
48#ifdef CONFIG_DEBUG_FS
49 struct dentry *debugfs;
50#endif
51};
52
53#define cdns_to_intel(_cdns) container_of(_cdns, struct sdw_intel, cdns)
54
55#define INTEL_MASTER_RESET_ITERATIONS 10
56
57#define SDW_INTEL_CHECK_OPS(sdw, cb) ((sdw) && (sdw)->link_res && (sdw)->link_res->hw_ops && \
58 (sdw)->link_res->hw_ops->cb)
59#define SDW_INTEL_OPS(sdw, cb) ((sdw)->link_res->hw_ops->cb)
60
61static inline void sdw_intel_debugfs_init(struct sdw_intel *sdw)
62{
63 if (SDW_INTEL_CHECK_OPS(sdw, debugfs_init))
64 SDW_INTEL_OPS(sdw, debugfs_init)(sdw);
65}
66
67static inline void sdw_intel_debugfs_exit(struct sdw_intel *sdw)
68{
69 if (SDW_INTEL_CHECK_OPS(sdw, debugfs_exit))
70 SDW_INTEL_OPS(sdw, debugfs_exit)(sdw);
71}
72
73static inline int sdw_intel_register_dai(struct sdw_intel *sdw)
74{
75 if (SDW_INTEL_CHECK_OPS(sdw, register_dai))
76 return SDW_INTEL_OPS(sdw, register_dai)(sdw);
77 return -ENOTSUPP;
78}
79
80static inline void sdw_intel_check_clock_stop(struct sdw_intel *sdw)
81{
82 if (SDW_INTEL_CHECK_OPS(sdw, check_clock_stop))
83 SDW_INTEL_OPS(sdw, check_clock_stop)(sdw);
84}
85
86static inline int sdw_intel_start_bus(struct sdw_intel *sdw)
87{
88 if (SDW_INTEL_CHECK_OPS(sdw, start_bus))
89 return SDW_INTEL_OPS(sdw, start_bus)(sdw);
90 return -ENOTSUPP;
91}
92
93static inline int sdw_intel_start_bus_after_reset(struct sdw_intel *sdw)
94{
95 if (SDW_INTEL_CHECK_OPS(sdw, start_bus_after_reset))
96 return SDW_INTEL_OPS(sdw, start_bus_after_reset)(sdw);
97 return -ENOTSUPP;
98}
99
100static inline int sdw_intel_start_bus_after_clock_stop(struct sdw_intel *sdw)
101{
102 if (SDW_INTEL_CHECK_OPS(sdw, start_bus_after_clock_stop))
103 return SDW_INTEL_OPS(sdw, start_bus_after_clock_stop)(sdw);
104 return -ENOTSUPP;
105}
106
107static inline int sdw_intel_stop_bus(struct sdw_intel *sdw, bool clock_stop)
108{
109 if (SDW_INTEL_CHECK_OPS(sdw, stop_bus))
110 return SDW_INTEL_OPS(sdw, stop_bus)(sdw, clock_stop);
111 return -ENOTSUPP;
112}
113
114static inline int sdw_intel_link_power_up(struct sdw_intel *sdw)
115{
116 if (SDW_INTEL_CHECK_OPS(sdw, link_power_up))
117 return SDW_INTEL_OPS(sdw, link_power_up)(sdw);
118 return -ENOTSUPP;
119}
120
121static inline int sdw_intel_link_power_down(struct sdw_intel *sdw)
122{
123 if (SDW_INTEL_CHECK_OPS(sdw, link_power_down))
124 return SDW_INTEL_OPS(sdw, link_power_down)(sdw);
125 return -ENOTSUPP;
126}
127
128static inline int sdw_intel_shim_check_wake(struct sdw_intel *sdw)
129{
130 if (SDW_INTEL_CHECK_OPS(sdw, shim_check_wake))
131 return SDW_INTEL_OPS(sdw, shim_check_wake)(sdw);
132 return -ENOTSUPP;
133}
134
135static inline void sdw_intel_shim_wake(struct sdw_intel *sdw, bool wake_enable)
136{
137 if (SDW_INTEL_CHECK_OPS(sdw, shim_wake))
138 SDW_INTEL_OPS(sdw, shim_wake)(sdw, wake_enable);
139}
140
141#endif /* __SDW_INTEL_LOCAL_H */