1 /* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */
2 /* Copyright(c) 2015-17 Intel Corporation. */
5 #ifndef __SDW_CADENCE_H
6 #define __SDW_CADENCE_H
8 #define SDW_CADENCE_GSYNC_KHZ 4 /* 4 kHz */
9 #define SDW_CADENCE_GSYNC_HZ (SDW_CADENCE_GSYNC_KHZ * 1000)
12 * struct sdw_cdns_pdi: PDI (Physical Data Interface) instance
15 * @intel_alh_id: link identifier
16 * @l_ch_num: low channel for PDI
17 * @h_ch_num: high channel for PDI
18 * @ch_count: total channel count for PDI
19 * @dir: data direction
20 * @type: stream type, PDM or PCM
28 enum sdw_data_direction dir
;
29 enum sdw_stream_type type
;
33 * struct sdw_cdns_streams: Cadence stream data structure
35 * @num_bd: number of bidirectional streams
36 * @num_in: number of input streams
37 * @num_out: number of output streams
38 * @num_ch_bd: number of bidirectional stream channels
39 * @num_ch_bd: number of input stream channels
40 * @num_ch_bd: number of output stream channels
41 * @num_pdi: total number of PDIs
42 * @bd: bidirectional streams
44 * @out: output streams
46 struct sdw_cdns_streams
{
50 unsigned int num_ch_bd
;
51 unsigned int num_ch_in
;
52 unsigned int num_ch_out
;
54 struct sdw_cdns_pdi
*bd
;
55 struct sdw_cdns_pdi
*in
;
56 struct sdw_cdns_pdi
*out
;
60 * struct sdw_cdns_stream_config: stream configuration
62 * @pcm_bd: number of bidirectional PCM streams supported
63 * @pcm_in: number of input PCM streams supported
64 * @pcm_out: number of output PCM streams supported
65 * @pdm_bd: number of bidirectional PDM streams supported
66 * @pdm_in: number of input PDM streams supported
67 * @pdm_out: number of output PDM streams supported
69 struct sdw_cdns_stream_config
{
79 * struct sdw_cdns_dma_data: Cadence DMA data
81 * @name: SoundWire stream name
82 * @stream: stream runtime
83 * @pdi: PDI used for this dai
85 * @stream_type: Stream type
86 * @link_id: Master link id
88 struct sdw_cdns_dma_data
{
90 struct sdw_stream_runtime
*stream
;
91 struct sdw_cdns_pdi
*pdi
;
93 enum sdw_stream_type stream_type
;
98 * struct sdw_cdns - Cadence driver context
101 * @instance: instance number
102 * @response_buf: SoundWire response buffer
103 * @tx_complete: Tx completion
104 * @defer: Defer pointer
106 * @num_ports: Total number of data ports
109 * @registers: Cadence registers
110 * @link_up: Link status
111 * @msg_count: Messages sent on bus
116 unsigned int instance
;
118 u32 response_buf
[0x80];
119 struct completion tx_complete
;
120 struct sdw_defer
*defer
;
122 struct sdw_cdns_port
*ports
;
125 struct sdw_cdns_streams pcm
;
126 struct sdw_cdns_streams pdm
;
128 void __iomem
*registers
;
131 unsigned int msg_count
;
134 #define bus_to_cdns(_bus) container_of(_bus, struct sdw_cdns, bus)
136 /* Exported symbols */
138 int sdw_cdns_probe(struct sdw_cdns
*cdns
);
139 extern struct sdw_master_ops sdw_cdns_master_ops
;
141 irqreturn_t
sdw_cdns_irq(int irq
, void *dev_id
);
142 irqreturn_t
sdw_cdns_thread(int irq
, void *dev_id
);
144 int sdw_cdns_init(struct sdw_cdns
*cdns
);
145 int sdw_cdns_pdi_init(struct sdw_cdns
*cdns
,
146 struct sdw_cdns_stream_config config
);
147 int sdw_cdns_exit_reset(struct sdw_cdns
*cdns
);
148 int sdw_cdns_enable_interrupt(struct sdw_cdns
*cdns
, bool state
);
150 bool sdw_cdns_is_clock_stop(struct sdw_cdns
*cdns
);
151 int sdw_cdns_clock_stop(struct sdw_cdns
*cdns
, bool block_wake
);
152 int sdw_cdns_clock_restart(struct sdw_cdns
*cdns
, bool bus_reset
);
154 #ifdef CONFIG_DEBUG_FS
155 void sdw_cdns_debugfs_init(struct sdw_cdns
*cdns
, struct dentry
*root
);
158 struct sdw_cdns_pdi
*sdw_cdns_alloc_pdi(struct sdw_cdns
*cdns
,
159 struct sdw_cdns_streams
*stream
,
160 u32 ch
, u32 dir
, int dai_id
);
161 void sdw_cdns_config_stream(struct sdw_cdns
*cdns
,
162 u32 ch
, u32 dir
, struct sdw_cdns_pdi
*pdi
);
164 enum sdw_command_response
165 cdns_reset_page_addr(struct sdw_bus
*bus
, unsigned int dev_num
);
167 enum sdw_command_response
168 cdns_xfer_msg(struct sdw_bus
*bus
, struct sdw_msg
*msg
);
170 enum sdw_command_response
171 cdns_xfer_msg_defer(struct sdw_bus
*bus
,
172 struct sdw_msg
*msg
, struct sdw_defer
*defer
);
174 enum sdw_command_response
175 cdns_reset_page_addr(struct sdw_bus
*bus
, unsigned int dev_num
);
177 int cdns_bus_conf(struct sdw_bus
*bus
, struct sdw_bus_params
*params
);
179 int cdns_set_sdw_stream(struct snd_soc_dai
*dai
,
180 void *stream
, bool pcm
, int direction
);
181 #endif /* __SDW_CADENCE_H */