stv0910_regs.h 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * @DVB-S/DVB-S2 STMicroelectronics STV0900 register definitions
  4. * Author Manfred Voelkel, August 2013
  5. * (c) 2013 Digital Devices GmbH Germany. All rights reserved
  6. *
  7. * =======================================================================
  8. * Registers Declaration (Internal ST, All Applications )
  9. * -------------------------
  10. * Each register (RSTV0910__XXXXX) is defined by its address (2 bytes).
  11. * Each field (FSTV0910__XXXXX) is defined as follow:
  12. * [register address -- 2bytes][field offset -- 4 bits][unused -- 3 bits]
  13. * [field sign -- 1 bit][field mask -- 1byte]
  14. * =======================================================================
  15. */
  16. /* MID */
  17. #define RSTV0910_MID 0xf100
  18. #define FSTV0910_MCHIP_IDENT 0xf10040f0
  19. #define FSTV0910_MRELEASE 0xf100000f
  20. /* DID */
  21. #define RSTV0910_DID 0xf101
  22. #define FSTV0910_DEVICE_ID 0xf10100ff
  23. /* DACR1 */
  24. #define RSTV0910_DACR1 0xf113
  25. #define FSTV0910_DAC_MODE 0xf11350e0
  26. #define FSTV0910_DAC_VALUE1 0xf113000f
  27. /* DACR2 */
  28. #define RSTV0910_DACR2 0xf114
  29. #define FSTV0910_DAC_VALUE0 0xf11400ff
  30. /* PADCFG */
  31. #define RSTV0910_PADCFG 0xf11a
  32. #define FSTV0910_AGCRF2_OPD 0xf11a3008
  33. #define FSTV0910_AGCRF2_XOR 0xf11a2004
  34. #define FSTV0910_AGCRF1_OPD 0xf11a1002
  35. #define FSTV0910_AGCRF1_XOR 0xf11a0001
  36. /* OUTCFG2 */
  37. #define RSTV0910_OUTCFG2 0xf11b
  38. #define FSTV0910_TS2_ERROR_XOR 0xf11b7080
  39. #define FSTV0910_TS2_DPN_XOR 0xf11b6040
  40. #define FSTV0910_TS2_STROUT_XOR 0xf11b5020
  41. #define FSTV0910_TS2_CLOCKOUT_XOR 0xf11b4010
  42. #define FSTV0910_TS1_ERROR_XOR 0xf11b3008
  43. #define FSTV0910_TS1_DPN_XOR 0xf11b2004
  44. #define FSTV0910_TS1_STROUT_XOR 0xf11b1002
  45. #define FSTV0910_TS1_CLOCKOUT_XOR 0xf11b0001
  46. /* OUTCFG */
  47. #define RSTV0910_OUTCFG 0xf11c
  48. #define FSTV0910_TS2_OUTSER_HZ 0xf11c5020
  49. #define FSTV0910_TS1_OUTSER_HZ 0xf11c4010
  50. #define FSTV0910_TS2_OUTPAR_HZ 0xf11c3008
  51. #define FSTV0910_TS1_OUTPAR_HZ 0xf11c2004
  52. #define FSTV0910_TS_SERDATA0 0xf11c1002
  53. /* IRQSTATUS3 */
  54. #define RSTV0910_IRQSTATUS3 0xf120
  55. #define FSTV0910_SPLL_LOCK 0xf1205020
  56. #define FSTV0910_SSTREAM_LCK_1 0xf1204010
  57. #define FSTV0910_SSTREAM_LCK_2 0xf1203008
  58. #define FSTV0910_SDVBS1_PRF_2 0xf1201002
  59. #define FSTV0910_SDVBS1_PRF_1 0xf1200001
  60. /* IRQSTATUS2 */
  61. #define RSTV0910_IRQSTATUS2 0xf121
  62. #define FSTV0910_SSPY_ENDSIM_1 0xf1217080
  63. #define FSTV0910_SSPY_ENDSIM_2 0xf1216040
  64. #define FSTV0910_SPKTDEL_ERROR_2 0xf1214010
  65. #define FSTV0910_SPKTDEL_LOCKB_2 0xf1213008
  66. #define FSTV0910_SPKTDEL_LOCK_2 0xf1212004
  67. #define FSTV0910_SPKTDEL_ERROR_1 0xf1211002
  68. #define FSTV0910_SPKTDEL_LOCKB_1 0xf1210001
  69. /* IRQSTATUS1 */
  70. #define RSTV0910_IRQSTATUS1 0xf122
  71. #define FSTV0910_SPKTDEL_LOCK_1 0xf1227080
  72. #define FSTV0910_SFEC_LOCKB_2 0xf1226040
  73. #define FSTV0910_SFEC_LOCK_2 0xf1225020
  74. #define FSTV0910_SFEC_LOCKB_1 0xf1224010
  75. #define FSTV0910_SFEC_LOCK_1 0xf1223008
  76. #define FSTV0910_SDEMOD_LOCKB_2 0xf1222004
  77. #define FSTV0910_SDEMOD_LOCK_2 0xf1221002
  78. #define FSTV0910_SDEMOD_IRQ_2 0xf1220001
  79. /* IRQSTATUS0 */
  80. #define RSTV0910_IRQSTATUS0 0xf123
  81. #define FSTV0910_SDEMOD_LOCKB_1 0xf1237080
  82. #define FSTV0910_SDEMOD_LOCK_1 0xf1236040
  83. #define FSTV0910_SDEMOD_IRQ_1 0xf1235020
  84. #define FSTV0910_SBCH_ERRFLAG 0xf1234010
  85. #define FSTV0910_SDISEQC2_IRQ 0xf1232004
  86. #define FSTV0910_SDISEQC1_IRQ 0xf1230001
  87. /* IRQMASK3 */
  88. #define RSTV0910_IRQMASK3 0xf124
  89. #define FSTV0910_MPLL_LOCK 0xf1245020
  90. #define FSTV0910_MSTREAM_LCK_1 0xf1244010
  91. #define FSTV0910_MSTREAM_LCK_2 0xf1243008
  92. #define FSTV0910_MDVBS1_PRF_2 0xf1241002
  93. #define FSTV0910_MDVBS1_PRF_1 0xf1240001
  94. /* IRQMASK2 */
  95. #define RSTV0910_IRQMASK2 0xf125
  96. #define FSTV0910_MSPY_ENDSIM_1 0xf1257080
  97. #define FSTV0910_MSPY_ENDSIM_2 0xf1256040
  98. #define FSTV0910_MPKTDEL_ERROR_2 0xf1254010
  99. #define FSTV0910_MPKTDEL_LOCKB_2 0xf1253008
  100. #define FSTV0910_MPKTDEL_LOCK_2 0xf1252004
  101. #define FSTV0910_MPKTDEL_ERROR_1 0xf1251002
  102. #define FSTV0910_MPKTDEL_LOCKB_1 0xf1250001
  103. /* IRQMASK1 */
  104. #define RSTV0910_IRQMASK1 0xf126
  105. #define FSTV0910_MPKTDEL_LOCK_1 0xf1267080
  106. #define FSTV0910_MFEC_LOCKB_2 0xf1266040
  107. #define FSTV0910_MFEC_LOCK_2 0xf1265020
  108. #define FSTV0910_MFEC_LOCKB_1 0xf1264010
  109. #define FSTV0910_MFEC_LOCK_1 0xf1263008
  110. #define FSTV0910_MDEMOD_LOCKB_2 0xf1262004
  111. #define FSTV0910_MDEMOD_LOCK_2 0xf1261002
  112. #define FSTV0910_MDEMOD_IRQ_2 0xf1260001
  113. /* IRQMASK0 */
  114. #define RSTV0910_IRQMASK0 0xf127
  115. #define FSTV0910_MDEMOD_LOCKB_1 0xf1277080
  116. #define FSTV0910_MDEMOD_LOCK_1 0xf1276040
  117. #define FSTV0910_MDEMOD_IRQ_1 0xf1275020
  118. #define FSTV0910_MBCH_ERRFLAG 0xf1274010
  119. #define FSTV0910_MDISEQC2_IRQ 0xf1272004
  120. #define FSTV0910_MDISEQC1_IRQ 0xf1270001
  121. /* I2CCFG */
  122. #define RSTV0910_I2CCFG 0xf129
  123. #define FSTV0910_I2C_FASTMODE 0xf1293008
  124. #define FSTV0910_I2CADDR_INC 0xf1290003
  125. /* P1_I2CRPT */
  126. #define RSTV0910_P1_I2CRPT 0xf12a
  127. #define FSTV0910_P1_I2CT_ON 0xf12a7080
  128. #define FSTV0910_P1_ENARPT_LEVEL 0xf12a4070
  129. #define FSTV0910_P1_SCLT_DELAY 0xf12a3008
  130. #define FSTV0910_P1_STOP_ENABLE 0xf12a2004
  131. #define FSTV0910_P1_STOP_SDAT2SDA 0xf12a1002
  132. /* P2_I2CRPT */
  133. #define RSTV0910_P2_I2CRPT 0xf12b
  134. #define FSTV0910_P2_I2CT_ON 0xf12b7080
  135. #define FSTV0910_P2_ENARPT_LEVEL 0xf12b4070
  136. #define FSTV0910_P2_SCLT_DELAY 0xf12b3008
  137. #define FSTV0910_P2_STOP_ENABLE 0xf12b2004
  138. #define FSTV0910_P2_STOP_SDAT2SDA 0xf12b1002
  139. /* GPIO0CFG */
  140. #define RSTV0910_GPIO0CFG 0xf140
  141. #define FSTV0910_GPIO0_OPD 0xf1407080
  142. #define FSTV0910_GPIO0_CONFIG 0xf140107e
  143. #define FSTV0910_GPIO0_XOR 0xf1400001
  144. /* GPIO1CFG */
  145. #define RSTV0910_GPIO1CFG 0xf141
  146. #define FSTV0910_GPIO1_OPD 0xf1417080
  147. #define FSTV0910_GPIO1_CONFIG 0xf141107e
  148. #define FSTV0910_GPIO1_XOR 0xf1410001
  149. /* GPIO2CFG */
  150. #define RSTV0910_GPIO2CFG 0xf142
  151. #define FSTV0910_GPIO2_OPD 0xf1427080
  152. #define FSTV0910_GPIO2_CONFIG 0xf142107e
  153. #define FSTV0910_GPIO2_XOR 0xf1420001
  154. /* GPIO3CFG */
  155. #define RSTV0910_GPIO3CFG 0xf143
  156. #define FSTV0910_GPIO3_OPD 0xf1437080
  157. #define FSTV0910_GPIO3_CONFIG 0xf143107e
  158. #define FSTV0910_GPIO3_XOR 0xf1430001
  159. /* GPIO4CFG */
  160. #define RSTV0910_GPIO4CFG 0xf144
  161. #define FSTV0910_GPIO4_OPD 0xf1447080
  162. #define FSTV0910_GPIO4_CONFIG 0xf144107e
  163. #define FSTV0910_GPIO4_XOR 0xf1440001
  164. /* GPIO5CFG */
  165. #define RSTV0910_GPIO5CFG 0xf145
  166. #define FSTV0910_GPIO5_OPD 0xf1457080
  167. #define FSTV0910_GPIO5_CONFIG 0xf145107e
  168. #define FSTV0910_GPIO5_XOR 0xf1450001
  169. /* GPIO6CFG */
  170. #define RSTV0910_GPIO6CFG 0xf146
  171. #define FSTV0910_GPIO6_OPD 0xf1467080
  172. #define FSTV0910_GPIO6_CONFIG 0xf146107e
  173. #define FSTV0910_GPIO6_XOR 0xf1460001
  174. /* GPIO7CFG */
  175. #define RSTV0910_GPIO7CFG 0xf147
  176. #define FSTV0910_GPIO7_OPD 0xf1477080
  177. #define FSTV0910_GPIO7_CONFIG 0xf147107e
  178. #define FSTV0910_GPIO7_XOR 0xf1470001
  179. /* GPIO8CFG */
  180. #define RSTV0910_GPIO8CFG 0xf148
  181. #define FSTV0910_GPIO8_OPD 0xf1487080
  182. #define FSTV0910_GPIO8_CONFIG 0xf148107e
  183. #define FSTV0910_GPIO8_XOR 0xf1480001
  184. /* GPIO9CFG */
  185. #define RSTV0910_GPIO9CFG 0xf149
  186. #define FSTV0910_GPIO9_OPD 0xf1497080
  187. #define FSTV0910_GPIO9_CONFIG 0xf149107e
  188. #define FSTV0910_GPIO9_XOR 0xf1490001
  189. /* GPIO10CFG */
  190. #define RSTV0910_GPIO10CFG 0xf14a
  191. #define FSTV0910_GPIO10_OPD 0xf14a7080
  192. #define FSTV0910_GPIO10_CONFIG 0xf14a107e
  193. #define FSTV0910_GPIO10_XOR 0xf14a0001
  194. /* GPIO11CFG */
  195. #define RSTV0910_GPIO11CFG 0xf14b
  196. #define FSTV0910_GPIO11_OPD 0xf14b7080
  197. #define FSTV0910_GPIO11_CONFIG 0xf14b107e
  198. #define FSTV0910_GPIO11_XOR 0xf14b0001
  199. /* GPIO12CFG */
  200. #define RSTV0910_GPIO12CFG 0xf14c
  201. #define FSTV0910_GPIO12_OPD 0xf14c7080
  202. #define FSTV0910_GPIO12_CONFIG 0xf14c107e
  203. #define FSTV0910_GPIO12_XOR 0xf14c0001
  204. /* GPIO13CFG */
  205. #define RSTV0910_GPIO13CFG 0xf14d
  206. #define FSTV0910_GPIO13_OPD 0xf14d7080
  207. #define FSTV0910_GPIO13_CONFIG 0xf14d107e
  208. #define FSTV0910_GPIO13_XOR 0xf14d0001
  209. /* GPIO14CFG */
  210. #define RSTV0910_GPIO14CFG 0xf14e
  211. #define FSTV0910_GPIO14_OPD 0xf14e7080
  212. #define FSTV0910_GPIO14_CONFIG 0xf14e107e
  213. #define FSTV0910_GPIO14_XOR 0xf14e0001
  214. /* GPIO15CFG */
  215. #define RSTV0910_GPIO15CFG 0xf14f
  216. #define FSTV0910_GPIO15_OPD 0xf14f7080
  217. #define FSTV0910_GPIO15_CONFIG 0xf14f107e
  218. #define FSTV0910_GPIO15_XOR 0xf14f0001
  219. /* GPIO16CFG */
  220. #define RSTV0910_GPIO16CFG 0xf150
  221. #define FSTV0910_GPIO16_OPD 0xf1507080
  222. #define FSTV0910_GPIO16_CONFIG 0xf150107e
  223. #define FSTV0910_GPIO16_XOR 0xf1500001
  224. /* GPIO17CFG */
  225. #define RSTV0910_GPIO17CFG 0xf151
  226. #define FSTV0910_GPIO17_OPD 0xf1517080
  227. #define FSTV0910_GPIO17_CONFIG 0xf151107e
  228. #define FSTV0910_GPIO17_XOR 0xf1510001
  229. /* GPIO18CFG */
  230. #define RSTV0910_GPIO18CFG 0xf152
  231. #define FSTV0910_GPIO18_OPD 0xf1527080
  232. #define FSTV0910_GPIO18_CONFIG 0xf152107e
  233. #define FSTV0910_GPIO18_XOR 0xf1520001
  234. /* GPIO19CFG */
  235. #define RSTV0910_GPIO19CFG 0xf153
  236. #define FSTV0910_GPIO19_OPD 0xf1537080
  237. #define FSTV0910_GPIO19_CONFIG 0xf153107e
  238. #define FSTV0910_GPIO19_XOR 0xf1530001
  239. /* GPIO20CFG */
  240. #define RSTV0910_GPIO20CFG 0xf154
  241. #define FSTV0910_GPIO20_OPD 0xf1547080
  242. #define FSTV0910_GPIO20_CONFIG 0xf154107e
  243. #define FSTV0910_GPIO20_XOR 0xf1540001
  244. /* GPIO21CFG */
  245. #define RSTV0910_GPIO21CFG 0xf155
  246. #define FSTV0910_GPIO21_OPD 0xf1557080
  247. #define FSTV0910_GPIO21_CONFIG 0xf155107e
  248. #define FSTV0910_GPIO21_XOR 0xf1550001
  249. /* GPIO22CFG */
  250. #define RSTV0910_GPIO22CFG 0xf156
  251. #define FSTV0910_GPIO22_OPD 0xf1567080
  252. #define FSTV0910_GPIO22_CONFIG 0xf156107e
  253. #define FSTV0910_GPIO22_XOR 0xf1560001
  254. /* STRSTATUS1 */
  255. #define RSTV0910_STRSTATUS1 0xf16a
  256. #define FSTV0910_STRSTATUS_SEL2 0xf16a40f0
  257. #define FSTV0910_STRSTATUS_SEL1 0xf16a000f
  258. /* STRSTATUS2 */
  259. #define RSTV0910_STRSTATUS2 0xf16b
  260. #define FSTV0910_STRSTATUS_SEL4 0xf16b40f0
  261. #define FSTV0910_STRSTATUS_SEL3 0xf16b000f
  262. /* STRSTATUS3 */
  263. #define RSTV0910_STRSTATUS3 0xf16c
  264. #define FSTV0910_STRSTATUS_SEL6 0xf16c40f0
  265. #define FSTV0910_STRSTATUS_SEL5 0xf16c000f
  266. /* FSKTFC2 */
  267. #define RSTV0910_FSKTFC2 0xf170
  268. #define FSTV0910_FSKT_KMOD 0xf17020fc
  269. #define FSTV0910_FSKT_CAR2 0xf1700003
  270. /* FSKTFC1 */
  271. #define RSTV0910_FSKTFC1 0xf171
  272. #define FSTV0910_FSKT_CAR1 0xf17100ff
  273. /* FSKTFC0 */
  274. #define RSTV0910_FSKTFC0 0xf172
  275. #define FSTV0910_FSKT_CAR0 0xf17200ff
  276. /* FSKTDELTAF1 */
  277. #define RSTV0910_FSKTDELTAF1 0xf173
  278. #define FSTV0910_FSKT_DELTAF1 0xf173000f
  279. /* FSKTDELTAF0 */
  280. #define RSTV0910_FSKTDELTAF0 0xf174
  281. #define FSTV0910_FSKT_DELTAF0 0xf17400ff
  282. /* FSKTCTRL */
  283. #define RSTV0910_FSKTCTRL 0xf175
  284. #define FSTV0910_FSKT_PINSEL 0xf1757080
  285. #define FSTV0910_FSKT_EN_SGN 0xf1756040
  286. #define FSTV0910_FSKT_MOD_SGN 0xf1755020
  287. #define FSTV0910_FSKT_MOD_EN 0xf175201c
  288. #define FSTV0910_FSKT_DACMODE 0xf1750003
  289. /* FSKRFC2 */
  290. #define RSTV0910_FSKRFC2 0xf176
  291. #define FSTV0910_FSKR_DETSGN 0xf1766040
  292. #define FSTV0910_FSKR_OUTSGN 0xf1765020
  293. #define FSTV0910_FSKR_KAGC 0xf176201c
  294. #define FSTV0910_FSKR_CAR2 0xf1760003
  295. /* FSKRFC1 */
  296. #define RSTV0910_FSKRFC1 0xf177
  297. #define FSTV0910_FSKR_CAR1 0xf17700ff
  298. /* FSKRFC0 */
  299. #define RSTV0910_FSKRFC0 0xf178
  300. #define FSTV0910_FSKR_CAR0 0xf17800ff
  301. /* FSKRK1 */
  302. #define RSTV0910_FSKRK1 0xf179
  303. #define FSTV0910_FSKR_K1_EXP 0xf17950e0
  304. #define FSTV0910_FSKR_K1_MANT 0xf179001f
  305. /* FSKRK2 */
  306. #define RSTV0910_FSKRK2 0xf17a
  307. #define FSTV0910_FSKR_K2_EXP 0xf17a50e0
  308. #define FSTV0910_FSKR_K2_MANT 0xf17a001f
  309. /* FSKRAGCR */
  310. #define RSTV0910_FSKRAGCR 0xf17b
  311. #define FSTV0910_FSKR_OUTCTL 0xf17b60c0
  312. #define FSTV0910_FSKR_AGC_REF 0xf17b003f
  313. /* FSKRAGC */
  314. #define RSTV0910_FSKRAGC 0xf17c
  315. #define FSTV0910_FSKR_AGC_ACCU 0xf17c00ff
  316. /* FSKRALPHA */
  317. #define RSTV0910_FSKRALPHA 0xf17d
  318. #define FSTV0910_FSKR_ALPHA_EXP 0xf17d201c
  319. #define FSTV0910_FSKR_ALPHA_M 0xf17d0003
  320. /* FSKRPLTH1 */
  321. #define RSTV0910_FSKRPLTH1 0xf17e
  322. #define FSTV0910_FSKR_BETA 0xf17e40f0
  323. #define FSTV0910_FSKR_PLL_TRESH1 0xf17e000f
  324. /* FSKRPLTH0 */
  325. #define RSTV0910_FSKRPLTH0 0xf17f
  326. #define FSTV0910_FSKR_PLL_TRESH0 0xf17f00ff
  327. /* FSKRDF1 */
  328. #define RSTV0910_FSKRDF1 0xf180
  329. #define FSTV0910_FSKR_OUT 0xf1807080
  330. #define FSTV0910_FSKR_STATE 0xf1805060
  331. #define FSTV0910_FSKR_DELTAF1 0xf180001f
  332. /* FSKRDF0 */
  333. #define RSTV0910_FSKRDF0 0xf181
  334. #define FSTV0910_FSKR_DELTAF0 0xf18100ff
  335. /* FSKRSTEPP */
  336. #define RSTV0910_FSKRSTEPP 0xf182
  337. #define FSTV0910_FSKR_STEP_PLUS 0xf18200ff
  338. /* FSKRSTEPM */
  339. #define RSTV0910_FSKRSTEPM 0xf183
  340. #define FSTV0910_FSKR_STEP_MINUS 0xf18300ff
  341. /* FSKRDET1 */
  342. #define RSTV0910_FSKRDET1 0xf184
  343. #define FSTV0910_FSKR_DETECT 0xf1847080
  344. #define FSTV0910_FSKR_CARDET_ACCU1 0xf184000f
  345. /* FSKRDET0 */
  346. #define RSTV0910_FSKRDET0 0xf185
  347. #define FSTV0910_FSKR_CARDET_ACCU0 0xf18500ff
  348. /* FSKRDTH1 */
  349. #define RSTV0910_FSKRDTH1 0xf186
  350. #define FSTV0910_FSKR_CARLOSS_THRESH1 0xf18640f0
  351. #define FSTV0910_FSKR_CARDET_THRESH1 0xf186000f
  352. /* FSKRDTH0 */
  353. #define RSTV0910_FSKRDTH0 0xf187
  354. #define FSTV0910_FSKR_CARDET_THRESH0 0xf18700ff
  355. /* FSKRLOSS */
  356. #define RSTV0910_FSKRLOSS 0xf188
  357. #define FSTV0910_FSKR_CARLOSS_THRESH0 0xf18800ff
  358. /* NCOARSE */
  359. #define RSTV0910_NCOARSE 0xf1b3
  360. #define FSTV0910_CP 0xf1b330f8
  361. #define FSTV0910_IDF 0xf1b30007
  362. /* NCOARSE1 */
  363. #define RSTV0910_NCOARSE1 0xf1b4
  364. #define FSTV0910_N_DIV 0xf1b400ff
  365. /* NCOARSE2 */
  366. #define RSTV0910_NCOARSE2 0xf1b5
  367. #define FSTV0910_ODF 0xf1b5003f
  368. /* SYNTCTRL */
  369. #define RSTV0910_SYNTCTRL 0xf1b6
  370. #define FSTV0910_STANDBY 0xf1b67080
  371. #define FSTV0910_BYPASSPLLCORE 0xf1b66040
  372. #define FSTV0910_STOP_PLL 0xf1b63008
  373. #define FSTV0910_OSCI_E 0xf1b61002
  374. /* FILTCTRL */
  375. #define RSTV0910_FILTCTRL 0xf1b7
  376. #define FSTV0910_INV_CLKFSK 0xf1b71002
  377. #define FSTV0910_BYPASS_APPLI 0xf1b70001
  378. /* PLLSTAT */
  379. #define RSTV0910_PLLSTAT 0xf1b8
  380. #define FSTV0910_PLLLOCK 0xf1b80001
  381. /* STOPCLK1 */
  382. #define RSTV0910_STOPCLK1 0xf1c2
  383. #define FSTV0910_INV_CLKADCI2 0xf1c22004
  384. #define FSTV0910_INV_CLKADCI1 0xf1c20001
  385. /* STOPCLK2 */
  386. #define RSTV0910_STOPCLK2 0xf1c3
  387. #define FSTV0910_STOP_DVBS2FEC2 0xf1c35020
  388. #define FSTV0910_STOP_DVBS2FEC 0xf1c34010
  389. #define FSTV0910_STOP_DVBS1FEC2 0xf1c33008
  390. #define FSTV0910_STOP_DVBS1FEC 0xf1c32004
  391. #define FSTV0910_STOP_DEMOD2 0xf1c31002
  392. #define FSTV0910_STOP_DEMOD 0xf1c30001
  393. /* PREGCTL */
  394. #define RSTV0910_PREGCTL 0xf1c8
  395. #define FSTV0910_REG3V3TO2V5_POFF 0xf1c87080
  396. /* TSTTNR0 */
  397. #define RSTV0910_TSTTNR0 0xf1df
  398. #define FSTV0910_FSK_PON 0xf1df2004
  399. /* TSTTNR1 */
  400. #define RSTV0910_TSTTNR1 0xf1e0
  401. #define FSTV0910_ADC1_PON 0xf1e01002
  402. /* TSTTNR2 */
  403. #define RSTV0910_TSTTNR2 0xf1e1
  404. #define FSTV0910_I2C_DISEQC_PON 0xf1e15020
  405. #define FSTV0910_DISEQC_CLKDIV 0xf1e1000f
  406. /* TSTTNR3 */
  407. #define RSTV0910_TSTTNR3 0xf1e2
  408. #define FSTV0910_ADC2_PON 0xf1e21002
  409. /* P2_IQCONST */
  410. #define RSTV0910_P2_IQCONST 0xf200
  411. #define FSTV0910_P2_CONSTEL_SELECT 0xf2005060
  412. #define FSTV0910_P2_IQSYMB_SEL 0xf200001f
  413. /* P2_NOSCFG */
  414. #define RSTV0910_P2_NOSCFG 0xf201
  415. #define FSTV0910_P2_DUMMYPL_NOSDATA 0xf2015020
  416. #define FSTV0910_P2_NOSPLH_BETA 0xf2013018
  417. #define FSTV0910_P2_NOSDATA_BETA 0xf2010007
  418. /* P2_ISYMB */
  419. #define RSTV0910_P2_ISYMB 0xf202
  420. #define FSTV0910_P2_I_SYMBOL 0xf20201ff
  421. /* P2_QSYMB */
  422. #define RSTV0910_P2_QSYMB 0xf203
  423. #define FSTV0910_P2_Q_SYMBOL 0xf20301ff
  424. /* P2_AGC1CFG */
  425. #define RSTV0910_P2_AGC1CFG 0xf204
  426. #define FSTV0910_P2_DC_FROZEN 0xf2047080
  427. #define FSTV0910_P2_DC_CORRECT 0xf2046040
  428. #define FSTV0910_P2_AMM_FROZEN 0xf2045020
  429. #define FSTV0910_P2_AMM_CORRECT 0xf2044010
  430. #define FSTV0910_P2_QUAD_FROZEN 0xf2043008
  431. #define FSTV0910_P2_QUAD_CORRECT 0xf2042004
  432. /* P2_AGC1CN */
  433. #define RSTV0910_P2_AGC1CN 0xf206
  434. #define FSTV0910_P2_AGC1_LOCKED 0xf2067080
  435. #define FSTV0910_P2_AGC1_MINPOWER 0xf2064010
  436. #define FSTV0910_P2_AGCOUT_FAST 0xf2063008
  437. #define FSTV0910_P2_AGCIQ_BETA 0xf2060007
  438. /* P2_AGC1REF */
  439. #define RSTV0910_P2_AGC1REF 0xf207
  440. #define FSTV0910_P2_AGCIQ_REF 0xf20700ff
  441. /* P2_IDCCOMP */
  442. #define RSTV0910_P2_IDCCOMP 0xf208
  443. #define FSTV0910_P2_IAVERAGE_ADJ 0xf20801ff
  444. /* P2_QDCCOMP */
  445. #define RSTV0910_P2_QDCCOMP 0xf209
  446. #define FSTV0910_P2_QAVERAGE_ADJ 0xf20901ff
  447. /* P2_POWERI */
  448. #define RSTV0910_P2_POWERI 0xf20a
  449. #define FSTV0910_P2_POWER_I 0xf20a00ff
  450. /* P2_POWERQ */
  451. #define RSTV0910_P2_POWERQ 0xf20b
  452. #define FSTV0910_P2_POWER_Q 0xf20b00ff
  453. /* P2_AGC1AMM */
  454. #define RSTV0910_P2_AGC1AMM 0xf20c
  455. #define FSTV0910_P2_AMM_VALUE 0xf20c00ff
  456. /* P2_AGC1QUAD */
  457. #define RSTV0910_P2_AGC1QUAD 0xf20d
  458. #define FSTV0910_P2_QUAD_VALUE 0xf20d01ff
  459. /* P2_AGCIQIN1 */
  460. #define RSTV0910_P2_AGCIQIN1 0xf20e
  461. #define FSTV0910_P2_AGCIQ_VALUE1 0xf20e00ff
  462. /* P2_AGCIQIN0 */
  463. #define RSTV0910_P2_AGCIQIN0 0xf20f
  464. #define FSTV0910_P2_AGCIQ_VALUE0 0xf20f00ff
  465. /* P2_DEMOD */
  466. #define RSTV0910_P2_DEMOD 0xf210
  467. #define FSTV0910_P2_MANUALS2_ROLLOFF 0xf2107080
  468. #define FSTV0910_P2_SPECINV_CONTROL 0xf2104030
  469. #define FSTV0910_P2_MANUALSX_ROLLOFF 0xf2102004
  470. #define FSTV0910_P2_ROLLOFF_CONTROL 0xf2100003
  471. /* P2_DMDMODCOD */
  472. #define RSTV0910_P2_DMDMODCOD 0xf211
  473. #define FSTV0910_P2_MANUAL_MODCOD 0xf2117080
  474. #define FSTV0910_P2_DEMOD_MODCOD 0xf211207c
  475. #define FSTV0910_P2_DEMOD_TYPE 0xf2110003
  476. /* P2_DSTATUS */
  477. #define RSTV0910_P2_DSTATUS 0xf212
  478. #define FSTV0910_P2_CAR_LOCK 0xf2127080
  479. #define FSTV0910_P2_TMGLOCK_QUALITY 0xf2125060
  480. #define FSTV0910_P2_LOCK_DEFINITIF 0xf2123008
  481. #define FSTV0910_P2_OVADC_DETECT 0xf2120001
  482. /* P2_DSTATUS2 */
  483. #define RSTV0910_P2_DSTATUS2 0xf213
  484. #define FSTV0910_P2_DEMOD_DELOCK 0xf2137080
  485. #define FSTV0910_P2_MODCODRQ_SYNCTAG 0xf2135020
  486. #define FSTV0910_P2_POLYPH_SATEVENT 0xf2134010
  487. #define FSTV0910_P2_AGC1_NOSIGNALACK 0xf2133008
  488. #define FSTV0910_P2_AGC2_OVERFLOW 0xf2132004
  489. #define FSTV0910_P2_CFR_OVERFLOW 0xf2131002
  490. #define FSTV0910_P2_GAMMA_OVERUNDER 0xf2130001
  491. /* P2_DMDCFGMD */
  492. #define RSTV0910_P2_DMDCFGMD 0xf214
  493. #define FSTV0910_P2_DVBS2_ENABLE 0xf2147080
  494. #define FSTV0910_P2_DVBS1_ENABLE 0xf2146040
  495. #define FSTV0910_P2_SCAN_ENABLE 0xf2144010
  496. #define FSTV0910_P2_CFR_AUTOSCAN 0xf2143008
  497. #define FSTV0910_P2_TUN_RNG 0xf2140003
  498. /* P2_DMDCFG2 */
  499. #define RSTV0910_P2_DMDCFG2 0xf215
  500. #define FSTV0910_P2_S1S2_SEQUENTIAL 0xf2156040
  501. #define FSTV0910_P2_INFINITE_RELOCK 0xf2154010
  502. /* P2_DMDISTATE */
  503. #define RSTV0910_P2_DMDISTATE 0xf216
  504. #define FSTV0910_P2_I2C_NORESETDMODE 0xf2167080
  505. #define FSTV0910_P2_I2C_DEMOD_MODE 0xf216001f
  506. /* P2_DMDT0M */
  507. #define RSTV0910_P2_DMDT0M 0xf217
  508. #define FSTV0910_P2_DMDT0_MIN 0xf21700ff
  509. /* P2_DMDSTATE */
  510. #define RSTV0910_P2_DMDSTATE 0xf21b
  511. #define FSTV0910_P2_HEADER_MODE 0xf21b5060
  512. /* P2_DMDFLYW */
  513. #define RSTV0910_P2_DMDFLYW 0xf21c
  514. #define FSTV0910_P2_I2C_IRQVAL 0xf21c40f0
  515. #define FSTV0910_P2_FLYWHEEL_CPT 0xf21c000f
  516. /* P2_DSTATUS3 */
  517. #define RSTV0910_P2_DSTATUS3 0xf21d
  518. #define FSTV0910_P2_CFR_ZIGZAG 0xf21d7080
  519. #define FSTV0910_P2_DEMOD_CFGMODE 0xf21d5060
  520. #define FSTV0910_P2_GAMMA_LOWBAUDRATE 0xf21d4010
  521. /* P2_DMDCFG3 */
  522. #define RSTV0910_P2_DMDCFG3 0xf21e
  523. #define FSTV0910_P2_NOSTOP_FIFOFULL 0xf21e3008
  524. /* P2_DMDCFG4 */
  525. #define RSTV0910_P2_DMDCFG4 0xf21f
  526. #define FSTV0910_P2_DIS_VITLOCK 0xf21f7080
  527. #define FSTV0910_P2_DIS_CLKENABLE 0xf21f2004
  528. /* P2_CORRELMANT */
  529. #define RSTV0910_P2_CORRELMANT 0xf220
  530. #define FSTV0910_P2_CORREL_MANT 0xf22000ff
  531. /* P2_CORRELABS */
  532. #define RSTV0910_P2_CORRELABS 0xf221
  533. #define FSTV0910_P2_CORREL_ABS 0xf22100ff
  534. /* P2_CORRELEXP */
  535. #define RSTV0910_P2_CORRELEXP 0xf222
  536. #define FSTV0910_P2_CORREL_ABSEXP 0xf22240f0
  537. #define FSTV0910_P2_CORREL_EXP 0xf222000f
  538. /* P2_PLHMODCOD */
  539. #define RSTV0910_P2_PLHMODCOD 0xf224
  540. #define FSTV0910_P2_SPECINV_DEMOD 0xf2247080
  541. #define FSTV0910_P2_PLH_MODCOD 0xf224207c
  542. #define FSTV0910_P2_PLH_TYPE 0xf2240003
  543. /* P2_DMDREG */
  544. #define RSTV0910_P2_DMDREG 0xf225
  545. #define FSTV0910_P2_DECIM_PLFRAMES 0xf2250001
  546. /* P2_AGCNADJ */
  547. #define RSTV0910_P2_AGCNADJ 0xf226
  548. #define FSTV0910_P2_RADJOFF_AGC2 0xf2267080
  549. #define FSTV0910_P2_RADJOFF_AGC1 0xf2266040
  550. #define FSTV0910_P2_AGC_NADJ 0xf226013f
  551. /* P2_AGCKS */
  552. #define RSTV0910_P2_AGCKS 0xf227
  553. #define FSTV0910_P2_RSADJ_MANUALCFG 0xf2277080
  554. #define FSTV0910_P2_RSADJ_CCMMODE 0xf2276040
  555. #define FSTV0910_P2_RADJ_SPSK 0xf227013f
  556. /* P2_AGCKQ */
  557. #define RSTV0910_P2_AGCKQ 0xf228
  558. #define FSTV0910_P2_RADJON_DVBS1 0xf2286040
  559. #define FSTV0910_P2_RADJ_QPSK 0xf228013f
  560. /* P2_AGCK8 */
  561. #define RSTV0910_P2_AGCK8 0xf229
  562. #define FSTV0910_P2_RADJ_8PSK 0xf229013f
  563. /* P2_AGCK16 */
  564. #define RSTV0910_P2_AGCK16 0xf22a
  565. #define FSTV0910_P2_R2ADJOFF_16APSK 0xf22a6040
  566. #define FSTV0910_P2_R1ADJOFF_16APSK 0xf22a5020
  567. #define FSTV0910_P2_RADJ_16APSK 0xf22a011f
  568. /* P2_AGCK32 */
  569. #define RSTV0910_P2_AGCK32 0xf22b
  570. #define FSTV0910_P2_R3ADJOFF_32APSK 0xf22b7080
  571. #define FSTV0910_P2_R2ADJOFF_32APSK 0xf22b6040
  572. #define FSTV0910_P2_R1ADJOFF_32APSK 0xf22b5020
  573. #define FSTV0910_P2_RADJ_32APSK 0xf22b011f
  574. /* P2_AGC2O */
  575. #define RSTV0910_P2_AGC2O 0xf22c
  576. #define FSTV0910_P2_CSTENV_MODE 0xf22c60c0
  577. #define FSTV0910_P2_AGC2_COEF 0xf22c0007
  578. /* P2_AGC2REF */
  579. #define RSTV0910_P2_AGC2REF 0xf22d
  580. #define FSTV0910_P2_AGC2_REF 0xf22d00ff
  581. /* P2_AGC1ADJ */
  582. #define RSTV0910_P2_AGC1ADJ 0xf22e
  583. #define FSTV0910_P2_AGC1_ADJUSTED 0xf22e007f
  584. /* P2_AGCRSADJ */
  585. #define RSTV0910_P2_AGCRSADJ 0xf22f
  586. #define FSTV0910_P2_RS_ADJUSTED 0xf22f007f
  587. /* P2_AGCRQADJ */
  588. #define RSTV0910_P2_AGCRQADJ 0xf230
  589. #define FSTV0910_P2_RQ_ADJUSTED 0xf230007f
  590. /* P2_AGCR8ADJ */
  591. #define RSTV0910_P2_AGCR8ADJ 0xf231
  592. #define FSTV0910_P2_R8_ADJUSTED 0xf231007f
  593. /* P2_AGCR1ADJ */
  594. #define RSTV0910_P2_AGCR1ADJ 0xf232
  595. #define FSTV0910_P2_R1_ADJUSTED 0xf232007f
  596. /* P2_AGCR2ADJ */
  597. #define RSTV0910_P2_AGCR2ADJ 0xf233
  598. #define FSTV0910_P2_R2_ADJUSTED 0xf233007f
  599. /* P2_AGCR3ADJ */
  600. #define RSTV0910_P2_AGCR3ADJ 0xf234
  601. #define FSTV0910_P2_R3_ADJUSTED 0xf234007f
  602. /* P2_AGCREFADJ */
  603. #define RSTV0910_P2_AGCREFADJ 0xf235
  604. #define FSTV0910_P2_AGC2REF_ADJUSTED 0xf235007f
  605. /* P2_AGC2I1 */
  606. #define RSTV0910_P2_AGC2I1 0xf236
  607. #define FSTV0910_P2_AGC2_INTEGRATOR1 0xf23600ff
  608. /* P2_AGC2I0 */
  609. #define RSTV0910_P2_AGC2I0 0xf237
  610. #define FSTV0910_P2_AGC2_INTEGRATOR0 0xf23700ff
  611. /* P2_CARCFG */
  612. #define RSTV0910_P2_CARCFG 0xf238
  613. #define FSTV0910_P2_ROTAON 0xf2382004
  614. #define FSTV0910_P2_PH_DET_ALGO 0xf2380003
  615. /* P2_ACLC */
  616. #define RSTV0910_P2_ACLC 0xf239
  617. #define FSTV0910_P2_CAR_ALPHA_MANT 0xf2394030
  618. #define FSTV0910_P2_CAR_ALPHA_EXP 0xf239000f
  619. /* P2_BCLC */
  620. #define RSTV0910_P2_BCLC 0xf23a
  621. #define FSTV0910_P2_CAR_BETA_MANT 0xf23a4030
  622. #define FSTV0910_P2_CAR_BETA_EXP 0xf23a000f
  623. /* P2_ACLCS2 */
  624. #define RSTV0910_P2_ACLCS2 0xf23b
  625. #define FSTV0910_P2_CARS2_APLHA_MANTISSE 0xf23b4030
  626. #define FSTV0910_P2_CARS2_ALPHA_EXP 0xf23b000f
  627. /* P2_BCLCS2 */
  628. #define RSTV0910_P2_BCLCS2 0xf23c
  629. #define FSTV0910_P2_CARS2_BETA_MANTISSE 0xf23c4030
  630. #define FSTV0910_P2_CARS2_BETA_EXP 0xf23c000f
  631. /* P2_CARFREQ */
  632. #define RSTV0910_P2_CARFREQ 0xf23d
  633. #define FSTV0910_P2_KC_COARSE_EXP 0xf23d40f0
  634. #define FSTV0910_P2_BETA_FREQ 0xf23d000f
  635. /* P2_CARHDR */
  636. #define RSTV0910_P2_CARHDR 0xf23e
  637. #define FSTV0910_P2_K_FREQ_HDR 0xf23e00ff
  638. /* P2_LDT */
  639. #define RSTV0910_P2_LDT 0xf23f
  640. #define FSTV0910_P2_CARLOCK_THRES 0xf23f01ff
  641. /* P2_LDT2 */
  642. #define RSTV0910_P2_LDT2 0xf240
  643. #define FSTV0910_P2_CARLOCK_THRES2 0xf24001ff
  644. /* P2_CFRICFG */
  645. #define RSTV0910_P2_CFRICFG 0xf241
  646. #define FSTV0910_P2_NEG_CFRSTEP 0xf2410001
  647. /* P2_CFRUP1 */
  648. #define RSTV0910_P2_CFRUP1 0xf242
  649. #define FSTV0910_P2_CFR_UP1 0xf24201ff
  650. /* P2_CFRUP0 */
  651. #define RSTV0910_P2_CFRUP0 0xf243
  652. #define FSTV0910_P2_CFR_UP0 0xf24300ff
  653. /* P2_CFRIBASE1 */
  654. #define RSTV0910_P2_CFRIBASE1 0xf244
  655. #define FSTV0910_P2_CFRINIT_BASE1 0xf24400ff
  656. /* P2_CFRIBASE0 */
  657. #define RSTV0910_P2_CFRIBASE0 0xf245
  658. #define FSTV0910_P2_CFRINIT_BASE0 0xf24500ff
  659. /* P2_CFRLOW1 */
  660. #define RSTV0910_P2_CFRLOW1 0xf246
  661. #define FSTV0910_P2_CFR_LOW1 0xf24601ff
  662. /* P2_CFRLOW0 */
  663. #define RSTV0910_P2_CFRLOW0 0xf247
  664. #define FSTV0910_P2_CFR_LOW0 0xf24700ff
  665. /* P2_CFRINIT1 */
  666. #define RSTV0910_P2_CFRINIT1 0xf248
  667. #define FSTV0910_P2_CFR_INIT1 0xf24801ff
  668. /* P2_CFRINIT0 */
  669. #define RSTV0910_P2_CFRINIT0 0xf249
  670. #define FSTV0910_P2_CFR_INIT0 0xf24900ff
  671. /* P2_CFRINC1 */
  672. #define RSTV0910_P2_CFRINC1 0xf24a
  673. #define FSTV0910_P2_MANUAL_CFRINC 0xf24a7080
  674. #define FSTV0910_P2_CFR_INC1 0xf24a003f
  675. /* P2_CFRINC0 */
  676. #define RSTV0910_P2_CFRINC0 0xf24b
  677. #define FSTV0910_P2_CFR_INC0 0xf24b00ff
  678. /* P2_CFR2 */
  679. #define RSTV0910_P2_CFR2 0xf24c
  680. #define FSTV0910_P2_CAR_FREQ2 0xf24c01ff
  681. /* P2_CFR1 */
  682. #define RSTV0910_P2_CFR1 0xf24d
  683. #define FSTV0910_P2_CAR_FREQ1 0xf24d00ff
  684. /* P2_CFR0 */
  685. #define RSTV0910_P2_CFR0 0xf24e
  686. #define FSTV0910_P2_CAR_FREQ0 0xf24e00ff
  687. /* P2_LDI */
  688. #define RSTV0910_P2_LDI 0xf24f
  689. #define FSTV0910_P2_LOCK_DET_INTEGR 0xf24f01ff
  690. /* P2_TMGCFG */
  691. #define RSTV0910_P2_TMGCFG 0xf250
  692. #define FSTV0910_P2_TMGLOCK_BETA 0xf25060c0
  693. #define FSTV0910_P2_DO_TIMING_CORR 0xf2504010
  694. #define FSTV0910_P2_TMG_MINFREQ 0xf2500003
  695. /* P2_RTC */
  696. #define RSTV0910_P2_RTC 0xf251
  697. #define FSTV0910_P2_TMGALPHA_EXP 0xf25140f0
  698. #define FSTV0910_P2_TMGBETA_EXP 0xf251000f
  699. /* P2_RTCS2 */
  700. #define RSTV0910_P2_RTCS2 0xf252
  701. #define FSTV0910_P2_TMGALPHAS2_EXP 0xf25240f0
  702. #define FSTV0910_P2_TMGBETAS2_EXP 0xf252000f
  703. /* P2_TMGTHRISE */
  704. #define RSTV0910_P2_TMGTHRISE 0xf253
  705. #define FSTV0910_P2_TMGLOCK_THRISE 0xf25300ff
  706. /* P2_TMGTHFALL */
  707. #define RSTV0910_P2_TMGTHFALL 0xf254
  708. #define FSTV0910_P2_TMGLOCK_THFALL 0xf25400ff
  709. /* P2_SFRUPRATIO */
  710. #define RSTV0910_P2_SFRUPRATIO 0xf255
  711. #define FSTV0910_P2_SFR_UPRATIO 0xf25500ff
  712. /* P2_SFRLOWRATIO */
  713. #define RSTV0910_P2_SFRLOWRATIO 0xf256
  714. #define FSTV0910_P2_SFR_LOWRATIO 0xf25600ff
  715. /* P2_KTTMG */
  716. #define RSTV0910_P2_KTTMG 0xf257
  717. #define FSTV0910_P2_KT_TMG_EXP 0xf25740f0
  718. /* P2_KREFTMG */
  719. #define RSTV0910_P2_KREFTMG 0xf258
  720. #define FSTV0910_P2_KREF_TMG 0xf25800ff
  721. /* P2_SFRSTEP */
  722. #define RSTV0910_P2_SFRSTEP 0xf259
  723. #define FSTV0910_P2_SFR_SCANSTEP 0xf25940f0
  724. #define FSTV0910_P2_SFR_CENTERSTEP 0xf259000f
  725. /* P2_TMGCFG2 */
  726. #define RSTV0910_P2_TMGCFG2 0xf25a
  727. #define FSTV0910_P2_DIS_AUTOSAMP 0xf25a3008
  728. #define FSTV0910_P2_SFRRATIO_FINE 0xf25a0001
  729. /* P2_KREFTMG2 */
  730. #define RSTV0910_P2_KREFTMG2 0xf25b
  731. #define FSTV0910_P2_KREF_TMG2 0xf25b00ff
  732. /* P2_TMGCFG3 */
  733. #define RSTV0910_P2_TMGCFG3 0xf25d
  734. #define FSTV0910_P2_CONT_TMGCENTER 0xf25d3008
  735. #define FSTV0910_P2_AUTO_GUP 0xf25d2004
  736. #define FSTV0910_P2_AUTO_GLOW 0xf25d1002
  737. /* P2_SFRINIT1 */
  738. #define RSTV0910_P2_SFRINIT1 0xf25e
  739. #define FSTV0910_P2_SFR_INIT1 0xf25e00ff
  740. /* P2_SFRINIT0 */
  741. #define RSTV0910_P2_SFRINIT0 0xf25f
  742. #define FSTV0910_P2_SFR_INIT0 0xf25f00ff
  743. /* P2_SFRUP1 */
  744. #define RSTV0910_P2_SFRUP1 0xf260
  745. #define FSTV0910_P2_SYMB_FREQ_UP1 0xf26000ff
  746. /* P2_SFRUP0 */
  747. #define RSTV0910_P2_SFRUP0 0xf261
  748. #define FSTV0910_P2_SYMB_FREQ_UP0 0xf26100ff
  749. /* P2_SFRLOW1 */
  750. #define RSTV0910_P2_SFRLOW1 0xf262
  751. #define FSTV0910_P2_SYMB_FREQ_LOW1 0xf26200ff
  752. /* P2_SFRLOW0 */
  753. #define RSTV0910_P2_SFRLOW0 0xf263
  754. #define FSTV0910_P2_SYMB_FREQ_LOW0 0xf26300ff
  755. /* P2_SFR3 */
  756. #define RSTV0910_P2_SFR3 0xf264
  757. #define FSTV0910_P2_SYMB_FREQ3 0xf26400ff
  758. /* P2_SFR2 */
  759. #define RSTV0910_P2_SFR2 0xf265
  760. #define FSTV0910_P2_SYMB_FREQ2 0xf26500ff
  761. /* P2_SFR1 */
  762. #define RSTV0910_P2_SFR1 0xf266
  763. #define FSTV0910_P2_SYMB_FREQ1 0xf26600ff
  764. /* P2_SFR0 */
  765. #define RSTV0910_P2_SFR0 0xf267
  766. #define FSTV0910_P2_SYMB_FREQ0 0xf26700ff
  767. /* P2_TMGREG2 */
  768. #define RSTV0910_P2_TMGREG2 0xf268
  769. #define FSTV0910_P2_TMGREG2 0xf26800ff
  770. /* P2_TMGREG1 */
  771. #define RSTV0910_P2_TMGREG1 0xf269
  772. #define FSTV0910_P2_TMGREG1 0xf26900ff
  773. /* P2_TMGREG0 */
  774. #define RSTV0910_P2_TMGREG0 0xf26a
  775. #define FSTV0910_P2_TMGREG0 0xf26a00ff
  776. /* P2_TMGLOCK1 */
  777. #define RSTV0910_P2_TMGLOCK1 0xf26b
  778. #define FSTV0910_P2_TMGLOCK_LEVEL1 0xf26b01ff
  779. /* P2_TMGLOCK0 */
  780. #define RSTV0910_P2_TMGLOCK0 0xf26c
  781. #define FSTV0910_P2_TMGLOCK_LEVEL0 0xf26c00ff
  782. /* P2_TMGOBS */
  783. #define RSTV0910_P2_TMGOBS 0xf26d
  784. #define FSTV0910_P2_ROLLOFF_STATUS 0xf26d60c0
  785. /* P2_EQUALCFG */
  786. #define RSTV0910_P2_EQUALCFG 0xf26f
  787. #define FSTV0910_P2_EQUAL_ON 0xf26f6040
  788. #define FSTV0910_P2_MU_EQUALDFE 0xf26f0007
  789. /* P2_EQUAI1 */
  790. #define RSTV0910_P2_EQUAI1 0xf270
  791. #define FSTV0910_P2_EQUA_ACCI1 0xf27001ff
  792. /* P2_EQUAQ1 */
  793. #define RSTV0910_P2_EQUAQ1 0xf271
  794. #define FSTV0910_P2_EQUA_ACCQ1 0xf27101ff
  795. /* P2_EQUAI2 */
  796. #define RSTV0910_P2_EQUAI2 0xf272
  797. #define FSTV0910_P2_EQUA_ACCI2 0xf27201ff
  798. /* P2_EQUAQ2 */
  799. #define RSTV0910_P2_EQUAQ2 0xf273
  800. #define FSTV0910_P2_EQUA_ACCQ2 0xf27301ff
  801. /* P2_EQUAI3 */
  802. #define RSTV0910_P2_EQUAI3 0xf274
  803. #define FSTV0910_P2_EQUA_ACCI3 0xf27401ff
  804. /* P2_EQUAQ3 */
  805. #define RSTV0910_P2_EQUAQ3 0xf275
  806. #define FSTV0910_P2_EQUA_ACCQ3 0xf27501ff
  807. /* P2_EQUAI4 */
  808. #define RSTV0910_P2_EQUAI4 0xf276
  809. #define FSTV0910_P2_EQUA_ACCI4 0xf27601ff
  810. /* P2_EQUAQ4 */
  811. #define RSTV0910_P2_EQUAQ4 0xf277
  812. #define FSTV0910_P2_EQUA_ACCQ4 0xf27701ff
  813. /* P2_EQUAI5 */
  814. #define RSTV0910_P2_EQUAI5 0xf278
  815. #define FSTV0910_P2_EQUA_ACCI5 0xf27801ff
  816. /* P2_EQUAQ5 */
  817. #define RSTV0910_P2_EQUAQ5 0xf279
  818. #define FSTV0910_P2_EQUA_ACCQ5 0xf27901ff
  819. /* P2_EQUAI6 */
  820. #define RSTV0910_P2_EQUAI6 0xf27a
  821. #define FSTV0910_P2_EQUA_ACCI6 0xf27a01ff
  822. /* P2_EQUAQ6 */
  823. #define RSTV0910_P2_EQUAQ6 0xf27b
  824. #define FSTV0910_P2_EQUA_ACCQ6 0xf27b01ff
  825. /* P2_EQUAI7 */
  826. #define RSTV0910_P2_EQUAI7 0xf27c
  827. #define FSTV0910_P2_EQUA_ACCI7 0xf27c01ff
  828. /* P2_EQUAQ7 */
  829. #define RSTV0910_P2_EQUAQ7 0xf27d
  830. #define FSTV0910_P2_EQUA_ACCQ7 0xf27d01ff
  831. /* P2_EQUAI8 */
  832. #define RSTV0910_P2_EQUAI8 0xf27e
  833. #define FSTV0910_P2_EQUA_ACCI8 0xf27e01ff
  834. /* P2_EQUAQ8 */
  835. #define RSTV0910_P2_EQUAQ8 0xf27f
  836. #define FSTV0910_P2_EQUA_ACCQ8 0xf27f01ff
  837. /* P2_NNOSDATAT1 */
  838. #define RSTV0910_P2_NNOSDATAT1 0xf280
  839. #define FSTV0910_P2_NOSDATAT_NORMED1 0xf28000ff
  840. /* P2_NNOSDATAT0 */
  841. #define RSTV0910_P2_NNOSDATAT0 0xf281
  842. #define FSTV0910_P2_NOSDATAT_NORMED0 0xf28100ff
  843. /* P2_NNOSDATA1 */
  844. #define RSTV0910_P2_NNOSDATA1 0xf282
  845. #define FSTV0910_P2_NOSDATA_NORMED1 0xf28200ff
  846. /* P2_NNOSDATA0 */
  847. #define RSTV0910_P2_NNOSDATA0 0xf283
  848. #define FSTV0910_P2_NOSDATA_NORMED0 0xf28300ff
  849. /* P2_NNOSPLHT1 */
  850. #define RSTV0910_P2_NNOSPLHT1 0xf284
  851. #define FSTV0910_P2_NOSPLHT_NORMED1 0xf28400ff
  852. /* P2_NNOSPLHT0 */
  853. #define RSTV0910_P2_NNOSPLHT0 0xf285
  854. #define FSTV0910_P2_NOSPLHT_NORMED0 0xf28500ff
  855. /* P2_NNOSPLH1 */
  856. #define RSTV0910_P2_NNOSPLH1 0xf286
  857. #define FSTV0910_P2_NOSPLH_NORMED1 0xf28600ff
  858. /* P2_NNOSPLH0 */
  859. #define RSTV0910_P2_NNOSPLH0 0xf287
  860. #define FSTV0910_P2_NOSPLH_NORMED0 0xf28700ff
  861. /* P2_NOSDATAT1 */
  862. #define RSTV0910_P2_NOSDATAT1 0xf288
  863. #define FSTV0910_P2_NOSDATAT_UNNORMED1 0xf28800ff
  864. /* P2_NOSDATAT0 */
  865. #define RSTV0910_P2_NOSDATAT0 0xf289
  866. #define FSTV0910_P2_NOSDATAT_UNNORMED0 0xf28900ff
  867. /* P2_NNOSFRAME1 */
  868. #define RSTV0910_P2_NNOSFRAME1 0xf28a
  869. #define FSTV0910_P2_NOSFRAME_NORMED1 0xf28a00ff
  870. /* P2_NNOSFRAME0 */
  871. #define RSTV0910_P2_NNOSFRAME0 0xf28b
  872. #define FSTV0910_P2_NOSFRAME_NORMED0 0xf28b00ff
  873. /* P2_NNOSRAD1 */
  874. #define RSTV0910_P2_NNOSRAD1 0xf28c
  875. #define FSTV0910_P2_NOSRADIAL_NORMED1 0xf28c00ff
  876. /* P2_NNOSRAD0 */
  877. #define RSTV0910_P2_NNOSRAD0 0xf28d
  878. #define FSTV0910_P2_NOSRADIAL_NORMED0 0xf28d00ff
  879. /* P2_NOSCFGF1 */
  880. #define RSTV0910_P2_NOSCFGF1 0xf28e
  881. #define FSTV0910_P2_LOWNOISE_MESURE 0xf28e7080
  882. #define FSTV0910_P2_NOS_DELFRAME 0xf28e6040
  883. #define FSTV0910_P2_NOSDATA_MODE 0xf28e4030
  884. #define FSTV0910_P2_FRAMESEL_TYPESEL 0xf28e200c
  885. #define FSTV0910_P2_FRAMESEL_TYPE 0xf28e0003
  886. /* P2_NOSCFGF2 */
  887. #define RSTV0910_P2_NOSCFGF2 0xf28f
  888. #define FSTV0910_P2_DIS_NOSPILOTS 0xf28f7080
  889. #define FSTV0910_P2_FRAMESEL_MODCODSEL 0xf28f5060
  890. #define FSTV0910_P2_FRAMESEL_MODCOD 0xf28f001f
  891. /* P2_CAR2CFG */
  892. #define RSTV0910_P2_CAR2CFG 0xf290
  893. #define FSTV0910_P2_ROTA2ON 0xf2902004
  894. #define FSTV0910_P2_PH_DET_ALGO2 0xf2900003
  895. /* P2_CFR2CFR1 */
  896. #define RSTV0910_P2_CFR2CFR1 0xf291
  897. #define FSTV0910_P2_EN_S2CAR2CENTER 0xf2915020
  898. #define FSTV0910_P2_CFR2TOCFR1_BETA 0xf2910007
  899. /* P2_CAR3CFG */
  900. #define RSTV0910_P2_CAR3CFG 0xf292
  901. #define FSTV0910_P2_CARRIER23_MODE 0xf29260c0
  902. #define FSTV0910_P2_CAR3INTERM_DVBS1 0xf2925020
  903. #define FSTV0910_P2_ABAMPLIF_MODE 0xf2923018
  904. #define FSTV0910_P2_CARRIER3_ALPHA3DL 0xf2920007
  905. /* P2_CFR22 */
  906. #define RSTV0910_P2_CFR22 0xf293
  907. #define FSTV0910_P2_CAR2_FREQ2 0xf29301ff
  908. /* P2_CFR21 */
  909. #define RSTV0910_P2_CFR21 0xf294
  910. #define FSTV0910_P2_CAR2_FREQ1 0xf29400ff
  911. /* P2_CFR20 */
  912. #define RSTV0910_P2_CFR20 0xf295
  913. #define FSTV0910_P2_CAR2_FREQ0 0xf29500ff
  914. /* P2_ACLC2S2Q */
  915. #define RSTV0910_P2_ACLC2S2Q 0xf297
  916. #define FSTV0910_P2_ENAB_SPSKSYMB 0xf2977080
  917. #define FSTV0910_P2_CAR2S2_Q_ALPH_M 0xf2974030
  918. #define FSTV0910_P2_CAR2S2_Q_ALPH_E 0xf297000f
  919. /* P2_ACLC2S28 */
  920. #define RSTV0910_P2_ACLC2S28 0xf298
  921. #define FSTV0910_P2_CAR2S2_8_ALPH_M 0xf2984030
  922. #define FSTV0910_P2_CAR2S2_8_ALPH_E 0xf298000f
  923. /* P2_ACLC2S216A */
  924. #define RSTV0910_P2_ACLC2S216A 0xf299
  925. #define FSTV0910_P2_CAR2S2_16A_ALPH_M 0xf2994030
  926. #define FSTV0910_P2_CAR2S2_16A_ALPH_E 0xf299000f
  927. /* P2_ACLC2S232A */
  928. #define RSTV0910_P2_ACLC2S232A 0xf29a
  929. #define FSTV0910_P2_CAR2S2_32A_ALPH_M 0xf29a4030
  930. #define FSTV0910_P2_CAR2S2_32A_ALPH_E 0xf29a000f
  931. /* P2_BCLC2S2Q */
  932. #define RSTV0910_P2_BCLC2S2Q 0xf29c
  933. #define FSTV0910_P2_CAR2S2_Q_BETA_M 0xf29c4030
  934. #define FSTV0910_P2_CAR2S2_Q_BETA_E 0xf29c000f
  935. /* P2_BCLC2S28 */
  936. #define RSTV0910_P2_BCLC2S28 0xf29d
  937. #define FSTV0910_P2_CAR2S2_8_BETA_M 0xf29d4030
  938. #define FSTV0910_P2_CAR2S2_8_BETA_E 0xf29d000f
  939. /* P2_BCLC2S216A */
  940. #define RSTV0910_P2_BCLC2S216A 0xf29e
  941. #define FSTV0910_P2_DVBS2S216A_NIP 0xf29e7080
  942. #define FSTV0910_P2_CAR2S2_16A_BETA_M 0xf29e4030
  943. #define FSTV0910_P2_CAR2S2_16A_BETA_E 0xf29e000f
  944. /* P2_BCLC2S232A */
  945. #define RSTV0910_P2_BCLC2S232A 0xf29f
  946. #define FSTV0910_P2_DVBS2S232A_NIP 0xf29f7080
  947. #define FSTV0910_P2_CAR2S2_32A_BETA_M 0xf29f4030
  948. #define FSTV0910_P2_CAR2S2_32A_BETA_E 0xf29f000f
  949. /* P2_PLROOT2 */
  950. #define RSTV0910_P2_PLROOT2 0xf2ac
  951. #define FSTV0910_P2_PLSCRAMB_MODE 0xf2ac200c
  952. #define FSTV0910_P2_PLSCRAMB_ROOT2 0xf2ac0003
  953. /* P2_PLROOT1 */
  954. #define RSTV0910_P2_PLROOT1 0xf2ad
  955. #define FSTV0910_P2_PLSCRAMB_ROOT1 0xf2ad00ff
  956. /* P2_PLROOT0 */
  957. #define RSTV0910_P2_PLROOT0 0xf2ae
  958. #define FSTV0910_P2_PLSCRAMB_ROOT0 0xf2ae00ff
  959. /* P2_MODCODLST0 */
  960. #define RSTV0910_P2_MODCODLST0 0xf2b0
  961. #define FSTV0910_P2_NACCES_MODCODCH 0xf2b00001
  962. /* P2_MODCODLST1 */
  963. #define RSTV0910_P2_MODCODLST1 0xf2b1
  964. #define FSTV0910_P2_SYMBRATE_FILTER 0xf2b13008
  965. #define FSTV0910_P2_NRESET_MODCODLST 0xf2b12004
  966. #define FSTV0910_P2_DIS_32PSK_9_10 0xf2b10003
  967. /* P2_MODCODLST2 */
  968. #define RSTV0910_P2_MODCODLST2 0xf2b2
  969. #define FSTV0910_P2_DIS_32PSK_8_9 0xf2b240f0
  970. #define FSTV0910_P2_DIS_32PSK_5_6 0xf2b2000f
  971. /* P2_MODCODLST3 */
  972. #define RSTV0910_P2_MODCODLST3 0xf2b3
  973. #define FSTV0910_P2_DIS_32PSK_4_5 0xf2b340f0
  974. #define FSTV0910_P2_DIS_32PSK_3_4 0xf2b3000f
  975. /* P2_MODCODLST4 */
  976. #define RSTV0910_P2_MODCODLST4 0xf2b4
  977. #define FSTV0910_P2_DUMMYPL_PILOT 0xf2b47080
  978. #define FSTV0910_P2_DUMMYPL_NOPILOT 0xf2b46040
  979. #define FSTV0910_P2_DIS_16PSK_9_10 0xf2b44030
  980. #define FSTV0910_P2_DIS_16PSK_8_9 0xf2b4000f
  981. /* P2_MODCODLST5 */
  982. #define RSTV0910_P2_MODCODLST5 0xf2b5
  983. #define FSTV0910_P2_DIS_16PSK_5_6 0xf2b540f0
  984. #define FSTV0910_P2_DIS_16PSK_4_5 0xf2b5000f
  985. /* P2_MODCODLST6 */
  986. #define RSTV0910_P2_MODCODLST6 0xf2b6
  987. #define FSTV0910_P2_DIS_16PSK_3_4 0xf2b640f0
  988. #define FSTV0910_P2_DIS_16PSK_2_3 0xf2b6000f
  989. /* P2_MODCODLST7 */
  990. #define RSTV0910_P2_MODCODLST7 0xf2b7
  991. #define FSTV0910_P2_MODCOD_NNOSFILTER 0xf2b77080
  992. #define FSTV0910_P2_DIS_8PSK_9_10 0xf2b74030
  993. #define FSTV0910_P2_DIS_8PSK_8_9 0xf2b7000f
  994. /* P2_MODCODLST8 */
  995. #define RSTV0910_P2_MODCODLST8 0xf2b8
  996. #define FSTV0910_P2_DIS_8PSK_5_6 0xf2b840f0
  997. #define FSTV0910_P2_DIS_8PSK_3_4 0xf2b8000f
  998. /* P2_MODCODLST9 */
  999. #define RSTV0910_P2_MODCODLST9 0xf2b9
  1000. #define FSTV0910_P2_DIS_8PSK_2_3 0xf2b940f0
  1001. #define FSTV0910_P2_DIS_8PSK_3_5 0xf2b9000f
  1002. /* P2_MODCODLSTA */
  1003. #define RSTV0910_P2_MODCODLSTA 0xf2ba
  1004. #define FSTV0910_P2_NOSFILTER_LIMITE 0xf2ba7080
  1005. #define FSTV0910_P2_DIS_QPSK_9_10 0xf2ba4030
  1006. #define FSTV0910_P2_DIS_QPSK_8_9 0xf2ba000f
  1007. /* P2_MODCODLSTB */
  1008. #define RSTV0910_P2_MODCODLSTB 0xf2bb
  1009. #define FSTV0910_P2_DIS_QPSK_5_6 0xf2bb40f0
  1010. #define FSTV0910_P2_DIS_QPSK_4_5 0xf2bb000f
  1011. /* P2_MODCODLSTC */
  1012. #define RSTV0910_P2_MODCODLSTC 0xf2bc
  1013. #define FSTV0910_P2_DIS_QPSK_3_4 0xf2bc40f0
  1014. #define FSTV0910_P2_DIS_QPSK_2_3 0xf2bc000f
  1015. /* P2_MODCODLSTD */
  1016. #define RSTV0910_P2_MODCODLSTD 0xf2bd
  1017. #define FSTV0910_P2_DIS_QPSK_3_5 0xf2bd40f0
  1018. #define FSTV0910_P2_DIS_QPSK_1_2 0xf2bd000f
  1019. /* P2_MODCODLSTE */
  1020. #define RSTV0910_P2_MODCODLSTE 0xf2be
  1021. #define FSTV0910_P2_DIS_QPSK_2_5 0xf2be40f0
  1022. #define FSTV0910_P2_DIS_QPSK_1_3 0xf2be000f
  1023. /* P2_MODCODLSTF */
  1024. #define RSTV0910_P2_MODCODLSTF 0xf2bf
  1025. #define FSTV0910_P2_DIS_QPSK_1_4 0xf2bf40f0
  1026. #define FSTV0910_P2_DEMOD_INVMODLST 0xf2bf3008
  1027. #define FSTV0910_P2_DEMODOUT_ENABLE 0xf2bf2004
  1028. #define FSTV0910_P2_DDEMOD_NSET 0xf2bf1002
  1029. #define FSTV0910_P2_MODCOD_NSTOCK 0xf2bf0001
  1030. /* P2_GAUSSR0 */
  1031. #define RSTV0910_P2_GAUSSR0 0xf2c0
  1032. #define FSTV0910_P2_EN_CCIMODE 0xf2c07080
  1033. #define FSTV0910_P2_R0_GAUSSIEN 0xf2c0007f
  1034. /* P2_CCIR0 */
  1035. #define RSTV0910_P2_CCIR0 0xf2c1
  1036. #define FSTV0910_P2_CCIDETECT_PLHONLY 0xf2c17080
  1037. #define FSTV0910_P2_R0_CCI 0xf2c1007f
  1038. /* P2_CCIQUANT */
  1039. #define RSTV0910_P2_CCIQUANT 0xf2c2
  1040. #define FSTV0910_P2_CCI_BETA 0xf2c250e0
  1041. #define FSTV0910_P2_CCI_QUANT 0xf2c2001f
  1042. /* P2_CCITHRES */
  1043. #define RSTV0910_P2_CCITHRES 0xf2c3
  1044. #define FSTV0910_P2_CCI_THRESHOLD 0xf2c300ff
  1045. /* P2_CCIACC */
  1046. #define RSTV0910_P2_CCIACC 0xf2c4
  1047. #define FSTV0910_P2_CCI_VALUE 0xf2c400ff
  1048. /* P2_DSTATUS4 */
  1049. #define RSTV0910_P2_DSTATUS4 0xf2c5
  1050. #define FSTV0910_P2_RAINFADE_DETECT 0xf2c57080
  1051. #define FSTV0910_P2_NOTHRES2_FAIL 0xf2c56040
  1052. #define FSTV0910_P2_NOTHRES1_FAIL 0xf2c55020
  1053. #define FSTV0910_P2_DMDPROG_ERROR 0xf2c52004
  1054. #define FSTV0910_P2_CSTENV_DETECT 0xf2c51002
  1055. #define FSTV0910_P2_DETECTION_TRIAX 0xf2c50001
  1056. /* P2_DMDRESCFG */
  1057. #define RSTV0910_P2_DMDRESCFG 0xf2c6
  1058. #define FSTV0910_P2_DMDRES_RESET 0xf2c67080
  1059. #define FSTV0910_P2_DMDRES_STRALL 0xf2c63008
  1060. #define FSTV0910_P2_DMDRES_NEWONLY 0xf2c62004
  1061. #define FSTV0910_P2_DMDRES_NOSTORE 0xf2c61002
  1062. /* P2_DMDRESADR */
  1063. #define RSTV0910_P2_DMDRESADR 0xf2c7
  1064. #define FSTV0910_P2_DMDRES_VALIDCFR 0xf2c76040
  1065. #define FSTV0910_P2_DMDRES_MEMFULL 0xf2c74030
  1066. #define FSTV0910_P2_DMDRES_RESNBR 0xf2c7000f
  1067. /* P2_DMDRESDATA7 */
  1068. #define RSTV0910_P2_DMDRESDATA7 0xf2c8
  1069. #define FSTV0910_P2_DMDRES_DATA7 0xf2c800ff
  1070. /* P2_DMDRESDATA6 */
  1071. #define RSTV0910_P2_DMDRESDATA6 0xf2c9
  1072. #define FSTV0910_P2_DMDRES_DATA6 0xf2c900ff
  1073. /* P2_DMDRESDATA5 */
  1074. #define RSTV0910_P2_DMDRESDATA5 0xf2ca
  1075. #define FSTV0910_P2_DMDRES_DATA5 0xf2ca00ff
  1076. /* P2_DMDRESDATA4 */
  1077. #define RSTV0910_P2_DMDRESDATA4 0xf2cb
  1078. #define FSTV0910_P2_DMDRES_DATA4 0xf2cb00ff
  1079. /* P2_DMDRESDATA3 */
  1080. #define RSTV0910_P2_DMDRESDATA3 0xf2cc
  1081. #define FSTV0910_P2_DMDRES_DATA3 0xf2cc00ff
  1082. /* P2_DMDRESDATA2 */
  1083. #define RSTV0910_P2_DMDRESDATA2 0xf2cd
  1084. #define FSTV0910_P2_DMDRES_DATA2 0xf2cd00ff
  1085. /* P2_DMDRESDATA1 */
  1086. #define RSTV0910_P2_DMDRESDATA1 0xf2ce
  1087. #define FSTV0910_P2_DMDRES_DATA1 0xf2ce00ff
  1088. /* P2_DMDRESDATA0 */
  1089. #define RSTV0910_P2_DMDRESDATA0 0xf2cf
  1090. #define FSTV0910_P2_DMDRES_DATA0 0xf2cf00ff
  1091. /* P2_FFEI1 */
  1092. #define RSTV0910_P2_FFEI1 0xf2d0
  1093. #define FSTV0910_P2_FFE_ACCI1 0xf2d001ff
  1094. /* P2_FFEQ1 */
  1095. #define RSTV0910_P2_FFEQ1 0xf2d1
  1096. #define FSTV0910_P2_FFE_ACCQ1 0xf2d101ff
  1097. /* P2_FFEI2 */
  1098. #define RSTV0910_P2_FFEI2 0xf2d2
  1099. #define FSTV0910_P2_FFE_ACCI2 0xf2d201ff
  1100. /* P2_FFEQ2 */
  1101. #define RSTV0910_P2_FFEQ2 0xf2d3
  1102. #define FSTV0910_P2_FFE_ACCQ2 0xf2d301ff
  1103. /* P2_FFEI3 */
  1104. #define RSTV0910_P2_FFEI3 0xf2d4
  1105. #define FSTV0910_P2_FFE_ACCI3 0xf2d401ff
  1106. /* P2_FFEQ3 */
  1107. #define RSTV0910_P2_FFEQ3 0xf2d5
  1108. #define FSTV0910_P2_FFE_ACCQ3 0xf2d501ff
  1109. /* P2_FFEI4 */
  1110. #define RSTV0910_P2_FFEI4 0xf2d6
  1111. #define FSTV0910_P2_FFE_ACCI4 0xf2d601ff
  1112. /* P2_FFEQ4 */
  1113. #define RSTV0910_P2_FFEQ4 0xf2d7
  1114. #define FSTV0910_P2_FFE_ACCQ4 0xf2d701ff
  1115. /* P2_FFECFG */
  1116. #define RSTV0910_P2_FFECFG 0xf2d8
  1117. #define FSTV0910_P2_EQUALFFE_ON 0xf2d86040
  1118. #define FSTV0910_P2_EQUAL_USEDSYMB 0xf2d84030
  1119. #define FSTV0910_P2_MU_EQUALFFE 0xf2d80007
  1120. /* P2_TNRCFG2 */
  1121. #define RSTV0910_P2_TNRCFG2 0xf2e1
  1122. #define FSTV0910_P2_TUN_IQSWAP 0xf2e17080
  1123. /* P2_SMAPCOEF7 */
  1124. #define RSTV0910_P2_SMAPCOEF7 0xf300
  1125. #define FSTV0910_P2_DIS_QSCALE 0xf3007080
  1126. #define FSTV0910_P2_SMAPCOEF_Q_LLR12 0xf300017f
  1127. /* P2_SMAPCOEF6 */
  1128. #define RSTV0910_P2_SMAPCOEF6 0xf301
  1129. #define FSTV0910_P2_DIS_AGC2SCALE 0xf3017080
  1130. #define FSTV0910_P2_ADJ_8PSKLLR1 0xf3012004
  1131. #define FSTV0910_P2_OLD_8PSKLLR1 0xf3011002
  1132. #define FSTV0910_P2_DIS_AB8PSK 0xf3010001
  1133. /* P2_SMAPCOEF5 */
  1134. #define RSTV0910_P2_SMAPCOEF5 0xf302
  1135. #define FSTV0910_P2_DIS_8SCALE 0xf3027080
  1136. #define FSTV0910_P2_SMAPCOEF_8P_LLR23 0xf302017f
  1137. /* P2_SMAPCOEF4 */
  1138. #define RSTV0910_P2_SMAPCOEF4 0xf303
  1139. #define FSTV0910_P2_SMAPCOEF_16APSK_LLR12 0xf303017f
  1140. /* P2_SMAPCOEF3 */
  1141. #define RSTV0910_P2_SMAPCOEF3 0xf304
  1142. #define FSTV0910_P2_SMAPCOEF_16APSK_LLR34 0xf304017f
  1143. /* P2_SMAPCOEF2 */
  1144. #define RSTV0910_P2_SMAPCOEF2 0xf305
  1145. #define FSTV0910_P2_SMAPCOEF_32APSK_R2R3 0xf30541f0
  1146. #define FSTV0910_P2_SMAPCOEF_32APSK_LLR2 0xf305010f
  1147. /* P2_SMAPCOEF1 */
  1148. #define RSTV0910_P2_SMAPCOEF1 0xf306
  1149. #define FSTV0910_P2_DIS_16SCALE 0xf3067080
  1150. #define FSTV0910_P2_SMAPCOEF_32_LLR34 0xf306017f
  1151. /* P2_SMAPCOEF0 */
  1152. #define RSTV0910_P2_SMAPCOEF0 0xf307
  1153. #define FSTV0910_P2_DIS_32SCALE 0xf3077080
  1154. #define FSTV0910_P2_SMAPCOEF_32_LLR15 0xf307017f
  1155. /* P2_NOSTHRES1 */
  1156. #define RSTV0910_P2_NOSTHRES1 0xf309
  1157. #define FSTV0910_P2_NOS_THRESHOLD1 0xf30900ff
  1158. /* P2_NOSTHRES2 */
  1159. #define RSTV0910_P2_NOSTHRES2 0xf30a
  1160. #define FSTV0910_P2_NOS_THRESHOLD2 0xf30a00ff
  1161. /* P2_NOSDIFF1 */
  1162. #define RSTV0910_P2_NOSDIFF1 0xf30b
  1163. #define FSTV0910_P2_NOSTHRES1_DIFF 0xf30b00ff
  1164. /* P2_RAINFADE */
  1165. #define RSTV0910_P2_RAINFADE 0xf30c
  1166. #define FSTV0910_P2_NOSTHRES_DATAT 0xf30c7080
  1167. #define FSTV0910_P2_RAINFADE_CNLIMIT 0xf30c4070
  1168. #define FSTV0910_P2_RAINFADE_TIMEOUT 0xf30c0007
  1169. /* P2_NOSRAMCFG */
  1170. #define RSTV0910_P2_NOSRAMCFG 0xf30d
  1171. #define FSTV0910_P2_NOSRAM_ACTIVATION 0xf30d4030
  1172. #define FSTV0910_P2_NOSRAM_CNRONLY 0xf30d3008
  1173. #define FSTV0910_P2_NOSRAM_LGNCNR1 0xf30d0007
  1174. /* P2_NOSRAMPOS */
  1175. #define RSTV0910_P2_NOSRAMPOS 0xf30e
  1176. #define FSTV0910_P2_NOSRAM_LGNCNR0 0xf30e40f0
  1177. #define FSTV0910_P2_NOSRAM_VALIDE 0xf30e2004
  1178. #define FSTV0910_P2_NOSRAM_CNRVAL1 0xf30e0003
  1179. /* P2_NOSRAMVAL */
  1180. #define RSTV0910_P2_NOSRAMVAL 0xf30f
  1181. #define FSTV0910_P2_NOSRAM_CNRVAL0 0xf30f00ff
  1182. /* P2_DMDPLHSTAT */
  1183. #define RSTV0910_P2_DMDPLHSTAT 0xf320
  1184. #define FSTV0910_P2_PLH_STATISTIC 0xf32000ff
  1185. /* P2_LOCKTIME3 */
  1186. #define RSTV0910_P2_LOCKTIME3 0xf322
  1187. #define FSTV0910_P2_DEMOD_LOCKTIME3 0xf32200ff
  1188. /* P2_LOCKTIME2 */
  1189. #define RSTV0910_P2_LOCKTIME2 0xf323
  1190. #define FSTV0910_P2_DEMOD_LOCKTIME2 0xf32300ff
  1191. /* P2_LOCKTIME1 */
  1192. #define RSTV0910_P2_LOCKTIME1 0xf324
  1193. #define FSTV0910_P2_DEMOD_LOCKTIME1 0xf32400ff
  1194. /* P2_LOCKTIME0 */
  1195. #define RSTV0910_P2_LOCKTIME0 0xf325
  1196. #define FSTV0910_P2_DEMOD_LOCKTIME0 0xf32500ff
  1197. /* P2_VITSCALE */
  1198. #define RSTV0910_P2_VITSCALE 0xf332
  1199. #define FSTV0910_P2_NVTH_NOSRANGE 0xf3327080
  1200. #define FSTV0910_P2_VERROR_MAXMODE 0xf3326040
  1201. #define FSTV0910_P2_NSLOWSN_LOCKED 0xf3323008
  1202. #define FSTV0910_P2_DIS_RSFLOCK 0xf3321002
  1203. /* P2_FECM */
  1204. #define RSTV0910_P2_FECM 0xf333
  1205. #define FSTV0910_P2_DSS_DVB 0xf3337080
  1206. #define FSTV0910_P2_DSS_SRCH 0xf3334010
  1207. #define FSTV0910_P2_SYNCVIT 0xf3331002
  1208. #define FSTV0910_P2_IQINV 0xf3330001
  1209. /* P2_VTH12 */
  1210. #define RSTV0910_P2_VTH12 0xf334
  1211. #define FSTV0910_P2_VTH12 0xf33400ff
  1212. /* P2_VTH23 */
  1213. #define RSTV0910_P2_VTH23 0xf335
  1214. #define FSTV0910_P2_VTH23 0xf33500ff
  1215. /* P2_VTH34 */
  1216. #define RSTV0910_P2_VTH34 0xf336
  1217. #define FSTV0910_P2_VTH34 0xf33600ff
  1218. /* P2_VTH56 */
  1219. #define RSTV0910_P2_VTH56 0xf337
  1220. #define FSTV0910_P2_VTH56 0xf33700ff
  1221. /* P2_VTH67 */
  1222. #define RSTV0910_P2_VTH67 0xf338
  1223. #define FSTV0910_P2_VTH67 0xf33800ff
  1224. /* P2_VTH78 */
  1225. #define RSTV0910_P2_VTH78 0xf339
  1226. #define FSTV0910_P2_VTH78 0xf33900ff
  1227. /* P2_VITCURPUN */
  1228. #define RSTV0910_P2_VITCURPUN 0xf33a
  1229. #define FSTV0910_P2_VIT_CURPUN 0xf33a001f
  1230. /* P2_VERROR */
  1231. #define RSTV0910_P2_VERROR 0xf33b
  1232. #define FSTV0910_P2_REGERR_VIT 0xf33b00ff
  1233. /* P2_PRVIT */
  1234. #define RSTV0910_P2_PRVIT 0xf33c
  1235. #define FSTV0910_P2_DIS_VTHLOCK 0xf33c6040
  1236. #define FSTV0910_P2_E7_8VIT 0xf33c5020
  1237. #define FSTV0910_P2_E6_7VIT 0xf33c4010
  1238. #define FSTV0910_P2_E5_6VIT 0xf33c3008
  1239. #define FSTV0910_P2_E3_4VIT 0xf33c2004
  1240. #define FSTV0910_P2_E2_3VIT 0xf33c1002
  1241. #define FSTV0910_P2_E1_2VIT 0xf33c0001
  1242. /* P2_VAVSRVIT */
  1243. #define RSTV0910_P2_VAVSRVIT 0xf33d
  1244. #define FSTV0910_P2_AMVIT 0xf33d7080
  1245. #define FSTV0910_P2_FROZENVIT 0xf33d6040
  1246. #define FSTV0910_P2_SNVIT 0xf33d4030
  1247. #define FSTV0910_P2_TOVVIT 0xf33d200c
  1248. #define FSTV0910_P2_HYPVIT 0xf33d0003
  1249. /* P2_VSTATUSVIT */
  1250. #define RSTV0910_P2_VSTATUSVIT 0xf33e
  1251. #define FSTV0910_P2_PRFVIT 0xf33e4010
  1252. #define FSTV0910_P2_LOCKEDVIT 0xf33e3008
  1253. /* P2_VTHINUSE */
  1254. #define RSTV0910_P2_VTHINUSE 0xf33f
  1255. #define FSTV0910_P2_VIT_INUSE 0xf33f00ff
  1256. /* P2_KDIV12 */
  1257. #define RSTV0910_P2_KDIV12 0xf340
  1258. #define FSTV0910_P2_K_DIVIDER_12 0xf340007f
  1259. /* P2_KDIV23 */
  1260. #define RSTV0910_P2_KDIV23 0xf341
  1261. #define FSTV0910_P2_K_DIVIDER_23 0xf341007f
  1262. /* P2_KDIV34 */
  1263. #define RSTV0910_P2_KDIV34 0xf342
  1264. #define FSTV0910_P2_K_DIVIDER_34 0xf342007f
  1265. /* P2_KDIV56 */
  1266. #define RSTV0910_P2_KDIV56 0xf343
  1267. #define FSTV0910_P2_K_DIVIDER_56 0xf343007f
  1268. /* P2_KDIV67 */
  1269. #define RSTV0910_P2_KDIV67 0xf344
  1270. #define FSTV0910_P2_K_DIVIDER_67 0xf344007f
  1271. /* P2_KDIV78 */
  1272. #define RSTV0910_P2_KDIV78 0xf345
  1273. #define FSTV0910_P2_K_DIVIDER_78 0xf345007f
  1274. /* P2_TSPIDFLT1 */
  1275. #define RSTV0910_P2_TSPIDFLT1 0xf346
  1276. #define FSTV0910_P2_PIDFLT_ADDR 0xf34600ff
  1277. /* P2_TSPIDFLT0 */
  1278. #define RSTV0910_P2_TSPIDFLT0 0xf347
  1279. #define FSTV0910_P2_PIDFLT_DATA 0xf34700ff
  1280. /* P2_PDELCTRL0 */
  1281. #define RSTV0910_P2_PDELCTRL0 0xf34f
  1282. #define FSTV0910_P2_ISIOBS_MODE 0xf34f4030
  1283. /* P2_PDELCTRL1 */
  1284. #define RSTV0910_P2_PDELCTRL1 0xf350
  1285. #define FSTV0910_P2_INV_MISMASK 0xf3507080
  1286. #define FSTV0910_P2_FILTER_EN 0xf3505020
  1287. #define FSTV0910_P2_HYSTEN 0xf3503008
  1288. #define FSTV0910_P2_HYSTSWRST 0xf3502004
  1289. #define FSTV0910_P2_EN_MIS00 0xf3501002
  1290. #define FSTV0910_P2_ALGOSWRST 0xf3500001
  1291. /* P2_PDELCTRL2 */
  1292. #define RSTV0910_P2_PDELCTRL2 0xf351
  1293. #define FSTV0910_P2_FORCE_CONTINUOUS 0xf3517080
  1294. #define FSTV0910_P2_RESET_UPKO_COUNT 0xf3516040
  1295. #define FSTV0910_P2_USER_PKTDELIN_NB 0xf3515020
  1296. #define FSTV0910_P2_FRAME_MODE 0xf3511002
  1297. /* P2_HYSTTHRESH */
  1298. #define RSTV0910_P2_HYSTTHRESH 0xf354
  1299. #define FSTV0910_P2_DELIN_LOCKTHRES 0xf35440f0
  1300. #define FSTV0910_P2_DELIN_UNLOCKTHRES 0xf354000f
  1301. /* P2_UPLCCST0 */
  1302. #define RSTV0910_P2_UPLCCST0 0xf358
  1303. #define FSTV0910_P2_UPL_CST0 0xf35830f8
  1304. #define FSTV0910_P2_UPL_MODE 0xf3580007
  1305. /* P2_ISIENTRY */
  1306. #define RSTV0910_P2_ISIENTRY 0xf35e
  1307. #define FSTV0910_P2_ISI_ENTRY 0xf35e00ff
  1308. /* P2_ISIBITENA */
  1309. #define RSTV0910_P2_ISIBITENA 0xf35f
  1310. #define FSTV0910_P2_ISI_BIT_EN 0xf35f00ff
  1311. /* P2_MATSTR1 */
  1312. #define RSTV0910_P2_MATSTR1 0xf360
  1313. #define FSTV0910_P2_MATYPE_CURRENT1 0xf36000ff
  1314. /* P2_MATSTR0 */
  1315. #define RSTV0910_P2_MATSTR0 0xf361
  1316. #define FSTV0910_P2_MATYPE_CURRENT0 0xf36100ff
  1317. /* P2_UPLSTR1 */
  1318. #define RSTV0910_P2_UPLSTR1 0xf362
  1319. #define FSTV0910_P2_UPL_CURRENT1 0xf36200ff
  1320. /* P2_UPLSTR0 */
  1321. #define RSTV0910_P2_UPLSTR0 0xf363
  1322. #define FSTV0910_P2_UPL_CURRENT0 0xf36300ff
  1323. /* P2_DFLSTR1 */
  1324. #define RSTV0910_P2_DFLSTR1 0xf364
  1325. #define FSTV0910_P2_DFL_CURRENT1 0xf36400ff
  1326. /* P2_DFLSTR0 */
  1327. #define RSTV0910_P2_DFLSTR0 0xf365
  1328. #define FSTV0910_P2_DFL_CURRENT0 0xf36500ff
  1329. /* P2_SYNCSTR */
  1330. #define RSTV0910_P2_SYNCSTR 0xf366
  1331. #define FSTV0910_P2_SYNC_CURRENT 0xf36600ff
  1332. /* P2_SYNCDSTR1 */
  1333. #define RSTV0910_P2_SYNCDSTR1 0xf367
  1334. #define FSTV0910_P2_SYNCD_CURRENT1 0xf36700ff
  1335. /* P2_SYNCDSTR0 */
  1336. #define RSTV0910_P2_SYNCDSTR0 0xf368
  1337. #define FSTV0910_P2_SYNCD_CURRENT0 0xf36800ff
  1338. /* P2_PDELSTATUS1 */
  1339. #define RSTV0910_P2_PDELSTATUS1 0xf369
  1340. #define FSTV0910_P2_PKTDELIN_DELOCK 0xf3697080
  1341. #define FSTV0910_P2_SYNCDUPDFL_BADDFL 0xf3696040
  1342. #define FSTV0910_P2_UNACCEPTED_STREAM 0xf3694010
  1343. #define FSTV0910_P2_BCH_ERROR_FLAG 0xf3693008
  1344. #define FSTV0910_P2_PKTDELIN_LOCK 0xf3691002
  1345. #define FSTV0910_P2_FIRST_LOCK 0xf3690001
  1346. /* P2_PDELSTATUS2 */
  1347. #define RSTV0910_P2_PDELSTATUS2 0xf36a
  1348. #define FSTV0910_P2_FRAME_MODCOD 0xf36a207c
  1349. #define FSTV0910_P2_FRAME_TYPE 0xf36a0003
  1350. /* P2_BBFCRCKO1 */
  1351. #define RSTV0910_P2_BBFCRCKO1 0xf36b
  1352. #define FSTV0910_P2_BBHCRC_KOCNT1 0xf36b00ff
  1353. /* P2_BBFCRCKO0 */
  1354. #define RSTV0910_P2_BBFCRCKO0 0xf36c
  1355. #define FSTV0910_P2_BBHCRC_KOCNT0 0xf36c00ff
  1356. /* P2_UPCRCKO1 */
  1357. #define RSTV0910_P2_UPCRCKO1 0xf36d
  1358. #define FSTV0910_P2_PKTCRC_KOCNT1 0xf36d00ff
  1359. /* P2_UPCRCKO0 */
  1360. #define RSTV0910_P2_UPCRCKO0 0xf36e
  1361. #define FSTV0910_P2_PKTCRC_KOCNT0 0xf36e00ff
  1362. /* P2_PDELCTRL3 */
  1363. #define RSTV0910_P2_PDELCTRL3 0xf36f
  1364. #define FSTV0910_P2_NOFIFO_BCHERR 0xf36f5020
  1365. #define FSTV0910_P2_PKTDELIN_DELACMERR 0xf36f4010
  1366. /* P2_TSSTATEM */
  1367. #define RSTV0910_P2_TSSTATEM 0xf370
  1368. #define FSTV0910_P2_TSDIL_ON 0xf3707080
  1369. #define FSTV0910_P2_TSRS_ON 0xf3705020
  1370. #define FSTV0910_P2_TSDESCRAMB_ON 0xf3704010
  1371. #define FSTV0910_P2_TSFRAME_MODE 0xf3703008
  1372. #define FSTV0910_P2_TS_DISABLE 0xf3702004
  1373. #define FSTV0910_P2_TSACM_MODE 0xf3701002
  1374. #define FSTV0910_P2_TSOUT_NOSYNC 0xf3700001
  1375. /* P2_TSSTATEL */
  1376. #define RSTV0910_P2_TSSTATEL 0xf371
  1377. #define FSTV0910_P2_TSNOSYNCBYTE 0xf3717080
  1378. #define FSTV0910_P2_TSPARITY_ON 0xf3716040
  1379. #define FSTV0910_P2_TSISSYI_ON 0xf3713008
  1380. #define FSTV0910_P2_TSNPD_ON 0xf3712004
  1381. #define FSTV0910_P2_TSCRC8_ON 0xf3711002
  1382. #define FSTV0910_P2_TSDSS_PACKET 0xf3710001
  1383. /* P2_TSCFGH */
  1384. #define RSTV0910_P2_TSCFGH 0xf372
  1385. #define FSTV0910_P2_TSFIFO_DVBCI 0xf3727080
  1386. #define FSTV0910_P2_TSFIFO_SERIAL 0xf3726040
  1387. #define FSTV0910_P2_TSFIFO_TEIUPDATE 0xf3725020
  1388. #define FSTV0910_P2_TSFIFO_DUTY50 0xf3724010
  1389. #define FSTV0910_P2_TSFIFO_HSGNLOUT 0xf3723008
  1390. #define FSTV0910_P2_TSFIFO_ERRMODE 0xf3721006
  1391. #define FSTV0910_P2_RST_HWARE 0xf3720001
  1392. /* P2_TSCFGM */
  1393. #define RSTV0910_P2_TSCFGM 0xf373
  1394. #define FSTV0910_P2_TSFIFO_MANSPEED 0xf37360c0
  1395. #define FSTV0910_P2_TSFIFO_PERMDATA 0xf3735020
  1396. #define FSTV0910_P2_TSFIFO_NONEWSGNL 0xf3734010
  1397. #define FSTV0910_P2_TSFIFO_INVDATA 0xf3730001
  1398. /* P2_TSCFGL */
  1399. #define RSTV0910_P2_TSCFGL 0xf374
  1400. #define FSTV0910_P2_TSFIFO_BCLKDEL1CK 0xf37460c0
  1401. #define FSTV0910_P2_BCHERROR_MODE 0xf3744030
  1402. #define FSTV0910_P2_TSFIFO_NSGNL2DATA 0xf3743008
  1403. #define FSTV0910_P2_TSFIFO_EMBINDVB 0xf3742004
  1404. #define FSTV0910_P2_TSFIFO_BITSPEED 0xf3740003
  1405. /* P2_TSSYNC */
  1406. #define RSTV0910_P2_TSSYNC 0xf375
  1407. #define FSTV0910_P2_TSFIFO_SYNCMODE 0xf3753018
  1408. /* P2_TSINSDELH */
  1409. #define RSTV0910_P2_TSINSDELH 0xf376
  1410. #define FSTV0910_P2_TSDEL_SYNCBYTE 0xf3767080
  1411. #define FSTV0910_P2_TSDEL_XXHEADER 0xf3766040
  1412. #define FSTV0910_P2_TSDEL_DATAFIELD 0xf3764010
  1413. #define FSTV0910_P2_TSINSDEL_RSPARITY 0xf3761002
  1414. #define FSTV0910_P2_TSINSDEL_CRC8 0xf3760001
  1415. /* P2_TSINSDELM */
  1416. #define RSTV0910_P2_TSINSDELM 0xf377
  1417. #define FSTV0910_P2_TSINS_EMODCOD 0xf3774010
  1418. #define FSTV0910_P2_TSINS_TOKEN 0xf3773008
  1419. #define FSTV0910_P2_TSINS_XXXERR 0xf3772004
  1420. #define FSTV0910_P2_TSINS_MATYPE 0xf3771002
  1421. #define FSTV0910_P2_TSINS_UPL 0xf3770001
  1422. /* P2_TSINSDELL */
  1423. #define RSTV0910_P2_TSINSDELL 0xf378
  1424. #define FSTV0910_P2_TSINS_DFL 0xf3787080
  1425. #define FSTV0910_P2_TSINS_SYNCD 0xf3786040
  1426. #define FSTV0910_P2_TSINS_BLOCLEN 0xf3785020
  1427. #define FSTV0910_P2_TSINS_SIGPCOUNT 0xf3784010
  1428. #define FSTV0910_P2_TSINS_FIFO 0xf3783008
  1429. #define FSTV0910_P2_TSINS_REALPACK 0xf3782004
  1430. #define FSTV0910_P2_TSINS_TSCONFIG 0xf3781002
  1431. #define FSTV0910_P2_TSINS_LATENCY 0xf3780001
  1432. /* P2_TSDIVN */
  1433. #define RSTV0910_P2_TSDIVN 0xf379
  1434. #define FSTV0910_P2_TSFIFO_SPEEDMODE 0xf37960c0
  1435. #define FSTV0910_P2_TSFIFO_RISEOK 0xf3790007
  1436. /* P2_TSCFG4 */
  1437. #define RSTV0910_P2_TSCFG4 0xf37a
  1438. #define FSTV0910_P2_TSFIFO_TSSPEEDMODE 0xf37a60c0
  1439. /* P2_TSSPEED */
  1440. #define RSTV0910_P2_TSSPEED 0xf380
  1441. #define FSTV0910_P2_TSFIFO_OUTSPEED 0xf38000ff
  1442. /* P2_TSSTATUS */
  1443. #define RSTV0910_P2_TSSTATUS 0xf381
  1444. #define FSTV0910_P2_TSFIFO_LINEOK 0xf3817080
  1445. #define FSTV0910_P2_TSFIFO_ERROR 0xf3816040
  1446. #define FSTV0910_P2_TSFIFO_NOSYNC 0xf3814010
  1447. #define FSTV0910_P2_TSREGUL_ERROR 0xf3812004
  1448. #define FSTV0910_P2_DIL_READY 0xf3810001
  1449. /* P2_TSSTATUS2 */
  1450. #define RSTV0910_P2_TSSTATUS2 0xf382
  1451. #define FSTV0910_P2_TSFIFO_DEMODSEL 0xf3827080
  1452. #define FSTV0910_P2_TSFIFOSPEED_STORE 0xf3826040
  1453. #define FSTV0910_P2_DILXX_RESET 0xf3825020
  1454. #define FSTV0910_P2_SCRAMBDETECT 0xf3821002
  1455. /* P2_TSBITRATE1 */
  1456. #define RSTV0910_P2_TSBITRATE1 0xf383
  1457. #define FSTV0910_P2_TSFIFO_BITRATE1 0xf38300ff
  1458. /* P2_TSBITRATE0 */
  1459. #define RSTV0910_P2_TSBITRATE0 0xf384
  1460. #define FSTV0910_P2_TSFIFO_BITRATE0 0xf38400ff
  1461. /* P2_TSPACKLEN1 */
  1462. #define RSTV0910_P2_TSPACKLEN1 0xf385
  1463. #define FSTV0910_P2_TSFIFO_PACKCPT 0xf38550e0
  1464. /* P2_TSDLY2 */
  1465. #define RSTV0910_P2_TSDLY2 0xf389
  1466. #define FSTV0910_P2_SOFFIFO_LATENCY2 0xf389000f
  1467. /* P2_TSDLY1 */
  1468. #define RSTV0910_P2_TSDLY1 0xf38a
  1469. #define FSTV0910_P2_SOFFIFO_LATENCY1 0xf38a00ff
  1470. /* P2_TSDLY0 */
  1471. #define RSTV0910_P2_TSDLY0 0xf38b
  1472. #define FSTV0910_P2_SOFFIFO_LATENCY0 0xf38b00ff
  1473. /* P2_TSNPDAV */
  1474. #define RSTV0910_P2_TSNPDAV 0xf38c
  1475. #define FSTV0910_P2_TSNPD_AVERAGE 0xf38c00ff
  1476. /* P2_TSBUFSTAT2 */
  1477. #define RSTV0910_P2_TSBUFSTAT2 0xf38d
  1478. #define FSTV0910_P2_TSISCR_3BYTES 0xf38d7080
  1479. #define FSTV0910_P2_TSISCR_NEWDATA 0xf38d6040
  1480. #define FSTV0910_P2_TSISCR_BUFSTAT2 0xf38d003f
  1481. /* P2_TSBUFSTAT1 */
  1482. #define RSTV0910_P2_TSBUFSTAT1 0xf38e
  1483. #define FSTV0910_P2_TSISCR_BUFSTAT1 0xf38e00ff
  1484. /* P2_TSBUFSTAT0 */
  1485. #define RSTV0910_P2_TSBUFSTAT0 0xf38f
  1486. #define FSTV0910_P2_TSISCR_BUFSTAT0 0xf38f00ff
  1487. /* P2_TSDEBUGL */
  1488. #define RSTV0910_P2_TSDEBUGL 0xf391
  1489. #define FSTV0910_P2_TSFIFO_ERROR_EVNT 0xf3912004
  1490. #define FSTV0910_P2_TSFIFO_OVERFLOWM 0xf3910001
  1491. /* P2_TSDLYSET2 */
  1492. #define RSTV0910_P2_TSDLYSET2 0xf392
  1493. #define FSTV0910_P2_SOFFIFO_OFFSET 0xf39260c0
  1494. #define FSTV0910_P2_HYSTERESIS_THRESHOLD 0xf3924030
  1495. #define FSTV0910_P2_SOFFIFO_SYMBOFFS2 0xf392000f
  1496. /* P2_TSDLYSET1 */
  1497. #define RSTV0910_P2_TSDLYSET1 0xf393
  1498. #define FSTV0910_P2_SOFFIFO_SYMBOFFS1 0xf39300ff
  1499. /* P2_TSDLYSET0 */
  1500. #define RSTV0910_P2_TSDLYSET0 0xf394
  1501. #define FSTV0910_P2_SOFFIFO_SYMBOFFS0 0xf39400ff
  1502. /* P2_ERRCTRL1 */
  1503. #define RSTV0910_P2_ERRCTRL1 0xf398
  1504. #define FSTV0910_P2_ERR_SOURCE1 0xf39840f0
  1505. #define FSTV0910_P2_NUM_EVENT1 0xf3980007
  1506. /* P2_ERRCNT12 */
  1507. #define RSTV0910_P2_ERRCNT12 0xf399
  1508. #define FSTV0910_P2_ERRCNT1_OLDVALUE 0xf3997080
  1509. #define FSTV0910_P2_ERR_CNT12 0xf399007f
  1510. /* P2_ERRCNT11 */
  1511. #define RSTV0910_P2_ERRCNT11 0xf39a
  1512. #define FSTV0910_P2_ERR_CNT11 0xf39a00ff
  1513. /* P2_ERRCNT10 */
  1514. #define RSTV0910_P2_ERRCNT10 0xf39b
  1515. #define FSTV0910_P2_ERR_CNT10 0xf39b00ff
  1516. /* P2_ERRCTRL2 */
  1517. #define RSTV0910_P2_ERRCTRL2 0xf39c
  1518. #define FSTV0910_P2_ERR_SOURCE2 0xf39c40f0
  1519. #define FSTV0910_P2_NUM_EVENT2 0xf39c0007
  1520. /* P2_ERRCNT22 */
  1521. #define RSTV0910_P2_ERRCNT22 0xf39d
  1522. #define FSTV0910_P2_ERRCNT2_OLDVALUE 0xf39d7080
  1523. #define FSTV0910_P2_ERR_CNT22 0xf39d007f
  1524. /* P2_ERRCNT21 */
  1525. #define RSTV0910_P2_ERRCNT21 0xf39e
  1526. #define FSTV0910_P2_ERR_CNT21 0xf39e00ff
  1527. /* P2_ERRCNT20 */
  1528. #define RSTV0910_P2_ERRCNT20 0xf39f
  1529. #define FSTV0910_P2_ERR_CNT20 0xf39f00ff
  1530. /* P2_FECSPY */
  1531. #define RSTV0910_P2_FECSPY 0xf3a0
  1532. #define FSTV0910_P2_SPY_ENABLE 0xf3a07080
  1533. #define FSTV0910_P2_NO_SYNCBYTE 0xf3a06040
  1534. #define FSTV0910_P2_SERIAL_MODE 0xf3a05020
  1535. #define FSTV0910_P2_UNUSUAL_PACKET 0xf3a04010
  1536. #define FSTV0910_P2_BERMETER_DATAMODE 0xf3a0200c
  1537. #define FSTV0910_P2_BERMETER_LMODE 0xf3a01002
  1538. #define FSTV0910_P2_BERMETER_RESET 0xf3a00001
  1539. /* P2_FSPYCFG */
  1540. #define RSTV0910_P2_FSPYCFG 0xf3a1
  1541. #define FSTV0910_P2_FECSPY_INPUT 0xf3a160c0
  1542. #define FSTV0910_P2_RST_ON_ERROR 0xf3a15020
  1543. #define FSTV0910_P2_ONE_SHOT 0xf3a14010
  1544. #define FSTV0910_P2_I2C_MODE 0xf3a1200c
  1545. #define FSTV0910_P2_SPY_HYSTERESIS 0xf3a10003
  1546. /* P2_FSPYDATA */
  1547. #define RSTV0910_P2_FSPYDATA 0xf3a2
  1548. #define FSTV0910_P2_SPY_STUFFING 0xf3a27080
  1549. #define FSTV0910_P2_SPY_CNULLPKT 0xf3a25020
  1550. #define FSTV0910_P2_SPY_OUTDATA_MODE 0xf3a2001f
  1551. /* P2_FSPYOUT */
  1552. #define RSTV0910_P2_FSPYOUT 0xf3a3
  1553. #define FSTV0910_P2_FSPY_DIRECT 0xf3a37080
  1554. #define FSTV0910_P2_STUFF_MODE 0xf3a30007
  1555. /* P2_FSTATUS */
  1556. #define RSTV0910_P2_FSTATUS 0xf3a4
  1557. #define FSTV0910_P2_SPY_ENDSIM 0xf3a47080
  1558. #define FSTV0910_P2_VALID_SIM 0xf3a46040
  1559. #define FSTV0910_P2_FOUND_SIGNAL 0xf3a45020
  1560. #define FSTV0910_P2_DSS_SYNCBYTE 0xf3a44010
  1561. #define FSTV0910_P2_RESULT_STATE 0xf3a4000f
  1562. /* P2_FBERCPT4 */
  1563. #define RSTV0910_P2_FBERCPT4 0xf3a8
  1564. #define FSTV0910_P2_FBERMETER_CPT4 0xf3a800ff
  1565. /* P2_FBERCPT3 */
  1566. #define RSTV0910_P2_FBERCPT3 0xf3a9
  1567. #define FSTV0910_P2_FBERMETER_CPT3 0xf3a900ff
  1568. /* P2_FBERCPT2 */
  1569. #define RSTV0910_P2_FBERCPT2 0xf3aa
  1570. #define FSTV0910_P2_FBERMETER_CPT2 0xf3aa00ff
  1571. /* P2_FBERCPT1 */
  1572. #define RSTV0910_P2_FBERCPT1 0xf3ab
  1573. #define FSTV0910_P2_FBERMETER_CPT1 0xf3ab00ff
  1574. /* P2_FBERCPT0 */
  1575. #define RSTV0910_P2_FBERCPT0 0xf3ac
  1576. #define FSTV0910_P2_FBERMETER_CPT0 0xf3ac00ff
  1577. /* P2_FBERERR2 */
  1578. #define RSTV0910_P2_FBERERR2 0xf3ad
  1579. #define FSTV0910_P2_FBERMETER_ERR2 0xf3ad00ff
  1580. /* P2_FBERERR1 */
  1581. #define RSTV0910_P2_FBERERR1 0xf3ae
  1582. #define FSTV0910_P2_FBERMETER_ERR1 0xf3ae00ff
  1583. /* P2_FBERERR0 */
  1584. #define RSTV0910_P2_FBERERR0 0xf3af
  1585. #define FSTV0910_P2_FBERMETER_ERR0 0xf3af00ff
  1586. /* P2_FSPYBER */
  1587. #define RSTV0910_P2_FSPYBER 0xf3b2
  1588. #define FSTV0910_P2_FSPYBER_SYNCBYTE 0xf3b24010
  1589. #define FSTV0910_P2_FSPYBER_UNSYNC 0xf3b23008
  1590. #define FSTV0910_P2_FSPYBER_CTIME 0xf3b20007
  1591. /* P2_SFERROR */
  1592. #define RSTV0910_P2_SFERROR 0xf3c1
  1593. #define FSTV0910_P2_SFEC_REGERR_VIT 0xf3c100ff
  1594. /* P2_SFECSTATUS */
  1595. #define RSTV0910_P2_SFECSTATUS 0xf3c3
  1596. #define FSTV0910_P2_SFEC_ON 0xf3c37080
  1597. #define FSTV0910_P2_SFEC_OFF 0xf3c36040
  1598. #define FSTV0910_P2_LOCKEDSFEC 0xf3c33008
  1599. #define FSTV0910_P2_SFEC_DELOCK 0xf3c32004
  1600. #define FSTV0910_P2_SFEC_DEMODSEL 0xf3c31002
  1601. #define FSTV0910_P2_SFEC_OVFON 0xf3c30001
  1602. /* P2_SFKDIV12 */
  1603. #define RSTV0910_P2_SFKDIV12 0xf3c4
  1604. #define FSTV0910_P2_SFECKDIV12_MAN 0xf3c47080
  1605. /* P2_SFKDIV23 */
  1606. #define RSTV0910_P2_SFKDIV23 0xf3c5
  1607. #define FSTV0910_P2_SFECKDIV23_MAN 0xf3c57080
  1608. /* P2_SFKDIV34 */
  1609. #define RSTV0910_P2_SFKDIV34 0xf3c6
  1610. #define FSTV0910_P2_SFECKDIV34_MAN 0xf3c67080
  1611. /* P2_SFKDIV56 */
  1612. #define RSTV0910_P2_SFKDIV56 0xf3c7
  1613. #define FSTV0910_P2_SFECKDIV56_MAN 0xf3c77080
  1614. /* P2_SFKDIV67 */
  1615. #define RSTV0910_P2_SFKDIV67 0xf3c8
  1616. #define FSTV0910_P2_SFECKDIV67_MAN 0xf3c87080
  1617. /* P2_SFKDIV78 */
  1618. #define RSTV0910_P2_SFKDIV78 0xf3c9
  1619. #define FSTV0910_P2_SFECKDIV78_MAN 0xf3c97080
  1620. /* P2_SFSTATUS */
  1621. #define RSTV0910_P2_SFSTATUS 0xf3cc
  1622. #define FSTV0910_P2_SFEC_LINEOK 0xf3cc7080
  1623. #define FSTV0910_P2_SFEC_ERROR 0xf3cc6040
  1624. #define FSTV0910_P2_SFEC_DATA7 0xf3cc5020
  1625. #define FSTV0910_P2_SFEC_PKTDNBRFAIL 0xf3cc4010
  1626. #define FSTV0910_P2_TSSFEC_DEMODSEL 0xf3cc3008
  1627. #define FSTV0910_P2_SFEC_NOSYNC 0xf3cc2004
  1628. #define FSTV0910_P2_SFEC_UNREGULA 0xf3cc1002
  1629. #define FSTV0910_P2_SFEC_READY 0xf3cc0001
  1630. /* P2_SFDLYSET2 */
  1631. #define RSTV0910_P2_SFDLYSET2 0xf3d0
  1632. #define FSTV0910_P2_SFEC_DISABLE 0xf3d01002
  1633. /* P2_SFERRCTRL */
  1634. #define RSTV0910_P2_SFERRCTRL 0xf3d8
  1635. #define FSTV0910_P2_SFEC_ERR_SOURCE 0xf3d840f0
  1636. #define FSTV0910_P2_SFEC_NUM_EVENT 0xf3d80007
  1637. /* P2_SFERRCNT2 */
  1638. #define RSTV0910_P2_SFERRCNT2 0xf3d9
  1639. #define FSTV0910_P2_SFERRC_OLDVALUE 0xf3d97080
  1640. #define FSTV0910_P2_SFEC_ERR_CNT2 0xf3d9007f
  1641. /* P2_SFERRCNT1 */
  1642. #define RSTV0910_P2_SFERRCNT1 0xf3da
  1643. #define FSTV0910_P2_SFEC_ERR_CNT1 0xf3da00ff
  1644. /* P2_SFERRCNT0 */
  1645. #define RSTV0910_P2_SFERRCNT0 0xf3db
  1646. #define FSTV0910_P2_SFEC_ERR_CNT0 0xf3db00ff
  1647. /* P1_IQCONST */
  1648. #define RSTV0910_P1_IQCONST 0xf400
  1649. #define FSTV0910_P1_CONSTEL_SELECT 0xf4005060
  1650. #define FSTV0910_P1_IQSYMB_SEL 0xf400001f
  1651. /* P1_NOSCFG */
  1652. #define RSTV0910_P1_NOSCFG 0xf401
  1653. #define FSTV0910_P1_DUMMYPL_NOSDATA 0xf4015020
  1654. #define FSTV0910_P1_NOSPLH_BETA 0xf4013018
  1655. #define FSTV0910_P1_NOSDATA_BETA 0xf4010007
  1656. /* P1_ISYMB */
  1657. #define RSTV0910_P1_ISYMB 0xf402
  1658. #define FSTV0910_P1_I_SYMBOL 0xf40201ff
  1659. /* P1_QSYMB */
  1660. #define RSTV0910_P1_QSYMB 0xf403
  1661. #define FSTV0910_P1_Q_SYMBOL 0xf40301ff
  1662. /* P1_AGC1CFG */
  1663. #define RSTV0910_P1_AGC1CFG 0xf404
  1664. #define FSTV0910_P1_DC_FROZEN 0xf4047080
  1665. #define FSTV0910_P1_DC_CORRECT 0xf4046040
  1666. #define FSTV0910_P1_AMM_FROZEN 0xf4045020
  1667. #define FSTV0910_P1_AMM_CORRECT 0xf4044010
  1668. #define FSTV0910_P1_QUAD_FROZEN 0xf4043008
  1669. #define FSTV0910_P1_QUAD_CORRECT 0xf4042004
  1670. /* P1_AGC1CN */
  1671. #define RSTV0910_P1_AGC1CN 0xf406
  1672. #define FSTV0910_P1_AGC1_LOCKED 0xf4067080
  1673. #define FSTV0910_P1_AGC1_MINPOWER 0xf4064010
  1674. #define FSTV0910_P1_AGCOUT_FAST 0xf4063008
  1675. #define FSTV0910_P1_AGCIQ_BETA 0xf4060007
  1676. /* P1_AGC1REF */
  1677. #define RSTV0910_P1_AGC1REF 0xf407
  1678. #define FSTV0910_P1_AGCIQ_REF 0xf40700ff
  1679. /* P1_IDCCOMP */
  1680. #define RSTV0910_P1_IDCCOMP 0xf408
  1681. #define FSTV0910_P1_IAVERAGE_ADJ 0xf40801ff
  1682. /* P1_QDCCOMP */
  1683. #define RSTV0910_P1_QDCCOMP 0xf409
  1684. #define FSTV0910_P1_QAVERAGE_ADJ 0xf40901ff
  1685. /* P1_POWERI */
  1686. #define RSTV0910_P1_POWERI 0xf40a
  1687. #define FSTV0910_P1_POWER_I 0xf40a00ff
  1688. /* P1_POWERQ */
  1689. #define RSTV0910_P1_POWERQ 0xf40b
  1690. #define FSTV0910_P1_POWER_Q 0xf40b00ff
  1691. /* P1_AGC1AMM */
  1692. #define RSTV0910_P1_AGC1AMM 0xf40c
  1693. #define FSTV0910_P1_AMM_VALUE 0xf40c00ff
  1694. /* P1_AGC1QUAD */
  1695. #define RSTV0910_P1_AGC1QUAD 0xf40d
  1696. #define FSTV0910_P1_QUAD_VALUE 0xf40d01ff
  1697. /* P1_AGCIQIN1 */
  1698. #define RSTV0910_P1_AGCIQIN1 0xf40e
  1699. #define FSTV0910_P1_AGCIQ_VALUE1 0xf40e00ff
  1700. /* P1_AGCIQIN0 */
  1701. #define RSTV0910_P1_AGCIQIN0 0xf40f
  1702. #define FSTV0910_P1_AGCIQ_VALUE0 0xf40f00ff
  1703. /* P1_DEMOD */
  1704. #define RSTV0910_P1_DEMOD 0xf410
  1705. #define FSTV0910_P1_MANUALS2_ROLLOFF 0xf4107080
  1706. #define FSTV0910_P1_SPECINV_CONTROL 0xf4104030
  1707. #define FSTV0910_P1_MANUALSX_ROLLOFF 0xf4102004
  1708. #define FSTV0910_P1_ROLLOFF_CONTROL 0xf4100003
  1709. /* P1_DMDMODCOD */
  1710. #define RSTV0910_P1_DMDMODCOD 0xf411
  1711. #define FSTV0910_P1_MANUAL_MODCOD 0xf4117080
  1712. #define FSTV0910_P1_DEMOD_MODCOD 0xf411207c
  1713. #define FSTV0910_P1_DEMOD_TYPE 0xf4110003
  1714. /* P1_DSTATUS */
  1715. #define RSTV0910_P1_DSTATUS 0xf412
  1716. #define FSTV0910_P1_CAR_LOCK 0xf4127080
  1717. #define FSTV0910_P1_TMGLOCK_QUALITY 0xf4125060
  1718. #define FSTV0910_P1_LOCK_DEFINITIF 0xf4123008
  1719. #define FSTV0910_P1_OVADC_DETECT 0xf4120001
  1720. /* P1_DSTATUS2 */
  1721. #define RSTV0910_P1_DSTATUS2 0xf413
  1722. #define FSTV0910_P1_DEMOD_DELOCK 0xf4137080
  1723. #define FSTV0910_P1_MODCODRQ_SYNCTAG 0xf4135020
  1724. #define FSTV0910_P1_POLYPH_SATEVENT 0xf4134010
  1725. #define FSTV0910_P1_AGC1_NOSIGNALACK 0xf4133008
  1726. #define FSTV0910_P1_AGC2_OVERFLOW 0xf4132004
  1727. #define FSTV0910_P1_CFR_OVERFLOW 0xf4131002
  1728. #define FSTV0910_P1_GAMMA_OVERUNDER 0xf4130001
  1729. /* P1_DMDCFGMD */
  1730. #define RSTV0910_P1_DMDCFGMD 0xf414
  1731. #define FSTV0910_P1_DVBS2_ENABLE 0xf4147080
  1732. #define FSTV0910_P1_DVBS1_ENABLE 0xf4146040
  1733. #define FSTV0910_P1_SCAN_ENABLE 0xf4144010
  1734. #define FSTV0910_P1_CFR_AUTOSCAN 0xf4143008
  1735. #define FSTV0910_P1_TUN_RNG 0xf4140003
  1736. /* P1_DMDCFG2 */
  1737. #define RSTV0910_P1_DMDCFG2 0xf415
  1738. #define FSTV0910_P1_S1S2_SEQUENTIAL 0xf4156040
  1739. #define FSTV0910_P1_INFINITE_RELOCK 0xf4154010
  1740. /* P1_DMDISTATE */
  1741. #define RSTV0910_P1_DMDISTATE 0xf416
  1742. #define FSTV0910_P1_I2C_NORESETDMODE 0xf4167080
  1743. #define FSTV0910_P1_I2C_DEMOD_MODE 0xf416001f
  1744. /* P1_DMDT0M */
  1745. #define RSTV0910_P1_DMDT0M 0xf417
  1746. #define FSTV0910_P1_DMDT0_MIN 0xf41700ff
  1747. /* P1_DMDSTATE */
  1748. #define RSTV0910_P1_DMDSTATE 0xf41b
  1749. #define FSTV0910_P1_HEADER_MODE 0xf41b5060
  1750. /* P1_DMDFLYW */
  1751. #define RSTV0910_P1_DMDFLYW 0xf41c
  1752. #define FSTV0910_P1_I2C_IRQVAL 0xf41c40f0
  1753. #define FSTV0910_P1_FLYWHEEL_CPT 0xf41c000f
  1754. /* P1_DSTATUS3 */
  1755. #define RSTV0910_P1_DSTATUS3 0xf41d
  1756. #define FSTV0910_P1_CFR_ZIGZAG 0xf41d7080
  1757. #define FSTV0910_P1_DEMOD_CFGMODE 0xf41d5060
  1758. #define FSTV0910_P1_GAMMA_LOWBAUDRATE 0xf41d4010
  1759. /* P1_DMDCFG3 */
  1760. #define RSTV0910_P1_DMDCFG3 0xf41e
  1761. #define FSTV0910_P1_NOSTOP_FIFOFULL 0xf41e3008
  1762. /* P1_DMDCFG4 */
  1763. #define RSTV0910_P1_DMDCFG4 0xf41f
  1764. #define FSTV0910_P1_DIS_VITLOCK 0xf41f7080
  1765. #define FSTV0910_P1_DIS_CLKENABLE 0xf41f2004
  1766. /* P1_CORRELMANT */
  1767. #define RSTV0910_P1_CORRELMANT 0xf420
  1768. #define FSTV0910_P1_CORREL_MANT 0xf42000ff
  1769. /* P1_CORRELABS */
  1770. #define RSTV0910_P1_CORRELABS 0xf421
  1771. #define FSTV0910_P1_CORREL_ABS 0xf42100ff
  1772. /* P1_CORRELEXP */
  1773. #define RSTV0910_P1_CORRELEXP 0xf422
  1774. #define FSTV0910_P1_CORREL_ABSEXP 0xf42240f0
  1775. #define FSTV0910_P1_CORREL_EXP 0xf422000f
  1776. /* P1_PLHMODCOD */
  1777. #define RSTV0910_P1_PLHMODCOD 0xf424
  1778. #define FSTV0910_P1_SPECINV_DEMOD 0xf4247080
  1779. #define FSTV0910_P1_PLH_MODCOD 0xf424207c
  1780. #define FSTV0910_P1_PLH_TYPE 0xf4240003
  1781. /* P1_DMDREG */
  1782. #define RSTV0910_P1_DMDREG 0xf425
  1783. #define FSTV0910_P1_DECIM_PLFRAMES 0xf4250001
  1784. /* P1_AGCNADJ */
  1785. #define RSTV0910_P1_AGCNADJ 0xf426
  1786. #define FSTV0910_P1_RADJOFF_AGC2 0xf4267080
  1787. #define FSTV0910_P1_RADJOFF_AGC1 0xf4266040
  1788. #define FSTV0910_P1_AGC_NADJ 0xf426013f
  1789. /* P1_AGCKS */
  1790. #define RSTV0910_P1_AGCKS 0xf427
  1791. #define FSTV0910_P1_RSADJ_MANUALCFG 0xf4277080
  1792. #define FSTV0910_P1_RSADJ_CCMMODE 0xf4276040
  1793. #define FSTV0910_P1_RADJ_SPSK 0xf427013f
  1794. /* P1_AGCKQ */
  1795. #define RSTV0910_P1_AGCKQ 0xf428
  1796. #define FSTV0910_P1_RADJON_DVBS1 0xf4286040
  1797. #define FSTV0910_P1_RADJ_QPSK 0xf428013f
  1798. /* P1_AGCK8 */
  1799. #define RSTV0910_P1_AGCK8 0xf429
  1800. #define FSTV0910_P1_RADJ_8PSK 0xf429013f
  1801. /* P1_AGCK16 */
  1802. #define RSTV0910_P1_AGCK16 0xf42a
  1803. #define FSTV0910_P1_R2ADJOFF_16APSK 0xf42a6040
  1804. #define FSTV0910_P1_R1ADJOFF_16APSK 0xf42a5020
  1805. #define FSTV0910_P1_RADJ_16APSK 0xf42a011f
  1806. /* P1_AGCK32 */
  1807. #define RSTV0910_P1_AGCK32 0xf42b
  1808. #define FSTV0910_P1_R3ADJOFF_32APSK 0xf42b7080
  1809. #define FSTV0910_P1_R2ADJOFF_32APSK 0xf42b6040
  1810. #define FSTV0910_P1_R1ADJOFF_32APSK 0xf42b5020
  1811. #define FSTV0910_P1_RADJ_32APSK 0xf42b011f
  1812. /* P1_AGC2O */
  1813. #define RSTV0910_P1_AGC2O 0xf42c
  1814. #define FSTV0910_P1_CSTENV_MODE 0xf42c60c0
  1815. #define FSTV0910_P1_AGC2_COEF 0xf42c0007
  1816. /* P1_AGC2REF */
  1817. #define RSTV0910_P1_AGC2REF 0xf42d
  1818. #define FSTV0910_P1_AGC2_REF 0xf42d00ff
  1819. /* P1_AGC1ADJ */
  1820. #define RSTV0910_P1_AGC1ADJ 0xf42e
  1821. #define FSTV0910_P1_AGC1_ADJUSTED 0xf42e007f
  1822. /* P1_AGCRSADJ */
  1823. #define RSTV0910_P1_AGCRSADJ 0xf42f
  1824. #define FSTV0910_P1_RS_ADJUSTED 0xf42f007f
  1825. /* P1_AGCRQADJ */
  1826. #define RSTV0910_P1_AGCRQADJ 0xf430
  1827. #define FSTV0910_P1_RQ_ADJUSTED 0xf430007f
  1828. /* P1_AGCR8ADJ */
  1829. #define RSTV0910_P1_AGCR8ADJ 0xf431
  1830. #define FSTV0910_P1_R8_ADJUSTED 0xf431007f
  1831. /* P1_AGCR1ADJ */
  1832. #define RSTV0910_P1_AGCR1ADJ 0xf432
  1833. #define FSTV0910_P1_R1_ADJUSTED 0xf432007f
  1834. /* P1_AGCR2ADJ */
  1835. #define RSTV0910_P1_AGCR2ADJ 0xf433
  1836. #define FSTV0910_P1_R2_ADJUSTED 0xf433007f
  1837. /* P1_AGCR3ADJ */
  1838. #define RSTV0910_P1_AGCR3ADJ 0xf434
  1839. #define FSTV0910_P1_R3_ADJUSTED 0xf434007f
  1840. /* P1_AGCREFADJ */
  1841. #define RSTV0910_P1_AGCREFADJ 0xf435
  1842. #define FSTV0910_P1_AGC2REF_ADJUSTED 0xf435007f
  1843. /* P1_AGC2I1 */
  1844. #define RSTV0910_P1_AGC2I1 0xf436
  1845. #define FSTV0910_P1_AGC2_INTEGRATOR1 0xf43600ff
  1846. /* P1_AGC2I0 */
  1847. #define RSTV0910_P1_AGC2I0 0xf437
  1848. #define FSTV0910_P1_AGC2_INTEGRATOR0 0xf43700ff
  1849. /* P1_CARCFG */
  1850. #define RSTV0910_P1_CARCFG 0xf438
  1851. #define FSTV0910_P1_ROTAON 0xf4382004
  1852. #define FSTV0910_P1_PH_DET_ALGO 0xf4380003
  1853. /* P1_ACLC */
  1854. #define RSTV0910_P1_ACLC 0xf439
  1855. #define FSTV0910_P1_CAR_ALPHA_MANT 0xf4394030
  1856. #define FSTV0910_P1_CAR_ALPHA_EXP 0xf439000f
  1857. /* P1_BCLC */
  1858. #define RSTV0910_P1_BCLC 0xf43a
  1859. #define FSTV0910_P1_CAR_BETA_MANT 0xf43a4030
  1860. #define FSTV0910_P1_CAR_BETA_EXP 0xf43a000f
  1861. /* P1_ACLCS2 */
  1862. #define RSTV0910_P1_ACLCS2 0xf43b
  1863. #define FSTV0910_P1_CARS2_APLHA_MANTISSE 0xf43b4030
  1864. #define FSTV0910_P1_CARS2_ALPHA_EXP 0xf43b000f
  1865. /* P1_BCLCS2 */
  1866. #define RSTV0910_P1_BCLCS2 0xf43c
  1867. #define FSTV0910_P1_CARS2_BETA_MANTISSE 0xf43c4030
  1868. #define FSTV0910_P1_CARS2_BETA_EXP 0xf43c000f
  1869. /* P1_CARFREQ */
  1870. #define RSTV0910_P1_CARFREQ 0xf43d
  1871. #define FSTV0910_P1_KC_COARSE_EXP 0xf43d40f0
  1872. #define FSTV0910_P1_BETA_FREQ 0xf43d000f
  1873. /* P1_CARHDR */
  1874. #define RSTV0910_P1_CARHDR 0xf43e
  1875. #define FSTV0910_P1_K_FREQ_HDR 0xf43e00ff
  1876. /* P1_LDT */
  1877. #define RSTV0910_P1_LDT 0xf43f
  1878. #define FSTV0910_P1_CARLOCK_THRES 0xf43f01ff
  1879. /* P1_LDT2 */
  1880. #define RSTV0910_P1_LDT2 0xf440
  1881. #define FSTV0910_P1_CARLOCK_THRES2 0xf44001ff
  1882. /* P1_CFRICFG */
  1883. #define RSTV0910_P1_CFRICFG 0xf441
  1884. #define FSTV0910_P1_NEG_CFRSTEP 0xf4410001
  1885. /* P1_CFRUP1 */
  1886. #define RSTV0910_P1_CFRUP1 0xf442
  1887. #define FSTV0910_P1_CFR_UP1 0xf44201ff
  1888. /* P1_CFRUP0 */
  1889. #define RSTV0910_P1_CFRUP0 0xf443
  1890. #define FSTV0910_P1_CFR_UP0 0xf44300ff
  1891. /* P1_CFRIBASE1 */
  1892. #define RSTV0910_P1_CFRIBASE1 0xf444
  1893. #define FSTV0910_P1_CFRINIT_BASE1 0xf44400ff
  1894. /* P1_CFRIBASE0 */
  1895. #define RSTV0910_P1_CFRIBASE0 0xf445
  1896. #define FSTV0910_P1_CFRINIT_BASE0 0xf44500ff
  1897. /* P1_CFRLOW1 */
  1898. #define RSTV0910_P1_CFRLOW1 0xf446
  1899. #define FSTV0910_P1_CFR_LOW1 0xf44601ff
  1900. /* P1_CFRLOW0 */
  1901. #define RSTV0910_P1_CFRLOW0 0xf447
  1902. #define FSTV0910_P1_CFR_LOW0 0xf44700ff
  1903. /* P1_CFRINIT1 */
  1904. #define RSTV0910_P1_CFRINIT1 0xf448
  1905. #define FSTV0910_P1_CFR_INIT1 0xf44801ff
  1906. /* P1_CFRINIT0 */
  1907. #define RSTV0910_P1_CFRINIT0 0xf449
  1908. #define FSTV0910_P1_CFR_INIT0 0xf44900ff
  1909. /* P1_CFRINC1 */
  1910. #define RSTV0910_P1_CFRINC1 0xf44a
  1911. #define FSTV0910_P1_MANUAL_CFRINC 0xf44a7080
  1912. #define FSTV0910_P1_CFR_INC1 0xf44a003f
  1913. /* P1_CFRINC0 */
  1914. #define RSTV0910_P1_CFRINC0 0xf44b
  1915. #define FSTV0910_P1_CFR_INC0 0xf44b00ff
  1916. /* P1_CFR2 */
  1917. #define RSTV0910_P1_CFR2 0xf44c
  1918. #define FSTV0910_P1_CAR_FREQ2 0xf44c01ff
  1919. /* P1_CFR1 */
  1920. #define RSTV0910_P1_CFR1 0xf44d
  1921. #define FSTV0910_P1_CAR_FREQ1 0xf44d00ff
  1922. /* P1_CFR0 */
  1923. #define RSTV0910_P1_CFR0 0xf44e
  1924. #define FSTV0910_P1_CAR_FREQ0 0xf44e00ff
  1925. /* P1_LDI */
  1926. #define RSTV0910_P1_LDI 0xf44f
  1927. #define FSTV0910_P1_LOCK_DET_INTEGR 0xf44f01ff
  1928. /* P1_TMGCFG */
  1929. #define RSTV0910_P1_TMGCFG 0xf450
  1930. #define FSTV0910_P1_TMGLOCK_BETA 0xf45060c0
  1931. #define FSTV0910_P1_DO_TIMING_CORR 0xf4504010
  1932. #define FSTV0910_P1_TMG_MINFREQ 0xf4500003
  1933. /* P1_RTC */
  1934. #define RSTV0910_P1_RTC 0xf451
  1935. #define FSTV0910_P1_TMGALPHA_EXP 0xf45140f0
  1936. #define FSTV0910_P1_TMGBETA_EXP 0xf451000f
  1937. /* P1_RTCS2 */
  1938. #define RSTV0910_P1_RTCS2 0xf452
  1939. #define FSTV0910_P1_TMGALPHAS2_EXP 0xf45240f0
  1940. #define FSTV0910_P1_TMGBETAS2_EXP 0xf452000f
  1941. /* P1_TMGTHRISE */
  1942. #define RSTV0910_P1_TMGTHRISE 0xf453
  1943. #define FSTV0910_P1_TMGLOCK_THRISE 0xf45300ff
  1944. /* P1_TMGTHFALL */
  1945. #define RSTV0910_P1_TMGTHFALL 0xf454
  1946. #define FSTV0910_P1_TMGLOCK_THFALL 0xf45400ff
  1947. /* P1_SFRUPRATIO */
  1948. #define RSTV0910_P1_SFRUPRATIO 0xf455
  1949. #define FSTV0910_P1_SFR_UPRATIO 0xf45500ff
  1950. /* P1_SFRLOWRATIO */
  1951. #define RSTV0910_P1_SFRLOWRATIO 0xf456
  1952. #define FSTV0910_P1_SFR_LOWRATIO 0xf45600ff
  1953. /* P1_KTTMG */
  1954. #define RSTV0910_P1_KTTMG 0xf457
  1955. #define FSTV0910_P1_KT_TMG_EXP 0xf45740f0
  1956. /* P1_KREFTMG */
  1957. #define RSTV0910_P1_KREFTMG 0xf458
  1958. #define FSTV0910_P1_KREF_TMG 0xf45800ff
  1959. /* P1_SFRSTEP */
  1960. #define RSTV0910_P1_SFRSTEP 0xf459
  1961. #define FSTV0910_P1_SFR_SCANSTEP 0xf45940f0
  1962. #define FSTV0910_P1_SFR_CENTERSTEP 0xf459000f
  1963. /* P1_TMGCFG2 */
  1964. #define RSTV0910_P1_TMGCFG2 0xf45a
  1965. #define FSTV0910_P1_DIS_AUTOSAMP 0xf45a3008
  1966. #define FSTV0910_P1_SFRRATIO_FINE 0xf45a0001
  1967. /* P1_KREFTMG2 */
  1968. #define RSTV0910_P1_KREFTMG2 0xf45b
  1969. #define FSTV0910_P1_KREF_TMG2 0xf45b00ff
  1970. /* P1_TMGCFG3 */
  1971. #define RSTV0910_P1_TMGCFG3 0xf45d
  1972. #define FSTV0910_P1_CONT_TMGCENTER 0xf45d3008
  1973. #define FSTV0910_P1_AUTO_GUP 0xf45d2004
  1974. #define FSTV0910_P1_AUTO_GLOW 0xf45d1002
  1975. /* P1_SFRINIT1 */
  1976. #define RSTV0910_P1_SFRINIT1 0xf45e
  1977. #define FSTV0910_P1_SFR_INIT1 0xf45e00ff
  1978. /* P1_SFRINIT0 */
  1979. #define RSTV0910_P1_SFRINIT0 0xf45f
  1980. #define FSTV0910_P1_SFR_INIT0 0xf45f00ff
  1981. /* P1_SFRUP1 */
  1982. #define RSTV0910_P1_SFRUP1 0xf460
  1983. #define FSTV0910_P1_SYMB_FREQ_UP1 0xf46000ff
  1984. /* P1_SFRUP0 */
  1985. #define RSTV0910_P1_SFRUP0 0xf461
  1986. #define FSTV0910_P1_SYMB_FREQ_UP0 0xf46100ff
  1987. /* P1_SFRLOW1 */
  1988. #define RSTV0910_P1_SFRLOW1 0xf462
  1989. #define FSTV0910_P1_SYMB_FREQ_LOW1 0xf46200ff
  1990. /* P1_SFRLOW0 */
  1991. #define RSTV0910_P1_SFRLOW0 0xf463
  1992. #define FSTV0910_P1_SYMB_FREQ_LOW0 0xf46300ff
  1993. /* P1_SFR3 */
  1994. #define RSTV0910_P1_SFR3 0xf464
  1995. #define FSTV0910_P1_SYMB_FREQ3 0xf46400ff
  1996. /* P1_SFR2 */
  1997. #define RSTV0910_P1_SFR2 0xf465
  1998. #define FSTV0910_P1_SYMB_FREQ2 0xf46500ff
  1999. /* P1_SFR1 */
  2000. #define RSTV0910_P1_SFR1 0xf466
  2001. #define FSTV0910_P1_SYMB_FREQ1 0xf46600ff
  2002. /* P1_SFR0 */
  2003. #define RSTV0910_P1_SFR0 0xf467
  2004. #define FSTV0910_P1_SYMB_FREQ0 0xf46700ff
  2005. /* P1_TMGREG2 */
  2006. #define RSTV0910_P1_TMGREG2 0xf468
  2007. #define FSTV0910_P1_TMGREG2 0xf46800ff
  2008. /* P1_TMGREG1 */
  2009. #define RSTV0910_P1_TMGREG1 0xf469
  2010. #define FSTV0910_P1_TMGREG1 0xf46900ff
  2011. /* P1_TMGREG0 */
  2012. #define RSTV0910_P1_TMGREG0 0xf46a
  2013. #define FSTV0910_P1_TMGREG0 0xf46a00ff
  2014. /* P1_TMGLOCK1 */
  2015. #define RSTV0910_P1_TMGLOCK1 0xf46b
  2016. #define FSTV0910_P1_TMGLOCK_LEVEL1 0xf46b01ff
  2017. /* P1_TMGLOCK0 */
  2018. #define RSTV0910_P1_TMGLOCK0 0xf46c
  2019. #define FSTV0910_P1_TMGLOCK_LEVEL0 0xf46c00ff
  2020. /* P1_TMGOBS */
  2021. #define RSTV0910_P1_TMGOBS 0xf46d
  2022. #define FSTV0910_P1_ROLLOFF_STATUS 0xf46d60c0
  2023. /* P1_EQUALCFG */
  2024. #define RSTV0910_P1_EQUALCFG 0xf46f
  2025. #define FSTV0910_P1_EQUAL_ON 0xf46f6040
  2026. #define FSTV0910_P1_MU_EQUALDFE 0xf46f0007
  2027. /* P1_EQUAI1 */
  2028. #define RSTV0910_P1_EQUAI1 0xf470
  2029. #define FSTV0910_P1_EQUA_ACCI1 0xf47001ff
  2030. /* P1_EQUAQ1 */
  2031. #define RSTV0910_P1_EQUAQ1 0xf471
  2032. #define FSTV0910_P1_EQUA_ACCQ1 0xf47101ff
  2033. /* P1_EQUAI2 */
  2034. #define RSTV0910_P1_EQUAI2 0xf472
  2035. #define FSTV0910_P1_EQUA_ACCI2 0xf47201ff
  2036. /* P1_EQUAQ2 */
  2037. #define RSTV0910_P1_EQUAQ2 0xf473
  2038. #define FSTV0910_P1_EQUA_ACCQ2 0xf47301ff
  2039. /* P1_EQUAI3 */
  2040. #define RSTV0910_P1_EQUAI3 0xf474
  2041. #define FSTV0910_P1_EQUA_ACCI3 0xf47401ff
  2042. /* P1_EQUAQ3 */
  2043. #define RSTV0910_P1_EQUAQ3 0xf475
  2044. #define FSTV0910_P1_EQUA_ACCQ3 0xf47501ff
  2045. /* P1_EQUAI4 */
  2046. #define RSTV0910_P1_EQUAI4 0xf476
  2047. #define FSTV0910_P1_EQUA_ACCI4 0xf47601ff
  2048. /* P1_EQUAQ4 */
  2049. #define RSTV0910_P1_EQUAQ4 0xf477
  2050. #define FSTV0910_P1_EQUA_ACCQ4 0xf47701ff
  2051. /* P1_EQUAI5 */
  2052. #define RSTV0910_P1_EQUAI5 0xf478
  2053. #define FSTV0910_P1_EQUA_ACCI5 0xf47801ff
  2054. /* P1_EQUAQ5 */
  2055. #define RSTV0910_P1_EQUAQ5 0xf479
  2056. #define FSTV0910_P1_EQUA_ACCQ5 0xf47901ff
  2057. /* P1_EQUAI6 */
  2058. #define RSTV0910_P1_EQUAI6 0xf47a
  2059. #define FSTV0910_P1_EQUA_ACCI6 0xf47a01ff
  2060. /* P1_EQUAQ6 */
  2061. #define RSTV0910_P1_EQUAQ6 0xf47b
  2062. #define FSTV0910_P1_EQUA_ACCQ6 0xf47b01ff
  2063. /* P1_EQUAI7 */
  2064. #define RSTV0910_P1_EQUAI7 0xf47c
  2065. #define FSTV0910_P1_EQUA_ACCI7 0xf47c01ff
  2066. /* P1_EQUAQ7 */
  2067. #define RSTV0910_P1_EQUAQ7 0xf47d
  2068. #define FSTV0910_P1_EQUA_ACCQ7 0xf47d01ff
  2069. /* P1_EQUAI8 */
  2070. #define RSTV0910_P1_EQUAI8 0xf47e
  2071. #define FSTV0910_P1_EQUA_ACCI8 0xf47e01ff
  2072. /* P1_EQUAQ8 */
  2073. #define RSTV0910_P1_EQUAQ8 0xf47f
  2074. #define FSTV0910_P1_EQUA_ACCQ8 0xf47f01ff
  2075. /* P1_NNOSDATAT1 */
  2076. #define RSTV0910_P1_NNOSDATAT1 0xf480
  2077. #define FSTV0910_P1_NOSDATAT_NORMED1 0xf48000ff
  2078. /* P1_NNOSDATAT0 */
  2079. #define RSTV0910_P1_NNOSDATAT0 0xf481
  2080. #define FSTV0910_P1_NOSDATAT_NORMED0 0xf48100ff
  2081. /* P1_NNOSDATA1 */
  2082. #define RSTV0910_P1_NNOSDATA1 0xf482
  2083. #define FSTV0910_P1_NOSDATA_NORMED1 0xf48200ff
  2084. /* P1_NNOSDATA0 */
  2085. #define RSTV0910_P1_NNOSDATA0 0xf483
  2086. #define FSTV0910_P1_NOSDATA_NORMED0 0xf48300ff
  2087. /* P1_NNOSPLHT1 */
  2088. #define RSTV0910_P1_NNOSPLHT1 0xf484
  2089. #define FSTV0910_P1_NOSPLHT_NORMED1 0xf48400ff
  2090. /* P1_NNOSPLHT0 */
  2091. #define RSTV0910_P1_NNOSPLHT0 0xf485
  2092. #define FSTV0910_P1_NOSPLHT_NORMED0 0xf48500ff
  2093. /* P1_NNOSPLH1 */
  2094. #define RSTV0910_P1_NNOSPLH1 0xf486
  2095. #define FSTV0910_P1_NOSPLH_NORMED1 0xf48600ff
  2096. /* P1_NNOSPLH0 */
  2097. #define RSTV0910_P1_NNOSPLH0 0xf487
  2098. #define FSTV0910_P1_NOSPLH_NORMED0 0xf48700ff
  2099. /* P1_NOSDATAT1 */
  2100. #define RSTV0910_P1_NOSDATAT1 0xf488
  2101. #define FSTV0910_P1_NOSDATAT_UNNORMED1 0xf48800ff
  2102. /* P1_NOSDATAT0 */
  2103. #define RSTV0910_P1_NOSDATAT0 0xf489
  2104. #define FSTV0910_P1_NOSDATAT_UNNORMED0 0xf48900ff
  2105. /* P1_NNOSFRAME1 */
  2106. #define RSTV0910_P1_NNOSFRAME1 0xf48a
  2107. #define FSTV0910_P1_NOSFRAME_NORMED1 0xf48a00ff
  2108. /* P1_NNOSFRAME0 */
  2109. #define RSTV0910_P1_NNOSFRAME0 0xf48b
  2110. #define FSTV0910_P1_NOSFRAME_NORMED0 0xf48b00ff
  2111. /* P1_NNOSRAD1 */
  2112. #define RSTV0910_P1_NNOSRAD1 0xf48c
  2113. #define FSTV0910_P1_NOSRADIAL_NORMED1 0xf48c00ff
  2114. /* P1_NNOSRAD0 */
  2115. #define RSTV0910_P1_NNOSRAD0 0xf48d
  2116. #define FSTV0910_P1_NOSRADIAL_NORMED0 0xf48d00ff
  2117. /* P1_NOSCFGF1 */
  2118. #define RSTV0910_P1_NOSCFGF1 0xf48e
  2119. #define FSTV0910_P1_LOWNOISE_MESURE 0xf48e7080
  2120. #define FSTV0910_P1_NOS_DELFRAME 0xf48e6040
  2121. #define FSTV0910_P1_NOSDATA_MODE 0xf48e4030
  2122. #define FSTV0910_P1_FRAMESEL_TYPESEL 0xf48e200c
  2123. #define FSTV0910_P1_FRAMESEL_TYPE 0xf48e0003
  2124. /* P1_NOSCFGF2 */
  2125. #define RSTV0910_P1_NOSCFGF2 0xf48f
  2126. #define FSTV0910_P1_DIS_NOSPILOTS 0xf48f7080
  2127. #define FSTV0910_P1_FRAMESEL_MODCODSEL 0xf48f5060
  2128. #define FSTV0910_P1_FRAMESEL_MODCOD 0xf48f001f
  2129. /* P1_CAR2CFG */
  2130. #define RSTV0910_P1_CAR2CFG 0xf490
  2131. #define FSTV0910_P1_ROTA2ON 0xf4902004
  2132. #define FSTV0910_P1_PH_DET_ALGO2 0xf4900003
  2133. /* P1_CFR2CFR1 */
  2134. #define RSTV0910_P1_CFR2CFR1 0xf491
  2135. #define FSTV0910_P1_EN_S2CAR2CENTER 0xf4915020
  2136. #define FSTV0910_P1_CFR2TOCFR1_BETA 0xf4910007
  2137. /* P1_CAR3CFG */
  2138. #define RSTV0910_P1_CAR3CFG 0xf492
  2139. #define FSTV0910_P1_CARRIER23_MODE 0xf49260c0
  2140. #define FSTV0910_P1_CAR3INTERM_DVBS1 0xf4925020
  2141. #define FSTV0910_P1_ABAMPLIF_MODE 0xf4923018
  2142. #define FSTV0910_P1_CARRIER3_ALPHA3DL 0xf4920007
  2143. /* P1_CFR22 */
  2144. #define RSTV0910_P1_CFR22 0xf493
  2145. #define FSTV0910_P1_CAR2_FREQ2 0xf49301ff
  2146. /* P1_CFR21 */
  2147. #define RSTV0910_P1_CFR21 0xf494
  2148. #define FSTV0910_P1_CAR2_FREQ1 0xf49400ff
  2149. /* P1_CFR20 */
  2150. #define RSTV0910_P1_CFR20 0xf495
  2151. #define FSTV0910_P1_CAR2_FREQ0 0xf49500ff
  2152. /* P1_ACLC2S2Q */
  2153. #define RSTV0910_P1_ACLC2S2Q 0xf497
  2154. #define FSTV0910_P1_ENAB_SPSKSYMB 0xf4977080
  2155. #define FSTV0910_P1_CAR2S2_Q_ALPH_M 0xf4974030
  2156. #define FSTV0910_P1_CAR2S2_Q_ALPH_E 0xf497000f
  2157. /* P1_ACLC2S28 */
  2158. #define RSTV0910_P1_ACLC2S28 0xf498
  2159. #define FSTV0910_P1_CAR2S2_8_ALPH_M 0xf4984030
  2160. #define FSTV0910_P1_CAR2S2_8_ALPH_E 0xf498000f
  2161. /* P1_ACLC2S216A */
  2162. #define RSTV0910_P1_ACLC2S216A 0xf499
  2163. #define FSTV0910_P1_CAR2S2_16A_ALPH_M 0xf4994030
  2164. #define FSTV0910_P1_CAR2S2_16A_ALPH_E 0xf499000f
  2165. /* P1_ACLC2S232A */
  2166. #define RSTV0910_P1_ACLC2S232A 0xf49a
  2167. #define FSTV0910_P1_CAR2S2_32A_ALPH_M 0xf49a4030
  2168. #define FSTV0910_P1_CAR2S2_32A_ALPH_E 0xf49a000f
  2169. /* P1_BCLC2S2Q */
  2170. #define RSTV0910_P1_BCLC2S2Q 0xf49c
  2171. #define FSTV0910_P1_CAR2S2_Q_BETA_M 0xf49c4030
  2172. #define FSTV0910_P1_CAR2S2_Q_BETA_E 0xf49c000f
  2173. /* P1_BCLC2S28 */
  2174. #define RSTV0910_P1_BCLC2S28 0xf49d
  2175. #define FSTV0910_P1_CAR2S2_8_BETA_M 0xf49d4030
  2176. #define FSTV0910_P1_CAR2S2_8_BETA_E 0xf49d000f
  2177. /* P1_BCLC2S216A */
  2178. #define RSTV0910_P1_BCLC2S216A 0xf49e
  2179. #define FSTV0910_P1_DVBS2S216A_NIP 0xf49e7080
  2180. #define FSTV0910_P1_CAR2S2_16A_BETA_M 0xf49e4030
  2181. #define FSTV0910_P1_CAR2S2_16A_BETA_E 0xf49e000f
  2182. /* P1_BCLC2S232A */
  2183. #define RSTV0910_P1_BCLC2S232A 0xf49f
  2184. #define FSTV0910_P1_DVBS2S232A_NIP 0xf49f7080
  2185. #define FSTV0910_P1_CAR2S2_32A_BETA_M 0xf49f4030
  2186. #define FSTV0910_P1_CAR2S2_32A_BETA_E 0xf49f000f
  2187. /* P1_PLROOT2 */
  2188. #define RSTV0910_P1_PLROOT2 0xf4ac
  2189. #define FSTV0910_P1_PLSCRAMB_MODE 0xf4ac200c
  2190. #define FSTV0910_P1_PLSCRAMB_ROOT2 0xf4ac0003
  2191. /* P1_PLROOT1 */
  2192. #define RSTV0910_P1_PLROOT1 0xf4ad
  2193. #define FSTV0910_P1_PLSCRAMB_ROOT1 0xf4ad00ff
  2194. /* P1_PLROOT0 */
  2195. #define RSTV0910_P1_PLROOT0 0xf4ae
  2196. #define FSTV0910_P1_PLSCRAMB_ROOT0 0xf4ae00ff
  2197. /* P1_MODCODLST0 */
  2198. #define RSTV0910_P1_MODCODLST0 0xf4b0
  2199. #define FSTV0910_P1_NACCES_MODCODCH 0xf4b00001
  2200. /* P1_MODCODLST1 */
  2201. #define RSTV0910_P1_MODCODLST1 0xf4b1
  2202. #define FSTV0910_P1_SYMBRATE_FILTER 0xf4b13008
  2203. #define FSTV0910_P1_NRESET_MODCODLST 0xf4b12004
  2204. #define FSTV0910_P1_DIS_32PSK_9_10 0xf4b10003
  2205. /* P1_MODCODLST2 */
  2206. #define RSTV0910_P1_MODCODLST2 0xf4b2
  2207. #define FSTV0910_P1_DIS_32PSK_8_9 0xf4b240f0
  2208. #define FSTV0910_P1_DIS_32PSK_5_6 0xf4b2000f
  2209. /* P1_MODCODLST3 */
  2210. #define RSTV0910_P1_MODCODLST3 0xf4b3
  2211. #define FSTV0910_P1_DIS_32PSK_4_5 0xf4b340f0
  2212. #define FSTV0910_P1_DIS_32PSK_3_4 0xf4b3000f
  2213. /* P1_MODCODLST4 */
  2214. #define RSTV0910_P1_MODCODLST4 0xf4b4
  2215. #define FSTV0910_P1_DUMMYPL_PILOT 0xf4b47080
  2216. #define FSTV0910_P1_DUMMYPL_NOPILOT 0xf4b46040
  2217. #define FSTV0910_P1_DIS_16PSK_9_10 0xf4b44030
  2218. #define FSTV0910_P1_DIS_16PSK_8_9 0xf4b4000f
  2219. /* P1_MODCODLST5 */
  2220. #define RSTV0910_P1_MODCODLST5 0xf4b5
  2221. #define FSTV0910_P1_DIS_16PSK_5_6 0xf4b540f0
  2222. #define FSTV0910_P1_DIS_16PSK_4_5 0xf4b5000f
  2223. /* P1_MODCODLST6 */
  2224. #define RSTV0910_P1_MODCODLST6 0xf4b6
  2225. #define FSTV0910_P1_DIS_16PSK_3_4 0xf4b640f0
  2226. #define FSTV0910_P1_DIS_16PSK_2_3 0xf4b6000f
  2227. /* P1_MODCODLST7 */
  2228. #define RSTV0910_P1_MODCODLST7 0xf4b7
  2229. #define FSTV0910_P1_MODCOD_NNOSFILTER 0xf4b77080
  2230. #define FSTV0910_P1_DIS_8PSK_9_10 0xf4b74030
  2231. #define FSTV0910_P1_DIS_8PSK_8_9 0xf4b7000f
  2232. /* P1_MODCODLST8 */
  2233. #define RSTV0910_P1_MODCODLST8 0xf4b8
  2234. #define FSTV0910_P1_DIS_8PSK_5_6 0xf4b840f0
  2235. #define FSTV0910_P1_DIS_8PSK_3_4 0xf4b8000f
  2236. /* P1_MODCODLST9 */
  2237. #define RSTV0910_P1_MODCODLST9 0xf4b9
  2238. #define FSTV0910_P1_DIS_8PSK_2_3 0xf4b940f0
  2239. #define FSTV0910_P1_DIS_8PSK_3_5 0xf4b9000f
  2240. /* P1_MODCODLSTA */
  2241. #define RSTV0910_P1_MODCODLSTA 0xf4ba
  2242. #define FSTV0910_P1_NOSFILTER_LIMITE 0xf4ba7080
  2243. #define FSTV0910_P1_DIS_QPSK_9_10 0xf4ba4030
  2244. #define FSTV0910_P1_DIS_QPSK_8_9 0xf4ba000f
  2245. /* P1_MODCODLSTB */
  2246. #define RSTV0910_P1_MODCODLSTB 0xf4bb
  2247. #define FSTV0910_P1_DIS_QPSK_5_6 0xf4bb40f0
  2248. #define FSTV0910_P1_DIS_QPSK_4_5 0xf4bb000f
  2249. /* P1_MODCODLSTC */
  2250. #define RSTV0910_P1_MODCODLSTC 0xf4bc
  2251. #define FSTV0910_P1_DIS_QPSK_3_4 0xf4bc40f0
  2252. #define FSTV0910_P1_DIS_QPSK_2_3 0xf4bc000f
  2253. /* P1_MODCODLSTD */
  2254. #define RSTV0910_P1_MODCODLSTD 0xf4bd
  2255. #define FSTV0910_P1_DIS_QPSK_3_5 0xf4bd40f0
  2256. #define FSTV0910_P1_DIS_QPSK_1_2 0xf4bd000f
  2257. /* P1_MODCODLSTE */
  2258. #define RSTV0910_P1_MODCODLSTE 0xf4be
  2259. #define FSTV0910_P1_DIS_QPSK_2_5 0xf4be40f0
  2260. #define FSTV0910_P1_DIS_QPSK_1_3 0xf4be000f
  2261. /* P1_MODCODLSTF */
  2262. #define RSTV0910_P1_MODCODLSTF 0xf4bf
  2263. #define FSTV0910_P1_DIS_QPSK_1_4 0xf4bf40f0
  2264. #define FSTV0910_P1_DEMOD_INVMODLST 0xf4bf3008
  2265. #define FSTV0910_P1_DEMODOUT_ENABLE 0xf4bf2004
  2266. #define FSTV0910_P1_DDEMOD_NSET 0xf4bf1002
  2267. #define FSTV0910_P1_MODCOD_NSTOCK 0xf4bf0001
  2268. /* P1_GAUSSR0 */
  2269. #define RSTV0910_P1_GAUSSR0 0xf4c0
  2270. #define FSTV0910_P1_EN_CCIMODE 0xf4c07080
  2271. #define FSTV0910_P1_R0_GAUSSIEN 0xf4c0007f
  2272. /* P1_CCIR0 */
  2273. #define RSTV0910_P1_CCIR0 0xf4c1
  2274. #define FSTV0910_P1_CCIDETECT_PLHONLY 0xf4c17080
  2275. #define FSTV0910_P1_R0_CCI 0xf4c1007f
  2276. /* P1_CCIQUANT */
  2277. #define RSTV0910_P1_CCIQUANT 0xf4c2
  2278. #define FSTV0910_P1_CCI_BETA 0xf4c250e0
  2279. #define FSTV0910_P1_CCI_QUANT 0xf4c2001f
  2280. /* P1_CCITHRES */
  2281. #define RSTV0910_P1_CCITHRES 0xf4c3
  2282. #define FSTV0910_P1_CCI_THRESHOLD 0xf4c300ff
  2283. /* P1_CCIACC */
  2284. #define RSTV0910_P1_CCIACC 0xf4c4
  2285. #define FSTV0910_P1_CCI_VALUE 0xf4c400ff
  2286. /* P1_DSTATUS4 */
  2287. #define RSTV0910_P1_DSTATUS4 0xf4c5
  2288. #define FSTV0910_P1_RAINFADE_DETECT 0xf4c57080
  2289. #define FSTV0910_P1_NOTHRES2_FAIL 0xf4c56040
  2290. #define FSTV0910_P1_NOTHRES1_FAIL 0xf4c55020
  2291. #define FSTV0910_P1_DMDPROG_ERROR 0xf4c52004
  2292. #define FSTV0910_P1_CSTENV_DETECT 0xf4c51002
  2293. #define FSTV0910_P1_DETECTION_TRIAX 0xf4c50001
  2294. /* P1_DMDRESCFG */
  2295. #define RSTV0910_P1_DMDRESCFG 0xf4c6
  2296. #define FSTV0910_P1_DMDRES_RESET 0xf4c67080
  2297. #define FSTV0910_P1_DMDRES_STRALL 0xf4c63008
  2298. #define FSTV0910_P1_DMDRES_NEWONLY 0xf4c62004
  2299. #define FSTV0910_P1_DMDRES_NOSTORE 0xf4c61002
  2300. /* P1_DMDRESADR */
  2301. #define RSTV0910_P1_DMDRESADR 0xf4c7
  2302. #define FSTV0910_P1_DMDRES_VALIDCFR 0xf4c76040
  2303. #define FSTV0910_P1_DMDRES_MEMFULL 0xf4c74030
  2304. #define FSTV0910_P1_DMDRES_RESNBR 0xf4c7000f
  2305. /* P1_DMDRESDATA7 */
  2306. #define RSTV0910_P1_DMDRESDATA7 0xf4c8
  2307. #define FSTV0910_P1_DMDRES_DATA7 0xf4c800ff
  2308. /* P1_DMDRESDATA6 */
  2309. #define RSTV0910_P1_DMDRESDATA6 0xf4c9
  2310. #define FSTV0910_P1_DMDRES_DATA6 0xf4c900ff
  2311. /* P1_DMDRESDATA5 */
  2312. #define RSTV0910_P1_DMDRESDATA5 0xf4ca
  2313. #define FSTV0910_P1_DMDRES_DATA5 0xf4ca00ff
  2314. /* P1_DMDRESDATA4 */
  2315. #define RSTV0910_P1_DMDRESDATA4 0xf4cb
  2316. #define FSTV0910_P1_DMDRES_DATA4 0xf4cb00ff
  2317. /* P1_DMDRESDATA3 */
  2318. #define RSTV0910_P1_DMDRESDATA3 0xf4cc
  2319. #define FSTV0910_P1_DMDRES_DATA3 0xf4cc00ff
  2320. /* P1_DMDRESDATA2 */
  2321. #define RSTV0910_P1_DMDRESDATA2 0xf4cd
  2322. #define FSTV0910_P1_DMDRES_DATA2 0xf4cd00ff
  2323. /* P1_DMDRESDATA1 */
  2324. #define RSTV0910_P1_DMDRESDATA1 0xf4ce
  2325. #define FSTV0910_P1_DMDRES_DATA1 0xf4ce00ff
  2326. /* P1_DMDRESDATA0 */
  2327. #define RSTV0910_P1_DMDRESDATA0 0xf4cf
  2328. #define FSTV0910_P1_DMDRES_DATA0 0xf4cf00ff
  2329. /* P1_FFEI1 */
  2330. #define RSTV0910_P1_FFEI1 0xf4d0
  2331. #define FSTV0910_P1_FFE_ACCI1 0xf4d001ff
  2332. /* P1_FFEQ1 */
  2333. #define RSTV0910_P1_FFEQ1 0xf4d1
  2334. #define FSTV0910_P1_FFE_ACCQ1 0xf4d101ff
  2335. /* P1_FFEI2 */
  2336. #define RSTV0910_P1_FFEI2 0xf4d2
  2337. #define FSTV0910_P1_FFE_ACCI2 0xf4d201ff
  2338. /* P1_FFEQ2 */
  2339. #define RSTV0910_P1_FFEQ2 0xf4d3
  2340. #define FSTV0910_P1_FFE_ACCQ2 0xf4d301ff
  2341. /* P1_FFEI3 */
  2342. #define RSTV0910_P1_FFEI3 0xf4d4
  2343. #define FSTV0910_P1_FFE_ACCI3 0xf4d401ff
  2344. /* P1_FFEQ3 */
  2345. #define RSTV0910_P1_FFEQ3 0xf4d5
  2346. #define FSTV0910_P1_FFE_ACCQ3 0xf4d501ff
  2347. /* P1_FFEI4 */
  2348. #define RSTV0910_P1_FFEI4 0xf4d6
  2349. #define FSTV0910_P1_FFE_ACCI4 0xf4d601ff
  2350. /* P1_FFEQ4 */
  2351. #define RSTV0910_P1_FFEQ4 0xf4d7
  2352. #define FSTV0910_P1_FFE_ACCQ4 0xf4d701ff
  2353. /* P1_FFECFG */
  2354. #define RSTV0910_P1_FFECFG 0xf4d8
  2355. #define FSTV0910_P1_EQUALFFE_ON 0xf4d86040
  2356. #define FSTV0910_P1_EQUAL_USEDSYMB 0xf4d84030
  2357. #define FSTV0910_P1_MU_EQUALFFE 0xf4d80007
  2358. /* P1_TNRCFG2 */
  2359. #define RSTV0910_P1_TNRCFG2 0xf4e1
  2360. #define FSTV0910_P1_TUN_IQSWAP 0xf4e17080
  2361. /* P1_SMAPCOEF7 */
  2362. #define RSTV0910_P1_SMAPCOEF7 0xf500
  2363. #define FSTV0910_P1_DIS_QSCALE 0xf5007080
  2364. #define FSTV0910_P1_SMAPCOEF_Q_LLR12 0xf500017f
  2365. /* P1_SMAPCOEF6 */
  2366. #define RSTV0910_P1_SMAPCOEF6 0xf501
  2367. #define FSTV0910_P1_DIS_AGC2SCALE 0xf5017080
  2368. #define FSTV0910_P1_ADJ_8PSKLLR1 0xf5012004
  2369. #define FSTV0910_P1_OLD_8PSKLLR1 0xf5011002
  2370. #define FSTV0910_P1_DIS_AB8PSK 0xf5010001
  2371. /* P1_SMAPCOEF5 */
  2372. #define RSTV0910_P1_SMAPCOEF5 0xf502
  2373. #define FSTV0910_P1_DIS_8SCALE 0xf5027080
  2374. #define FSTV0910_P1_SMAPCOEF_8P_LLR23 0xf502017f
  2375. /* P1_SMAPCOEF4 */
  2376. #define RSTV0910_P1_SMAPCOEF4 0xf503
  2377. #define FSTV0910_P1_SMAPCOEF_16APSK_LLR12 0xf503017f
  2378. /* P1_SMAPCOEF3 */
  2379. #define RSTV0910_P1_SMAPCOEF3 0xf504
  2380. #define FSTV0910_P1_SMAPCOEF_16APSK_LLR34 0xf504017f
  2381. /* P1_SMAPCOEF2 */
  2382. #define RSTV0910_P1_SMAPCOEF2 0xf505
  2383. #define FSTV0910_P1_SMAPCOEF_32APSK_R2R3 0xf50541f0
  2384. #define FSTV0910_P1_SMAPCOEF_32APSK_LLR2 0xf505010f
  2385. /* P1_SMAPCOEF1 */
  2386. #define RSTV0910_P1_SMAPCOEF1 0xf506
  2387. #define FSTV0910_P1_DIS_16SCALE 0xf5067080
  2388. #define FSTV0910_P1_SMAPCOEF_32_LLR34 0xf506017f
  2389. /* P1_SMAPCOEF0 */
  2390. #define RSTV0910_P1_SMAPCOEF0 0xf507
  2391. #define FSTV0910_P1_DIS_32SCALE 0xf5077080
  2392. #define FSTV0910_P1_SMAPCOEF_32_LLR15 0xf507017f
  2393. /* P1_NOSTHRES1 */
  2394. #define RSTV0910_P1_NOSTHRES1 0xf509
  2395. #define FSTV0910_P1_NOS_THRESHOLD1 0xf50900ff
  2396. /* P1_NOSTHRES2 */
  2397. #define RSTV0910_P1_NOSTHRES2 0xf50a
  2398. #define FSTV0910_P1_NOS_THRESHOLD2 0xf50a00ff
  2399. /* P1_NOSDIFF1 */
  2400. #define RSTV0910_P1_NOSDIFF1 0xf50b
  2401. #define FSTV0910_P1_NOSTHRES1_DIFF 0xf50b00ff
  2402. /* P1_RAINFADE */
  2403. #define RSTV0910_P1_RAINFADE 0xf50c
  2404. #define FSTV0910_P1_NOSTHRES_DATAT 0xf50c7080
  2405. #define FSTV0910_P1_RAINFADE_CNLIMIT 0xf50c4070
  2406. #define FSTV0910_P1_RAINFADE_TIMEOUT 0xf50c0007
  2407. /* P1_NOSRAMCFG */
  2408. #define RSTV0910_P1_NOSRAMCFG 0xf50d
  2409. #define FSTV0910_P1_NOSRAM_ACTIVATION 0xf50d4030
  2410. #define FSTV0910_P1_NOSRAM_CNRONLY 0xf50d3008
  2411. #define FSTV0910_P1_NOSRAM_LGNCNR1 0xf50d0007
  2412. /* P1_NOSRAMPOS */
  2413. #define RSTV0910_P1_NOSRAMPOS 0xf50e
  2414. #define FSTV0910_P1_NOSRAM_LGNCNR0 0xf50e40f0
  2415. #define FSTV0910_P1_NOSRAM_VALIDE 0xf50e2004
  2416. #define FSTV0910_P1_NOSRAM_CNRVAL1 0xf50e0003
  2417. /* P1_NOSRAMVAL */
  2418. #define RSTV0910_P1_NOSRAMVAL 0xf50f
  2419. #define FSTV0910_P1_NOSRAM_CNRVAL0 0xf50f00ff
  2420. /* P1_DMDPLHSTAT */
  2421. #define RSTV0910_P1_DMDPLHSTAT 0xf520
  2422. #define FSTV0910_P1_PLH_STATISTIC 0xf52000ff
  2423. /* P1_LOCKTIME3 */
  2424. #define RSTV0910_P1_LOCKTIME3 0xf522
  2425. #define FSTV0910_P1_DEMOD_LOCKTIME3 0xf52200ff
  2426. /* P1_LOCKTIME2 */
  2427. #define RSTV0910_P1_LOCKTIME2 0xf523
  2428. #define FSTV0910_P1_DEMOD_LOCKTIME2 0xf52300ff
  2429. /* P1_LOCKTIME1 */
  2430. #define RSTV0910_P1_LOCKTIME1 0xf524
  2431. #define FSTV0910_P1_DEMOD_LOCKTIME1 0xf52400ff
  2432. /* P1_LOCKTIME0 */
  2433. #define RSTV0910_P1_LOCKTIME0 0xf525
  2434. #define FSTV0910_P1_DEMOD_LOCKTIME0 0xf52500ff
  2435. /* P1_VITSCALE */
  2436. #define RSTV0910_P1_VITSCALE 0xf532
  2437. #define FSTV0910_P1_NVTH_NOSRANGE 0xf5327080
  2438. #define FSTV0910_P1_VERROR_MAXMODE 0xf5326040
  2439. #define FSTV0910_P1_NSLOWSN_LOCKED 0xf5323008
  2440. #define FSTV0910_P1_DIS_RSFLOCK 0xf5321002
  2441. /* P1_FECM */
  2442. #define RSTV0910_P1_FECM 0xf533
  2443. #define FSTV0910_P1_DSS_DVB 0xf5337080
  2444. #define FSTV0910_P1_DSS_SRCH 0xf5334010
  2445. #define FSTV0910_P1_SYNCVIT 0xf5331002
  2446. #define FSTV0910_P1_IQINV 0xf5330001
  2447. /* P1_VTH12 */
  2448. #define RSTV0910_P1_VTH12 0xf534
  2449. #define FSTV0910_P1_VTH12 0xf53400ff
  2450. /* P1_VTH23 */
  2451. #define RSTV0910_P1_VTH23 0xf535
  2452. #define FSTV0910_P1_VTH23 0xf53500ff
  2453. /* P1_VTH34 */
  2454. #define RSTV0910_P1_VTH34 0xf536
  2455. #define FSTV0910_P1_VTH34 0xf53600ff
  2456. /* P1_VTH56 */
  2457. #define RSTV0910_P1_VTH56 0xf537
  2458. #define FSTV0910_P1_VTH56 0xf53700ff
  2459. /* P1_VTH67 */
  2460. #define RSTV0910_P1_VTH67 0xf538
  2461. #define FSTV0910_P1_VTH67 0xf53800ff
  2462. /* P1_VTH78 */
  2463. #define RSTV0910_P1_VTH78 0xf539
  2464. #define FSTV0910_P1_VTH78 0xf53900ff
  2465. /* P1_VITCURPUN */
  2466. #define RSTV0910_P1_VITCURPUN 0xf53a
  2467. #define FSTV0910_P1_VIT_CURPUN 0xf53a001f
  2468. /* P1_VERROR */
  2469. #define RSTV0910_P1_VERROR 0xf53b
  2470. #define FSTV0910_P1_REGERR_VIT 0xf53b00ff
  2471. /* P1_PRVIT */
  2472. #define RSTV0910_P1_PRVIT 0xf53c
  2473. #define FSTV0910_P1_DIS_VTHLOCK 0xf53c6040
  2474. #define FSTV0910_P1_E7_8VIT 0xf53c5020
  2475. #define FSTV0910_P1_E6_7VIT 0xf53c4010
  2476. #define FSTV0910_P1_E5_6VIT 0xf53c3008
  2477. #define FSTV0910_P1_E3_4VIT 0xf53c2004
  2478. #define FSTV0910_P1_E2_3VIT 0xf53c1002
  2479. #define FSTV0910_P1_E1_2VIT 0xf53c0001
  2480. /* P1_VAVSRVIT */
  2481. #define RSTV0910_P1_VAVSRVIT 0xf53d
  2482. #define FSTV0910_P1_AMVIT 0xf53d7080
  2483. #define FSTV0910_P1_FROZENVIT 0xf53d6040
  2484. #define FSTV0910_P1_SNVIT 0xf53d4030
  2485. #define FSTV0910_P1_TOVVIT 0xf53d200c
  2486. #define FSTV0910_P1_HYPVIT 0xf53d0003
  2487. /* P1_VSTATUSVIT */
  2488. #define RSTV0910_P1_VSTATUSVIT 0xf53e
  2489. #define FSTV0910_P1_PRFVIT 0xf53e4010
  2490. #define FSTV0910_P1_LOCKEDVIT 0xf53e3008
  2491. /* P1_VTHINUSE */
  2492. #define RSTV0910_P1_VTHINUSE 0xf53f
  2493. #define FSTV0910_P1_VIT_INUSE 0xf53f00ff
  2494. /* P1_KDIV12 */
  2495. #define RSTV0910_P1_KDIV12 0xf540
  2496. #define FSTV0910_P1_K_DIVIDER_12 0xf540007f
  2497. /* P1_KDIV23 */
  2498. #define RSTV0910_P1_KDIV23 0xf541
  2499. #define FSTV0910_P1_K_DIVIDER_23 0xf541007f
  2500. /* P1_KDIV34 */
  2501. #define RSTV0910_P1_KDIV34 0xf542
  2502. #define FSTV0910_P1_K_DIVIDER_34 0xf542007f
  2503. /* P1_KDIV56 */
  2504. #define RSTV0910_P1_KDIV56 0xf543
  2505. #define FSTV0910_P1_K_DIVIDER_56 0xf543007f
  2506. /* P1_KDIV67 */
  2507. #define RSTV0910_P1_KDIV67 0xf544
  2508. #define FSTV0910_P1_K_DIVIDER_67 0xf544007f
  2509. /* P1_KDIV78 */
  2510. #define RSTV0910_P1_KDIV78 0xf545
  2511. #define FSTV0910_P1_K_DIVIDER_78 0xf545007f
  2512. /* P1_TSPIDFLT1 */
  2513. #define RSTV0910_P1_TSPIDFLT1 0xf546
  2514. #define FSTV0910_P1_PIDFLT_ADDR 0xf54600ff
  2515. /* P1_TSPIDFLT0 */
  2516. #define RSTV0910_P1_TSPIDFLT0 0xf547
  2517. #define FSTV0910_P1_PIDFLT_DATA 0xf54700ff
  2518. /* P1_PDELCTRL0 */
  2519. #define RSTV0910_P1_PDELCTRL0 0xf54f
  2520. #define FSTV0910_P1_ISIOBS_MODE 0xf54f4030
  2521. /* P1_PDELCTRL1 */
  2522. #define RSTV0910_P1_PDELCTRL1 0xf550
  2523. #define FSTV0910_P1_INV_MISMASK 0xf5507080
  2524. #define FSTV0910_P1_FILTER_EN 0xf5505020
  2525. #define FSTV0910_P1_HYSTEN 0xf5503008
  2526. #define FSTV0910_P1_HYSTSWRST 0xf5502004
  2527. #define FSTV0910_P1_EN_MIS00 0xf5501002
  2528. #define FSTV0910_P1_ALGOSWRST 0xf5500001
  2529. /* P1_PDELCTRL2 */
  2530. #define RSTV0910_P1_PDELCTRL2 0xf551
  2531. #define FSTV0910_P1_FORCE_CONTINUOUS 0xf5517080
  2532. #define FSTV0910_P1_RESET_UPKO_COUNT 0xf5516040
  2533. #define FSTV0910_P1_USER_PKTDELIN_NB 0xf5515020
  2534. #define FSTV0910_P1_FRAME_MODE 0xf5511002
  2535. /* P1_HYSTTHRESH */
  2536. #define RSTV0910_P1_HYSTTHRESH 0xf554
  2537. #define FSTV0910_P1_DELIN_LOCKTHRES 0xf55440f0
  2538. #define FSTV0910_P1_DELIN_UNLOCKTHRES 0xf554000f
  2539. /* P1_UPLCCST0 */
  2540. #define RSTV0910_P1_UPLCCST0 0xf558
  2541. #define FSTV0910_P1_UPL_CST0 0xf55830f8
  2542. #define FSTV0910_P1_UPL_MODE 0xf5580007
  2543. /* P1_ISIENTRY */
  2544. #define RSTV0910_P1_ISIENTRY 0xf55e
  2545. #define FSTV0910_P1_ISI_ENTRY 0xf55e00ff
  2546. /* P1_ISIBITENA */
  2547. #define RSTV0910_P1_ISIBITENA 0xf55f
  2548. #define FSTV0910_P1_ISI_BIT_EN 0xf55f00ff
  2549. /* P1_MATSTR1 */
  2550. #define RSTV0910_P1_MATSTR1 0xf560
  2551. #define FSTV0910_P1_MATYPE_CURRENT1 0xf56000ff
  2552. /* P1_MATSTR0 */
  2553. #define RSTV0910_P1_MATSTR0 0xf561
  2554. #define FSTV0910_P1_MATYPE_CURRENT0 0xf56100ff
  2555. /* P1_UPLSTR1 */
  2556. #define RSTV0910_P1_UPLSTR1 0xf562
  2557. #define FSTV0910_P1_UPL_CURRENT1 0xf56200ff
  2558. /* P1_UPLSTR0 */
  2559. #define RSTV0910_P1_UPLSTR0 0xf563
  2560. #define FSTV0910_P1_UPL_CURRENT0 0xf56300ff
  2561. /* P1_DFLSTR1 */
  2562. #define RSTV0910_P1_DFLSTR1 0xf564
  2563. #define FSTV0910_P1_DFL_CURRENT1 0xf56400ff
  2564. /* P1_DFLSTR0 */
  2565. #define RSTV0910_P1_DFLSTR0 0xf565
  2566. #define FSTV0910_P1_DFL_CURRENT0 0xf56500ff
  2567. /* P1_SYNCSTR */
  2568. #define RSTV0910_P1_SYNCSTR 0xf566
  2569. #define FSTV0910_P1_SYNC_CURRENT 0xf56600ff
  2570. /* P1_SYNCDSTR1 */
  2571. #define RSTV0910_P1_SYNCDSTR1 0xf567
  2572. #define FSTV0910_P1_SYNCD_CURRENT1 0xf56700ff
  2573. /* P1_SYNCDSTR0 */
  2574. #define RSTV0910_P1_SYNCDSTR0 0xf568
  2575. #define FSTV0910_P1_SYNCD_CURRENT0 0xf56800ff
  2576. /* P1_PDELSTATUS1 */
  2577. #define RSTV0910_P1_PDELSTATUS1 0xf569
  2578. #define FSTV0910_P1_PKTDELIN_DELOCK 0xf5697080
  2579. #define FSTV0910_P1_SYNCDUPDFL_BADDFL 0xf5696040
  2580. #define FSTV0910_P1_UNACCEPTED_STREAM 0xf5694010
  2581. #define FSTV0910_P1_BCH_ERROR_FLAG 0xf5693008
  2582. #define FSTV0910_P1_PKTDELIN_LOCK 0xf5691002
  2583. #define FSTV0910_P1_FIRST_LOCK 0xf5690001
  2584. /* P1_PDELSTATUS2 */
  2585. #define RSTV0910_P1_PDELSTATUS2 0xf56a
  2586. #define FSTV0910_P1_FRAME_MODCOD 0xf56a207c
  2587. #define FSTV0910_P1_FRAME_TYPE 0xf56a0003
  2588. /* P1_BBFCRCKO1 */
  2589. #define RSTV0910_P1_BBFCRCKO1 0xf56b
  2590. #define FSTV0910_P1_BBHCRC_KOCNT1 0xf56b00ff
  2591. /* P1_BBFCRCKO0 */
  2592. #define RSTV0910_P1_BBFCRCKO0 0xf56c
  2593. #define FSTV0910_P1_BBHCRC_KOCNT0 0xf56c00ff
  2594. /* P1_UPCRCKO1 */
  2595. #define RSTV0910_P1_UPCRCKO1 0xf56d
  2596. #define FSTV0910_P1_PKTCRC_KOCNT1 0xf56d00ff
  2597. /* P1_UPCRCKO0 */
  2598. #define RSTV0910_P1_UPCRCKO0 0xf56e
  2599. #define FSTV0910_P1_PKTCRC_KOCNT0 0xf56e00ff
  2600. /* P1_PDELCTRL3 */
  2601. #define RSTV0910_P1_PDELCTRL3 0xf56f
  2602. #define FSTV0910_P1_NOFIFO_BCHERR 0xf56f5020
  2603. #define FSTV0910_P1_PKTDELIN_DELACMERR 0xf56f4010
  2604. /* P1_TSSTATEM */
  2605. #define RSTV0910_P1_TSSTATEM 0xf570
  2606. #define FSTV0910_P1_TSDIL_ON 0xf5707080
  2607. #define FSTV0910_P1_TSRS_ON 0xf5705020
  2608. #define FSTV0910_P1_TSDESCRAMB_ON 0xf5704010
  2609. #define FSTV0910_P1_TSFRAME_MODE 0xf5703008
  2610. #define FSTV0910_P1_TS_DISABLE 0xf5702004
  2611. #define FSTV0910_P1_TSACM_MODE 0xf5701002
  2612. #define FSTV0910_P1_TSOUT_NOSYNC 0xf5700001
  2613. /* P1_TSSTATEL */
  2614. #define RSTV0910_P1_TSSTATEL 0xf571
  2615. #define FSTV0910_P1_TSNOSYNCBYTE 0xf5717080
  2616. #define FSTV0910_P1_TSPARITY_ON 0xf5716040
  2617. #define FSTV0910_P1_TSISSYI_ON 0xf5713008
  2618. #define FSTV0910_P1_TSNPD_ON 0xf5712004
  2619. #define FSTV0910_P1_TSCRC8_ON 0xf5711002
  2620. #define FSTV0910_P1_TSDSS_PACKET 0xf5710001
  2621. /* P1_TSCFGH */
  2622. #define RSTV0910_P1_TSCFGH 0xf572
  2623. #define FSTV0910_P1_TSFIFO_DVBCI 0xf5727080
  2624. #define FSTV0910_P1_TSFIFO_SERIAL 0xf5726040
  2625. #define FSTV0910_P1_TSFIFO_TEIUPDATE 0xf5725020
  2626. #define FSTV0910_P1_TSFIFO_DUTY50 0xf5724010
  2627. #define FSTV0910_P1_TSFIFO_HSGNLOUT 0xf5723008
  2628. #define FSTV0910_P1_TSFIFO_ERRMODE 0xf5721006
  2629. #define FSTV0910_P1_RST_HWARE 0xf5720001
  2630. /* P1_TSCFGM */
  2631. #define RSTV0910_P1_TSCFGM 0xf573
  2632. #define FSTV0910_P1_TSFIFO_MANSPEED 0xf57360c0
  2633. #define FSTV0910_P1_TSFIFO_PERMDATA 0xf5735020
  2634. #define FSTV0910_P1_TSFIFO_NONEWSGNL 0xf5734010
  2635. #define FSTV0910_P1_TSFIFO_INVDATA 0xf5730001
  2636. /* P1_TSCFGL */
  2637. #define RSTV0910_P1_TSCFGL 0xf574
  2638. #define FSTV0910_P1_TSFIFO_BCLKDEL1CK 0xf57460c0
  2639. #define FSTV0910_P1_BCHERROR_MODE 0xf5744030
  2640. #define FSTV0910_P1_TSFIFO_NSGNL2DATA 0xf5743008
  2641. #define FSTV0910_P1_TSFIFO_EMBINDVB 0xf5742004
  2642. #define FSTV0910_P1_TSFIFO_BITSPEED 0xf5740003
  2643. /* P1_TSSYNC */
  2644. #define RSTV0910_P1_TSSYNC 0xf575
  2645. #define FSTV0910_P1_TSFIFO_SYNCMODE 0xf5753018
  2646. /* P1_TSINSDELH */
  2647. #define RSTV0910_P1_TSINSDELH 0xf576
  2648. #define FSTV0910_P1_TSDEL_SYNCBYTE 0xf5767080
  2649. #define FSTV0910_P1_TSDEL_XXHEADER 0xf5766040
  2650. #define FSTV0910_P1_TSDEL_DATAFIELD 0xf5764010
  2651. #define FSTV0910_P1_TSINSDEL_RSPARITY 0xf5761002
  2652. #define FSTV0910_P1_TSINSDEL_CRC8 0xf5760001
  2653. /* P1_TSINSDELM */
  2654. #define RSTV0910_P1_TSINSDELM 0xf577
  2655. #define FSTV0910_P1_TSINS_EMODCOD 0xf5774010
  2656. #define FSTV0910_P1_TSINS_TOKEN 0xf5773008
  2657. #define FSTV0910_P1_TSINS_XXXERR 0xf5772004
  2658. #define FSTV0910_P1_TSINS_MATYPE 0xf5771002
  2659. #define FSTV0910_P1_TSINS_UPL 0xf5770001
  2660. /* P1_TSINSDELL */
  2661. #define RSTV0910_P1_TSINSDELL 0xf578
  2662. #define FSTV0910_P1_TSINS_DFL 0xf5787080
  2663. #define FSTV0910_P1_TSINS_SYNCD 0xf5786040
  2664. #define FSTV0910_P1_TSINS_BLOCLEN 0xf5785020
  2665. #define FSTV0910_P1_TSINS_SIGPCOUNT 0xf5784010
  2666. #define FSTV0910_P1_TSINS_FIFO 0xf5783008
  2667. #define FSTV0910_P1_TSINS_REALPACK 0xf5782004
  2668. #define FSTV0910_P1_TSINS_TSCONFIG 0xf5781002
  2669. #define FSTV0910_P1_TSINS_LATENCY 0xf5780001
  2670. /* P1_TSDIVN */
  2671. #define RSTV0910_P1_TSDIVN 0xf579
  2672. #define FSTV0910_P1_TSFIFO_SPEEDMODE 0xf57960c0
  2673. #define FSTV0910_P1_TSFIFO_RISEOK 0xf5790007
  2674. /* P1_TSCFG4 */
  2675. #define RSTV0910_P1_TSCFG4 0xf57a
  2676. #define FSTV0910_P1_TSFIFO_TSSPEEDMODE 0xf57a60c0
  2677. /* P1_TSSPEED */
  2678. #define RSTV0910_P1_TSSPEED 0xf580
  2679. #define FSTV0910_P1_TSFIFO_OUTSPEED 0xf58000ff
  2680. /* P1_TSSTATUS */
  2681. #define RSTV0910_P1_TSSTATUS 0xf581
  2682. #define FSTV0910_P1_TSFIFO_LINEOK 0xf5817080
  2683. #define FSTV0910_P1_TSFIFO_ERROR 0xf5816040
  2684. #define FSTV0910_P1_TSFIFO_NOSYNC 0xf5814010
  2685. #define FSTV0910_P1_TSREGUL_ERROR 0xf5812004
  2686. #define FSTV0910_P1_DIL_READY 0xf5810001
  2687. /* P1_TSSTATUS2 */
  2688. #define RSTV0910_P1_TSSTATUS2 0xf582
  2689. #define FSTV0910_P1_TSFIFO_DEMODSEL 0xf5827080
  2690. #define FSTV0910_P1_TSFIFOSPEED_STORE 0xf5826040
  2691. #define FSTV0910_P1_DILXX_RESET 0xf5825020
  2692. #define FSTV0910_P1_SCRAMBDETECT 0xf5821002
  2693. /* P1_TSBITRATE1 */
  2694. #define RSTV0910_P1_TSBITRATE1 0xf583
  2695. #define FSTV0910_P1_TSFIFO_BITRATE1 0xf58300ff
  2696. /* P1_TSBITRATE0 */
  2697. #define RSTV0910_P1_TSBITRATE0 0xf584
  2698. #define FSTV0910_P1_TSFIFO_BITRATE0 0xf58400ff
  2699. /* P1_TSPACKLEN1 */
  2700. #define RSTV0910_P1_TSPACKLEN1 0xf585
  2701. #define FSTV0910_P1_TSFIFO_PACKCPT 0xf58550e0
  2702. /* P1_TSDLY2 */
  2703. #define RSTV0910_P1_TSDLY2 0xf589
  2704. #define FSTV0910_P1_SOFFIFO_LATENCY2 0xf589000f
  2705. /* P1_TSDLY1 */
  2706. #define RSTV0910_P1_TSDLY1 0xf58a
  2707. #define FSTV0910_P1_SOFFIFO_LATENCY1 0xf58a00ff
  2708. /* P1_TSDLY0 */
  2709. #define RSTV0910_P1_TSDLY0 0xf58b
  2710. #define FSTV0910_P1_SOFFIFO_LATENCY0 0xf58b00ff
  2711. /* P1_TSNPDAV */
  2712. #define RSTV0910_P1_TSNPDAV 0xf58c
  2713. #define FSTV0910_P1_TSNPD_AVERAGE 0xf58c00ff
  2714. /* P1_TSBUFSTAT2 */
  2715. #define RSTV0910_P1_TSBUFSTAT2 0xf58d
  2716. #define FSTV0910_P1_TSISCR_3BYTES 0xf58d7080
  2717. #define FSTV0910_P1_TSISCR_NEWDATA 0xf58d6040
  2718. #define FSTV0910_P1_TSISCR_BUFSTAT2 0xf58d003f
  2719. /* P1_TSBUFSTAT1 */
  2720. #define RSTV0910_P1_TSBUFSTAT1 0xf58e
  2721. #define FSTV0910_P1_TSISCR_BUFSTAT1 0xf58e00ff
  2722. /* P1_TSBUFSTAT0 */
  2723. #define RSTV0910_P1_TSBUFSTAT0 0xf58f
  2724. #define FSTV0910_P1_TSISCR_BUFSTAT0 0xf58f00ff
  2725. /* P1_TSDEBUGL */
  2726. #define RSTV0910_P1_TSDEBUGL 0xf591
  2727. #define FSTV0910_P1_TSFIFO_ERROR_EVNT 0xf5912004
  2728. #define FSTV0910_P1_TSFIFO_OVERFLOWM 0xf5910001
  2729. /* P1_TSDLYSET2 */
  2730. #define RSTV0910_P1_TSDLYSET2 0xf592
  2731. #define FSTV0910_P1_SOFFIFO_OFFSET 0xf59260c0
  2732. #define FSTV0910_P1_HYSTERESIS_THRESHOLD 0xf5924030
  2733. #define FSTV0910_P1_SOFFIFO_SYMBOFFS2 0xf592000f
  2734. /* P1_TSDLYSET1 */
  2735. #define RSTV0910_P1_TSDLYSET1 0xf593
  2736. #define FSTV0910_P1_SOFFIFO_SYMBOFFS1 0xf59300ff
  2737. /* P1_TSDLYSET0 */
  2738. #define RSTV0910_P1_TSDLYSET0 0xf594
  2739. #define FSTV0910_P1_SOFFIFO_SYMBOFFS0 0xf59400ff
  2740. /* P1_ERRCTRL1 */
  2741. #define RSTV0910_P1_ERRCTRL1 0xf598
  2742. #define FSTV0910_P1_ERR_SOURCE1 0xf59840f0
  2743. #define FSTV0910_P1_NUM_EVENT1 0xf5980007
  2744. /* P1_ERRCNT12 */
  2745. #define RSTV0910_P1_ERRCNT12 0xf599
  2746. #define FSTV0910_P1_ERRCNT1_OLDVALUE 0xf5997080
  2747. #define FSTV0910_P1_ERR_CNT12 0xf599007f
  2748. /* P1_ERRCNT11 */
  2749. #define RSTV0910_P1_ERRCNT11 0xf59a
  2750. #define FSTV0910_P1_ERR_CNT11 0xf59a00ff
  2751. /* P1_ERRCNT10 */
  2752. #define RSTV0910_P1_ERRCNT10 0xf59b
  2753. #define FSTV0910_P1_ERR_CNT10 0xf59b00ff
  2754. /* P1_ERRCTRL2 */
  2755. #define RSTV0910_P1_ERRCTRL2 0xf59c
  2756. #define FSTV0910_P1_ERR_SOURCE2 0xf59c40f0
  2757. #define FSTV0910_P1_NUM_EVENT2 0xf59c0007
  2758. /* P1_ERRCNT22 */
  2759. #define RSTV0910_P1_ERRCNT22 0xf59d
  2760. #define FSTV0910_P1_ERRCNT2_OLDVALUE 0xf59d7080
  2761. #define FSTV0910_P1_ERR_CNT22 0xf59d007f
  2762. /* P1_ERRCNT21 */
  2763. #define RSTV0910_P1_ERRCNT21 0xf59e
  2764. #define FSTV0910_P1_ERR_CNT21 0xf59e00ff
  2765. /* P1_ERRCNT20 */
  2766. #define RSTV0910_P1_ERRCNT20 0xf59f
  2767. #define FSTV0910_P1_ERR_CNT20 0xf59f00ff
  2768. /* P1_FECSPY */
  2769. #define RSTV0910_P1_FECSPY 0xf5a0
  2770. #define FSTV0910_P1_SPY_ENABLE 0xf5a07080
  2771. #define FSTV0910_P1_NO_SYNCBYTE 0xf5a06040
  2772. #define FSTV0910_P1_SERIAL_MODE 0xf5a05020
  2773. #define FSTV0910_P1_UNUSUAL_PACKET 0xf5a04010
  2774. #define FSTV0910_P1_BERMETER_DATAMODE 0xf5a0200c
  2775. #define FSTV0910_P1_BERMETER_LMODE 0xf5a01002
  2776. #define FSTV0910_P1_BERMETER_RESET 0xf5a00001
  2777. /* P1_FSPYCFG */
  2778. #define RSTV0910_P1_FSPYCFG 0xf5a1
  2779. #define FSTV0910_P1_FECSPY_INPUT 0xf5a160c0
  2780. #define FSTV0910_P1_RST_ON_ERROR 0xf5a15020
  2781. #define FSTV0910_P1_ONE_SHOT 0xf5a14010
  2782. #define FSTV0910_P1_I2C_MODE 0xf5a1200c
  2783. #define FSTV0910_P1_SPY_HYSTERESIS 0xf5a10003
  2784. /* P1_FSPYDATA */
  2785. #define RSTV0910_P1_FSPYDATA 0xf5a2
  2786. #define FSTV0910_P1_SPY_STUFFING 0xf5a27080
  2787. #define FSTV0910_P1_SPY_CNULLPKT 0xf5a25020
  2788. #define FSTV0910_P1_SPY_OUTDATA_MODE 0xf5a2001f
  2789. /* P1_FSPYOUT */
  2790. #define RSTV0910_P1_FSPYOUT 0xf5a3
  2791. #define FSTV0910_P1_FSPY_DIRECT 0xf5a37080
  2792. #define FSTV0910_P1_STUFF_MODE 0xf5a30007
  2793. /* P1_FSTATUS */
  2794. #define RSTV0910_P1_FSTATUS 0xf5a4
  2795. #define FSTV0910_P1_SPY_ENDSIM 0xf5a47080
  2796. #define FSTV0910_P1_VALID_SIM 0xf5a46040
  2797. #define FSTV0910_P1_FOUND_SIGNAL 0xf5a45020
  2798. #define FSTV0910_P1_DSS_SYNCBYTE 0xf5a44010
  2799. #define FSTV0910_P1_RESULT_STATE 0xf5a4000f
  2800. /* P1_FBERCPT4 */
  2801. #define RSTV0910_P1_FBERCPT4 0xf5a8
  2802. #define FSTV0910_P1_FBERMETER_CPT4 0xf5a800ff
  2803. /* P1_FBERCPT3 */
  2804. #define RSTV0910_P1_FBERCPT3 0xf5a9
  2805. #define FSTV0910_P1_FBERMETER_CPT3 0xf5a900ff
  2806. /* P1_FBERCPT2 */
  2807. #define RSTV0910_P1_FBERCPT2 0xf5aa
  2808. #define FSTV0910_P1_FBERMETER_CPT2 0xf5aa00ff
  2809. /* P1_FBERCPT1 */
  2810. #define RSTV0910_P1_FBERCPT1 0xf5ab
  2811. #define FSTV0910_P1_FBERMETER_CPT1 0xf5ab00ff
  2812. /* P1_FBERCPT0 */
  2813. #define RSTV0910_P1_FBERCPT0 0xf5ac
  2814. #define FSTV0910_P1_FBERMETER_CPT0 0xf5ac00ff
  2815. /* P1_FBERERR2 */
  2816. #define RSTV0910_P1_FBERERR2 0xf5ad
  2817. #define FSTV0910_P1_FBERMETER_ERR2 0xf5ad00ff
  2818. /* P1_FBERERR1 */
  2819. #define RSTV0910_P1_FBERERR1 0xf5ae
  2820. #define FSTV0910_P1_FBERMETER_ERR1 0xf5ae00ff
  2821. /* P1_FBERERR0 */
  2822. #define RSTV0910_P1_FBERERR0 0xf5af
  2823. #define FSTV0910_P1_FBERMETER_ERR0 0xf5af00ff
  2824. /* P1_FSPYBER */
  2825. #define RSTV0910_P1_FSPYBER 0xf5b2
  2826. #define FSTV0910_P1_FSPYBER_SYNCBYTE 0xf5b24010
  2827. #define FSTV0910_P1_FSPYBER_UNSYNC 0xf5b23008
  2828. #define FSTV0910_P1_FSPYBER_CTIME 0xf5b20007
  2829. /* P1_SFERROR */
  2830. #define RSTV0910_P1_SFERROR 0xf5c1
  2831. #define FSTV0910_P1_SFEC_REGERR_VIT 0xf5c100ff
  2832. /* P1_SFECSTATUS */
  2833. #define RSTV0910_P1_SFECSTATUS 0xf5c3
  2834. #define FSTV0910_P1_SFEC_ON 0xf5c37080
  2835. #define FSTV0910_P1_SFEC_OFF 0xf5c36040
  2836. #define FSTV0910_P1_LOCKEDSFEC 0xf5c33008
  2837. #define FSTV0910_P1_SFEC_DELOCK 0xf5c32004
  2838. #define FSTV0910_P1_SFEC_DEMODSEL 0xf5c31002
  2839. #define FSTV0910_P1_SFEC_OVFON 0xf5c30001
  2840. /* P1_SFKDIV12 */
  2841. #define RSTV0910_P1_SFKDIV12 0xf5c4
  2842. #define FSTV0910_P1_SFECKDIV12_MAN 0xf5c47080
  2843. /* P1_SFKDIV23 */
  2844. #define RSTV0910_P1_SFKDIV23 0xf5c5
  2845. #define FSTV0910_P1_SFECKDIV23_MAN 0xf5c57080
  2846. /* P1_SFKDIV34 */
  2847. #define RSTV0910_P1_SFKDIV34 0xf5c6
  2848. #define FSTV0910_P1_SFECKDIV34_MAN 0xf5c67080
  2849. /* P1_SFKDIV56 */
  2850. #define RSTV0910_P1_SFKDIV56 0xf5c7
  2851. #define FSTV0910_P1_SFECKDIV56_MAN 0xf5c77080
  2852. /* P1_SFKDIV67 */
  2853. #define RSTV0910_P1_SFKDIV67 0xf5c8
  2854. #define FSTV0910_P1_SFECKDIV67_MAN 0xf5c87080
  2855. /* P1_SFKDIV78 */
  2856. #define RSTV0910_P1_SFKDIV78 0xf5c9
  2857. #define FSTV0910_P1_SFECKDIV78_MAN 0xf5c97080
  2858. /* P1_SFSTATUS */
  2859. #define RSTV0910_P1_SFSTATUS 0xf5cc
  2860. #define FSTV0910_P1_SFEC_LINEOK 0xf5cc7080
  2861. #define FSTV0910_P1_SFEC_ERROR 0xf5cc6040
  2862. #define FSTV0910_P1_SFEC_DATA7 0xf5cc5020
  2863. #define FSTV0910_P1_SFEC_PKTDNBRFAIL 0xf5cc4010
  2864. #define FSTV0910_P1_TSSFEC_DEMODSEL 0xf5cc3008
  2865. #define FSTV0910_P1_SFEC_NOSYNC 0xf5cc2004
  2866. #define FSTV0910_P1_SFEC_UNREGULA 0xf5cc1002
  2867. #define FSTV0910_P1_SFEC_READY 0xf5cc0001
  2868. /* P1_SFDLYSET2 */
  2869. #define RSTV0910_P1_SFDLYSET2 0xf5d0
  2870. #define FSTV0910_P1_SFEC_DISABLE 0xf5d01002
  2871. /* P1_SFERRCTRL */
  2872. #define RSTV0910_P1_SFERRCTRL 0xf5d8
  2873. #define FSTV0910_P1_SFEC_ERR_SOURCE 0xf5d840f0
  2874. #define FSTV0910_P1_SFEC_NUM_EVENT 0xf5d80007
  2875. /* P1_SFERRCNT2 */
  2876. #define RSTV0910_P1_SFERRCNT2 0xf5d9
  2877. #define FSTV0910_P1_SFERRC_OLDVALUE 0xf5d97080
  2878. #define FSTV0910_P1_SFEC_ERR_CNT2 0xf5d9007f
  2879. /* P1_SFERRCNT1 */
  2880. #define RSTV0910_P1_SFERRCNT1 0xf5da
  2881. #define FSTV0910_P1_SFEC_ERR_CNT1 0xf5da00ff
  2882. /* P1_SFERRCNT0 */
  2883. #define RSTV0910_P1_SFERRCNT0 0xf5db
  2884. #define FSTV0910_P1_SFEC_ERR_CNT0 0xf5db00ff
  2885. /* RCCFG2 */
  2886. #define RSTV0910_RCCFG2 0xf600
  2887. #define FSTV0910_TSRCFIFO_DVBCI 0xf6007080
  2888. #define FSTV0910_TSRCFIFO_SERIAL 0xf6006040
  2889. #define FSTV0910_TSRCFIFO_DISABLE 0xf6005020
  2890. #define FSTV0910_TSFIFO_2TORC 0xf6004010
  2891. #define FSTV0910_TSRCFIFO_HSGNLOUT 0xf6003008
  2892. #define FSTV0910_TSRCFIFO_ERRMODE 0xf6001006
  2893. /* RCCFG1 */
  2894. #define RSTV0910_RCCFG1 0xf601
  2895. #define FSTV0910_TSRCFIFO_MANSPEED 0xf60160c0
  2896. #define FSTV0910_TSRCFIFO_PERMDATA 0xf6015020
  2897. #define FSTV0910_TSRCFIFO_NONEWSGNL 0xf6014010
  2898. #define FSTV0910_TSRCFIFO_INVDATA 0xf6010001
  2899. /* RCCFG0 */
  2900. #define RSTV0910_RCCFG0 0xf602
  2901. #define FSTV0910_TSRCFIFO_BCLKDEL1CK 0xf60260c0
  2902. #define FSTV0910_TSRCFIFO_DUTY50 0xf6024010
  2903. #define FSTV0910_TSRCFIFO_NSGNL2DATA 0xf6023008
  2904. #define FSTV0910_TSRCFIFO_NPDSGNL 0xf6022004
  2905. /* RCINSDEL2 */
  2906. #define RSTV0910_RCINSDEL2 0xf603
  2907. #define FSTV0910_TSRCDEL_SYNCBYTE 0xf6037080
  2908. #define FSTV0910_TSRCDEL_XXHEADER 0xf6036040
  2909. #define FSTV0910_TSRCDEL_BBHEADER 0xf6035020
  2910. #define FSTV0910_TSRCDEL_DATAFIELD 0xf6034010
  2911. #define FSTV0910_TSRCINSDEL_ISCR 0xf6033008
  2912. #define FSTV0910_TSRCINSDEL_NPD 0xf6032004
  2913. #define FSTV0910_TSRCINSDEL_RSPARITY 0xf6031002
  2914. #define FSTV0910_TSRCINSDEL_CRC8 0xf6030001
  2915. /* RCINSDEL1 */
  2916. #define RSTV0910_RCINSDEL1 0xf604
  2917. #define FSTV0910_TSRCINS_BBPADDING 0xf6047080
  2918. #define FSTV0910_TSRCINS_BCHFEC 0xf6046040
  2919. #define FSTV0910_TSRCINS_EMODCOD 0xf6044010
  2920. #define FSTV0910_TSRCINS_TOKEN 0xf6043008
  2921. #define FSTV0910_TSRCINS_XXXERR 0xf6042004
  2922. #define FSTV0910_TSRCINS_MATYPE 0xf6041002
  2923. #define FSTV0910_TSRCINS_UPL 0xf6040001
  2924. /* RCINSDEL0 */
  2925. #define RSTV0910_RCINSDEL0 0xf605
  2926. #define FSTV0910_TSRCINS_DFL 0xf6057080
  2927. #define FSTV0910_TSRCINS_SYNCD 0xf6056040
  2928. #define FSTV0910_TSRCINS_BLOCLEN 0xf6055020
  2929. #define FSTV0910_TSRCINS_SIGPCOUNT 0xf6054010
  2930. #define FSTV0910_TSRCINS_FIFO 0xf6053008
  2931. #define FSTV0910_TSRCINS_REALPACK 0xf6052004
  2932. #define FSTV0910_TSRCINS_TSCONFIG 0xf6051002
  2933. #define FSTV0910_TSRCINS_LATENCY 0xf6050001
  2934. /* RCSTATUS */
  2935. #define RSTV0910_RCSTATUS 0xf606
  2936. #define FSTV0910_TSRCFIFO_LINEOK 0xf6067080
  2937. #define FSTV0910_TSRCFIFO_ERROR 0xf6066040
  2938. #define FSTV0910_TSRCREGUL_ERROR 0xf6064010
  2939. #define FSTV0910_TSRCFIFO_DEMODSEL 0xf6063008
  2940. #define FSTV0910_TSRCFIFOSPEED_STORE 0xf6062004
  2941. #define FSTV0910_TSRCSPEED_IMPOSSIBLE 0xf6060001
  2942. /* RCSPEED */
  2943. #define RSTV0910_RCSPEED 0xf607
  2944. #define FSTV0910_TSRCFIFO_OUTSPEED 0xf60700ff
  2945. /* TSGENERAL */
  2946. #define RSTV0910_TSGENERAL 0xf630
  2947. #define FSTV0910_TSFIFO_DISTS2PAR 0xf6306040
  2948. #define FSTV0910_MUXSTREAM_OUTMODE 0xf6303008
  2949. #define FSTV0910_TSFIFO_PERMPARAL 0xf6301006
  2950. /* P1_DISIRQCFG */
  2951. #define RSTV0910_P1_DISIRQCFG 0xf700
  2952. #define FSTV0910_P1_ENRXEND 0xf7006040
  2953. #define FSTV0910_P1_ENRXFIFO8B 0xf7005020
  2954. #define FSTV0910_P1_ENTRFINISH 0xf7004010
  2955. #define FSTV0910_P1_ENTIMEOUT 0xf7003008
  2956. #define FSTV0910_P1_ENTXEND 0xf7002004
  2957. #define FSTV0910_P1_ENTXFIFO64B 0xf7001002
  2958. #define FSTV0910_P1_ENGAPBURST 0xf7000001
  2959. /* P1_DISIRQSTAT */
  2960. #define RSTV0910_P1_DISIRQSTAT 0xf701
  2961. #define FSTV0910_P1_IRQRXEND 0xf7016040
  2962. #define FSTV0910_P1_IRQRXFIFO8B 0xf7015020
  2963. #define FSTV0910_P1_IRQTRFINISH 0xf7014010
  2964. #define FSTV0910_P1_IRQTIMEOUT 0xf7013008
  2965. #define FSTV0910_P1_IRQTXEND 0xf7012004
  2966. #define FSTV0910_P1_IRQTXFIFO64B 0xf7011002
  2967. #define FSTV0910_P1_IRQGAPBURST 0xf7010001
  2968. /* P1_DISTXCFG */
  2969. #define RSTV0910_P1_DISTXCFG 0xf702
  2970. #define FSTV0910_P1_DISTX_RESET 0xf7027080
  2971. #define FSTV0910_P1_TIM_OFF 0xf7026040
  2972. #define FSTV0910_P1_TIM_CMD 0xf7024030
  2973. #define FSTV0910_P1_ENVELOP 0xf7023008
  2974. #define FSTV0910_P1_DIS_PRECHARGE 0xf7022004
  2975. #define FSTV0910_P1_DISEQC_MODE 0xf7020003
  2976. /* P1_DISTXSTATUS */
  2977. #define RSTV0910_P1_DISTXSTATUS 0xf703
  2978. #define FSTV0910_P1_TX_FIFO_FULL 0xf7036040
  2979. #define FSTV0910_P1_TX_IDLE 0xf7035020
  2980. #define FSTV0910_P1_GAP_BURST 0xf7034010
  2981. #define FSTV0910_P1_TX_FIFO64B 0xf7033008
  2982. #define FSTV0910_P1_TX_END 0xf7032004
  2983. #define FSTV0910_P1_TR_TIMEOUT 0xf7031002
  2984. #define FSTV0910_P1_TR_FINISH 0xf7030001
  2985. /* P1_DISTXBYTES */
  2986. #define RSTV0910_P1_DISTXBYTES 0xf704
  2987. #define FSTV0910_P1_TXFIFO_BYTES 0xf70400ff
  2988. /* P1_DISTXFIFO */
  2989. #define RSTV0910_P1_DISTXFIFO 0xf705
  2990. #define FSTV0910_P1_DISEQC_TX_FIFO 0xf70500ff
  2991. /* P1_DISTXF22 */
  2992. #define RSTV0910_P1_DISTXF22 0xf706
  2993. #define FSTV0910_P1_F22TX 0xf70600ff
  2994. /* P1_DISTIMEOCFG */
  2995. #define RSTV0910_P1_DISTIMEOCFG 0xf708
  2996. #define FSTV0910_P1_RXCHOICE 0xf7081006
  2997. #define FSTV0910_P1_TIMEOUT_OFF 0xf7080001
  2998. /* P1_DISTIMEOUT */
  2999. #define RSTV0910_P1_DISTIMEOUT 0xf709
  3000. #define FSTV0910_P1_TIMEOUT_COUNT 0xf70900ff
  3001. /* P1_DISRXCFG */
  3002. #define RSTV0910_P1_DISRXCFG 0xf70a
  3003. #define FSTV0910_P1_DISRX_RESET 0xf70a7080
  3004. #define FSTV0910_P1_EXTENVELOP 0xf70a6040
  3005. #define FSTV0910_P1_PINSELECT 0xf70a3038
  3006. #define FSTV0910_P1_IGNORE_SHORT22K 0xf70a2004
  3007. #define FSTV0910_P1_SIGNED_RXIN 0xf70a1002
  3008. #define FSTV0910_P1_DISRX_ON 0xf70a0001
  3009. /* P1_DISRXSTAT1 */
  3010. #define RSTV0910_P1_DISRXSTAT1 0xf70b
  3011. #define FSTV0910_P1_RXEND 0xf70b7080
  3012. #define FSTV0910_P1_RXACTIVE 0xf70b6040
  3013. #define FSTV0910_P1_RXDETECT 0xf70b5020
  3014. #define FSTV0910_P1_CONTTONE 0xf70b4010
  3015. #define FSTV0910_P1_8BFIFOREADY 0xf70b3008
  3016. #define FSTV0910_P1_FIFOEMPTY 0xf70b2004
  3017. /* P1_DISRXSTAT0 */
  3018. #define RSTV0910_P1_DISRXSTAT0 0xf70c
  3019. #define FSTV0910_P1_RXFAIL 0xf70c7080
  3020. #define FSTV0910_P1_FIFOPFAIL 0xf70c6040
  3021. #define FSTV0910_P1_RXNONBYTE 0xf70c5020
  3022. #define FSTV0910_P1_FIFOOVF 0xf70c4010
  3023. #define FSTV0910_P1_SHORT22K 0xf70c3008
  3024. #define FSTV0910_P1_RXMSGLOST 0xf70c2004
  3025. /* P1_DISRXBYTES */
  3026. #define RSTV0910_P1_DISRXBYTES 0xf70d
  3027. #define FSTV0910_P1_RXFIFO_BYTES 0xf70d001f
  3028. /* P1_DISRXPARITY1 */
  3029. #define RSTV0910_P1_DISRXPARITY1 0xf70e
  3030. #define FSTV0910_P1_DISRX_PARITY1 0xf70e00ff
  3031. /* P1_DISRXPARITY0 */
  3032. #define RSTV0910_P1_DISRXPARITY0 0xf70f
  3033. #define FSTV0910_P1_DISRX_PARITY0 0xf70f00ff
  3034. /* P1_DISRXFIFO */
  3035. #define RSTV0910_P1_DISRXFIFO 0xf710
  3036. #define FSTV0910_P1_DISEQC_RX_FIFO 0xf71000ff
  3037. /* P1_DISRXDC1 */
  3038. #define RSTV0910_P1_DISRXDC1 0xf711
  3039. #define FSTV0910_P1_DC_VALUE1 0xf7110103
  3040. /* P1_DISRXDC0 */
  3041. #define RSTV0910_P1_DISRXDC0 0xf712
  3042. #define FSTV0910_P1_DC_VALUE0 0xf71200ff
  3043. /* P1_DISRXF221 */
  3044. #define RSTV0910_P1_DISRXF221 0xf714
  3045. #define FSTV0910_P1_F22RX1 0xf714000f
  3046. /* P1_DISRXF220 */
  3047. #define RSTV0910_P1_DISRXF220 0xf715
  3048. #define FSTV0910_P1_F22RX0 0xf71500ff
  3049. /* P1_DISRXF100 */
  3050. #define RSTV0910_P1_DISRXF100 0xf716
  3051. #define FSTV0910_P1_F100RX 0xf71600ff
  3052. /* P1_DISRXSHORT22K */
  3053. #define RSTV0910_P1_DISRXSHORT22K 0xf71c
  3054. #define FSTV0910_P1_SHORT22K_LENGTH 0xf71c001f
  3055. /* P1_ACRPRESC */
  3056. #define RSTV0910_P1_ACRPRESC 0xf71e
  3057. #define FSTV0910_P1_ACR_PRESC 0xf71e0007
  3058. /* P1_ACRDIV */
  3059. #define RSTV0910_P1_ACRDIV 0xf71f
  3060. #define FSTV0910_P1_ACR_DIV 0xf71f00ff
  3061. /* P2_DISIRQCFG */
  3062. #define RSTV0910_P2_DISIRQCFG 0xf740
  3063. #define FSTV0910_P2_ENRXEND 0xf7406040
  3064. #define FSTV0910_P2_ENRXFIFO8B 0xf7405020
  3065. #define FSTV0910_P2_ENTRFINISH 0xf7404010
  3066. #define FSTV0910_P2_ENTIMEOUT 0xf7403008
  3067. #define FSTV0910_P2_ENTXEND 0xf7402004
  3068. #define FSTV0910_P2_ENTXFIFO64B 0xf7401002
  3069. #define FSTV0910_P2_ENGAPBURST 0xf7400001
  3070. /* P2_DISIRQSTAT */
  3071. #define RSTV0910_P2_DISIRQSTAT 0xf741
  3072. #define FSTV0910_P2_IRQRXEND 0xf7416040
  3073. #define FSTV0910_P2_IRQRXFIFO8B 0xf7415020
  3074. #define FSTV0910_P2_IRQTRFINISH 0xf7414010
  3075. #define FSTV0910_P2_IRQTIMEOUT 0xf7413008
  3076. #define FSTV0910_P2_IRQTXEND 0xf7412004
  3077. #define FSTV0910_P2_IRQTXFIFO64B 0xf7411002
  3078. #define FSTV0910_P2_IRQGAPBURST 0xf7410001
  3079. /* P2_DISTXCFG */
  3080. #define RSTV0910_P2_DISTXCFG 0xf742
  3081. #define FSTV0910_P2_DISTX_RESET 0xf7427080
  3082. #define FSTV0910_P2_TIM_OFF 0xf7426040
  3083. #define FSTV0910_P2_TIM_CMD 0xf7424030
  3084. #define FSTV0910_P2_ENVELOP 0xf7423008
  3085. #define FSTV0910_P2_DIS_PRECHARGE 0xf7422004
  3086. #define FSTV0910_P2_DISEQC_MODE 0xf7420003
  3087. /* P2_DISTXSTATUS */
  3088. #define RSTV0910_P2_DISTXSTATUS 0xf743
  3089. #define FSTV0910_P2_TX_FIFO_FULL 0xf7436040
  3090. #define FSTV0910_P2_TX_IDLE 0xf7435020
  3091. #define FSTV0910_P2_GAP_BURST 0xf7434010
  3092. #define FSTV0910_P2_TX_FIFO64B 0xf7433008
  3093. #define FSTV0910_P2_TX_END 0xf7432004
  3094. #define FSTV0910_P2_TR_TIMEOUT 0xf7431002
  3095. #define FSTV0910_P2_TR_FINISH 0xf7430001
  3096. /* P2_DISTXBYTES */
  3097. #define RSTV0910_P2_DISTXBYTES 0xf744
  3098. #define FSTV0910_P2_TXFIFO_BYTES 0xf74400ff
  3099. /* P2_DISTXFIFO */
  3100. #define RSTV0910_P2_DISTXFIFO 0xf745
  3101. #define FSTV0910_P2_DISEQC_TX_FIFO 0xf74500ff
  3102. /* P2_DISTXF22 */
  3103. #define RSTV0910_P2_DISTXF22 0xf746
  3104. #define FSTV0910_P2_F22TX 0xf74600ff
  3105. /* P2_DISTIMEOCFG */
  3106. #define RSTV0910_P2_DISTIMEOCFG 0xf748
  3107. #define FSTV0910_P2_RXCHOICE 0xf7481006
  3108. #define FSTV0910_P2_TIMEOUT_OFF 0xf7480001
  3109. /* P2_DISTIMEOUT */
  3110. #define RSTV0910_P2_DISTIMEOUT 0xf749
  3111. #define FSTV0910_P2_TIMEOUT_COUNT 0xf74900ff
  3112. /* P2_DISRXCFG */
  3113. #define RSTV0910_P2_DISRXCFG 0xf74a
  3114. #define FSTV0910_P2_DISRX_RESET 0xf74a7080
  3115. #define FSTV0910_P2_EXTENVELOP 0xf74a6040
  3116. #define FSTV0910_P2_PINSELECT 0xf74a3038
  3117. #define FSTV0910_P2_IGNORE_SHORT22K 0xf74a2004
  3118. #define FSTV0910_P2_SIGNED_RXIN 0xf74a1002
  3119. #define FSTV0910_P2_DISRX_ON 0xf74a0001
  3120. /* P2_DISRXSTAT1 */
  3121. #define RSTV0910_P2_DISRXSTAT1 0xf74b
  3122. #define FSTV0910_P2_RXEND 0xf74b7080
  3123. #define FSTV0910_P2_RXACTIVE 0xf74b6040
  3124. #define FSTV0910_P2_RXDETECT 0xf74b5020
  3125. #define FSTV0910_P2_CONTTONE 0xf74b4010
  3126. #define FSTV0910_P2_8BFIFOREADY 0xf74b3008
  3127. #define FSTV0910_P2_FIFOEMPTY 0xf74b2004
  3128. /* P2_DISRXSTAT0 */
  3129. #define RSTV0910_P2_DISRXSTAT0 0xf74c
  3130. #define FSTV0910_P2_RXFAIL 0xf74c7080
  3131. #define FSTV0910_P2_FIFOPFAIL 0xf74c6040
  3132. #define FSTV0910_P2_RXNONBYTE 0xf74c5020
  3133. #define FSTV0910_P2_FIFOOVF 0xf74c4010
  3134. #define FSTV0910_P2_SHORT22K 0xf74c3008
  3135. #define FSTV0910_P2_RXMSGLOST 0xf74c2004
  3136. /* P2_DISRXBYTES */
  3137. #define RSTV0910_P2_DISRXBYTES 0xf74d
  3138. #define FSTV0910_P2_RXFIFO_BYTES 0xf74d001f
  3139. /* P2_DISRXPARITY1 */
  3140. #define RSTV0910_P2_DISRXPARITY1 0xf74e
  3141. #define FSTV0910_P2_DISRX_PARITY1 0xf74e00ff
  3142. /* P2_DISRXPARITY0 */
  3143. #define RSTV0910_P2_DISRXPARITY0 0xf74f
  3144. #define FSTV0910_P2_DISRX_PARITY0 0xf74f00ff
  3145. /* P2_DISRXFIFO */
  3146. #define RSTV0910_P2_DISRXFIFO 0xf750
  3147. #define FSTV0910_P2_DISEQC_RX_FIFO 0xf75000ff
  3148. /* P2_DISRXDC1 */
  3149. #define RSTV0910_P2_DISRXDC1 0xf751
  3150. #define FSTV0910_P2_DC_VALUE1 0xf7510103
  3151. /* P2_DISRXDC0 */
  3152. #define RSTV0910_P2_DISRXDC0 0xf752
  3153. #define FSTV0910_P2_DC_VALUE0 0xf75200ff
  3154. /* P2_DISRXF221 */
  3155. #define RSTV0910_P2_DISRXF221 0xf754
  3156. #define FSTV0910_P2_F22RX1 0xf754000f
  3157. /* P2_DISRXF220 */
  3158. #define RSTV0910_P2_DISRXF220 0xf755
  3159. #define FSTV0910_P2_F22RX0 0xf75500ff
  3160. /* P2_DISRXF100 */
  3161. #define RSTV0910_P2_DISRXF100 0xf756
  3162. #define FSTV0910_P2_F100RX 0xf75600ff
  3163. /* P2_DISRXSHORT22K */
  3164. #define RSTV0910_P2_DISRXSHORT22K 0xf75c
  3165. #define FSTV0910_P2_SHORT22K_LENGTH 0xf75c001f
  3166. /* P2_ACRPRESC */
  3167. #define RSTV0910_P2_ACRPRESC 0xf75e
  3168. #define FSTV0910_P2_ACR_PRESC 0xf75e0007
  3169. /* P2_ACRDIV */
  3170. #define RSTV0910_P2_ACRDIV 0xf75f
  3171. #define FSTV0910_P2_ACR_DIV 0xf75f00ff
  3172. /* P1_NBITER_NF1 */
  3173. #define RSTV0910_P1_NBITER_NF1 0xfa00
  3174. #define FSTV0910_P1_NBITER_NF_QPSK_1_4 0xfa0000ff
  3175. /* P1_NBITER_NF2 */
  3176. #define RSTV0910_P1_NBITER_NF2 0xfa01
  3177. #define FSTV0910_P1_NBITER_NF_QPSK_1_3 0xfa0100ff
  3178. /* P1_NBITER_NF3 */
  3179. #define RSTV0910_P1_NBITER_NF3 0xfa02
  3180. #define FSTV0910_P1_NBITER_NF_QPSK_2_5 0xfa0200ff
  3181. /* P1_NBITER_NF4 */
  3182. #define RSTV0910_P1_NBITER_NF4 0xfa03
  3183. #define FSTV0910_P1_NBITER_NF_QPSK_1_2 0xfa0300ff
  3184. /* P1_NBITER_NF5 */
  3185. #define RSTV0910_P1_NBITER_NF5 0xfa04
  3186. #define FSTV0910_P1_NBITER_NF_QPSK_3_5 0xfa0400ff
  3187. /* P1_NBITER_NF6 */
  3188. #define RSTV0910_P1_NBITER_NF6 0xfa05
  3189. #define FSTV0910_P1_NBITER_NF_QPSK_2_3 0xfa0500ff
  3190. /* P1_NBITER_NF7 */
  3191. #define RSTV0910_P1_NBITER_NF7 0xfa06
  3192. #define FSTV0910_P1_NBITER_NF_QPSK_3_4 0xfa0600ff
  3193. /* P1_NBITER_NF8 */
  3194. #define RSTV0910_P1_NBITER_NF8 0xfa07
  3195. #define FSTV0910_P1_NBITER_NF_QPSK_4_5 0xfa0700ff
  3196. /* P1_NBITER_NF9 */
  3197. #define RSTV0910_P1_NBITER_NF9 0xfa08
  3198. #define FSTV0910_P1_NBITER_NF_QPSK_5_6 0xfa0800ff
  3199. /* P1_NBITER_NF10 */
  3200. #define RSTV0910_P1_NBITER_NF10 0xfa09
  3201. #define FSTV0910_P1_NBITER_NF_QPSK_8_9 0xfa0900ff
  3202. /* P1_NBITER_NF11 */
  3203. #define RSTV0910_P1_NBITER_NF11 0xfa0a
  3204. #define FSTV0910_P1_NBITER_NF_QPSK_9_10 0xfa0a00ff
  3205. /* P1_NBITER_NF12 */
  3206. #define RSTV0910_P1_NBITER_NF12 0xfa0b
  3207. #define FSTV0910_P1_NBITER_NF_8PSK_3_5 0xfa0b00ff
  3208. /* P1_NBITER_NF13 */
  3209. #define RSTV0910_P1_NBITER_NF13 0xfa0c
  3210. #define FSTV0910_P1_NBITER_NF_8PSK_2_3 0xfa0c00ff
  3211. /* P1_NBITER_NF14 */
  3212. #define RSTV0910_P1_NBITER_NF14 0xfa0d
  3213. #define FSTV0910_P1_NBITER_NF_8PSK_3_4 0xfa0d00ff
  3214. /* P1_NBITER_NF15 */
  3215. #define RSTV0910_P1_NBITER_NF15 0xfa0e
  3216. #define FSTV0910_P1_NBITER_NF_8PSK_5_6 0xfa0e00ff
  3217. /* P1_NBITER_NF16 */
  3218. #define RSTV0910_P1_NBITER_NF16 0xfa0f
  3219. #define FSTV0910_P1_NBITER_NF_8PSK_8_9 0xfa0f00ff
  3220. /* P1_NBITER_NF17 */
  3221. #define RSTV0910_P1_NBITER_NF17 0xfa10
  3222. #define FSTV0910_P1_NBITER_NF_8PSK_9_10 0xfa1000ff
  3223. /* P1_NBITER_NF18 */
  3224. #define RSTV0910_P1_NBITER_NF18 0xfa11
  3225. #define FSTV0910_P1_NBITER_NF_16APSK_2_3 0xfa1100ff
  3226. /* P1_NBITER_NF19 */
  3227. #define RSTV0910_P1_NBITER_NF19 0xfa12
  3228. #define FSTV0910_P1_NBITER_NF_16APSK_3_4 0xfa1200ff
  3229. /* P1_NBITER_NF20 */
  3230. #define RSTV0910_P1_NBITER_NF20 0xfa13
  3231. #define FSTV0910_P1_NBITER_NF_16APSK_4_5 0xfa1300ff
  3232. /* P1_NBITER_NF21 */
  3233. #define RSTV0910_P1_NBITER_NF21 0xfa14
  3234. #define FSTV0910_P1_NBITER_NF_16APSK_5_6 0xfa1400ff
  3235. /* P1_NBITER_NF22 */
  3236. #define RSTV0910_P1_NBITER_NF22 0xfa15
  3237. #define FSTV0910_P1_NBITER_NF_16APSK_8_9 0xfa1500ff
  3238. /* P1_NBITER_NF23 */
  3239. #define RSTV0910_P1_NBITER_NF23 0xfa16
  3240. #define FSTV0910_P1_NBITER_NF_16APSK_9_10 0xfa1600ff
  3241. /* P1_NBITER_NF24 */
  3242. #define RSTV0910_P1_NBITER_NF24 0xfa17
  3243. #define FSTV0910_P1_NBITER_NF_32APSK_3_4 0xfa1700ff
  3244. /* P1_NBITER_NF25 */
  3245. #define RSTV0910_P1_NBITER_NF25 0xfa18
  3246. #define FSTV0910_P1_NBITER_NF_32APSK_4_5 0xfa1800ff
  3247. /* P1_NBITER_NF26 */
  3248. #define RSTV0910_P1_NBITER_NF26 0xfa19
  3249. #define FSTV0910_P1_NBITER_NF_32APSK_5_6 0xfa1900ff
  3250. /* P1_NBITER_NF27 */
  3251. #define RSTV0910_P1_NBITER_NF27 0xfa1a
  3252. #define FSTV0910_P1_NBITER_NF_32APSK_8_9 0xfa1a00ff
  3253. /* P1_NBITER_NF28 */
  3254. #define RSTV0910_P1_NBITER_NF28 0xfa1b
  3255. #define FSTV0910_P1_NBITER_NF_32APSK_9_10 0xfa1b00ff
  3256. /* P1_NBITER_SF1 */
  3257. #define RSTV0910_P1_NBITER_SF1 0xfa1c
  3258. #define FSTV0910_P1_NBITER_SF_QPSK_1_4 0xfa1c00ff
  3259. /* P1_NBITER_SF2 */
  3260. #define RSTV0910_P1_NBITER_SF2 0xfa1d
  3261. #define FSTV0910_P1_NBITER_SF_QPSK_1_3 0xfa1d00ff
  3262. /* P1_NBITER_SF3 */
  3263. #define RSTV0910_P1_NBITER_SF3 0xfa1e
  3264. #define FSTV0910_P1_NBITER_SF_QPSK_2_5 0xfa1e00ff
  3265. /* P1_NBITER_SF4 */
  3266. #define RSTV0910_P1_NBITER_SF4 0xfa1f
  3267. #define FSTV0910_P1_NBITER_SF_QPSK_1_2 0xfa1f00ff
  3268. /* P1_NBITER_SF5 */
  3269. #define RSTV0910_P1_NBITER_SF5 0xfa20
  3270. #define FSTV0910_P1_NBITER_SF_QPSK_3_5 0xfa2000ff
  3271. /* P1_NBITER_SF6 */
  3272. #define RSTV0910_P1_NBITER_SF6 0xfa21
  3273. #define FSTV0910_P1_NBITER_SF_QPSK_2_3 0xfa2100ff
  3274. /* P1_NBITER_SF7 */
  3275. #define RSTV0910_P1_NBITER_SF7 0xfa22
  3276. #define FSTV0910_P1_NBITER_SF_QPSK_3_4 0xfa2200ff
  3277. /* P1_NBITER_SF8 */
  3278. #define RSTV0910_P1_NBITER_SF8 0xfa23
  3279. #define FSTV0910_P1_NBITER_SF_QPSK_4_5 0xfa2300ff
  3280. /* P1_NBITER_SF9 */
  3281. #define RSTV0910_P1_NBITER_SF9 0xfa24
  3282. #define FSTV0910_P1_NBITER_SF_QPSK_5_6 0xfa2400ff
  3283. /* P1_NBITER_SF10 */
  3284. #define RSTV0910_P1_NBITER_SF10 0xfa25
  3285. #define FSTV0910_P1_NBITER_SF_QPSK_8_9 0xfa2500ff
  3286. /* P1_NBITER_SF12 */
  3287. #define RSTV0910_P1_NBITER_SF12 0xfa26
  3288. #define FSTV0910_P1_NBITER_SF_8PSK_3_5 0xfa2600ff
  3289. /* P1_NBITER_SF13 */
  3290. #define RSTV0910_P1_NBITER_SF13 0xfa27
  3291. #define FSTV0910_P1_NBITER_SF_8PSK_2_3 0xfa2700ff
  3292. /* P1_NBITER_SF14 */
  3293. #define RSTV0910_P1_NBITER_SF14 0xfa28
  3294. #define FSTV0910_P1_NBITER_SF_8PSK_3_4 0xfa2800ff
  3295. /* P1_NBITER_SF15 */
  3296. #define RSTV0910_P1_NBITER_SF15 0xfa29
  3297. #define FSTV0910_P1_NBITER_SF_8PSK_5_6 0xfa2900ff
  3298. /* P1_NBITER_SF16 */
  3299. #define RSTV0910_P1_NBITER_SF16 0xfa2a
  3300. #define FSTV0910_P1_NBITER_SF_8PSK_8_9 0xfa2a00ff
  3301. /* P1_NBITER_SF18 */
  3302. #define RSTV0910_P1_NBITER_SF18 0xfa2b
  3303. #define FSTV0910_P1_NBITER_SF_16APSK_2_3 0xfa2b00ff
  3304. /* P1_NBITER_SF19 */
  3305. #define RSTV0910_P1_NBITER_SF19 0xfa2c
  3306. #define FSTV0910_P1_NBITER_SF_16APSK_3_4 0xfa2c00ff
  3307. /* P1_NBITER_SF20 */
  3308. #define RSTV0910_P1_NBITER_SF20 0xfa2d
  3309. #define FSTV0910_P1_NBITER_SF_16APSK_4_5 0xfa2d00ff
  3310. /* P1_NBITER_SF21 */
  3311. #define RSTV0910_P1_NBITER_SF21 0xfa2e
  3312. #define FSTV0910_P1_NBITER_SF_16APSK_5_6 0xfa2e00ff
  3313. /* P1_NBITER_SF22 */
  3314. #define RSTV0910_P1_NBITER_SF22 0xfa2f
  3315. #define FSTV0910_P1_NBITER_SF_16APSK_8_9 0xfa2f00ff
  3316. /* P1_NBITER_SF24 */
  3317. #define RSTV0910_P1_NBITER_SF24 0xfa30
  3318. #define FSTV0910_P1_NBITER_SF_32APSK_3_4 0xfa3000ff
  3319. /* P1_NBITER_SF25 */
  3320. #define RSTV0910_P1_NBITER_SF25 0xfa31
  3321. #define FSTV0910_P1_NBITER_SF_32APSK_4_5 0xfa3100ff
  3322. /* P1_NBITER_SF26 */
  3323. #define RSTV0910_P1_NBITER_SF26 0xfa32
  3324. #define FSTV0910_P1_NBITER_SF_32APSK_5_6 0xfa3200ff
  3325. /* P1_NBITER_SF27 */
  3326. #define RSTV0910_P1_NBITER_SF27 0xfa33
  3327. #define FSTV0910_P1_NBITER_SF_32APSK_8_9 0xfa3300ff
  3328. /* SELSATUR6 */
  3329. #define RSTV0910_SELSATUR6 0xfa34
  3330. #define FSTV0910_SSAT_SF27 0xfa343008
  3331. #define FSTV0910_SSAT_SF26 0xfa342004
  3332. #define FSTV0910_SSAT_SF25 0xfa341002
  3333. #define FSTV0910_SSAT_SF24 0xfa340001
  3334. /* SELSATUR5 */
  3335. #define RSTV0910_SELSATUR5 0xfa35
  3336. #define FSTV0910_SSAT_SF22 0xfa357080
  3337. #define FSTV0910_SSAT_SF21 0xfa356040
  3338. #define FSTV0910_SSAT_SF20 0xfa355020
  3339. #define FSTV0910_SSAT_SF19 0xfa354010
  3340. #define FSTV0910_SSAT_SF18 0xfa353008
  3341. #define FSTV0910_SSAT_SF16 0xfa352004
  3342. #define FSTV0910_SSAT_SF15 0xfa351002
  3343. #define FSTV0910_SSAT_SF14 0xfa350001
  3344. /* SELSATUR4 */
  3345. #define RSTV0910_SELSATUR4 0xfa36
  3346. #define FSTV0910_SSAT_SF13 0xfa367080
  3347. #define FSTV0910_SSAT_SF12 0xfa366040
  3348. #define FSTV0910_SSAT_SF10 0xfa365020
  3349. #define FSTV0910_SSAT_SF9 0xfa364010
  3350. #define FSTV0910_SSAT_SF8 0xfa363008
  3351. #define FSTV0910_SSAT_SF7 0xfa362004
  3352. #define FSTV0910_SSAT_SF6 0xfa361002
  3353. #define FSTV0910_SSAT_SF5 0xfa360001
  3354. /* SELSATUR3 */
  3355. #define RSTV0910_SELSATUR3 0xfa37
  3356. #define FSTV0910_SSAT_SF4 0xfa377080
  3357. #define FSTV0910_SSAT_SF3 0xfa376040
  3358. #define FSTV0910_SSAT_SF2 0xfa375020
  3359. #define FSTV0910_SSAT_SF1 0xfa374010
  3360. #define FSTV0910_SSAT_NF28 0xfa373008
  3361. #define FSTV0910_SSAT_NF27 0xfa372004
  3362. #define FSTV0910_SSAT_NF26 0xfa371002
  3363. #define FSTV0910_SSAT_NF25 0xfa370001
  3364. /* SELSATUR2 */
  3365. #define RSTV0910_SELSATUR2 0xfa38
  3366. #define FSTV0910_SSAT_NF24 0xfa387080
  3367. #define FSTV0910_SSAT_NF23 0xfa386040
  3368. #define FSTV0910_SSAT_NF22 0xfa385020
  3369. #define FSTV0910_SSAT_NF21 0xfa384010
  3370. #define FSTV0910_SSAT_NF20 0xfa383008
  3371. #define FSTV0910_SSAT_NF19 0xfa382004
  3372. #define FSTV0910_SSAT_NF18 0xfa381002
  3373. #define FSTV0910_SSAT_NF17 0xfa380001
  3374. /* SELSATUR1 */
  3375. #define RSTV0910_SELSATUR1 0xfa39
  3376. #define FSTV0910_SSAT_NF16 0xfa397080
  3377. #define FSTV0910_SSAT_NF15 0xfa396040
  3378. #define FSTV0910_SSAT_NF14 0xfa395020
  3379. #define FSTV0910_SSAT_NF13 0xfa394010
  3380. #define FSTV0910_SSAT_NF12 0xfa393008
  3381. #define FSTV0910_SSAT_NF11 0xfa392004
  3382. #define FSTV0910_SSAT_NF10 0xfa391002
  3383. #define FSTV0910_SSAT_NF9 0xfa390001
  3384. /* SELSATUR0 */
  3385. #define RSTV0910_SELSATUR0 0xfa3a
  3386. #define FSTV0910_SSAT_NF8 0xfa3a7080
  3387. #define FSTV0910_SSAT_NF7 0xfa3a6040
  3388. #define FSTV0910_SSAT_NF6 0xfa3a5020
  3389. #define FSTV0910_SSAT_NF5 0xfa3a4010
  3390. #define FSTV0910_SSAT_NF4 0xfa3a3008
  3391. #define FSTV0910_SSAT_NF3 0xfa3a2004
  3392. #define FSTV0910_SSAT_NF2 0xfa3a1002
  3393. #define FSTV0910_SSAT_NF1 0xfa3a0001
  3394. /* GAINLLR_NF1 */
  3395. #define RSTV0910_GAINLLR_NF1 0xfa40
  3396. #define FSTV0910_GAINLLR_NF_QPSK_1_4 0xfa40007f
  3397. /* GAINLLR_NF2 */
  3398. #define RSTV0910_GAINLLR_NF2 0xfa41
  3399. #define FSTV0910_GAINLLR_NF_QPSK_1_3 0xfa41007f
  3400. /* GAINLLR_NF3 */
  3401. #define RSTV0910_GAINLLR_NF3 0xfa42
  3402. #define FSTV0910_GAINLLR_NF_QPSK_2_5 0xfa42007f
  3403. /* GAINLLR_NF4 */
  3404. #define RSTV0910_GAINLLR_NF4 0xfa43
  3405. #define FSTV0910_GAINLLR_NF_QPSK_1_2 0xfa43007f
  3406. /* GAINLLR_NF5 */
  3407. #define RSTV0910_GAINLLR_NF5 0xfa44
  3408. #define FSTV0910_GAINLLR_NF_QPSK_3_5 0xfa44007f
  3409. /* GAINLLR_NF6 */
  3410. #define RSTV0910_GAINLLR_NF6 0xfa45
  3411. #define FSTV0910_GAINLLR_NF_QPSK_2_3 0xfa45007f
  3412. /* GAINLLR_NF7 */
  3413. #define RSTV0910_GAINLLR_NF7 0xfa46
  3414. #define FSTV0910_GAINLLR_NF_QPSK_3_4 0xfa46007f
  3415. /* GAINLLR_NF8 */
  3416. #define RSTV0910_GAINLLR_NF8 0xfa47
  3417. #define FSTV0910_GAINLLR_NF_QPSK_4_5 0xfa47007f
  3418. /* GAINLLR_NF9 */
  3419. #define RSTV0910_GAINLLR_NF9 0xfa48
  3420. #define FSTV0910_GAINLLR_NF_QPSK_5_6 0xfa48007f
  3421. /* GAINLLR_NF10 */
  3422. #define RSTV0910_GAINLLR_NF10 0xfa49
  3423. #define FSTV0910_GAINLLR_NF_QPSK_8_9 0xfa49007f
  3424. /* GAINLLR_NF11 */
  3425. #define RSTV0910_GAINLLR_NF11 0xfa4a
  3426. #define FSTV0910_GAINLLR_NF_QPSK_9_10 0xfa4a007f
  3427. /* GAINLLR_NF12 */
  3428. #define RSTV0910_GAINLLR_NF12 0xfa4b
  3429. #define FSTV0910_GAINLLR_NF_8PSK_3_5 0xfa4b007f
  3430. /* GAINLLR_NF13 */
  3431. #define RSTV0910_GAINLLR_NF13 0xfa4c
  3432. #define FSTV0910_GAINLLR_NF_8PSK_2_3 0xfa4c007f
  3433. /* GAINLLR_NF14 */
  3434. #define RSTV0910_GAINLLR_NF14 0xfa4d
  3435. #define FSTV0910_GAINLLR_NF_8PSK_3_4 0xfa4d007f
  3436. /* GAINLLR_NF15 */
  3437. #define RSTV0910_GAINLLR_NF15 0xfa4e
  3438. #define FSTV0910_GAINLLR_NF_8PSK_5_6 0xfa4e007f
  3439. /* GAINLLR_NF16 */
  3440. #define RSTV0910_GAINLLR_NF16 0xfa4f
  3441. #define FSTV0910_GAINLLR_NF_8PSK_8_9 0xfa4f007f
  3442. /* GAINLLR_NF17 */
  3443. #define RSTV0910_GAINLLR_NF17 0xfa50
  3444. #define FSTV0910_GAINLLR_NF_8PSK_9_10 0xfa50007f
  3445. /* GAINLLR_NF18 */
  3446. #define RSTV0910_GAINLLR_NF18 0xfa51
  3447. #define FSTV0910_GAINLLR_NF_16APSK_2_3 0xfa51007f
  3448. /* GAINLLR_NF19 */
  3449. #define RSTV0910_GAINLLR_NF19 0xfa52
  3450. #define FSTV0910_GAINLLR_NF_16APSK_3_4 0xfa52007f
  3451. /* GAINLLR_NF20 */
  3452. #define RSTV0910_GAINLLR_NF20 0xfa53
  3453. #define FSTV0910_GAINLLR_NF_16APSK_4_5 0xfa53007f
  3454. /* GAINLLR_NF21 */
  3455. #define RSTV0910_GAINLLR_NF21 0xfa54
  3456. #define FSTV0910_GAINLLR_NF_16APSK_5_6 0xfa54007f
  3457. /* GAINLLR_NF22 */
  3458. #define RSTV0910_GAINLLR_NF22 0xfa55
  3459. #define FSTV0910_GAINLLR_NF_16APSK_8_9 0xfa55007f
  3460. /* GAINLLR_NF23 */
  3461. #define RSTV0910_GAINLLR_NF23 0xfa56
  3462. #define FSTV0910_GAINLLR_NF_16APSK_9_10 0xfa56007f
  3463. /* GAINLLR_NF24 */
  3464. #define RSTV0910_GAINLLR_NF24 0xfa57
  3465. #define FSTV0910_GAINLLR_NF_32APSK_3_4 0xfa57007f
  3466. /* GAINLLR_NF25 */
  3467. #define RSTV0910_GAINLLR_NF25 0xfa58
  3468. #define FSTV0910_GAINLLR_NF_32APSK_4_5 0xfa58007f
  3469. /* GAINLLR_NF26 */
  3470. #define RSTV0910_GAINLLR_NF26 0xfa59
  3471. #define FSTV0910_GAINLLR_NF_32APSK_5_6 0xfa59007f
  3472. /* GAINLLR_NF27 */
  3473. #define RSTV0910_GAINLLR_NF27 0xfa5a
  3474. #define FSTV0910_GAINLLR_NF_32APSK_8_9 0xfa5a007f
  3475. /* GAINLLR_NF28 */
  3476. #define RSTV0910_GAINLLR_NF28 0xfa5b
  3477. #define FSTV0910_GAINLLR_NF_32APSK_9_10 0xfa5b007f
  3478. /* GAINLLR_SF1 */
  3479. #define RSTV0910_GAINLLR_SF1 0xfa5c
  3480. #define FSTV0910_GAINLLR_SF_QPSK_1_4 0xfa5c007f
  3481. /* GAINLLR_SF2 */
  3482. #define RSTV0910_GAINLLR_SF2 0xfa5d
  3483. #define FSTV0910_GAINLLR_SF_QPSK_1_3 0xfa5d007f
  3484. /* GAINLLR_SF3 */
  3485. #define RSTV0910_GAINLLR_SF3 0xfa5e
  3486. #define FSTV0910_GAINLLR_SF_QPSK_2_5 0xfa5e007f
  3487. /* GAINLLR_SF4 */
  3488. #define RSTV0910_GAINLLR_SF4 0xfa5f
  3489. #define FSTV0910_GAINLLR_SF_QPSK_1_2 0xfa5f007f
  3490. /* GAINLLR_SF5 */
  3491. #define RSTV0910_GAINLLR_SF5 0xfa60
  3492. #define FSTV0910_GAINLLR_SF_QPSK_3_5 0xfa60007f
  3493. /* GAINLLR_SF6 */
  3494. #define RSTV0910_GAINLLR_SF6 0xfa61
  3495. #define FSTV0910_GAINLLR_SF_QPSK_2_3 0xfa61007f
  3496. /* GAINLLR_SF7 */
  3497. #define RSTV0910_GAINLLR_SF7 0xfa62
  3498. #define FSTV0910_GAINLLR_SF_QPSK_3_4 0xfa62007f
  3499. /* GAINLLR_SF8 */
  3500. #define RSTV0910_GAINLLR_SF8 0xfa63
  3501. #define FSTV0910_GAINLLR_SF_QPSK_4_5 0xfa63007f
  3502. /* GAINLLR_SF9 */
  3503. #define RSTV0910_GAINLLR_SF9 0xfa64
  3504. #define FSTV0910_GAINLLR_SF_QPSK_5_6 0xfa64007f
  3505. /* GAINLLR_SF10 */
  3506. #define RSTV0910_GAINLLR_SF10 0xfa65
  3507. #define FSTV0910_GAINLLR_SF_QPSK_8_9 0xfa65007f
  3508. /* GAINLLR_SF12 */
  3509. #define RSTV0910_GAINLLR_SF12 0xfa66
  3510. #define FSTV0910_GAINLLR_SF_8PSK_3_5 0xfa66007f
  3511. /* GAINLLR_SF13 */
  3512. #define RSTV0910_GAINLLR_SF13 0xfa67
  3513. #define FSTV0910_GAINLLR_SF_8PSK_2_3 0xfa67007f
  3514. /* GAINLLR_SF14 */
  3515. #define RSTV0910_GAINLLR_SF14 0xfa68
  3516. #define FSTV0910_GAINLLR_SF_8PSK_3_4 0xfa68007f
  3517. /* GAINLLR_SF15 */
  3518. #define RSTV0910_GAINLLR_SF15 0xfa69
  3519. #define FSTV0910_GAINLLR_SF_8PSK_5_6 0xfa69007f
  3520. /* GAINLLR_SF16 */
  3521. #define RSTV0910_GAINLLR_SF16 0xfa6a
  3522. #define FSTV0910_GAINLLR_SF_8PSK_8_9 0xfa6a007f
  3523. /* GAINLLR_SF18 */
  3524. #define RSTV0910_GAINLLR_SF18 0xfa6b
  3525. #define FSTV0910_GAINLLR_SF_16APSK_2_3 0xfa6b007f
  3526. /* GAINLLR_SF19 */
  3527. #define RSTV0910_GAINLLR_SF19 0xfa6c
  3528. #define FSTV0910_GAINLLR_SF_16APSK_3_4 0xfa6c007f
  3529. /* GAINLLR_SF20 */
  3530. #define RSTV0910_GAINLLR_SF20 0xfa6d
  3531. #define FSTV0910_GAINLLR_SF_16APSK_4_5 0xfa6d007f
  3532. /* GAINLLR_SF21 */
  3533. #define RSTV0910_GAINLLR_SF21 0xfa6e
  3534. #define FSTV0910_GAINLLR_SF_16APSK_5_6 0xfa6e007f
  3535. /* GAINLLR_SF22 */
  3536. #define RSTV0910_GAINLLR_SF22 0xfa6f
  3537. #define FSTV0910_GAINLLR_SF_16APSK_8_9 0xfa6f007f
  3538. /* GAINLLR_SF24 */
  3539. #define RSTV0910_GAINLLR_SF24 0xfa70
  3540. #define FSTV0910_GAINLLR_SF_32APSK_3_4 0xfa70007f
  3541. /* GAINLLR_SF25 */
  3542. #define RSTV0910_GAINLLR_SF25 0xfa71
  3543. #define FSTV0910_GAINLLR_SF_32APSK_4_5 0xfa71007f
  3544. /* GAINLLR_SF26 */
  3545. #define RSTV0910_GAINLLR_SF26 0xfa72
  3546. #define FSTV0910_GAINLLR_SF_32APSK_5_6 0xfa72007f
  3547. /* GAINLLR_SF27 */
  3548. #define RSTV0910_GAINLLR_SF27 0xfa73
  3549. #define FSTV0910_GAINLLR_SF_32APSK_8_9 0xfa73007f
  3550. /* CFGEXT */
  3551. #define RSTV0910_CFGEXT 0xfa80
  3552. #define FSTV0910_BYPBCH 0xfa806040
  3553. #define FSTV0910_BYPLDPC 0xfa805020
  3554. #define FSTV0910_SHORTMULT 0xfa802004
  3555. /* GENCFG */
  3556. #define RSTV0910_GENCFG 0xfa86
  3557. #define FSTV0910_BROADCAST 0xfa864010
  3558. #define FSTV0910_CROSSINPUT 0xfa861002
  3559. #define FSTV0910_DDEMOD 0xfa860001
  3560. /* LDPCERR1 */
  3561. #define RSTV0910_LDPCERR1 0xfa96
  3562. #define FSTV0910_LDPC_ERRORS1 0xfa9600ff
  3563. /* LDPCERR0 */
  3564. #define RSTV0910_LDPCERR0 0xfa97
  3565. #define FSTV0910_LDPC_ERRORS0 0xfa9700ff
  3566. /* BCHERR */
  3567. #define RSTV0910_BCHERR 0xfa98
  3568. #define FSTV0910_ERRORFLAG 0xfa984010
  3569. #define FSTV0910_BCH_ERRORS_COUNTER 0xfa98000f
  3570. /* P1_MAXEXTRAITER */
  3571. #define RSTV0910_P1_MAXEXTRAITER 0xfab1
  3572. #define FSTV0910_P1_MAX_EXTRA_ITER 0xfab100ff
  3573. /* P2_MAXEXTRAITER */
  3574. #define RSTV0910_P2_MAXEXTRAITER 0xfab6
  3575. #define FSTV0910_P2_MAX_EXTRA_ITER 0xfab600ff
  3576. /* P1_STATUSITER */
  3577. #define RSTV0910_P1_STATUSITER 0xfabc
  3578. #define FSTV0910_P1_STATUS_ITER 0xfabc00ff
  3579. /* P1_STATUSMAXITER */
  3580. #define RSTV0910_P1_STATUSMAXITER 0xfabd
  3581. #define FSTV0910_P1_STATUS_MAX_ITER 0xfabd00ff
  3582. /* P2_STATUSITER */
  3583. #define RSTV0910_P2_STATUSITER 0xfabe
  3584. #define FSTV0910_P2_STATUS_ITER 0xfabe00ff
  3585. /* P2_STATUSMAXITER */
  3586. #define RSTV0910_P2_STATUSMAXITER 0xfabf
  3587. #define FSTV0910_P2_STATUS_MAX_ITER 0xfabf00ff
  3588. /* P2_NBITER_NF1 */
  3589. #define RSTV0910_P2_NBITER_NF1 0xfac0
  3590. #define FSTV0910_P2_NBITER_NF_QPSK_1_4 0xfac000ff
  3591. /* P2_NBITER_NF2 */
  3592. #define RSTV0910_P2_NBITER_NF2 0xfac1
  3593. #define FSTV0910_P2_NBITER_NF_QPSK_1_3 0xfac100ff
  3594. /* P2_NBITER_NF3 */
  3595. #define RSTV0910_P2_NBITER_NF3 0xfac2
  3596. #define FSTV0910_P2_NBITER_NF_QPSK_2_5 0xfac200ff
  3597. /* P2_NBITER_NF4 */
  3598. #define RSTV0910_P2_NBITER_NF4 0xfac3
  3599. #define FSTV0910_P2_NBITER_NF_QPSK_1_2 0xfac300ff
  3600. /* P2_NBITER_NF5 */
  3601. #define RSTV0910_P2_NBITER_NF5 0xfac4
  3602. #define FSTV0910_P2_NBITER_NF_QPSK_3_5 0xfac400ff
  3603. /* P2_NBITER_NF6 */
  3604. #define RSTV0910_P2_NBITER_NF6 0xfac5
  3605. #define FSTV0910_P2_NBITER_NF_QPSK_2_3 0xfac500ff
  3606. /* P2_NBITER_NF7 */
  3607. #define RSTV0910_P2_NBITER_NF7 0xfac6
  3608. #define FSTV0910_P2_NBITER_NF_QPSK_3_4 0xfac600ff
  3609. /* P2_NBITER_NF8 */
  3610. #define RSTV0910_P2_NBITER_NF8 0xfac7
  3611. #define FSTV0910_P2_NBITER_NF_QPSK_4_5 0xfac700ff
  3612. /* P2_NBITER_NF9 */
  3613. #define RSTV0910_P2_NBITER_NF9 0xfac8
  3614. #define FSTV0910_P2_NBITER_NF_QPSK_5_6 0xfac800ff
  3615. /* P2_NBITER_NF10 */
  3616. #define RSTV0910_P2_NBITER_NF10 0xfac9
  3617. #define FSTV0910_P2_NBITER_NF_QPSK_8_9 0xfac900ff
  3618. /* P2_NBITER_NF11 */
  3619. #define RSTV0910_P2_NBITER_NF11 0xfaca
  3620. #define FSTV0910_P2_NBITER_NF_QPSK_9_10 0xfaca00ff
  3621. /* P2_NBITER_NF12 */
  3622. #define RSTV0910_P2_NBITER_NF12 0xfacb
  3623. #define FSTV0910_P2_NBITER_NF_8PSK_3_5 0xfacb00ff
  3624. /* P2_NBITER_NF13 */
  3625. #define RSTV0910_P2_NBITER_NF13 0xfacc
  3626. #define FSTV0910_P2_NBITER_NF_8PSK_2_3 0xfacc00ff
  3627. /* P2_NBITER_NF14 */
  3628. #define RSTV0910_P2_NBITER_NF14 0xfacd
  3629. #define FSTV0910_P2_NBITER_NF_8PSK_3_4 0xfacd00ff
  3630. /* P2_NBITER_NF15 */
  3631. #define RSTV0910_P2_NBITER_NF15 0xface
  3632. #define FSTV0910_P2_NBITER_NF_8PSK_5_6 0xface00ff
  3633. /* P2_NBITER_NF16 */
  3634. #define RSTV0910_P2_NBITER_NF16 0xfacf
  3635. #define FSTV0910_P2_NBITER_NF_8PSK_8_9 0xfacf00ff
  3636. /* P2_NBITER_NF17 */
  3637. #define RSTV0910_P2_NBITER_NF17 0xfad0
  3638. #define FSTV0910_P2_NBITER_NF_8PSK_9_10 0xfad000ff
  3639. /* P2_NBITER_NF18 */
  3640. #define RSTV0910_P2_NBITER_NF18 0xfad1
  3641. #define FSTV0910_P2_NBITER_NF_16APSK_2_3 0xfad100ff
  3642. /* P2_NBITER_NF19 */
  3643. #define RSTV0910_P2_NBITER_NF19 0xfad2
  3644. #define FSTV0910_P2_NBITER_NF_16APSK_3_4 0xfad200ff
  3645. /* P2_NBITER_NF20 */
  3646. #define RSTV0910_P2_NBITER_NF20 0xfad3
  3647. #define FSTV0910_P2_NBITER_NF_16APSK_4_5 0xfad300ff
  3648. /* P2_NBITER_NF21 */
  3649. #define RSTV0910_P2_NBITER_NF21 0xfad4
  3650. #define FSTV0910_P2_NBITER_NF_16APSK_5_6 0xfad400ff
  3651. /* P2_NBITER_NF22 */
  3652. #define RSTV0910_P2_NBITER_NF22 0xfad5
  3653. #define FSTV0910_P2_NBITER_NF_16APSK_8_9 0xfad500ff
  3654. /* P2_NBITER_NF23 */
  3655. #define RSTV0910_P2_NBITER_NF23 0xfad6
  3656. #define FSTV0910_P2_NBITER_NF_16APSK_9_10 0xfad600ff
  3657. /* P2_NBITER_NF24 */
  3658. #define RSTV0910_P2_NBITER_NF24 0xfad7
  3659. #define FSTV0910_P2_NBITER_NF_32APSK_3_4 0xfad700ff
  3660. /* P2_NBITER_NF25 */
  3661. #define RSTV0910_P2_NBITER_NF25 0xfad8
  3662. #define FSTV0910_P2_NBITER_NF_32APSK_4_5 0xfad800ff
  3663. /* P2_NBITER_NF26 */
  3664. #define RSTV0910_P2_NBITER_NF26 0xfad9
  3665. #define FSTV0910_P2_NBITER_NF_32APSK_5_6 0xfad900ff
  3666. /* P2_NBITER_NF27 */
  3667. #define RSTV0910_P2_NBITER_NF27 0xfada
  3668. #define FSTV0910_P2_NBITER_NF_32APSK_8_9 0xfada00ff
  3669. /* P2_NBITER_NF28 */
  3670. #define RSTV0910_P2_NBITER_NF28 0xfadb
  3671. #define FSTV0910_P2_NBITER_NF_32APSK_9_10 0xfadb00ff
  3672. /* P2_NBITER_SF1 */
  3673. #define RSTV0910_P2_NBITER_SF1 0xfadc
  3674. #define FSTV0910_P2_NBITER_SF_QPSK_1_4 0xfadc00ff
  3675. /* P2_NBITER_SF2 */
  3676. #define RSTV0910_P2_NBITER_SF2 0xfadd
  3677. #define FSTV0910_P2_NBITER_SF_QPSK_1_3 0xfadd00ff
  3678. /* P2_NBITER_SF3 */
  3679. #define RSTV0910_P2_NBITER_SF3 0xfade
  3680. #define FSTV0910_P2_NBITER_SF_QPSK_2_5 0xfade00ff
  3681. /* P2_NBITER_SF4 */
  3682. #define RSTV0910_P2_NBITER_SF4 0xfadf
  3683. #define FSTV0910_P2_NBITER_SF_QPSK_1_2 0xfadf00ff
  3684. /* P2_NBITER_SF5 */
  3685. #define RSTV0910_P2_NBITER_SF5 0xfae0
  3686. #define FSTV0910_P2_NBITER_SF_QPSK_3_5 0xfae000ff
  3687. /* P2_NBITER_SF6 */
  3688. #define RSTV0910_P2_NBITER_SF6 0xfae1
  3689. #define FSTV0910_P2_NBITER_SF_QPSK_2_3 0xfae100ff
  3690. /* P2_NBITER_SF7 */
  3691. #define RSTV0910_P2_NBITER_SF7 0xfae2
  3692. #define FSTV0910_P2_NBITER_SF_QPSK_3_4 0xfae200ff
  3693. /* P2_NBITER_SF8 */
  3694. #define RSTV0910_P2_NBITER_SF8 0xfae3
  3695. #define FSTV0910_P2_NBITER_SF_QPSK_4_5 0xfae300ff
  3696. /* P2_NBITER_SF9 */
  3697. #define RSTV0910_P2_NBITER_SF9 0xfae4
  3698. #define FSTV0910_P2_NBITER_SF_QPSK_5_6 0xfae400ff
  3699. /* P2_NBITER_SF10 */
  3700. #define RSTV0910_P2_NBITER_SF10 0xfae5
  3701. #define FSTV0910_P2_NBITER_SF_QPSK_8_9 0xfae500ff
  3702. /* P2_NBITER_SF12 */
  3703. #define RSTV0910_P2_NBITER_SF12 0xfae6
  3704. #define FSTV0910_P2_NBITER_SF_8PSK_3_5 0xfae600ff
  3705. /* P2_NBITER_SF13 */
  3706. #define RSTV0910_P2_NBITER_SF13 0xfae7
  3707. #define FSTV0910_P2_NBITER_SF_8PSK_2_3 0xfae700ff
  3708. /* P2_NBITER_SF14 */
  3709. #define RSTV0910_P2_NBITER_SF14 0xfae8
  3710. #define FSTV0910_P2_NBITER_SF_8PSK_3_4 0xfae800ff
  3711. /* P2_NBITER_SF15 */
  3712. #define RSTV0910_P2_NBITER_SF15 0xfae9
  3713. #define FSTV0910_P2_NBITER_SF_8PSK_5_6 0xfae900ff
  3714. /* P2_NBITER_SF16 */
  3715. #define RSTV0910_P2_NBITER_SF16 0xfaea
  3716. #define FSTV0910_P2_NBITER_SF_8PSK_8_9 0xfaea00ff
  3717. /* P2_NBITER_SF18 */
  3718. #define RSTV0910_P2_NBITER_SF18 0xfaeb
  3719. #define FSTV0910_P2_NBITER_SF_16APSK_2_3 0xfaeb00ff
  3720. /* P2_NBITER_SF19 */
  3721. #define RSTV0910_P2_NBITER_SF19 0xfaec
  3722. #define FSTV0910_P2_NBITER_SF_16APSK_3_4 0xfaec00ff
  3723. /* P2_NBITER_SF20 */
  3724. #define RSTV0910_P2_NBITER_SF20 0xfaed
  3725. #define FSTV0910_P2_NBITER_SF_16APSK_4_5 0xfaed00ff
  3726. /* P2_NBITER_SF21 */
  3727. #define RSTV0910_P2_NBITER_SF21 0xfaee
  3728. #define FSTV0910_P2_NBITER_SF_16APSK_5_6 0xfaee00ff
  3729. /* P2_NBITER_SF22 */
  3730. #define RSTV0910_P2_NBITER_SF22 0xfaef
  3731. #define FSTV0910_P2_NBITER_SF_16APSK_8_9 0xfaef00ff
  3732. /* P2_NBITER_SF24 */
  3733. #define RSTV0910_P2_NBITER_SF24 0xfaf0
  3734. #define FSTV0910_P2_NBITER_SF_32APSK_3_4 0xfaf000ff
  3735. /* P2_NBITER_SF25 */
  3736. #define RSTV0910_P2_NBITER_SF25 0xfaf1
  3737. #define FSTV0910_P2_NBITER_SF_32APSK_4_5 0xfaf100ff
  3738. /* P2_NBITER_SF26 */
  3739. #define RSTV0910_P2_NBITER_SF26 0xfaf2
  3740. #define FSTV0910_P2_NBITER_SF_32APSK_5_6 0xfaf200ff
  3741. /* P2_NBITER_SF27 */
  3742. #define RSTV0910_P2_NBITER_SF27 0xfaf3
  3743. #define FSTV0910_P2_NBITER_SF_32APSK_8_9 0xfaf300ff
  3744. /* TSTRES0 */
  3745. #define RSTV0910_TSTRES0 0xff11
  3746. #define FSTV0910_FRESFEC 0xff117080
  3747. #define FSTV0910_FRESSYM1 0xff113008
  3748. #define FSTV0910_FRESSYM2 0xff112004
  3749. /* TSTOUT */
  3750. #define RSTV0910_TSTOUT 0xff12
  3751. #define FSTV0910_TS 0xff12103e
  3752. #define FSTV0910_TEST_OUT 0xff120001
  3753. /* TSTIN */
  3754. #define RSTV0910_TSTIN 0xff13
  3755. #define FSTV0910_TEST_IN 0xff137080
  3756. /* P2_TSTDMD */
  3757. #define RSTV0910_P2_TSTDMD 0xff20
  3758. #define FSTV0910_P2_CFRINIT_INVZIGZAG 0xff203008
  3759. /* P2_TCTL1 */
  3760. #define RSTV0910_P2_TCTL1 0xff24
  3761. #define FSTV0910_P2_TST_IQSYMBSEL 0xff24001f
  3762. /* P2_TCTL4 */
  3763. #define RSTV0910_P2_TCTL4 0xff28
  3764. #define FSTV0910_P2_CFR2TOCFR1_DVBS1 0xff2860c0
  3765. /* P2_TPKTDELIN */
  3766. #define RSTV0910_P2_TPKTDELIN 0xff37
  3767. #define FSTV0910_P2_CFG_RSPARITYON 0xff377080
  3768. /* P1_TSTDMD */
  3769. #define RSTV0910_P1_TSTDMD 0xff40
  3770. #define FSTV0910_P1_CFRINIT_INVZIGZAG 0xff403008
  3771. /* P1_TCTL1 */
  3772. #define RSTV0910_P1_TCTL1 0xff44
  3773. #define FSTV0910_P1_TST_IQSYMBSEL 0xff44001f
  3774. /* P1_TCTL4 */
  3775. #define RSTV0910_P1_TCTL4 0xff48
  3776. #define FSTV0910_P1_CFR2TOCFR1_DVBS1 0xff4860c0
  3777. /* P1_TPKTDELIN */
  3778. #define RSTV0910_P1_TPKTDELIN 0xff57
  3779. #define FSTV0910_P1_CFG_RSPARITYON 0xff577080
  3780. /* TSTTSRS */
  3781. #define RSTV0910_TSTTSRS 0xff6d
  3782. #define FSTV0910_TSTRS_DISRS2 0xff6d1002
  3783. #define FSTV0910_TSTRS_DISRS1 0xff6d0001
  3784. #define STV0910_NBREGS 975
  3785. #define STV0910_NBFIELDS 1818