ep92.c 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382
  1. /*
  2. * Copyright (c) 2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/init.h>
  14. #include <linux/delay.h>
  15. #include <linux/module.h>
  16. #include <linux/kernel.h>
  17. #include <linux/i2c.h>
  18. #include <linux/slab.h>
  19. #include <linux/sysfs.h>
  20. #include <linux/kobject.h>
  21. #include <sound/core.h>
  22. #include <sound/pcm.h>
  23. #include <sound/pcm_params.h>
  24. #include <sound/tlv.h>
  25. #include <sound/soc.h>
  26. #include <linux/workqueue.h>
  27. #include "ep92.h"
  28. #define EP92_POLL_INTERVAL_OFF_MSEC 2000
  29. #define EP92_POLL_INTERVAL_ON_MSEC 100
  30. #define EP92_RATES (SNDRV_PCM_RATE_32000 |\
  31. SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
  32. SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |\
  33. SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000)
  34. #define EP92_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE)
  35. #define EP92_UEVENT_CTRL_NUM_KEYS 8
  36. #define EP92_UEVENT_AUDIO_NUM_KEYS 9
  37. static const unsigned int ep92_samp_freq_table[8] = {
  38. 32000, 44100, 48000, 88200, 96000, 176400, 192000, 768000
  39. };
  40. static const char hex_to_char[] = {'0', '1', '2', '3', '4', '5', '6', '7',
  41. '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
  42. struct ep92_uevent_data {
  43. struct kobject kobj;
  44. struct kobj_type ktype;
  45. };
  46. static struct kset *ep92_uevent_kset;
  47. static struct ep92_uevent_data *ep92_uevent_ctrl;
  48. static struct ep92_uevent_data *ep92_uevent_audio;
  49. static void ep92_release_uevent_data(struct kobject *kobj)
  50. {
  51. struct ep92_uevent_data *data = container_of(kobj,
  52. struct ep92_uevent_data, kobj);
  53. kfree(data);
  54. }
  55. static int ep92_init_uevent_data(struct ep92_uevent_data *uevent_data,
  56. char *name)
  57. {
  58. int ret = -EINVAL;
  59. if (!uevent_data || !name)
  60. return ret;
  61. /* Set kset for kobject before initializing the kobject */
  62. uevent_data->kobj.kset = ep92_uevent_kset;
  63. /* Initialize kobject and add it to kernel */
  64. ret = kobject_init_and_add(&uevent_data->kobj, &uevent_data->ktype,
  65. NULL, "%s", name);
  66. if (ret) {
  67. pr_err("%s: error initializing uevent kernel object: %d",
  68. __func__, ret);
  69. kobject_put(&uevent_data->kobj);
  70. return ret;
  71. }
  72. /* Send kobject add event to the system */
  73. kobject_uevent(&uevent_data->kobj, KOBJ_ADD);
  74. return ret;
  75. }
  76. /**
  77. * ep92_destroy_uevent_data - destroy kernel object.
  78. *
  79. * @uevent_data: uevent data.
  80. */
  81. static void ep92_destroy_uevent_data(struct ep92_uevent_data *uevent_data)
  82. {
  83. if (uevent_data)
  84. kobject_put(&uevent_data->kobj);
  85. }
  86. static bool ep92_volatile_register(struct device *dev, unsigned int reg)
  87. {
  88. switch (reg) {
  89. case EP92_BI_GENERAL_INFO_0:
  90. case EP92_BI_GENERAL_INFO_1:
  91. case EP92_BI_GENERAL_INFO_2:
  92. case EP92_BI_GENERAL_INFO_3:
  93. case EP92_BI_GENERAL_INFO_4:
  94. case EP92_BI_GENERAL_INFO_5:
  95. case EP92_BI_GENERAL_INFO_6:
  96. case EP92_GENERAL_CONTROL_0:
  97. case EP92_GENERAL_CONTROL_1:
  98. case EP92_GENERAL_CONTROL_2:
  99. case EP92_GENERAL_CONTROL_3:
  100. case EP92_GENERAL_CONTROL_4:
  101. case EP92_AUDIO_INFO_SYSTEM_STATUS_0:
  102. case EP92_AUDIO_INFO_SYSTEM_STATUS_1:
  103. case EP92_AUDIO_INFO_AUDIO_STATUS:
  104. case EP92_AUDIO_INFO_CHANNEL_STATUS_0:
  105. case EP92_AUDIO_INFO_CHANNEL_STATUS_1:
  106. case EP92_AUDIO_INFO_CHANNEL_STATUS_2:
  107. case EP92_AUDIO_INFO_CHANNEL_STATUS_3:
  108. case EP92_AUDIO_INFO_CHANNEL_STATUS_4:
  109. case EP92_AUDIO_INFO_ADO_INFO_FRAME_0:
  110. case EP92_AUDIO_INFO_ADO_INFO_FRAME_1:
  111. case EP92_AUDIO_INFO_ADO_INFO_FRAME_2:
  112. case EP92_AUDIO_INFO_ADO_INFO_FRAME_3:
  113. case EP92_AUDIO_INFO_ADO_INFO_FRAME_4:
  114. case EP92_AUDIO_INFO_ADO_INFO_FRAME_5:
  115. return true;
  116. default:
  117. return false;
  118. }
  119. }
  120. static bool ep92_writeable_registers(struct device *dev, unsigned int reg)
  121. {
  122. if (reg >= EP92_ISP_MODE_ENTER_ISP && reg <= EP92_GENERAL_CONTROL_4)
  123. return true;
  124. return false;
  125. }
  126. static bool ep92_readable_registers(struct device *dev, unsigned int reg)
  127. {
  128. if (reg >= EP92_BI_VENDOR_ID_0 && reg <= EP92_MAX_REGISTER_ADDR)
  129. return true;
  130. return false;
  131. }
  132. /* codec private data */
  133. struct ep92_pdata {
  134. struct regmap *regmap;
  135. struct snd_soc_codec *codec;
  136. struct timer_list timer;
  137. struct work_struct read_status_worker;
  138. int irq;
  139. struct {
  140. u8 ctl;
  141. u8 rx_sel;
  142. u8 cec_volume;
  143. } gc; /* General Control block */
  144. struct {
  145. u8 system_status_0;
  146. u8 system_status_1;
  147. u8 audio_status;
  148. u8 cs[5];
  149. u8 cc;
  150. u8 ca;
  151. } ai; /* Audio Info block */
  152. u8 old_mode;
  153. };
  154. /*
  155. * EP92 Controls
  156. */
  157. /* enumerated controls */
  158. static const char * const ep92_off_on_text[] = {"Off", "On"};
  159. static const char * const ep92_aud_path_text[] = {"TV", "Speaker"};
  160. static const char * const ep92_rx_sel_text[] = {"Port 0", "Port 1", "Port 2",
  161. "Res 3", "Res 4", "Res 5", "None", "Res 7"};
  162. static const char * const ep92_cec_mute_text[] = {"Normal", "Muted"};
  163. static const char * const ep92_state_text[] = {"Inactive", "Active"};
  164. static const char * const ep92_avmute_text[] = {"Normal", "Muted"};
  165. static const char * const ep92_layout_text[] = {"Layout 0", "Layout 1"};
  166. static const char * const ep92_mode_text[] = {"LPCM", "Compr"};
  167. SOC_ENUM_SINGLE_DECL(ep92_power_enum, EP92_GENERAL_CONTROL_0,
  168. EP92_GC_POWER_SHIFT, ep92_off_on_text);
  169. SOC_ENUM_SINGLE_DECL(ep92_audio_path_enum, EP92_GENERAL_CONTROL_0,
  170. EP92_GC_AUDIO_PATH_SHIFT, ep92_aud_path_text);
  171. SOC_ENUM_SINGLE_DECL(ep92_rx_sel_enum, EP92_GENERAL_CONTROL_1,
  172. EP92_GC_RX_SEL_SHIFT, ep92_rx_sel_text);
  173. SOC_ENUM_SINGLE_DECL(ep92_arc_en_enum, EP92_GENERAL_CONTROL_0,
  174. EP92_GC_ARC_EN_SHIFT, ep92_off_on_text);
  175. SOC_ENUM_SINGLE_DECL(ep92_cec_mute_enum, EP92_GENERAL_CONTROL_0,
  176. EP92_GC_CEC_MUTE_SHIFT, ep92_cec_mute_text);
  177. SOC_ENUM_SINGLE_DECL(ep92_state_enum, EP92_AUDIO_INFO_SYSTEM_STATUS_0,
  178. EP92_AI_MCLK_ON_SHIFT, ep92_state_text);
  179. SOC_ENUM_SINGLE_DECL(ep92_avmute_enum, EP92_AUDIO_INFO_SYSTEM_STATUS_0,
  180. EP92_AI_AVMUTE_SHIFT, ep92_avmute_text);
  181. SOC_ENUM_SINGLE_DECL(ep92_layout_enum, EP92_AUDIO_INFO_SYSTEM_STATUS_0,
  182. EP92_AI_LAYOUT_SHIFT, ep92_layout_text);
  183. SOC_ENUM_SINGLE_DECL(ep92_mode_enum, EP92_AUDIO_INFO_AUDIO_STATUS,
  184. EP92_AI_STD_ADO_SHIFT, ep92_mode_text);
  185. /* get/set functions */
  186. static int ep92_power_get(struct snd_kcontrol *kcontrol,
  187. struct snd_ctl_elem_value *ucontrol)
  188. {
  189. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  190. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  191. unsigned int val;
  192. val = snd_soc_read(codec, e->reg);
  193. ucontrol->value.enumerated.item[0] =
  194. (val >> e->shift_l) & EP92_2CHOICE_MASK;
  195. pr_debug("%s: item = %d (%s)\n", __func__,
  196. ucontrol->value.enumerated.item[0],
  197. ep92_off_on_text[ucontrol->value.enumerated.item[0]]);
  198. return 0;
  199. }
  200. static int ep92_power_put(struct snd_kcontrol *kcontrol,
  201. struct snd_ctl_elem_value *ucontrol)
  202. {
  203. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  204. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  205. struct ep92_pdata *ep92 = snd_soc_codec_get_drvdata(codec);
  206. unsigned int val;
  207. val = snd_soc_read(codec, e->reg);
  208. val &= ~EP92_GC_POWER_MASK;
  209. val |= (ucontrol->value.enumerated.item[0] & EP92_2CHOICE_MASK)
  210. << e->shift_l;
  211. snd_soc_write(codec, e->reg, val);
  212. ep92->gc.ctl &= ~EP92_GC_POWER_MASK;
  213. ep92->gc.ctl |= val & EP92_GC_POWER_MASK;
  214. pr_debug("%s: item = %d (%s)\n", __func__,
  215. ucontrol->value.enumerated.item[0],
  216. ep92_off_on_text[ucontrol->value.enumerated.item[0] &
  217. EP92_2CHOICE_MASK]);
  218. return 0;
  219. }
  220. static int ep92_audio_path_get(struct snd_kcontrol *kcontrol,
  221. struct snd_ctl_elem_value *ucontrol)
  222. {
  223. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  224. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  225. unsigned int val;
  226. val = snd_soc_read(codec, e->reg);
  227. ucontrol->value.enumerated.item[0] = (val >> e->shift_l) &
  228. EP92_2CHOICE_MASK;
  229. pr_debug("%s: item = %d (%s)\n", __func__,
  230. ucontrol->value.enumerated.item[0],
  231. ep92_aud_path_text[ucontrol->value.enumerated.item[0]]);
  232. return 0;
  233. }
  234. static int ep92_audio_path_put(struct snd_kcontrol *kcontrol,
  235. struct snd_ctl_elem_value *ucontrol)
  236. {
  237. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  238. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  239. struct ep92_pdata *ep92 = snd_soc_codec_get_drvdata(codec);
  240. unsigned int val;
  241. val = snd_soc_read(codec, e->reg);
  242. val &= ~EP92_GC_AUDIO_PATH_MASK;
  243. val |= (ucontrol->value.enumerated.item[0] & EP92_2CHOICE_MASK)
  244. << e->shift_l;
  245. snd_soc_write(codec, e->reg, val);
  246. ep92->gc.ctl &= ~EP92_GC_AUDIO_PATH_MASK;
  247. ep92->gc.ctl |= val & EP92_GC_AUDIO_PATH_MASK;
  248. pr_debug("%s: item = %d (%s)\n", __func__,
  249. ucontrol->value.enumerated.item[0],
  250. ep92_aud_path_text[ucontrol->value.enumerated.item[0] &
  251. EP92_2CHOICE_MASK]);
  252. return 0;
  253. }
  254. static int ep92_cec_mute_get(struct snd_kcontrol *kcontrol,
  255. struct snd_ctl_elem_value *ucontrol)
  256. {
  257. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  258. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  259. unsigned int val;
  260. val = snd_soc_read(codec, e->reg);
  261. ucontrol->value.enumerated.item[0] = (val >> e->shift_l) &
  262. EP92_2CHOICE_MASK;
  263. pr_debug("%s: item = %d (%s)\n", __func__,
  264. ucontrol->value.enumerated.item[0],
  265. ep92_cec_mute_text[ucontrol->value.enumerated.item[0]]);
  266. return 0;
  267. }
  268. static int ep92_cec_mute_put(struct snd_kcontrol *kcontrol,
  269. struct snd_ctl_elem_value *ucontrol)
  270. {
  271. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  272. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  273. struct ep92_pdata *ep92 = snd_soc_codec_get_drvdata(codec);
  274. unsigned int val;
  275. val = snd_soc_read(codec, e->reg);
  276. val &= ~EP92_GC_CEC_MUTE_MASK;
  277. val |= (ucontrol->value.enumerated.item[0] & EP92_2CHOICE_MASK)
  278. << e->shift_l;
  279. snd_soc_write(codec, e->reg, val);
  280. ep92->gc.ctl &= ~EP92_GC_CEC_MUTE_MASK;
  281. ep92->gc.ctl |= val & EP92_GC_CEC_MUTE_MASK;
  282. pr_debug("%s: item = %d (%s)\n", __func__,
  283. ucontrol->value.enumerated.item[0],
  284. ep92_cec_mute_text[ucontrol->value.enumerated.item[0] &
  285. EP92_2CHOICE_MASK]);
  286. return 0;
  287. }
  288. static int ep92_arc_en_get(struct snd_kcontrol *kcontrol,
  289. struct snd_ctl_elem_value *ucontrol)
  290. {
  291. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  292. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  293. unsigned int val;
  294. val = snd_soc_read(codec, e->reg);
  295. ucontrol->value.enumerated.item[0] = (val >> e->shift_l) &
  296. EP92_2CHOICE_MASK;
  297. pr_debug("%s: item = %d (%s)\n", __func__,
  298. ucontrol->value.enumerated.item[0],
  299. ep92_off_on_text[ucontrol->value.enumerated.item[0]]);
  300. return 0;
  301. }
  302. static int ep92_arc_en_put(struct snd_kcontrol *kcontrol,
  303. struct snd_ctl_elem_value *ucontrol)
  304. {
  305. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  306. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  307. struct ep92_pdata *ep92 = snd_soc_codec_get_drvdata(codec);
  308. unsigned int val;
  309. val = snd_soc_read(codec, e->reg);
  310. val &= ~EP92_GC_ARC_EN_MASK;
  311. val |= (ucontrol->value.enumerated.item[0] & EP92_2CHOICE_MASK)
  312. << e->shift_l;
  313. snd_soc_write(codec, e->reg, val);
  314. ep92->gc.ctl &= ~EP92_GC_ARC_EN_MASK;
  315. ep92->gc.ctl |= val & EP92_GC_ARC_EN_MASK;
  316. pr_debug("%s: item = %d (%s)\n", __func__,
  317. ucontrol->value.enumerated.item[0],
  318. ep92_off_on_text[ucontrol->value.enumerated.item[0] & 0x01]);
  319. return 0;
  320. }
  321. static int ep92_rx_sel_get(struct snd_kcontrol *kcontrol,
  322. struct snd_ctl_elem_value *ucontrol)
  323. {
  324. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  325. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  326. unsigned int val;
  327. val = snd_soc_read(codec, e->reg);
  328. ucontrol->value.enumerated.item[0] = (val >> e->shift_l) &
  329. EP92_GC_RX_SEL_MASK;
  330. pr_debug("%s: item = %d (%s)\n", __func__,
  331. ucontrol->value.enumerated.item[0],
  332. ep92_rx_sel_text[ucontrol->value.enumerated.item[0]]);
  333. return 0;
  334. }
  335. static int ep92_rx_sel_put(struct snd_kcontrol *kcontrol,
  336. struct snd_ctl_elem_value *ucontrol)
  337. {
  338. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  339. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  340. struct ep92_pdata *ep92 = snd_soc_codec_get_drvdata(codec);
  341. unsigned int val;
  342. val = snd_soc_read(codec, e->reg);
  343. val &= ~EP92_GC_RX_SEL_MASK;
  344. val |= (ucontrol->value.enumerated.item[0] & EP92_GC_RX_SEL_MASK)
  345. << e->shift_l;
  346. snd_soc_write(codec, e->reg, val);
  347. ep92->gc.rx_sel &= ~EP92_GC_RX_SEL_MASK;
  348. ep92->gc.rx_sel |= val & EP92_GC_RX_SEL_MASK;
  349. pr_debug("%s: item = %d (%s)\n", __func__,
  350. ucontrol->value.enumerated.item[0],
  351. ep92_rx_sel_text[ucontrol->value.enumerated.item[0] &
  352. EP92_GC_RX_SEL_MASK]);
  353. return 0;
  354. }
  355. static int ep92_cec_volume_get(struct snd_kcontrol *kcontrol,
  356. struct snd_ctl_elem_value *ucontrol)
  357. {
  358. struct soc_mixer_control *mc =
  359. (struct soc_mixer_control *)kcontrol->private_value;
  360. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  361. unsigned int val;
  362. val = snd_soc_read(codec, mc->reg);
  363. ucontrol->value.integer.value[0] = (val >> mc->shift) &
  364. EP92_GC_CEC_VOLUME_MASK;
  365. pr_debug("%s: volume = %ld\n", __func__,
  366. ucontrol->value.integer.value[0]);
  367. return 0;
  368. }
  369. static int ep92_cec_volume_put(struct snd_kcontrol *kcontrol,
  370. struct snd_ctl_elem_value *ucontrol)
  371. {
  372. struct soc_mixer_control *mc =
  373. (struct soc_mixer_control *)kcontrol->private_value;
  374. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  375. struct ep92_pdata *ep92 = snd_soc_codec_get_drvdata(codec);
  376. unsigned int val;
  377. val = ucontrol->value.integer.value[0] & EP92_GC_CEC_VOLUME_MASK;
  378. if (val > EP92_GC_CEC_VOLUME_MAX)
  379. val = EP92_GC_CEC_VOLUME_MAX;
  380. snd_soc_write(codec, mc->reg, val);
  381. ep92->gc.cec_volume = val;
  382. pr_debug("%s: volume = %ld\n", __func__,
  383. ucontrol->value.integer.value[0]);
  384. return 0;
  385. }
  386. static int ep92_state_get(struct snd_kcontrol *kcontrol,
  387. struct snd_ctl_elem_value *ucontrol)
  388. {
  389. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  390. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  391. unsigned int val;
  392. val = snd_soc_read(codec, e->reg);
  393. ucontrol->value.enumerated.item[0] = (val >> e->shift_l) &
  394. EP92_2CHOICE_MASK;
  395. pr_debug("%s: item = %d (%s)\n", __func__,
  396. ucontrol->value.enumerated.item[0],
  397. ep92_state_text[ucontrol->value.enumerated.item[0]]);
  398. return 0;
  399. }
  400. static int ep92_avmute_get(struct snd_kcontrol *kcontrol,
  401. struct snd_ctl_elem_value *ucontrol)
  402. {
  403. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  404. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  405. unsigned int val;
  406. val = snd_soc_read(codec, e->reg);
  407. ucontrol->value.enumerated.item[0] = (val >> e->shift_l) &
  408. EP92_2CHOICE_MASK;
  409. pr_debug("%s: item = %d (%s)\n", __func__,
  410. ucontrol->value.enumerated.item[0],
  411. ep92_avmute_text[ucontrol->value.enumerated.item[0]]);
  412. return 0;
  413. }
  414. static int ep92_layout_get(struct snd_kcontrol *kcontrol,
  415. struct snd_ctl_elem_value *ucontrol)
  416. {
  417. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  418. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  419. unsigned int val;
  420. val = snd_soc_read(codec, e->reg);
  421. ucontrol->value.enumerated.item[0] = (val >> e->shift_l) &
  422. EP92_2CHOICE_MASK;
  423. pr_debug("%s: item = %d (%s)\n", __func__,
  424. ucontrol->value.enumerated.item[0],
  425. ep92_layout_text[ucontrol->value.enumerated.item[0]]);
  426. return 0;
  427. }
  428. static int ep92_mode_get(struct snd_kcontrol *kcontrol,
  429. struct snd_ctl_elem_value *ucontrol)
  430. {
  431. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  432. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  433. struct ep92_pdata *ep92 = snd_soc_codec_get_drvdata(codec);
  434. unsigned int val;
  435. val = snd_soc_read(codec, e->reg);
  436. if (val & EP92_AI_STD_ADO_MASK) {
  437. val = snd_soc_read(codec, EP92_AUDIO_INFO_CHANNEL_STATUS_0);
  438. if (val & EP92_AI_NPCM_MASK)
  439. ucontrol->value.enumerated.item[0] = 1; /* Compr */
  440. else
  441. ucontrol->value.enumerated.item[0] = 0; /* LPCM */
  442. } else if (val & EP92_AI_HBR_ADO_MASK) {
  443. ucontrol->value.enumerated.item[0] = 1; /* Compr */
  444. } else {
  445. ucontrol->value.enumerated.item[0] = ep92->old_mode;
  446. }
  447. pr_debug("%s: item = %d (%s)\n", __func__,
  448. ucontrol->value.enumerated.item[0],
  449. ep92_mode_text[ucontrol->value.enumerated.item[0]]);
  450. return 0;
  451. }
  452. static int ep92_rate_get(struct snd_kcontrol *kcontrol,
  453. struct snd_ctl_elem_value *ucontrol)
  454. {
  455. struct soc_mixer_control *mc =
  456. (struct soc_mixer_control *)kcontrol->private_value;
  457. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  458. unsigned int val;
  459. val = snd_soc_read(codec, mc->reg);
  460. val &= EP92_AI_RATE_MASK;
  461. val = ep92_samp_freq_table[val];
  462. ucontrol->value.integer.value[0] = val;
  463. pr_debug("%s: rate = %ld\n", __func__,
  464. ucontrol->value.integer.value[0]);
  465. return 0;
  466. }
  467. static int ep92_ch_count_get(struct snd_kcontrol *kcontrol,
  468. struct snd_ctl_elem_value *ucontrol)
  469. {
  470. struct soc_mixer_control *mc =
  471. (struct soc_mixer_control *)kcontrol->private_value;
  472. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  473. unsigned int val;
  474. val = snd_soc_read(codec, mc->reg) & EP92_AI_CH_COUNT_MASK;
  475. /* mapping is ch_count = reg_val + 1, with exception: 0 = unknown */
  476. if (val > 0)
  477. val += 1;
  478. ucontrol->value.integer.value[0] = val;
  479. pr_debug("%s: ch_count = %ld\n", __func__,
  480. ucontrol->value.integer.value[0]);
  481. return 0;
  482. }
  483. static int ep92_ch_alloc_get(struct snd_kcontrol *kcontrol,
  484. struct snd_ctl_elem_value *ucontrol)
  485. {
  486. struct soc_mixer_control *mc =
  487. (struct soc_mixer_control *)kcontrol->private_value;
  488. struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
  489. unsigned int val;
  490. val = snd_soc_read(codec, mc->reg);
  491. ucontrol->value.integer.value[0] = (val >> mc->shift) &
  492. EP92_AI_CH_ALLOC_MASK;
  493. pr_debug("%s: ch_alloc = 0x%02lx\n", __func__,
  494. ucontrol->value.integer.value[0]);
  495. return 0;
  496. }
  497. static const struct snd_kcontrol_new ep92_snd_controls[] = {
  498. SOC_ENUM_EXT("HDMI_IN POWER", ep92_power_enum,
  499. ep92_power_get, ep92_power_put),
  500. SOC_ENUM_EXT("HDMI_IN AUDIO_PATH", ep92_audio_path_enum,
  501. ep92_audio_path_get, ep92_audio_path_put),
  502. SOC_ENUM_EXT("HDMI_IN RX_SEL", ep92_rx_sel_enum,
  503. ep92_rx_sel_get, ep92_rx_sel_put),
  504. SOC_ENUM_EXT("HDMI_IN ARC_EN", ep92_arc_en_enum,
  505. ep92_arc_en_get, ep92_arc_en_put),
  506. SOC_ENUM_EXT("HDMI_IN CEC_MUTE", ep92_cec_mute_enum,
  507. ep92_cec_mute_get, ep92_cec_mute_put),
  508. SOC_SINGLE_EXT("HDMI_IN CEC_VOLUME", EP92_GENERAL_CONTROL_3,
  509. EP92_GC_CEC_VOLUME_MIN, EP92_GC_CEC_VOLUME_MAX,
  510. 0, ep92_cec_volume_get, ep92_cec_volume_put),
  511. SOC_ENUM_EXT("HDMI_IN STATE", ep92_state_enum, ep92_state_get, NULL),
  512. SOC_ENUM_EXT("HDMI_IN AVMUTE", ep92_avmute_enum, ep92_avmute_get, NULL),
  513. SOC_ENUM_EXT("HDMI_IN LAYOUT", ep92_layout_enum, ep92_layout_get, NULL),
  514. SOC_ENUM_EXT("HDMI_IN MODE", ep92_mode_enum, ep92_mode_get, NULL),
  515. SOC_SINGLE_EXT("HDMI_IN RATE", EP92_AUDIO_INFO_AUDIO_STATUS,
  516. EP92_AI_RATE_MIN, EP92_AI_RATE_MAX, 0, ep92_rate_get, NULL),
  517. SOC_SINGLE_EXT("HDMI_IN CH_COUNT", EP92_AUDIO_INFO_ADO_INFO_FRAME_1,
  518. EP92_AI_CH_COUNT_MIN, EP92_AI_CH_COUNT_MAX,
  519. 0, ep92_ch_count_get, NULL),
  520. SOC_SINGLE_EXT("HDMI_IN CH_ALLOC", EP92_AUDIO_INFO_ADO_INFO_FRAME_4,
  521. EP92_AI_CH_ALLOC_MIN, EP92_AI_CH_ALLOC_MAX, 0,
  522. ep92_ch_alloc_get, NULL),
  523. };
  524. static int ep92_startup(struct snd_pcm_substream *substream,
  525. struct snd_soc_dai *dai)
  526. {
  527. return 0;
  528. }
  529. static void ep92_shutdown(struct snd_pcm_substream *substream,
  530. struct snd_soc_dai *dai)
  531. {
  532. }
  533. static int ep92_hw_params(struct snd_pcm_substream *substream,
  534. struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
  535. {
  536. return 0;
  537. }
  538. static struct snd_soc_dai_ops ep92_dai_ops = {
  539. .startup = ep92_startup,
  540. .shutdown = ep92_shutdown,
  541. .hw_params = ep92_hw_params,
  542. };
  543. static struct snd_soc_dai_driver ep92_dai[] = {
  544. {
  545. .name = "ep92-hdmi",
  546. .id = 1,
  547. .capture = {
  548. .stream_name = "HDMI Capture",
  549. .rate_max = 192000,
  550. .rate_min = 32000,
  551. .channels_min = 1,
  552. .channels_max = 8,
  553. .rates = EP92_RATES,
  554. .formats = EP92_FORMATS,
  555. },
  556. .ops = &ep92_dai_ops, /* callbacks */
  557. },
  558. {
  559. .name = "ep92-arc",
  560. .id = 2,
  561. .capture = {
  562. .stream_name = "ARC Capture",
  563. .rate_max = 192000,
  564. .rate_min = 32000,
  565. .channels_min = 1,
  566. .channels_max = 2,
  567. .rates = EP92_RATES,
  568. .formats = EP92_FORMATS,
  569. },
  570. .ops = &ep92_dai_ops, /* callbacks */
  571. },
  572. };
  573. static const char * const ep92_event_power_text[] = {
  574. "POWER=Off",
  575. "POWER=On",
  576. };
  577. static const char * const ep92_event_arc_en_text[] = {
  578. "ARC_EN=Off",
  579. "ARC_EN=On",
  580. };
  581. static const char * const ep92_event_audio_path_text[] = {
  582. "AUDIO_PATH=TV",
  583. "AUDIO_PATH=Speaker",
  584. };
  585. static const char *const ep92_event_rx_sel_text[] = {
  586. "RX_SEL=Port0",
  587. "RX_SEL=Port1",
  588. "RX_SEL=Port2",
  589. "RX_SEL=Res3",
  590. "RX_SEL=Res4",
  591. "RX_SEL=Res5",
  592. "RX_SEL=None",
  593. "RX_SEL=Res7",
  594. };
  595. static const char *const ep92_event_cec_mute_text[] = {
  596. "CEC_MUTE=Normal",
  597. "CEC_MUTE=Muted",
  598. };
  599. static int ep92_send_uevent_ctrl(struct ep92_pdata *ep92)
  600. {
  601. char *env[EP92_UEVENT_CTRL_NUM_KEYS];
  602. u8 idx = 0;
  603. u8 cec_volume;
  604. char cec_volume_text[] = "CEC_VOLUME=0x00";
  605. char *ptr;
  606. env[idx++] = "HDMI_CONTROL=TRUE";
  607. if ((ep92->gc.ctl >> EP92_GC_POWER_SHIFT) &
  608. EP92_2CHOICE_MASK)
  609. env[idx++] = (char *)ep92_event_power_text[1];
  610. else
  611. env[idx++] = (char *)ep92_event_power_text[0];
  612. if (ep92->gc.ctl & EP92_2CHOICE_MASK)
  613. env[idx++] = (char *)ep92_event_arc_en_text[1];
  614. else
  615. env[idx++] = (char *)ep92_event_arc_en_text[0];
  616. if ((ep92->gc.ctl >> EP92_GC_AUDIO_PATH_SHIFT) &
  617. EP92_2CHOICE_MASK)
  618. env[idx++] = (char *)ep92_event_audio_path_text[1];
  619. else
  620. env[idx++] = (char *)ep92_event_audio_path_text[0];
  621. switch (ep92->gc.rx_sel & EP92_GC_RX_SEL_MASK) {
  622. case 0:
  623. env[idx++] = (char *)ep92_event_rx_sel_text[0];
  624. break;
  625. case 1:
  626. env[idx++] = (char *)ep92_event_rx_sel_text[1];
  627. break;
  628. case 2:
  629. env[idx++] = (char *)ep92_event_rx_sel_text[2];
  630. break;
  631. case 3:
  632. env[idx++] = (char *)ep92_event_rx_sel_text[3];
  633. break;
  634. case 4:
  635. env[idx++] = (char *)ep92_event_rx_sel_text[4];
  636. break;
  637. case 5:
  638. env[idx++] = (char *)ep92_event_rx_sel_text[5];
  639. break;
  640. case 6:
  641. env[idx++] = (char *)ep92_event_rx_sel_text[6];
  642. break;
  643. case 7:
  644. env[idx++] = (char *)ep92_event_rx_sel_text[7];
  645. break;
  646. default:
  647. env[idx++] = (char *)ep92_event_rx_sel_text[0];
  648. }
  649. if ((ep92->gc.ctl >> EP92_GC_CEC_MUTE_SHIFT) &
  650. EP92_2CHOICE_MASK)
  651. env[idx++] = (char *)ep92_event_cec_mute_text[1];
  652. else
  653. env[idx++] = (char *)ep92_event_cec_mute_text[0];
  654. ptr = &cec_volume_text[strlen(cec_volume_text)-2];
  655. cec_volume = (ep92->ai.ca) & EP92_GC_CEC_VOLUME_MASK;
  656. *ptr++ = hex_to_char[(cec_volume >> 4) & 0x0f];
  657. *ptr++ = hex_to_char[cec_volume & 0x0f];
  658. env[idx++] = (char *)cec_volume_text;
  659. env[idx++] = NULL;
  660. if (idx != EP92_UEVENT_CTRL_NUM_KEYS) {
  661. pr_err("ep92 wrong number of audio uevent keys (%d).\n",
  662. idx);
  663. return -EINVAL;
  664. }
  665. return kobject_uevent_env(&ep92_uevent_ctrl->kobj, KOBJ_CHANGE, env);
  666. }
  667. static const char * const ep92_event_state_text[] = {
  668. "STATE=Inactive",
  669. "STATE=Active",
  670. };
  671. static const char *const ep92_event_rate_text[] = {
  672. "RATE=32000",
  673. "RATE=44100",
  674. "RATE=48000",
  675. "RATE=88200",
  676. "RATE=96000",
  677. "RATE=176400",
  678. "RATE=192000",
  679. "RATE=768000",
  680. };
  681. static const char *const ep92_event_format_text[] = {
  682. "FORMAT=LPCM",
  683. "FORMAT=Compr",
  684. };
  685. static const char *const ep92_event_layout_text[] = {
  686. "LAYOUT=2ch",
  687. "LAYOUT=8ch",
  688. };
  689. static const char *const ep92_event_avmute_text[] = {
  690. "AVMUTE=Normal",
  691. "AVMUTE=Muted",
  692. };
  693. static const char *const ep92_event_ch_count_text[] = {
  694. "CH_COUNT=One",
  695. "CH_COUNT=Two",
  696. "CH_COUNT=Three",
  697. "CH_COUNT=Four",
  698. "CH_COUNT=Five",
  699. "CH_COUNT=Six",
  700. "CH_COUNT=Seven",
  701. "CH_COUNT=Eight",
  702. };
  703. static int ep92_send_uevent_audio(struct ep92_pdata *ep92)
  704. {
  705. char *env[EP92_UEVENT_AUDIO_NUM_KEYS];
  706. u8 idx = 0;
  707. u8 ch_alloc;
  708. char ch_alloc_text[] = "CH_ALLOC=0x00";
  709. char *ptr;
  710. env[idx++] = "HDMI_FMT_UPDATE=TRUE";
  711. if (((ep92->ai.system_status_0 >> EP92_AI_MCLK_ON_SHIFT) &
  712. EP92_2CHOICE_MASK) == EP92_STATUS_AUDIO_ACTIVE)
  713. env[idx++] = (char *)ep92_event_state_text[1];
  714. else
  715. env[idx++] = (char *)ep92_event_state_text[0];
  716. switch (ep92->ai.audio_status & EP92_AI_RATE_MASK) {
  717. case 0:
  718. env[idx++] = (char *)ep92_event_rate_text[0];
  719. break;
  720. case 1:
  721. env[idx++] = (char *)ep92_event_rate_text[1];
  722. break;
  723. case 2:
  724. env[idx++] = (char *)ep92_event_rate_text[2];
  725. break;
  726. case 3:
  727. env[idx++] = (char *)ep92_event_rate_text[3];
  728. break;
  729. case 4:
  730. env[idx++] = (char *)ep92_event_rate_text[4];
  731. break;
  732. case 5:
  733. env[idx++] = (char *)ep92_event_rate_text[5];
  734. break;
  735. case 6:
  736. env[idx++] = (char *)ep92_event_rate_text[6];
  737. break;
  738. case 7:
  739. env[idx++] = (char *)ep92_event_rate_text[7];
  740. break;
  741. default:
  742. env[idx++] = (char *)ep92_event_rate_text[2];
  743. }
  744. if (ep92->old_mode)
  745. env[idx++] = (char *)ep92_event_format_text[1];
  746. else
  747. env[idx++] = (char *)ep92_event_format_text[0];
  748. if (ep92->ai.system_status_0 & EP92_2CHOICE_MASK)
  749. env[idx++] = (char *)ep92_event_layout_text[1];
  750. else
  751. env[idx++] = (char *)ep92_event_layout_text[0];
  752. if ((ep92->ai.system_status_0 >> EP92_AI_AVMUTE_SHIFT) &
  753. EP92_2CHOICE_MASK)
  754. env[idx++] = (char *)ep92_event_avmute_text[1];
  755. else
  756. env[idx++] = (char *)ep92_event_avmute_text[0];
  757. /* cc==0 signals n/a and is treated as stereo */
  758. switch (ep92->ai.cc & EP92_AI_CH_COUNT_MASK) {
  759. case 0:
  760. env[idx++] = (char *)ep92_event_ch_count_text[1];
  761. break;
  762. case 1:
  763. env[idx++] = (char *)ep92_event_ch_count_text[1];
  764. break;
  765. case 2:
  766. env[idx++] = (char *)ep92_event_ch_count_text[2];
  767. break;
  768. case 3:
  769. env[idx++] = (char *)ep92_event_ch_count_text[3];
  770. break;
  771. case 4:
  772. env[idx++] = (char *)ep92_event_ch_count_text[4];
  773. break;
  774. case 5:
  775. env[idx++] = (char *)ep92_event_ch_count_text[5];
  776. break;
  777. case 6:
  778. env[idx++] = (char *)ep92_event_ch_count_text[6];
  779. break;
  780. case 7:
  781. env[idx++] = (char *)ep92_event_ch_count_text[7];
  782. break;
  783. default:
  784. env[idx++] = (char *)ep92_event_ch_count_text[1];
  785. }
  786. ptr = &ch_alloc_text[strlen(ch_alloc_text)-2];
  787. ch_alloc = (ep92->ai.ca) & EP92_AI_CH_ALLOC_MASK;
  788. *ptr++ = hex_to_char[(ch_alloc >> 4) & 0x0f];
  789. *ptr++ = hex_to_char[ch_alloc & 0x0f];
  790. env[idx++] = (char *)ch_alloc_text;
  791. env[idx++] = NULL;
  792. if (idx != EP92_UEVENT_AUDIO_NUM_KEYS) {
  793. pr_err("ep92 wrong number of audio uevent keys (%d).\n",
  794. idx);
  795. return -EINVAL;
  796. }
  797. return kobject_uevent_env(&ep92_uevent_audio->kobj, KOBJ_CHANGE, env);
  798. }
  799. static void ep92_read_general_control(struct snd_soc_codec *codec,
  800. struct ep92_pdata *ep92)
  801. {
  802. u8 old, change;
  803. bool send_uevent = false;
  804. old = ep92->gc.ctl;
  805. ep92->gc.ctl = snd_soc_read(codec, EP92_GENERAL_CONTROL_0);
  806. change = ep92->gc.ctl ^ old;
  807. if (change & EP92_GC_POWER_MASK) {
  808. pr_debug("ep92 power changed to %d (%s)\n",
  809. (ep92->gc.ctl >> EP92_GC_POWER_SHIFT) &
  810. EP92_2CHOICE_MASK,
  811. ep92_off_on_text[(ep92->gc.ctl
  812. >> EP92_GC_POWER_SHIFT) & EP92_2CHOICE_MASK]);
  813. send_uevent = true;
  814. }
  815. if (change & EP92_GC_AUDIO_PATH_MASK) {
  816. pr_debug("ep92 audio_path changed to %d (%s)\n",
  817. (ep92->gc.ctl >> EP92_GC_AUDIO_PATH_SHIFT) &
  818. EP92_2CHOICE_MASK,
  819. ep92_aud_path_text[(ep92->gc.ctl
  820. >> EP92_GC_AUDIO_PATH_SHIFT) & EP92_2CHOICE_MASK]);
  821. send_uevent = true;
  822. }
  823. if (change & EP92_GC_CEC_MUTE_MASK) {
  824. pr_debug("ep92 cec_mute changed to %d (%s)\n",
  825. (ep92->gc.ctl >> EP92_GC_CEC_MUTE_SHIFT) &
  826. EP92_2CHOICE_MASK,
  827. ep92_cec_mute_text[(ep92->gc.ctl
  828. >> EP92_GC_CEC_MUTE_SHIFT) & EP92_2CHOICE_MASK]);
  829. send_uevent = true;
  830. }
  831. if (change & EP92_GC_ARC_EN_MASK) {
  832. pr_debug("ep92 arc_en changed to %d (%s)\n",
  833. ep92->gc.ctl & EP92_2CHOICE_MASK,
  834. ep92_off_on_text[ep92->gc.ctl & EP92_2CHOICE_MASK]);
  835. send_uevent = true;
  836. }
  837. old = ep92->gc.rx_sel;
  838. ep92->gc.rx_sel = snd_soc_read(codec, EP92_GENERAL_CONTROL_1);
  839. change = ep92->gc.rx_sel ^ old;
  840. if (change & EP92_GC_RX_SEL_MASK) {
  841. pr_debug("ep92 rx_sel changed to %d (%s)\n",
  842. ep92->gc.rx_sel & EP92_GC_RX_SEL_MASK,
  843. ep92_rx_sel_text[ep92->gc.rx_sel &
  844. EP92_GC_RX_SEL_MASK]);
  845. send_uevent = true;
  846. }
  847. old = ep92->gc.cec_volume;
  848. ep92->gc.cec_volume = snd_soc_read(codec, EP92_GENERAL_CONTROL_3);
  849. change = ep92->gc.cec_volume ^ old;
  850. if (change & EP92_GC_CEC_VOLUME_MASK) {
  851. pr_debug("ep92 cec_volume changed to %d\n",
  852. ep92->gc.cec_volume & EP92_GC_CEC_VOLUME_MASK);
  853. send_uevent = true;
  854. }
  855. if (send_uevent)
  856. ep92_send_uevent_ctrl(ep92);
  857. }
  858. static void ep92_read_audio_info(struct snd_soc_codec *codec,
  859. struct ep92_pdata *ep92)
  860. {
  861. u8 old, change;
  862. u8 new_mode;
  863. bool send_uevent = false;
  864. old = ep92->ai.system_status_0;
  865. ep92->ai.system_status_0 = snd_soc_read(codec,
  866. EP92_AUDIO_INFO_SYSTEM_STATUS_0);
  867. change = ep92->ai.system_status_0 ^ old;
  868. if (change & EP92_AI_MCLK_ON_MASK) {
  869. pr_debug("ep92 status changed to %d (%s)\n",
  870. (ep92->ai.system_status_0 >> EP92_AI_MCLK_ON_SHIFT) &
  871. EP92_2CHOICE_MASK,
  872. ep92_state_text[(ep92->ai.system_status_0
  873. >> EP92_AI_MCLK_ON_SHIFT) & EP92_2CHOICE_MASK]);
  874. send_uevent = true;
  875. }
  876. if (change & EP92_AI_AVMUTE_MASK) {
  877. pr_debug("ep92 avmute changed to %d (%s)\n",
  878. (ep92->ai.system_status_0 >> EP92_AI_AVMUTE_SHIFT) &
  879. EP92_2CHOICE_MASK,
  880. ep92_avmute_text[(ep92->ai.system_status_0
  881. >> EP92_AI_AVMUTE_SHIFT) & EP92_2CHOICE_MASK]);
  882. send_uevent = true;
  883. }
  884. if (change & EP92_AI_LAYOUT_MASK) {
  885. pr_debug("ep92 layout changed to %d (%s)\n",
  886. (ep92->ai.system_status_0) & EP92_2CHOICE_MASK,
  887. ep92_layout_text[(ep92->ai.system_status_0) &
  888. EP92_2CHOICE_MASK]);
  889. send_uevent = true;
  890. }
  891. old = ep92->ai.audio_status;
  892. ep92->ai.audio_status = snd_soc_read(codec,
  893. EP92_AUDIO_INFO_AUDIO_STATUS);
  894. change = ep92->ai.audio_status ^ old;
  895. if (change & EP92_AI_RATE_MASK) {
  896. pr_debug("ep92 rate changed to %d\n",
  897. ep92_samp_freq_table[(ep92->ai.audio_status) &
  898. EP92_AI_RATE_MASK]);
  899. send_uevent = true;
  900. }
  901. new_mode = ep92->old_mode;
  902. if (ep92->ai.audio_status & EP92_AI_STD_ADO_MASK) {
  903. ep92->ai.cs[0] = snd_soc_read(codec,
  904. EP92_AUDIO_INFO_CHANNEL_STATUS_0);
  905. if (ep92->ai.cs[0] & EP92_AI_NPCM_MASK)
  906. new_mode = 1; /* Compr */
  907. else
  908. new_mode = 0; /* LPCM */
  909. } else if (ep92->ai.audio_status & EP92_AI_HBR_ADO_MASK)
  910. new_mode = 1; /* Compr */
  911. if (ep92->old_mode != new_mode) {
  912. pr_debug("ep92 mode changed to %d (%s)\n", new_mode,
  913. ep92_mode_text[new_mode]);
  914. send_uevent = true;
  915. }
  916. ep92->old_mode = new_mode;
  917. old = ep92->ai.cc;
  918. ep92->ai.cc = snd_soc_read(codec, EP92_AUDIO_INFO_ADO_INFO_FRAME_1);
  919. change = ep92->ai.cc ^ old;
  920. if (change & EP92_AI_CH_COUNT_MASK) {
  921. pr_debug("ep92 ch_count changed to %d (%d)\n",
  922. ep92->ai.cc & EP92_AI_CH_COUNT_MASK,
  923. (ep92->ai.cc & EP92_AI_CH_COUNT_MASK) == 0 ? 0 :
  924. (ep92->ai.cc & EP92_AI_CH_COUNT_MASK) + 1);
  925. send_uevent = true;
  926. }
  927. old = ep92->ai.ca;
  928. ep92->ai.ca = snd_soc_read(codec, EP92_AUDIO_INFO_ADO_INFO_FRAME_4);
  929. change = ep92->ai.ca ^ old;
  930. if (change & EP92_AI_CH_ALLOC_MASK) {
  931. pr_debug("ep92 ch_alloc changed to 0x%02x\n",
  932. (ep92->ai.ca) & EP92_AI_CH_ALLOC_MASK);
  933. send_uevent = true;
  934. }
  935. if (send_uevent)
  936. ep92_send_uevent_audio(ep92);
  937. }
  938. static void ep92_init(struct snd_soc_codec *codec, struct ep92_pdata *ep92)
  939. {
  940. /* update the format information in mixer controls */
  941. ep92_read_general_control(codec, ep92);
  942. ep92_read_audio_info(codec, ep92);
  943. }
  944. static int ep92_probe(struct snd_soc_codec *codec)
  945. {
  946. struct ep92_pdata *ep92 = snd_soc_codec_get_drvdata(codec);
  947. ep92->codec = codec;
  948. ep92_init(codec, ep92);
  949. return 0;
  950. }
  951. static int ep92_remove(struct snd_soc_codec *codec)
  952. {
  953. return 0;
  954. }
  955. static struct regmap *ep92_get_regmap(struct device *dev)
  956. {
  957. struct ep92_pdata *ep92_ctrl = dev_get_drvdata(dev);
  958. if (!ep92_ctrl)
  959. return NULL;
  960. return ep92_ctrl->regmap;
  961. }
  962. static struct snd_soc_codec_driver soc_codec_drv_ep92 = {
  963. .probe = ep92_probe,
  964. .remove = ep92_remove,
  965. .get_regmap = ep92_get_regmap,
  966. .component_driver = {
  967. .controls = ep92_snd_controls,
  968. .num_controls = ARRAY_SIZE(ep92_snd_controls),
  969. },
  970. };
  971. static struct regmap_config ep92_regmap_config = {
  972. .reg_bits = 8,
  973. .val_bits = 8,
  974. .cache_type = REGCACHE_RBTREE,
  975. .reg_defaults = ep92_reg_defaults,
  976. .num_reg_defaults = ARRAY_SIZE(ep92_reg_defaults),
  977. .max_register = EP92_MAX_REGISTER_ADDR,
  978. .volatile_reg = ep92_volatile_register,
  979. .writeable_reg = ep92_writeable_registers,
  980. .readable_reg = ep92_readable_registers,
  981. };
  982. void ep92_read_status(struct work_struct *work)
  983. {
  984. struct ep92_pdata *ep92 = container_of(work, struct ep92_pdata,
  985. read_status_worker);
  986. struct snd_soc_codec *codec = ep92->codec;
  987. u8 val;
  988. /* No polling before codec is initialized */
  989. if (codec == NULL)
  990. return;
  991. /* check ADO_CHF that is set when audio format has changed */
  992. val = snd_soc_read(codec, EP92_BI_GENERAL_INFO_1);
  993. if (val == 0xff) {
  994. /* workaround for Nak'ed first read */
  995. val = snd_soc_read(codec, EP92_BI_GENERAL_INFO_1);
  996. if (val == 0xff)
  997. return; /* assume device not present */
  998. }
  999. if (val & EP92_GI_ADO_CHF_MASK)
  1000. pr_debug("ep92 audio mode change trigger.\n");
  1001. if (val & EP92_GI_CEC_ECF_MASK)
  1002. pr_debug("ep92 CEC change trigger.\n");
  1003. /* check for general control changes */
  1004. ep92_read_general_control(codec, ep92);
  1005. /* update the format information in mixer controls */
  1006. ep92_read_audio_info(codec, ep92);
  1007. }
  1008. static irqreturn_t ep92_irq(int irq, void *data)
  1009. {
  1010. struct ep92_pdata *ep92 = data;
  1011. struct snd_soc_codec *codec = ep92->codec;
  1012. /* Treat interrupt before codec is initialized as spurious */
  1013. if (codec == NULL)
  1014. return IRQ_NONE;
  1015. dev_dbg(codec->dev, "ep92_interrupt\n");
  1016. schedule_work(&ep92->read_status_worker);
  1017. return IRQ_HANDLED;
  1018. };
  1019. void ep92_poll_status(unsigned long data)
  1020. {
  1021. struct ep92_pdata *ep92 = (struct ep92_pdata *)data;
  1022. u32 poll_msec;
  1023. if ((ep92->gc.ctl & EP92_GC_POWER_MASK) == 0)
  1024. poll_msec = EP92_POLL_INTERVAL_OFF_MSEC;
  1025. else
  1026. poll_msec = EP92_POLL_INTERVAL_ON_MSEC;
  1027. mod_timer(&ep92->timer, jiffies + msecs_to_jiffies(poll_msec));
  1028. schedule_work(&ep92->read_status_worker);
  1029. }
  1030. static const struct of_device_id ep92_of_match[] = {
  1031. { .compatible = "explore,ep92a6", },
  1032. { }
  1033. };
  1034. MODULE_DEVICE_TABLE(of, ep92_of_match);
  1035. static int ep92_i2c_probe(struct i2c_client *client,
  1036. const struct i2c_device_id *id)
  1037. {
  1038. struct ep92_pdata *ep92;
  1039. int ret;
  1040. ep92 = devm_kzalloc(&client->dev, sizeof(struct ep92_pdata),
  1041. GFP_KERNEL);
  1042. if (ep92 == NULL)
  1043. return -ENOMEM;
  1044. ep92->regmap = devm_regmap_init_i2c(client, &ep92_regmap_config);
  1045. if (IS_ERR(ep92->regmap)) {
  1046. ret = PTR_ERR(ep92->regmap);
  1047. dev_err(&client->dev,
  1048. "%s %d: Failed to allocate regmap for I2C device: %d\n",
  1049. __func__, __LINE__, ret);
  1050. return ret;
  1051. }
  1052. i2c_set_clientdata(client, ep92);
  1053. /* register interrupt handler */
  1054. INIT_WORK(&ep92->read_status_worker, ep92_read_status);
  1055. ep92->irq = client->irq;
  1056. if (ep92->irq) {
  1057. ret = devm_request_threaded_irq(&client->dev, ep92->irq,
  1058. NULL, ep92_irq, IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
  1059. "ep92_irq", ep92);
  1060. if (ret) {
  1061. dev_err(&client->dev,
  1062. "%s: Failed to request IRQ %d: %d\n",
  1063. __func__, ep92->irq, ret);
  1064. ep92->irq = 0;
  1065. }
  1066. }
  1067. /* poll status if IRQ is not configured */
  1068. if (ep92->irq == 0) {
  1069. setup_timer(&ep92->timer, ep92_poll_status,
  1070. (unsigned long)ep92);
  1071. mod_timer(&ep92->timer, jiffies +
  1072. msecs_to_jiffies(EP92_POLL_INTERVAL_OFF_MSEC));
  1073. }
  1074. /* register codec */
  1075. ret = snd_soc_register_codec(&client->dev, &soc_codec_drv_ep92,
  1076. ep92_dai, ARRAY_SIZE(ep92_dai));
  1077. if (ret) {
  1078. dev_err(&client->dev,
  1079. "%s %d: Failed to register CODEC: %d\n",
  1080. __func__, __LINE__, ret);
  1081. goto err_reg;
  1082. }
  1083. /* Create a kset under /sys/kernel/ */
  1084. ep92_uevent_kset = kset_create_and_add("ep92-hdmi", NULL, kernel_kobj);
  1085. if (!ep92_uevent_kset) {
  1086. pr_err("%s: error creating uevent kernel set", __func__);
  1087. ret = -EINVAL;
  1088. goto err_kset;
  1089. }
  1090. /* uevent to signal control changes */
  1091. ep92_uevent_ctrl = devm_kzalloc(&client->dev,
  1092. sizeof(*ep92_uevent_ctrl), GFP_KERNEL);
  1093. if (!ep92_uevent_ctrl) {
  1094. ret = -ENOMEM;
  1095. goto err_ue_ctrl;
  1096. }
  1097. ep92_uevent_ctrl->ktype.release = ep92_release_uevent_data;
  1098. ret = ep92_init_uevent_data(ep92_uevent_ctrl, "ctrl-uevent");
  1099. if (ret) {
  1100. dev_err(&client->dev,
  1101. "%s: Failed to init ctrl-uevent: %d\n",
  1102. __func__, ret);
  1103. goto err_ue_init_ctrl;
  1104. }
  1105. /* uevent to signal audio format changes */
  1106. ep92_uevent_audio = devm_kzalloc(&client->dev,
  1107. sizeof(*ep92_uevent_audio), GFP_KERNEL);
  1108. if (!ep92_uevent_audio) {
  1109. ret = -ENOMEM;
  1110. goto err_ue_audio;
  1111. }
  1112. ep92_uevent_audio->ktype.release = ep92_release_uevent_data;
  1113. ret = ep92_init_uevent_data(ep92_uevent_audio, "audio-uevent");
  1114. if (ret) {
  1115. dev_err(&client->dev,
  1116. "%s: Failed to init ctrl-uevent: %d\n",
  1117. __func__, ret);
  1118. goto err_ue_init_audio;
  1119. }
  1120. return 0;
  1121. err_ue_init_audio:
  1122. devm_kfree(&client->dev, ep92_uevent_audio);
  1123. err_ue_audio:
  1124. ep92_destroy_uevent_data(ep92_uevent_ctrl);
  1125. err_ue_init_ctrl:
  1126. devm_kfree(&client->dev, ep92_uevent_ctrl);
  1127. err_ue_ctrl:
  1128. kset_unregister(ep92_uevent_kset);
  1129. err_kset:
  1130. snd_soc_unregister_codec(&client->dev);
  1131. err_reg:
  1132. if (ep92->irq == 0)
  1133. del_timer(&ep92->timer);
  1134. return ret;
  1135. }
  1136. static int ep92_i2c_remove(struct i2c_client *client)
  1137. {
  1138. struct ep92_pdata *ep92;
  1139. ep92 = i2c_get_clientdata(client);
  1140. if ((ep92 != NULL) && (ep92->irq == 0))
  1141. del_timer(&ep92->timer);
  1142. snd_soc_unregister_codec(&client->dev);
  1143. ep92_destroy_uevent_data(ep92_uevent_ctrl);
  1144. devm_kfree(&client->dev, ep92_uevent_ctrl);
  1145. ep92_destroy_uevent_data(ep92_uevent_audio);
  1146. devm_kfree(&client->dev, ep92_uevent_audio);
  1147. if (ep92_uevent_kset) {
  1148. kset_unregister(ep92_uevent_kset);
  1149. ep92_uevent_kset = NULL;
  1150. }
  1151. return 0;
  1152. }
  1153. static const struct i2c_device_id ep92_i2c_id[] = {
  1154. { "ep92-dev", 0},
  1155. { }
  1156. };
  1157. MODULE_DEVICE_TABLE(i2c, ep92_i2c_id);
  1158. static struct i2c_driver ep92_i2c_driver = {
  1159. .probe = ep92_i2c_probe,
  1160. .remove = ep92_i2c_remove,
  1161. .id_table = ep92_i2c_id,
  1162. .driver = {
  1163. .name = "ep92",
  1164. .owner = THIS_MODULE,
  1165. .of_match_table = ep92_of_match
  1166. },
  1167. };
  1168. static int __init ep92_codec_init(void)
  1169. {
  1170. int ret = 0;
  1171. ret = i2c_add_driver(&ep92_i2c_driver);
  1172. if (ret)
  1173. pr_err("Failed to register EP92 I2C driver: %d\n", ret);
  1174. return ret;
  1175. }
  1176. module_init(ep92_codec_init);
  1177. static void __exit ep92_codec_exit(void)
  1178. {
  1179. i2c_del_driver(&ep92_i2c_driver);
  1180. }
  1181. module_exit(ep92_codec_exit);
  1182. MODULE_DESCRIPTION("EP92 HDMI repeater/switch driver");
  1183. MODULE_LICENSE("GPL v2");