1392f1045SVinod Koul /* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */
2392f1045SVinod Koul /* Copyright(c) 2015-17 Intel Corporation. */
371bb8a1bSVinod Koul 
471bb8a1bSVinod Koul #ifndef __SDW_INTEL_H
571bb8a1bSVinod Koul #define __SDW_INTEL_H
671bb8a1bSVinod Koul 
76cd1d670SBard Liao #include <linux/irqreturn.h>
892f622bcSBard Liao #include <linux/soundwire/sdw.h>
96cd1d670SBard Liao 
1071bb8a1bSVinod Koul /**
114b206d34SRander Wang  * struct sdw_intel_stream_params_data: configuration passed during
124b206d34SRander Wang  * the @params_stream callback, e.g. for interaction with DSP
134b206d34SRander Wang  * firmware.
144b206d34SRander Wang  */
154b206d34SRander Wang struct sdw_intel_stream_params_data {
164b206d34SRander Wang 	struct snd_pcm_substream *substream;
174b206d34SRander Wang 	struct snd_soc_dai *dai;
184b206d34SRander Wang 	struct snd_pcm_hw_params *hw_params;
194b206d34SRander Wang 	int link_id;
204b206d34SRander Wang 	int alh_stream_id;
214b206d34SRander Wang };
224b206d34SRander Wang 
234b206d34SRander Wang /**
244b206d34SRander Wang  * struct sdw_intel_stream_free_data: configuration passed during
254b206d34SRander Wang  * the @free_stream callback, e.g. for interaction with DSP
264b206d34SRander Wang  * firmware.
274b206d34SRander Wang  */
284b206d34SRander Wang struct sdw_intel_stream_free_data {
294b206d34SRander Wang 	struct snd_pcm_substream *substream;
304b206d34SRander Wang 	struct snd_soc_dai *dai;
314b206d34SRander Wang 	int link_id;
324b206d34SRander Wang };
334b206d34SRander Wang 
344b206d34SRander Wang /**
35c46302ecSVinod Koul  * struct sdw_intel_ops: Intel audio driver callback ops
36c46302ecSVinod Koul  *
37c46302ecSVinod Koul  */
38c46302ecSVinod Koul struct sdw_intel_ops {
394b206d34SRander Wang 	int (*params_stream)(struct device *dev,
404b206d34SRander Wang 			     struct sdw_intel_stream_params_data *params_data);
414b206d34SRander Wang 	int (*free_stream)(struct device *dev,
424b206d34SRander Wang 			   struct sdw_intel_stream_free_data *free_data);
43c46302ecSVinod Koul };
44c46302ecSVinod Koul 
45c46302ecSVinod Koul /**
46f98f690fSPierre-Louis Bossart  * struct sdw_intel_acpi_info - Soundwire Intel information found in ACPI tables
47f98f690fSPierre-Louis Bossart  * @handle: ACPI controller handle
48f98f690fSPierre-Louis Bossart  * @count: link count found with "sdw-master-count" property
49f98f690fSPierre-Louis Bossart  * @link_mask: bit-wise mask listing links enabled by BIOS menu
50f98f690fSPierre-Louis Bossart  *
51f98f690fSPierre-Louis Bossart  * this structure could be expanded to e.g. provide all the _ADR
52f98f690fSPierre-Louis Bossart  * information in case the link_mask is not sufficient to identify
53f98f690fSPierre-Louis Bossart  * platform capabilities.
54f98f690fSPierre-Louis Bossart  */
55f98f690fSPierre-Louis Bossart struct sdw_intel_acpi_info {
56f98f690fSPierre-Louis Bossart 	acpi_handle handle;
57f98f690fSPierre-Louis Bossart 	int count;
58f98f690fSPierre-Louis Bossart 	u32 link_mask;
59f98f690fSPierre-Louis Bossart };
60f98f690fSPierre-Louis Bossart 
61f98f690fSPierre-Louis Bossart struct sdw_intel_link_res;
62f98f690fSPierre-Louis Bossart 
6309f6a72dSPierre-Louis Bossart /* Intel clock-stop/pm_runtime quirk definitions */
6409f6a72dSPierre-Louis Bossart 
6509f6a72dSPierre-Louis Bossart /*
6609f6a72dSPierre-Louis Bossart  * Force the clock to remain on during pm_runtime suspend. This might
6709f6a72dSPierre-Louis Bossart  * be needed if Slave devices do not have an alternate clock source or
6809f6a72dSPierre-Louis Bossart  * if the latency requirements are very strict.
6909f6a72dSPierre-Louis Bossart  */
7009f6a72dSPierre-Louis Bossart #define SDW_INTEL_CLK_STOP_NOT_ALLOWED		BIT(0)
7109f6a72dSPierre-Louis Bossart 
7209f6a72dSPierre-Louis Bossart /*
7309f6a72dSPierre-Louis Bossart  * Stop the bus during pm_runtime suspend. If set, a complete bus
7409f6a72dSPierre-Louis Bossart  * reset and re-enumeration will be performed when the bus
7509f6a72dSPierre-Louis Bossart  * restarts. This mode shall not be used if Slave devices can generate
7609f6a72dSPierre-Louis Bossart  * in-band wakes.
7709f6a72dSPierre-Louis Bossart  */
7809f6a72dSPierre-Louis Bossart #define SDW_INTEL_CLK_STOP_TEARDOWN		BIT(1)
7909f6a72dSPierre-Louis Bossart 
8009f6a72dSPierre-Louis Bossart /*
8109f6a72dSPierre-Louis Bossart  * Stop the bus during pm_suspend if Slaves are not wake capable
8209f6a72dSPierre-Louis Bossart  * (e.g. speaker amplifiers). The clock-stop mode is typically
8309f6a72dSPierre-Louis Bossart  * slightly higher power than when the IP is completely powered-off.
8409f6a72dSPierre-Louis Bossart  */
8509f6a72dSPierre-Louis Bossart #define SDW_INTEL_CLK_STOP_WAKE_CAPABLE_ONLY	BIT(2)
8609f6a72dSPierre-Louis Bossart 
8709f6a72dSPierre-Louis Bossart /*
8809f6a72dSPierre-Louis Bossart  * Require a bus reset (and complete re-enumeration) when exiting
8909f6a72dSPierre-Louis Bossart  * clock stop modes. This may be needed if the controller power was
9009f6a72dSPierre-Louis Bossart  * turned off and all context lost. This quirk shall not be used if a
9109f6a72dSPierre-Louis Bossart  * Slave device needs to remain enumerated and keep its context,
9209f6a72dSPierre-Louis Bossart  * e.g. to provide the reasons for the wake, report acoustic events or
9309f6a72dSPierre-Louis Bossart  * pass a history buffer.
9409f6a72dSPierre-Louis Bossart  */
9509f6a72dSPierre-Louis Bossart #define SDW_INTEL_CLK_STOP_BUS_RESET		BIT(3)
9609f6a72dSPierre-Louis Bossart 
9792f622bcSBard Liao struct sdw_intel_slave_id {
9892f622bcSBard Liao 	int link_id;
9992f622bcSBard Liao 	struct sdw_slave_id id;
10092f622bcSBard Liao };
10192f622bcSBard Liao 
102f98f690fSPierre-Louis Bossart /**
103f98f690fSPierre-Louis Bossart  * struct sdw_intel_ctx - context allocated by the controller
104f98f690fSPierre-Louis Bossart  * driver probe
105f98f690fSPierre-Louis Bossart  * @count: link count
106f98f690fSPierre-Louis Bossart  * @mmio_base: mmio base of SoundWire registers, only used to check
107f98f690fSPierre-Louis Bossart  * hardware capabilities after all power dependencies are settled.
108f98f690fSPierre-Louis Bossart  * @link_mask: bit-wise mask listing SoundWire links reported by the
109f98f690fSPierre-Louis Bossart  * Controller
11092f622bcSBard Liao  * @num_slaves: total number of devices exposed across all enabled links
111f98f690fSPierre-Louis Bossart  * @handle: ACPI parent handle
112f98f690fSPierre-Louis Bossart  * @links: information for each link (controller-specific and kept
113f98f690fSPierre-Louis Bossart  * opaque here)
11492f622bcSBard Liao  * @ids: array of slave_id, representing Slaves exposed across all enabled
11592f622bcSBard Liao  * links
116eae0b60dSBard Liao  * @link_list: list to handle interrupts across all links
1174da0680fSPierre-Louis Bossart  * @shim_lock: mutex to handle concurrent rmw access to shared SHIM registers.
118f98f690fSPierre-Louis Bossart  */
119f98f690fSPierre-Louis Bossart struct sdw_intel_ctx {
120f98f690fSPierre-Louis Bossart 	int count;
121f98f690fSPierre-Louis Bossart 	void __iomem *mmio_base;
122f98f690fSPierre-Louis Bossart 	u32 link_mask;
12392f622bcSBard Liao 	int num_slaves;
124f98f690fSPierre-Louis Bossart 	acpi_handle handle;
125f98f690fSPierre-Louis Bossart 	struct sdw_intel_link_res *links;
12692f622bcSBard Liao 	struct sdw_intel_slave_id *ids;
127eae0b60dSBard Liao 	struct list_head link_list;
1284da0680fSPierre-Louis Bossart 	struct mutex shim_lock; /* lock for access to shared SHIM registers */
129f98f690fSPierre-Louis Bossart };
130f98f690fSPierre-Louis Bossart 
131f98f690fSPierre-Louis Bossart /**
132f98f690fSPierre-Louis Bossart  * struct sdw_intel_res - Soundwire Intel global resource structure,
133f98f690fSPierre-Louis Bossart  * typically populated by the DSP driver
134f98f690fSPierre-Louis Bossart  *
135f98f690fSPierre-Louis Bossart  * @count: link count
13671bb8a1bSVinod Koul  * @mmio_base: mmio base of SoundWire registers
13771bb8a1bSVinod Koul  * @irq: interrupt number
13871bb8a1bSVinod Koul  * @handle: ACPI parent handle
13971bb8a1bSVinod Koul  * @parent: parent device
140c46302ecSVinod Koul  * @ops: callback ops
141f98f690fSPierre-Louis Bossart  * @dev: device implementing hwparams and free callbacks
142f98f690fSPierre-Louis Bossart  * @link_mask: bit-wise mask listing links selected by the DSP driver
143f98f690fSPierre-Louis Bossart  * This mask may be a subset of the one reported by the controller since
144f98f690fSPierre-Louis Bossart  * machine-specific quirks are handled in the DSP driver.
14509f6a72dSPierre-Louis Bossart  * @clock_stop_quirks: mask array of possible behaviors requested by the
14609f6a72dSPierre-Louis Bossart  * DSP driver. The quirks are common for all links for now.
14771bb8a1bSVinod Koul  */
14871bb8a1bSVinod Koul struct sdw_intel_res {
149f98f690fSPierre-Louis Bossart 	int count;
15071bb8a1bSVinod Koul 	void __iomem *mmio_base;
15171bb8a1bSVinod Koul 	int irq;
15271bb8a1bSVinod Koul 	acpi_handle handle;
15371bb8a1bSVinod Koul 	struct device *parent;
154c46302ecSVinod Koul 	const struct sdw_intel_ops *ops;
155f98f690fSPierre-Louis Bossart 	struct device *dev;
156f98f690fSPierre-Louis Bossart 	u32 link_mask;
15709f6a72dSPierre-Louis Bossart 	u32 clock_stop_quirks;
15871bb8a1bSVinod Koul };
15971bb8a1bSVinod Koul 
160f98f690fSPierre-Louis Bossart /*
161f98f690fSPierre-Louis Bossart  * On Intel platforms, the SoundWire IP has dependencies on power
162f98f690fSPierre-Louis Bossart  * rails shared with the DSP, and the initialization steps are split
163f98f690fSPierre-Louis Bossart  * in three. First an ACPI scan to check what the firmware describes
164f98f690fSPierre-Louis Bossart  * in DSDT tables, then an allocation step (with no hardware
165f98f690fSPierre-Louis Bossart  * configuration but with all the relevant devices created) and last
166f98f690fSPierre-Louis Bossart  * the actual hardware configuration. The final stage is a global
167f98f690fSPierre-Louis Bossart  * interrupt enable which is controlled by the DSP driver. Splitting
168f98f690fSPierre-Louis Bossart  * these phases helps simplify the boot flow and make early decisions
169f98f690fSPierre-Louis Bossart  * on e.g. which machine driver to select (I2S mode, HDaudio or
170f98f690fSPierre-Louis Bossart  * SoundWire).
171f98f690fSPierre-Louis Bossart  */
172f98f690fSPierre-Louis Bossart int sdw_intel_acpi_scan(acpi_handle *parent_handle,
173f98f690fSPierre-Louis Bossart 			struct sdw_intel_acpi_info *info);
174f98f690fSPierre-Louis Bossart 
175905b5a81SRander Wang void sdw_intel_process_wakeen_event(struct sdw_intel_ctx *ctx);
176905b5a81SRander Wang 
177f98f690fSPierre-Louis Bossart struct sdw_intel_ctx *
178f98f690fSPierre-Louis Bossart sdw_intel_probe(struct sdw_intel_res *res);
179f98f690fSPierre-Louis Bossart 
180f98f690fSPierre-Louis Bossart int sdw_intel_startup(struct sdw_intel_ctx *ctx);
181f98f690fSPierre-Louis Bossart 
182f98f690fSPierre-Louis Bossart void sdw_intel_exit(struct sdw_intel_ctx *ctx);
183f98f690fSPierre-Louis Bossart 
184f98f690fSPierre-Louis Bossart void sdw_intel_enable_irq(void __iomem *mmio_base, bool enable);
185d62a7d41SVinod Koul 
1866cd1d670SBard Liao irqreturn_t sdw_intel_thread(int irq, void *dev_id);
1876cd1d670SBard Liao 
18871bb8a1bSVinod Koul #endif
189