Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

control_sgtl5000.cpp 35KB

10 år sedan
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024
  1. /* Audio Library for Teensy 3.X
  2. * Copyright (c) 2014, Paul Stoffregen, paul@pjrc.com
  3. *
  4. * Development of this audio library was funded by PJRC.COM, LLC by sales of
  5. * Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop
  6. * open source software by purchasing Teensy or other PJRC products.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice, development funding notice, and this permission
  16. * notice shall be included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #include <Arduino.h>
  27. #include "control_sgtl5000.h"
  28. #include "Wire.h"
  29. #define CHIP_ID 0x0000
  30. // 15:8 PARTID 0xA0 - 8 bit identifier for SGTL5000
  31. // 7:0 REVID 0x00 - revision number for SGTL5000.
  32. #define CHIP_DIG_POWER 0x0002
  33. // 6 ADC_POWERUP 1=Enable, 0=disable the ADC block, both digital & analog,
  34. // 5 DAC_POWERUP 1=Enable, 0=disable the DAC block, both analog and digital
  35. // 4 DAP_POWERUP 1=Enable, 0=disable the DAP block
  36. // 1 I2S_OUT_POWERUP 1=Enable, 0=disable the I2S data output
  37. // 0 I2S_IN_POWERUP 1=Enable, 0=disable the I2S data input
  38. #define CHIP_CLK_CTRL 0x0004
  39. // 5:4 RATE_MODE Sets the sample rate mode. MCLK_FREQ is still specified
  40. // relative to the rate in SYS_FS
  41. // 0x0 = SYS_FS specifies the rate
  42. // 0x1 = Rate is 1/2 of the SYS_FS rate
  43. // 0x2 = Rate is 1/4 of the SYS_FS rate
  44. // 0x3 = Rate is 1/6 of the SYS_FS rate
  45. // 3:2 SYS_FS Sets the internal system sample rate (default=2)
  46. // 0x0 = 32 kHz
  47. // 0x1 = 44.1 kHz
  48. // 0x2 = 48 kHz
  49. // 0x3 = 96 kHz
  50. // 1:0 MCLK_FREQ Identifies incoming SYS_MCLK frequency and if the PLL should be used
  51. // 0x0 = 256*Fs
  52. // 0x1 = 384*Fs
  53. // 0x2 = 512*Fs
  54. // 0x3 = Use PLL
  55. // The 0x3 (Use PLL) setting must be used if the SYS_MCLK is not
  56. // a standard multiple of Fs (256, 384, or 512). This setting can
  57. // also be used if SYS_MCLK is a standard multiple of Fs.
  58. // Before this field is set to 0x3 (Use PLL), the PLL must be
  59. // powered up by setting CHIP_ANA_POWER->PLL_POWERUP and
  60. // CHIP_ANA_POWER->VCOAMP_POWERUP. Also, the PLL dividers must
  61. // be calculated based on the external MCLK rate and
  62. // CHIP_PLL_CTRL register must be set (see CHIP_PLL_CTRL register
  63. // description details on how to calculate the divisors).
  64. #define CHIP_I2S_CTRL 0x0006
  65. // 8 SCLKFREQ Sets frequency of I2S_SCLK when in master mode (MS=1). When in slave
  66. // mode (MS=0), this field must be set appropriately to match SCLK input
  67. // rate.
  68. // 0x0 = 64Fs
  69. // 0x1 = 32Fs - Not supported for RJ mode (I2S_MODE = 1)
  70. // 7 MS Configures master or slave of I2S_LRCLK and I2S_SCLK.
  71. // 0x0 = Slave: I2S_LRCLK an I2S_SCLK are inputs
  72. // 0x1 = Master: I2S_LRCLK and I2S_SCLK are outputs
  73. // NOTE: If the PLL is used (CHIP_CLK_CTRL->MCLK_FREQ==0x3),
  74. // the SGTL5000 must be a master of the I2S port (MS==1)
  75. // 6 SCLK_INV Sets the edge that data (input and output) is clocked in on for I2S_SCLK
  76. // 0x0 = data is valid on rising edge of I2S_SCLK
  77. // 0x1 = data is valid on falling edge of I2S_SCLK
  78. // 5:4 DLEN I2S data length (default=1)
  79. // 0x0 = 32 bits (only valid when SCLKFREQ=0),
  80. // not valid for Right Justified Mode
  81. // 0x1 = 24 bits (only valid when SCLKFREQ=0)
  82. // 0x2 = 20 bits
  83. // 0x3 = 16 bits
  84. // 3:2 I2S_MODE Sets the mode for the I2S port
  85. // 0x0 = I2S mode or Left Justified (Use LRALIGN to select)
  86. // 0x1 = Right Justified Mode
  87. // 0x2 = PCM Format A/B
  88. // 0x3 = RESERVED
  89. // 1 LRALIGN I2S_LRCLK Alignment to data word. Not used for Right Justified mode
  90. // 0x0 = Data word starts 1 I2S_SCLK delay after I2S_LRCLK
  91. // transition (I2S format, PCM format A)
  92. // 0x1 = Data word starts after I2S_LRCLK transition (left
  93. // justified format, PCM format B)
  94. // 0 LRPOL I2S_LRCLK Polarity when data is presented.
  95. // 0x0 = I2S_LRCLK = 0 - Left, 1 - Right
  96. // 1x0 = I2S_LRCLK = 0 - Right, 1 - Left
  97. // The left subframe should be presented first regardless of
  98. // the setting of LRPOL.
  99. #define CHIP_SSS_CTRL 0x000A
  100. // 14 DAP_MIX_LRSWAP DAP Mixer Input Swap
  101. // 0x0 = Normal Operation
  102. // 0x1 = Left and Right channels for the DAP MIXER Input are swapped.
  103. // 13 DAP_LRSWAP DAP Mixer Input Swap
  104. // 0x0 = Normal Operation
  105. // 0x1 = Left and Right channels for the DAP Input are swapped
  106. // 12 DAC_LRSWAP DAC Input Swap
  107. // 0x0 = Normal Operation
  108. // 0x1 = Left and Right channels for the DAC are swapped
  109. // 10 I2S_LRSWAP I2S_DOUT Swap
  110. // 0x0 = Normal Operation
  111. // 0x1 = Left and Right channels for the I2S_DOUT are swapped
  112. // 9:8 DAP_MIX_SELECT Select data source for DAP mixer
  113. // 0x0 = ADC
  114. // 0x1 = I2S_IN
  115. // 0x2 = Reserved
  116. // 0x3 = Reserved
  117. // 7:6 DAP_SELECT Select data source for DAP
  118. // 0x0 = ADC
  119. // 0x1 = I2S_IN
  120. // 0x2 = Reserved
  121. // 0x3 = Reserved
  122. // 5:4 DAC_SELECT Select data source for DAC (default=1)
  123. // 0x0 = ADC
  124. // 0x1 = I2S_IN
  125. // 0x2 = Reserved
  126. // 0x3 = DAP
  127. // 1:0 I2S_SELECT Select data source for I2S_DOUT
  128. // 0x0 = ADC
  129. // 0x1 = I2S_IN
  130. // 0x2 = Reserved
  131. // 0x3 = DAP
  132. #define CHIP_ADCDAC_CTRL 0x000E
  133. // 13 VOL_BUSY_DAC_RIGHT Volume Busy DAC Right
  134. // 0x0 = Ready
  135. // 0x1 = Busy - This indicates the channel has not reached its
  136. // programmed volume/mute level
  137. // 12 VOL_BUSY_DAC_LEFT Volume Busy DAC Left
  138. // 0x0 = Ready
  139. // 0x1 = Busy - This indicates the channel has not reached its
  140. // programmed volume/mute level
  141. // 9 VOL_RAMP_EN Volume Ramp Enable (default=1)
  142. // 0x0 = Disables volume ramp. New volume settings take immediate
  143. // effect without a ramp
  144. // 0x1 = Enables volume ramp
  145. // This field affects DAC_VOL. The volume ramp effects both
  146. // volume settings and mute When set to 1 a soft mute is enabled.
  147. // 8 VOL_EXPO_RAMP Exponential Volume Ramp Enable
  148. // 0x0 = Linear ramp over top 4 volume octaves
  149. // 0x1 = Exponential ramp over full volume range
  150. // This bit only takes effect if VOL_RAMP_EN is 1.
  151. // 3 DAC_MUTE_RIGHT DAC Right Mute (default=1)
  152. // 0x0 = Unmute
  153. // 0x1 = Muted
  154. // If VOL_RAMP_EN = 1, this is a soft mute.
  155. // 2 DAC_MUTE_LEFT DAC Left Mute (default=1)
  156. // 0x0 = Unmute
  157. // 0x1 = Muted
  158. // If VOL_RAMP_EN = 1, this is a soft mute.
  159. // 1 ADC_HPF_FREEZE ADC High Pass Filter Freeze
  160. // 0x0 = Normal operation
  161. // 0x1 = Freeze the ADC high-pass filter offset register. The
  162. // offset continues to be subtracted from the ADC data stream.
  163. // 0 ADC_HPF_BYPASS ADC High Pass Filter Bypass
  164. // 0x0 = Normal operation
  165. // 0x1 = Bypassed and offset not updated
  166. #define CHIP_DAC_VOL 0x0010
  167. // 15:8 DAC_VOL_RIGHT DAC Right Channel Volume. Set the Right channel DAC volume
  168. // with 0.5017 dB steps from 0 to -90 dB
  169. // 0x3B and less = Reserved
  170. // 0x3C = 0 dB
  171. // 0x3D = -0.5 dB
  172. // 0xF0 = -90 dB
  173. // 0xFC and greater = Muted
  174. // If VOL_RAMP_EN = 1, there is an automatic ramp to the
  175. // new volume setting.
  176. // 7:0 DAC_VOL_LEFT DAC Left Channel Volume. Set the Left channel DAC volume
  177. // with 0.5017 dB steps from 0 to -90 dB
  178. // 0x3B and less = Reserved
  179. // 0x3C = 0 dB
  180. // 0x3D = -0.5 dB
  181. // 0xF0 = -90 dB
  182. // 0xFC and greater = Muted
  183. // If VOL_RAMP_EN = 1, there is an automatic ramp to the
  184. // new volume setting.
  185. #define CHIP_PAD_STRENGTH 0x0014
  186. // 9:8 I2S_LRCLK I2S LRCLK Pad Drive Strength (default=1)
  187. // Sets drive strength for output pads per the table below.
  188. // VDDIO 1.8 V 2.5 V 3.3 V
  189. // 0x0 = Disable
  190. // 0x1 = 1.66 mA 2.87 mA 4.02 mA
  191. // 0x2 = 3.33 mA 5.74 mA 8.03 mA
  192. // 0x3 = 4.99 mA 8.61 mA 12.05 mA
  193. // 7:6 I2S_SCLK I2S SCLK Pad Drive Strength (default=1)
  194. // 5:4 I2S_DOUT I2S DOUT Pad Drive Strength (default=1)
  195. // 3:2 CTRL_DATA I2C DATA Pad Drive Strength (default=3)
  196. // 1:0 CTRL_CLK I2C CLK Pad Drive Strength (default=3)
  197. // (all use same table as I2S_LRCLK)
  198. #define CHIP_ANA_ADC_CTRL 0x0020
  199. // 8 ADC_VOL_M6DB ADC Volume Range Reduction
  200. // This bit shifts both right and left analog ADC volume
  201. // range down by 6.0 dB.
  202. // 0x0 = No change in ADC range
  203. // 0x1 = ADC range reduced by 6.0 dB
  204. // 7:4 ADC_VOL_RIGHT ADC Right Channel Volume
  205. // Right channel analog ADC volume control in 1.5 dB steps.
  206. // 0x0 = 0 dB
  207. // 0x1 = +1.5 dB
  208. // ...
  209. // 0xF = +22.5 dB
  210. // This range is -6.0 dB to +16.5 dB if ADC_VOL_M6DB is set to 1.
  211. // 3:0 ADC_VOL_LEFT ADC Left Channel Volume
  212. // (same scale as ADC_VOL_RIGHT)
  213. #define CHIP_ANA_HP_CTRL 0x0022
  214. // 14:8 HP_VOL_RIGHT Headphone Right Channel Volume (default 0x18)
  215. // Right channel headphone volume control with 0.5 dB steps.
  216. // 0x00 = +12 dB
  217. // 0x01 = +11.5 dB
  218. // 0x18 = 0 dB
  219. // ...
  220. // 0x7F = -51.5 dB
  221. // 6:0 HP_VOL_LEFT Headphone Left Channel Volume (default 0x18)
  222. // (same scale as HP_VOL_RIGHT)
  223. #define CHIP_ANA_CTRL 0x0024
  224. // 8 MUTE_LO LINEOUT Mute, 0 = Unmute, 1 = Mute (default 1)
  225. // 6 SELECT_HP Select the headphone input, 0 = DAC, 1 = LINEIN
  226. // 5 EN_ZCD_HP Enable the headphone zero cross detector (ZCD)
  227. // 0x0 = HP ZCD disabled
  228. // 0x1 = HP ZCD enabled
  229. // 4 MUTE_HP Mute the headphone outputs, 0 = Unmute, 1 = Mute (default)
  230. // 2 SELECT_ADC Select the ADC input, 0 = Microphone, 1 = LINEIN
  231. // 1 EN_ZCD_ADC Enable the ADC analog zero cross detector (ZCD)
  232. // 0x0 = ADC ZCD disabled
  233. // 0x1 = ADC ZCD enabled
  234. // 0 MUTE_ADC Mute the ADC analog volume, 0 = Unmute, 1 = Mute (default)
  235. #define CHIP_LINREG_CTRL 0x0026
  236. // 6 VDDC_MAN_ASSN Determines chargepump source when VDDC_ASSN_OVRD is set.
  237. // 0x0 = VDDA
  238. // 0x1 = VDDIO
  239. // 5 VDDC_ASSN_OVRD Charge pump Source Assignment Override
  240. // 0x0 = Charge pump source is automatically assigned based
  241. // on higher of VDDA and VDDIO
  242. // 0x1 = the source of charge pump is manually assigned by
  243. // VDDC_MAN_ASSN If VDDIO and VDDA are both the same
  244. // and greater than 3.1 V, VDDC_ASSN_OVRD and
  245. // VDDC_MAN_ASSN should be used to manually assign
  246. // VDDIO as the source for charge pump.
  247. // 3:0 D_PROGRAMMING Sets the VDDD linear regulator output voltage in 50 mV steps.
  248. // Must clear the LINREG_SIMPLE_POWERUP and STARTUP_POWERUP bits
  249. // in the 0x0030 (CHIP_ANA_POWER) register after power-up, for
  250. // this setting to produce the proper VDDD voltage.
  251. // 0x0 = 1.60
  252. // 0xF = 0.85
  253. #define CHIP_REF_CTRL 0x0028 // bandgap reference bias voltage and currents
  254. // 8:4 VAG_VAL Analog Ground Voltage Control
  255. // These bits control the analog ground voltage in 25 mV steps.
  256. // This should usually be set to VDDA/2 or lower for best
  257. // performance (maximum output swing at minimum THD). This VAG
  258. // reference is also used for the DAC and ADC voltage reference.
  259. // So changing this voltage scales the output swing of the DAC
  260. // and the output signal of the ADC.
  261. // 0x00 = 0.800 V
  262. // 0x1F = 1.575 V
  263. // 3:1 BIAS_CTRL Bias control
  264. // These bits adjust the bias currents for all of the analog
  265. // blocks. By lowering the bias current a lower quiescent power
  266. // is achieved. It should be noted that this mode can affect
  267. // performance by 3-4 dB.
  268. // 0x0 = Nominal
  269. // 0x1-0x3=+12.5%
  270. // 0x4=-12.5%
  271. // 0x5=-25%
  272. // 0x6=-37.5%
  273. // 0x7=-50%
  274. // 0 SMALL_POP VAG Ramp Control
  275. // Setting this bit slows down the VAG ramp from ~200 to ~400 ms
  276. // to reduce the startup pop, but increases the turn on/off time.
  277. // 0x0 = Normal VAG ramp
  278. // 0x1 = Slow down VAG ramp
  279. #define CHIP_MIC_CTRL 0x002A // microphone gain & internal microphone bias
  280. // 9:8 BIAS_RESISTOR MIC Bias Output Impedance Adjustment
  281. // Controls an adjustable output impedance for the microphone bias.
  282. // If this is set to zero the micbias block is powered off and
  283. // the output is highZ.
  284. // 0x0 = Powered off
  285. // 0x1 = 2.0 kohm
  286. // 0x2 = 4.0 kohm
  287. // 0x3 = 8.0 kohm
  288. // 6:4 BIAS_VOLT MIC Bias Voltage Adjustment
  289. // Controls an adjustable bias voltage for the microphone bias
  290. // amp in 250 mV steps. This bias voltage setting should be no
  291. // more than VDDA-200 mV for adequate power supply rejection.
  292. // 0x0 = 1.25 V
  293. // ...
  294. // 0x7 = 3.00 V
  295. // 1:0 GAIN MIC Amplifier Gain
  296. // Sets the microphone amplifier gain. At 0 dB setting the THD
  297. // can be slightly higher than other paths- typically around
  298. // ~65 dB. At other gain settings the THD are better.
  299. // 0x0 = 0 dB
  300. // 0x1 = +20 dB
  301. // 0x2 = +30 dB
  302. // 0x3 = +40 dB
  303. #define CHIP_LINE_OUT_CTRL 0x002C
  304. // 11:8 OUT_CURRENT Controls the output bias current for the LINEOUT amplifiers. The
  305. // nominal recommended setting for a 10 kohm load with 1.0 nF load cap
  306. // is 0x3. There are only 5 valid settings.
  307. // 0x0=0.18 mA
  308. // 0x1=0.27 mA
  309. // 0x3=0.36 mA
  310. // 0x7=0.45 mA
  311. // 0xF=0.54 mA
  312. // 5:0 LO_VAGCNTRL LINEOUT Amplifier Analog Ground Voltage
  313. // Controls the analog ground voltage for the LINEOUT amplifiers
  314. // in 25 mV steps. This should usually be set to VDDIO/2.
  315. // 0x00 = 0.800 V
  316. // ...
  317. // 0x1F = 1.575 V
  318. // ...
  319. // 0x23 = 1.675 V
  320. // 0x24-0x3F are invalid
  321. #define CHIP_LINE_OUT_VOL 0x002E
  322. // 12:8 LO_VOL_RIGHT LINEOUT Right Channel Volume (default=4)
  323. // Controls the right channel LINEOUT volume in 0.5 dB steps.
  324. // Higher codes have more attenuation.
  325. // 4:0 LO_VOL_LEFT LINEOUT Left Channel Output Level (default=4)
  326. // Used to normalize the output level of the left line output
  327. // to full scale based on the values used to set
  328. // LINE_OUT_CTRL->LO_VAGCNTRL and CHIP_REF_CTRL->VAG_VAL.
  329. // In general this field should be set to:
  330. // 40*log((VAG_VAL)/(LO_VAGCNTRL)) + 15
  331. // Suggested values based on typical VDDIO and VDDA voltages.
  332. // VDDA VAG_VAL VDDIO LO_VAGCNTRL LO_VOL_*
  333. // 1.8 V 0.9 3.3 V 1.55 0x06
  334. // 1.8 V 0.9 1.8 V 0.9 0x0F
  335. // 3.3 V 1.55 1.8 V 0.9 0x19
  336. // 3.3 V 1.55 3.3 V 1.55 0x0F
  337. // After setting to the nominal voltage, this field can be used
  338. // to adjust the output level in +/-0.5 dB increments by using
  339. // values higher or lower than the nominal setting.
  340. #define CHIP_ANA_POWER 0x0030 // power down controls for the analog blocks.
  341. // The only other power-down controls are BIAS_RESISTOR in the MIC_CTRL register
  342. // and the EN_ZCD control bits in ANA_CTRL.
  343. // 14 DAC_MONO While DAC_POWERUP is set, this allows the DAC to be put into left only
  344. // mono operation for power savings. 0=mono, 1=stereo (default)
  345. // 13 LINREG_SIMPLE_POWERUP Power up the simple (low power) digital supply regulator.
  346. // After reset, this bit can be cleared IF VDDD is driven
  347. // externally OR the primary digital linreg is enabled with
  348. // LINREG_D_POWERUP
  349. // 12 STARTUP_POWERUP Power up the circuitry needed during the power up ramp and reset.
  350. // After reset this bit can be cleared if VDDD is coming from
  351. // an external source.
  352. // 11 VDDC_CHRGPMP_POWERUP Power up the VDDC charge pump block. If neither VDDA or VDDIO
  353. // is 3.0 V or larger this bit should be cleared before analog
  354. // blocks are powered up.
  355. // 10 PLL_POWERUP PLL Power Up, 0 = Power down, 1 = Power up
  356. // When cleared, the PLL is turned off. This must be set before
  357. // CHIP_CLK_CTRL->MCLK_FREQ is programmed to 0x3. The
  358. // CHIP_PLL_CTRL register must be configured correctly before
  359. // setting this bit.
  360. // 9 LINREG_D_POWERUP Power up the primary VDDD linear regulator, 0 = Power down, 1 = Power up
  361. // 8 VCOAMP_POWERUP Power up the PLL VCO amplifier, 0 = Power down, 1 = Power up
  362. // 7 VAG_POWERUP Power up the VAG reference buffer.
  363. // Setting this bit starts the power up ramp for the headphone
  364. // and LINEOUT. The headphone (and/or LINEOUT) powerup should
  365. // be set BEFORE clearing this bit. When this bit is cleared
  366. // the power-down ramp is started. The headphone (and/or LINEOUT)
  367. // powerup should stay set until the VAG is fully ramped down
  368. // (200 to 400 ms after clearing this bit).
  369. // 0x0 = Power down, 0x1 = Power up
  370. // 6 ADC_MONO While ADC_POWERUP is set, this allows the ADC to be put into left only
  371. // mono operation for power savings. This mode is useful when
  372. // only using the microphone input.
  373. // 0x0 = Mono (left only), 0x1 = Stereo
  374. // 5 REFTOP_POWERUP Power up the reference bias currents
  375. // 0x0 = Power down, 0x1 = Power up
  376. // This bit can be cleared when the part is a sleep state
  377. // to minimize analog power.
  378. // 4 HEADPHONE_POWERUP Power up the headphone amplifiers
  379. // 0x0 = Power down, 0x1 = Power up
  380. // 3 DAC_POWERUP Power up the DACs
  381. // 0x0 = Power down, 0x1 = Power up
  382. // 2 CAPLESS_HEADPHONE_POWERUP Power up the capless headphone mode
  383. // 0x0 = Power down, 0x1 = Power up
  384. // 1 ADC_POWERUP Power up the ADCs
  385. // 0x0 = Power down, 0x1 = Power up
  386. // 0 LINEOUT_POWERUP Power up the LINEOUT amplifiers
  387. // 0x0 = Power down, 0x1 = Power up
  388. #define CHIP_PLL_CTRL 0x0032
  389. // 15:11 INT_DIVISOR
  390. // 10:0 FRAC_DIVISOR
  391. #define CHIP_CLK_TOP_CTRL 0x0034
  392. // 11 ENABLE_INT_OSC Setting this bit enables an internal oscillator to be used for the
  393. // zero cross detectors, the short detect recovery, and the
  394. // charge pump. This allows the I2S clock to be shut off while
  395. // still operating an analog signal path. This bit can be kept
  396. // on when the I2S clock is enabled, but the I2S clock is more
  397. // accurate so it is preferred to clear this bit when I2S is present.
  398. // 3 INPUT_FREQ_DIV2 SYS_MCLK divider before PLL input
  399. // 0x0 = pass through
  400. // 0x1 = SYS_MCLK is divided by 2 before entering PLL
  401. // This must be set when the input clock is above 17 Mhz. This
  402. // has no effect when the PLL is powered down.
  403. #define CHIP_ANA_STATUS 0x0036
  404. // 9 LRSHORT_STS This bit is high whenever a short is detected on the left or right
  405. // channel headphone drivers.
  406. // 8 CSHORT_STS This bit is high whenever a short is detected on the capless headphone
  407. // common/center channel driver.
  408. // 4 PLL_IS_LOCKED This bit goes high after the PLL is locked.
  409. #define CHIP_ANA_TEST1 0x0038 // intended only for debug.
  410. #define CHIP_ANA_TEST2 0x003A // intended only for debug.
  411. #define CHIP_SHORT_CTRL 0x003C
  412. // 14:12 LVLADJR Right channel headphone short detector in 25 mA steps.
  413. // 0x3=25 mA
  414. // 0x2=50 mA
  415. // 0x1=75 mA
  416. // 0x0=100 mA
  417. // 0x4=125 mA
  418. // 0x5=150 mA
  419. // 0x6=175 mA
  420. // 0x7=200 mA
  421. // This trip point can vary by ~30% over process so leave plenty
  422. // of guard band to avoid false trips. This short detect trip
  423. // point is also effected by the bias current adjustments made
  424. // by CHIP_REF_CTRL->BIAS_CTRL and by CHIP_ANA_TEST1->HP_IALL_ADJ.
  425. // 10:8 LVLADJL Left channel headphone short detector in 25 mA steps.
  426. // (same scale as LVLADJR)
  427. // 6:4 LVLADJC Capless headphone center channel short detector in 50 mA steps.
  428. // 0x3=50 mA
  429. // 0x2=100 mA
  430. // 0x1=150 mA
  431. // 0x0=200 mA
  432. // 0x4=250 mA
  433. // 0x5=300 mA
  434. // 0x6=350 mA
  435. // 0x7=400 mA
  436. // 3:2 MODE_LR Behavior of left/right short detection
  437. // 0x0 = Disable short detector, reset short detect latch,
  438. // software view non-latched short signal
  439. // 0x1 = Enable short detector and reset the latch at timeout
  440. // (every ~50 ms)
  441. // 0x2 = This mode is not used/invalid
  442. // 0x3 = Enable short detector with only manual reset (have
  443. // to return to 0x0 to reset the latch)
  444. // 1:0 MODE_CM Behavior of capless headphone central short detection
  445. // (same settings as MODE_LR)
  446. #define DAP_CONTROL 0x0100
  447. #define DAP_PEQ 0x0102
  448. #define DAP_BASS_ENHANCE 0x0104
  449. #define DAP_BASS_ENHANCE_CTRL 0x0106
  450. #define DAP_AUDIO_EQ 0x0108
  451. #define DAP_SGTL_SURROUND 0x010A
  452. #define DAP_FILTER_COEF_ACCESS 0x010C
  453. #define DAP_COEF_WR_B0_MSB 0x010E
  454. #define DAP_COEF_WR_B0_LSB 0x0110
  455. #define DAP_AUDIO_EQ_BASS_BAND0 0x0116 // 115 Hz
  456. #define DAP_AUDIO_EQ_BAND1 0x0118 // 330 Hz
  457. #define DAP_AUDIO_EQ_BAND2 0x011A // 990 Hz
  458. #define DAP_AUDIO_EQ_BAND3 0x011C // 3000 Hz
  459. #define DAP_AUDIO_EQ_TREBLE_BAND4 0x011E // 9900 Hz
  460. #define DAP_MAIN_CHAN 0x0120
  461. #define DAP_MIX_CHAN 0x0122
  462. #define DAP_AVC_CTRL 0x0124
  463. #define DAP_AVC_THRESHOLD 0x0126
  464. #define DAP_AVC_ATTACK 0x0128
  465. #define DAP_AVC_DECAY 0x012A
  466. #define DAP_COEF_WR_B1_MSB 0x012C
  467. #define DAP_COEF_WR_B1_LSB 0x012E
  468. #define DAP_COEF_WR_B2_MSB 0x0130
  469. #define DAP_COEF_WR_B2_LSB 0x0132
  470. #define DAP_COEF_WR_A1_MSB 0x0134
  471. #define DAP_COEF_WR_A1_LSB 0x0136
  472. #define DAP_COEF_WR_A2_MSB 0x0138
  473. #define DAP_COEF_WR_A2_LSB 0x013A
  474. #define SGTL5000_I2C_ADDR_CS_LOW 0x0A // CTRL_ADR0_CS pin low (normal configuration)
  475. #define SGTL5000_I2C_ADDR_CS_HIGH 0x2A // CTRL_ADR0_CS pin high
  476. void AudioControlSGTL5000::setAddress(uint8_t level)
  477. {
  478. if (level == LOW) {
  479. i2c_addr = SGTL5000_I2C_ADDR_CS_LOW;
  480. } else {
  481. i2c_addr = SGTL5000_I2C_ADDR_CS_HIGH;
  482. }
  483. }
  484. bool AudioControlSGTL5000::enable(void)
  485. {
  486. muted = true;
  487. Wire.begin();
  488. delay(5);
  489. //Serial.print("chip ID = ");
  490. //delay(5);
  491. //unsigned int n = read(CHIP_ID);
  492. //Serial.println(n, HEX);
  493. int r = write(CHIP_ANA_POWER, 0x4060); // VDDD is externally driven with 1.8V
  494. if (!r) return false;
  495. write(CHIP_LINREG_CTRL, 0x006C); // VDDA & VDDIO both over 3.1V
  496. write(CHIP_REF_CTRL, 0x01F2); // VAG=1.575, normal ramp, +12.5% bias current
  497. write(CHIP_LINE_OUT_CTRL, 0x0F22); // LO_VAGCNTRL=1.65V, OUT_CURRENT=0.54mA
  498. write(CHIP_SHORT_CTRL, 0x4446); // allow up to 125mA
  499. write(CHIP_ANA_CTRL, 0x0137); // enable zero cross detectors
  500. write(CHIP_ANA_POWER, 0x40FF); // power up: lineout, hp, adc, dac
  501. write(CHIP_DIG_POWER, 0x0073); // power up all digital stuff
  502. delay(400);
  503. write(CHIP_LINE_OUT_VOL, 0x1D1D); // default approx 1.3 volts peak-to-peak
  504. write(CHIP_CLK_CTRL, 0x0004); // 44.1 kHz, 256*Fs
  505. write(CHIP_I2S_CTRL, 0x0030); // SCLK=64*Fs, 16bit, I2S format
  506. // default signal routing is ok?
  507. write(CHIP_SSS_CTRL, 0x0010); // ADC->I2S, I2S->DAC
  508. write(CHIP_ADCDAC_CTRL, 0x0000); // disable dac mute
  509. write(CHIP_DAC_VOL, 0x3C3C); // digital gain, 0dB
  510. write(CHIP_ANA_HP_CTRL, 0x7F7F); // set volume (lowest level)
  511. write(CHIP_ANA_CTRL, 0x0036); // enable zero cross detectors
  512. //mute = false;
  513. semi_automated = true;
  514. return true;
  515. }
  516. unsigned int AudioControlSGTL5000::read(unsigned int reg)
  517. {
  518. unsigned int val;
  519. Wire.beginTransmission(i2c_addr);
  520. Wire.write(reg >> 8);
  521. Wire.write(reg);
  522. if (Wire.endTransmission(false) != 0) return 0;
  523. if (Wire.requestFrom((int)i2c_addr, 2) < 2) return 0;
  524. val = Wire.read() << 8;
  525. val |= Wire.read();
  526. return val;
  527. }
  528. bool AudioControlSGTL5000::write(unsigned int reg, unsigned int val)
  529. {
  530. if (reg == CHIP_ANA_CTRL) ana_ctrl = val;
  531. Wire.beginTransmission(i2c_addr);
  532. Wire.write(reg >> 8);
  533. Wire.write(reg);
  534. Wire.write(val >> 8);
  535. Wire.write(val);
  536. if (Wire.endTransmission() == 0) return true;
  537. return false;
  538. }
  539. unsigned int AudioControlSGTL5000::modify(unsigned int reg, unsigned int val, unsigned int iMask)
  540. {
  541. unsigned int val1 = (read(reg)&(~iMask))|val;
  542. if(!write(reg,val1)) return 0;
  543. return val1;
  544. }
  545. bool AudioControlSGTL5000::volumeInteger(unsigned int n)
  546. {
  547. if (n == 0) {
  548. muted = true;
  549. write(CHIP_ANA_HP_CTRL, 0x7F7F);
  550. return muteHeadphone();
  551. } else if (n > 0x80) {
  552. n = 0;
  553. } else {
  554. n = 0x80 - n;
  555. }
  556. if (muted) {
  557. muted = false;
  558. unmuteHeadphone();
  559. }
  560. n = n | (n << 8);
  561. return write(CHIP_ANA_HP_CTRL, n); // set volume
  562. }
  563. bool AudioControlSGTL5000::volume(float left, float right)
  564. {
  565. unsigned short m=((0x7F-calcVol(right,0x7F))<<8)|(0x7F-calcVol(left,0x7F));
  566. return write(CHIP_ANA_HP_CTRL, m);
  567. }
  568. bool AudioControlSGTL5000::micGain(unsigned int dB)
  569. {
  570. unsigned int preamp_gain, input_gain;
  571. if (dB >= 40) {
  572. preamp_gain = 3;
  573. dB -= 40;
  574. } else if (dB >= 30) {
  575. preamp_gain = 2;
  576. dB -= 30;
  577. } else if (dB >= 20) {
  578. preamp_gain = 1;
  579. dB -= 20;
  580. } else {
  581. preamp_gain = 0;
  582. }
  583. input_gain = (dB * 2) / 3;
  584. if (input_gain > 15) input_gain = 15;
  585. return write(CHIP_MIC_CTRL, 0x0170 | preamp_gain)
  586. && write(CHIP_ANA_ADC_CTRL, (input_gain << 4) | input_gain);
  587. }
  588. // CHIP_ANA_ADC_CTRL
  589. // Actual measured full-scale peak-to-peak sine wave input for max signal
  590. // 0: 3.12 Volts p-p
  591. // 1: 2.63 Volts p-p
  592. // 2: 2.22 Volts p-p
  593. // 3: 1.87 Volts p-p
  594. // 4: 1.58 Volts p-p
  595. // 5: 1.33 Volts p-p
  596. // 6: 1.11 Volts p-p
  597. // 7: 0.94 Volts p-p
  598. // 8: 0.79 Volts p-p
  599. // 9: 0.67 Volts p-p
  600. // 10: 0.56 Volts p-p
  601. // 11: 0.48 Volts p-p
  602. // 12: 0.40 Volts p-p
  603. // 13: 0.34 Volts p-p
  604. // 14: 0.29 Volts p-p
  605. // 15: 0.24 Volts p-p
  606. bool AudioControlSGTL5000::lineInLevel(uint8_t left, uint8_t right)
  607. {
  608. if (left > 15) left = 15;
  609. if (right > 15) right = 15;
  610. return write(CHIP_ANA_ADC_CTRL, (left << 4) | right);
  611. }
  612. // CHIP_LINE_OUT_VOL
  613. // Actual measured full-scale peak-to-peak sine wave output voltage:
  614. // 0-12: output has clipping
  615. // 13: 3.16 Volts p-p
  616. // 14: 2.98 Volts p-p
  617. // 15: 2.83 Volts p-p
  618. // 16: 2.67 Volts p-p
  619. // 17: 2.53 Volts p-p
  620. // 18: 2.39 Volts p-p
  621. // 19: 2.26 Volts p-p
  622. // 20: 2.14 Volts p-p
  623. // 21: 2.02 Volts p-p
  624. // 22: 1.91 Volts p-p
  625. // 23: 1.80 Volts p-p
  626. // 24: 1.71 Volts p-p
  627. // 25: 1.62 Volts p-p
  628. // 26: 1.53 Volts p-p
  629. // 27: 1.44 Volts p-p
  630. // 28: 1.37 Volts p-p
  631. // 29: 1.29 Volts p-p
  632. // 30: 1.22 Volts p-p
  633. // 31: 1.16 Volts p-p
  634. unsigned short AudioControlSGTL5000::lineOutLevel(uint8_t n)
  635. {
  636. if (n > 31) n = 31;
  637. else if (n < 13) n = 13;
  638. return modify(CHIP_LINE_OUT_VOL,(n<<8)|n,(31<<8)|31);
  639. }
  640. unsigned short AudioControlSGTL5000::lineOutLevel(uint8_t left, uint8_t right)
  641. {
  642. if (left > 31) left = 31;
  643. else if (left < 13) left = 13;
  644. if (right > 31) right = 31;
  645. else if (right < 13) right = 13;
  646. return modify(CHIP_LINE_OUT_VOL,(right<<8)|left,(31<<8)|31);
  647. }
  648. unsigned short AudioControlSGTL5000::dacVolume(float n) // set both directly
  649. {
  650. if ((read(CHIP_ADCDAC_CTRL)&(3<<2)) != ((n>0 ? 0:3)<<2)) {
  651. modify(CHIP_ADCDAC_CTRL,(n>0 ? 0:3)<<2,3<<2);
  652. }
  653. unsigned char m=calcVol(n,0xC0);
  654. return modify(CHIP_DAC_VOL,((0xFC-m)<<8)|(0xFC-m),65535);
  655. }
  656. unsigned short AudioControlSGTL5000::dacVolume(float left, float right)
  657. {
  658. unsigned short adcdac=((right>0 ? 0:2)|(left>0 ? 0:1))<<2;
  659. if ((read(CHIP_ADCDAC_CTRL)&(3<<2)) != adcdac) {
  660. modify(CHIP_ADCDAC_CTRL,adcdac,1<<2);
  661. }
  662. unsigned short m=(0xFC-calcVol(right,0xC0))<<8|(0xFC-calcVol(left,0xC0));
  663. return modify(CHIP_DAC_VOL,m,65535);
  664. }
  665. bool AudioControlSGTL5000::dacVolumeRamp()
  666. {
  667. return modify(CHIP_ADCDAC_CTRL, 0x300, 0x300);
  668. }
  669. bool AudioControlSGTL5000::dacVolumeRampLinear()
  670. {
  671. return modify(CHIP_ADCDAC_CTRL, 0x200, 0x300);
  672. }
  673. bool AudioControlSGTL5000::dacVolumeRampDisable()
  674. {
  675. return modify(CHIP_ADCDAC_CTRL, 0, 0x300);
  676. }
  677. unsigned short AudioControlSGTL5000::adcHighPassFilterEnable(void)
  678. {
  679. return modify(CHIP_ADCDAC_CTRL, 0, 3);
  680. }
  681. unsigned short AudioControlSGTL5000::adcHighPassFilterFreeze(void)
  682. {
  683. return modify(CHIP_ADCDAC_CTRL, 2, 3);
  684. }
  685. unsigned short AudioControlSGTL5000::adcHighPassFilterDisable(void)
  686. {
  687. return modify(CHIP_ADCDAC_CTRL, 1, 3);
  688. }
  689. // DAP_CONTROL
  690. unsigned short AudioControlSGTL5000::audioPreProcessorEnable(void)
  691. {
  692. // audio processor used to pre-process analog input before Teensy
  693. return write(DAP_CONTROL, 1) && write(CHIP_SSS_CTRL, 0x0013);
  694. }
  695. unsigned short AudioControlSGTL5000::audioPostProcessorEnable(void)
  696. {
  697. // audio processor used to post-process Teensy output before headphones/lineout
  698. return write(DAP_CONTROL, 1) && write(CHIP_SSS_CTRL, 0x0070);
  699. }
  700. unsigned short AudioControlSGTL5000::audioProcessorDisable(void)
  701. {
  702. return write(CHIP_SSS_CTRL, 0x0010) && write(DAP_CONTROL, 0);
  703. }
  704. // DAP_PEQ
  705. unsigned short AudioControlSGTL5000::eqFilterCount(uint8_t n) // valid to n&7, 0 thru 7 filters enabled.
  706. {
  707. return modify(DAP_PEQ,(n&7),7);
  708. }
  709. // DAP_AUDIO_EQ
  710. unsigned short AudioControlSGTL5000::eqSelect(uint8_t n) // 0=NONE, 1=PEQ (7 IIR Biquad filters), 2=TONE (tone), 3=GEQ (5 band EQ)
  711. {
  712. return modify(DAP_AUDIO_EQ,n&3,3);
  713. }
  714. unsigned short AudioControlSGTL5000::eqBand(uint8_t bandNum, float n)
  715. {
  716. if(semi_automated) automate(1,3);
  717. return dap_audio_eq_band(bandNum, n);
  718. }
  719. void AudioControlSGTL5000::eqBands(float bass, float mid_bass, float midrange, float mid_treble, float treble)
  720. {
  721. if(semi_automated) automate(1,3);
  722. dap_audio_eq_band(0,bass);
  723. dap_audio_eq_band(1,mid_bass);
  724. dap_audio_eq_band(2,midrange);
  725. dap_audio_eq_band(3,mid_treble);
  726. dap_audio_eq_band(4,treble);
  727. }
  728. void AudioControlSGTL5000::eqBands(float bass, float treble) // dap_audio_eq(2);
  729. {
  730. if(semi_automated) automate(1,2);
  731. dap_audio_eq_band(0,bass);
  732. dap_audio_eq_band(4,treble);
  733. }
  734. // SGTL5000 PEQ Coefficient loader
  735. void AudioControlSGTL5000::eqFilter(uint8_t filterNum, int *filterParameters)
  736. {
  737. // TODO: add the part that selects 7 PEQ filters.
  738. if(semi_automated) automate(1,1,filterNum+1);
  739. modify(DAP_FILTER_COEF_ACCESS,(uint16_t)filterNum,15);
  740. write(DAP_COEF_WR_B0_MSB,(*filterParameters>>4)&65535);
  741. write(DAP_COEF_WR_B0_LSB,(*filterParameters++)&15);
  742. write(DAP_COEF_WR_B1_MSB,(*filterParameters>>4)&65535);
  743. write(DAP_COEF_WR_B1_LSB,(*filterParameters++)&15);
  744. write(DAP_COEF_WR_B2_MSB,(*filterParameters>>4)&65535);
  745. write(DAP_COEF_WR_B2_LSB,(*filterParameters++)&15);
  746. write(DAP_COEF_WR_A1_MSB,(*filterParameters>>4)&65535);
  747. write(DAP_COEF_WR_A1_LSB,(*filterParameters++)&15);
  748. write(DAP_COEF_WR_A2_MSB,(*filterParameters>>4)&65535);
  749. write(DAP_COEF_WR_A2_LSB,(*filterParameters++)&15);
  750. write(DAP_FILTER_COEF_ACCESS,(uint16_t)0x100|filterNum);
  751. }
  752. /* Valid values for dap_avc parameters
  753. maxGain; Maximum gain that can be applied
  754. 0 - 0 dB
  755. 1 - 6.0 dB
  756. 2 - 12 dB
  757. lbiResponse; Integrator Response
  758. 0 - 0 mS
  759. 1 - 25 mS
  760. 2 - 50 mS
  761. 3 - 100 mS
  762. hardLimit
  763. 0 - Hard limit disabled. AVC Compressor/Expander enabled.
  764. 1 - Hard limit enabled. The signal is limited to the programmed threshold (signal saturates at the threshold)
  765. threshold
  766. floating point in range 0 to -96 dB
  767. attack
  768. floating point figure is dB/s rate at which gain is increased
  769. decay
  770. floating point figure is dB/s rate at which gain is reduced
  771. */
  772. unsigned short AudioControlSGTL5000::autoVolumeControl(uint8_t maxGain, uint8_t lbiResponse, uint8_t hardLimit, float threshold, float attack, float decay)
  773. {
  774. //if(semi_automated&&(!read(DAP_CONTROL)&1)) audioProcessorEnable();
  775. if(maxGain>2) maxGain=2;
  776. lbiResponse&=3;
  777. hardLimit&=1;
  778. uint8_t thresh=(pow(10,threshold/20)*0.636)*pow(2,15);
  779. uint8_t att=(1-pow(10,-(attack/(20*44100))))*pow(2,19);
  780. uint8_t dec=(1-pow(10,-(decay/(20*44100))))*pow(2,23);
  781. write(DAP_AVC_THRESHOLD,thresh);
  782. write(DAP_AVC_ATTACK,att);
  783. write(DAP_AVC_DECAY,dec);
  784. return modify(DAP_AVC_CTRL,maxGain<<12|lbiResponse<<8|hardLimit<<5,3<<12|3<<8|1<<5);
  785. }
  786. unsigned short AudioControlSGTL5000::autoVolumeEnable(void)
  787. {
  788. return modify(DAP_AVC_CTRL, 1, 1);
  789. }
  790. unsigned short AudioControlSGTL5000::autoVolumeDisable(void)
  791. {
  792. return modify(DAP_AVC_CTRL, 0, 1);
  793. }
  794. unsigned short AudioControlSGTL5000::enhanceBass(float lr_lev, float bass_lev)
  795. {
  796. return modify(DAP_BASS_ENHANCE_CTRL,((0x3F-calcVol(lr_lev,0x3F))<<8) | (0x7F-calcVol(bass_lev,0x7F)), (0x3F<<8) | 0x7F);
  797. }
  798. unsigned short AudioControlSGTL5000::enhanceBass(float lr_lev, float bass_lev, uint8_t hpf_bypass, uint8_t cutoff)
  799. {
  800. modify(DAP_BASS_ENHANCE,(hpf_bypass&1)<<8|(cutoff&7)<<4,1<<8|7<<4);
  801. return enhanceBass(lr_lev,bass_lev);
  802. }
  803. unsigned short AudioControlSGTL5000::enhanceBassEnable(void)
  804. {
  805. return modify(DAP_BASS_ENHANCE, 1, 1);
  806. }
  807. unsigned short AudioControlSGTL5000::enhanceBassDisable(void)
  808. {
  809. return modify(DAP_BASS_ENHANCE, 0, 1);
  810. }
  811. unsigned short AudioControlSGTL5000::surroundSound(uint8_t width)
  812. {
  813. return modify(DAP_SGTL_SURROUND,(width&7)<<4,7<<4);
  814. }
  815. unsigned short AudioControlSGTL5000::surroundSound(uint8_t width, uint8_t select)
  816. {
  817. return modify(DAP_SGTL_SURROUND,((width&7)<<4)|(select&3), (7<<4)|3);
  818. }
  819. unsigned short AudioControlSGTL5000::surroundSoundEnable(void)
  820. {
  821. return modify(DAP_SGTL_SURROUND, 3, 3);
  822. }
  823. unsigned short AudioControlSGTL5000::surroundSoundDisable(void)
  824. {
  825. return modify(DAP_SGTL_SURROUND, 0, 3);
  826. }
  827. unsigned char AudioControlSGTL5000::calcVol(float n, unsigned char range)
  828. {
  829. // n=(n*(((float)range)/100))+0.499;
  830. n=(n*(float)range)+0.499;
  831. if ((unsigned char)n>range) n=range;
  832. return (unsigned char)n;
  833. }
  834. // DAP_AUDIO_EQ_BASS_BAND0 & DAP_AUDIO_EQ_BAND1 & DAP_AUDIO_EQ_BAND2 etc etc
  835. unsigned short AudioControlSGTL5000::dap_audio_eq_band(uint8_t bandNum, float n) // by signed percentage -100/+100; dap_audio_eq(3);
  836. {
  837. n=(n*48)+0.499;
  838. if(n<-47) n=-47;
  839. if(n>48) n=48;
  840. n+=47;
  841. return modify(DAP_AUDIO_EQ_BASS_BAND0+(bandNum*2),(unsigned int)n,127);
  842. }
  843. void AudioControlSGTL5000::automate(uint8_t dap, uint8_t eq)
  844. {
  845. //if((dap!=0)&&(!(read(DAP_CONTROL)&1))) audioProcessorEnable();
  846. if((read(DAP_AUDIO_EQ)&3) != eq) eqSelect(eq);
  847. }
  848. void AudioControlSGTL5000::automate(uint8_t dap, uint8_t eq, uint8_t filterCount)
  849. {
  850. automate(dap,eq);
  851. if (filterCount > (read(DAP_PEQ)&7)) eqFilterCount(filterCount);
  852. }
  853. // if(SGTL5000_PEQ) quantization_unit=524288; if(AudioFilterBiquad) quantization_unit=2147483648;
  854. void calcBiquad(uint8_t filtertype, float fC, float dB_Gain, float Q, uint32_t quantization_unit, uint32_t fS, int *coef)
  855. {
  856. // I used resources like http://www.musicdsp.org/files/Audio-EQ-Cookbook.txt
  857. // to make this routine, I tested most of the filter types and they worked. Such filters have limits and
  858. // before calling this routine with varying values the end user should check that those values are limited
  859. // to valid results.
  860. float A;
  861. if(filtertype<FILTER_PARAEQ) A=pow(10,dB_Gain/20); else A=pow(10,dB_Gain/40);
  862. float W0 = 2*3.14159265358979323846*fC/fS;
  863. float cosw=cosf(W0);
  864. float sinw=sinf(W0);
  865. //float alpha = sinw*sinh((log(2)/2)*BW*W0/sinw);
  866. //float beta = sqrt(2*A);
  867. float alpha = sinw / (2 * Q);
  868. float beta = sqrtf(A)/Q;
  869. float b0,b1,b2,a0,a1,a2;
  870. switch(filtertype) {
  871. case FILTER_LOPASS:
  872. b0 = (1.0F - cosw) * 0.5F; // =(1-COS($H$2))/2
  873. b1 = 1.0F - cosw;
  874. b2 = (1.0F - cosw) * 0.5F;
  875. a0 = 1.0F + alpha;
  876. a1 = 2.0F * cosw;
  877. a2 = alpha - 1.0F;
  878. break;
  879. case FILTER_HIPASS:
  880. b0 = (1.0F + cosw) * 0.5F;
  881. b1 = -(cosw + 1.0F);
  882. b2 = (1.0F + cosw) * 0.5F;
  883. a0 = 1.0F + alpha;
  884. a1 = 2.0F * cosw;
  885. a2 = alpha - 1.0F;
  886. break;
  887. case FILTER_BANDPASS:
  888. b0 = alpha;
  889. b1 = 0.0F;
  890. b2 = -alpha;
  891. a0 = 1.0F + alpha;
  892. a1 = 2.0F * cosw;
  893. a2 = alpha - 1.0F;
  894. break;
  895. case FILTER_NOTCH:
  896. b0=1;
  897. b1=-2*cosw;
  898. b2=1;
  899. a0=1+alpha;
  900. a1=2*cosw;
  901. a2=-(1-alpha);
  902. break;
  903. case FILTER_PARAEQ:
  904. b0 = 1 + (alpha*A);
  905. b1 =-2 * cosw;
  906. b2 = 1 - (alpha*A);
  907. a0 = 1 + (alpha/A);
  908. a1 = 2 * cosw;
  909. a2 =-(1-(alpha/A));
  910. break;
  911. case FILTER_LOSHELF:
  912. b0 = A * ((A+1.0F) - ((A-1.0F)*cosw) + (beta*sinw));
  913. b1 = 2.0F * A * ((A-1.0F) - ((A+1.0F)*cosw));
  914. b2 = A * ((A+1.0F) - ((A-1.0F)*cosw) - (beta*sinw));
  915. a0 = (A+1.0F) + ((A-1.0F)*cosw) + (beta*sinw);
  916. a1 = 2.0F * ((A-1.0F) + ((A+1.0F)*cosw));
  917. a2 = -((A+1.0F) + ((A-1.0F)*cosw) - (beta*sinw));
  918. break;
  919. case FILTER_HISHELF:
  920. b0 = A * ((A+1.0F) + ((A-1.0F)*cosw) + (beta*sinw));
  921. b1 = -2.0F * A * ((A-1.0F) + ((A+1.0F)*cosw));
  922. b2 = A * ((A+1.0F) + ((A-1.0F)*cosw) - (beta*sinw));
  923. a0 = (A+1.0F) - ((A-1.0F)*cosw) + (beta*sinw);
  924. a1 = -2.0F * ((A-1.0F) - ((A+1.0F)*cosw));
  925. a2 = -((A+1.0F) - ((A-1.0F)*cosw) - (beta*sinw));
  926. default:
  927. b0 = 0.5;
  928. b1 = 0.0;
  929. b2 = 0.0;
  930. a0 = 1.0;
  931. a1 = 0.0;
  932. a2 = 0.0;
  933. }
  934. a0=(a0*2)/(float)quantization_unit; // once here instead of five times there...
  935. b0/=a0;
  936. *coef++=(int)(b0+0.499);
  937. b1/=a0;
  938. *coef++=(int)(b1+0.499);
  939. b2/=a0;
  940. *coef++=(int)(b2+0.499);
  941. a1/=a0;
  942. *coef++=(int)(a1+0.499);
  943. a2/=a0;
  944. *coef++=(int)(a2+0.499);
  945. }