soundwire.h 10 KB

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