soundwire.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2015-2018, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _LINUX_SOUNDWIRE_H
  6. #define _LINUX_SOUNDWIRE_H
  7. #include <linux/device.h>
  8. #include <linux/mutex.h>
  9. #include <linux/mod_devicetable.h>
  10. #include <linux/irqdomain.h>
  11. extern struct bus_type soundwire_type;
  12. /* Soundwire supports max. of 8 channels per port */
  13. #define SWR_MAX_CHANNEL_NUM 8
  14. /* Soundwire supports max. of 14 ports on each device */
  15. #define SWR_MAX_DEV_PORT_NUM 14
  16. /* Maximum number of slave devices that a master can control */
  17. #define SWR_MAX_DEV_NUM 11
  18. /* Maximum number of ports on master so that it can accommodate all the port
  19. * configurations of all devices
  20. */
  21. #define SWR_MAX_MSTR_PORT_NUM (SWR_MAX_DEV_NUM * SWR_MAX_DEV_PORT_NUM)
  22. /* Indicates soundwire devices group information */
  23. enum {
  24. SWR_GROUP_NONE = 0,
  25. SWR_GROUP_12 = 12,
  26. SWR_GROUP_13 = 13,
  27. SWR_BROADCAST = 15,
  28. };
  29. /*
  30. * struct swr_port_info - represents new soundwire frame shape
  31. * with full data ports
  32. * @list: link with other soundwire port info nodes
  33. * @dev_num: logical device number of the soundwire slave device
  34. * @port_en: flag indicates whether the port is enabled
  35. * @slave_port_id: logical port number of the soundwire slave device
  36. * @offset1: sample offset indicating the offset of the channel
  37. * from the start of the frame
  38. * @offset2: channel offset indicating offset between to channels
  39. * @hstart: start offset for subframe window.
  40. * @hstop: start offset for subframe window.
  41. * @master_port_id: logical port number of corresponding soundwire master device
  42. * @blk_grp_count: grouping count for n.o of channels.
  43. * @blk_pack_mode: packing mode for channels in each port.
  44. * @sinterval: sample interval indicates spacing from one sample
  45. * event to the next
  46. * @ch_en: channels enabled in a port.
  47. * @req_ch: channels requested to be enabled in a port.
  48. * @num_ch: number of channels enabled in a port
  49. * @ch_rate: sampling rate of the channel with which data will be
  50. * transferred
  51. *
  52. * Soundwire frame shape is created based on swr_port_info struct
  53. * parameters.
  54. */
  55. struct swr_port_info {
  56. u8 dev_num;
  57. u8 port_en;
  58. u8 slave_port_id;
  59. u8 offset1;
  60. u8 offset2;
  61. u8 sinterval;
  62. struct list_head list;
  63. u8 master_port_id;
  64. u8 hstart;
  65. u8 hstop;
  66. u8 blk_grp_count;
  67. u8 blk_pack_mode;
  68. u8 word_length;
  69. u8 lane_ctrl;
  70. u8 ch_en;
  71. u8 req_ch;
  72. u8 num_ch;
  73. u32 ch_rate;
  74. };
  75. /*
  76. * struct swr_params - represent transfer of data from soundwire slave
  77. * to soundwire master
  78. * @tid: transaction ID to track each transaction
  79. * @dev_num: logical device number of the soundwire slave device
  80. * @num_port: number of ports that needs to be configured
  81. * @port_id: array of logical port numbers of the soundwire slave device
  82. * @num_ch: array of number of channels enabled
  83. * @ch_rate: array of sampling rate of different channels that need to
  84. * be configured
  85. * @ch_en: array of channels mask for all the ports
  86. * @port_type: the required master port type
  87. */
  88. struct swr_params {
  89. u8 tid;
  90. u8 dev_num;
  91. u8 num_port;
  92. u8 port_id[SWR_MAX_DEV_PORT_NUM];
  93. u8 num_ch[SWR_MAX_DEV_PORT_NUM];
  94. u32 ch_rate[SWR_MAX_DEV_PORT_NUM];
  95. u8 ch_en[SWR_MAX_DEV_PORT_NUM];
  96. u8 port_type[SWR_MAX_DEV_PORT_NUM];
  97. };
  98. /*
  99. * struct swr_reg - struct to handle soundwire slave register read/writes
  100. * @tid: transaction id for reg read/writes
  101. * @dev_id: logical device number of the soundwire slave device
  102. * @regaddr: 16 bit regaddr of soundwire slave
  103. * @buf: value to be written/read to/from regaddr
  104. * @len: length of the buffer buf
  105. */
  106. struct swr_reg {
  107. u8 tid;
  108. u8 dev_id;
  109. u32 regaddr;
  110. u32 *buf;
  111. u32 len;
  112. };
  113. /*
  114. * struct swr_master - Interface to the soundwire master controller
  115. * @dev: device interface to this driver
  116. * @list: link with other soundwire master controllers
  117. * @bus_num: board/SoC specific identifier for a soundwire master
  118. * @mlock: mutex protecting master data structures
  119. * @devices: list of devices on this master
  120. * @port: logical port numbers of the soundwire master. This array
  121. * can hold maximum master ports which is equal to number of slave
  122. * devices multiplied by number of ports in each slave device
  123. * @port_txn: table of port config transactions with transaction id
  124. * @reg_txn: table of register transactions with transaction id
  125. * @last_tid: size of table port_txn (can't grow beyond 256 since
  126. * tid is 8 bits)
  127. * @num_port: number of active ports on soundwire master
  128. * @gr_sid: slave id used by the group for write operations
  129. * @connect_port: callback for configuration of soundwire port(s)
  130. * @disconnect_port: callback for disable of soundwire port(s)
  131. * @read: callback for soundwire slave register read
  132. * @write: callback for soundwire slave register write
  133. * @get_logical_dev_num: callback to get soundwire slave logical
  134. * device number
  135. * @port_en_mask: bit mask of active ports on soundwire master
  136. */
  137. struct swr_master {
  138. struct device dev;
  139. struct list_head list;
  140. unsigned int bus_num;
  141. struct mutex mlock;
  142. struct list_head devices;
  143. struct swr_port_info port[SWR_MAX_MSTR_PORT_NUM];
  144. struct swr_params **port_txn;
  145. struct swr_reg **reg_txn;
  146. u8 last_tid;
  147. u8 num_port;
  148. u8 num_dev;
  149. u8 gr_sid;
  150. int (*connect_port)(struct swr_master *mstr, struct swr_params *txn);
  151. int (*disconnect_port)(struct swr_master *mstr, struct swr_params *txn);
  152. int (*read)(struct swr_master *mstr, u8 dev_num, u16 reg_addr,
  153. void *buf, u32 len);
  154. int (*write)(struct swr_master *mstr, u8 dev_num, u16 reg_addr,
  155. const void *buf);
  156. int (*bulk_write)(struct swr_master *master, u8 dev_num, void *reg,
  157. const void *buf, size_t len);
  158. int (*get_logical_dev_num)(struct swr_master *mstr, u64 dev_id,
  159. u8 *dev_num);
  160. int (*slvdev_datapath_control)(struct swr_master *mstr, bool enable);
  161. bool (*remove_from_group)(struct swr_master *mstr);
  162. void (*device_wakeup_vote)(struct swr_master *mstr);
  163. void (*device_wakeup_unvote)(struct swr_master *mstr);
  164. u16 port_en_mask;
  165. };
  166. static inline struct swr_master *to_swr_master(struct device *dev)
  167. {
  168. return dev ? container_of(dev, struct swr_master, dev) : NULL;
  169. }
  170. /*
  171. * struct swr_device - represent a soundwire slave device
  172. * @name: indicates the name of the device, defined in devicetree
  173. * binding under soundwire slave device node as a compatible field.
  174. * @master: soundwire master managing the bus hosting this device
  175. * @driver: Device's driver. Pointer to access routines
  176. * @dev_list: list of devices on a controller
  177. * @dev_num: logical device number of the soundwire slave device
  178. * @dev: driver model representation of the device
  179. * @addr: represents "ea-addr" which is unique-id of soundwire slave
  180. * device
  181. * @group_id: group id supported by the slave device
  182. * @slave_irq: irq handle of slave to be invoked by master
  183. * during slave interrupt
  184. */
  185. struct swr_device {
  186. char name[SOUNDWIRE_NAME_SIZE];
  187. struct swr_master *master;
  188. struct swr_driver *driver;
  189. struct list_head dev_list;
  190. u8 dev_num;
  191. struct device dev;
  192. unsigned long addr;
  193. u8 group_id;
  194. struct irq_domain *slave_irq;
  195. bool slave_irq_pending;
  196. };
  197. static inline struct swr_device *to_swr_device(struct device *dev)
  198. {
  199. return dev ? container_of(dev, struct swr_device, dev) : NULL;
  200. }
  201. /*
  202. * struct swr_driver - Manage soundwire slave device driver
  203. * @probe: binds this driver to soundwire device
  204. * @remove: unbinds this driver from soundwire device
  205. * @shutdown: standard shutdown callback used during power down/halt
  206. * @suspend: standard suspend callback used during system suspend
  207. * @resume: standard resume callback used during system resume
  208. * @driver: soundwire device drivers should initialize name and
  209. * owner field of this structure
  210. * @id_table: list of soundwire devices supported by this driver
  211. */
  212. struct swr_driver {
  213. int (*probe)(struct swr_device *swr);
  214. int (*remove)(struct swr_device *swr);
  215. void (*shutdown)(struct swr_device *swr);
  216. int (*suspend)(struct swr_device *swr, pm_message_t pmesg);
  217. int (*resume)(struct swr_device *swr);
  218. int (*device_up)(struct swr_device *swr);
  219. int (*device_down)(struct swr_device *swr);
  220. int (*reset_device)(struct swr_device *swr);
  221. struct device_driver driver;
  222. const struct swr_device_id *id_table;
  223. };
  224. static inline struct swr_driver *to_swr_driver(struct device_driver *drv)
  225. {
  226. return drv ? container_of(drv, struct swr_driver, driver) : NULL;
  227. }
  228. /*
  229. * struct swr_boardinfo - Declare board info for soundwire device bringup
  230. * @name: name to initialize swr_device.name
  231. * @bus_num: identifies which soundwire master parents the soundwire
  232. * slave_device
  233. * @addr: represents "ea-addr" of soundwire slave device
  234. * @of_node: pointer to OpenFirmware device node
  235. * @swr_slave: device to be registered with soundwire
  236. */
  237. struct swr_boardinfo {
  238. char name[SOUNDWIRE_NAME_SIZE];
  239. int bus_num;
  240. u64 addr;
  241. struct device_node *of_node;
  242. struct swr_device *swr_slave;
  243. };
  244. static inline void *swr_get_ctrl_data(const struct swr_master *master)
  245. {
  246. return master ? dev_get_drvdata(&master->dev) : NULL;
  247. }
  248. static inline void swr_set_ctrl_data(struct swr_master *master, void *data)
  249. {
  250. dev_set_drvdata(&master->dev, data);
  251. }
  252. static inline void *swr_get_dev_data(const struct swr_device *dev)
  253. {
  254. return dev ? dev_get_drvdata(&dev->dev) : NULL;
  255. }
  256. static inline void swr_set_dev_data(struct swr_device *dev, void *data)
  257. {
  258. dev_set_drvdata(&dev->dev, data);
  259. }
  260. extern int swr_startup_devices(struct swr_device *swr_dev);
  261. extern struct swr_device *swr_new_device(struct swr_master *master,
  262. struct swr_boardinfo const *info);
  263. extern int of_register_swr_devices(struct swr_master *master);
  264. extern void swr_port_response(struct swr_master *mstr, u8 tid);
  265. extern int swr_get_logical_dev_num(struct swr_device *dev, u64 dev_id,
  266. u8 *dev_num);
  267. extern int swr_read(struct swr_device *dev, u8 dev_num, u16 reg_addr,
  268. void *buf, u32 len);
  269. extern int swr_write(struct swr_device *dev, u8 dev_num, u16 reg_addr,
  270. const void *buf);
  271. extern int swr_bulk_write(struct swr_device *dev, u8 dev_num, void *reg_addr,
  272. const void *buf, size_t len);
  273. extern int swr_connect_port(struct swr_device *dev, u8 *port_id, u8 num_port,
  274. u8 *ch_mask, u32 *ch_rate, u8 *num_ch,
  275. u8 *port_type);
  276. extern int swr_disconnect_port(struct swr_device *dev,
  277. u8 *port_id, u8 num_port, u8 *ch_mask,
  278. u8 *port_type);
  279. extern int swr_set_device_group(struct swr_device *swr_dev, u8 id);
  280. extern int swr_driver_register(struct swr_driver *drv);
  281. extern void swr_driver_unregister(struct swr_driver *drv);
  282. extern int swr_add_device(struct swr_master *master,
  283. struct swr_device *swrdev);
  284. extern void swr_remove_device(struct swr_device *swr);
  285. extern void swr_master_add_boarddevices(struct swr_master *master);
  286. extern void swr_unregister_master(struct swr_master *master);
  287. extern int swr_register_master(struct swr_master *master);
  288. extern int swr_device_up(struct swr_device *swr_dev);
  289. extern int swr_device_down(struct swr_device *swr_dev);
  290. extern int swr_reset_device(struct swr_device *swr_dev);
  291. extern int swr_slvdev_datapath_control(struct swr_device *swr_dev, u8 dev_num,
  292. bool enable);
  293. extern int swr_remove_from_group(struct swr_device *dev, u8 dev_num);
  294. extern void swr_remove_device(struct swr_device *swr_dev);
  295. extern struct swr_device *get_matching_swr_slave_device(struct device_node *np);
  296. extern int swr_device_wakeup_vote(struct swr_device *dev);
  297. extern int swr_device_wakeup_unvote(struct swr_device *dev);
  298. #endif /* _LINUX_SOUNDWIRE_H */