soundwire.h 13 KB

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