soundwire.h 12 KB

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