soundwire.h 13 KB

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