dib8000.c 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619
  1. /*
  2. * Linux-DVB Driver for DiBcom's DiB8000 chip (ISDB-T).
  3. *
  4. * Copyright (C) 2009 DiBcom (http://www.dibcom.fr/)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation, version 2.
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/slab.h>
  12. #include <linux/i2c.h>
  13. #include "dvb_math.h"
  14. #include "dvb_frontend.h"
  15. #include "dib8000.h"
  16. #define LAYER_ALL -1
  17. #define LAYER_A 1
  18. #define LAYER_B 2
  19. #define LAYER_C 3
  20. #define FE_CALLBACK_TIME_NEVER 0xffffffff
  21. #define MAX_NUMBER_OF_FRONTENDS 6
  22. static int debug;
  23. module_param(debug, int, 0644);
  24. MODULE_PARM_DESC(debug, "turn on debugging (default: 0)");
  25. #define dprintk(args...) do { if (debug) { printk(KERN_DEBUG "DiB8000: "); printk(args); printk("\n"); } } while (0)
  26. #define FE_STATUS_TUNE_FAILED 0
  27. struct i2c_device {
  28. struct i2c_adapter *adap;
  29. u8 addr;
  30. u8 *i2c_write_buffer;
  31. u8 *i2c_read_buffer;
  32. };
  33. struct dib8000_state {
  34. struct dib8000_config cfg;
  35. struct i2c_device i2c;
  36. struct dibx000_i2c_master i2c_master;
  37. u16 wbd_ref;
  38. u8 current_band;
  39. u32 current_bandwidth;
  40. struct dibx000_agc_config *current_agc;
  41. u32 timf;
  42. u32 timf_default;
  43. u8 div_force_off:1;
  44. u8 div_state:1;
  45. u16 div_sync_wait;
  46. u8 agc_state;
  47. u8 differential_constellation;
  48. u8 diversity_onoff;
  49. s16 ber_monitored_layer;
  50. u16 gpio_dir;
  51. u16 gpio_val;
  52. u16 revision;
  53. u8 isdbt_cfg_loaded;
  54. enum frontend_tune_state tune_state;
  55. u32 status;
  56. struct dvb_frontend *fe[MAX_NUMBER_OF_FRONTENDS];
  57. /* for the I2C transfer */
  58. struct i2c_msg msg[2];
  59. u8 i2c_write_buffer[4];
  60. u8 i2c_read_buffer[2];
  61. };
  62. enum dib8000_power_mode {
  63. DIB8000M_POWER_ALL = 0,
  64. DIB8000M_POWER_INTERFACE_ONLY,
  65. };
  66. static u16 dib8000_i2c_read16(struct i2c_device *i2c, u16 reg)
  67. {
  68. struct i2c_msg msg[2] = {
  69. {.addr = i2c->addr >> 1, .flags = 0,
  70. .buf = i2c->i2c_write_buffer, .len = 2},
  71. {.addr = i2c->addr >> 1, .flags = I2C_M_RD,
  72. .buf = i2c->i2c_read_buffer, .len = 2},
  73. };
  74. msg[0].buf[0] = reg >> 8;
  75. msg[0].buf[1] = reg & 0xff;
  76. if (i2c_transfer(i2c->adap, msg, 2) != 2)
  77. dprintk("i2c read error on %d", reg);
  78. return (msg[1].buf[0] << 8) | msg[1].buf[1];
  79. }
  80. static u16 dib8000_read_word(struct dib8000_state *state, u16 reg)
  81. {
  82. state->i2c_write_buffer[0] = reg >> 8;
  83. state->i2c_write_buffer[1] = reg & 0xff;
  84. memset(state->msg, 0, 2 * sizeof(struct i2c_msg));
  85. state->msg[0].addr = state->i2c.addr >> 1;
  86. state->msg[0].flags = 0;
  87. state->msg[0].buf = state->i2c_write_buffer;
  88. state->msg[0].len = 2;
  89. state->msg[1].addr = state->i2c.addr >> 1;
  90. state->msg[1].flags = I2C_M_RD;
  91. state->msg[1].buf = state->i2c_read_buffer;
  92. state->msg[1].len = 2;
  93. if (i2c_transfer(state->i2c.adap, state->msg, 2) != 2)
  94. dprintk("i2c read error on %d", reg);
  95. return (state->i2c_read_buffer[0] << 8) | state->i2c_read_buffer[1];
  96. }
  97. static u32 dib8000_read32(struct dib8000_state *state, u16 reg)
  98. {
  99. u16 rw[2];
  100. rw[0] = dib8000_read_word(state, reg + 0);
  101. rw[1] = dib8000_read_word(state, reg + 1);
  102. return ((rw[0] << 16) | (rw[1]));
  103. }
  104. static int dib8000_i2c_write16(struct i2c_device *i2c, u16 reg, u16 val)
  105. {
  106. struct i2c_msg msg = {.addr = i2c->addr >> 1, .flags = 0,
  107. .buf = i2c->i2c_write_buffer, .len = 4};
  108. int ret = 0;
  109. msg.buf[0] = (reg >> 8) & 0xff;
  110. msg.buf[1] = reg & 0xff;
  111. msg.buf[2] = (val >> 8) & 0xff;
  112. msg.buf[3] = val & 0xff;
  113. ret = i2c_transfer(i2c->adap, &msg, 1) != 1 ? -EREMOTEIO : 0;
  114. return ret;
  115. }
  116. static int dib8000_write_word(struct dib8000_state *state, u16 reg, u16 val)
  117. {
  118. state->i2c_write_buffer[0] = (reg >> 8) & 0xff;
  119. state->i2c_write_buffer[1] = reg & 0xff;
  120. state->i2c_write_buffer[2] = (val >> 8) & 0xff;
  121. state->i2c_write_buffer[3] = val & 0xff;
  122. memset(&state->msg[0], 0, sizeof(struct i2c_msg));
  123. state->msg[0].addr = state->i2c.addr >> 1;
  124. state->msg[0].flags = 0;
  125. state->msg[0].buf = state->i2c_write_buffer;
  126. state->msg[0].len = 4;
  127. return i2c_transfer(state->i2c.adap, state->msg, 1) != 1 ? -EREMOTEIO : 0;
  128. }
  129. static const s16 coeff_2k_sb_1seg_dqpsk[8] = {
  130. (769 << 5) | 0x0a, (745 << 5) | 0x03, (595 << 5) | 0x0d, (769 << 5) | 0x0a, (920 << 5) | 0x09, (784 << 5) | 0x02, (519 << 5) | 0x0c,
  131. (920 << 5) | 0x09
  132. };
  133. static const s16 coeff_2k_sb_1seg[8] = {
  134. (692 << 5) | 0x0b, (683 << 5) | 0x01, (519 << 5) | 0x09, (692 << 5) | 0x0b, 0 | 0x1f, 0 | 0x1f, 0 | 0x1f, 0 | 0x1f
  135. };
  136. static const s16 coeff_2k_sb_3seg_0dqpsk_1dqpsk[8] = {
  137. (832 << 5) | 0x10, (912 << 5) | 0x05, (900 << 5) | 0x12, (832 << 5) | 0x10, (-931 << 5) | 0x0f, (912 << 5) | 0x04, (807 << 5) | 0x11,
  138. (-931 << 5) | 0x0f
  139. };
  140. static const s16 coeff_2k_sb_3seg_0dqpsk[8] = {
  141. (622 << 5) | 0x0c, (941 << 5) | 0x04, (796 << 5) | 0x10, (622 << 5) | 0x0c, (982 << 5) | 0x0c, (519 << 5) | 0x02, (572 << 5) | 0x0e,
  142. (982 << 5) | 0x0c
  143. };
  144. static const s16 coeff_2k_sb_3seg_1dqpsk[8] = {
  145. (699 << 5) | 0x14, (607 << 5) | 0x04, (944 << 5) | 0x13, (699 << 5) | 0x14, (-720 << 5) | 0x0d, (640 << 5) | 0x03, (866 << 5) | 0x12,
  146. (-720 << 5) | 0x0d
  147. };
  148. static const s16 coeff_2k_sb_3seg[8] = {
  149. (664 << 5) | 0x0c, (925 << 5) | 0x03, (937 << 5) | 0x10, (664 << 5) | 0x0c, (-610 << 5) | 0x0a, (697 << 5) | 0x01, (836 << 5) | 0x0e,
  150. (-610 << 5) | 0x0a
  151. };
  152. static const s16 coeff_4k_sb_1seg_dqpsk[8] = {
  153. (-955 << 5) | 0x0e, (687 << 5) | 0x04, (818 << 5) | 0x10, (-955 << 5) | 0x0e, (-922 << 5) | 0x0d, (750 << 5) | 0x03, (665 << 5) | 0x0f,
  154. (-922 << 5) | 0x0d
  155. };
  156. static const s16 coeff_4k_sb_1seg[8] = {
  157. (638 << 5) | 0x0d, (683 << 5) | 0x02, (638 << 5) | 0x0d, (638 << 5) | 0x0d, (-655 << 5) | 0x0a, (517 << 5) | 0x00, (698 << 5) | 0x0d,
  158. (-655 << 5) | 0x0a
  159. };
  160. static const s16 coeff_4k_sb_3seg_0dqpsk_1dqpsk[8] = {
  161. (-707 << 5) | 0x14, (910 << 5) | 0x06, (889 << 5) | 0x16, (-707 << 5) | 0x14, (-958 << 5) | 0x13, (993 << 5) | 0x05, (523 << 5) | 0x14,
  162. (-958 << 5) | 0x13
  163. };
  164. static const s16 coeff_4k_sb_3seg_0dqpsk[8] = {
  165. (-723 << 5) | 0x13, (910 << 5) | 0x05, (777 << 5) | 0x14, (-723 << 5) | 0x13, (-568 << 5) | 0x0f, (547 << 5) | 0x03, (696 << 5) | 0x12,
  166. (-568 << 5) | 0x0f
  167. };
  168. static const s16 coeff_4k_sb_3seg_1dqpsk[8] = {
  169. (-940 << 5) | 0x15, (607 << 5) | 0x05, (915 << 5) | 0x16, (-940 << 5) | 0x15, (-848 << 5) | 0x13, (683 << 5) | 0x04, (543 << 5) | 0x14,
  170. (-848 << 5) | 0x13
  171. };
  172. static const s16 coeff_4k_sb_3seg[8] = {
  173. (612 << 5) | 0x12, (910 << 5) | 0x04, (864 << 5) | 0x14, (612 << 5) | 0x12, (-869 << 5) | 0x13, (683 << 5) | 0x02, (869 << 5) | 0x12,
  174. (-869 << 5) | 0x13
  175. };
  176. static const s16 coeff_8k_sb_1seg_dqpsk[8] = {
  177. (-835 << 5) | 0x12, (684 << 5) | 0x05, (735 << 5) | 0x14, (-835 << 5) | 0x12, (-598 << 5) | 0x10, (781 << 5) | 0x04, (739 << 5) | 0x13,
  178. (-598 << 5) | 0x10
  179. };
  180. static const s16 coeff_8k_sb_1seg[8] = {
  181. (673 << 5) | 0x0f, (683 << 5) | 0x03, (808 << 5) | 0x12, (673 << 5) | 0x0f, (585 << 5) | 0x0f, (512 << 5) | 0x01, (780 << 5) | 0x0f,
  182. (585 << 5) | 0x0f
  183. };
  184. static const s16 coeff_8k_sb_3seg_0dqpsk_1dqpsk[8] = {
  185. (863 << 5) | 0x17, (930 << 5) | 0x07, (878 << 5) | 0x19, (863 << 5) | 0x17, (0 << 5) | 0x14, (521 << 5) | 0x05, (980 << 5) | 0x18,
  186. (0 << 5) | 0x14
  187. };
  188. static const s16 coeff_8k_sb_3seg_0dqpsk[8] = {
  189. (-924 << 5) | 0x17, (910 << 5) | 0x06, (774 << 5) | 0x17, (-924 << 5) | 0x17, (-877 << 5) | 0x15, (565 << 5) | 0x04, (553 << 5) | 0x15,
  190. (-877 << 5) | 0x15
  191. };
  192. static const s16 coeff_8k_sb_3seg_1dqpsk[8] = {
  193. (-921 << 5) | 0x19, (607 << 5) | 0x06, (881 << 5) | 0x19, (-921 << 5) | 0x19, (-921 << 5) | 0x14, (713 << 5) | 0x05, (1018 << 5) | 0x18,
  194. (-921 << 5) | 0x14
  195. };
  196. static const s16 coeff_8k_sb_3seg[8] = {
  197. (514 << 5) | 0x14, (910 << 5) | 0x05, (861 << 5) | 0x17, (514 << 5) | 0x14, (690 << 5) | 0x14, (683 << 5) | 0x03, (662 << 5) | 0x15,
  198. (690 << 5) | 0x14
  199. };
  200. static const s16 ana_fe_coeff_3seg[24] = {
  201. 81, 80, 78, 74, 68, 61, 54, 45, 37, 28, 19, 11, 4, 1022, 1017, 1013, 1010, 1008, 1008, 1008, 1008, 1010, 1014, 1017
  202. };
  203. static const s16 ana_fe_coeff_1seg[24] = {
  204. 249, 226, 164, 82, 5, 981, 970, 988, 1018, 20, 31, 26, 8, 1012, 1000, 1018, 1012, 8, 15, 14, 9, 3, 1017, 1003
  205. };
  206. static const s16 ana_fe_coeff_13seg[24] = {
  207. 396, 305, 105, -51, -77, -12, 41, 31, -11, -30, -11, 14, 15, -2, -13, -7, 5, 8, 1, -6, -7, -3, 0, 1
  208. };
  209. static u16 fft_to_mode(struct dib8000_state *state)
  210. {
  211. u16 mode;
  212. switch (state->fe[0]->dtv_property_cache.transmission_mode) {
  213. case TRANSMISSION_MODE_2K:
  214. mode = 1;
  215. break;
  216. case TRANSMISSION_MODE_4K:
  217. mode = 2;
  218. break;
  219. default:
  220. case TRANSMISSION_MODE_AUTO:
  221. case TRANSMISSION_MODE_8K:
  222. mode = 3;
  223. break;
  224. }
  225. return mode;
  226. }
  227. static void dib8000_set_acquisition_mode(struct dib8000_state *state)
  228. {
  229. u16 nud = dib8000_read_word(state, 298);
  230. nud |= (1 << 3) | (1 << 0);
  231. dprintk("acquisition mode activated");
  232. dib8000_write_word(state, 298, nud);
  233. }
  234. static int dib8000_set_output_mode(struct dvb_frontend *fe, int mode)
  235. {
  236. struct dib8000_state *state = fe->demodulator_priv;
  237. u16 outreg, fifo_threshold, smo_mode, sram = 0x0205; /* by default SDRAM deintlv is enabled */
  238. outreg = 0;
  239. fifo_threshold = 1792;
  240. smo_mode = (dib8000_read_word(state, 299) & 0x0050) | (1 << 1);
  241. dprintk("-I- Setting output mode for demod %p to %d",
  242. &state->fe[0], mode);
  243. switch (mode) {
  244. case OUTMODE_MPEG2_PAR_GATED_CLK: // STBs with parallel gated clock
  245. outreg = (1 << 10); /* 0x0400 */
  246. break;
  247. case OUTMODE_MPEG2_PAR_CONT_CLK: // STBs with parallel continues clock
  248. outreg = (1 << 10) | (1 << 6); /* 0x0440 */
  249. break;
  250. case OUTMODE_MPEG2_SERIAL: // STBs with serial input
  251. outreg = (1 << 10) | (2 << 6) | (0 << 1); /* 0x0482 */
  252. break;
  253. case OUTMODE_DIVERSITY:
  254. if (state->cfg.hostbus_diversity) {
  255. outreg = (1 << 10) | (4 << 6); /* 0x0500 */
  256. sram &= 0xfdff;
  257. } else
  258. sram |= 0x0c00;
  259. break;
  260. case OUTMODE_MPEG2_FIFO: // e.g. USB feeding
  261. smo_mode |= (3 << 1);
  262. fifo_threshold = 512;
  263. outreg = (1 << 10) | (5 << 6);
  264. break;
  265. case OUTMODE_HIGH_Z: // disable
  266. outreg = 0;
  267. break;
  268. case OUTMODE_ANALOG_ADC:
  269. outreg = (1 << 10) | (3 << 6);
  270. dib8000_set_acquisition_mode(state);
  271. break;
  272. default:
  273. dprintk("Unhandled output_mode passed to be set for demod %p",
  274. &state->fe[0]);
  275. return -EINVAL;
  276. }
  277. if (state->cfg.output_mpeg2_in_188_bytes)
  278. smo_mode |= (1 << 5);
  279. dib8000_write_word(state, 299, smo_mode);
  280. dib8000_write_word(state, 300, fifo_threshold); /* synchronous fread */
  281. dib8000_write_word(state, 1286, outreg);
  282. dib8000_write_word(state, 1291, sram);
  283. return 0;
  284. }
  285. static int dib8000_set_diversity_in(struct dvb_frontend *fe, int onoff)
  286. {
  287. struct dib8000_state *state = fe->demodulator_priv;
  288. u16 sync_wait = dib8000_read_word(state, 273) & 0xfff0;
  289. if (!state->differential_constellation) {
  290. dib8000_write_word(state, 272, 1 << 9); //dvsy_off_lmod4 = 1
  291. dib8000_write_word(state, 273, sync_wait | (1 << 2) | 2); // sync_enable = 1; comb_mode = 2
  292. } else {
  293. dib8000_write_word(state, 272, 0); //dvsy_off_lmod4 = 0
  294. dib8000_write_word(state, 273, sync_wait); // sync_enable = 0; comb_mode = 0
  295. }
  296. state->diversity_onoff = onoff;
  297. switch (onoff) {
  298. case 0: /* only use the internal way - not the diversity input */
  299. dib8000_write_word(state, 270, 1);
  300. dib8000_write_word(state, 271, 0);
  301. break;
  302. case 1: /* both ways */
  303. dib8000_write_word(state, 270, 6);
  304. dib8000_write_word(state, 271, 6);
  305. break;
  306. case 2: /* only the diversity input */
  307. dib8000_write_word(state, 270, 0);
  308. dib8000_write_word(state, 271, 1);
  309. break;
  310. }
  311. return 0;
  312. }
  313. static void dib8000_set_power_mode(struct dib8000_state *state, enum dib8000_power_mode mode)
  314. {
  315. /* by default everything is going to be powered off */
  316. u16 reg_774 = 0x3fff, reg_775 = 0xffff, reg_776 = 0xffff,
  317. reg_900 = (dib8000_read_word(state, 900) & 0xfffc) | 0x3,
  318. reg_1280 = (dib8000_read_word(state, 1280) & 0x00ff) | 0xff00;
  319. /* now, depending on the requested mode, we power on */
  320. switch (mode) {
  321. /* power up everything in the demod */
  322. case DIB8000M_POWER_ALL:
  323. reg_774 = 0x0000;
  324. reg_775 = 0x0000;
  325. reg_776 = 0x0000;
  326. reg_900 &= 0xfffc;
  327. reg_1280 &= 0x00ff;
  328. break;
  329. case DIB8000M_POWER_INTERFACE_ONLY:
  330. reg_1280 &= 0x00ff;
  331. break;
  332. }
  333. dprintk("powermode : 774 : %x ; 775 : %x; 776 : %x ; 900 : %x; 1280 : %x", reg_774, reg_775, reg_776, reg_900, reg_1280);
  334. dib8000_write_word(state, 774, reg_774);
  335. dib8000_write_word(state, 775, reg_775);
  336. dib8000_write_word(state, 776, reg_776);
  337. dib8000_write_word(state, 900, reg_900);
  338. dib8000_write_word(state, 1280, reg_1280);
  339. }
  340. static int dib8000_set_adc_state(struct dib8000_state *state, enum dibx000_adc_states no)
  341. {
  342. int ret = 0;
  343. u16 reg_907 = dib8000_read_word(state, 907), reg_908 = dib8000_read_word(state, 908);
  344. switch (no) {
  345. case DIBX000_SLOW_ADC_ON:
  346. reg_908 |= (1 << 1) | (1 << 0);
  347. ret |= dib8000_write_word(state, 908, reg_908);
  348. reg_908 &= ~(1 << 1);
  349. break;
  350. case DIBX000_SLOW_ADC_OFF:
  351. reg_908 |= (1 << 1) | (1 << 0);
  352. break;
  353. case DIBX000_ADC_ON:
  354. reg_907 &= 0x0fff;
  355. reg_908 &= 0x0003;
  356. break;
  357. case DIBX000_ADC_OFF: // leave the VBG voltage on
  358. reg_907 |= (1 << 14) | (1 << 13) | (1 << 12);
  359. reg_908 |= (1 << 5) | (1 << 4) | (1 << 3) | (1 << 2);
  360. break;
  361. case DIBX000_VBG_ENABLE:
  362. reg_907 &= ~(1 << 15);
  363. break;
  364. case DIBX000_VBG_DISABLE:
  365. reg_907 |= (1 << 15);
  366. break;
  367. default:
  368. break;
  369. }
  370. ret |= dib8000_write_word(state, 907, reg_907);
  371. ret |= dib8000_write_word(state, 908, reg_908);
  372. return ret;
  373. }
  374. static int dib8000_set_bandwidth(struct dvb_frontend *fe, u32 bw)
  375. {
  376. struct dib8000_state *state = fe->demodulator_priv;
  377. u32 timf;
  378. if (bw == 0)
  379. bw = 6000;
  380. if (state->timf == 0) {
  381. dprintk("using default timf");
  382. timf = state->timf_default;
  383. } else {
  384. dprintk("using updated timf");
  385. timf = state->timf;
  386. }
  387. dib8000_write_word(state, 29, (u16) ((timf >> 16) & 0xffff));
  388. dib8000_write_word(state, 30, (u16) ((timf) & 0xffff));
  389. return 0;
  390. }
  391. static int dib8000_sad_calib(struct dib8000_state *state)
  392. {
  393. /* internal */
  394. dib8000_write_word(state, 923, (0 << 1) | (0 << 0));
  395. dib8000_write_word(state, 924, 776); // 0.625*3.3 / 4096
  396. /* do the calibration */
  397. dib8000_write_word(state, 923, (1 << 0));
  398. dib8000_write_word(state, 923, (0 << 0));
  399. msleep(1);
  400. return 0;
  401. }
  402. int dib8000_set_wbd_ref(struct dvb_frontend *fe, u16 value)
  403. {
  404. struct dib8000_state *state = fe->demodulator_priv;
  405. if (value > 4095)
  406. value = 4095;
  407. state->wbd_ref = value;
  408. return dib8000_write_word(state, 106, value);
  409. }
  410. EXPORT_SYMBOL(dib8000_set_wbd_ref);
  411. static void dib8000_reset_pll_common(struct dib8000_state *state, const struct dibx000_bandwidth_config *bw)
  412. {
  413. dprintk("ifreq: %d %x, inversion: %d", bw->ifreq, bw->ifreq, bw->ifreq >> 25);
  414. dib8000_write_word(state, 23, (u16) (((bw->internal * 1000) >> 16) & 0xffff)); /* P_sec_len */
  415. dib8000_write_word(state, 24, (u16) ((bw->internal * 1000) & 0xffff));
  416. dib8000_write_word(state, 27, (u16) ((bw->ifreq >> 16) & 0x01ff));
  417. dib8000_write_word(state, 28, (u16) (bw->ifreq & 0xffff));
  418. dib8000_write_word(state, 26, (u16) ((bw->ifreq >> 25) & 0x0003));
  419. dib8000_write_word(state, 922, bw->sad_cfg);
  420. }
  421. static void dib8000_reset_pll(struct dib8000_state *state)
  422. {
  423. const struct dibx000_bandwidth_config *pll = state->cfg.pll;
  424. u16 clk_cfg1;
  425. // clk_cfg0
  426. dib8000_write_word(state, 901, (pll->pll_prediv << 8) | (pll->pll_ratio << 0));
  427. // clk_cfg1
  428. clk_cfg1 = (1 << 10) | (0 << 9) | (pll->IO_CLK_en_core << 8) |
  429. (pll->bypclk_div << 5) | (pll->enable_refdiv << 4) | (1 << 3) |
  430. (pll->pll_range << 1) | (pll->pll_reset << 0);
  431. dib8000_write_word(state, 902, clk_cfg1);
  432. clk_cfg1 = (clk_cfg1 & 0xfff7) | (pll->pll_bypass << 3);
  433. dib8000_write_word(state, 902, clk_cfg1);
  434. dprintk("clk_cfg1: 0x%04x", clk_cfg1); /* 0x507 1 0 1 000 0 0 11 1 */
  435. /* smpl_cfg: P_refclksel=2, P_ensmplsel=1 nodivsmpl=1 */
  436. if (state->cfg.pll->ADClkSrc == 0)
  437. dib8000_write_word(state, 904, (0 << 15) | (0 << 12) | (0 << 10) |
  438. (pll->modulo << 8) | (pll->ADClkSrc << 7) | (0 << 1));
  439. else if (state->cfg.refclksel != 0)
  440. dib8000_write_word(state, 904, (0 << 15) | (1 << 12) |
  441. ((state->cfg.refclksel & 0x3) << 10) | (pll->modulo << 8) |
  442. (pll->ADClkSrc << 7) | (0 << 1));
  443. else
  444. dib8000_write_word(state, 904, (0 << 15) | (1 << 12) | (3 << 10) | (pll->modulo << 8) | (pll->ADClkSrc << 7) | (0 << 1));
  445. dib8000_reset_pll_common(state, pll);
  446. }
  447. static int dib8000_reset_gpio(struct dib8000_state *st)
  448. {
  449. /* reset the GPIOs */
  450. dib8000_write_word(st, 1029, st->cfg.gpio_dir);
  451. dib8000_write_word(st, 1030, st->cfg.gpio_val);
  452. /* TODO 782 is P_gpio_od */
  453. dib8000_write_word(st, 1032, st->cfg.gpio_pwm_pos);
  454. dib8000_write_word(st, 1037, st->cfg.pwm_freq_div);
  455. return 0;
  456. }
  457. static int dib8000_cfg_gpio(struct dib8000_state *st, u8 num, u8 dir, u8 val)
  458. {
  459. st->cfg.gpio_dir = dib8000_read_word(st, 1029);
  460. st->cfg.gpio_dir &= ~(1 << num); /* reset the direction bit */
  461. st->cfg.gpio_dir |= (dir & 0x1) << num; /* set the new direction */
  462. dib8000_write_word(st, 1029, st->cfg.gpio_dir);
  463. st->cfg.gpio_val = dib8000_read_word(st, 1030);
  464. st->cfg.gpio_val &= ~(1 << num); /* reset the direction bit */
  465. st->cfg.gpio_val |= (val & 0x01) << num; /* set the new value */
  466. dib8000_write_word(st, 1030, st->cfg.gpio_val);
  467. dprintk("gpio dir: %x: gpio val: %x", st->cfg.gpio_dir, st->cfg.gpio_val);
  468. return 0;
  469. }
  470. int dib8000_set_gpio(struct dvb_frontend *fe, u8 num, u8 dir, u8 val)
  471. {
  472. struct dib8000_state *state = fe->demodulator_priv;
  473. return dib8000_cfg_gpio(state, num, dir, val);
  474. }
  475. EXPORT_SYMBOL(dib8000_set_gpio);
  476. static const u16 dib8000_defaults[] = {
  477. /* auto search configuration - lock0 by default waiting
  478. * for cpil_lock; lock1 cpil_lock; lock2 tmcc_sync_lock */
  479. 3, 7,
  480. 0x0004,
  481. 0x0400,
  482. 0x0814,
  483. 12, 11,
  484. 0x001b,
  485. 0x7740,
  486. 0x005b,
  487. 0x8d80,
  488. 0x01c9,
  489. 0xc380,
  490. 0x0000,
  491. 0x0080,
  492. 0x0000,
  493. 0x0090,
  494. 0x0001,
  495. 0xd4c0,
  496. /*1, 32,
  497. 0x6680 // P_corm_thres Lock algorithms configuration */
  498. 11, 80, /* set ADC level to -16 */
  499. (1 << 13) - 825 - 117,
  500. (1 << 13) - 837 - 117,
  501. (1 << 13) - 811 - 117,
  502. (1 << 13) - 766 - 117,
  503. (1 << 13) - 737 - 117,
  504. (1 << 13) - 693 - 117,
  505. (1 << 13) - 648 - 117,
  506. (1 << 13) - 619 - 117,
  507. (1 << 13) - 575 - 117,
  508. (1 << 13) - 531 - 117,
  509. (1 << 13) - 501 - 117,
  510. 4, 108,
  511. 0,
  512. 0,
  513. 0,
  514. 0,
  515. 1, 175,
  516. 0x0410,
  517. 1, 179,
  518. 8192, // P_fft_nb_to_cut
  519. 6, 181,
  520. 0x2800, // P_coff_corthres_ ( 2k 4k 8k ) 0x2800
  521. 0x2800,
  522. 0x2800,
  523. 0x2800, // P_coff_cpilthres_ ( 2k 4k 8k ) 0x2800
  524. 0x2800,
  525. 0x2800,
  526. 2, 193,
  527. 0x0666, // P_pha3_thres
  528. 0x0000, // P_cti_use_cpe, P_cti_use_prog
  529. 2, 205,
  530. 0x200f, // P_cspu_regul, P_cspu_win_cut
  531. 0x000f, // P_des_shift_work
  532. 5, 215,
  533. 0x023d, // P_adp_regul_cnt
  534. 0x00a4, // P_adp_noise_cnt
  535. 0x00a4, // P_adp_regul_ext
  536. 0x7ff0, // P_adp_noise_ext
  537. 0x3ccc, // P_adp_fil
  538. 1, 230,
  539. 0x0000, // P_2d_byp_ti_num
  540. 1, 263,
  541. 0x800, //P_equal_thres_wgn
  542. 1, 268,
  543. (2 << 9) | 39, // P_equal_ctrl_synchro, P_equal_speedmode
  544. 1, 270,
  545. 0x0001, // P_div_lock0_wait
  546. 1, 285,
  547. 0x0020, //p_fec_
  548. 1, 299,
  549. 0x0062, /* P_smo_mode, P_smo_rs_discard, P_smo_fifo_flush, P_smo_pid_parse, P_smo_error_discard */
  550. 1, 338,
  551. (1 << 12) | // P_ctrl_corm_thres4pre_freq_inh=1
  552. (1 << 10) |
  553. (0 << 9) | /* P_ctrl_pre_freq_inh=0 */
  554. (3 << 5) | /* P_ctrl_pre_freq_step=3 */
  555. (1 << 0), /* P_pre_freq_win_len=1 */
  556. 1, 903,
  557. (0 << 4) | 2, // P_divclksel=0 P_divbitsel=2 (was clk=3,bit=1 for MPW)
  558. 0,
  559. };
  560. static u16 dib8000_identify(struct i2c_device *client)
  561. {
  562. u16 value;
  563. //because of glitches sometimes
  564. value = dib8000_i2c_read16(client, 896);
  565. if ((value = dib8000_i2c_read16(client, 896)) != 0x01b3) {
  566. dprintk("wrong Vendor ID (read=0x%x)", value);
  567. return 0;
  568. }
  569. value = dib8000_i2c_read16(client, 897);
  570. if (value != 0x8000 && value != 0x8001 && value != 0x8002) {
  571. dprintk("wrong Device ID (%x)", value);
  572. return 0;
  573. }
  574. switch (value) {
  575. case 0x8000:
  576. dprintk("found DiB8000A");
  577. break;
  578. case 0x8001:
  579. dprintk("found DiB8000B");
  580. break;
  581. case 0x8002:
  582. dprintk("found DiB8000C");
  583. break;
  584. }
  585. return value;
  586. }
  587. static int dib8000_reset(struct dvb_frontend *fe)
  588. {
  589. struct dib8000_state *state = fe->demodulator_priv;
  590. dib8000_write_word(state, 1287, 0x0003); /* sram lead in, rdy */
  591. if ((state->revision = dib8000_identify(&state->i2c)) == 0)
  592. return -EINVAL;
  593. if (state->revision == 0x8000)
  594. dprintk("error : dib8000 MA not supported");
  595. dibx000_reset_i2c_master(&state->i2c_master);
  596. dib8000_set_power_mode(state, DIB8000M_POWER_ALL);
  597. /* always leave the VBG voltage on - it consumes almost nothing but takes a long time to start */
  598. dib8000_set_adc_state(state, DIBX000_VBG_ENABLE);
  599. /* restart all parts */
  600. dib8000_write_word(state, 770, 0xffff);
  601. dib8000_write_word(state, 771, 0xffff);
  602. dib8000_write_word(state, 772, 0xfffc);
  603. dib8000_write_word(state, 898, 0x000c); // sad
  604. dib8000_write_word(state, 1280, 0x004d);
  605. dib8000_write_word(state, 1281, 0x000c);
  606. dib8000_write_word(state, 770, 0x0000);
  607. dib8000_write_word(state, 771, 0x0000);
  608. dib8000_write_word(state, 772, 0x0000);
  609. dib8000_write_word(state, 898, 0x0004); // sad
  610. dib8000_write_word(state, 1280, 0x0000);
  611. dib8000_write_word(state, 1281, 0x0000);
  612. /* drives */
  613. if (state->cfg.drives)
  614. dib8000_write_word(state, 906, state->cfg.drives);
  615. else {
  616. dprintk("using standard PAD-drive-settings, please adjust settings in config-struct to be optimal.");
  617. dib8000_write_word(state, 906, 0x2d98); // min drive SDRAM - not optimal - adjust
  618. }
  619. dib8000_reset_pll(state);
  620. if (dib8000_reset_gpio(state) != 0)
  621. dprintk("GPIO reset was not successful.");
  622. if (dib8000_set_output_mode(fe, OUTMODE_HIGH_Z) != 0)
  623. dprintk("OUTPUT_MODE could not be resetted.");
  624. state->current_agc = NULL;
  625. // P_iqc_alpha_pha, P_iqc_alpha_amp, P_iqc_dcc_alpha, ...
  626. /* P_iqc_ca2 = 0; P_iqc_impnc_on = 0; P_iqc_mode = 0; */
  627. if (state->cfg.pll->ifreq == 0)
  628. dib8000_write_word(state, 40, 0x0755); /* P_iqc_corr_inh = 0 enable IQcorr block */
  629. else
  630. dib8000_write_word(state, 40, 0x1f55); /* P_iqc_corr_inh = 1 disable IQcorr block */
  631. {
  632. u16 l = 0, r;
  633. const u16 *n;
  634. n = dib8000_defaults;
  635. l = *n++;
  636. while (l) {
  637. r = *n++;
  638. do {
  639. dib8000_write_word(state, r, *n++);
  640. r++;
  641. } while (--l);
  642. l = *n++;
  643. }
  644. }
  645. state->isdbt_cfg_loaded = 0;
  646. //div_cfg override for special configs
  647. if (state->cfg.div_cfg != 0)
  648. dib8000_write_word(state, 903, state->cfg.div_cfg);
  649. /* unforce divstr regardless whether i2c enumeration was done or not */
  650. dib8000_write_word(state, 1285, dib8000_read_word(state, 1285) & ~(1 << 1));
  651. dib8000_set_bandwidth(fe, 6000);
  652. dib8000_set_adc_state(state, DIBX000_SLOW_ADC_ON);
  653. dib8000_sad_calib(state);
  654. dib8000_set_adc_state(state, DIBX000_SLOW_ADC_OFF);
  655. dib8000_set_power_mode(state, DIB8000M_POWER_INTERFACE_ONLY);
  656. return 0;
  657. }
  658. static void dib8000_restart_agc(struct dib8000_state *state)
  659. {
  660. // P_restart_iqc & P_restart_agc
  661. dib8000_write_word(state, 770, 0x0a00);
  662. dib8000_write_word(state, 770, 0x0000);
  663. }
  664. static int dib8000_update_lna(struct dib8000_state *state)
  665. {
  666. u16 dyn_gain;
  667. if (state->cfg.update_lna) {
  668. // read dyn_gain here (because it is demod-dependent and not tuner)
  669. dyn_gain = dib8000_read_word(state, 390);
  670. if (state->cfg.update_lna(state->fe[0], dyn_gain)) {
  671. dib8000_restart_agc(state);
  672. return 1;
  673. }
  674. }
  675. return 0;
  676. }
  677. static int dib8000_set_agc_config(struct dib8000_state *state, u8 band)
  678. {
  679. struct dibx000_agc_config *agc = NULL;
  680. int i;
  681. if (state->current_band == band && state->current_agc != NULL)
  682. return 0;
  683. state->current_band = band;
  684. for (i = 0; i < state->cfg.agc_config_count; i++)
  685. if (state->cfg.agc[i].band_caps & band) {
  686. agc = &state->cfg.agc[i];
  687. break;
  688. }
  689. if (agc == NULL) {
  690. dprintk("no valid AGC configuration found for band 0x%02x", band);
  691. return -EINVAL;
  692. }
  693. state->current_agc = agc;
  694. /* AGC */
  695. dib8000_write_word(state, 76, agc->setup);
  696. dib8000_write_word(state, 77, agc->inv_gain);
  697. dib8000_write_word(state, 78, agc->time_stabiliz);
  698. dib8000_write_word(state, 101, (agc->alpha_level << 12) | agc->thlock);
  699. // Demod AGC loop configuration
  700. dib8000_write_word(state, 102, (agc->alpha_mant << 5) | agc->alpha_exp);
  701. dib8000_write_word(state, 103, (agc->beta_mant << 6) | agc->beta_exp);
  702. dprintk("WBD: ref: %d, sel: %d, active: %d, alpha: %d",
  703. state->wbd_ref != 0 ? state->wbd_ref : agc->wbd_ref, agc->wbd_sel, !agc->perform_agc_softsplit, agc->wbd_sel);
  704. /* AGC continued */
  705. if (state->wbd_ref != 0)
  706. dib8000_write_word(state, 106, state->wbd_ref);
  707. else // use default
  708. dib8000_write_word(state, 106, agc->wbd_ref);
  709. dib8000_write_word(state, 107, (agc->wbd_alpha << 9) | (agc->perform_agc_softsplit << 8));
  710. dib8000_write_word(state, 108, agc->agc1_max);
  711. dib8000_write_word(state, 109, agc->agc1_min);
  712. dib8000_write_word(state, 110, agc->agc2_max);
  713. dib8000_write_word(state, 111, agc->agc2_min);
  714. dib8000_write_word(state, 112, (agc->agc1_pt1 << 8) | agc->agc1_pt2);
  715. dib8000_write_word(state, 113, (agc->agc1_slope1 << 8) | agc->agc1_slope2);
  716. dib8000_write_word(state, 114, (agc->agc2_pt1 << 8) | agc->agc2_pt2);
  717. dib8000_write_word(state, 115, (agc->agc2_slope1 << 8) | agc->agc2_slope2);
  718. dib8000_write_word(state, 75, agc->agc1_pt3);
  719. dib8000_write_word(state, 923, (dib8000_read_word(state, 923) & 0xffe3) | (agc->wbd_inv << 4) | (agc->wbd_sel << 2)); /*LB : 929 -> 923 */
  720. return 0;
  721. }
  722. void dib8000_pwm_agc_reset(struct dvb_frontend *fe)
  723. {
  724. struct dib8000_state *state = fe->demodulator_priv;
  725. dib8000_set_adc_state(state, DIBX000_ADC_ON);
  726. dib8000_set_agc_config(state, (unsigned char)(BAND_OF_FREQUENCY(fe->dtv_property_cache.frequency / 1000)));
  727. }
  728. EXPORT_SYMBOL(dib8000_pwm_agc_reset);
  729. static int dib8000_agc_soft_split(struct dib8000_state *state)
  730. {
  731. u16 agc, split_offset;
  732. if (!state->current_agc || !state->current_agc->perform_agc_softsplit || state->current_agc->split.max == 0)
  733. return FE_CALLBACK_TIME_NEVER;
  734. // n_agc_global
  735. agc = dib8000_read_word(state, 390);
  736. if (agc > state->current_agc->split.min_thres)
  737. split_offset = state->current_agc->split.min;
  738. else if (agc < state->current_agc->split.max_thres)
  739. split_offset = state->current_agc->split.max;
  740. else
  741. split_offset = state->current_agc->split.max *
  742. (agc - state->current_agc->split.min_thres) /
  743. (state->current_agc->split.max_thres - state->current_agc->split.min_thres);
  744. dprintk("AGC split_offset: %d", split_offset);
  745. // P_agc_force_split and P_agc_split_offset
  746. dib8000_write_word(state, 107, (dib8000_read_word(state, 107) & 0xff00) | split_offset);
  747. return 5000;
  748. }
  749. static int dib8000_agc_startup(struct dvb_frontend *fe)
  750. {
  751. struct dib8000_state *state = fe->demodulator_priv;
  752. enum frontend_tune_state *tune_state = &state->tune_state;
  753. int ret = 0;
  754. switch (*tune_state) {
  755. case CT_AGC_START:
  756. // set power-up level: interf+analog+AGC
  757. dib8000_set_adc_state(state, DIBX000_ADC_ON);
  758. if (dib8000_set_agc_config(state, (unsigned char)(BAND_OF_FREQUENCY(fe->dtv_property_cache.frequency / 1000))) != 0) {
  759. *tune_state = CT_AGC_STOP;
  760. state->status = FE_STATUS_TUNE_FAILED;
  761. break;
  762. }
  763. ret = 70;
  764. *tune_state = CT_AGC_STEP_0;
  765. break;
  766. case CT_AGC_STEP_0:
  767. //AGC initialization
  768. if (state->cfg.agc_control)
  769. state->cfg.agc_control(fe, 1);
  770. dib8000_restart_agc(state);
  771. // wait AGC rough lock time
  772. ret = 50;
  773. *tune_state = CT_AGC_STEP_1;
  774. break;
  775. case CT_AGC_STEP_1:
  776. // wait AGC accurate lock time
  777. ret = 70;
  778. if (dib8000_update_lna(state))
  779. // wait only AGC rough lock time
  780. ret = 50;
  781. else
  782. *tune_state = CT_AGC_STEP_2;
  783. break;
  784. case CT_AGC_STEP_2:
  785. dib8000_agc_soft_split(state);
  786. if (state->cfg.agc_control)
  787. state->cfg.agc_control(fe, 0);
  788. *tune_state = CT_AGC_STOP;
  789. break;
  790. default:
  791. ret = dib8000_agc_soft_split(state);
  792. break;
  793. }
  794. return ret;
  795. }
  796. static const s32 lut_1000ln_mant[] =
  797. {
  798. 908, 7003, 7090, 7170, 7244, 7313, 7377, 7438, 7495, 7549, 7600
  799. };
  800. s32 dib8000_get_adc_power(struct dvb_frontend *fe, u8 mode)
  801. {
  802. struct dib8000_state *state = fe->demodulator_priv;
  803. u32 ix = 0, tmp_val = 0, exp = 0, mant = 0;
  804. s32 val;
  805. val = dib8000_read32(state, 384);
  806. if (mode) {
  807. tmp_val = val;
  808. while (tmp_val >>= 1)
  809. exp++;
  810. mant = (val * 1000 / (1<<exp));
  811. ix = (u8)((mant-1000)/100); /* index of the LUT */
  812. val = (lut_1000ln_mant[ix] + 693*(exp-20) - 6908);
  813. val = (val*256)/1000;
  814. }
  815. return val;
  816. }
  817. EXPORT_SYMBOL(dib8000_get_adc_power);
  818. static void dib8000_update_timf(struct dib8000_state *state)
  819. {
  820. u32 timf = state->timf = dib8000_read32(state, 435);
  821. dib8000_write_word(state, 29, (u16) (timf >> 16));
  822. dib8000_write_word(state, 30, (u16) (timf & 0xffff));
  823. dprintk("Updated timing frequency: %d (default: %d)", state->timf, state->timf_default);
  824. }
  825. static const u16 adc_target_16dB[11] = {
  826. (1 << 13) - 825 - 117,
  827. (1 << 13) - 837 - 117,
  828. (1 << 13) - 811 - 117,
  829. (1 << 13) - 766 - 117,
  830. (1 << 13) - 737 - 117,
  831. (1 << 13) - 693 - 117,
  832. (1 << 13) - 648 - 117,
  833. (1 << 13) - 619 - 117,
  834. (1 << 13) - 575 - 117,
  835. (1 << 13) - 531 - 117,
  836. (1 << 13) - 501 - 117
  837. };
  838. static const u8 permu_seg[] = { 6, 5, 7, 4, 8, 3, 9, 2, 10, 1, 11, 0, 12 };
  839. static void dib8000_set_channel(struct dib8000_state *state, u8 seq, u8 autosearching)
  840. {
  841. u16 mode, max_constellation, seg_diff_mask = 0, nbseg_diff = 0;
  842. u8 guard, crate, constellation, timeI;
  843. u16 i, coeff[4], P_cfr_left_edge = 0, P_cfr_right_edge = 0, seg_mask13 = 0x1fff; // All 13 segments enabled
  844. const s16 *ncoeff = NULL, *ana_fe;
  845. u16 tmcc_pow = 0;
  846. u16 coff_pow = 0x2800;
  847. u16 init_prbs = 0xfff;
  848. u16 ana_gain = 0;
  849. if (state->ber_monitored_layer != LAYER_ALL)
  850. dib8000_write_word(state, 285, (dib8000_read_word(state, 285) & 0x60) | state->ber_monitored_layer);
  851. else
  852. dib8000_write_word(state, 285, dib8000_read_word(state, 285) & 0x60);
  853. i = dib8000_read_word(state, 26) & 1; // P_dds_invspec
  854. dib8000_write_word(state, 26, state->fe[0]->dtv_property_cache.inversion^i);
  855. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode) {
  856. //compute new dds_freq for the seg and adjust prbs
  857. int seg_offset =
  858. state->fe[0]->dtv_property_cache.isdbt_sb_segment_idx -
  859. (state->fe[0]->dtv_property_cache.isdbt_sb_segment_count / 2) -
  860. (state->fe[0]->dtv_property_cache.isdbt_sb_segment_count % 2);
  861. int clk = state->cfg.pll->internal;
  862. u32 segtodds = ((u32) (430 << 23) / clk) << 3; // segtodds = SegBW / Fclk * pow(2,26)
  863. int dds_offset = seg_offset * segtodds;
  864. int new_dds, sub_channel;
  865. if ((state->fe[0]->dtv_property_cache.isdbt_sb_segment_count % 2) == 0)
  866. dds_offset -= (int)(segtodds / 2);
  867. if (state->cfg.pll->ifreq == 0) {
  868. if ((state->fe[0]->dtv_property_cache.inversion ^ i) == 0) {
  869. dib8000_write_word(state, 26, dib8000_read_word(state, 26) | 1);
  870. new_dds = dds_offset;
  871. } else
  872. new_dds = dds_offset;
  873. // We shift tuning frequency if the wanted segment is :
  874. // - the segment of center frequency with an odd total number of segments
  875. // - the segment to the left of center frequency with an even total number of segments
  876. // - the segment to the right of center frequency with an even total number of segments
  877. if ((state->fe[0]->dtv_property_cache.delivery_system == SYS_ISDBT)
  878. && (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1)
  879. && (((state->fe[0]->dtv_property_cache.isdbt_sb_segment_count % 2)
  880. && (state->fe[0]->dtv_property_cache.isdbt_sb_segment_idx ==
  881. ((state->fe[0]->dtv_property_cache.isdbt_sb_segment_count / 2) + 1)))
  882. || (((state->fe[0]->dtv_property_cache.isdbt_sb_segment_count % 2) == 0)
  883. && (state->fe[0]->dtv_property_cache.isdbt_sb_segment_idx == (state->fe[0]->dtv_property_cache.isdbt_sb_segment_count / 2)))
  884. || (((state->fe[0]->dtv_property_cache.isdbt_sb_segment_count % 2) == 0)
  885. && (state->fe[0]->dtv_property_cache.isdbt_sb_segment_idx ==
  886. ((state->fe[0]->dtv_property_cache.isdbt_sb_segment_count / 2) + 1)))
  887. )) {
  888. new_dds -= ((u32) (850 << 22) / clk) << 4; // new_dds = 850 (freq shift in KHz) / Fclk * pow(2,26)
  889. }
  890. } else {
  891. if ((state->fe[0]->dtv_property_cache.inversion ^ i) == 0)
  892. new_dds = state->cfg.pll->ifreq - dds_offset;
  893. else
  894. new_dds = state->cfg.pll->ifreq + dds_offset;
  895. }
  896. dib8000_write_word(state, 27, (u16) ((new_dds >> 16) & 0x01ff));
  897. dib8000_write_word(state, 28, (u16) (new_dds & 0xffff));
  898. if (state->fe[0]->dtv_property_cache.isdbt_sb_segment_count % 2)
  899. sub_channel = ((state->fe[0]->dtv_property_cache.isdbt_sb_subchannel + (3 * seg_offset) + 1) % 41) / 3;
  900. else
  901. sub_channel = ((state->fe[0]->dtv_property_cache.isdbt_sb_subchannel + (3 * seg_offset)) % 41) / 3;
  902. sub_channel -= 6;
  903. if (state->fe[0]->dtv_property_cache.transmission_mode == TRANSMISSION_MODE_2K
  904. || state->fe[0]->dtv_property_cache.transmission_mode == TRANSMISSION_MODE_4K) {
  905. dib8000_write_word(state, 219, dib8000_read_word(state, 219) | 0x1); //adp_pass =1
  906. dib8000_write_word(state, 190, dib8000_read_word(state, 190) | (0x1 << 14)); //pha3_force_pha_shift = 1
  907. } else {
  908. dib8000_write_word(state, 219, dib8000_read_word(state, 219) & 0xfffe); //adp_pass =0
  909. dib8000_write_word(state, 190, dib8000_read_word(state, 190) & 0xbfff); //pha3_force_pha_shift = 0
  910. }
  911. switch (state->fe[0]->dtv_property_cache.transmission_mode) {
  912. case TRANSMISSION_MODE_2K:
  913. switch (sub_channel) {
  914. case -6:
  915. init_prbs = 0x0;
  916. break; // 41, 0, 1
  917. case -5:
  918. init_prbs = 0x423;
  919. break; // 02~04
  920. case -4:
  921. init_prbs = 0x9;
  922. break; // 05~07
  923. case -3:
  924. init_prbs = 0x5C7;
  925. break; // 08~10
  926. case -2:
  927. init_prbs = 0x7A6;
  928. break; // 11~13
  929. case -1:
  930. init_prbs = 0x3D8;
  931. break; // 14~16
  932. case 0:
  933. init_prbs = 0x527;
  934. break; // 17~19
  935. case 1:
  936. init_prbs = 0x7FF;
  937. break; // 20~22
  938. case 2:
  939. init_prbs = 0x79B;
  940. break; // 23~25
  941. case 3:
  942. init_prbs = 0x3D6;
  943. break; // 26~28
  944. case 4:
  945. init_prbs = 0x3A2;
  946. break; // 29~31
  947. case 5:
  948. init_prbs = 0x53B;
  949. break; // 32~34
  950. case 6:
  951. init_prbs = 0x2F4;
  952. break; // 35~37
  953. default:
  954. case 7:
  955. init_prbs = 0x213;
  956. break; // 38~40
  957. }
  958. break;
  959. case TRANSMISSION_MODE_4K:
  960. switch (sub_channel) {
  961. case -6:
  962. init_prbs = 0x0;
  963. break; // 41, 0, 1
  964. case -5:
  965. init_prbs = 0x208;
  966. break; // 02~04
  967. case -4:
  968. init_prbs = 0xC3;
  969. break; // 05~07
  970. case -3:
  971. init_prbs = 0x7B9;
  972. break; // 08~10
  973. case -2:
  974. init_prbs = 0x423;
  975. break; // 11~13
  976. case -1:
  977. init_prbs = 0x5C7;
  978. break; // 14~16
  979. case 0:
  980. init_prbs = 0x3D8;
  981. break; // 17~19
  982. case 1:
  983. init_prbs = 0x7FF;
  984. break; // 20~22
  985. case 2:
  986. init_prbs = 0x3D6;
  987. break; // 23~25
  988. case 3:
  989. init_prbs = 0x53B;
  990. break; // 26~28
  991. case 4:
  992. init_prbs = 0x213;
  993. break; // 29~31
  994. case 5:
  995. init_prbs = 0x29;
  996. break; // 32~34
  997. case 6:
  998. init_prbs = 0xD0;
  999. break; // 35~37
  1000. default:
  1001. case 7:
  1002. init_prbs = 0x48E;
  1003. break; // 38~40
  1004. }
  1005. break;
  1006. default:
  1007. case TRANSMISSION_MODE_8K:
  1008. switch (sub_channel) {
  1009. case -6:
  1010. init_prbs = 0x0;
  1011. break; // 41, 0, 1
  1012. case -5:
  1013. init_prbs = 0x740;
  1014. break; // 02~04
  1015. case -4:
  1016. init_prbs = 0x069;
  1017. break; // 05~07
  1018. case -3:
  1019. init_prbs = 0x7DD;
  1020. break; // 08~10
  1021. case -2:
  1022. init_prbs = 0x208;
  1023. break; // 11~13
  1024. case -1:
  1025. init_prbs = 0x7B9;
  1026. break; // 14~16
  1027. case 0:
  1028. init_prbs = 0x5C7;
  1029. break; // 17~19
  1030. case 1:
  1031. init_prbs = 0x7FF;
  1032. break; // 20~22
  1033. case 2:
  1034. init_prbs = 0x53B;
  1035. break; // 23~25
  1036. case 3:
  1037. init_prbs = 0x29;
  1038. break; // 26~28
  1039. case 4:
  1040. init_prbs = 0x48E;
  1041. break; // 29~31
  1042. case 5:
  1043. init_prbs = 0x4C4;
  1044. break; // 32~34
  1045. case 6:
  1046. init_prbs = 0x367;
  1047. break; // 33~37
  1048. default:
  1049. case 7:
  1050. init_prbs = 0x684;
  1051. break; // 38~40
  1052. }
  1053. break;
  1054. }
  1055. } else {
  1056. dib8000_write_word(state, 27, (u16) ((state->cfg.pll->ifreq >> 16) & 0x01ff));
  1057. dib8000_write_word(state, 28, (u16) (state->cfg.pll->ifreq & 0xffff));
  1058. dib8000_write_word(state, 26, (u16) ((state->cfg.pll->ifreq >> 25) & 0x0003));
  1059. }
  1060. /*P_mode == ?? */
  1061. dib8000_write_word(state, 10, (seq << 4));
  1062. // dib8000_write_word(state, 287, (dib8000_read_word(state, 287) & 0xe000) | 0x1000);
  1063. switch (state->fe[0]->dtv_property_cache.guard_interval) {
  1064. case GUARD_INTERVAL_1_32:
  1065. guard = 0;
  1066. break;
  1067. case GUARD_INTERVAL_1_16:
  1068. guard = 1;
  1069. break;
  1070. case GUARD_INTERVAL_1_8:
  1071. guard = 2;
  1072. break;
  1073. case GUARD_INTERVAL_1_4:
  1074. default:
  1075. guard = 3;
  1076. break;
  1077. }
  1078. dib8000_write_word(state, 1, (init_prbs << 2) | (guard & 0x3)); // ADDR 1
  1079. max_constellation = DQPSK;
  1080. for (i = 0; i < 3; i++) {
  1081. switch (state->fe[0]->dtv_property_cache.layer[i].modulation) {
  1082. case DQPSK:
  1083. constellation = 0;
  1084. break;
  1085. case QPSK:
  1086. constellation = 1;
  1087. break;
  1088. case QAM_16:
  1089. constellation = 2;
  1090. break;
  1091. case QAM_64:
  1092. default:
  1093. constellation = 3;
  1094. break;
  1095. }
  1096. switch (state->fe[0]->dtv_property_cache.layer[i].fec) {
  1097. case FEC_1_2:
  1098. crate = 1;
  1099. break;
  1100. case FEC_2_3:
  1101. crate = 2;
  1102. break;
  1103. case FEC_3_4:
  1104. crate = 3;
  1105. break;
  1106. case FEC_5_6:
  1107. crate = 5;
  1108. break;
  1109. case FEC_7_8:
  1110. default:
  1111. crate = 7;
  1112. break;
  1113. }
  1114. if ((state->fe[0]->dtv_property_cache.layer[i].interleaving > 0) &&
  1115. ((state->fe[0]->dtv_property_cache.layer[i].interleaving <= 3) ||
  1116. (state->fe[0]->dtv_property_cache.layer[i].interleaving == 4 && state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1))
  1117. )
  1118. timeI = state->fe[0]->dtv_property_cache.layer[i].interleaving;
  1119. else
  1120. timeI = 0;
  1121. dib8000_write_word(state, 2 + i, (constellation << 10) | ((state->fe[0]->dtv_property_cache.layer[i].segment_count & 0xf) << 6) |
  1122. (crate << 3) | timeI);
  1123. if (state->fe[0]->dtv_property_cache.layer[i].segment_count > 0) {
  1124. switch (max_constellation) {
  1125. case DQPSK:
  1126. case QPSK:
  1127. if (state->fe[0]->dtv_property_cache.layer[i].modulation == QAM_16 ||
  1128. state->fe[0]->dtv_property_cache.layer[i].modulation == QAM_64)
  1129. max_constellation = state->fe[0]->dtv_property_cache.layer[i].modulation;
  1130. break;
  1131. case QAM_16:
  1132. if (state->fe[0]->dtv_property_cache.layer[i].modulation == QAM_64)
  1133. max_constellation = state->fe[0]->dtv_property_cache.layer[i].modulation;
  1134. break;
  1135. }
  1136. }
  1137. }
  1138. mode = fft_to_mode(state);
  1139. //dib8000_write_word(state, 5, 13); /*p_last_seg = 13*/
  1140. dib8000_write_word(state, 274, (dib8000_read_word(state, 274) & 0xffcf) |
  1141. ((state->fe[0]->dtv_property_cache.isdbt_partial_reception & 1) << 5) | ((state->fe[0]->dtv_property_cache.
  1142. isdbt_sb_mode & 1) << 4));
  1143. dprintk("mode = %d ; guard = %d", mode, state->fe[0]->dtv_property_cache.guard_interval);
  1144. /* signal optimization parameter */
  1145. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception) {
  1146. seg_diff_mask = (state->fe[0]->dtv_property_cache.layer[0].modulation == DQPSK) << permu_seg[0];
  1147. for (i = 1; i < 3; i++)
  1148. nbseg_diff +=
  1149. (state->fe[0]->dtv_property_cache.layer[i].modulation == DQPSK) * state->fe[0]->dtv_property_cache.layer[i].segment_count;
  1150. for (i = 0; i < nbseg_diff; i++)
  1151. seg_diff_mask |= 1 << permu_seg[i + 1];
  1152. } else {
  1153. for (i = 0; i < 3; i++)
  1154. nbseg_diff +=
  1155. (state->fe[0]->dtv_property_cache.layer[i].modulation == DQPSK) * state->fe[0]->dtv_property_cache.layer[i].segment_count;
  1156. for (i = 0; i < nbseg_diff; i++)
  1157. seg_diff_mask |= 1 << permu_seg[i];
  1158. }
  1159. dprintk("nbseg_diff = %X (%d)", seg_diff_mask, seg_diff_mask);
  1160. state->differential_constellation = (seg_diff_mask != 0);
  1161. dib8000_set_diversity_in(state->fe[0], state->diversity_onoff);
  1162. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1) {
  1163. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 1)
  1164. seg_mask13 = 0x00E0;
  1165. else // 1-segment
  1166. seg_mask13 = 0x0040;
  1167. } else
  1168. seg_mask13 = 0x1fff;
  1169. // WRITE: Mode & Diff mask
  1170. dib8000_write_word(state, 0, (mode << 13) | seg_diff_mask);
  1171. if ((seg_diff_mask) || (state->fe[0]->dtv_property_cache.isdbt_sb_mode))
  1172. dib8000_write_word(state, 268, (dib8000_read_word(state, 268) & 0xF9FF) | 0x0200);
  1173. else
  1174. dib8000_write_word(state, 268, (2 << 9) | 39); //init value
  1175. // ---- SMALL ----
  1176. // P_small_seg_diff
  1177. dib8000_write_word(state, 352, seg_diff_mask); // ADDR 352
  1178. dib8000_write_word(state, 353, seg_mask13); // ADDR 353
  1179. /* // P_small_narrow_band=0, P_small_last_seg=13, P_small_offset_num_car=5 */
  1180. // ---- SMALL ----
  1181. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1) {
  1182. switch (state->fe[0]->dtv_property_cache.transmission_mode) {
  1183. case TRANSMISSION_MODE_2K:
  1184. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 0) {
  1185. if (state->fe[0]->dtv_property_cache.layer[0].modulation == DQPSK)
  1186. ncoeff = coeff_2k_sb_1seg_dqpsk;
  1187. else // QPSK or QAM
  1188. ncoeff = coeff_2k_sb_1seg;
  1189. } else { // 3-segments
  1190. if (state->fe[0]->dtv_property_cache.layer[0].modulation == DQPSK) {
  1191. if (state->fe[0]->dtv_property_cache.layer[1].modulation == DQPSK)
  1192. ncoeff = coeff_2k_sb_3seg_0dqpsk_1dqpsk;
  1193. else // QPSK or QAM on external segments
  1194. ncoeff = coeff_2k_sb_3seg_0dqpsk;
  1195. } else { // QPSK or QAM on central segment
  1196. if (state->fe[0]->dtv_property_cache.layer[1].modulation == DQPSK)
  1197. ncoeff = coeff_2k_sb_3seg_1dqpsk;
  1198. else // QPSK or QAM on external segments
  1199. ncoeff = coeff_2k_sb_3seg;
  1200. }
  1201. }
  1202. break;
  1203. case TRANSMISSION_MODE_4K:
  1204. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 0) {
  1205. if (state->fe[0]->dtv_property_cache.layer[0].modulation == DQPSK)
  1206. ncoeff = coeff_4k_sb_1seg_dqpsk;
  1207. else // QPSK or QAM
  1208. ncoeff = coeff_4k_sb_1seg;
  1209. } else { // 3-segments
  1210. if (state->fe[0]->dtv_property_cache.layer[0].modulation == DQPSK) {
  1211. if (state->fe[0]->dtv_property_cache.layer[1].modulation == DQPSK) {
  1212. ncoeff = coeff_4k_sb_3seg_0dqpsk_1dqpsk;
  1213. } else { // QPSK or QAM on external segments
  1214. ncoeff = coeff_4k_sb_3seg_0dqpsk;
  1215. }
  1216. } else { // QPSK or QAM on central segment
  1217. if (state->fe[0]->dtv_property_cache.layer[1].modulation == DQPSK) {
  1218. ncoeff = coeff_4k_sb_3seg_1dqpsk;
  1219. } else // QPSK or QAM on external segments
  1220. ncoeff = coeff_4k_sb_3seg;
  1221. }
  1222. }
  1223. break;
  1224. case TRANSMISSION_MODE_AUTO:
  1225. case TRANSMISSION_MODE_8K:
  1226. default:
  1227. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 0) {
  1228. if (state->fe[0]->dtv_property_cache.layer[0].modulation == DQPSK)
  1229. ncoeff = coeff_8k_sb_1seg_dqpsk;
  1230. else // QPSK or QAM
  1231. ncoeff = coeff_8k_sb_1seg;
  1232. } else { // 3-segments
  1233. if (state->fe[0]->dtv_property_cache.layer[0].modulation == DQPSK) {
  1234. if (state->fe[0]->dtv_property_cache.layer[1].modulation == DQPSK) {
  1235. ncoeff = coeff_8k_sb_3seg_0dqpsk_1dqpsk;
  1236. } else { // QPSK or QAM on external segments
  1237. ncoeff = coeff_8k_sb_3seg_0dqpsk;
  1238. }
  1239. } else { // QPSK or QAM on central segment
  1240. if (state->fe[0]->dtv_property_cache.layer[1].modulation == DQPSK) {
  1241. ncoeff = coeff_8k_sb_3seg_1dqpsk;
  1242. } else // QPSK or QAM on external segments
  1243. ncoeff = coeff_8k_sb_3seg;
  1244. }
  1245. }
  1246. break;
  1247. }
  1248. for (i = 0; i < 8; i++)
  1249. dib8000_write_word(state, 343 + i, ncoeff[i]);
  1250. }
  1251. // P_small_coef_ext_enable=ISDB-Tsb, P_small_narrow_band=ISDB-Tsb, P_small_last_seg=13, P_small_offset_num_car=5
  1252. dib8000_write_word(state, 351,
  1253. (state->fe[0]->dtv_property_cache.isdbt_sb_mode << 9) | (state->fe[0]->dtv_property_cache.isdbt_sb_mode << 8) | (13 << 4) | 5);
  1254. // ---- COFF ----
  1255. // Carloff, the most robust
  1256. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1) {
  1257. // P_coff_cpil_alpha=4, P_coff_inh=0, P_coff_cpil_winlen=64
  1258. // P_coff_narrow_band=1, P_coff_square_val=1, P_coff_one_seg=~partial_rcpt, P_coff_use_tmcc=1, P_coff_use_ac=1
  1259. dib8000_write_word(state, 187,
  1260. (4 << 12) | (0 << 11) | (63 << 5) | (0x3 << 3) | ((~state->fe[0]->dtv_property_cache.isdbt_partial_reception & 1) << 2)
  1261. | 0x3);
  1262. /* // P_small_coef_ext_enable = 1 */
  1263. /* dib8000_write_word(state, 351, dib8000_read_word(state, 351) | 0x200); */
  1264. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 0) {
  1265. // P_coff_winlen=63, P_coff_thres_lock=15, P_coff_one_seg_width= (P_mode == 3) , P_coff_one_seg_sym= (P_mode-1)
  1266. if (mode == 3)
  1267. dib8000_write_word(state, 180, 0x1fcf | ((mode - 1) << 14));
  1268. else
  1269. dib8000_write_word(state, 180, 0x0fcf | ((mode - 1) << 14));
  1270. // P_ctrl_corm_thres4pre_freq_inh=1,P_ctrl_pre_freq_mode_sat=1,
  1271. // P_ctrl_pre_freq_inh=0, P_ctrl_pre_freq_step = 5, P_pre_freq_win_len=4
  1272. dib8000_write_word(state, 338, (1 << 12) | (1 << 10) | (0 << 9) | (5 << 5) | 4);
  1273. // P_ctrl_pre_freq_win_len=16, P_ctrl_pre_freq_thres_lockin=8
  1274. dib8000_write_word(state, 340, (16 << 6) | (8 << 0));
  1275. // P_ctrl_pre_freq_thres_lockout=6, P_small_use_tmcc/ac/cp=1
  1276. dib8000_write_word(state, 341, (6 << 3) | (1 << 2) | (1 << 1) | (1 << 0));
  1277. // P_coff_corthres_8k, 4k, 2k and P_coff_cpilthres_8k, 4k, 2k
  1278. dib8000_write_word(state, 181, 300);
  1279. dib8000_write_word(state, 182, 150);
  1280. dib8000_write_word(state, 183, 80);
  1281. dib8000_write_word(state, 184, 300);
  1282. dib8000_write_word(state, 185, 150);
  1283. dib8000_write_word(state, 186, 80);
  1284. } else { // Sound Broadcasting mode 3 seg
  1285. // P_coff_one_seg_sym= 1, P_coff_one_seg_width= 1, P_coff_winlen=63, P_coff_thres_lock=15
  1286. /* if (mode == 3) */
  1287. /* dib8000_write_word(state, 180, 0x2fca | ((0) << 14)); */
  1288. /* else */
  1289. /* dib8000_write_word(state, 180, 0x2fca | ((1) << 14)); */
  1290. dib8000_write_word(state, 180, 0x1fcf | (1 << 14));
  1291. // P_ctrl_corm_thres4pre_freq_inh = 1, P_ctrl_pre_freq_mode_sat=1,
  1292. // P_ctrl_pre_freq_inh=0, P_ctrl_pre_freq_step = 4, P_pre_freq_win_len=4
  1293. dib8000_write_word(state, 338, (1 << 12) | (1 << 10) | (0 << 9) | (4 << 5) | 4);
  1294. // P_ctrl_pre_freq_win_len=16, P_ctrl_pre_freq_thres_lockin=8
  1295. dib8000_write_word(state, 340, (16 << 6) | (8 << 0));
  1296. //P_ctrl_pre_freq_thres_lockout=6, P_small_use_tmcc/ac/cp=1
  1297. dib8000_write_word(state, 341, (6 << 3) | (1 << 2) | (1 << 1) | (1 << 0));
  1298. // P_coff_corthres_8k, 4k, 2k and P_coff_cpilthres_8k, 4k, 2k
  1299. dib8000_write_word(state, 181, 350);
  1300. dib8000_write_word(state, 182, 300);
  1301. dib8000_write_word(state, 183, 250);
  1302. dib8000_write_word(state, 184, 350);
  1303. dib8000_write_word(state, 185, 300);
  1304. dib8000_write_word(state, 186, 250);
  1305. }
  1306. } else if (state->isdbt_cfg_loaded == 0) { // if not Sound Broadcasting mode : put default values for 13 segments
  1307. dib8000_write_word(state, 180, (16 << 6) | 9);
  1308. dib8000_write_word(state, 187, (4 << 12) | (8 << 5) | 0x2);
  1309. coff_pow = 0x2800;
  1310. for (i = 0; i < 6; i++)
  1311. dib8000_write_word(state, 181 + i, coff_pow);
  1312. // P_ctrl_corm_thres4pre_freq_inh=1, P_ctrl_pre_freq_mode_sat=1,
  1313. // P_ctrl_pre_freq_mode_sat=1, P_ctrl_pre_freq_inh=0, P_ctrl_pre_freq_step = 3, P_pre_freq_win_len=1
  1314. dib8000_write_word(state, 338, (1 << 12) | (1 << 10) | (0 << 9) | (3 << 5) | 1);
  1315. // P_ctrl_pre_freq_win_len=8, P_ctrl_pre_freq_thres_lockin=6
  1316. dib8000_write_word(state, 340, (8 << 6) | (6 << 0));
  1317. // P_ctrl_pre_freq_thres_lockout=4, P_small_use_tmcc/ac/cp=1
  1318. dib8000_write_word(state, 341, (4 << 3) | (1 << 2) | (1 << 1) | (1 << 0));
  1319. }
  1320. // ---- FFT ----
  1321. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1 && state->fe[0]->dtv_property_cache.isdbt_partial_reception == 0)
  1322. dib8000_write_word(state, 178, 64); // P_fft_powrange=64
  1323. else
  1324. dib8000_write_word(state, 178, 32); // P_fft_powrange=32
  1325. /* make the cpil_coff_lock more robust but slower p_coff_winlen
  1326. * 6bits; p_coff_thres_lock 6bits (for coff lock if needed)
  1327. */
  1328. /* if ( ( nbseg_diff>0)&&(nbseg_diff<13))
  1329. dib8000_write_word(state, 187, (dib8000_read_word(state, 187) & 0xfffb) | (1 << 3)); */
  1330. dib8000_write_word(state, 189, ~seg_mask13 | seg_diff_mask); /* P_lmod4_seg_inh */
  1331. dib8000_write_word(state, 192, ~seg_mask13 | seg_diff_mask); /* P_pha3_seg_inh */
  1332. dib8000_write_word(state, 225, ~seg_mask13 | seg_diff_mask); /* P_tac_seg_inh */
  1333. if ((!state->fe[0]->dtv_property_cache.isdbt_sb_mode) && (state->cfg.pll->ifreq == 0))
  1334. dib8000_write_word(state, 266, ~seg_mask13 | seg_diff_mask | 0x40); /* P_equal_noise_seg_inh */
  1335. else
  1336. dib8000_write_word(state, 266, ~seg_mask13 | seg_diff_mask); /* P_equal_noise_seg_inh */
  1337. dib8000_write_word(state, 287, ~seg_mask13 | 0x1000); /* P_tmcc_seg_inh */
  1338. //dib8000_write_word(state, 288, ~seg_mask13 | seg_diff_mask); /* P_tmcc_seg_eq_inh */
  1339. if (!autosearching)
  1340. dib8000_write_word(state, 288, (~seg_mask13 | seg_diff_mask) & 0x1fff); /* P_tmcc_seg_eq_inh */
  1341. else
  1342. dib8000_write_word(state, 288, 0x1fff); //disable equalisation of the tmcc when autosearch to be able to find the DQPSK channels.
  1343. dprintk("287 = %X (%d)", ~seg_mask13 | 0x1000, ~seg_mask13 | 0x1000);
  1344. dib8000_write_word(state, 211, seg_mask13 & (~seg_diff_mask)); /* P_des_seg_enabled */
  1345. /* offset loop parameters */
  1346. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1) {
  1347. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 0)
  1348. /* P_timf_alpha = (11-P_mode), P_corm_alpha=6, P_corm_thres=0x80 */
  1349. dib8000_write_word(state, 32, ((11 - mode) << 12) | (6 << 8) | 0x40);
  1350. else // Sound Broadcasting mode 3 seg
  1351. /* P_timf_alpha = (10-P_mode), P_corm_alpha=6, P_corm_thres=0x80 */
  1352. dib8000_write_word(state, 32, ((10 - mode) << 12) | (6 << 8) | 0x60);
  1353. } else
  1354. // TODO in 13 seg, timf_alpha can always be the same or not ?
  1355. /* P_timf_alpha = (9-P_mode, P_corm_alpha=6, P_corm_thres=0x80 */
  1356. dib8000_write_word(state, 32, ((9 - mode) << 12) | (6 << 8) | 0x80);
  1357. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1) {
  1358. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 0)
  1359. /* P_ctrl_pha_off_max=3 P_ctrl_sfreq_inh =0 P_ctrl_sfreq_step = (11-P_mode) */
  1360. dib8000_write_word(state, 37, (3 << 5) | (0 << 4) | (10 - mode));
  1361. else // Sound Broadcasting mode 3 seg
  1362. /* P_ctrl_pha_off_max=3 P_ctrl_sfreq_inh =0 P_ctrl_sfreq_step = (10-P_mode) */
  1363. dib8000_write_word(state, 37, (3 << 5) | (0 << 4) | (9 - mode));
  1364. } else
  1365. /* P_ctrl_pha_off_max=3 P_ctrl_sfreq_inh =0 P_ctrl_sfreq_step = 9 */
  1366. dib8000_write_word(state, 37, (3 << 5) | (0 << 4) | (8 - mode));
  1367. /* P_dvsy_sync_wait - reuse mode */
  1368. switch (state->fe[0]->dtv_property_cache.transmission_mode) {
  1369. case TRANSMISSION_MODE_8K:
  1370. mode = 256;
  1371. break;
  1372. case TRANSMISSION_MODE_4K:
  1373. mode = 128;
  1374. break;
  1375. default:
  1376. case TRANSMISSION_MODE_2K:
  1377. mode = 64;
  1378. break;
  1379. }
  1380. if (state->cfg.diversity_delay == 0)
  1381. mode = (mode * (1 << (guard)) * 3) / 2 + 48; // add 50% SFN margin + compensate for one DVSY-fifo
  1382. else
  1383. mode = (mode * (1 << (guard)) * 3) / 2 + state->cfg.diversity_delay; // add 50% SFN margin + compensate for DVSY-fifo
  1384. mode <<= 4;
  1385. dib8000_write_word(state, 273, (dib8000_read_word(state, 273) & 0x000f) | mode);
  1386. /* channel estimation fine configuration */
  1387. switch (max_constellation) {
  1388. case QAM_64:
  1389. ana_gain = 0x7; // -1 : avoid def_est saturation when ADC target is -16dB
  1390. coeff[0] = 0x0148; /* P_adp_regul_cnt 0.04 */
  1391. coeff[1] = 0xfff0; /* P_adp_noise_cnt -0.002 */
  1392. coeff[2] = 0x00a4; /* P_adp_regul_ext 0.02 */
  1393. coeff[3] = 0xfff8; /* P_adp_noise_ext -0.001 */
  1394. //if (!state->cfg.hostbus_diversity) //if diversity, we should prehaps use the configuration of the max_constallation -1
  1395. break;
  1396. case QAM_16:
  1397. ana_gain = 0x7; // -1 : avoid def_est saturation when ADC target is -16dB
  1398. coeff[0] = 0x023d; /* P_adp_regul_cnt 0.07 */
  1399. coeff[1] = 0xffdf; /* P_adp_noise_cnt -0.004 */
  1400. coeff[2] = 0x00a4; /* P_adp_regul_ext 0.02 */
  1401. coeff[3] = 0xfff0; /* P_adp_noise_ext -0.002 */
  1402. //if (!((state->cfg.hostbus_diversity) && (max_constellation == QAM_16)))
  1403. break;
  1404. default:
  1405. ana_gain = 0; // 0 : goes along with ADC target at -22dB to keep good mobile performance and lock at sensitivity level
  1406. coeff[0] = 0x099a; /* P_adp_regul_cnt 0.3 */
  1407. coeff[1] = 0xffae; /* P_adp_noise_cnt -0.01 */
  1408. coeff[2] = 0x0333; /* P_adp_regul_ext 0.1 */
  1409. coeff[3] = 0xfff8; /* P_adp_noise_ext -0.002 */
  1410. break;
  1411. }
  1412. for (mode = 0; mode < 4; mode++)
  1413. dib8000_write_word(state, 215 + mode, coeff[mode]);
  1414. // update ana_gain depending on max constellation
  1415. dib8000_write_word(state, 116, ana_gain);
  1416. // update ADC target depending on ana_gain
  1417. if (ana_gain) { // set -16dB ADC target for ana_gain=-1
  1418. for (i = 0; i < 10; i++)
  1419. dib8000_write_word(state, 80 + i, adc_target_16dB[i]);
  1420. } else { // set -22dB ADC target for ana_gain=0
  1421. for (i = 0; i < 10; i++)
  1422. dib8000_write_word(state, 80 + i, adc_target_16dB[i] - 355);
  1423. }
  1424. // ---- ANA_FE ----
  1425. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode) {
  1426. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 1)
  1427. ana_fe = ana_fe_coeff_3seg;
  1428. else // 1-segment
  1429. ana_fe = ana_fe_coeff_1seg;
  1430. } else
  1431. ana_fe = ana_fe_coeff_13seg;
  1432. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1 || state->isdbt_cfg_loaded == 0)
  1433. for (mode = 0; mode < 24; mode++)
  1434. dib8000_write_word(state, 117 + mode, ana_fe[mode]);
  1435. // ---- CHAN_BLK ----
  1436. for (i = 0; i < 13; i++) {
  1437. if ((((~seg_diff_mask) >> i) & 1) == 1) {
  1438. P_cfr_left_edge += (1 << i) * ((i == 0) || ((((seg_mask13 & (~seg_diff_mask)) >> (i - 1)) & 1) == 0));
  1439. P_cfr_right_edge += (1 << i) * ((i == 12) || ((((seg_mask13 & (~seg_diff_mask)) >> (i + 1)) & 1) == 0));
  1440. }
  1441. }
  1442. dib8000_write_word(state, 222, P_cfr_left_edge); // P_cfr_left_edge
  1443. dib8000_write_word(state, 223, P_cfr_right_edge); // P_cfr_right_edge
  1444. // "P_cspu_left_edge" not used => do not care
  1445. // "P_cspu_right_edge" not used => do not care
  1446. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1) {
  1447. dib8000_write_word(state, 228, 1); // P_2d_mode_byp=1
  1448. dib8000_write_word(state, 205, dib8000_read_word(state, 205) & 0xfff0); // P_cspu_win_cut = 0
  1449. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 0
  1450. && state->fe[0]->dtv_property_cache.transmission_mode == TRANSMISSION_MODE_2K) {
  1451. //dib8000_write_word(state, 219, dib8000_read_word(state, 219) & 0xfffe); // P_adp_pass = 0
  1452. dib8000_write_word(state, 265, 15); // P_equal_noise_sel = 15
  1453. }
  1454. } else if (state->isdbt_cfg_loaded == 0) {
  1455. dib8000_write_word(state, 228, 0); // default value
  1456. dib8000_write_word(state, 265, 31); // default value
  1457. dib8000_write_word(state, 205, 0x200f); // init value
  1458. }
  1459. // ---- TMCC ----
  1460. for (i = 0; i < 3; i++)
  1461. tmcc_pow +=
  1462. (((state->fe[0]->dtv_property_cache.layer[i].modulation == DQPSK) * 4 + 1) * state->fe[0]->dtv_property_cache.layer[i].segment_count);
  1463. // Quantif of "P_tmcc_dec_thres_?k" is (0, 5+mode, 9);
  1464. // Threshold is set at 1/4 of max power.
  1465. tmcc_pow *= (1 << (9 - 2));
  1466. dib8000_write_word(state, 290, tmcc_pow); // P_tmcc_dec_thres_2k
  1467. dib8000_write_word(state, 291, tmcc_pow); // P_tmcc_dec_thres_4k
  1468. dib8000_write_word(state, 292, tmcc_pow); // P_tmcc_dec_thres_8k
  1469. //dib8000_write_word(state, 287, (1 << 13) | 0x1000 );
  1470. // ---- PHA3 ----
  1471. if (state->isdbt_cfg_loaded == 0)
  1472. dib8000_write_word(state, 250, 3285); /*p_2d_hspeed_thr0 */
  1473. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1)
  1474. state->isdbt_cfg_loaded = 0;
  1475. else
  1476. state->isdbt_cfg_loaded = 1;
  1477. }
  1478. static int dib8000_autosearch_start(struct dvb_frontend *fe)
  1479. {
  1480. u8 factor;
  1481. u32 value;
  1482. struct dib8000_state *state = fe->demodulator_priv;
  1483. int slist = 0;
  1484. state->fe[0]->dtv_property_cache.inversion = 0;
  1485. if (!state->fe[0]->dtv_property_cache.isdbt_sb_mode)
  1486. state->fe[0]->dtv_property_cache.layer[0].segment_count = 13;
  1487. state->fe[0]->dtv_property_cache.layer[0].modulation = QAM_64;
  1488. state->fe[0]->dtv_property_cache.layer[0].fec = FEC_2_3;
  1489. state->fe[0]->dtv_property_cache.layer[0].interleaving = 0;
  1490. //choose the right list, in sb, always do everything
  1491. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode) {
  1492. state->fe[0]->dtv_property_cache.transmission_mode = TRANSMISSION_MODE_8K;
  1493. state->fe[0]->dtv_property_cache.guard_interval = GUARD_INTERVAL_1_8;
  1494. slist = 7;
  1495. dib8000_write_word(state, 0, (dib8000_read_word(state, 0) & 0x9fff) | (1 << 13));
  1496. } else {
  1497. if (state->fe[0]->dtv_property_cache.guard_interval == GUARD_INTERVAL_AUTO) {
  1498. if (state->fe[0]->dtv_property_cache.transmission_mode == TRANSMISSION_MODE_AUTO) {
  1499. slist = 7;
  1500. dib8000_write_word(state, 0, (dib8000_read_word(state, 0) & 0x9fff) | (1 << 13)); // P_mode = 1 to have autosearch start ok with mode2
  1501. } else
  1502. slist = 3;
  1503. } else {
  1504. if (state->fe[0]->dtv_property_cache.transmission_mode == TRANSMISSION_MODE_AUTO) {
  1505. slist = 2;
  1506. dib8000_write_word(state, 0, (dib8000_read_word(state, 0) & 0x9fff) | (1 << 13)); // P_mode = 1
  1507. } else
  1508. slist = 0;
  1509. }
  1510. if (state->fe[0]->dtv_property_cache.transmission_mode == TRANSMISSION_MODE_AUTO)
  1511. state->fe[0]->dtv_property_cache.transmission_mode = TRANSMISSION_MODE_8K;
  1512. if (state->fe[0]->dtv_property_cache.guard_interval == GUARD_INTERVAL_AUTO)
  1513. state->fe[0]->dtv_property_cache.guard_interval = GUARD_INTERVAL_1_8;
  1514. dprintk("using list for autosearch : %d", slist);
  1515. dib8000_set_channel(state, (unsigned char)slist, 1);
  1516. //dib8000_write_word(state, 0, (dib8000_read_word(state, 0) & 0x9fff) | (1 << 13)); // P_mode = 1
  1517. factor = 1;
  1518. //set lock_mask values
  1519. dib8000_write_word(state, 6, 0x4);
  1520. dib8000_write_word(state, 7, 0x8);
  1521. dib8000_write_word(state, 8, 0x1000);
  1522. //set lock_mask wait time values
  1523. value = 50 * state->cfg.pll->internal * factor;
  1524. dib8000_write_word(state, 11, (u16) ((value >> 16) & 0xffff)); // lock0 wait time
  1525. dib8000_write_word(state, 12, (u16) (value & 0xffff)); // lock0 wait time
  1526. value = 100 * state->cfg.pll->internal * factor;
  1527. dib8000_write_word(state, 13, (u16) ((value >> 16) & 0xffff)); // lock1 wait time
  1528. dib8000_write_word(state, 14, (u16) (value & 0xffff)); // lock1 wait time
  1529. value = 1000 * state->cfg.pll->internal * factor;
  1530. dib8000_write_word(state, 15, (u16) ((value >> 16) & 0xffff)); // lock2 wait time
  1531. dib8000_write_word(state, 16, (u16) (value & 0xffff)); // lock2 wait time
  1532. value = dib8000_read_word(state, 0);
  1533. dib8000_write_word(state, 0, (u16) ((1 << 15) | value));
  1534. dib8000_read_word(state, 1284); // reset the INT. n_irq_pending
  1535. dib8000_write_word(state, 0, (u16) value);
  1536. }
  1537. return 0;
  1538. }
  1539. static int dib8000_autosearch_irq(struct dvb_frontend *fe)
  1540. {
  1541. struct dib8000_state *state = fe->demodulator_priv;
  1542. u16 irq_pending = dib8000_read_word(state, 1284);
  1543. if (irq_pending & 0x1) { // failed
  1544. dprintk("dib8000_autosearch_irq failed");
  1545. return 1;
  1546. }
  1547. if (irq_pending & 0x2) { // succeeded
  1548. dprintk("dib8000_autosearch_irq succeeded");
  1549. return 2;
  1550. }
  1551. return 0; // still pending
  1552. }
  1553. static int dib8000_tune(struct dvb_frontend *fe)
  1554. {
  1555. struct dib8000_state *state = fe->demodulator_priv;
  1556. int ret = 0;
  1557. u16 value, mode = fft_to_mode(state);
  1558. // we are already tuned - just resuming from suspend
  1559. if (state == NULL)
  1560. return -EINVAL;
  1561. dib8000_set_bandwidth(fe, state->fe[0]->dtv_property_cache.bandwidth_hz / 1000);
  1562. dib8000_set_channel(state, 0, 0);
  1563. // restart demod
  1564. ret |= dib8000_write_word(state, 770, 0x4000);
  1565. ret |= dib8000_write_word(state, 770, 0x0000);
  1566. msleep(45);
  1567. /* P_ctrl_inh_cor=0, P_ctrl_alpha_cor=4, P_ctrl_inh_isi=0, P_ctrl_alpha_isi=3 */
  1568. /* ret |= dib8000_write_word(state, 29, (0 << 9) | (4 << 5) | (0 << 4) | (3 << 0) ); workaround inh_isi stays at 1 */
  1569. // never achieved a lock before - wait for timfreq to update
  1570. if (state->timf == 0) {
  1571. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1) {
  1572. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 0)
  1573. msleep(300);
  1574. else // Sound Broadcasting mode 3 seg
  1575. msleep(500);
  1576. } else // 13 seg
  1577. msleep(200);
  1578. }
  1579. if (state->fe[0]->dtv_property_cache.isdbt_sb_mode == 1) {
  1580. if (state->fe[0]->dtv_property_cache.isdbt_partial_reception == 0) {
  1581. /* P_timf_alpha = (13-P_mode) , P_corm_alpha=6, P_corm_thres=0x40 alpha to check on board */
  1582. dib8000_write_word(state, 32, ((13 - mode) << 12) | (6 << 8) | 0x40);
  1583. //dib8000_write_word(state, 32, (8 << 12) | (6 << 8) | 0x80);
  1584. /* P_ctrl_sfreq_step= (12-P_mode) P_ctrl_sfreq_inh =0 P_ctrl_pha_off_max */
  1585. ret |= dib8000_write_word(state, 37, (12 - mode) | ((5 + mode) << 5));
  1586. } else { // Sound Broadcasting mode 3 seg
  1587. /* P_timf_alpha = (12-P_mode) , P_corm_alpha=6, P_corm_thres=0x60 alpha to check on board */
  1588. dib8000_write_word(state, 32, ((12 - mode) << 12) | (6 << 8) | 0x60);
  1589. ret |= dib8000_write_word(state, 37, (11 - mode) | ((5 + mode) << 5));
  1590. }
  1591. } else { // 13 seg
  1592. /* P_timf_alpha = 8 , P_corm_alpha=6, P_corm_thres=0x80 alpha to check on board */
  1593. dib8000_write_word(state, 32, ((11 - mode) << 12) | (6 << 8) | 0x80);
  1594. ret |= dib8000_write_word(state, 37, (10 - mode) | ((5 + mode) << 5));
  1595. }
  1596. // we achieved a coff_cpil_lock - it's time to update the timf
  1597. if ((dib8000_read_word(state, 568) >> 11) & 0x1)
  1598. dib8000_update_timf(state);
  1599. //now that tune is finished, lock0 should lock on fec_mpeg to output this lock on MP_LOCK. It's changed in autosearch start
  1600. dib8000_write_word(state, 6, 0x200);
  1601. if (state->revision == 0x8002) {
  1602. value = dib8000_read_word(state, 903);
  1603. dib8000_write_word(state, 903, value & ~(1 << 3));
  1604. msleep(1);
  1605. dib8000_write_word(state, 903, value | (1 << 3));
  1606. }
  1607. return ret;
  1608. }
  1609. static int dib8000_wakeup(struct dvb_frontend *fe)
  1610. {
  1611. struct dib8000_state *state = fe->demodulator_priv;
  1612. u8 index_frontend;
  1613. int ret;
  1614. dib8000_set_power_mode(state, DIB8000M_POWER_ALL);
  1615. dib8000_set_adc_state(state, DIBX000_ADC_ON);
  1616. if (dib8000_set_adc_state(state, DIBX000_SLOW_ADC_ON) != 0)
  1617. dprintk("could not start Slow ADC");
  1618. for (index_frontend = 1; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1619. ret = state->fe[index_frontend]->ops.init(state->fe[index_frontend]);
  1620. if (ret < 0)
  1621. return ret;
  1622. }
  1623. return 0;
  1624. }
  1625. static int dib8000_sleep(struct dvb_frontend *fe)
  1626. {
  1627. struct dib8000_state *state = fe->demodulator_priv;
  1628. u8 index_frontend;
  1629. int ret;
  1630. for (index_frontend = 1; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1631. ret = state->fe[index_frontend]->ops.sleep(state->fe[index_frontend]);
  1632. if (ret < 0)
  1633. return ret;
  1634. }
  1635. dib8000_set_output_mode(fe, OUTMODE_HIGH_Z);
  1636. dib8000_set_power_mode(state, DIB8000M_POWER_INTERFACE_ONLY);
  1637. return dib8000_set_adc_state(state, DIBX000_SLOW_ADC_OFF) | dib8000_set_adc_state(state, DIBX000_ADC_OFF);
  1638. }
  1639. enum frontend_tune_state dib8000_get_tune_state(struct dvb_frontend *fe)
  1640. {
  1641. struct dib8000_state *state = fe->demodulator_priv;
  1642. return state->tune_state;
  1643. }
  1644. EXPORT_SYMBOL(dib8000_get_tune_state);
  1645. int dib8000_set_tune_state(struct dvb_frontend *fe, enum frontend_tune_state tune_state)
  1646. {
  1647. struct dib8000_state *state = fe->demodulator_priv;
  1648. state->tune_state = tune_state;
  1649. return 0;
  1650. }
  1651. EXPORT_SYMBOL(dib8000_set_tune_state);
  1652. static int dib8000_get_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *fep)
  1653. {
  1654. struct dib8000_state *state = fe->demodulator_priv;
  1655. u16 i, val = 0;
  1656. fe_status_t stat;
  1657. u8 index_frontend, sub_index_frontend;
  1658. fe->dtv_property_cache.bandwidth_hz = 6000000;
  1659. for (index_frontend = 1; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1660. state->fe[index_frontend]->ops.read_status(state->fe[index_frontend], &stat);
  1661. if (stat&FE_HAS_SYNC) {
  1662. dprintk("TMCC lock on the slave%i", index_frontend);
  1663. /* synchronize the cache with the other frontends */
  1664. state->fe[index_frontend]->ops.get_frontend(state->fe[index_frontend], fep);
  1665. for (sub_index_frontend = 0; (sub_index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[sub_index_frontend] != NULL); sub_index_frontend++) {
  1666. if (sub_index_frontend != index_frontend) {
  1667. state->fe[sub_index_frontend]->dtv_property_cache.isdbt_sb_mode = state->fe[index_frontend]->dtv_property_cache.isdbt_sb_mode;
  1668. state->fe[sub_index_frontend]->dtv_property_cache.inversion = state->fe[index_frontend]->dtv_property_cache.inversion;
  1669. state->fe[sub_index_frontend]->dtv_property_cache.transmission_mode = state->fe[index_frontend]->dtv_property_cache.transmission_mode;
  1670. state->fe[sub_index_frontend]->dtv_property_cache.guard_interval = state->fe[index_frontend]->dtv_property_cache.guard_interval;
  1671. state->fe[sub_index_frontend]->dtv_property_cache.isdbt_partial_reception = state->fe[index_frontend]->dtv_property_cache.isdbt_partial_reception;
  1672. for (i = 0; i < 3; i++) {
  1673. state->fe[sub_index_frontend]->dtv_property_cache.layer[i].segment_count = state->fe[index_frontend]->dtv_property_cache.layer[i].segment_count;
  1674. state->fe[sub_index_frontend]->dtv_property_cache.layer[i].interleaving = state->fe[index_frontend]->dtv_property_cache.layer[i].interleaving;
  1675. state->fe[sub_index_frontend]->dtv_property_cache.layer[i].fec = state->fe[index_frontend]->dtv_property_cache.layer[i].fec;
  1676. state->fe[sub_index_frontend]->dtv_property_cache.layer[i].modulation = state->fe[index_frontend]->dtv_property_cache.layer[i].modulation;
  1677. }
  1678. }
  1679. }
  1680. return 0;
  1681. }
  1682. }
  1683. fe->dtv_property_cache.isdbt_sb_mode = dib8000_read_word(state, 508) & 0x1;
  1684. val = dib8000_read_word(state, 570);
  1685. fe->dtv_property_cache.inversion = (val & 0x40) >> 6;
  1686. switch ((val & 0x30) >> 4) {
  1687. case 1:
  1688. fe->dtv_property_cache.transmission_mode = TRANSMISSION_MODE_2K;
  1689. break;
  1690. case 3:
  1691. default:
  1692. fe->dtv_property_cache.transmission_mode = TRANSMISSION_MODE_8K;
  1693. break;
  1694. }
  1695. switch (val & 0x3) {
  1696. case 0:
  1697. fe->dtv_property_cache.guard_interval = GUARD_INTERVAL_1_32;
  1698. dprintk("dib8000_get_frontend GI = 1/32 ");
  1699. break;
  1700. case 1:
  1701. fe->dtv_property_cache.guard_interval = GUARD_INTERVAL_1_16;
  1702. dprintk("dib8000_get_frontend GI = 1/16 ");
  1703. break;
  1704. case 2:
  1705. dprintk("dib8000_get_frontend GI = 1/8 ");
  1706. fe->dtv_property_cache.guard_interval = GUARD_INTERVAL_1_8;
  1707. break;
  1708. case 3:
  1709. dprintk("dib8000_get_frontend GI = 1/4 ");
  1710. fe->dtv_property_cache.guard_interval = GUARD_INTERVAL_1_4;
  1711. break;
  1712. }
  1713. val = dib8000_read_word(state, 505);
  1714. fe->dtv_property_cache.isdbt_partial_reception = val & 1;
  1715. dprintk("dib8000_get_frontend : partial_reception = %d ", fe->dtv_property_cache.isdbt_partial_reception);
  1716. for (i = 0; i < 3; i++) {
  1717. val = dib8000_read_word(state, 493 + i);
  1718. fe->dtv_property_cache.layer[i].segment_count = val & 0x0F;
  1719. dprintk("dib8000_get_frontend : Layer %d segments = %d ", i, fe->dtv_property_cache.layer[i].segment_count);
  1720. val = dib8000_read_word(state, 499 + i);
  1721. fe->dtv_property_cache.layer[i].interleaving = val & 0x3;
  1722. dprintk("dib8000_get_frontend : Layer %d time_intlv = %d ", i, fe->dtv_property_cache.layer[i].interleaving);
  1723. val = dib8000_read_word(state, 481 + i);
  1724. switch (val & 0x7) {
  1725. case 1:
  1726. fe->dtv_property_cache.layer[i].fec = FEC_1_2;
  1727. dprintk("dib8000_get_frontend : Layer %d Code Rate = 1/2 ", i);
  1728. break;
  1729. case 2:
  1730. fe->dtv_property_cache.layer[i].fec = FEC_2_3;
  1731. dprintk("dib8000_get_frontend : Layer %d Code Rate = 2/3 ", i);
  1732. break;
  1733. case 3:
  1734. fe->dtv_property_cache.layer[i].fec = FEC_3_4;
  1735. dprintk("dib8000_get_frontend : Layer %d Code Rate = 3/4 ", i);
  1736. break;
  1737. case 5:
  1738. fe->dtv_property_cache.layer[i].fec = FEC_5_6;
  1739. dprintk("dib8000_get_frontend : Layer %d Code Rate = 5/6 ", i);
  1740. break;
  1741. default:
  1742. fe->dtv_property_cache.layer[i].fec = FEC_7_8;
  1743. dprintk("dib8000_get_frontend : Layer %d Code Rate = 7/8 ", i);
  1744. break;
  1745. }
  1746. val = dib8000_read_word(state, 487 + i);
  1747. switch (val & 0x3) {
  1748. case 0:
  1749. dprintk("dib8000_get_frontend : Layer %d DQPSK ", i);
  1750. fe->dtv_property_cache.layer[i].modulation = DQPSK;
  1751. break;
  1752. case 1:
  1753. fe->dtv_property_cache.layer[i].modulation = QPSK;
  1754. dprintk("dib8000_get_frontend : Layer %d QPSK ", i);
  1755. break;
  1756. case 2:
  1757. fe->dtv_property_cache.layer[i].modulation = QAM_16;
  1758. dprintk("dib8000_get_frontend : Layer %d QAM16 ", i);
  1759. break;
  1760. case 3:
  1761. default:
  1762. dprintk("dib8000_get_frontend : Layer %d QAM64 ", i);
  1763. fe->dtv_property_cache.layer[i].modulation = QAM_64;
  1764. break;
  1765. }
  1766. }
  1767. /* synchronize the cache with the other frontends */
  1768. for (index_frontend = 1; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1769. state->fe[index_frontend]->dtv_property_cache.isdbt_sb_mode = fe->dtv_property_cache.isdbt_sb_mode;
  1770. state->fe[index_frontend]->dtv_property_cache.inversion = fe->dtv_property_cache.inversion;
  1771. state->fe[index_frontend]->dtv_property_cache.transmission_mode = fe->dtv_property_cache.transmission_mode;
  1772. state->fe[index_frontend]->dtv_property_cache.guard_interval = fe->dtv_property_cache.guard_interval;
  1773. state->fe[index_frontend]->dtv_property_cache.isdbt_partial_reception = fe->dtv_property_cache.isdbt_partial_reception;
  1774. for (i = 0; i < 3; i++) {
  1775. state->fe[index_frontend]->dtv_property_cache.layer[i].segment_count = fe->dtv_property_cache.layer[i].segment_count;
  1776. state->fe[index_frontend]->dtv_property_cache.layer[i].interleaving = fe->dtv_property_cache.layer[i].interleaving;
  1777. state->fe[index_frontend]->dtv_property_cache.layer[i].fec = fe->dtv_property_cache.layer[i].fec;
  1778. state->fe[index_frontend]->dtv_property_cache.layer[i].modulation = fe->dtv_property_cache.layer[i].modulation;
  1779. }
  1780. }
  1781. return 0;
  1782. }
  1783. static int dib8000_set_frontend(struct dvb_frontend *fe, struct dvb_frontend_parameters *fep)
  1784. {
  1785. struct dib8000_state *state = fe->demodulator_priv;
  1786. u8 nbr_pending, exit_condition, index_frontend;
  1787. s8 index_frontend_success = -1;
  1788. int time, ret;
  1789. int time_slave = FE_CALLBACK_TIME_NEVER;
  1790. if (state->fe[0]->dtv_property_cache.frequency == 0) {
  1791. dprintk("dib8000: must at least specify frequency ");
  1792. return 0;
  1793. }
  1794. if (state->fe[0]->dtv_property_cache.bandwidth_hz == 0) {
  1795. dprintk("dib8000: no bandwidth specified, set to default ");
  1796. state->fe[0]->dtv_property_cache.bandwidth_hz = 6000000;
  1797. }
  1798. for (index_frontend = 0; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1799. /* synchronization of the cache */
  1800. state->fe[index_frontend]->dtv_property_cache.delivery_system = SYS_ISDBT;
  1801. memcpy(&state->fe[index_frontend]->dtv_property_cache, &fe->dtv_property_cache, sizeof(struct dtv_frontend_properties));
  1802. dib8000_set_output_mode(state->fe[index_frontend], OUTMODE_HIGH_Z);
  1803. if (state->fe[index_frontend]->ops.tuner_ops.set_params)
  1804. state->fe[index_frontend]->ops.tuner_ops.set_params(state->fe[index_frontend], fep);
  1805. dib8000_set_tune_state(state->fe[index_frontend], CT_AGC_START);
  1806. }
  1807. /* start up the AGC */
  1808. do {
  1809. time = dib8000_agc_startup(state->fe[0]);
  1810. for (index_frontend = 1; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1811. time_slave = dib8000_agc_startup(state->fe[index_frontend]);
  1812. if (time == FE_CALLBACK_TIME_NEVER)
  1813. time = time_slave;
  1814. else if ((time_slave != FE_CALLBACK_TIME_NEVER) && (time_slave > time))
  1815. time = time_slave;
  1816. }
  1817. if (time != FE_CALLBACK_TIME_NEVER)
  1818. msleep(time / 10);
  1819. else
  1820. break;
  1821. exit_condition = 1;
  1822. for (index_frontend = 0; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1823. if (dib8000_get_tune_state(state->fe[index_frontend]) != CT_AGC_STOP) {
  1824. exit_condition = 0;
  1825. break;
  1826. }
  1827. }
  1828. } while (exit_condition == 0);
  1829. for (index_frontend = 0; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++)
  1830. dib8000_set_tune_state(state->fe[index_frontend], CT_DEMOD_START);
  1831. if ((state->fe[0]->dtv_property_cache.delivery_system != SYS_ISDBT) ||
  1832. (state->fe[0]->dtv_property_cache.inversion == INVERSION_AUTO) ||
  1833. (state->fe[0]->dtv_property_cache.transmission_mode == TRANSMISSION_MODE_AUTO) ||
  1834. (state->fe[0]->dtv_property_cache.guard_interval == GUARD_INTERVAL_AUTO) ||
  1835. (((state->fe[0]->dtv_property_cache.isdbt_layer_enabled & (1 << 0)) != 0) &&
  1836. (state->fe[0]->dtv_property_cache.layer[0].segment_count != 0xff) &&
  1837. (state->fe[0]->dtv_property_cache.layer[0].segment_count != 0) &&
  1838. ((state->fe[0]->dtv_property_cache.layer[0].modulation == QAM_AUTO) ||
  1839. (state->fe[0]->dtv_property_cache.layer[0].fec == FEC_AUTO))) ||
  1840. (((state->fe[0]->dtv_property_cache.isdbt_layer_enabled & (1 << 1)) != 0) &&
  1841. (state->fe[0]->dtv_property_cache.layer[1].segment_count != 0xff) &&
  1842. (state->fe[0]->dtv_property_cache.layer[1].segment_count != 0) &&
  1843. ((state->fe[0]->dtv_property_cache.layer[1].modulation == QAM_AUTO) ||
  1844. (state->fe[0]->dtv_property_cache.layer[1].fec == FEC_AUTO))) ||
  1845. (((state->fe[0]->dtv_property_cache.isdbt_layer_enabled & (1 << 2)) != 0) &&
  1846. (state->fe[0]->dtv_property_cache.layer[2].segment_count != 0xff) &&
  1847. (state->fe[0]->dtv_property_cache.layer[2].segment_count != 0) &&
  1848. ((state->fe[0]->dtv_property_cache.layer[2].modulation == QAM_AUTO) ||
  1849. (state->fe[0]->dtv_property_cache.layer[2].fec == FEC_AUTO))) ||
  1850. (((state->fe[0]->dtv_property_cache.layer[0].segment_count == 0) ||
  1851. ((state->fe[0]->dtv_property_cache.isdbt_layer_enabled & (1 << 0)) == 0)) &&
  1852. ((state->fe[0]->dtv_property_cache.layer[1].segment_count == 0) ||
  1853. ((state->fe[0]->dtv_property_cache.isdbt_layer_enabled & (2 << 0)) == 0)) &&
  1854. ((state->fe[0]->dtv_property_cache.layer[2].segment_count == 0) || ((state->fe[0]->dtv_property_cache.isdbt_layer_enabled & (3 << 0)) == 0)))) {
  1855. int i = 80000;
  1856. u8 found = 0;
  1857. u8 tune_failed = 0;
  1858. for (index_frontend = 0; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1859. dib8000_set_bandwidth(state->fe[index_frontend], fe->dtv_property_cache.bandwidth_hz / 1000);
  1860. dib8000_autosearch_start(state->fe[index_frontend]);
  1861. }
  1862. do {
  1863. msleep(20);
  1864. nbr_pending = 0;
  1865. exit_condition = 0; /* 0: tune pending; 1: tune failed; 2:tune success */
  1866. for (index_frontend = 0; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1867. if (((tune_failed >> index_frontend) & 0x1) == 0) {
  1868. found = dib8000_autosearch_irq(state->fe[index_frontend]);
  1869. switch (found) {
  1870. case 0: /* tune pending */
  1871. nbr_pending++;
  1872. break;
  1873. case 2:
  1874. dprintk("autosearch succeed on the frontend%i", index_frontend);
  1875. exit_condition = 2;
  1876. index_frontend_success = index_frontend;
  1877. break;
  1878. default:
  1879. dprintk("unhandled autosearch result");
  1880. case 1:
  1881. dprintk("autosearch failed for the frontend%i", index_frontend);
  1882. break;
  1883. }
  1884. }
  1885. }
  1886. /* if all tune are done and no success, exit: tune failed */
  1887. if ((nbr_pending == 0) && (exit_condition == 0))
  1888. exit_condition = 1;
  1889. } while ((exit_condition == 0) && i--);
  1890. if (exit_condition == 1) { /* tune failed */
  1891. dprintk("tune failed");
  1892. return 0;
  1893. }
  1894. dprintk("tune success on frontend%i", index_frontend_success);
  1895. dib8000_get_frontend(fe, fep);
  1896. }
  1897. for (index_frontend = 0, ret = 0; (ret >= 0) && (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++)
  1898. ret = dib8000_tune(state->fe[index_frontend]);
  1899. /* set output mode and diversity input */
  1900. dib8000_set_output_mode(state->fe[0], state->cfg.output_mode);
  1901. for (index_frontend = 1; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1902. dib8000_set_output_mode(state->fe[index_frontend], OUTMODE_DIVERSITY);
  1903. dib8000_set_diversity_in(state->fe[index_frontend-1], 1);
  1904. }
  1905. /* turn off the diversity of the last chip */
  1906. dib8000_set_diversity_in(state->fe[index_frontend-1], 0);
  1907. return ret;
  1908. }
  1909. static u16 dib8000_read_lock(struct dvb_frontend *fe)
  1910. {
  1911. struct dib8000_state *state = fe->demodulator_priv;
  1912. return dib8000_read_word(state, 568);
  1913. }
  1914. static int dib8000_read_status(struct dvb_frontend *fe, fe_status_t * stat)
  1915. {
  1916. struct dib8000_state *state = fe->demodulator_priv;
  1917. u16 lock_slave = 0, lock = dib8000_read_word(state, 568);
  1918. u8 index_frontend;
  1919. for (index_frontend = 1; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++)
  1920. lock_slave |= dib8000_read_lock(state->fe[index_frontend]);
  1921. *stat = 0;
  1922. if (((lock >> 13) & 1) || ((lock_slave >> 13) & 1))
  1923. *stat |= FE_HAS_SIGNAL;
  1924. if (((lock >> 8) & 1) || ((lock_slave >> 8) & 1)) /* Equal */
  1925. *stat |= FE_HAS_CARRIER;
  1926. if ((((lock >> 1) & 0xf) == 0xf) || (((lock_slave >> 1) & 0xf) == 0xf)) /* TMCC_SYNC */
  1927. *stat |= FE_HAS_SYNC;
  1928. if ((((lock >> 12) & 1) || ((lock_slave >> 12) & 1)) && ((lock >> 5) & 7)) /* FEC MPEG */
  1929. *stat |= FE_HAS_LOCK;
  1930. if (((lock >> 12) & 1) || ((lock_slave >> 12) & 1)) {
  1931. lock = dib8000_read_word(state, 554); /* Viterbi Layer A */
  1932. if (lock & 0x01)
  1933. *stat |= FE_HAS_VITERBI;
  1934. lock = dib8000_read_word(state, 555); /* Viterbi Layer B */
  1935. if (lock & 0x01)
  1936. *stat |= FE_HAS_VITERBI;
  1937. lock = dib8000_read_word(state, 556); /* Viterbi Layer C */
  1938. if (lock & 0x01)
  1939. *stat |= FE_HAS_VITERBI;
  1940. }
  1941. return 0;
  1942. }
  1943. static int dib8000_read_ber(struct dvb_frontend *fe, u32 * ber)
  1944. {
  1945. struct dib8000_state *state = fe->demodulator_priv;
  1946. *ber = (dib8000_read_word(state, 560) << 16) | dib8000_read_word(state, 561); // 13 segments
  1947. return 0;
  1948. }
  1949. static int dib8000_read_unc_blocks(struct dvb_frontend *fe, u32 * unc)
  1950. {
  1951. struct dib8000_state *state = fe->demodulator_priv;
  1952. *unc = dib8000_read_word(state, 565); // packet error on 13 seg
  1953. return 0;
  1954. }
  1955. static int dib8000_read_signal_strength(struct dvb_frontend *fe, u16 * strength)
  1956. {
  1957. struct dib8000_state *state = fe->demodulator_priv;
  1958. u8 index_frontend;
  1959. u16 val;
  1960. *strength = 0;
  1961. for (index_frontend = 1; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++) {
  1962. state->fe[index_frontend]->ops.read_signal_strength(state->fe[index_frontend], &val);
  1963. if (val > 65535 - *strength)
  1964. *strength = 65535;
  1965. else
  1966. *strength += val;
  1967. }
  1968. val = 65535 - dib8000_read_word(state, 390);
  1969. if (val > 65535 - *strength)
  1970. *strength = 65535;
  1971. else
  1972. *strength += val;
  1973. return 0;
  1974. }
  1975. static u32 dib8000_get_snr(struct dvb_frontend *fe)
  1976. {
  1977. struct dib8000_state *state = fe->demodulator_priv;
  1978. u32 n, s, exp;
  1979. u16 val;
  1980. val = dib8000_read_word(state, 542);
  1981. n = (val >> 6) & 0xff;
  1982. exp = (val & 0x3f);
  1983. if ((exp & 0x20) != 0)
  1984. exp -= 0x40;
  1985. n <<= exp+16;
  1986. val = dib8000_read_word(state, 543);
  1987. s = (val >> 6) & 0xff;
  1988. exp = (val & 0x3f);
  1989. if ((exp & 0x20) != 0)
  1990. exp -= 0x40;
  1991. s <<= exp+16;
  1992. if (n > 0) {
  1993. u32 t = (s/n) << 16;
  1994. return t + ((s << 16) - n*t) / n;
  1995. }
  1996. return 0xffffffff;
  1997. }
  1998. static int dib8000_read_snr(struct dvb_frontend *fe, u16 * snr)
  1999. {
  2000. struct dib8000_state *state = fe->demodulator_priv;
  2001. u8 index_frontend;
  2002. u32 snr_master;
  2003. snr_master = dib8000_get_snr(fe);
  2004. for (index_frontend = 1; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL); index_frontend++)
  2005. snr_master += dib8000_get_snr(state->fe[index_frontend]);
  2006. if (snr_master != 0) {
  2007. snr_master = 10*intlog10(snr_master>>16);
  2008. *snr = snr_master / ((1 << 24) / 10);
  2009. }
  2010. else
  2011. *snr = 0;
  2012. return 0;
  2013. }
  2014. int dib8000_set_slave_frontend(struct dvb_frontend *fe, struct dvb_frontend *fe_slave)
  2015. {
  2016. struct dib8000_state *state = fe->demodulator_priv;
  2017. u8 index_frontend = 1;
  2018. while ((index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL))
  2019. index_frontend++;
  2020. if (index_frontend < MAX_NUMBER_OF_FRONTENDS) {
  2021. dprintk("set slave fe %p to index %i", fe_slave, index_frontend);
  2022. state->fe[index_frontend] = fe_slave;
  2023. return 0;
  2024. }
  2025. dprintk("too many slave frontend");
  2026. return -ENOMEM;
  2027. }
  2028. EXPORT_SYMBOL(dib8000_set_slave_frontend);
  2029. int dib8000_remove_slave_frontend(struct dvb_frontend *fe)
  2030. {
  2031. struct dib8000_state *state = fe->demodulator_priv;
  2032. u8 index_frontend = 1;
  2033. while ((index_frontend < MAX_NUMBER_OF_FRONTENDS) && (state->fe[index_frontend] != NULL))
  2034. index_frontend++;
  2035. if (index_frontend != 1) {
  2036. dprintk("remove slave fe %p (index %i)", state->fe[index_frontend-1], index_frontend-1);
  2037. state->fe[index_frontend] = NULL;
  2038. return 0;
  2039. }
  2040. dprintk("no frontend to be removed");
  2041. return -ENODEV;
  2042. }
  2043. EXPORT_SYMBOL(dib8000_remove_slave_frontend);
  2044. struct dvb_frontend *dib8000_get_slave_frontend(struct dvb_frontend *fe, int slave_index)
  2045. {
  2046. struct dib8000_state *state = fe->demodulator_priv;
  2047. if (slave_index >= MAX_NUMBER_OF_FRONTENDS)
  2048. return NULL;
  2049. return state->fe[slave_index];
  2050. }
  2051. EXPORT_SYMBOL(dib8000_get_slave_frontend);
  2052. int dib8000_i2c_enumeration(struct i2c_adapter *host, int no_of_demods, u8 default_addr, u8 first_addr)
  2053. {
  2054. int k = 0, ret = 0;
  2055. u8 new_addr = 0;
  2056. struct i2c_device client = {.adap = host };
  2057. client.i2c_write_buffer = kzalloc(4 * sizeof(u8), GFP_KERNEL);
  2058. if (!client.i2c_write_buffer) {
  2059. dprintk("%s: not enough memory", __func__);
  2060. return -ENOMEM;
  2061. }
  2062. client.i2c_read_buffer = kzalloc(4 * sizeof(u8), GFP_KERNEL);
  2063. if (!client.i2c_read_buffer) {
  2064. dprintk("%s: not enough memory", __func__);
  2065. ret = -ENOMEM;
  2066. goto error_memory;
  2067. }
  2068. for (k = no_of_demods - 1; k >= 0; k--) {
  2069. /* designated i2c address */
  2070. new_addr = first_addr + (k << 1);
  2071. client.addr = new_addr;
  2072. dib8000_i2c_write16(&client, 1287, 0x0003); /* sram lead in, rdy */
  2073. if (dib8000_identify(&client) == 0) {
  2074. dib8000_i2c_write16(&client, 1287, 0x0003); /* sram lead in, rdy */
  2075. client.addr = default_addr;
  2076. if (dib8000_identify(&client) == 0) {
  2077. dprintk("#%d: not identified", k);
  2078. ret = -EINVAL;
  2079. goto error;
  2080. }
  2081. }
  2082. /* start diversity to pull_down div_str - just for i2c-enumeration */
  2083. dib8000_i2c_write16(&client, 1286, (1 << 10) | (4 << 6));
  2084. /* set new i2c address and force divstart */
  2085. dib8000_i2c_write16(&client, 1285, (new_addr << 2) | 0x2);
  2086. client.addr = new_addr;
  2087. dib8000_identify(&client);
  2088. dprintk("IC %d initialized (to i2c_address 0x%x)", k, new_addr);
  2089. }
  2090. for (k = 0; k < no_of_demods; k++) {
  2091. new_addr = first_addr | (k << 1);
  2092. client.addr = new_addr;
  2093. // unforce divstr
  2094. dib8000_i2c_write16(&client, 1285, new_addr << 2);
  2095. /* deactivate div - it was just for i2c-enumeration */
  2096. dib8000_i2c_write16(&client, 1286, 0);
  2097. }
  2098. error:
  2099. kfree(client.i2c_read_buffer);
  2100. error_memory:
  2101. kfree(client.i2c_write_buffer);
  2102. return ret;
  2103. }
  2104. EXPORT_SYMBOL(dib8000_i2c_enumeration);
  2105. static int dib8000_fe_get_tune_settings(struct dvb_frontend *fe, struct dvb_frontend_tune_settings *tune)
  2106. {
  2107. tune->min_delay_ms = 1000;
  2108. tune->step_size = 0;
  2109. tune->max_drift = 0;
  2110. return 0;
  2111. }
  2112. static void dib8000_release(struct dvb_frontend *fe)
  2113. {
  2114. struct dib8000_state *st = fe->demodulator_priv;
  2115. u8 index_frontend;
  2116. for (index_frontend = 1; (index_frontend < MAX_NUMBER_OF_FRONTENDS) && (st->fe[index_frontend] != NULL); index_frontend++)
  2117. dvb_frontend_detach(st->fe[index_frontend]);
  2118. dibx000_exit_i2c_master(&st->i2c_master);
  2119. kfree(st->fe[0]);
  2120. kfree(st);
  2121. }
  2122. struct i2c_adapter *dib8000_get_i2c_master(struct dvb_frontend *fe, enum dibx000_i2c_interface intf, int gating)
  2123. {
  2124. struct dib8000_state *st = fe->demodulator_priv;
  2125. return dibx000_get_i2c_adapter(&st->i2c_master, intf, gating);
  2126. }
  2127. EXPORT_SYMBOL(dib8000_get_i2c_master);
  2128. int dib8000_pid_filter_ctrl(struct dvb_frontend *fe, u8 onoff)
  2129. {
  2130. struct dib8000_state *st = fe->demodulator_priv;
  2131. u16 val = dib8000_read_word(st, 299) & 0xffef;
  2132. val |= (onoff & 0x1) << 4;
  2133. dprintk("pid filter enabled %d", onoff);
  2134. return dib8000_write_word(st, 299, val);
  2135. }
  2136. EXPORT_SYMBOL(dib8000_pid_filter_ctrl);
  2137. int dib8000_pid_filter(struct dvb_frontend *fe, u8 id, u16 pid, u8 onoff)
  2138. {
  2139. struct dib8000_state *st = fe->demodulator_priv;
  2140. dprintk("Index %x, PID %d, OnOff %d", id, pid, onoff);
  2141. return dib8000_write_word(st, 305 + id, onoff ? (1 << 13) | pid : 0);
  2142. }
  2143. EXPORT_SYMBOL(dib8000_pid_filter);
  2144. static const struct dvb_frontend_ops dib8000_ops = {
  2145. .info = {
  2146. .name = "DiBcom 8000 ISDB-T",
  2147. .type = FE_OFDM,
  2148. .frequency_min = 44250000,
  2149. .frequency_max = 867250000,
  2150. .frequency_stepsize = 62500,
  2151. .caps = FE_CAN_INVERSION_AUTO |
  2152. FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
  2153. FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO |
  2154. FE_CAN_QPSK | FE_CAN_QAM_16 | FE_CAN_QAM_64 | FE_CAN_QAM_AUTO |
  2155. FE_CAN_TRANSMISSION_MODE_AUTO | FE_CAN_GUARD_INTERVAL_AUTO | FE_CAN_RECOVER | FE_CAN_HIERARCHY_AUTO,
  2156. },
  2157. .release = dib8000_release,
  2158. .init = dib8000_wakeup,
  2159. .sleep = dib8000_sleep,
  2160. .set_frontend = dib8000_set_frontend,
  2161. .get_tune_settings = dib8000_fe_get_tune_settings,
  2162. .get_frontend = dib8000_get_frontend,
  2163. .read_status = dib8000_read_status,
  2164. .read_ber = dib8000_read_ber,
  2165. .read_signal_strength = dib8000_read_signal_strength,
  2166. .read_snr = dib8000_read_snr,
  2167. .read_ucblocks = dib8000_read_unc_blocks,
  2168. };
  2169. struct dvb_frontend *dib8000_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr, struct dib8000_config *cfg)
  2170. {
  2171. struct dvb_frontend *fe;
  2172. struct dib8000_state *state;
  2173. dprintk("dib8000_attach");
  2174. state = kzalloc(sizeof(struct dib8000_state), GFP_KERNEL);
  2175. if (state == NULL)
  2176. return NULL;
  2177. fe = kzalloc(sizeof(struct dvb_frontend), GFP_KERNEL);
  2178. if (fe == NULL)
  2179. goto error;
  2180. memcpy(&state->cfg, cfg, sizeof(struct dib8000_config));
  2181. state->i2c.adap = i2c_adap;
  2182. state->i2c.addr = i2c_addr;
  2183. state->i2c.i2c_write_buffer = state->i2c_write_buffer;
  2184. state->i2c.i2c_read_buffer = state->i2c_read_buffer;
  2185. state->gpio_val = cfg->gpio_val;
  2186. state->gpio_dir = cfg->gpio_dir;
  2187. /* Ensure the output mode remains at the previous default if it's
  2188. * not specifically set by the caller.
  2189. */
  2190. if ((state->cfg.output_mode != OUTMODE_MPEG2_SERIAL) && (state->cfg.output_mode != OUTMODE_MPEG2_PAR_GATED_CLK))
  2191. state->cfg.output_mode = OUTMODE_MPEG2_FIFO;
  2192. state->fe[0] = fe;
  2193. fe->demodulator_priv = state;
  2194. memcpy(&state->fe[0]->ops, &dib8000_ops, sizeof(struct dvb_frontend_ops));
  2195. state->timf_default = cfg->pll->timf;
  2196. if (dib8000_identify(&state->i2c) == 0)
  2197. goto error;
  2198. dibx000_init_i2c_master(&state->i2c_master, DIB8000, state->i2c.adap, state->i2c.addr);
  2199. dib8000_reset(fe);
  2200. dib8000_write_word(state, 285, (dib8000_read_word(state, 285) & ~0x60) | (3 << 5)); /* ber_rs_len = 3 */
  2201. return fe;
  2202. error:
  2203. kfree(state);
  2204. return NULL;
  2205. }
  2206. EXPORT_SYMBOL(dib8000_attach);
  2207. MODULE_AUTHOR("Olivier Grenie <Olivier.Grenie@dibcom.fr, " "Patrick Boettcher <pboettcher@dibcom.fr>");
  2208. MODULE_DESCRIPTION("Driver for the DiBcom 8000 ISDB-T demodulator");
  2209. MODULE_LICENSE("GPL");