ac97_codec.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. #ifndef __SOUND_AC97_CODEC_H
  2. #define __SOUND_AC97_CODEC_H
  3. /*
  4. * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
  5. * Universal interface for Audio Codec '97
  6. *
  7. * For more details look to AC '97 component specification revision 2.1
  8. * by Intel Corporation (http://developer.intel.com).
  9. *
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  24. *
  25. */
  26. #include <linux/bitops.h>
  27. #include <linux/device.h>
  28. #include <linux/workqueue.h>
  29. #include <sound/ac97/regs.h>
  30. #include <sound/pcm.h>
  31. #include <sound/control.h>
  32. #include <sound/info.h>
  33. /* maximum number of devices on the AC97 bus */
  34. #define AC97_BUS_MAX_DEVICES 4
  35. /* specific - SigmaTel */
  36. #define AC97_SIGMATEL_OUTSEL 0x64 /* Output Select, STAC9758 */
  37. #define AC97_SIGMATEL_INSEL 0x66 /* Input Select, STAC9758 */
  38. #define AC97_SIGMATEL_IOMISC 0x68 /* STAC9758 */
  39. #define AC97_SIGMATEL_ANALOG 0x6c /* Analog Special */
  40. #define AC97_SIGMATEL_DAC2INVERT 0x6e
  41. #define AC97_SIGMATEL_BIAS1 0x70
  42. #define AC97_SIGMATEL_BIAS2 0x72
  43. #define AC97_SIGMATEL_VARIOUS 0x72 /* STAC9758 */
  44. #define AC97_SIGMATEL_MULTICHN 0x74 /* Multi-Channel programming */
  45. #define AC97_SIGMATEL_CIC1 0x76
  46. #define AC97_SIGMATEL_CIC2 0x78
  47. /* specific - Analog Devices */
  48. #define AC97_AD_TEST 0x5a /* test register */
  49. #define AC97_AD_TEST2 0x5c /* undocumented test register 2 */
  50. #define AC97_AD_HPFD_SHIFT 12 /* High Pass Filter Disable */
  51. #define AC97_AD_CODEC_CFG 0x70 /* codec configuration */
  52. #define AC97_AD_JACK_SPDIF 0x72 /* Jack Sense & S/PDIF */
  53. #define AC97_AD_SERIAL_CFG 0x74 /* Serial Configuration */
  54. #define AC97_AD_MISC 0x76 /* Misc Control Bits */
  55. #define AC97_AD_VREFD_SHIFT 2 /* V_REFOUT Disable (AD1888) */
  56. /* specific - Cirrus Logic */
  57. #define AC97_CSR_ACMODE 0x5e /* AC Mode Register */
  58. #define AC97_CSR_MISC_CRYSTAL 0x60 /* Misc Crystal Control */
  59. #define AC97_CSR_SPDIF 0x68 /* S/PDIF Register */
  60. #define AC97_CSR_SERIAL 0x6a /* Serial Port Control */
  61. #define AC97_CSR_SPECF_ADDR 0x6c /* Special Feature Address */
  62. #define AC97_CSR_SPECF_DATA 0x6e /* Special Feature Data */
  63. #define AC97_CSR_BDI_STATUS 0x7a /* BDI Status */
  64. /* specific - Conexant */
  65. #define AC97_CXR_AUDIO_MISC 0x5c
  66. #define AC97_CXR_SPDIFEN (1<<3)
  67. #define AC97_CXR_COPYRGT (1<<2)
  68. #define AC97_CXR_SPDIF_MASK (3<<0)
  69. #define AC97_CXR_SPDIF_PCM 0x0
  70. #define AC97_CXR_SPDIF_AC3 0x2
  71. /* specific - ALC */
  72. #define AC97_ALC650_SPDIF_INPUT_STATUS1 0x60
  73. /* S/PDIF input status 1 bit defines */
  74. #define AC97_ALC650_PRO 0x0001 /* Professional status */
  75. #define AC97_ALC650_NAUDIO 0x0002 /* Non audio stream */
  76. #define AC97_ALC650_COPY 0x0004 /* Copyright status */
  77. #define AC97_ALC650_PRE 0x0038 /* Preemphasis status */
  78. #define AC97_ALC650_PRE_SHIFT 3
  79. #define AC97_ALC650_MODE 0x00C0 /* Preemphasis status */
  80. #define AC97_ALC650_MODE_SHIFT 6
  81. #define AC97_ALC650_CC_MASK 0x7f00 /* Category Code mask */
  82. #define AC97_ALC650_CC_SHIFT 8
  83. #define AC97_ALC650_L 0x8000 /* Generation Level status */
  84. #define AC97_ALC650_SPDIF_INPUT_STATUS2 0x62
  85. /* S/PDIF input status 2 bit defines */
  86. #define AC97_ALC650_SOUCE_MASK 0x000f /* Source number */
  87. #define AC97_ALC650_CHANNEL_MASK 0x00f0 /* Channel number */
  88. #define AC97_ALC650_CHANNEL_SHIFT 4
  89. #define AC97_ALC650_SPSR_MASK 0x0f00 /* S/PDIF Sample Rate bits */
  90. #define AC97_ALC650_SPSR_SHIFT 8
  91. #define AC97_ALC650_SPSR_44K 0x0000 /* Use 44.1kHz Sample rate */
  92. #define AC97_ALC650_SPSR_48K 0x0200 /* Use 48kHz Sample rate */
  93. #define AC97_ALC650_SPSR_32K 0x0300 /* Use 32kHz Sample rate */
  94. #define AC97_ALC650_CLOCK_ACCURACY 0x3000 /* Clock accuracy */
  95. #define AC97_ALC650_CLOCK_SHIFT 12
  96. #define AC97_ALC650_CLOCK_LOCK 0x4000 /* Clock locked status */
  97. #define AC97_ALC650_V 0x8000 /* Validity status */
  98. #define AC97_ALC650_SURR_DAC_VOL 0x64
  99. #define AC97_ALC650_LFE_DAC_VOL 0x66
  100. #define AC97_ALC650_UNKNOWN1 0x68
  101. #define AC97_ALC650_MULTICH 0x6a
  102. #define AC97_ALC650_UNKNOWN2 0x6c
  103. #define AC97_ALC650_REVISION 0x6e
  104. #define AC97_ALC650_UNKNOWN3 0x70
  105. #define AC97_ALC650_UNKNOWN4 0x72
  106. #define AC97_ALC650_MISC 0x74
  107. #define AC97_ALC650_GPIO_SETUP 0x76
  108. #define AC97_ALC650_GPIO_STATUS 0x78
  109. #define AC97_ALC650_CLOCK 0x7a
  110. /* specific - Yamaha YMF7x3 */
  111. #define AC97_YMF7X3_DIT_CTRL 0x66 /* DIT Control (YMF743) / 2 (YMF753) */
  112. #define AC97_YMF7X3_3D_MODE_SEL 0x68 /* 3D Mode Select */
  113. /* specific - C-Media */
  114. #define AC97_CM9738_VENDOR_CTRL 0x5a
  115. #define AC97_CM9739_MULTI_CHAN 0x64
  116. #define AC97_CM9739_SPDIF_IN_STATUS 0x68 /* 32bit */
  117. #define AC97_CM9739_SPDIF_CTRL 0x6c
  118. /* specific - wolfson */
  119. #define AC97_WM97XX_FMIXER_VOL 0x72
  120. #define AC97_WM9704_RMIXER_VOL 0x74
  121. #define AC97_WM9704_TEST 0x5a
  122. #define AC97_WM9704_RPCM_VOL 0x70
  123. #define AC97_WM9711_OUT3VOL 0x16
  124. /* ac97->scaps */
  125. #define AC97_SCAP_AUDIO (1<<0) /* audio codec 97 */
  126. #define AC97_SCAP_MODEM (1<<1) /* modem codec 97 */
  127. #define AC97_SCAP_SURROUND_DAC (1<<2) /* surround L&R DACs are present */
  128. #define AC97_SCAP_CENTER_LFE_DAC (1<<3) /* center and LFE DACs are present */
  129. #define AC97_SCAP_SKIP_AUDIO (1<<4) /* skip audio part of codec */
  130. #define AC97_SCAP_SKIP_MODEM (1<<5) /* skip modem part of codec */
  131. #define AC97_SCAP_INDEP_SDIN (1<<6) /* independent SDIN */
  132. #define AC97_SCAP_INV_EAPD (1<<7) /* inverted EAPD */
  133. #define AC97_SCAP_DETECT_BY_VENDOR (1<<8) /* use vendor registers for read tests */
  134. #define AC97_SCAP_NO_SPDIF (1<<9) /* don't build SPDIF controls */
  135. #define AC97_SCAP_EAPD_LED (1<<10) /* EAPD as mute LED */
  136. #define AC97_SCAP_POWER_SAVE (1<<11) /* capable for aggressive power-saving */
  137. /* ac97->flags */
  138. #define AC97_HAS_PC_BEEP (1<<0) /* force PC Speaker usage */
  139. #define AC97_AD_MULTI (1<<1) /* Analog Devices - multi codecs */
  140. #define AC97_CS_SPDIF (1<<2) /* Cirrus Logic uses funky SPDIF */
  141. #define AC97_CX_SPDIF (1<<3) /* Conexant's spdif interface */
  142. #define AC97_STEREO_MUTES (1<<4) /* has stereo mute bits */
  143. #define AC97_DOUBLE_RATE (1<<5) /* supports double rate playback */
  144. #define AC97_HAS_NO_MASTER_VOL (1<<6) /* no Master volume */
  145. #define AC97_HAS_NO_PCM_VOL (1<<7) /* no PCM volume */
  146. #define AC97_DEFAULT_POWER_OFF (1<<8) /* no RESET write */
  147. #define AC97_MODEM_PATCH (1<<9) /* modem patch */
  148. #define AC97_HAS_NO_REC_GAIN (1<<10) /* no Record gain */
  149. #define AC97_HAS_NO_PHONE (1<<11) /* no PHONE volume */
  150. #define AC97_HAS_NO_PC_BEEP (1<<12) /* no PC Beep volume */
  151. #define AC97_HAS_NO_VIDEO (1<<13) /* no Video volume */
  152. #define AC97_HAS_NO_CD (1<<14) /* no CD volume */
  153. #define AC97_HAS_NO_MIC (1<<15) /* no MIC volume */
  154. #define AC97_HAS_NO_TONE (1<<16) /* no Tone volume */
  155. #define AC97_HAS_NO_STD_PCM (1<<17) /* no standard AC97 PCM volume and mute */
  156. #define AC97_HAS_NO_AUX (1<<18) /* no standard AC97 AUX volume and mute */
  157. #define AC97_HAS_8CH (1<<19) /* supports 8-channel output */
  158. /* rates indexes */
  159. #define AC97_RATES_FRONT_DAC 0
  160. #define AC97_RATES_SURR_DAC 1
  161. #define AC97_RATES_LFE_DAC 2
  162. #define AC97_RATES_ADC 3
  163. #define AC97_RATES_MIC_ADC 4
  164. #define AC97_RATES_SPDIF 5
  165. #define AC97_NUM_GPIOS 16
  166. /*
  167. *
  168. */
  169. struct snd_ac97;
  170. struct snd_ac97_gpio_priv;
  171. struct snd_pcm_chmap;
  172. struct snd_ac97_build_ops {
  173. int (*build_3d) (struct snd_ac97 *ac97);
  174. int (*build_specific) (struct snd_ac97 *ac97);
  175. int (*build_spdif) (struct snd_ac97 *ac97);
  176. int (*build_post_spdif) (struct snd_ac97 *ac97);
  177. #ifdef CONFIG_PM
  178. void (*suspend) (struct snd_ac97 *ac97);
  179. void (*resume) (struct snd_ac97 *ac97);
  180. #endif
  181. void (*update_jacks) (struct snd_ac97 *ac97); /* for jack-sharing */
  182. };
  183. struct snd_ac97_bus_ops {
  184. void (*reset) (struct snd_ac97 *ac97);
  185. void (*warm_reset)(struct snd_ac97 *ac97);
  186. void (*write) (struct snd_ac97 *ac97, unsigned short reg, unsigned short val);
  187. unsigned short (*read) (struct snd_ac97 *ac97, unsigned short reg);
  188. void (*wait) (struct snd_ac97 *ac97);
  189. void (*init) (struct snd_ac97 *ac97);
  190. };
  191. struct snd_ac97_bus {
  192. /* -- lowlevel (hardware) driver specific -- */
  193. struct snd_ac97_bus_ops *ops;
  194. void *private_data;
  195. void (*private_free) (struct snd_ac97_bus *bus);
  196. /* --- */
  197. struct snd_card *card;
  198. unsigned short num; /* bus number */
  199. unsigned short no_vra: 1, /* bridge doesn't support VRA */
  200. dra: 1, /* bridge supports double rate */
  201. isdin: 1;/* independent SDIN */
  202. unsigned int clock; /* AC'97 base clock (usually 48000Hz) */
  203. spinlock_t bus_lock; /* used mainly for slot allocation */
  204. unsigned short used_slots[2][4]; /* actually used PCM slots */
  205. unsigned short pcms_count; /* count of PCMs */
  206. struct ac97_pcm *pcms;
  207. struct snd_ac97 *codec[4];
  208. struct snd_info_entry *proc;
  209. };
  210. /* static resolution table */
  211. struct snd_ac97_res_table {
  212. unsigned short reg; /* register */
  213. unsigned short bits; /* resolution bitmask */
  214. };
  215. struct snd_ac97_template {
  216. void *private_data;
  217. void (*private_free) (struct snd_ac97 *ac97);
  218. struct pci_dev *pci; /* assigned PCI device - used for quirks */
  219. unsigned short num; /* number of codec: 0 = primary, 1 = secondary */
  220. unsigned short addr; /* physical address of codec [0-3] */
  221. unsigned int scaps; /* driver capabilities */
  222. const struct snd_ac97_res_table *res_table; /* static resolution */
  223. };
  224. struct snd_ac97 {
  225. /* -- lowlevel (hardware) driver specific -- */
  226. const struct snd_ac97_build_ops *build_ops;
  227. void *private_data;
  228. void (*private_free) (struct snd_ac97 *ac97);
  229. /* --- */
  230. struct snd_ac97_bus *bus;
  231. struct pci_dev *pci; /* assigned PCI device - used for quirks */
  232. struct snd_info_entry *proc;
  233. struct snd_info_entry *proc_regs;
  234. unsigned short subsystem_vendor;
  235. unsigned short subsystem_device;
  236. struct mutex reg_mutex;
  237. struct mutex page_mutex; /* mutex for AD18xx multi-codecs and paging (2.3) */
  238. unsigned short num; /* number of codec: 0 = primary, 1 = secondary */
  239. unsigned short addr; /* physical address of codec [0-3] */
  240. unsigned int id; /* identification of codec */
  241. unsigned short caps; /* capabilities (register 0) */
  242. unsigned short ext_id; /* extended feature identification (register 28) */
  243. unsigned short ext_mid; /* extended modem ID (register 3C) */
  244. const struct snd_ac97_res_table *res_table; /* static resolution */
  245. unsigned int scaps; /* driver capabilities */
  246. unsigned int flags; /* specific code */
  247. unsigned int rates[6]; /* see AC97_RATES_* defines */
  248. unsigned int spdif_status;
  249. unsigned short regs[0x80]; /* register cache */
  250. DECLARE_BITMAP(reg_accessed, 0x80); /* bit flags */
  251. union { /* vendor specific code */
  252. struct {
  253. unsigned short unchained[3]; // 0 = C34, 1 = C79, 2 = C69
  254. unsigned short chained[3]; // 0 = C34, 1 = C79, 2 = C69
  255. unsigned short id[3]; // codec IDs (lower 16-bit word)
  256. unsigned short pcmreg[3]; // PCM registers
  257. unsigned short codec_cfg[3]; // CODEC_CFG bits
  258. unsigned char swap_mic_linein; // AD1986/AD1986A only
  259. unsigned char lo_as_master; /* LO as master */
  260. } ad18xx;
  261. unsigned int dev_flags; /* device specific */
  262. } spec;
  263. /* jack-sharing info */
  264. unsigned char indep_surround;
  265. unsigned char channel_mode;
  266. #ifdef CONFIG_SND_AC97_POWER_SAVE
  267. unsigned int power_up; /* power states */
  268. struct delayed_work power_work;
  269. #endif
  270. struct device dev;
  271. struct snd_ac97_gpio_priv *gpio_priv;
  272. struct snd_pcm_chmap *chmaps[2]; /* channel-maps (optional) */
  273. };
  274. #define to_ac97_t(d) container_of(d, struct snd_ac97, dev)
  275. /* conditions */
  276. static inline int ac97_is_audio(struct snd_ac97 * ac97)
  277. {
  278. return (ac97->scaps & AC97_SCAP_AUDIO);
  279. }
  280. static inline int ac97_is_modem(struct snd_ac97 * ac97)
  281. {
  282. return (ac97->scaps & AC97_SCAP_MODEM);
  283. }
  284. static inline int ac97_is_rev22(struct snd_ac97 * ac97)
  285. {
  286. return (ac97->ext_id & AC97_EI_REV_MASK) >= AC97_EI_REV_22;
  287. }
  288. static inline int ac97_can_amap(struct snd_ac97 * ac97)
  289. {
  290. return (ac97->ext_id & AC97_EI_AMAP) != 0;
  291. }
  292. static inline int ac97_can_spdif(struct snd_ac97 * ac97)
  293. {
  294. return (ac97->ext_id & AC97_EI_SPDIF) != 0;
  295. }
  296. /* functions */
  297. /* create new AC97 bus */
  298. int snd_ac97_bus(struct snd_card *card, int num, struct snd_ac97_bus_ops *ops,
  299. void *private_data, struct snd_ac97_bus **rbus);
  300. /* create mixer controls */
  301. int snd_ac97_mixer(struct snd_ac97_bus *bus, struct snd_ac97_template *template,
  302. struct snd_ac97 **rac97);
  303. const char *snd_ac97_get_short_name(struct snd_ac97 *ac97);
  304. void snd_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short value);
  305. unsigned short snd_ac97_read(struct snd_ac97 *ac97, unsigned short reg);
  306. void snd_ac97_write_cache(struct snd_ac97 *ac97, unsigned short reg, unsigned short value);
  307. int snd_ac97_update(struct snd_ac97 *ac97, unsigned short reg, unsigned short value);
  308. int snd_ac97_update_bits(struct snd_ac97 *ac97, unsigned short reg, unsigned short mask, unsigned short value);
  309. #ifdef CONFIG_SND_AC97_POWER_SAVE
  310. int snd_ac97_update_power(struct snd_ac97 *ac97, int reg, int powerup);
  311. #else
  312. static inline int snd_ac97_update_power(struct snd_ac97 *ac97, int reg,
  313. int powerup)
  314. {
  315. return 0;
  316. }
  317. #endif
  318. #ifdef CONFIG_PM
  319. void snd_ac97_suspend(struct snd_ac97 *ac97);
  320. void snd_ac97_resume(struct snd_ac97 *ac97);
  321. #endif
  322. int snd_ac97_reset(struct snd_ac97 *ac97, bool try_warm, unsigned int id,
  323. unsigned int id_mask);
  324. /* quirk types */
  325. enum {
  326. AC97_TUNE_DEFAULT = -1, /* use default from quirk list (not valid in list) */
  327. AC97_TUNE_NONE = 0, /* nothing extra to do */
  328. AC97_TUNE_HP_ONLY, /* headphone (true line-out) control as master only */
  329. AC97_TUNE_SWAP_HP, /* swap headphone and master controls */
  330. AC97_TUNE_SWAP_SURROUND, /* swap master and surround controls */
  331. AC97_TUNE_AD_SHARING, /* for AD1985, turn on OMS bit and use headphone */
  332. AC97_TUNE_ALC_JACK, /* for Realtek, enable JACK detection */
  333. AC97_TUNE_INV_EAPD, /* inverted EAPD implementation */
  334. AC97_TUNE_MUTE_LED, /* EAPD bit works as mute LED */
  335. AC97_TUNE_HP_MUTE_LED, /* EAPD bit works as mute LED, use headphone control as master */
  336. };
  337. struct ac97_quirk {
  338. unsigned short subvendor; /* PCI subsystem vendor id */
  339. unsigned short subdevice; /* PCI subsystem device id */
  340. unsigned short mask; /* device id bit mask, 0 = accept all */
  341. unsigned int codec_id; /* codec id (if any), 0 = accept all */
  342. const char *name; /* name shown as info */
  343. int type; /* quirk type above */
  344. };
  345. int snd_ac97_tune_hardware(struct snd_ac97 *ac97,
  346. const struct ac97_quirk *quirk,
  347. const char *override);
  348. int snd_ac97_set_rate(struct snd_ac97 *ac97, int reg, unsigned int rate);
  349. /*
  350. * PCM allocation
  351. */
  352. enum ac97_pcm_cfg {
  353. AC97_PCM_CFG_FRONT = 2,
  354. AC97_PCM_CFG_REAR = 10, /* alias surround */
  355. AC97_PCM_CFG_LFE = 11, /* center + lfe */
  356. AC97_PCM_CFG_40 = 4, /* front + rear */
  357. AC97_PCM_CFG_51 = 6, /* front + rear + center/lfe */
  358. AC97_PCM_CFG_SPDIF = 20
  359. };
  360. struct ac97_pcm {
  361. struct snd_ac97_bus *bus;
  362. unsigned int stream: 1, /* stream type: 1 = capture */
  363. exclusive: 1, /* exclusive mode, don't override with other pcms */
  364. copy_flag: 1, /* lowlevel driver must fill all entries */
  365. spdif: 1; /* spdif pcm */
  366. unsigned short aslots; /* active slots */
  367. unsigned short cur_dbl; /* current double-rate state */
  368. unsigned int rates; /* available rates */
  369. struct {
  370. unsigned short slots; /* driver input: requested AC97 slot numbers */
  371. unsigned short rslots[4]; /* allocated slots per codecs */
  372. unsigned char rate_table[4];
  373. struct snd_ac97 *codec[4]; /* allocated codecs */
  374. } r[2]; /* 0 = standard rates, 1 = double rates */
  375. unsigned long private_value; /* used by the hardware driver */
  376. };
  377. int snd_ac97_pcm_assign(struct snd_ac97_bus *ac97,
  378. unsigned short pcms_count,
  379. const struct ac97_pcm *pcms);
  380. int snd_ac97_pcm_open(struct ac97_pcm *pcm, unsigned int rate,
  381. enum ac97_pcm_cfg cfg, unsigned short slots);
  382. int snd_ac97_pcm_close(struct ac97_pcm *pcm);
  383. int snd_ac97_pcm_double_rate_rules(struct snd_pcm_runtime *runtime);
  384. /* ad hoc AC97 device driver access */
  385. extern struct bus_type ac97_bus_type;
  386. /* AC97 platform_data adding function */
  387. static inline void snd_ac97_dev_add_pdata(struct snd_ac97 *ac97, void *data)
  388. {
  389. ac97->dev.platform_data = data;
  390. }
  391. #endif /* __SOUND_AC97_CODEC_H */