123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643 |
- /*!
- *******************************************************************************
- **
- ** \file gh_debug_adc.h
- **
- ** \brief ADC Debug Registers.
- **
- ** Copyright: 2012 - 2016 (C) GoKe Microelectronics
- **
- ** \attention THIS SAMPLE CODE IS PROVIDED AS IS. GOKE MICROELECTRONICS
- ** ACCEPTS NO RESPONSIBILITY OR LIABILITY FOR ANY ERRORS OR
- ** OMMISSIONS.
- **
- ** \note Do not modify this file as it is generated automatically.
- **
- ******************************************************************************/
- #ifndef _GH_DEBUG_ADC_H
- #define _GH_DEBUG_ADC_H
- #ifdef __LINUX__
- #include "reg4linux.h"
- #else
- #define FIO_ADDRESS(block,address) (address)
- #define FIO_MOFFSET(block,moffset) (moffset)
- #endif
- #ifndef __LINUX__
- #include "gtypes.h" /* global type definitions */
- #include "gh_lib_cfg.h" /* configuration */
- #endif
- #define GH_DEBUG_ADC_ENABLE_DEBUG_PRINT 0
- #ifdef __LINUX__
- #define GH_DEBUG_ADC_DEBUG_PRINT_FUNCTION printk
- #else
- #define GH_DEBUG_ADC_DEBUG_PRINT_FUNCTION printf
- #endif
- #ifndef __LINUX__
- #if GH_DEBUG_ADC_ENABLE_DEBUG_PRINT
- #include <stdio.h>
- #endif
- #endif
- /*----------------------------------------------------------------------------*/
- /* registers */
- /*----------------------------------------------------------------------------*/
- #define REG_DEBUG_ADC_PLL_CORE_CTRL FIO_ADDRESS(DEBUG_ADC,0xa01A0000) /* read/write */
- #define REG_DEBUG_ADC_PLL_CORE_FRAC FIO_ADDRESS(DEBUG_ADC,0xa01A0004) /* read/write */
- #define REG_DEBUG_ADC_HDMI_CTRL FIO_ADDRESS(DEBUG_ADC,0xa01A0008) /* read/write */
- #define REG_DEBUG_ADC_SCALER_SD48 FIO_ADDRESS(DEBUG_ADC,0xa01A000C) /* read/write */
- #define REG_DEBUG_ADC_PLL_VIDEO_CTRL FIO_ADDRESS(DEBUG_ADC,0xa01A0014) /* read/write */
- #define REG_DEBUG_ADC_PLL_VIDEO_FRAC FIO_ADDRESS(DEBUG_ADC,0xa01A0018) /* read/write */
- #define REG_DEBUG_ADC_SCALER_VIDEO FIO_ADDRESS(DEBUG_ADC,0xa01A001C) /* read/write */
- #define REG_DEBUG_ADC_PLL_SENSOR_CTRL FIO_ADDRESS(DEBUG_ADC,0xa01A0024) /* read/write */
- #define REG_DEBUG_ADC_PLL_SENSOR_FRAC FIO_ADDRESS(DEBUG_ADC,0xa01A0028) /* read/write */
- #define REG_DEBUG_ADC_PLL_LOCK FIO_ADDRESS(DEBUG_ADC,0xa01A002C) /* read */
- #define REG_DEBUG_ADC_SCALER_SENSOR_POST FIO_ADDRESS(DEBUG_ADC,0xa01A0030) /* read/write */
- #define REG_DEBUG_ADC_SYS_CONFIG FIO_ADDRESS(DEBUG_ADC,0xa01A0034) /* read/write */
- #define REG_DEBUG_ADC_CG_UART FIO_ADDRESS(DEBUG_ADC,0xa01A0038) /* read/write */
- #define REG_DEBUG_ADC_CG_SSI FIO_ADDRESS(DEBUG_ADC,0xa01A003C) /* read/write */
- #define REG_DEBUG_ADC_CG_MOTOR FIO_ADDRESS(DEBUG_ADC,0xa01A0040) /* read/write */
- #define REG_DEBUG_ADC_CG_IR FIO_ADDRESS(DEBUG_ADC,0xa01A0044) /* read/write */
- #define REG_DEBUG_ADC_CG_HOST FIO_ADDRESS(DEBUG_ADC,0xa01A0048) /* read/write */
- #define REG_DEBUG_ADC_SCALER_SENSOR_PRE FIO_ADDRESS(DEBUG_ADC,0xa01A004C) /* read/write */
- #define REG_DEBUG_ADC_ANA_PWR FIO_ADDRESS(DEBUG_ADC,0xa01A0050) /* read/write */
- #define REG_DEBUG_ADC_PLL_AUDIO_CTRL FIO_ADDRESS(DEBUG_ADC,0xa01A0054) /* read/write */
- #define REG_DEBUG_ADC_PLL_AUDIO_FRAC FIO_ADDRESS(DEBUG_ADC,0xa01A0058) /* read/write */
- #define REG_DEBUG_ADC_SCALER_AUDIO FIO_ADDRESS(DEBUG_ADC,0xa01A005C) /* read/write */
- #define REG_DEBUG_ADC_SCALER_AUDIO_PRE FIO_ADDRESS(DEBUG_ADC,0xa01A0060) /* read/write */
- #define REG_DEBUG_ADC_SOFT_OR_DLLRESET FIO_ADDRESS(DEBUG_ADC,0xa01A0068) /* read/write */
- #define REG_DEBUG_ADC_FIO_RESET FIO_ADDRESS(DEBUG_ADC,0xa01A0074) /* read/write */
- #define REG_DEBUG_ADC_WDT_RST_L FIO_ADDRESS(DEBUG_ADC,0xa01A0078) /* read */
- #define REG_DEBUG_ADC_SCALER_USB FIO_ADDRESS(DEBUG_ADC,0xa01A007C) /* read/write */
- #define REG_DEBUG_ADC_CLK_DEBOUNCE FIO_ADDRESS(DEBUG_ADC,0xa01A0080) /* read/write */
- #define REG_DEBUG_ADC_CG_PWM FIO_ADDRESS(DEBUG_ADC,0xa01A0084) /* read/write */
- #define REG_DEBUG_ADC_USBP_CTRL FIO_ADDRESS(DEBUG_ADC,0xa01A0088) /* read/write */
- #define REG_DEBUG_ADC_CKEN_VDSP FIO_ADDRESS(DEBUG_ADC,0xa01A008C) /* read/write */
- #define REG_DEBUG_ADC_DLL0 FIO_ADDRESS(DEBUG_ADC,0xa01A0090) /* read/write */
- #define REG_DEBUG_ADC_DLL1 FIO_ADDRESS(DEBUG_ADC,0xa01A0094) /* read/write */
- #define REG_DEBUG_ADC_SCALER_ADC FIO_ADDRESS(DEBUG_ADC,0xa01A009C) /* read/write */
- #define REG_DEBUG_ADC_SCALER_VIDEO_POST FIO_ADDRESS(DEBUG_ADC,0xa01A00A0) /* read/write */
- #define REG_DEBUG_ADC_CLK_REF_AU_EXTERNAL FIO_ADDRESS(DEBUG_ADC,0xa01A00A4) /* read/write */
- #define REG_DEBUG_ADC_USE_EXTERNAL_CLK_AU FIO_ADDRESS(DEBUG_ADC,0xa01A00A8) /* read/write */
- #define REG_DEBUG_ADC_CLK_REF_VIDEO_EXTERNAL FIO_ADDRESS(DEBUG_ADC,0xa01A00AC) /* read/write */
- #define REG_DEBUG_ADC_USE_EXTERNAL_VD_CLK FIO_ADDRESS(DEBUG_ADC,0xa01A00B0) /* read/write */
- #define REG_DEBUG_ADC_USE_CLK_SI_4_CLK_AU FIO_ADDRESS(DEBUG_ADC,0xa01A00B4) /* read/write */
- #define REG_DEBUG_ADC_USE_CLK_SI_4_CLK_VO FIO_ADDRESS(DEBUG_ADC,0xa01A00B8) /* read/write */
- #define REG_DEBUG_ADC_CLK_SI_INPUT_MODE FIO_ADDRESS(DEBUG_ADC,0xa01A00BC) /* read/write */
- #define REG_DEBUG_ADC_PLL_VIDEO2_CTRL FIO_ADDRESS(DEBUG_ADC,0xa01A00C0) /* read/write */
- #define REG_DEBUG_ADC_PLL_VIDEO2_FRAC FIO_ADDRESS(DEBUG_ADC,0xa01A00C4) /* read/write */
- #define REG_DEBUG_ADC_SCALER_VIDEO2 FIO_ADDRESS(DEBUG_ADC,0xa01A00C8) /* read/write */
- #define REG_DEBUG_ADC_SCALER_VIDEO2_POST FIO_ADDRESS(DEBUG_ADC,0xa01A00CC) /* read/write */
- #define REG_DEBUG_ADC_USE_CLK_SI_4_CLK_VO2 FIO_ADDRESS(DEBUG_ADC,0xa01A00D0) /* read/write */
- #define REG_DEBUG_ADC_USE_EXTERNAL_VD2_CLK FIO_ADDRESS(DEBUG_ADC,0xa01A00D4) /* read/write */
- #define REG_DEBUG_ADC_CLK_REF_VIDEO2_EXTERNAL FIO_ADDRESS(DEBUG_ADC,0xa01A00D8) /* read/write */
- #define REG_DEBUG_ADC_PLL_DDR_CTRL FIO_ADDRESS(DEBUG_ADC,0xa01A00DC) /* read/write */
- #define REG_DEBUG_ADC_PLL_DDR_FRAC FIO_ADDRESS(DEBUG_ADC,0xa01A00E0) /* read/write */
- #define REG_DEBUG_ADC_PLL_IDSP_CTRL FIO_ADDRESS(DEBUG_ADC,0xa01A00E4) /* read/write */
- #define REG_DEBUG_ADC_PLL_IDSP_FRAC FIO_ADDRESS(DEBUG_ADC,0xa01A00E8) /* read/write */
- #define REG_DEBUG_ADC_CG_SSI2 FIO_ADDRESS(DEBUG_ADC,0xa01A00EC) /* read/write */
- #define REG_DEBUG_ADC_LVDS_LVCMOS FIO_ADDRESS(DEBUG_ADC,0xa01A00F8) /* read/write */
- #define REG_DEBUG_ADC_LVDS_ASYNC FIO_ADDRESS(DEBUG_ADC,0xa01A00FC) /* read/write */
- #define REG_DEBUG_ADC_PLL_CORE_CTRL2 FIO_ADDRESS(DEBUG_ADC,0xa01A0100) /* read/write */
- #define REG_DEBUG_ADC_PLL_CORE_CTRL3 FIO_ADDRESS(DEBUG_ADC,0xa01A0104) /* read/write */
- #define REG_DEBUG_ADC_PLL_IDSP_CTRL2 FIO_ADDRESS(DEBUG_ADC,0xa01A0108) /* read/write */
- #define REG_DEBUG_ADC_PLL_IDSP_CTRL3 FIO_ADDRESS(DEBUG_ADC,0xa01A010C) /* read/write */
- #define REG_DEBUG_ADC_PLL_IDSP_CTRL22 FIO_ADDRESS(DEBUG_ADC,0xa01A0110) /* read/write */
- #define REG_DEBUG_ADC_PLL_IDSP_CTRL32 FIO_ADDRESS(DEBUG_ADC,0xa01A0114) /* read/write */
- #define REG_DEBUG_ADC_SCALER_CORE_POST FIO_ADDRESS(DEBUG_ADC,0xa01A0118) /* read/write */
- #define REG_DEBUG_ADC_PLL_SENSOR_CTRL2 FIO_ADDRESS(DEBUG_ADC,0xa01A011C) /* read/write */
- #define REG_DEBUG_ADC_PLL_SENSOR_CTRL3 FIO_ADDRESS(DEBUG_ADC,0xa01A0120) /* read/write */
- #define REG_DEBUG_ADC_PLL_AUDIO_CTRL2 FIO_ADDRESS(DEBUG_ADC,0xa01A0124) /* read/write */
- #define REG_DEBUG_ADC_PLL_AUDIO_CTRL3 FIO_ADDRESS(DEBUG_ADC,0xa01A012C) /* read/write */
- #define REG_DEBUG_ADC_PLL_VIDEO_CTRL2 FIO_ADDRESS(DEBUG_ADC,0xa01A0130) /* read/write */
- #define REG_DEBUG_ADC_PLL_VIDEO_CTRL3 FIO_ADDRESS(DEBUG_ADC,0xa01A0134) /* read/write */
- #define REG_DEBUG_ADC_PLL_VIDEO2_CTRL2 FIO_ADDRESS(DEBUG_ADC,0xa01A013C) /* read/write */
- #define REG_DEBUG_ADC_PLL_USB_CTRL2 FIO_ADDRESS(DEBUG_ADC,0xa01A0144) /* read/write */
- #define REG_DEBUG_ADC_CG_DDR_CALIB FIO_ADDRESS(DEBUG_ADC,0xa01A0148) /* read/write */
- #define REG_DEBUG_ADC_DLL_CTRL_SEL FIO_ADDRESS(DEBUG_ADC,0xa01A0158) /* read/write */
- #define REG_DEBUG_ADC_DLL_OCD_BITS FIO_ADDRESS(DEBUG_ADC,0xa01A015C) /* read/write */
- #define REG_DEBUG_ADC_PLL_CORE_OBSV FIO_ADDRESS(DEBUG_ADC,0xa01A0174) /* read/write */
- #define REG_DEBUG_ADC_PLL_IDSP_OBSV FIO_ADDRESS(DEBUG_ADC,0xa01A0178) /* read/write */
- #define REG_DEBUG_ADC_PLL_DDR_OBSV FIO_ADDRESS(DEBUG_ADC,0xa01A017C) /* read/write */
- #define REG_DEBUG_ADC_PLL_SENSOR_OBSV FIO_ADDRESS(DEBUG_ADC,0xa01A0180) /* read/write */
- #define REG_DEBUG_ADC_PLL_AUDIO_OBSV FIO_ADDRESS(DEBUG_ADC,0xa01A0184) /* read/write */
- #define REG_DEBUG_ADC_PLL_VIDEO_OBSV FIO_ADDRESS(DEBUG_ADC,0xa01A0188) /* read/write */
- #define REG_DEBUG_ADC_PLL_VIDEO2_OBSV FIO_ADDRESS(DEBUG_ADC,0xa01A018C) /* read/write */
- #define REG_DEBUG_ADC_ADC16_CTRL_ADDR FIO_ADDRESS(DEBUG_ADC,0xa01A0198) /* read/write */
- #define REG_DEBUG_ADC_CLK_REF_SSI_ADDR FIO_ADDRESS(DEBUG_ADC,0xa01A019C) /* read/write */
- #define REG_DEBUG_ADC_CG_DVEN FIO_ADDRESS(DEBUG_ADC,0xa01A01C8) /* read/write */
- #define REG_DEBUG_ADC_SCALER_MS FIO_ADDRESS(DEBUG_ADC,0xa01A01CC) /* read/write */
- #define REG_DEBUG_ADC_MS_DELAY_CTRL FIO_ADDRESS(DEBUG_ADC,0xa01A01D0) /* read/write */
- #define REG_DEBUG_ADC_USE_COMMON_VO_CLOCK FIO_ADDRESS(DEBUG_ADC,0xa01A01D4) /* read/write */
- #define REG_DEBUG_ADC_CLOCK_OBSV_ADDR FIO_ADDRESS(DEBUG_ADC,0xa01A01E0) /* read/write */
- #define REG_DEBUG_ADC_DISABLE_EXT_BYPASS FIO_ADDRESS(DEBUG_ADC,0xa01A01E4) /* read/write */
- #define REG_DEBUG_ADC_ARM_SYNC_LOCK FIO_ADDRESS(DEBUG_ADC,0xa01A01E8) /* read/write */
- #define REG_DEBUG_ADC_SCALER_ARM_SYNC FIO_ADDRESS(DEBUG_ADC,0xa01A01EC) /* read/write */
- #define REG_DEBUG_ADC_SCALER_ARM_ASYNC FIO_ADDRESS(DEBUG_ADC,0xa01A01F0) /* read/write */
- #define REG_DEBUG_ADC_SCALER_IDSP_POST FIO_ADDRESS(DEBUG_ADC,0xa01A01F4) /* read/write */
- #define REG_DEBUG_ADC_OCTRL_GPIO FIO_ADDRESS(DEBUG_ADC,0xa01A01F8) /* read/write */
- #define REG_DEBUG_ADC_IOCTRL_MISC1 FIO_ADDRESS(DEBUG_ADC,0xa01A01FC) /* read/write */
- #define REG_DEBUG_ADC_OCTRL_MISC2 FIO_ADDRESS(DEBUG_ADC,0xa01A0200) /* read/write */
- #define REG_DEBUG_ADC_IOCTRL_SD FIO_ADDRESS(DEBUG_ADC,0xa01A0204) /* read/write */
- #define REG_DEBUG_ADC_IOCTRL_SMIO FIO_ADDRESS(DEBUG_ADC,0xa01A0208) /* read/write */
- #define REG_DEBUG_ADC_IOCTRL_VD0 FIO_ADDRESS(DEBUG_ADC,0xa01A020C) /* read/write */
- #define REG_DEBUG_ADC_IOCTRL_VD1 FIO_ADDRESS(DEBUG_ADC,0xa01A0210) /* read/write */
- #define REG_DEBUG_ADC_IOCTRL_SENSOR FIO_ADDRESS(DEBUG_ADC,0xa01A0214) /* read/write */
- #define REG_DEBUG_ADC_AHB_MISC_EN FIO_ADDRESS(DEBUG_ADC,0xa01A021C) /* read/write */
- #define REG_DEBUG_ADC_CG_DDR_INIT FIO_ADDRESS(DEBUG_ADC,0xa01A0220) /* read/write */
- #define REG_DEBUG_ADC_DDR_DIV_RST FIO_ADDRESS(DEBUG_ADC,0xa01A0224) /* read/write */
- #define REG_DEBUG_ADC_DDRC_IDSP_RESET FIO_ADDRESS(DEBUG_ADC,0xa01A0228) /* read/write */
- #define REG_DEBUG_ADC_CKEN_IDSP FIO_ADDRESS(DEBUG_ADC,0xa01A022C) /* read/write */
- /*----------------------------------------------------------------------------*/
- /* bit group structures */
- /*----------------------------------------------------------------------------*/
- typedef union { /* DEBUG_ADC_HDMI_CTRL */
- U32 all;
- struct {
- U32 : 1;
- U32 hdmi_phy_test_mode : 1;
- U32 use_hdmi_phy_clk_v : 1;
- U32 : 29;
- } bitc;
- } GH_DEBUG_ADC_HDMI_CTRL_S;
- typedef union { /* DEBUG_ADC_SCALER_SD48 */
- U32 all;
- struct {
- U32 div : 16;
- U32 : 6;
- U32 sdclk_delay : 2;
- U32 : 8;
- } bitc;
- } GH_DEBUG_ADC_SCALER_SD48_S;
- typedef union { /* DEBUG_ADC_PLL_VIDEO_CTRL */
- U32 all;
- struct {
- U32 writeenable : 1;
- U32 : 1;
- U32 bypass : 1;
- U32 mode : 1;
- U32 reset : 1;
- U32 powerdown : 1;
- U32 halfvco : 1;
- U32 tristate : 1;
- U32 pll_tout_async : 4;
- U32 sdiv : 4;
- U32 sout : 4;
- U32 pll_lock : 1;
- U32 gclk_vo : 1;
- U32 : 2;
- U32 intprog : 7;
- U32 : 1;
- } bitc;
- } GH_DEBUG_ADC_PLL_VIDEO_CTRL_S;
- typedef union { /* DEBUG_ADC_SCALER_VIDEO */
- U32 all;
- struct {
- U32 div : 16;
- U32 : 16;
- } bitc;
- } GH_DEBUG_ADC_SCALER_VIDEO_S;
- typedef union { /* DEBUG_ADC_PLL_LOCK */
- U32 all;
- struct {
- U32 pll_video2 : 1;
- U32 pll_video : 1;
- U32 pll_usb : 1;
- U32 pll_sensor : 1;
- U32 pll_idsp : 1;
- U32 pll_ddr : 1;
- U32 pll_core : 1;
- U32 pll_audio : 1;
- U32 pll_hdmi : 1;
- U32 pll_vin : 1;
- U32 : 22;
- } bitc;
- } GH_DEBUG_ADC_PLL_LOCK_S;
- typedef union { /* DEBUG_ADC_SCALER_SENSOR_POST */
- U32 all;
- struct {
- U32 div : 16;
- U32 : 16;
- } bitc;
- } GH_DEBUG_ADC_SCALER_SENSOR_POST_S;
- typedef union { /* DEBUG_ADC_SYS_CONFIG */
- U32 all;
- struct {
- U32 bootmedia : 1;
- U32 clock : 3;
- U32 grst : 1;
- U32 page_size : 1;
- U32 read : 1;
- U32 enet : 1;
- U32 boot_bypass : 1;
- U32 fastboot : 1;
- U32 io_flash_boot : 1;
- U32 sd_boot : 1;
- U32 ema_sel : 1;
- U32 lock_mode : 1;
- U32 grst_l : 1;
- U32 rmii_sel : 1;
- U32 spi_boot : 1;
- U32 hif_en : 1;
- U32 free : 1;
- U32 hif_type : 1;
- U32 rdy_pl : 1;
- U32 rct_ahb_hif_secure_mode : 1;
- U32 : 1;
- U32 usbp : 1;
- U32 : 2;
- U32 ref_clk_is_24mhz : 1;
- U32 rct_bira_efuse_disable : 1;
- U32 : 1;
- U32 hardcoded : 2;
- U32 source : 1;
- } bitc;
- } GH_DEBUG_ADC_SYS_CONFIG_S;
- typedef union { /* DEBUG_ADC_SCALER_SENSOR_PRE */
- U32 all;
- struct {
- U32 div : 16;
- U32 : 16;
- } bitc;
- } GH_DEBUG_ADC_SCALER_SENSOR_PRE_S;
- typedef union { /* DEBUG_ADC_ANA_PWR */
- U32 all;
- struct {
- U32 : 1;
- U32 usbsuspend : 1;
- U32 suspendusbp : 1;
- U32 : 2;
- U32 power_controller : 1;
- U32 : 1;
- U32 dllpowerdown : 1;
- U32 : 24;
- } bitc;
- } GH_DEBUG_ADC_ANA_PWR_S;
- typedef union { /* DEBUG_ADC_SCALER_AUDIO */
- U32 all;
- struct {
- U32 div : 16;
- U32 : 16;
- } bitc;
- } GH_DEBUG_ADC_SCALER_AUDIO_S;
- typedef union { /* DEBUG_ADC_SCALER_AUDIO_PRE */
- U32 all;
- struct {
- U32 div : 16;
- U32 : 16;
- } bitc;
- } GH_DEBUG_ADC_SCALER_AUDIO_PRE_S;
- typedef union { /* DEBUG_ADC_SOFT_OR_DLLRESET */
- U32 all;
- struct {
- U32 softreset : 1;
- U32 dll_rst_l : 1;
- U32 : 30;
- } bitc;
- } GH_DEBUG_ADC_SOFT_OR_DLLRESET_S;
- typedef union { /* DEBUG_ADC_FIO_RESET */
- U32 all;
- struct {
- U32 flashreset : 1;
- U32 xdreset : 1;
- U32 cfreset : 1;
- U32 fioreset : 1;
- U32 : 28;
- } bitc;
- } GH_DEBUG_ADC_FIO_RESET_S;
- typedef union { /* DEBUG_ADC_SCALER_USB */
- U32 all;
- struct {
- U32 div : 16;
- U32 : 16;
- } bitc;
- } GH_DEBUG_ADC_SCALER_USB_S;
- typedef union { /* DEBUG_ADC_USBP_CTRL */
- U32 all;
- struct {
- U32 refclkdiv : 2;
- U32 usbphy_reset : 1;
- U32 refclksel : 2;
- U32 : 1;
- U32 commononn : 1;
- U32 compdistune : 3;
- U32 otgtune : 3;
- U32 sqrxtune : 3;
- U32 rxfslstune : 4;
- U32 txpreemphasistune : 1;
- U32 txrisetune : 1;
- U32 txvreftune : 4;
- U32 txhsxvtune : 2;
- U32 atereset : 1;
- U32 usbdcsoftreset : 1;
- U32 sleepm : 1;
- U32 : 1;
- } bitc;
- } GH_DEBUG_ADC_USBP_CTRL_S;
- typedef union { /* DEBUG_ADC_CKEN_VDSP */
- U32 all;
- struct {
- U32 cken_tsfm : 1;
- U32 cken_code : 1;
- U32 cken_smem : 1;
- U32 : 29;
- } bitc;
- } GH_DEBUG_ADC_CKEN_VDSP_S;
- typedef union { /* DEBUG_ADC_DLL0 */
- U32 all;
- struct {
- U32 dll_sel2 : 8;
- U32 dll_sel1 : 8;
- U32 dll_sel0 : 8;
- U32 : 8;
- } bitc;
- } GH_DEBUG_ADC_DLL0_S;
- typedef union { /* DEBUG_ADC_DLL1 */
- U32 all;
- struct {
- U32 dll_sel2 : 8;
- U32 dll_sel1 : 8;
- U32 dll_sel0 : 8;
- U32 : 8;
- } bitc;
- } GH_DEBUG_ADC_DLL1_S;
- typedef union { /* DEBUG_ADC_SCALER_ADC */
- U32 all;
- struct {
- U32 div : 16;
- U32 : 16;
- } bitc;
- } GH_DEBUG_ADC_SCALER_ADC_S;
- typedef union { /* DEBUG_ADC_SCALER_VIDEO_POST */
- U32 all;
- struct {
- U32 div : 16;
- U32 : 16;
- } bitc;
- } GH_DEBUG_ADC_SCALER_VIDEO_POST_S;
- typedef union { /* DEBUG_ADC_CLK_REF_AU_EXTERNAL */
- U32 all;
- struct {
- U32 external : 1;
- U32 : 31;
- } bitc;
- } GH_DEBUG_ADC_CLK_REF_AU_EXTERNAL_S;
- typedef union { /* DEBUG_ADC_USE_EXTERNAL_CLK_AU */
- U32 all;
- struct {
- U32 external : 1;
- U32 : 31;
- } bitc;
- } GH_DEBUG_ADC_USE_EXTERNAL_CLK_AU_S;
- typedef union { /* DEBUG_ADC_CLK_REF_VIDEO_EXTERNAL */
- U32 all;
- struct {
- U32 external : 1;
- U32 : 31;
- } bitc;
- } GH_DEBUG_ADC_CLK_REF_VIDEO_EXTERNAL_S;
- typedef union { /* DEBUG_ADC_USE_EXTERNAL_VD_CLK */
- U32 all;
- struct {
- U32 external : 1;
- U32 : 31;
- } bitc;
- } GH_DEBUG_ADC_USE_EXTERNAL_VD_CLK_S;
- typedef union { /* DEBUG_ADC_USE_CLK_SI_4_CLK_AU */
- U32 all;
- struct {
- U32 pllref : 2;
- U32 : 30;
- } bitc;
- } GH_DEBUG_ADC_USE_CLK_SI_4_CLK_AU_S;
- typedef union { /* DEBUG_ADC_USE_CLK_SI_4_CLK_VO */
- U32 all;
- struct {
- U32 pllref : 2;
- U32 : 30;
- } bitc;
- } GH_DEBUG_ADC_USE_CLK_SI_4_CLK_VO_S;
- typedef union { /* DEBUG_ADC_CLK_SI_INPUT_MODE */
- U32 all;
- struct {
- U32 clk_si : 1;
- U32 : 31;
- } bitc;
- } GH_DEBUG_ADC_CLK_SI_INPUT_MODE_S;
- typedef union { /* DEBUG_ADC_PLL_VIDEO2_CTRL */
- U32 all;
- struct {
- U32 : 20;
- U32 pll_lock : 1;
- U32 gclk_vo : 1;
- U32 : 10;
- } bitc;
- } GH_DEBUG_ADC_PLL_VIDEO2_CTRL_S;
- typedef union { /* DEBUG_ADC_SCALER_VIDEO2 */
- U32 all;
- struct {
- U32 integerdiv : 16;
- U32 primediv : 5;
- U32 : 3;
- U32 dutycycle : 1;
- U32 : 7;
- } bitc;
- } GH_DEBUG_ADC_SCALER_VIDEO2_S;
- typedef union { /* DEBUG_ADC_SCALER_VIDEO2_POST */
- U32 all;
- struct {
- U32 integerdiv : 16;
- U32 primediv : 5;
- U32 : 3;
- U32 dutycycle : 1;
- U32 : 7;
- } bitc;
- } GH_DEBUG_ADC_SCALER_VIDEO2_POST_S;
- typedef union { /* DEBUG_ADC_USE_CLK_SI_4_CLK_VO2 */
- U32 all;
- struct {
- U32 pllref : 2;
- U32 : 30;
- } bitc;
- } GH_DEBUG_ADC_USE_CLK_SI_4_CLK_VO2_S;
- typedef union { /* DEBUG_ADC_USE_EXTERNAL_VD2_CLK */
- U32 all;
- struct {
- U32 external : 1;
- U32 : 31;
- } bitc;
- } GH_DEBUG_ADC_USE_EXTERNAL_VD2_CLK_S;
- typedef union { /* DEBUG_ADC_CLK_REF_VIDEO2_EXTERNAL */
- U32 all;
- struct {
- U32 external : 1;
- U32 : 31;
- } bitc;
- } GH_DEBUG_ADC_CLK_REF_VIDEO2_EXTERNAL_S;
- typedef union { /* DEBUG_ADC_PLL_DDR_FRAC */
- U32 all;
- struct {
- U32 fraction : 16;
- U32 : 16;
- } bitc;
- } GH_DEBUG_ADC_PLL_DDR_FRAC_S;
- typedef union { /* DEBUG_ADC_PLL_IDSP_FRAC */
- U32 all;
- struct {
- U32 fraction : 16;
- U32 : 16;
- } bitc;
- } GH_DEBUG_ADC_PLL_IDSP_FRAC_S;
- typedef union { /* DEBUG_ADC_LVDS_LVCMOS */
- U32 all;
- struct {
- U32 lvcoms_sd : 16;
- U32 lvcmos_spclk : 4;
- U32 : 12;
- } bitc;
- } GH_DEBUG_ADC_LVDS_LVCMOS_S;
- typedef union { /* DEBUG_ADC_LVDS_ASYNC */
- U32 all;
- struct {
- U32 async_sd : 16;
- U32 async_spclk : 4;
- U32 lvds_pd : 1;
- U32 lvds_ib_ctrl : 2;
- U32 : 1;
- U32 lvds_bit_mode : 4;
- U32 : 4;
- } bitc;
- } GH_DEBUG_ADC_LVDS_ASYNC_S;
- typedef union { /* DEBUG_ADC_PLL_CORE_CTRL2 */
- U32 all;
- struct {
- U32 controllability : 16;
- U32 charge : 8;
- U32 : 8;
- } bitc;
- } GH_DEBUG_ADC_PLL_CORE_CTRL2_S;
- typedef union { /* DEBUG_ADC_PLL_CORE_CTRL3 */
- U32 all;
- struct {
- U32 vco : 1;
- U32 pll_vco : 2;
- U32 clamp : 2;
- U32 dsm_dither : 1;
- U32 : 1;
- U32 dsm_dither_gain : 2;
- U32 : 4;
- U32 feedforward : 4;
- U32 bias : 3;
- U32 jdiv : 1;
- U32 : 11;
- } bitc;
- } GH_DEBUG_ADC_PLL_CORE_CTRL3_S;
- typedef union { /* DEBUG_ADC_PLL_IDSP_CTRL2 */
- U32 all;
- struct {
- U32 controllability : 16;
- U32 charge : 8;
- U32 : 8;
- } bitc;
- } GH_DEBUG_ADC_PLL_IDSP_CTRL2_S;
- typedef union { /* DEBUG_ADC_PLL_IDSP_CTRL3 */
- U32 all;
- struct {
- U32 vco : 1;
- U32 pll_vco : 2;
- U32 clamp : 2;
- U32 dsm_dither : 1;
- U32 : 1;
- U32 dsm_dither_gain : 2;
- U32 : 4;
- U32 feedforward : 4;
- U32 bias : 3;
- U32 jdiv : 1;
- U32 : 11;
- } bitc;
- } GH_DEBUG_ADC_PLL_IDSP_CTRL3_S;
- typedef union { /* DEBUG_ADC_PLL_IDSP_CTRL22 */
- U32 all;
- struct {
- U32 controllability : 16;
- U32 charge : 8;
- U32 : 8;
- } bitc;
- } GH_DEBUG_ADC_PLL_IDSP_CTRL22_S;
- typedef union { /* DEBUG_ADC_PLL_IDSP_CTRL32 */
- U32 all;
- struct {
- U32 vco : 1;
- U32 pll_vco : 2;
- U32 clamp : 2;
- U32 dsm_dither : 1;
- U32 : 1;
- U32 dsm_dither_gain : 2;
- U32 : 4;
- U32 feedforward : 4;
- U32 bias : 3;
- U32 jdiv : 1;
- U32 : 11;
- } bitc;
- } GH_DEBUG_ADC_PLL_IDSP_CTRL32_S;
- typedef union { /* DEBUG_ADC_SCALER_CORE_POST */
- U32 all;
- struct {
- U32 div : 4;
- U32 : 28;
- } bitc;
- } GH_DEBUG_ADC_SCALER_CORE_POST_S;
- typedef union { /* DEBUG_ADC_PLL_SENSOR_CTRL2 */
- U32 all;
- struct {
- U32 controllability : 16;
- U32 charge : 8;
- U32 : 8;
- } bitc;
- } GH_DEBUG_ADC_PLL_SENSOR_CTRL2_S;
- typedef union { /* DEBUG_ADC_PLL_SENSOR_CTRL3 */
- U32 all;
- struct {
- U32 vco : 1;
- U32 pll_vco : 2;
- U32 clamp : 2;
- U32 dsm_dither : 1;
- U32 : 1;
- U32 dsm_dither_gain : 2;
- U32 : 4;
- U32 feedforward : 4;
- U32 bias : 3;
- U32 jdiv : 1;
- U32 : 11;
- } bitc;
- } GH_DEBUG_ADC_PLL_SENSOR_CTRL3_S;
- typedef union { /* DEBUG_ADC_PLL_AUDIO_CTRL2 */
- U32 all;
- struct {
- U32 controllability : 16;
- U32 charge : 8;
- U32 : 8;
- } bitc;
- } GH_DEBUG_ADC_PLL_AUDIO_CTRL2_S;
- typedef union { /* DEBUG_ADC_PLL_AUDIO_CTRL3 */
- U32 all;
- struct {
- U32 vco : 1;
- U32 pll_vco : 2;
- U32 clamp : 2;
- U32 dsm_dither : 1;
- U32 : 1;
- U32 dsm_dither_gain : 2;
- U32 : 4;
- U32 feedforward : 4;
- U32 bias : 3;
- U32 jdiv : 1;
- U32 : 11;
- } bitc;
- } GH_DEBUG_ADC_PLL_AUDIO_CTRL3_S;
- typedef union { /* DEBUG_ADC_PLL_VIDEO_CTRL2 */
- U32 all;
- struct {
- U32 controllability : 16;
- U32 charge : 8;
- U32 : 8;
- } bitc;
- } GH_DEBUG_ADC_PLL_VIDEO_CTRL2_S;
- typedef union { /* DEBUG_ADC_PLL_VIDEO_CTRL3 */
- U32 all;
- struct {
- U32 vco : 1;
- U32 pll_vco : 2;
- U32 clamp : 2;
- U32 dsm_dither : 1;
- U32 : 1;
- U32 dsm_dither_gain : 2;
- U32 : 4;
- U32 feedforward : 4;
- U32 bias : 3;
- U32 jdiv : 1;
- U32 : 11;
- } bitc;
- } GH_DEBUG_ADC_PLL_VIDEO_CTRL3_S;
- typedef union { /* DEBUG_ADC_PLL_VIDEO2_CTRL2 */
- U32 all;
- struct {
- U32 controllability : 16;
- U32 charge : 8;
- U32 : 8;
- } bitc;
- } GH_DEBUG_ADC_PLL_VIDEO2_CTRL2_S;
- typedef union { /* DEBUG_ADC_PLL_USB_CTRL2 */
- U32 all;
- struct {
- U32 vco : 1;
- U32 pll_vco : 2;
- U32 clamp : 2;
- U32 dsm_dither : 1;
- U32 : 1;
- U32 dsm_dither_gain : 2;
- U32 : 4;
- U32 feedforward : 4;
- U32 bias : 3;
- U32 jdiv : 1;
- U32 : 11;
- } bitc;
- } GH_DEBUG_ADC_PLL_USB_CTRL2_S;
- typedef union { /* DEBUG_ADC_DLL_CTRL_SEL */
- U32 all;
- struct {
- U32 rct_ddrio_dll_sbc : 12;
- U32 rct_ddrio_dll_selm : 3;
- U32 rct_ddrio_single_end : 1;
- U32 rct_ddrio_pue_dq : 1;
- U32 rct_ddrio_pde_dq : 1;
- U32 rct_ddrio_npue_dqs : 1;
- U32 rct_ddrio_npde_dqs : 1;
- U32 rct_ddrio_ppde_dqs : 1;
- U32 rct_ddrio_ppue_dqs : 1;
- U32 rct_ddrio_cmosrcv : 1;
- U32 rct_ddrio_pue_cmd : 1;
- U32 rct_ddrio_pde_cmd : 1;
- U32 rct_ddrio_npue_dqs2 : 1;
- U32 rct_ddrio_npde_dqs2 : 1;
- U32 rct_ddrio_ppde_dqs2 : 1;
- U32 rct_ddrio_ppue_dqs2 : 1;
- U32 : 3;
- } bitc;
- } GH_DEBUG_ADC_DLL_CTRL_SEL_S;
- typedef union { /* DEBUG_ADC_DLL_OCD_BITS */
- U32 all;
- struct {
- U32 : 1;
- U32 rct_ddrio_ddr2 : 1;
- U32 rct_ddrio_ocd_cmd : 5;
- U32 : 1;
- U32 rct_ddrio_ocd : 5;
- U32 : 3;
- U32 rct_ddrio_odt : 5;
- U32 : 11;
- } bitc;
- } GH_DEBUG_ADC_DLL_OCD_BITS_S;
- typedef union { /* DEBUG_ADC_ADC16_CTRL_ADDR */
- U32 all;
- struct {
- U32 adc_power_down : 1;
- U32 adc_clock_select : 1;
- U32 : 30;
- } bitc;
- } GH_DEBUG_ADC_ADC16_CTRL_ADDR_S;
- typedef union { /* DEBUG_ADC_CLK_REF_SSI_ADDR */
- U32 all;
- struct {
- U32 clk : 1;
- U32 : 31;
- } bitc;
- } GH_DEBUG_ADC_CLK_REF_SSI_ADDR_S;
- typedef union { /* DEBUG_ADC_MS_DELAY_CTRL */
- U32 all;
- struct {
- U32 : 8;
- U32 delay_sclk : 3;
- U32 : 5;
- U32 input_delay : 3;
- U32 : 5;
- U32 output_delay : 3;
- U32 : 1;
- U32 timing : 4;
- } bitc;
- } GH_DEBUG_ADC_MS_DELAY_CTRL_S;
- typedef union { /* DEBUG_ADC_CLOCK_OBSV_ADDR */
- U32 all;
- struct {
- U32 pll : 4;
- U32 observation : 1;
- U32 : 27;
- } bitc;
- } GH_DEBUG_ADC_CLOCK_OBSV_ADDR_S;
- typedef union { /* DEBUG_ADC_ARM_SYNC_LOCK */
- U32 all;
- struct {
- U32 mode : 1;
- U32 reset : 1;
- U32 : 30;
- } bitc;
- } GH_DEBUG_ADC_ARM_SYNC_LOCK_S;
- typedef union { /* DEBUG_ADC_SCALER_ARM_ASYNC */
- U32 all;
- struct {
- U32 div : 4;
- U32 : 28;
- } bitc;
- } GH_DEBUG_ADC_SCALER_ARM_ASYNC_S;
- typedef union { /* DEBUG_ADC_SCALER_IDSP_POST */
- U32 all;
- struct {
- U32 div : 4;
- U32 : 28;
- } bitc;
- } GH_DEBUG_ADC_SCALER_IDSP_POST_S;
- typedef union { /* DEBUG_ADC_AHB_MISC_EN */
- U32 all;
- struct {
- U32 rct_ahb : 1;
- U32 : 31;
- } bitc;
- } GH_DEBUG_ADC_AHB_MISC_EN_S;
- typedef union { /* DEBUG_ADC_CG_DDR_INIT */
- U32 all;
- struct {
- U32 divide : 8;
- U32 en : 1;
- U32 : 23;
- } bitc;
- } GH_DEBUG_ADC_CG_DDR_INIT_S;
- typedef union { /* DEBUG_ADC_DDRC_IDSP_RESET */
- U32 all;
- struct {
- U32 ddrc : 1;
- U32 idsp : 1;
- U32 : 30;
- } bitc;
- } GH_DEBUG_ADC_DDRC_IDSP_RESET_S;
- /*----------------------------------------------------------------------------*/
- /* mirror variables */
- /*----------------------------------------------------------------------------*/
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_CORE_CTRL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_CORE_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_CORE_CTRL'. */
- U32 GH_DEBUG_ADC_get_PLL_CORE_CTRL(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_CORE_FRAC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_CORE_FRAC'. */
- void GH_DEBUG_ADC_set_PLL_CORE_FRAC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_CORE_FRAC'. */
- U32 GH_DEBUG_ADC_get_PLL_CORE_FRAC(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_HDMI_CTRL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_HDMI_CTRL'. */
- void GH_DEBUG_ADC_set_HDMI_CTRL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_HDMI_CTRL'. */
- U32 GH_DEBUG_ADC_get_HDMI_CTRL(void);
- /*! \brief Writes the bit group 'Hdmi_phy_test_mode' of register 'DEBUG_ADC_HDMI_CTRL'. */
- void GH_DEBUG_ADC_set_HDMI_CTRL_Hdmi_phy_test_mode(U8 data);
- /*! \brief Reads the bit group 'Hdmi_phy_test_mode' of register 'DEBUG_ADC_HDMI_CTRL'. */
- U8 GH_DEBUG_ADC_get_HDMI_CTRL_Hdmi_phy_test_mode(void);
- /*! \brief Writes the bit group 'use_hdmi_phy_clk_v' of register 'DEBUG_ADC_HDMI_CTRL'. */
- void GH_DEBUG_ADC_set_HDMI_CTRL_use_hdmi_phy_clk_v(U8 data);
- /*! \brief Reads the bit group 'use_hdmi_phy_clk_v' of register 'DEBUG_ADC_HDMI_CTRL'. */
- U8 GH_DEBUG_ADC_get_HDMI_CTRL_use_hdmi_phy_clk_v(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_SD48 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_SD48'. */
- void GH_DEBUG_ADC_set_SCALER_SD48(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_SD48'. */
- U32 GH_DEBUG_ADC_get_SCALER_SD48(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_SD48'. */
- void GH_DEBUG_ADC_set_SCALER_SD48_Div(U16 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_SD48'. */
- U16 GH_DEBUG_ADC_get_SCALER_SD48_Div(void);
- /*! \brief Writes the bit group 'SDCLK_delay' of register 'DEBUG_ADC_SCALER_SD48'. */
- void GH_DEBUG_ADC_set_SCALER_SD48_SDCLK_delay(U8 data);
- /*! \brief Reads the bit group 'SDCLK_delay' of register 'DEBUG_ADC_SCALER_SD48'. */
- U8 GH_DEBUG_ADC_get_SCALER_SD48_SDCLK_delay(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_VIDEO_CTRL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U32 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL(void);
- /*! \brief Writes the bit group 'WriteEnable' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_WriteEnable(U8 data);
- /*! \brief Reads the bit group 'WriteEnable' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_WriteEnable(void);
- /*! \brief Writes the bit group 'BYPASS' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_BYPASS(U8 data);
- /*! \brief Reads the bit group 'BYPASS' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_BYPASS(void);
- /*! \brief Writes the bit group 'Mode' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_Mode(U8 data);
- /*! \brief Reads the bit group 'Mode' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_Mode(void);
- /*! \brief Writes the bit group 'reset' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_reset(U8 data);
- /*! \brief Reads the bit group 'reset' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_reset(void);
- /*! \brief Writes the bit group 'PowerDown' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_PowerDown(U8 data);
- /*! \brief Reads the bit group 'PowerDown' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_PowerDown(void);
- /*! \brief Writes the bit group 'HalfVCO' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_HalfVCO(U8 data);
- /*! \brief Reads the bit group 'HalfVCO' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_HalfVCO(void);
- /*! \brief Writes the bit group 'Tristate' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_Tristate(U8 data);
- /*! \brief Reads the bit group 'Tristate' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_Tristate(void);
- /*! \brief Writes the bit group 'pll_tout_async' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_pll_tout_async(U8 data);
- /*! \brief Reads the bit group 'pll_tout_async' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_pll_tout_async(void);
- /*! \brief Writes the bit group 'SDIV' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_SDIV(U8 data);
- /*! \brief Reads the bit group 'SDIV' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_SDIV(void);
- /*! \brief Writes the bit group 'SOUT' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_SOUT(U8 data);
- /*! \brief Reads the bit group 'SOUT' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_SOUT(void);
- /*! \brief Writes the bit group 'pll_lock' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_pll_lock(U8 data);
- /*! \brief Reads the bit group 'pll_lock' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_pll_lock(void);
- /*! \brief Writes the bit group 'gclk_vo' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_gclk_vo(U8 data);
- /*! \brief Reads the bit group 'gclk_vo' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_gclk_vo(void);
- /*! \brief Writes the bit group 'INTPROG' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL_INTPROG(U8 data);
- /*! \brief Reads the bit group 'INTPROG' of register 'DEBUG_ADC_PLL_VIDEO_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL_INTPROG(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_VIDEO_FRAC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_VIDEO_FRAC'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_FRAC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_VIDEO_FRAC'. */
- U32 GH_DEBUG_ADC_get_PLL_VIDEO_FRAC(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_VIDEO (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_VIDEO'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_VIDEO'. */
- U32 GH_DEBUG_ADC_get_SCALER_VIDEO(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_VIDEO'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO_Div(U16 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_VIDEO'. */
- U16 GH_DEBUG_ADC_get_SCALER_VIDEO_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_SENSOR_CTRL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_SENSOR_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_SENSOR_CTRL'. */
- U32 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_SENSOR_FRAC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_SENSOR_FRAC'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_FRAC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_SENSOR_FRAC'. */
- U32 GH_DEBUG_ADC_get_PLL_SENSOR_FRAC(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_LOCK (read) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Reads the register 'DEBUG_ADC_PLL_LOCK'. */
- U32 GH_DEBUG_ADC_get_PLL_LOCK(void);
- /*! \brief Reads the bit group 'PLL_VIDEO2' of register 'DEBUG_ADC_PLL_LOCK'. */
- U8 GH_DEBUG_ADC_get_PLL_LOCK_PLL_VIDEO2(void);
- /*! \brief Reads the bit group 'PLL_VIDEO' of register 'DEBUG_ADC_PLL_LOCK'. */
- U8 GH_DEBUG_ADC_get_PLL_LOCK_PLL_VIDEO(void);
- /*! \brief Reads the bit group 'PLL_USB' of register 'DEBUG_ADC_PLL_LOCK'. */
- U8 GH_DEBUG_ADC_get_PLL_LOCK_PLL_USB(void);
- /*! \brief Reads the bit group 'PLL_SENSOR' of register 'DEBUG_ADC_PLL_LOCK'. */
- U8 GH_DEBUG_ADC_get_PLL_LOCK_PLL_SENSOR(void);
- /*! \brief Reads the bit group 'PLL_IDSP' of register 'DEBUG_ADC_PLL_LOCK'. */
- U8 GH_DEBUG_ADC_get_PLL_LOCK_PLL_IDSP(void);
- /*! \brief Reads the bit group 'PLL_DDR' of register 'DEBUG_ADC_PLL_LOCK'. */
- U8 GH_DEBUG_ADC_get_PLL_LOCK_PLL_DDR(void);
- /*! \brief Reads the bit group 'PLL_CORE' of register 'DEBUG_ADC_PLL_LOCK'. */
- U8 GH_DEBUG_ADC_get_PLL_LOCK_PLL_CORE(void);
- /*! \brief Reads the bit group 'PLL_AUDIO' of register 'DEBUG_ADC_PLL_LOCK'. */
- U8 GH_DEBUG_ADC_get_PLL_LOCK_PLL_AUDIO(void);
- /*! \brief Reads the bit group 'PLL_HDMI' of register 'DEBUG_ADC_PLL_LOCK'. */
- U8 GH_DEBUG_ADC_get_PLL_LOCK_PLL_HDMI(void);
- /*! \brief Reads the bit group 'PLL_VIN' of register 'DEBUG_ADC_PLL_LOCK'. */
- U8 GH_DEBUG_ADC_get_PLL_LOCK_PLL_VIN(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_SENSOR_POST (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_SENSOR_POST'. */
- void GH_DEBUG_ADC_set_SCALER_SENSOR_POST(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_SENSOR_POST'. */
- U32 GH_DEBUG_ADC_get_SCALER_SENSOR_POST(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_SENSOR_POST'. */
- void GH_DEBUG_ADC_set_SCALER_SENSOR_POST_Div(U16 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_SENSOR_POST'. */
- U16 GH_DEBUG_ADC_get_SCALER_SENSOR_POST_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SYS_CONFIG (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SYS_CONFIG'. */
- U32 GH_DEBUG_ADC_get_SYS_CONFIG(void);
- /*! \brief Writes the bit group 'BootMedia' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_BootMedia(U8 data);
- /*! \brief Reads the bit group 'BootMedia' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_BootMedia(void);
- /*! \brief Writes the bit group 'clock' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_clock(U8 data);
- /*! \brief Reads the bit group 'clock' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_clock(void);
- /*! \brief Writes the bit group 'grst' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_grst(U8 data);
- /*! \brief Reads the bit group 'grst' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_grst(void);
- /*! \brief Writes the bit group 'page_size' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_page_size(U8 data);
- /*! \brief Reads the bit group 'page_size' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_page_size(void);
- /*! \brief Writes the bit group 'read' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_read(U8 data);
- /*! \brief Reads the bit group 'read' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_read(void);
- /*! \brief Writes the bit group 'enet' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_enet(U8 data);
- /*! \brief Reads the bit group 'enet' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_enet(void);
- /*! \brief Writes the bit group 'Boot_Bypass' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_Boot_Bypass(U8 data);
- /*! \brief Reads the bit group 'Boot_Bypass' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_Boot_Bypass(void);
- /*! \brief Writes the bit group 'fastboot' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_fastboot(U8 data);
- /*! \brief Reads the bit group 'fastboot' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_fastboot(void);
- /*! \brief Writes the bit group 'IO_Flash_boot' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_IO_Flash_boot(U8 data);
- /*! \brief Reads the bit group 'IO_Flash_boot' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_IO_Flash_boot(void);
- /*! \brief Writes the bit group 'SD_BOOT' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_SD_BOOT(U8 data);
- /*! \brief Reads the bit group 'SD_BOOT' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_SD_BOOT(void);
- /*! \brief Writes the bit group 'EMA_SEL' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_EMA_SEL(U8 data);
- /*! \brief Reads the bit group 'EMA_SEL' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_EMA_SEL(void);
- /*! \brief Writes the bit group 'lock_mode' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_lock_mode(U8 data);
- /*! \brief Reads the bit group 'lock_mode' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_lock_mode(void);
- /*! \brief Writes the bit group 'grst_l' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_grst_l(U8 data);
- /*! \brief Reads the bit group 'grst_l' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_grst_l(void);
- /*! \brief Writes the bit group 'RMII_SEL' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_RMII_SEL(U8 data);
- /*! \brief Reads the bit group 'RMII_SEL' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_RMII_SEL(void);
- /*! \brief Writes the bit group 'spi_boot' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_spi_boot(U8 data);
- /*! \brief Reads the bit group 'spi_boot' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_spi_boot(void);
- /*! \brief Writes the bit group 'hif_en' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_hif_en(U8 data);
- /*! \brief Reads the bit group 'hif_en' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_hif_en(void);
- /*! \brief Writes the bit group 'FREE' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_FREE(U8 data);
- /*! \brief Reads the bit group 'FREE' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_FREE(void);
- /*! \brief Writes the bit group 'hif_type' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_hif_type(U8 data);
- /*! \brief Reads the bit group 'hif_type' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_hif_type(void);
- /*! \brief Writes the bit group 'rdy_pl' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_rdy_pl(U8 data);
- /*! \brief Reads the bit group 'rdy_pl' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_rdy_pl(void);
- /*! \brief Writes the bit group 'rct_ahb_hif_secure_mode' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_rct_ahb_hif_secure_mode(U8 data);
- /*! \brief Reads the bit group 'rct_ahb_hif_secure_mode' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_rct_ahb_hif_secure_mode(void);
- /*! \brief Writes the bit group 'usbp' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_usbp(U8 data);
- /*! \brief Reads the bit group 'usbp' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_usbp(void);
- /*! \brief Writes the bit group 'ref_clk_is_24Mhz' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_ref_clk_is_24Mhz(U8 data);
- /*! \brief Reads the bit group 'ref_clk_is_24Mhz' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_ref_clk_is_24Mhz(void);
- /*! \brief Writes the bit group 'rct_bira_efuse_disable' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_rct_bira_efuse_disable(U8 data);
- /*! \brief Reads the bit group 'rct_bira_efuse_disable' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_rct_bira_efuse_disable(void);
- /*! \brief Writes the bit group 'hardcoded' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_hardcoded(U8 data);
- /*! \brief Reads the bit group 'hardcoded' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_hardcoded(void);
- /*! \brief Writes the bit group 'source' of register 'DEBUG_ADC_SYS_CONFIG'. */
- void GH_DEBUG_ADC_set_SYS_CONFIG_source(U8 data);
- /*! \brief Reads the bit group 'source' of register 'DEBUG_ADC_SYS_CONFIG'. */
- U8 GH_DEBUG_ADC_get_SYS_CONFIG_source(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CG_UART (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CG_UART'. */
- void GH_DEBUG_ADC_set_CG_UART(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CG_UART'. */
- U32 GH_DEBUG_ADC_get_CG_UART(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CG_SSI (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CG_SSI'. */
- void GH_DEBUG_ADC_set_CG_SSI(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CG_SSI'. */
- U32 GH_DEBUG_ADC_get_CG_SSI(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CG_MOTOR (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CG_MOTOR'. */
- void GH_DEBUG_ADC_set_CG_MOTOR(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CG_MOTOR'. */
- U32 GH_DEBUG_ADC_get_CG_MOTOR(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CG_IR (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CG_IR'. */
- void GH_DEBUG_ADC_set_CG_IR(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CG_IR'. */
- U32 GH_DEBUG_ADC_get_CG_IR(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CG_HOST (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CG_HOST'. */
- void GH_DEBUG_ADC_set_CG_HOST(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CG_HOST'. */
- U32 GH_DEBUG_ADC_get_CG_HOST(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_SENSOR_PRE (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_SENSOR_PRE'. */
- void GH_DEBUG_ADC_set_SCALER_SENSOR_PRE(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_SENSOR_PRE'. */
- U32 GH_DEBUG_ADC_get_SCALER_SENSOR_PRE(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_SENSOR_PRE'. */
- void GH_DEBUG_ADC_set_SCALER_SENSOR_PRE_Div(U16 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_SENSOR_PRE'. */
- U16 GH_DEBUG_ADC_get_SCALER_SENSOR_PRE_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_ANA_PWR (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_ANA_PWR'. */
- void GH_DEBUG_ADC_set_ANA_PWR(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_ANA_PWR'. */
- U32 GH_DEBUG_ADC_get_ANA_PWR(void);
- /*! \brief Writes the bit group 'USBsuspend' of register 'DEBUG_ADC_ANA_PWR'. */
- void GH_DEBUG_ADC_set_ANA_PWR_USBsuspend(U8 data);
- /*! \brief Reads the bit group 'USBsuspend' of register 'DEBUG_ADC_ANA_PWR'. */
- U8 GH_DEBUG_ADC_get_ANA_PWR_USBsuspend(void);
- /*! \brief Writes the bit group 'suspendUSBP' of register 'DEBUG_ADC_ANA_PWR'. */
- void GH_DEBUG_ADC_set_ANA_PWR_suspendUSBP(U8 data);
- /*! \brief Reads the bit group 'suspendUSBP' of register 'DEBUG_ADC_ANA_PWR'. */
- U8 GH_DEBUG_ADC_get_ANA_PWR_suspendUSBP(void);
- /*! \brief Writes the bit group 'power_controller' of register 'DEBUG_ADC_ANA_PWR'. */
- void GH_DEBUG_ADC_set_ANA_PWR_power_controller(U8 data);
- /*! \brief Reads the bit group 'power_controller' of register 'DEBUG_ADC_ANA_PWR'. */
- U8 GH_DEBUG_ADC_get_ANA_PWR_power_controller(void);
- /*! \brief Writes the bit group 'DLLpowerdown' of register 'DEBUG_ADC_ANA_PWR'. */
- void GH_DEBUG_ADC_set_ANA_PWR_DLLpowerdown(U8 data);
- /*! \brief Reads the bit group 'DLLpowerdown' of register 'DEBUG_ADC_ANA_PWR'. */
- U8 GH_DEBUG_ADC_get_ANA_PWR_DLLpowerdown(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_AUDIO_CTRL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_AUDIO_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_AUDIO_CTRL'. */
- U32 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_AUDIO_FRAC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_AUDIO_FRAC'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_FRAC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_AUDIO_FRAC'. */
- U32 GH_DEBUG_ADC_get_PLL_AUDIO_FRAC(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_AUDIO (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_AUDIO'. */
- void GH_DEBUG_ADC_set_SCALER_AUDIO(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_AUDIO'. */
- U32 GH_DEBUG_ADC_get_SCALER_AUDIO(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_AUDIO'. */
- void GH_DEBUG_ADC_set_SCALER_AUDIO_Div(U16 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_AUDIO'. */
- U16 GH_DEBUG_ADC_get_SCALER_AUDIO_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_AUDIO_PRE (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_AUDIO_PRE'. */
- void GH_DEBUG_ADC_set_SCALER_AUDIO_PRE(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_AUDIO_PRE'. */
- U32 GH_DEBUG_ADC_get_SCALER_AUDIO_PRE(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_AUDIO_PRE'. */
- void GH_DEBUG_ADC_set_SCALER_AUDIO_PRE_Div(U16 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_AUDIO_PRE'. */
- U16 GH_DEBUG_ADC_get_SCALER_AUDIO_PRE_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SOFT_OR_DLLRESET (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SOFT_OR_DLLRESET'. */
- void GH_DEBUG_ADC_set_SOFT_OR_DLLRESET(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SOFT_OR_DLLRESET'. */
- U32 GH_DEBUG_ADC_get_SOFT_OR_DLLRESET(void);
- /*! \brief Writes the bit group 'Softreset' of register 'DEBUG_ADC_SOFT_OR_DLLRESET'. */
- void GH_DEBUG_ADC_set_SOFT_OR_DLLRESET_Softreset(U8 data);
- /*! \brief Reads the bit group 'Softreset' of register 'DEBUG_ADC_SOFT_OR_DLLRESET'. */
- U8 GH_DEBUG_ADC_get_SOFT_OR_DLLRESET_Softreset(void);
- /*! \brief Writes the bit group 'dll_rst_l' of register 'DEBUG_ADC_SOFT_OR_DLLRESET'. */
- void GH_DEBUG_ADC_set_SOFT_OR_DLLRESET_dll_rst_l(U8 data);
- /*! \brief Reads the bit group 'dll_rst_l' of register 'DEBUG_ADC_SOFT_OR_DLLRESET'. */
- U8 GH_DEBUG_ADC_get_SOFT_OR_DLLRESET_dll_rst_l(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_FIO_RESET (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_FIO_RESET'. */
- void GH_DEBUG_ADC_set_FIO_RESET(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_FIO_RESET'. */
- U32 GH_DEBUG_ADC_get_FIO_RESET(void);
- /*! \brief Writes the bit group 'flashreset' of register 'DEBUG_ADC_FIO_RESET'. */
- void GH_DEBUG_ADC_set_FIO_RESET_flashreset(U8 data);
- /*! \brief Reads the bit group 'flashreset' of register 'DEBUG_ADC_FIO_RESET'. */
- U8 GH_DEBUG_ADC_get_FIO_RESET_flashreset(void);
- /*! \brief Writes the bit group 'xdreset' of register 'DEBUG_ADC_FIO_RESET'. */
- void GH_DEBUG_ADC_set_FIO_RESET_xdreset(U8 data);
- /*! \brief Reads the bit group 'xdreset' of register 'DEBUG_ADC_FIO_RESET'. */
- U8 GH_DEBUG_ADC_get_FIO_RESET_xdreset(void);
- /*! \brief Writes the bit group 'cfreset' of register 'DEBUG_ADC_FIO_RESET'. */
- void GH_DEBUG_ADC_set_FIO_RESET_cfreset(U8 data);
- /*! \brief Reads the bit group 'cfreset' of register 'DEBUG_ADC_FIO_RESET'. */
- U8 GH_DEBUG_ADC_get_FIO_RESET_cfreset(void);
- /*! \brief Writes the bit group 'fioreset' of register 'DEBUG_ADC_FIO_RESET'. */
- void GH_DEBUG_ADC_set_FIO_RESET_fioreset(U8 data);
- /*! \brief Reads the bit group 'fioreset' of register 'DEBUG_ADC_FIO_RESET'. */
- U8 GH_DEBUG_ADC_get_FIO_RESET_fioreset(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_WDT_RST_L (read) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Reads the register 'DEBUG_ADC_WDT_RST_L'. */
- U32 GH_DEBUG_ADC_get_WDT_RST_L(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_USB (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_USB'. */
- void GH_DEBUG_ADC_set_SCALER_USB(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_USB'. */
- U32 GH_DEBUG_ADC_get_SCALER_USB(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_USB'. */
- void GH_DEBUG_ADC_set_SCALER_USB_Div(U16 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_USB'. */
- U16 GH_DEBUG_ADC_get_SCALER_USB_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CLK_DEBOUNCE (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CLK_DEBOUNCE'. */
- void GH_DEBUG_ADC_set_CLK_DEBOUNCE(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CLK_DEBOUNCE'. */
- U32 GH_DEBUG_ADC_get_CLK_DEBOUNCE(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CG_PWM (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CG_PWM'. */
- void GH_DEBUG_ADC_set_CG_PWM(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CG_PWM'. */
- U32 GH_DEBUG_ADC_get_CG_PWM(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_USBP_CTRL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_USBP_CTRL'. */
- U32 GH_DEBUG_ADC_get_USBP_CTRL(void);
- /*! \brief Writes the bit group 'refclkdiv' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_refclkdiv(U8 data);
- /*! \brief Reads the bit group 'refclkdiv' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_refclkdiv(void);
- /*! \brief Writes the bit group 'usbphy_reset' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_usbphy_reset(U8 data);
- /*! \brief Reads the bit group 'usbphy_reset' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_usbphy_reset(void);
- /*! \brief Writes the bit group 'refclksel' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_refclksel(U8 data);
- /*! \brief Reads the bit group 'refclksel' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_refclksel(void);
- /*! \brief Writes the bit group 'commononn' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_commononn(U8 data);
- /*! \brief Reads the bit group 'commononn' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_commononn(void);
- /*! \brief Writes the bit group 'compdistune' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_compdistune(U8 data);
- /*! \brief Reads the bit group 'compdistune' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_compdistune(void);
- /*! \brief Writes the bit group 'otgtune' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_otgtune(U8 data);
- /*! \brief Reads the bit group 'otgtune' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_otgtune(void);
- /*! \brief Writes the bit group 'sqrxtune' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_sqrxtune(U8 data);
- /*! \brief Reads the bit group 'sqrxtune' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_sqrxtune(void);
- /*! \brief Writes the bit group 'rxfslstune' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_rxfslstune(U8 data);
- /*! \brief Reads the bit group 'rxfslstune' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_rxfslstune(void);
- /*! \brief Writes the bit group 'txpreemphasistune' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_txpreemphasistune(U8 data);
- /*! \brief Reads the bit group 'txpreemphasistune' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_txpreemphasistune(void);
- /*! \brief Writes the bit group 'txrisetune' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_txrisetune(U8 data);
- /*! \brief Reads the bit group 'txrisetune' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_txrisetune(void);
- /*! \brief Writes the bit group 'txvreftune' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_txvreftune(U8 data);
- /*! \brief Reads the bit group 'txvreftune' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_txvreftune(void);
- /*! \brief Writes the bit group 'txhsxvtune' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_txhsxvtune(U8 data);
- /*! \brief Reads the bit group 'txhsxvtune' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_txhsxvtune(void);
- /*! \brief Writes the bit group 'ATERESET' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_ATERESET(U8 data);
- /*! \brief Reads the bit group 'ATERESET' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_ATERESET(void);
- /*! \brief Writes the bit group 'USBDCsoftreset' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_USBDCsoftreset(U8 data);
- /*! \brief Reads the bit group 'USBDCsoftreset' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_USBDCsoftreset(void);
- /*! \brief Writes the bit group 'SLEEPM' of register 'DEBUG_ADC_USBP_CTRL'. */
- void GH_DEBUG_ADC_set_USBP_CTRL_SLEEPM(U8 data);
- /*! \brief Reads the bit group 'SLEEPM' of register 'DEBUG_ADC_USBP_CTRL'. */
- U8 GH_DEBUG_ADC_get_USBP_CTRL_SLEEPM(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CKEN_VDSP (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CKEN_VDSP'. */
- void GH_DEBUG_ADC_set_CKEN_VDSP(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CKEN_VDSP'. */
- U32 GH_DEBUG_ADC_get_CKEN_VDSP(void);
- /*! \brief Writes the bit group 'cken_tsfm' of register 'DEBUG_ADC_CKEN_VDSP'. */
- void GH_DEBUG_ADC_set_CKEN_VDSP_cken_tsfm(U8 data);
- /*! \brief Reads the bit group 'cken_tsfm' of register 'DEBUG_ADC_CKEN_VDSP'. */
- U8 GH_DEBUG_ADC_get_CKEN_VDSP_cken_tsfm(void);
- /*! \brief Writes the bit group 'cken_code' of register 'DEBUG_ADC_CKEN_VDSP'. */
- void GH_DEBUG_ADC_set_CKEN_VDSP_cken_code(U8 data);
- /*! \brief Reads the bit group 'cken_code' of register 'DEBUG_ADC_CKEN_VDSP'. */
- U8 GH_DEBUG_ADC_get_CKEN_VDSP_cken_code(void);
- /*! \brief Writes the bit group 'cken_smem' of register 'DEBUG_ADC_CKEN_VDSP'. */
- void GH_DEBUG_ADC_set_CKEN_VDSP_cken_smem(U8 data);
- /*! \brief Reads the bit group 'cken_smem' of register 'DEBUG_ADC_CKEN_VDSP'. */
- U8 GH_DEBUG_ADC_get_CKEN_VDSP_cken_smem(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_DLL0 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_DLL0'. */
- void GH_DEBUG_ADC_set_DLL0(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_DLL0'. */
- U32 GH_DEBUG_ADC_get_DLL0(void);
- /*! \brief Writes the bit group 'DLL_SEL2' of register 'DEBUG_ADC_DLL0'. */
- void GH_DEBUG_ADC_set_DLL0_DLL_SEL2(U8 data);
- /*! \brief Reads the bit group 'DLL_SEL2' of register 'DEBUG_ADC_DLL0'. */
- U8 GH_DEBUG_ADC_get_DLL0_DLL_SEL2(void);
- /*! \brief Writes the bit group 'DLL_SEL1' of register 'DEBUG_ADC_DLL0'. */
- void GH_DEBUG_ADC_set_DLL0_DLL_SEL1(U8 data);
- /*! \brief Reads the bit group 'DLL_SEL1' of register 'DEBUG_ADC_DLL0'. */
- U8 GH_DEBUG_ADC_get_DLL0_DLL_SEL1(void);
- /*! \brief Writes the bit group 'DLL_SEL0' of register 'DEBUG_ADC_DLL0'. */
- void GH_DEBUG_ADC_set_DLL0_DLL_SEL0(U8 data);
- /*! \brief Reads the bit group 'DLL_SEL0' of register 'DEBUG_ADC_DLL0'. */
- U8 GH_DEBUG_ADC_get_DLL0_DLL_SEL0(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_DLL1 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_DLL1'. */
- void GH_DEBUG_ADC_set_DLL1(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_DLL1'. */
- U32 GH_DEBUG_ADC_get_DLL1(void);
- /*! \brief Writes the bit group 'DLL_SEL2' of register 'DEBUG_ADC_DLL1'. */
- void GH_DEBUG_ADC_set_DLL1_DLL_SEL2(U8 data);
- /*! \brief Reads the bit group 'DLL_SEL2' of register 'DEBUG_ADC_DLL1'. */
- U8 GH_DEBUG_ADC_get_DLL1_DLL_SEL2(void);
- /*! \brief Writes the bit group 'DLL_SEL1' of register 'DEBUG_ADC_DLL1'. */
- void GH_DEBUG_ADC_set_DLL1_DLL_SEL1(U8 data);
- /*! \brief Reads the bit group 'DLL_SEL1' of register 'DEBUG_ADC_DLL1'. */
- U8 GH_DEBUG_ADC_get_DLL1_DLL_SEL1(void);
- /*! \brief Writes the bit group 'DLL_SEL0' of register 'DEBUG_ADC_DLL1'. */
- void GH_DEBUG_ADC_set_DLL1_DLL_SEL0(U8 data);
- /*! \brief Reads the bit group 'DLL_SEL0' of register 'DEBUG_ADC_DLL1'. */
- U8 GH_DEBUG_ADC_get_DLL1_DLL_SEL0(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_ADC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_ADC'. */
- void GH_DEBUG_ADC_set_SCALER_ADC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_ADC'. */
- U32 GH_DEBUG_ADC_get_SCALER_ADC(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_ADC'. */
- void GH_DEBUG_ADC_set_SCALER_ADC_Div(U16 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_ADC'. */
- U16 GH_DEBUG_ADC_get_SCALER_ADC_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_VIDEO_POST (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_VIDEO_POST'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO_POST(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_VIDEO_POST'. */
- U32 GH_DEBUG_ADC_get_SCALER_VIDEO_POST(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_VIDEO_POST'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO_POST_Div(U16 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_VIDEO_POST'. */
- U16 GH_DEBUG_ADC_get_SCALER_VIDEO_POST_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CLK_REF_AU_EXTERNAL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CLK_REF_AU_EXTERNAL'. */
- void GH_DEBUG_ADC_set_CLK_REF_AU_EXTERNAL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CLK_REF_AU_EXTERNAL'. */
- U32 GH_DEBUG_ADC_get_CLK_REF_AU_EXTERNAL(void);
- /*! \brief Writes the bit group 'external' of register 'DEBUG_ADC_CLK_REF_AU_EXTERNAL'. */
- void GH_DEBUG_ADC_set_CLK_REF_AU_EXTERNAL_external(U8 data);
- /*! \brief Reads the bit group 'external' of register 'DEBUG_ADC_CLK_REF_AU_EXTERNAL'. */
- U8 GH_DEBUG_ADC_get_CLK_REF_AU_EXTERNAL_external(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_USE_EXTERNAL_CLK_AU (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_USE_EXTERNAL_CLK_AU'. */
- void GH_DEBUG_ADC_set_USE_EXTERNAL_CLK_AU(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_USE_EXTERNAL_CLK_AU'. */
- U32 GH_DEBUG_ADC_get_USE_EXTERNAL_CLK_AU(void);
- /*! \brief Writes the bit group 'external' of register 'DEBUG_ADC_USE_EXTERNAL_CLK_AU'. */
- void GH_DEBUG_ADC_set_USE_EXTERNAL_CLK_AU_external(U8 data);
- /*! \brief Reads the bit group 'external' of register 'DEBUG_ADC_USE_EXTERNAL_CLK_AU'. */
- U8 GH_DEBUG_ADC_get_USE_EXTERNAL_CLK_AU_external(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CLK_REF_VIDEO_EXTERNAL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CLK_REF_VIDEO_EXTERNAL'. */
- void GH_DEBUG_ADC_set_CLK_REF_VIDEO_EXTERNAL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CLK_REF_VIDEO_EXTERNAL'. */
- U32 GH_DEBUG_ADC_get_CLK_REF_VIDEO_EXTERNAL(void);
- /*! \brief Writes the bit group 'external' of register 'DEBUG_ADC_CLK_REF_VIDEO_EXTERNAL'. */
- void GH_DEBUG_ADC_set_CLK_REF_VIDEO_EXTERNAL_external(U8 data);
- /*! \brief Reads the bit group 'external' of register 'DEBUG_ADC_CLK_REF_VIDEO_EXTERNAL'. */
- U8 GH_DEBUG_ADC_get_CLK_REF_VIDEO_EXTERNAL_external(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_USE_EXTERNAL_VD_CLK (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_USE_EXTERNAL_VD_CLK'. */
- void GH_DEBUG_ADC_set_USE_EXTERNAL_VD_CLK(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_USE_EXTERNAL_VD_CLK'. */
- U32 GH_DEBUG_ADC_get_USE_EXTERNAL_VD_CLK(void);
- /*! \brief Writes the bit group 'external' of register 'DEBUG_ADC_USE_EXTERNAL_VD_CLK'. */
- void GH_DEBUG_ADC_set_USE_EXTERNAL_VD_CLK_external(U8 data);
- /*! \brief Reads the bit group 'external' of register 'DEBUG_ADC_USE_EXTERNAL_VD_CLK'. */
- U8 GH_DEBUG_ADC_get_USE_EXTERNAL_VD_CLK_external(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_USE_CLK_SI_4_CLK_AU (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_USE_CLK_SI_4_CLK_AU'. */
- void GH_DEBUG_ADC_set_USE_CLK_SI_4_CLK_AU(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_USE_CLK_SI_4_CLK_AU'. */
- U32 GH_DEBUG_ADC_get_USE_CLK_SI_4_CLK_AU(void);
- /*! \brief Writes the bit group 'PLLref' of register 'DEBUG_ADC_USE_CLK_SI_4_CLK_AU'. */
- void GH_DEBUG_ADC_set_USE_CLK_SI_4_CLK_AU_PLLref(U8 data);
- /*! \brief Reads the bit group 'PLLref' of register 'DEBUG_ADC_USE_CLK_SI_4_CLK_AU'. */
- U8 GH_DEBUG_ADC_get_USE_CLK_SI_4_CLK_AU_PLLref(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_USE_CLK_SI_4_CLK_VO (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_USE_CLK_SI_4_CLK_VO'. */
- void GH_DEBUG_ADC_set_USE_CLK_SI_4_CLK_VO(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_USE_CLK_SI_4_CLK_VO'. */
- U32 GH_DEBUG_ADC_get_USE_CLK_SI_4_CLK_VO(void);
- /*! \brief Writes the bit group 'PLLref' of register 'DEBUG_ADC_USE_CLK_SI_4_CLK_VO'. */
- void GH_DEBUG_ADC_set_USE_CLK_SI_4_CLK_VO_PLLref(U8 data);
- /*! \brief Reads the bit group 'PLLref' of register 'DEBUG_ADC_USE_CLK_SI_4_CLK_VO'. */
- U8 GH_DEBUG_ADC_get_USE_CLK_SI_4_CLK_VO_PLLref(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CLK_SI_INPUT_MODE (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CLK_SI_INPUT_MODE'. */
- void GH_DEBUG_ADC_set_CLK_SI_INPUT_MODE(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CLK_SI_INPUT_MODE'. */
- U32 GH_DEBUG_ADC_get_CLK_SI_INPUT_MODE(void);
- /*! \brief Writes the bit group 'clk_si' of register 'DEBUG_ADC_CLK_SI_INPUT_MODE'. */
- void GH_DEBUG_ADC_set_CLK_SI_INPUT_MODE_clk_si(U8 data);
- /*! \brief Reads the bit group 'clk_si' of register 'DEBUG_ADC_CLK_SI_INPUT_MODE'. */
- U8 GH_DEBUG_ADC_get_CLK_SI_INPUT_MODE_clk_si(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_VIDEO2_CTRL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_VIDEO2_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO2_CTRL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_VIDEO2_CTRL'. */
- U32 GH_DEBUG_ADC_get_PLL_VIDEO2_CTRL(void);
- /*! \brief Writes the bit group 'pll_lock' of register 'DEBUG_ADC_PLL_VIDEO2_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO2_CTRL_pll_lock(U8 data);
- /*! \brief Reads the bit group 'pll_lock' of register 'DEBUG_ADC_PLL_VIDEO2_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO2_CTRL_pll_lock(void);
- /*! \brief Writes the bit group 'gclk_vo' of register 'DEBUG_ADC_PLL_VIDEO2_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO2_CTRL_gclk_vo(U8 data);
- /*! \brief Reads the bit group 'gclk_vo' of register 'DEBUG_ADC_PLL_VIDEO2_CTRL'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO2_CTRL_gclk_vo(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_VIDEO2_FRAC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_VIDEO2_FRAC'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO2_FRAC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_VIDEO2_FRAC'. */
- U32 GH_DEBUG_ADC_get_PLL_VIDEO2_FRAC(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_VIDEO2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_VIDEO2'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_VIDEO2'. */
- U32 GH_DEBUG_ADC_get_SCALER_VIDEO2(void);
- /*! \brief Writes the bit group 'IntegerDiv' of register 'DEBUG_ADC_SCALER_VIDEO2'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO2_IntegerDiv(U16 data);
- /*! \brief Reads the bit group 'IntegerDiv' of register 'DEBUG_ADC_SCALER_VIDEO2'. */
- U16 GH_DEBUG_ADC_get_SCALER_VIDEO2_IntegerDiv(void);
- /*! \brief Writes the bit group 'PrimeDiv' of register 'DEBUG_ADC_SCALER_VIDEO2'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO2_PrimeDiv(U8 data);
- /*! \brief Reads the bit group 'PrimeDiv' of register 'DEBUG_ADC_SCALER_VIDEO2'. */
- U8 GH_DEBUG_ADC_get_SCALER_VIDEO2_PrimeDiv(void);
- /*! \brief Writes the bit group 'DutyCycle' of register 'DEBUG_ADC_SCALER_VIDEO2'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO2_DutyCycle(U8 data);
- /*! \brief Reads the bit group 'DutyCycle' of register 'DEBUG_ADC_SCALER_VIDEO2'. */
- U8 GH_DEBUG_ADC_get_SCALER_VIDEO2_DutyCycle(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_VIDEO2_POST (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_VIDEO2_POST'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO2_POST(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_VIDEO2_POST'. */
- U32 GH_DEBUG_ADC_get_SCALER_VIDEO2_POST(void);
- /*! \brief Writes the bit group 'IntegerDiv' of register 'DEBUG_ADC_SCALER_VIDEO2_POST'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO2_POST_IntegerDiv(U16 data);
- /*! \brief Reads the bit group 'IntegerDiv' of register 'DEBUG_ADC_SCALER_VIDEO2_POST'. */
- U16 GH_DEBUG_ADC_get_SCALER_VIDEO2_POST_IntegerDiv(void);
- /*! \brief Writes the bit group 'PrimeDiv' of register 'DEBUG_ADC_SCALER_VIDEO2_POST'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO2_POST_PrimeDiv(U8 data);
- /*! \brief Reads the bit group 'PrimeDiv' of register 'DEBUG_ADC_SCALER_VIDEO2_POST'. */
- U8 GH_DEBUG_ADC_get_SCALER_VIDEO2_POST_PrimeDiv(void);
- /*! \brief Writes the bit group 'DutyCycle' of register 'DEBUG_ADC_SCALER_VIDEO2_POST'. */
- void GH_DEBUG_ADC_set_SCALER_VIDEO2_POST_DutyCycle(U8 data);
- /*! \brief Reads the bit group 'DutyCycle' of register 'DEBUG_ADC_SCALER_VIDEO2_POST'. */
- U8 GH_DEBUG_ADC_get_SCALER_VIDEO2_POST_DutyCycle(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_USE_CLK_SI_4_CLK_VO2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_USE_CLK_SI_4_CLK_VO2'. */
- void GH_DEBUG_ADC_set_USE_CLK_SI_4_CLK_VO2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_USE_CLK_SI_4_CLK_VO2'. */
- U32 GH_DEBUG_ADC_get_USE_CLK_SI_4_CLK_VO2(void);
- /*! \brief Writes the bit group 'PLLref' of register 'DEBUG_ADC_USE_CLK_SI_4_CLK_VO2'. */
- void GH_DEBUG_ADC_set_USE_CLK_SI_4_CLK_VO2_PLLref(U8 data);
- /*! \brief Reads the bit group 'PLLref' of register 'DEBUG_ADC_USE_CLK_SI_4_CLK_VO2'. */
- U8 GH_DEBUG_ADC_get_USE_CLK_SI_4_CLK_VO2_PLLref(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_USE_EXTERNAL_VD2_CLK (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_USE_EXTERNAL_VD2_CLK'. */
- void GH_DEBUG_ADC_set_USE_EXTERNAL_VD2_CLK(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_USE_EXTERNAL_VD2_CLK'. */
- U32 GH_DEBUG_ADC_get_USE_EXTERNAL_VD2_CLK(void);
- /*! \brief Writes the bit group 'external' of register 'DEBUG_ADC_USE_EXTERNAL_VD2_CLK'. */
- void GH_DEBUG_ADC_set_USE_EXTERNAL_VD2_CLK_external(U8 data);
- /*! \brief Reads the bit group 'external' of register 'DEBUG_ADC_USE_EXTERNAL_VD2_CLK'. */
- U8 GH_DEBUG_ADC_get_USE_EXTERNAL_VD2_CLK_external(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CLK_REF_VIDEO2_EXTERNAL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CLK_REF_VIDEO2_EXTERNAL'. */
- void GH_DEBUG_ADC_set_CLK_REF_VIDEO2_EXTERNAL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CLK_REF_VIDEO2_EXTERNAL'. */
- U32 GH_DEBUG_ADC_get_CLK_REF_VIDEO2_EXTERNAL(void);
- /*! \brief Writes the bit group 'external' of register 'DEBUG_ADC_CLK_REF_VIDEO2_EXTERNAL'. */
- void GH_DEBUG_ADC_set_CLK_REF_VIDEO2_EXTERNAL_external(U8 data);
- /*! \brief Reads the bit group 'external' of register 'DEBUG_ADC_CLK_REF_VIDEO2_EXTERNAL'. */
- U8 GH_DEBUG_ADC_get_CLK_REF_VIDEO2_EXTERNAL_external(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_DDR_CTRL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_DDR_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_DDR_CTRL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_DDR_CTRL'. */
- U32 GH_DEBUG_ADC_get_PLL_DDR_CTRL(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_DDR_FRAC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_DDR_FRAC'. */
- void GH_DEBUG_ADC_set_PLL_DDR_FRAC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_DDR_FRAC'. */
- U32 GH_DEBUG_ADC_get_PLL_DDR_FRAC(void);
- /*! \brief Writes the bit group 'fraction' of register 'DEBUG_ADC_PLL_DDR_FRAC'. */
- void GH_DEBUG_ADC_set_PLL_DDR_FRAC_fraction(U16 data);
- /*! \brief Reads the bit group 'fraction' of register 'DEBUG_ADC_PLL_DDR_FRAC'. */
- U16 GH_DEBUG_ADC_get_PLL_DDR_FRAC_fraction(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_IDSP_CTRL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_IDSP_CTRL'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_IDSP_CTRL'. */
- U32 GH_DEBUG_ADC_get_PLL_IDSP_CTRL(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_IDSP_FRAC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_IDSP_FRAC'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_FRAC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_IDSP_FRAC'. */
- U32 GH_DEBUG_ADC_get_PLL_IDSP_FRAC(void);
- /*! \brief Writes the bit group 'fraction' of register 'DEBUG_ADC_PLL_IDSP_FRAC'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_FRAC_fraction(U16 data);
- /*! \brief Reads the bit group 'fraction' of register 'DEBUG_ADC_PLL_IDSP_FRAC'. */
- U16 GH_DEBUG_ADC_get_PLL_IDSP_FRAC_fraction(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CG_SSI2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CG_SSI2'. */
- void GH_DEBUG_ADC_set_CG_SSI2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CG_SSI2'. */
- U32 GH_DEBUG_ADC_get_CG_SSI2(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_LVDS_LVCMOS (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_LVDS_LVCMOS'. */
- void GH_DEBUG_ADC_set_LVDS_LVCMOS(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_LVDS_LVCMOS'. */
- U32 GH_DEBUG_ADC_get_LVDS_LVCMOS(void);
- /*! \brief Writes the bit group 'lvcoms_sd' of register 'DEBUG_ADC_LVDS_LVCMOS'. */
- void GH_DEBUG_ADC_set_LVDS_LVCMOS_lvcoms_sd(U16 data);
- /*! \brief Reads the bit group 'lvcoms_sd' of register 'DEBUG_ADC_LVDS_LVCMOS'. */
- U16 GH_DEBUG_ADC_get_LVDS_LVCMOS_lvcoms_sd(void);
- /*! \brief Writes the bit group 'lvcmos_spclk' of register 'DEBUG_ADC_LVDS_LVCMOS'. */
- void GH_DEBUG_ADC_set_LVDS_LVCMOS_lvcmos_spclk(U8 data);
- /*! \brief Reads the bit group 'lvcmos_spclk' of register 'DEBUG_ADC_LVDS_LVCMOS'. */
- U8 GH_DEBUG_ADC_get_LVDS_LVCMOS_lvcmos_spclk(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_LVDS_ASYNC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_LVDS_ASYNC'. */
- void GH_DEBUG_ADC_set_LVDS_ASYNC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_LVDS_ASYNC'. */
- U32 GH_DEBUG_ADC_get_LVDS_ASYNC(void);
- /*! \brief Writes the bit group 'async_sd' of register 'DEBUG_ADC_LVDS_ASYNC'. */
- void GH_DEBUG_ADC_set_LVDS_ASYNC_async_sd(U16 data);
- /*! \brief Reads the bit group 'async_sd' of register 'DEBUG_ADC_LVDS_ASYNC'. */
- U16 GH_DEBUG_ADC_get_LVDS_ASYNC_async_sd(void);
- /*! \brief Writes the bit group 'async_spclk' of register 'DEBUG_ADC_LVDS_ASYNC'. */
- void GH_DEBUG_ADC_set_LVDS_ASYNC_async_spclk(U8 data);
- /*! \brief Reads the bit group 'async_spclk' of register 'DEBUG_ADC_LVDS_ASYNC'. */
- U8 GH_DEBUG_ADC_get_LVDS_ASYNC_async_spclk(void);
- /*! \brief Writes the bit group 'lvds_pd' of register 'DEBUG_ADC_LVDS_ASYNC'. */
- void GH_DEBUG_ADC_set_LVDS_ASYNC_lvds_pd(U8 data);
- /*! \brief Reads the bit group 'lvds_pd' of register 'DEBUG_ADC_LVDS_ASYNC'. */
- U8 GH_DEBUG_ADC_get_LVDS_ASYNC_lvds_pd(void);
- /*! \brief Writes the bit group 'lvds_ib_ctrl' of register 'DEBUG_ADC_LVDS_ASYNC'. */
- void GH_DEBUG_ADC_set_LVDS_ASYNC_lvds_ib_ctrl(U8 data);
- /*! \brief Reads the bit group 'lvds_ib_ctrl' of register 'DEBUG_ADC_LVDS_ASYNC'. */
- U8 GH_DEBUG_ADC_get_LVDS_ASYNC_lvds_ib_ctrl(void);
- /*! \brief Writes the bit group 'lvds_bit_mode' of register 'DEBUG_ADC_LVDS_ASYNC'. */
- void GH_DEBUG_ADC_set_LVDS_ASYNC_lvds_bit_mode(U8 data);
- /*! \brief Reads the bit group 'lvds_bit_mode' of register 'DEBUG_ADC_LVDS_ASYNC'. */
- U8 GH_DEBUG_ADC_get_LVDS_ASYNC_lvds_bit_mode(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_CORE_CTRL2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_CORE_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_CORE_CTRL2'. */
- U32 GH_DEBUG_ADC_get_PLL_CORE_CTRL2(void);
- /*! \brief Writes the bit group 'Controllability' of register 'DEBUG_ADC_PLL_CORE_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL2_Controllability(U16 data);
- /*! \brief Reads the bit group 'Controllability' of register 'DEBUG_ADC_PLL_CORE_CTRL2'. */
- U16 GH_DEBUG_ADC_get_PLL_CORE_CTRL2_Controllability(void);
- /*! \brief Writes the bit group 'Charge' of register 'DEBUG_ADC_PLL_CORE_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL2_Charge(U8 data);
- /*! \brief Reads the bit group 'Charge' of register 'DEBUG_ADC_PLL_CORE_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_CORE_CTRL2_Charge(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_CORE_CTRL3 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL3(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- U32 GH_DEBUG_ADC_get_PLL_CORE_CTRL3(void);
- /*! \brief Writes the bit group 'VCO' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL3_VCO(U8 data);
- /*! \brief Reads the bit group 'VCO' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_CORE_CTRL3_VCO(void);
- /*! \brief Writes the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL3_PLL_VCO(U8 data);
- /*! \brief Reads the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_CORE_CTRL3_PLL_VCO(void);
- /*! \brief Writes the bit group 'Clamp' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL3_Clamp(U8 data);
- /*! \brief Reads the bit group 'Clamp' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_CORE_CTRL3_Clamp(void);
- /*! \brief Writes the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL3_DSM_dither(U8 data);
- /*! \brief Reads the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_CORE_CTRL3_DSM_dither(void);
- /*! \brief Writes the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL3_DSM_dither_gain(U8 data);
- /*! \brief Reads the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_CORE_CTRL3_DSM_dither_gain(void);
- /*! \brief Writes the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL3_Feedforward(U8 data);
- /*! \brief Reads the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_CORE_CTRL3_Feedforward(void);
- /*! \brief Writes the bit group 'Bias' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL3_Bias(U8 data);
- /*! \brief Reads the bit group 'Bias' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_CORE_CTRL3_Bias(void);
- /*! \brief Writes the bit group 'JDIV' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_CORE_CTRL3_JDIV(U8 data);
- /*! \brief Reads the bit group 'JDIV' of register 'DEBUG_ADC_PLL_CORE_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_CORE_CTRL3_JDIV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_IDSP_CTRL2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_IDSP_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_IDSP_CTRL2'. */
- U32 GH_DEBUG_ADC_get_PLL_IDSP_CTRL2(void);
- /*! \brief Writes the bit group 'Controllability' of register 'DEBUG_ADC_PLL_IDSP_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL2_Controllability(U16 data);
- /*! \brief Reads the bit group 'Controllability' of register 'DEBUG_ADC_PLL_IDSP_CTRL2'. */
- U16 GH_DEBUG_ADC_get_PLL_IDSP_CTRL2_Controllability(void);
- /*! \brief Writes the bit group 'Charge' of register 'DEBUG_ADC_PLL_IDSP_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL2_Charge(U8 data);
- /*! \brief Reads the bit group 'Charge' of register 'DEBUG_ADC_PLL_IDSP_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL2_Charge(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_IDSP_CTRL3 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL3(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- U32 GH_DEBUG_ADC_get_PLL_IDSP_CTRL3(void);
- /*! \brief Writes the bit group 'VCO' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL3_VCO(U8 data);
- /*! \brief Reads the bit group 'VCO' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL3_VCO(void);
- /*! \brief Writes the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL3_PLL_VCO(U8 data);
- /*! \brief Reads the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL3_PLL_VCO(void);
- /*! \brief Writes the bit group 'Clamp' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL3_Clamp(U8 data);
- /*! \brief Reads the bit group 'Clamp' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL3_Clamp(void);
- /*! \brief Writes the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL3_DSM_dither(U8 data);
- /*! \brief Reads the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL3_DSM_dither(void);
- /*! \brief Writes the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL3_DSM_dither_gain(U8 data);
- /*! \brief Reads the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL3_DSM_dither_gain(void);
- /*! \brief Writes the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL3_Feedforward(U8 data);
- /*! \brief Reads the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL3_Feedforward(void);
- /*! \brief Writes the bit group 'Bias' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL3_Bias(U8 data);
- /*! \brief Reads the bit group 'Bias' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL3_Bias(void);
- /*! \brief Writes the bit group 'JDIV' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL3_JDIV(U8 data);
- /*! \brief Reads the bit group 'JDIV' of register 'DEBUG_ADC_PLL_IDSP_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL3_JDIV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_IDSP_CTRL22 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_IDSP_CTRL22'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL22(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_IDSP_CTRL22'. */
- U32 GH_DEBUG_ADC_get_PLL_IDSP_CTRL22(void);
- /*! \brief Writes the bit group 'Controllability' of register 'DEBUG_ADC_PLL_IDSP_CTRL22'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL22_Controllability(U16 data);
- /*! \brief Reads the bit group 'Controllability' of register 'DEBUG_ADC_PLL_IDSP_CTRL22'. */
- U16 GH_DEBUG_ADC_get_PLL_IDSP_CTRL22_Controllability(void);
- /*! \brief Writes the bit group 'Charge' of register 'DEBUG_ADC_PLL_IDSP_CTRL22'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL22_Charge(U8 data);
- /*! \brief Reads the bit group 'Charge' of register 'DEBUG_ADC_PLL_IDSP_CTRL22'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL22_Charge(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_IDSP_CTRL32 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL32(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- U32 GH_DEBUG_ADC_get_PLL_IDSP_CTRL32(void);
- /*! \brief Writes the bit group 'VCO' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL32_VCO(U8 data);
- /*! \brief Reads the bit group 'VCO' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL32_VCO(void);
- /*! \brief Writes the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL32_PLL_VCO(U8 data);
- /*! \brief Reads the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL32_PLL_VCO(void);
- /*! \brief Writes the bit group 'Clamp' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL32_Clamp(U8 data);
- /*! \brief Reads the bit group 'Clamp' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL32_Clamp(void);
- /*! \brief Writes the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL32_DSM_dither(U8 data);
- /*! \brief Reads the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL32_DSM_dither(void);
- /*! \brief Writes the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL32_DSM_dither_gain(U8 data);
- /*! \brief Reads the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL32_DSM_dither_gain(void);
- /*! \brief Writes the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL32_Feedforward(U8 data);
- /*! \brief Reads the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL32_Feedforward(void);
- /*! \brief Writes the bit group 'Bias' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL32_Bias(U8 data);
- /*! \brief Reads the bit group 'Bias' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL32_Bias(void);
- /*! \brief Writes the bit group 'JDIV' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_CTRL32_JDIV(U8 data);
- /*! \brief Reads the bit group 'JDIV' of register 'DEBUG_ADC_PLL_IDSP_CTRL32'. */
- U8 GH_DEBUG_ADC_get_PLL_IDSP_CTRL32_JDIV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_CORE_POST (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_CORE_POST'. */
- void GH_DEBUG_ADC_set_SCALER_CORE_POST(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_CORE_POST'. */
- U32 GH_DEBUG_ADC_get_SCALER_CORE_POST(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_CORE_POST'. */
- void GH_DEBUG_ADC_set_SCALER_CORE_POST_Div(U8 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_CORE_POST'. */
- U8 GH_DEBUG_ADC_get_SCALER_CORE_POST_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_SENSOR_CTRL2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_SENSOR_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_SENSOR_CTRL2'. */
- U32 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL2(void);
- /*! \brief Writes the bit group 'Controllability' of register 'DEBUG_ADC_PLL_SENSOR_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL2_Controllability(U16 data);
- /*! \brief Reads the bit group 'Controllability' of register 'DEBUG_ADC_PLL_SENSOR_CTRL2'. */
- U16 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL2_Controllability(void);
- /*! \brief Writes the bit group 'Charge' of register 'DEBUG_ADC_PLL_SENSOR_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL2_Charge(U8 data);
- /*! \brief Reads the bit group 'Charge' of register 'DEBUG_ADC_PLL_SENSOR_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL2_Charge(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_SENSOR_CTRL3 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL3(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- U32 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL3(void);
- /*! \brief Writes the bit group 'VCO' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL3_VCO(U8 data);
- /*! \brief Reads the bit group 'VCO' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL3_VCO(void);
- /*! \brief Writes the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL3_PLL_VCO(U8 data);
- /*! \brief Reads the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL3_PLL_VCO(void);
- /*! \brief Writes the bit group 'Clamp' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL3_Clamp(U8 data);
- /*! \brief Reads the bit group 'Clamp' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL3_Clamp(void);
- /*! \brief Writes the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL3_DSM_dither(U8 data);
- /*! \brief Reads the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL3_DSM_dither(void);
- /*! \brief Writes the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL3_DSM_dither_gain(U8 data);
- /*! \brief Reads the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL3_DSM_dither_gain(void);
- /*! \brief Writes the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL3_Feedforward(U8 data);
- /*! \brief Reads the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL3_Feedforward(void);
- /*! \brief Writes the bit group 'Bias' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL3_Bias(U8 data);
- /*! \brief Reads the bit group 'Bias' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL3_Bias(void);
- /*! \brief Writes the bit group 'JDIV' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_CTRL3_JDIV(U8 data);
- /*! \brief Reads the bit group 'JDIV' of register 'DEBUG_ADC_PLL_SENSOR_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_SENSOR_CTRL3_JDIV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_AUDIO_CTRL2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_AUDIO_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_AUDIO_CTRL2'. */
- U32 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL2(void);
- /*! \brief Writes the bit group 'Controllability' of register 'DEBUG_ADC_PLL_AUDIO_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL2_Controllability(U16 data);
- /*! \brief Reads the bit group 'Controllability' of register 'DEBUG_ADC_PLL_AUDIO_CTRL2'. */
- U16 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL2_Controllability(void);
- /*! \brief Writes the bit group 'Charge' of register 'DEBUG_ADC_PLL_AUDIO_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL2_Charge(U8 data);
- /*! \brief Reads the bit group 'Charge' of register 'DEBUG_ADC_PLL_AUDIO_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL2_Charge(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_AUDIO_CTRL3 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL3(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- U32 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL3(void);
- /*! \brief Writes the bit group 'VCO' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL3_VCO(U8 data);
- /*! \brief Reads the bit group 'VCO' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL3_VCO(void);
- /*! \brief Writes the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL3_PLL_VCO(U8 data);
- /*! \brief Reads the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL3_PLL_VCO(void);
- /*! \brief Writes the bit group 'Clamp' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL3_Clamp(U8 data);
- /*! \brief Reads the bit group 'Clamp' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL3_Clamp(void);
- /*! \brief Writes the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL3_DSM_dither(U8 data);
- /*! \brief Reads the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL3_DSM_dither(void);
- /*! \brief Writes the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL3_DSM_dither_gain(U8 data);
- /*! \brief Reads the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL3_DSM_dither_gain(void);
- /*! \brief Writes the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL3_Feedforward(U8 data);
- /*! \brief Reads the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL3_Feedforward(void);
- /*! \brief Writes the bit group 'Bias' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL3_Bias(U8 data);
- /*! \brief Reads the bit group 'Bias' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL3_Bias(void);
- /*! \brief Writes the bit group 'JDIV' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_CTRL3_JDIV(U8 data);
- /*! \brief Reads the bit group 'JDIV' of register 'DEBUG_ADC_PLL_AUDIO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_AUDIO_CTRL3_JDIV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_VIDEO_CTRL2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_VIDEO_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_VIDEO_CTRL2'. */
- U32 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL2(void);
- /*! \brief Writes the bit group 'Controllability' of register 'DEBUG_ADC_PLL_VIDEO_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL2_Controllability(U16 data);
- /*! \brief Reads the bit group 'Controllability' of register 'DEBUG_ADC_PLL_VIDEO_CTRL2'. */
- U16 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL2_Controllability(void);
- /*! \brief Writes the bit group 'Charge' of register 'DEBUG_ADC_PLL_VIDEO_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL2_Charge(U8 data);
- /*! \brief Reads the bit group 'Charge' of register 'DEBUG_ADC_PLL_VIDEO_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL2_Charge(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_VIDEO_CTRL3 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL3(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- U32 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL3(void);
- /*! \brief Writes the bit group 'VCO' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL3_VCO(U8 data);
- /*! \brief Reads the bit group 'VCO' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL3_VCO(void);
- /*! \brief Writes the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL3_PLL_VCO(U8 data);
- /*! \brief Reads the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL3_PLL_VCO(void);
- /*! \brief Writes the bit group 'Clamp' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL3_Clamp(U8 data);
- /*! \brief Reads the bit group 'Clamp' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL3_Clamp(void);
- /*! \brief Writes the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL3_DSM_dither(U8 data);
- /*! \brief Reads the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL3_DSM_dither(void);
- /*! \brief Writes the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL3_DSM_dither_gain(U8 data);
- /*! \brief Reads the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL3_DSM_dither_gain(void);
- /*! \brief Writes the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL3_Feedforward(U8 data);
- /*! \brief Reads the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL3_Feedforward(void);
- /*! \brief Writes the bit group 'Bias' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL3_Bias(U8 data);
- /*! \brief Reads the bit group 'Bias' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL3_Bias(void);
- /*! \brief Writes the bit group 'JDIV' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_CTRL3_JDIV(U8 data);
- /*! \brief Reads the bit group 'JDIV' of register 'DEBUG_ADC_PLL_VIDEO_CTRL3'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO_CTRL3_JDIV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_VIDEO2_CTRL2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_VIDEO2_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO2_CTRL2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_VIDEO2_CTRL2'. */
- U32 GH_DEBUG_ADC_get_PLL_VIDEO2_CTRL2(void);
- /*! \brief Writes the bit group 'Controllability' of register 'DEBUG_ADC_PLL_VIDEO2_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO2_CTRL2_Controllability(U16 data);
- /*! \brief Reads the bit group 'Controllability' of register 'DEBUG_ADC_PLL_VIDEO2_CTRL2'. */
- U16 GH_DEBUG_ADC_get_PLL_VIDEO2_CTRL2_Controllability(void);
- /*! \brief Writes the bit group 'Charge' of register 'DEBUG_ADC_PLL_VIDEO2_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO2_CTRL2_Charge(U8 data);
- /*! \brief Reads the bit group 'Charge' of register 'DEBUG_ADC_PLL_VIDEO2_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_VIDEO2_CTRL2_Charge(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_USB_CTRL2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_USB_CTRL2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- U32 GH_DEBUG_ADC_get_PLL_USB_CTRL2(void);
- /*! \brief Writes the bit group 'VCO' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_USB_CTRL2_VCO(U8 data);
- /*! \brief Reads the bit group 'VCO' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_USB_CTRL2_VCO(void);
- /*! \brief Writes the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_USB_CTRL2_PLL_VCO(U8 data);
- /*! \brief Reads the bit group 'PLL_VCO' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_USB_CTRL2_PLL_VCO(void);
- /*! \brief Writes the bit group 'Clamp' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_USB_CTRL2_Clamp(U8 data);
- /*! \brief Reads the bit group 'Clamp' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_USB_CTRL2_Clamp(void);
- /*! \brief Writes the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_USB_CTRL2_DSM_dither(U8 data);
- /*! \brief Reads the bit group 'DSM_dither' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_USB_CTRL2_DSM_dither(void);
- /*! \brief Writes the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_USB_CTRL2_DSM_dither_gain(U8 data);
- /*! \brief Reads the bit group 'DSM_dither_gain' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_USB_CTRL2_DSM_dither_gain(void);
- /*! \brief Writes the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_USB_CTRL2_Feedforward(U8 data);
- /*! \brief Reads the bit group 'Feedforward' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_USB_CTRL2_Feedforward(void);
- /*! \brief Writes the bit group 'Bias' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_USB_CTRL2_Bias(U8 data);
- /*! \brief Reads the bit group 'Bias' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_USB_CTRL2_Bias(void);
- /*! \brief Writes the bit group 'JDIV' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- void GH_DEBUG_ADC_set_PLL_USB_CTRL2_JDIV(U8 data);
- /*! \brief Reads the bit group 'JDIV' of register 'DEBUG_ADC_PLL_USB_CTRL2'. */
- U8 GH_DEBUG_ADC_get_PLL_USB_CTRL2_JDIV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CG_DDR_CALIB (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CG_DDR_CALIB'. */
- void GH_DEBUG_ADC_set_CG_DDR_CALIB(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CG_DDR_CALIB'. */
- U32 GH_DEBUG_ADC_get_CG_DDR_CALIB(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_DLL_CTRL_SEL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U32 GH_DEBUG_ADC_get_DLL_CTRL_SEL(void);
- /*! \brief Writes the bit group 'rct_ddrio_dll_sbc' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_dll_sbc(U16 data);
- /*! \brief Reads the bit group 'rct_ddrio_dll_sbc' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U16 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_dll_sbc(void);
- /*! \brief Writes the bit group 'rct_ddrio_dll_selm' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_dll_selm(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_dll_selm' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_dll_selm(void);
- /*! \brief Writes the bit group 'rct_ddrio_single_end' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_single_end(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_single_end' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_single_end(void);
- /*! \brief Writes the bit group 'rct_ddrio_pue_dq' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_pue_dq(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_pue_dq' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_pue_dq(void);
- /*! \brief Writes the bit group 'rct_ddrio_pde_dq' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_pde_dq(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_pde_dq' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_pde_dq(void);
- /*! \brief Writes the bit group 'rct_ddrio_npue_dqs' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_npue_dqs(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_npue_dqs' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_npue_dqs(void);
- /*! \brief Writes the bit group 'rct_ddrio_npde_dqs' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_npde_dqs(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_npde_dqs' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_npde_dqs(void);
- /*! \brief Writes the bit group 'rct_ddrio_ppde_dqs' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_ppde_dqs(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_ppde_dqs' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_ppde_dqs(void);
- /*! \brief Writes the bit group 'rct_ddrio_ppue_dqs' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_ppue_dqs(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_ppue_dqs' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_ppue_dqs(void);
- /*! \brief Writes the bit group 'rct_ddrio_cmosrcv' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_cmosrcv(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_cmosrcv' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_cmosrcv(void);
- /*! \brief Writes the bit group 'rct_ddrio_pue_cmd' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_pue_cmd(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_pue_cmd' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_pue_cmd(void);
- /*! \brief Writes the bit group 'rct_ddrio_pde_cmd' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_pde_cmd(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_pde_cmd' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_pde_cmd(void);
- /*! \brief Writes the bit group 'rct_ddrio_npue_dqs2' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_npue_dqs2(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_npue_dqs2' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_npue_dqs2(void);
- /*! \brief Writes the bit group 'rct_ddrio_npde_dqs2' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_npde_dqs2(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_npde_dqs2' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_npde_dqs2(void);
- /*! \brief Writes the bit group 'rct_ddrio_ppde_dqs2' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_ppde_dqs2(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_ppde_dqs2' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_ppde_dqs2(void);
- /*! \brief Writes the bit group 'rct_ddrio_ppue_dqs2' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- void GH_DEBUG_ADC_set_DLL_CTRL_SEL_rct_ddrio_ppue_dqs2(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_ppue_dqs2' of register 'DEBUG_ADC_DLL_CTRL_SEL'. */
- U8 GH_DEBUG_ADC_get_DLL_CTRL_SEL_rct_ddrio_ppue_dqs2(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_DLL_OCD_BITS (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_DLL_OCD_BITS'. */
- void GH_DEBUG_ADC_set_DLL_OCD_BITS(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_DLL_OCD_BITS'. */
- U32 GH_DEBUG_ADC_get_DLL_OCD_BITS(void);
- /*! \brief Writes the bit group 'rct_ddrio_ddr2' of register 'DEBUG_ADC_DLL_OCD_BITS'. */
- void GH_DEBUG_ADC_set_DLL_OCD_BITS_rct_ddrio_ddr2(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_ddr2' of register 'DEBUG_ADC_DLL_OCD_BITS'. */
- U8 GH_DEBUG_ADC_get_DLL_OCD_BITS_rct_ddrio_ddr2(void);
- /*! \brief Writes the bit group 'rct_ddrio_ocd_cmd' of register 'DEBUG_ADC_DLL_OCD_BITS'. */
- void GH_DEBUG_ADC_set_DLL_OCD_BITS_rct_ddrio_ocd_cmd(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_ocd_cmd' of register 'DEBUG_ADC_DLL_OCD_BITS'. */
- U8 GH_DEBUG_ADC_get_DLL_OCD_BITS_rct_ddrio_ocd_cmd(void);
- /*! \brief Writes the bit group 'rct_ddrio_ocd' of register 'DEBUG_ADC_DLL_OCD_BITS'. */
- void GH_DEBUG_ADC_set_DLL_OCD_BITS_rct_ddrio_ocd(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_ocd' of register 'DEBUG_ADC_DLL_OCD_BITS'. */
- U8 GH_DEBUG_ADC_get_DLL_OCD_BITS_rct_ddrio_ocd(void);
- /*! \brief Writes the bit group 'rct_ddrio_odt' of register 'DEBUG_ADC_DLL_OCD_BITS'. */
- void GH_DEBUG_ADC_set_DLL_OCD_BITS_rct_ddrio_odt(U8 data);
- /*! \brief Reads the bit group 'rct_ddrio_odt' of register 'DEBUG_ADC_DLL_OCD_BITS'. */
- U8 GH_DEBUG_ADC_get_DLL_OCD_BITS_rct_ddrio_odt(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_CORE_OBSV (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_CORE_OBSV'. */
- void GH_DEBUG_ADC_set_PLL_CORE_OBSV(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_CORE_OBSV'. */
- U32 GH_DEBUG_ADC_get_PLL_CORE_OBSV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_IDSP_OBSV (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_IDSP_OBSV'. */
- void GH_DEBUG_ADC_set_PLL_IDSP_OBSV(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_IDSP_OBSV'. */
- U32 GH_DEBUG_ADC_get_PLL_IDSP_OBSV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_DDR_OBSV (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_DDR_OBSV'. */
- void GH_DEBUG_ADC_set_PLL_DDR_OBSV(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_DDR_OBSV'. */
- U32 GH_DEBUG_ADC_get_PLL_DDR_OBSV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_SENSOR_OBSV (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_SENSOR_OBSV'. */
- void GH_DEBUG_ADC_set_PLL_SENSOR_OBSV(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_SENSOR_OBSV'. */
- U32 GH_DEBUG_ADC_get_PLL_SENSOR_OBSV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_AUDIO_OBSV (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_AUDIO_OBSV'. */
- void GH_DEBUG_ADC_set_PLL_AUDIO_OBSV(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_AUDIO_OBSV'. */
- U32 GH_DEBUG_ADC_get_PLL_AUDIO_OBSV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_VIDEO_OBSV (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_VIDEO_OBSV'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO_OBSV(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_VIDEO_OBSV'. */
- U32 GH_DEBUG_ADC_get_PLL_VIDEO_OBSV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_PLL_VIDEO2_OBSV (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_PLL_VIDEO2_OBSV'. */
- void GH_DEBUG_ADC_set_PLL_VIDEO2_OBSV(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_PLL_VIDEO2_OBSV'. */
- U32 GH_DEBUG_ADC_get_PLL_VIDEO2_OBSV(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_ADC16_CTRL_ADDR (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_ADC16_CTRL_ADDR'. */
- void GH_DEBUG_ADC_set_ADC16_CTRL_ADDR(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_ADC16_CTRL_ADDR'. */
- U32 GH_DEBUG_ADC_get_ADC16_CTRL_ADDR(void);
- /*! \brief Writes the bit group 'adc_power_down' of register 'DEBUG_ADC_ADC16_CTRL_ADDR'. */
- void GH_DEBUG_ADC_set_ADC16_CTRL_ADDR_adc_power_down(U8 data);
- /*! \brief Reads the bit group 'adc_power_down' of register 'DEBUG_ADC_ADC16_CTRL_ADDR'. */
- U8 GH_DEBUG_ADC_get_ADC16_CTRL_ADDR_adc_power_down(void);
- /*! \brief Writes the bit group 'adc_clock_select' of register 'DEBUG_ADC_ADC16_CTRL_ADDR'. */
- void GH_DEBUG_ADC_set_ADC16_CTRL_ADDR_adc_clock_select(U8 data);
- /*! \brief Reads the bit group 'adc_clock_select' of register 'DEBUG_ADC_ADC16_CTRL_ADDR'. */
- U8 GH_DEBUG_ADC_get_ADC16_CTRL_ADDR_adc_clock_select(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CLK_REF_SSI_ADDR (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CLK_REF_SSI_ADDR'. */
- void GH_DEBUG_ADC_set_CLK_REF_SSI_ADDR(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CLK_REF_SSI_ADDR'. */
- U32 GH_DEBUG_ADC_get_CLK_REF_SSI_ADDR(void);
- /*! \brief Writes the bit group 'clk' of register 'DEBUG_ADC_CLK_REF_SSI_ADDR'. */
- void GH_DEBUG_ADC_set_CLK_REF_SSI_ADDR_clk(U8 data);
- /*! \brief Reads the bit group 'clk' of register 'DEBUG_ADC_CLK_REF_SSI_ADDR'. */
- U8 GH_DEBUG_ADC_get_CLK_REF_SSI_ADDR_clk(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CG_DVEN (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CG_DVEN'. */
- void GH_DEBUG_ADC_set_CG_DVEN(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CG_DVEN'. */
- U32 GH_DEBUG_ADC_get_CG_DVEN(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_MS (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_MS'. */
- void GH_DEBUG_ADC_set_SCALER_MS(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_MS'. */
- U32 GH_DEBUG_ADC_get_SCALER_MS(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_MS_DELAY_CTRL (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_MS_DELAY_CTRL'. */
- void GH_DEBUG_ADC_set_MS_DELAY_CTRL(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_MS_DELAY_CTRL'. */
- U32 GH_DEBUG_ADC_get_MS_DELAY_CTRL(void);
- /*! \brief Writes the bit group 'delay_sclk' of register 'DEBUG_ADC_MS_DELAY_CTRL'. */
- void GH_DEBUG_ADC_set_MS_DELAY_CTRL_delay_sclk(U8 data);
- /*! \brief Reads the bit group 'delay_sclk' of register 'DEBUG_ADC_MS_DELAY_CTRL'. */
- U8 GH_DEBUG_ADC_get_MS_DELAY_CTRL_delay_sclk(void);
- /*! \brief Writes the bit group 'input_delay' of register 'DEBUG_ADC_MS_DELAY_CTRL'. */
- void GH_DEBUG_ADC_set_MS_DELAY_CTRL_input_delay(U8 data);
- /*! \brief Reads the bit group 'input_delay' of register 'DEBUG_ADC_MS_DELAY_CTRL'. */
- U8 GH_DEBUG_ADC_get_MS_DELAY_CTRL_input_delay(void);
- /*! \brief Writes the bit group 'output_delay' of register 'DEBUG_ADC_MS_DELAY_CTRL'. */
- void GH_DEBUG_ADC_set_MS_DELAY_CTRL_output_delay(U8 data);
- /*! \brief Reads the bit group 'output_delay' of register 'DEBUG_ADC_MS_DELAY_CTRL'. */
- U8 GH_DEBUG_ADC_get_MS_DELAY_CTRL_output_delay(void);
- /*! \brief Writes the bit group 'timing' of register 'DEBUG_ADC_MS_DELAY_CTRL'. */
- void GH_DEBUG_ADC_set_MS_DELAY_CTRL_timing(U8 data);
- /*! \brief Reads the bit group 'timing' of register 'DEBUG_ADC_MS_DELAY_CTRL'. */
- U8 GH_DEBUG_ADC_get_MS_DELAY_CTRL_timing(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_USE_COMMON_VO_CLOCK (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_USE_COMMON_VO_CLOCK'. */
- void GH_DEBUG_ADC_set_USE_COMMON_VO_CLOCK(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_USE_COMMON_VO_CLOCK'. */
- U32 GH_DEBUG_ADC_get_USE_COMMON_VO_CLOCK(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CLOCK_OBSV_ADDR (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CLOCK_OBSV_ADDR'. */
- void GH_DEBUG_ADC_set_CLOCK_OBSV_ADDR(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CLOCK_OBSV_ADDR'. */
- U32 GH_DEBUG_ADC_get_CLOCK_OBSV_ADDR(void);
- /*! \brief Writes the bit group 'pll' of register 'DEBUG_ADC_CLOCK_OBSV_ADDR'. */
- void GH_DEBUG_ADC_set_CLOCK_OBSV_ADDR_pll(U8 data);
- /*! \brief Reads the bit group 'pll' of register 'DEBUG_ADC_CLOCK_OBSV_ADDR'. */
- U8 GH_DEBUG_ADC_get_CLOCK_OBSV_ADDR_pll(void);
- /*! \brief Writes the bit group 'observation' of register 'DEBUG_ADC_CLOCK_OBSV_ADDR'. */
- void GH_DEBUG_ADC_set_CLOCK_OBSV_ADDR_observation(U8 data);
- /*! \brief Reads the bit group 'observation' of register 'DEBUG_ADC_CLOCK_OBSV_ADDR'. */
- U8 GH_DEBUG_ADC_get_CLOCK_OBSV_ADDR_observation(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_DISABLE_EXT_BYPASS (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_DISABLE_EXT_BYPASS'. */
- void GH_DEBUG_ADC_set_DISABLE_EXT_BYPASS(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_DISABLE_EXT_BYPASS'. */
- U32 GH_DEBUG_ADC_get_DISABLE_EXT_BYPASS(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_ARM_SYNC_LOCK (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_ARM_SYNC_LOCK'. */
- void GH_DEBUG_ADC_set_ARM_SYNC_LOCK(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_ARM_SYNC_LOCK'. */
- U32 GH_DEBUG_ADC_get_ARM_SYNC_LOCK(void);
- /*! \brief Writes the bit group 'mode' of register 'DEBUG_ADC_ARM_SYNC_LOCK'. */
- void GH_DEBUG_ADC_set_ARM_SYNC_LOCK_mode(U8 data);
- /*! \brief Reads the bit group 'mode' of register 'DEBUG_ADC_ARM_SYNC_LOCK'. */
- U8 GH_DEBUG_ADC_get_ARM_SYNC_LOCK_mode(void);
- /*! \brief Writes the bit group 'reset' of register 'DEBUG_ADC_ARM_SYNC_LOCK'. */
- void GH_DEBUG_ADC_set_ARM_SYNC_LOCK_reset(U8 data);
- /*! \brief Reads the bit group 'reset' of register 'DEBUG_ADC_ARM_SYNC_LOCK'. */
- U8 GH_DEBUG_ADC_get_ARM_SYNC_LOCK_reset(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_ARM_SYNC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_ARM_SYNC'. */
- void GH_DEBUG_ADC_set_SCALER_ARM_SYNC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_ARM_SYNC'. */
- U32 GH_DEBUG_ADC_get_SCALER_ARM_SYNC(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_ARM_ASYNC (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_ARM_ASYNC'. */
- void GH_DEBUG_ADC_set_SCALER_ARM_ASYNC(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_ARM_ASYNC'. */
- U32 GH_DEBUG_ADC_get_SCALER_ARM_ASYNC(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_ARM_ASYNC'. */
- void GH_DEBUG_ADC_set_SCALER_ARM_ASYNC_Div(U8 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_ARM_ASYNC'. */
- U8 GH_DEBUG_ADC_get_SCALER_ARM_ASYNC_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_SCALER_IDSP_POST (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_SCALER_IDSP_POST'. */
- void GH_DEBUG_ADC_set_SCALER_IDSP_POST(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_SCALER_IDSP_POST'. */
- U32 GH_DEBUG_ADC_get_SCALER_IDSP_POST(void);
- /*! \brief Writes the bit group 'Div' of register 'DEBUG_ADC_SCALER_IDSP_POST'. */
- void GH_DEBUG_ADC_set_SCALER_IDSP_POST_Div(U8 data);
- /*! \brief Reads the bit group 'Div' of register 'DEBUG_ADC_SCALER_IDSP_POST'. */
- U8 GH_DEBUG_ADC_get_SCALER_IDSP_POST_Div(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_OCTRL_GPIO (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_OCTRL_GPIO'. */
- void GH_DEBUG_ADC_set_OCTRL_GPIO(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_OCTRL_GPIO'. */
- U32 GH_DEBUG_ADC_get_OCTRL_GPIO(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_IOCTRL_MISC1 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_IOCTRL_MISC1'. */
- void GH_DEBUG_ADC_set_IOCTRL_MISC1(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_IOCTRL_MISC1'. */
- U32 GH_DEBUG_ADC_get_IOCTRL_MISC1(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_OCTRL_MISC2 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_OCTRL_MISC2'. */
- void GH_DEBUG_ADC_set_OCTRL_MISC2(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_OCTRL_MISC2'. */
- U32 GH_DEBUG_ADC_get_OCTRL_MISC2(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_IOCTRL_SD (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_IOCTRL_SD'. */
- void GH_DEBUG_ADC_set_IOCTRL_SD(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_IOCTRL_SD'. */
- U32 GH_DEBUG_ADC_get_IOCTRL_SD(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_IOCTRL_SMIO (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_IOCTRL_SMIO'. */
- void GH_DEBUG_ADC_set_IOCTRL_SMIO(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_IOCTRL_SMIO'. */
- U32 GH_DEBUG_ADC_get_IOCTRL_SMIO(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_IOCTRL_VD0 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_IOCTRL_VD0'. */
- void GH_DEBUG_ADC_set_IOCTRL_VD0(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_IOCTRL_VD0'. */
- U32 GH_DEBUG_ADC_get_IOCTRL_VD0(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_IOCTRL_VD1 (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_IOCTRL_VD1'. */
- void GH_DEBUG_ADC_set_IOCTRL_VD1(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_IOCTRL_VD1'. */
- U32 GH_DEBUG_ADC_get_IOCTRL_VD1(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_IOCTRL_SENSOR (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_IOCTRL_SENSOR'. */
- void GH_DEBUG_ADC_set_IOCTRL_SENSOR(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_IOCTRL_SENSOR'. */
- U32 GH_DEBUG_ADC_get_IOCTRL_SENSOR(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_AHB_MISC_EN (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_AHB_MISC_EN'. */
- void GH_DEBUG_ADC_set_AHB_MISC_EN(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_AHB_MISC_EN'. */
- U32 GH_DEBUG_ADC_get_AHB_MISC_EN(void);
- /*! \brief Writes the bit group 'rct_ahb' of register 'DEBUG_ADC_AHB_MISC_EN'. */
- void GH_DEBUG_ADC_set_AHB_MISC_EN_rct_ahb(U8 data);
- /*! \brief Reads the bit group 'rct_ahb' of register 'DEBUG_ADC_AHB_MISC_EN'. */
- U8 GH_DEBUG_ADC_get_AHB_MISC_EN_rct_ahb(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CG_DDR_INIT (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CG_DDR_INIT'. */
- void GH_DEBUG_ADC_set_CG_DDR_INIT(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CG_DDR_INIT'. */
- U32 GH_DEBUG_ADC_get_CG_DDR_INIT(void);
- /*! \brief Writes the bit group 'Divide' of register 'DEBUG_ADC_CG_DDR_INIT'. */
- void GH_DEBUG_ADC_set_CG_DDR_INIT_Divide(U8 data);
- /*! \brief Reads the bit group 'Divide' of register 'DEBUG_ADC_CG_DDR_INIT'. */
- U8 GH_DEBUG_ADC_get_CG_DDR_INIT_Divide(void);
- /*! \brief Writes the bit group 'en' of register 'DEBUG_ADC_CG_DDR_INIT'. */
- void GH_DEBUG_ADC_set_CG_DDR_INIT_en(U8 data);
- /*! \brief Reads the bit group 'en' of register 'DEBUG_ADC_CG_DDR_INIT'. */
- U8 GH_DEBUG_ADC_get_CG_DDR_INIT_en(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_DDR_DIV_RST (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_DDR_DIV_RST'. */
- void GH_DEBUG_ADC_set_DDR_DIV_RST(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_DDR_DIV_RST'. */
- U32 GH_DEBUG_ADC_get_DDR_DIV_RST(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_DDRC_IDSP_RESET (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_DDRC_IDSP_RESET'. */
- void GH_DEBUG_ADC_set_DDRC_IDSP_RESET(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_DDRC_IDSP_RESET'. */
- U32 GH_DEBUG_ADC_get_DDRC_IDSP_RESET(void);
- /*! \brief Writes the bit group 'ddrc' of register 'DEBUG_ADC_DDRC_IDSP_RESET'. */
- void GH_DEBUG_ADC_set_DDRC_IDSP_RESET_ddrc(U8 data);
- /*! \brief Reads the bit group 'ddrc' of register 'DEBUG_ADC_DDRC_IDSP_RESET'. */
- U8 GH_DEBUG_ADC_get_DDRC_IDSP_RESET_ddrc(void);
- /*! \brief Writes the bit group 'idsp' of register 'DEBUG_ADC_DDRC_IDSP_RESET'. */
- void GH_DEBUG_ADC_set_DDRC_IDSP_RESET_idsp(U8 data);
- /*! \brief Reads the bit group 'idsp' of register 'DEBUG_ADC_DDRC_IDSP_RESET'. */
- U8 GH_DEBUG_ADC_get_DDRC_IDSP_RESET_idsp(void);
- /*----------------------------------------------------------------------------*/
- /* register DEBUG_ADC_CKEN_IDSP (read/write) */
- /*----------------------------------------------------------------------------*/
- /*! \brief Writes the register 'DEBUG_ADC_CKEN_IDSP'. */
- void GH_DEBUG_ADC_set_CKEN_IDSP(U32 data);
- /*! \brief Reads the register 'DEBUG_ADC_CKEN_IDSP'. */
- U32 GH_DEBUG_ADC_get_CKEN_IDSP(void);
- /*----------------------------------------------------------------------------*/
- /* init function */
- /*----------------------------------------------------------------------------*/
- /*! \brief Initialises the registers and mirror variables. */
- void GH_DEBUG_ADC_init(void);
- #ifdef SRC_INLINE
- #define SRC_INC 1
- #include "gh_debug_adc.c"
- #undef SRC_INC
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif /* _GH_DEBUG_ADC_H */
- /*----------------------------------------------------------------------------*/
- /* end of file */
- /*----------------------------------------------------------------------------*/
|