-
Notifications
You must be signed in to change notification settings - Fork 5
/
cmdlist-sv.txt
1893 lines (1893 loc) · 64.2 KB
/
cmdlist-sv.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
cd :Change current directory
do :Repeat command
a :Add/Show current alias
ls :Recursive list all commands
r :Memory read(word)
w :Memory write(word)
cust :Get customer name
l :Turn on/off linux mode
; :Line comment
b.mc :Memory copy
b.ms :Memory set
b.msb :Memory set(byte)
b.mord :Memory order set, Ex: mord [addr] [bunit] [len] [step] [init val]
b.mcmp :Memory comparision, Ex: mcmp [addr1] [addr2] [byte-len]
b.mdmp :Memory dump, Ex: mord [addr] [bytelen]
b.stop :Stop RS232 transparent mode
b.sv :System mode detection
b.ver :System version/build date
b.reboot :System reboot/restart
b.cp :open loop, calpll [ps] [clock Hz]
b.gpc :gpc [#|if|cpu|sys|apll1|apll2|adc|usb|hdmi|pix|dm|vo|mem|bus]
b.vco :vco [#|cpu|sys|apll1|apll2|adc|eth|ethnet|sawless ]
b.slp :sleep [micro seconds]
b.sc :sc [0|4|8|16], set I/D cache as 4/8/16 KB, 0 is disabled.
b.bt :bt
b.cpi :cpi [period seconds]
b.swd :swd [0|1]
b.so :Memory protect on/off, Watchdog on/off, Pseudo watchdog assert on/off, release reboot on/off.
b.chipid :print chip id
b.jtag :Select JTAG input
b.scm
b.dtvall :user thread stackframe dump for all dtv_svc threads
b.ds :user thread stackframe dump for single thread in detail
b.da :all thread dump in kernel
0.et :Enter RS232 transparent mode
0.ft :Set RS232 factory mode
0.st :Stop RS232 transparent mode
0.lc :Show Log Counter
0.lcr :Reset Log Counter
osd.i :Init osd driver
osd.q :Dump osd info
osd.a :Adjust OSD start position
osd.sll :Set OSD LOG level
osd.gll :Get OSD LOG level
osd.sd :set osd dbg info
osd.gd :get osd dbg info
osd.logo :Show logo
osd.d_on :OSD.d_on
osd.d_off :OSD.d_off
osd.d_l :OSD.d_l
osd.p.res :Reset plane
osd.p.en :Set/get plane enable flag
osd.p.flp :Flip region list to a plane
osd.p.afa :Set/get global blending alpha value
osd.p.fa :Set/get fading blending value
osd.p.pm :Enable pre-multiplied alpha format
osd.p.c :Replace bitmap data to particular color
osd.p.reg :Dump plane register
osd.p.info :Dump plane detail info
osd.p.pt :Show Plane pattern
osd.p.dbm :Dump plane bitmap data to file
osd.p.dibm :Dump bitmap into plane data address from file
osd.p.hf :Enable HFilter
osd.p.vf :Enable VFilter
osd.p.ff :Configure fifo
osd.l.cr :Create region list
osd.l.ls :List region list
osd.l.dump :Dump all in list
osd.l.del :Delete region list
osd.l.det :Detach region(s) from list
osd.r.n :Allocate new region
osd.r.ins :Insert region into list
osd.r.del :Delete region from list
osd.r.s :Set region property
osd.r.pt :Draw region pattern
osd.sc.s :Scale OSD plane
osd.sc.pt :Scaler pattern
osd.sc.apt :Scaler alpha pattern
osd.sc.l :Set low pass filter
pmx.i :init
pmx.e :enable/disable LVDS
pmx.p :enable/disable test pattern
pmx.pc :enable/disable test multi pattern
pmx.ostgpt :ostg paten
pmx.l :show panel list
pmx.q :dump pmx(scpos) info
pmx.d_on :PMX.d_on
pmx.d_off :PMX.d_off
pmx.d_l :PMX.d_l
pmx.s.bg :background color
pmx.s.po :plane order
pmx.s.poa :plane order array
pmx.s.pma :plane mix alpha
pmx.s.bl :backlight
pmx.s.d :lvds driving current
pmx.s.vcm :lvds common voltage
pmx.s.s :lvds spread spectrum
pmx.s.p :panel resolution
pmx.s.di :panel driver init
pmx.s.ps :adjust power sequence
pmx.s.ns :NS lvds format
pmx.s.jeida :JEIDA lvds format
pmx.s.sns :Special NS lvds format
pmx.s.10bit :switch LVDS to 10bit
pmx.s.swap :even odd channel swap
pmx.s.osdumpen :Enable OutputStage Dump
pmx.s.ffr :Nptv force frame rate
pmx.s.fr :Nptv force free run
pmx.s.boo :OSTG border
pmx.s.bc :OSTG border color
pmx.s.bparam :OSTG border position
pmx.s.pim :Set Panel interface allowed mask
pmx.s.ATERM_ATVO :PmxLVDS_ATERM_ATVO_Setting
pmx.s.ATERM_ATVO_Restore :PmxLVDS_ATERM_ATVO_Restore
pmx.s.ATVO_Set :PmxLVDS_ATVO_Set
pmx.s.APSRC_Set :PmxLVDS_APSRC_Set
pmx.s.ANSRC_Set :PmxLVDS_ANSRC_Set
pmx.s.PADPD_Set :PmxLVDS_PADPD_Set
pmx.s.RESET_Set :PmxLVDS_RESET_Set
pmx.s.VCOPhase_SEL :PmxDrvVCOPhase_SEL
pmx.s.DDDSFreeRun :PmxSET_DDDSFreeRun
pmx.s.dddsel :PmxSET_DDDSErrorLimit
pmx.s.ctlw :Set control word
pmx.s.ctlw2 :Set control word2
pmx.s.scanpwm :Set scanning pwm
pmx.s.scanpwms :Get scanning status
pmx.s.scanstep :Set scanning step control
pmx.s.scantarget :Set scanning step target
pmx.s.scandl :Set scanning debug log level
pmx.s.ESDfg :ESDProtectflag
pmx.ps.q :query post scaler status
pmx.ps.ht :hsync scaler timing test
pmx.ps.vt :vsync scaler timing test
pmx.ps.st :set data trigger
pmx.d.dump :dump scpos
pmx.od.i :OD initial
pmx.od.on :OD enable
pmx.od.pcidon :PCID enable
pmx.od.idx :OD index
pmx.od.bypass :OD bypass
pmx.od.q :OD query status
pmx.od.oreset :OD overflow reset
pmx.od.oget :OD overflow get
pmx.od.chk :OD check
pmx.od.st :OD stress test
pmx.od.reset :OD reset test
pmx.od.sel :OD table select
pmx.od.dma :OD DMA
pmx.od.lcod :Set Local OD
pmx.vopll.s :vopll status
pmx.vopll.xtal :vopll source from xtal
pmx.vopll.freq :set vopll frequency
pmx.vopll.calel :calculate error limit
pmx.vopll.vtrl :VOPLL VCO monitor out
pmx.vopll.tm :VOPLL Test Mode with SS
pmx.vopll.at :VOPLL Analog test
pmx.dvopll.s :dvopll status
pmx.dvopll.chk :dvopll check
pmx.dvopll.scan :dvopll scan lock region
pmx.if.crc :LVDS TX crc
pmx.if.dpen :LVDS digital pad on/off
pmx.if.apen :LVDS analog pad on/off
pmx.if.sgroup :LVDS set group
pmx.if.agroup :LVDS switch group auto
pmx.if.cc :Check DE and Clcok with LVDS cable
pmx.if.lineb :6 line buffer bypass or enable
pmx.if.hvq :h/vsync encode query
pmx.if.hvset :h/vsync encode value set
pmx.if.disprq :DISP_R status query
pmx.if.dispren :DISP_R encode enable
pmx.if.glactr :glasses control
pmx.if.glarst :glasses reset mode control
pmx.if.gladuty :glasses duty control
pmx.if.glaen :glasses enable control
pmx.if.isc :Inverter sync control
pmx.if.isd :Inverter sync delay control
pmx.if.pwmi :Scan_PWN Initail
pmx.if.pwmen :Scan_PWN Enable
pmx.if.pwmset :Scan_PWN Set
pmx.if.pwmat :Scan_PWN Auto Test
pmx.intr.q :interrupt status query
pmx.intr.s :interrupt setting
pmx.vb1.script :V By One Script
pmx.vb1.crc :V By One CRC Check
pmx.vb1.cal :V By One Impendance Calibration
pmx.vb1.p :Set Panel vb1 flag
pmx.vb1.tm :Set Test Mode
pmx.vb1.s :Get VB1 status
pmx.vb1.chk :Get VB1 status
pmx.vb1.cnt :Get VB1 status
pmx.vb1.on :Set VB1 on
pmx.vb1.off :Set VB1 on
pmx.vb1.swapt :VByOne swap for test
pmx.vb1.sap :VByOne analog single pad enable
pmx.vb1.vbw :VByOne VPLL bandwidth set
pmx.vb1.preoo :Pre-emphasis on/off
pmx.vb1.pre :Pre-emphasis setting
pmx.vb1.inx :INX VB1 I2C cmd
pmx.vb1.prst :PLL RST cmd
pmx.vb1.ys :OSD_YS enable
pmx.vb1.thre :OSD_YS threshold
pmx.vb1.sect :2/4/8_Section test
pmx.vb1.lockn :LOCKN control
pmx.graph.crc :GraphMode_CRC_chk
pmx.graph.on :GraphMode_On
pmx.graph.off :GraphMode_Off
pmx.graph.q :GraphMode_Table_query
pmx.graph.gm :GraphMode Resolution setting
pmx.graph.s :GraphMode_UHD query
pmx.graph.m :GraphMode_UHD_Mode_setting
pmx.graph.f :GraphMode_Mode_format
pmx.graph.lockn :LOCKN_OSD control
pmx.u.s :uhd status query
pmx.u.p :uhd panel setting
pmx.pll.s :PLL freqence status
pmx.pll.tm :PLL VCO control voltage
sif.i :Sif init
sif.diag :Sif diagnostic
sif.r :Sif read
sif.w :Sif write
sif.wb :Sif write byte
sif.sr :Sif S/W Read
sif.sw :Sif S/W Write
sif.sr0 :Sif S/W Read(0-SubAddr)
sif.sw0 :Sif S/W Write(0-SubAddr)
sif.prom :Sif write PROM SRAM default value
sif.pram :Sif write PRAM SRAM default value
sif.hdcp1x :Sif write PRAM SRAM default value
sif.hdcp2x :Sif wirte HDCP2x rx key value
sif.rhdcp1x :Sif write PRAM SRAM default value
sif.rhdcp2x :Sif wirte HDCP2x rx key value
sif.hdcpdump :Dump HDCP PROM/PRAM
sif.hdcp :Sif write HDCP SRAM default value
sif.mhdcp2x_key_eeprom :write wfd hdcp2.x key into eeprom
sif.mhdcp2x_key_tz :use wfd hdcp2.x key in tz
sif.mhdcp2x_key_test :config wfd hdcp2.x key type
sif.vgaedid :Sif write Vga edid and read to SRAM default value
sif.rvgae :Sif read vga edid from SRAM
sif.internaledid :Sif write built-in HDMI edid and set to internal SRAM
sif.edid3D :Sif write built-in HDMI 3D edid and set to internal SRAM
sif.edid4k2k30 :Sif write built-in HDMI 4K2K30 edid and set to internal SRAM for HDMI1.4 Port
sif.edid14 :Sif write built-in HDMI 1.4 edid and set to internal SRAM
sif.edid2 :Sif write built-in HDMI 4K2K edid and set to internal SRAM
sif.redid2 :Sif read HDMI2.0 edid
sif.redid2ram :Sif read HDMI2.0 SRAM edid
sif.edidmhl :Sif write built-in HDMI 4K2K edid and set to internal SRAM
sif.redidmhlsram :Sif write built-in HDMI 4K2K edid and set to internal SRAM
sif.wbhdcp :Sif write byte to HDCP
sif.rbhdcp :Sif read byte from HDCP
sif.wah :Sif write all 320 bytes to HDCP
sif.rah :Sif read all 320 bytes from HDCP
sif.edid :Sif write EDID default value
sif.redid :Sif read EDID
sif.edid1 :Sif write EDID port 1 default value
sif.edid2 :Sif write EDID port 2 default value
sif.edid3 :Sif write EDID port 3 default value
sif.redid1 :Sif read EDID port 1
sif.redid2 :Sif read EDID port 2
sif.redid3 :Sif read EDID port 3
sif.redidram :READ EDID RAM
sif.wae :Sif write all 256 bytes to EDID
sif.rae :Sif read all 256 bytes from EDID
sif.tr :Tuner I2C No-sub-addr read
sif.tw :Tuner I2C No-sub-addr write
sif.mr :Multiple sub-addr I2C read
sif.mw :Multiple sub-addr I2C write
sif.s :Scan all SIF Buses
sif.xr :fully functional sif read
sif.xw :fully functional sif write
sif.xmr :fully functional sif Multi bus Read
sif.sclst :SCL test
sif.sclstress :SCL stress test
sif.scleep :SCL test via EEPROM access
sif.edidrb :edid read byte
sif.m :Montor CLI
sif.d_on :SIF.d_on
sif.d_off :SIF.d_off
sif.d_l :SIF.d_l
pwm.sf :PWM
pwm.gf :PWM
pwm.sd :PWM
pwm.gd :PWM
pwm.s :PWM
pwm.ms :PWM
pwm.div :PWM
pwm.d_on :PWM.d_on
pwm.d_off :PWM.d_off
pwm.d_l :PWM.d_l
eeprom.r :eeprom.r [eeprom-offset] [memptr] [memlen]
eeprom.w :eeprom.w [eeprom-offset] [memptr] [memlen]
eeprom.rb :eeprom.rb [eeprom-offset]
eeprom.wb :eeprom.wb [eeprom-offset] [byteval]
eeprom.id :eeprom.id
eeprom.bw :eeprom.bw
eeprom.dump :eeprom.dump
eeprom.setcfg :eeprom.setcfg
eeprom.uw :Get data from Uart and write to eeprom.
eeprom.m :eeprom.m [loopcnt] for stress test
eeprom.tzrt :eeprom.tzread test
eeprom.tzwt :eeprom.tzwrite test
eeprom.tzst :eeprom.tzstress test
eeprom.d_on :EEPROM.d_on
eeprom.d_off :EEPROM.d_off
eeprom.d_l :EEPROM.d_l
eeprom.l.l :eeprom.layout.l
nim.id :Set Tuner ID
nim.ver :Tuner version
nim.hc :Tuner Host Command
nim.dl :Set Debug Level
nim.go :Start Nim
nim.freq :Freq Set
nim.sc :Nim set cable parameters
nim.gclv :Nim get cable signal level
nim.gclk :Nim get cable lock status
nim.dm :Nim Detach MW
nim.dtd :Nim dtd
nim.atd :Nim atd
nim.gettsfmt :Get Ts format
nim.settssp :Set Ts serial/prallel
nim.settstristate :Set Ts tristate
nim.st :Set Tuner by Control-Word
nim.gt :Get Tuner register value
nim.gtEx :Get Tuner Reg-Val with register address
nim.s :Scan all Tuner device
nim.rs :Range search
nim.sr :Set R-Setting Value
nim.da :Disconnect Acq in Demod side
nim.up :Channel Up
nim.down :Channel Down
nim.ch :Channel Set
nim.i :Nim init
nim.o :Nim open
nim.c :Nim close
nim.sbw :Nim set BW
nim.asbw :Nim Adv set BW
nim.gcsc :Nim get cable signal parameter
nim.dei2c :Detach Tuner I2C
nim.sctype :Set Conn Type
nim.sm :Set mod
nim.sft :Set fine tune
nim.sbsc :Set dvbs blind scan continue
nim.sbss :Set dvbs blind scan stop
nim.sct :Set Connect Type
ir.d_on :IR.d_on
ir.d_off :IR.d_off
ir.d_l :IR.d_l
ir.mtrc_dbg :dbg_mtrc [debug flag] - set mtrc debug log enable/disable
ir.lpt :lpt [ms] - set long press timeout
ir.pto :pto [ms] - set ir button up polling timeout
ir.rx.list :ir.rx.list - list Ir key id value
ir.rx.send :ir.rx.send [KeyId] - send key id into ir key queue
ir.rx.init :ir.rx.init -c [conf] -s [sap] -t [thld]
ir.rx.stop :ir.rx.stop
ir.rx.pl :ir.rx.printlog - print irrc log buffer history
ir.rx.rl :ir.rx.resetlog - reset irrc log buffer history
ir.rx.irrc :ir.rx.irrc - key record
rtc.d_on :RTC.d_on
rtc.d_off :RTC.d_off
rtc.d_l :RTC.d_l
rtc.i :
rtc.st :
rtc.gt :
rtc.sa :
rtc.sw :
rtc.ga :
aud.i :Aud init
aud.d_on :AUD.d_on
aud.d_off :AUD.d_off
aud.d_l :AUD.d_l
aud.s :Aud set decoding type
aud.resume :Aud resume
aud.pause :Aud pause
aud.play :Aud play
aud.stop :Aud stop
aud.dual :dual
aud.tridec :tri_dec
aud.sync :Aud sync mode setting
aud.str :Playback stream src
aud.q :Audio status query
aud.pll1 :Aud Pll1 setting
aud.pll2 :Aud Pll2 setting
aud.pllpd :Aud Pll PoweDown
aud.ip :Check if audio decoder is playing
aud.pd :Set Parser debug flag
aud.sb :Watch sound bar register
aud.setdelay :Set Vdep Delay Tbl
aud.speed :mm playback speed test
aud.dx :debug setvolumeX
aud.praq :print AQ varible
aud.prvc :print volume cur
aud.qb :query all audio buffer
aud.m.v :Mixsound Volume control
aud.m.l :Mixsound Loop control
aud.m.q :Mixsound status query
aud.m.flag :Mixsound flag
aud.m.p :Mixsound playback
aud.m.str :Select clip source
aud.m.dec3 :Mixsound from Dec3
aud.m.ch :Set Mixsound channel
aud.mclip.init :Audio Mixsound Clip Init
aud.mclip.set :Audio Mixsound Clip Set
aud.mclip.play :Audio Mixsound Clip Play
aud.mclip.stop :Audio Mixsound Clip Stop
aud.mclip.pause :Audio Mixsound Clip Pause
aud.mclip.resume :Audio Mixsound Clip Resume
aud.mclip.repeat :Audio Mixsound Clip Repeat
aud.mclip.q :Audio Mixsound Clip Query
aud.mclip.qdsp :Audio Mixsound Clip Query(DSP)
aud.mclip.ct :Audio Mixsound Clip mixer path tone test
aud.mclip.clr :Audio MixSound Clip Clear
aud.mclip.mute :Audio MixSound Clip Mute
aud.mclip.gain :Audio MixSound Clip SetGain
aud.mclip.mda :Allocate memory for MixSnd Dump
aud.mclip.mdr :Reset MixSnd Dump
aud.mclip.mds :Set MixSnd Dump Location
aud.mclip.tm :tunnel fmt and mode
aud.mclip.tc :tunnel command
aud.dsp.p :get AFIFO read/write pointer cmd ex. ptr
aud.dsp.i :adsp task init ex. init
aud.dsp.pc :Get dsp pc ex. pc
aud.dsp.r :Read DSP sram ex. reads [addr]
aud.dsp.w :Write DSP sram ex. write [addr] [data]
aud.dsp.rpts :update read ptr ex.rpts [DecId] [Addr]
aud.dsp.sp :set error log period ex.sp [second]
aud.dsp.sh :read dsp share memory ex.sh [group]
aud.dsp.cm :read dsp common memory ex.cm [addr] [length]
aud.dsp.cmw :write dsp common memory ex.cm [addr] [value]
aud.dsp.norm :read dsp normal dram
aud.dsp.cmpt :read dsp compact dram
aud.dsp.q :query dsp status
aud.dsp.shw :write dsp share memory ex.sh [group][addr][val][size]
aud.dsp.c :dump channel ouput data
aud.dsp.stcbd :set stc difference bound
aud.dsp.qmts :query mts status
aud.dsp.qvobs :query vorbis status
aud.dsp.pb :pcm pre-buffer
aud.dsp.cache :DSP cache hit rate
aud.dsp.id :ROM ID
aud.dsp.qm :Query DSP Memory
aud.dsp.v :DSP Version Display
aud.dsp.pat :Pattern Test
aud.dsp.patauto :Pattern Auto
aud.dsp.pats :Pattern Single
aud.dsp.qdly :Query Channel Delay
aud.dsp.dinfo :DEBUG INFO ~~
aud.dsp.cap :Get DSP supported decoding format
aud.dsp.int :Dump Interrupt History
aud.dsp.pr.p :Probe: Pause
aud.dsp.pr.st :Probe: Step
aud.dsp.pr.g :Probe: Go
aud.dsp.pr.r :Probe: Read
aud.dsp.pr.w :Probe: Write
aud.dsp.pr.sr :Probe: Show Registers
aud.dsp.pr.stb :Probe: Setup BreakPoints
aud.dsp.pr.sb :Probe: Show BreakPoints
aud.dsp.pr.sw :Probe: Stop on Write
aud.dsp.pr.gsr :Probe: Go then Show
aud.dsp.pr.stsr :Probe: Go then Show
aud.dsp.pr.sramtest :Sram Test
aud.dsp.pr.reset :Reset DSP
aud.dsp.ape.apeinit :apeinit
aud.dsp.ape.ps :apeheaderparser
aud.a.i :aproc task init ex. init
aud.a.pc :Get aproc pc ex. pc
aud.a.r :Read aproc ex. reads [addr]
aud.a.w :Write aproc ex. write [addr] [data]
aud.a.o :command: open
aud.a.nod :command: notify adsp
aud.a.wd :command: write adsp
aud.a.rr :Reg read aproc ex. reads [addr]
aud.a.rw :Reg write aproc ex. write [addr] [data]
aud.a.qm :memory map query
aud.a.enable :enable/disable audio processor
aud.a.ice :connect ICE
aud.a.modctrl :module control
aud.a.pon :aproc power-on
aud.a.pdown :aproc power-down
aud.a.ad :post-processing AD mixing
aud.a.q :query aproc
aud.a.ms :Aproc MixSound Test
aud.a.ks :Aproc KeySound Test
aud.a.up :Aproc Upload Test
aud.a.rp :Aproc RiscPost Test
aud.a.acmd :Ask APROC AVSync Command
aud.a.ld :Print Log for which decoder
aud.a.si :List AVSync information
aud.a.chs :2.2/4.0 out select
aud.a.am :amixer mute setting
aud.a.speed :audio processor sound speed command
aud.a.aq :Test Flash AQ
aud.a.key :Test Flash AQ Key
aud.a.amx.ao :amixer open
aud.a.amx.ac :amixer close
aud.a.iec.iecflag :iec flag
aud.a.iec.ieccs :iec channel status
aud.a.iec.iecpro :iec copy protect
aud.a.iec.iecraw :iec raw information
aud.a.iec.iecmute :iec mute
aud.a.iec.iecdelay :iec RAW delay
aud.a.iec.iecc :iec PCM channel selection
aud.a.iec.ieco :iec output selection
aud.a.iec.iecbit :iec PCM output bits
aud.a.vol.pv :post-processing vol
aud.a.vol.mv :Master volume setting
aud.a.vol.ipt :Input trim setting
aud.a.vol.opt :Output trim setting
aud.a.vol.apt :Amixer trim setting
aud.a.vol.opv :Output trim setting
aud.a.vol.bt :Output trim backtrace
aud.a.vol.sg :post-processing smooth gain
aud.a.se.avl :AVL setting
aud.a.se.pbt :post-processing Bass Treble
aud.a.se.blc :Balancer setting
aud.a.se.bmang :Bass Managemant setting
aud.a.se.mvs :Virtual Surround Setting
aud.a.se.mvb :Virtual Bass setting
aud.a.se.peq :PEQ setting
aud.a.se.dispeq :Disable PEQ setting
aud.a.se.peqr :PEQ Rch setting
aud.a.se.dl :DRC limiter setting
aud.a.se.eq :8Band EQ setting
aud.a.se.spec :EQ spectrum enable
aud.a.se.monomix :post-processing Mono mixing
aud.a.se.pq :post-processing query
aud.a.se.3drc :3band DRC setting
aud.a.se.1drc :1band DRC setting
aud.a.se.cdnotch :CDNotch settting
aud.a.se.hpf :post-processing HPF
aud.a.se.cp :channel split
aud.a.se.bq :Biquad setting
aud.a.ts3d.en :Enable/Disable srs ts3d
aud.a.ts3d.ts :SRS TS3D Setting
aud.a.ts3d.ll :SRS Level Setting
aud.a.ts3d.tvol :SRS tvol Setting
aud.a.ts3d.trud :SRS trud Setting
aud.a.ts3d.cc3d :SRS cc3d Setting
aud.a.ts3d.csd :SRS csdecoder Setting
aud.a.ts3d.com :SRS Common Setting
aud.a.ts3d.hpf :SRS Hpf Setting
aud.a.ts3d.geq :SRS geq Setting
aud.a.ts3d.aeq :SRS Aeq Setting
aud.a.ts3d.mcdy :SRS Mcdy Setting
aud.a.ts3d.dus :SRS dus Setting
aud.a.ts3d.mug :SRS Make Up Gain
aud.a.ts3d.init :Only for SRS init
aud.a.ts3d.getall :Only for Getall
aud.a.ts3d.aeqfpset :AEQ Filter param set
aud.a.ts3d.mcpspset :MCPS param set
aud.a.ts3d.2chmcpspset :2ch MCPS param set
aud.a.ts3d.mchp1mcpspset :MultiCh Path1 MCPS param set
aud.a.ts3d.mchp2mcpspset :MultiCh Path2 MCPS param set
aud.a.ts3d.defset :Default set
aud.a.fade.fade :Implement Fade Process
aud.a.fade.p :Implement Fade Process
aud.a.fade.g :Get current Fade volume
aud.iec.flag :iec flag
aud.iec.cs :iec channel status
aud.iec.protect :iec copy protect
aud.iec.raw :iec raw information
aud.iec.audraw :iec raw information by audio format
aud.iec.mute :iec mute
aud.iec.delay :iec RAW delay
aud.iec.ch :iec PCM channel selection
aud.iec.out :iec output selection
aud.iec.bit :iec PCM output bits
aud.spost.dbg :Spost debug
aud.spost.b :bypass all post
aud.spost.lo :Enable Log out
aud.cdec.ver :DTS decoder set parameter
aud.cdec.q :DTS decoder set parameter
aud.cdec.dtss :DTS decoder set parameter
aud.cdec.d :DTS Debug
aud.cdec.dis :Disable cpudec
aud.uop.qv :DSP volume system setting
aud.uop.fv :Audio Master Volume fine control
aud.uop.v :Audio Volume control
aud.uop.vc :Audio Volume Curve Set
aud.uop.vcq :Audio Volume Curve Query
aud.uop.svt :Audio Volume table set
aud.uop.fcv :Audio Channel Volume fine control
aud.uop.cv :Audio Channel Volume control
aud.uop.cvg :Audio Channel Volume Gain control
aud.uop.vo :Audio Channel Volume offset
aud.uop.sv :Audio Source Volume control
aud.uop.svq :Query Audio Source Volume
aud.uop.a :Automatic Volume Control
aud.uop.drc :DRC
aud.uop.md :Downmix to mono
aud.uop.kr :Karaoke mix ratio
aud.uop.bl :Set L/R balance
aud.uop.vs :Virtual Surround flag
aud.uop.vscfg :Virtual Surround Config
aud.uop.peq :Set PEQ
aud.uop.peqc :Set PEQ Configuration
aud.uop.peqc2 :Set PEQ Configuration
aud.uop.peqcr :Set PEQ Configuration
aud.uop.peqc2r :Set PEQ Configuration
aud.uop.vb :Set Virtual Bass
aud.uop.vbcfg :Set Virtual Bass config
aud.uop.vbcut :Set Virtual Bass Cutoff
aud.uop.speed :DSP Speed
aud.uop.dmp :Downmix channel position
aud.uop.MultiPair :Multi-Pair output
aud.uop.LRDMix :LR DownMix
aud.uop.dump :DSP Dump
aud.uop.DDCO :DDCO setting
aud.uop.DDCOAgc :DDCO AGC setting
aud.uop.DDCOLFE :DDCO AGC setting
aud.uop.dm :dual-mono steup
aud.uop.eac3 :E-ac3 raw enable
aud.uop.up :Upload data enable
aud.uop.upi :Upload data init
aud.uop.upd :Upload data dump
aud.uop.enc :Set Encode mode
aud.uop.adupdate :ad fade pan update setup
aud.uop.adfade :ad fade setup
aud.uop.adpan :ad pan setup
aud.uop.adpanfaden :ad pan fade enable
aud.uop.sbcd :SBC Encode Test
aud.uop.adcd :SBC Encode Test
aud.uop.pq :Post-Proc Query
aud.uop.g726dec :G726 decoder setting
aud.uop.csum :check sum _pbD
aud.uop.arccap :setarc capability
aud.uop.eq.flag :EQ function on/off
aud.uop.eq.m :EQ mode configuration
aud.uop.eq.set :Set EQ Table
aud.uop.eq.q :Query EQ Table
aud.uop.sbass.flag :sbass function on/off
aud.uop.sbass.cf :Bass Treble cut-off freq
aud.uop.sbass.bb :Bass boost gain configuration
aud.uop.sbass.cb :Clear boost gain configuration
aud.uop.sbass.q :query sbass Table
aud.uop.silence.flag :silence function on/off
aud.uop.silence.thre :Silence Threshold configuration
aud.uop.silence.wait :Silence attack wait time configuration
aud.uop.silence.gain :Silence attack fix gain configuration
aud.uop.silence.rstep :Silence Release Step configuration
aud.uop.silence.astep :Silence Attack Step configuration
aud.uop.silence.q :query Silence configuration
aud.uop.limiter.flag :individual limiter flag
aud.uop.limiter.thre :limiter fixed mode threshold
aud.uop.limiter.release :limiter release rate
aud.uop.limiter.q :query limiter configuration
aud.uop.pl2cfg.i :initialization for prologic2
aud.uop.pl2cfg.sw :prologic2 On/Off/Auto switch
aud.uop.pl2cfg.mode :setup prologic2 mode
aud.uop.pl2cfg.pano :panorama on/off
aud.uop.pl2cfg.dim :dimension control
aud.uop.pl2cfg.cw :center width control
aud.uop.spkuop.spkcfg :speaker config steup
aud.uop.spkuop.delaycfg :channel delay steup
aud.uop.spkuop.ls :speaker large/small config
aud.uop.spkuop.cf :set cutoff frequency
aud.uop.spkuop.ch :speaker config
aud.uop.spkuop.sw :subwoofer on/off
aud.uop.spkuop.bs :bass management on/off
aud.uop.spkuop.dm :auto downmix on/off
aud.uop.cdnotch.flag :CDNotch enable
aud.uop.cdnotch.cfg :CDNotch Q and Fc setup
aud.uop.ms12.en :Enable MS12 Modules
aud.uop.ms12.bp :Bypass Post Processing
aud.uop.ms12.upload :Enable Upload data to USB
aud.uop.ms12.outsel :Select Output buffer input source
aud.uop.ms12.hpsel :Select HP buffer input source
aud.uop.ms12.iecsel :Select IEC buffer input source
aud.uop.ms12.optctrl :Option Control Enable
aud.uop.ms12.srcuplpf :Enable SRC Upsample LPF
aud.uop.ms12.mixer.assoc :Assoc Present
aud.uop.ms12.mixer.dmx :Singel has been downmixed
aud.uop.ms12.mixer.upref :User Preference
aud.uop.ms12.mixer.outsel :Output Buffer Selector
aud.uop.ms12.pcmr.ddrc :Discard DRC Enable/Disable
aud.uop.ms12.pcmr.drccut :DRC Cut scale factor
aud.uop.ms12.pcmr.drcboost :DRC Boost scale factor
aud.uop.ms12.pcmr.drcmode :DRC Mode
aud.uop.ms12.pcmr.dmxmode :DMX Mode
aud.uop.ms12.pcmr.dualmode :DUAL Mode
aud.uop.ms12.pcmr.outact :Output Active
aud.uop.ms12.pcmr.enproc :Enable Processing
aud.uop.ms12.pcmr.cprof :Compressor Profile
aud.uop.ms12.pcmr.delay :Delay between rendered and unrendererd
aud.uop.ms12.pcmr.loudness :Loudness Level Adjust
aud.uop.ms12.pcmr.lfedmx :LFE Downmix
aud.uop.ms12.ddpenc.banner :Display Banner
aud.uop.ms12.ddpenc.datarate :Set Data Rate
aud.uop.ms12.ddpenc.enfilter :Enable Filter
aud.uop.ms12.ddpenc.riscenc :Aproc RiscEnc Test
aud.uop.ms12.ddpenc.unsup :Unsupported Acmod and Lfe
aud.uop.ms12.aac.dn :Default Dialnorm
aud.uop.ms12.ac3.mdctbl :MDCT BandLimit
aud.uop.ms12.ac4.mode :ac4 mode
aud.uop.ms12.ac4.de :ac4 Dialogue Enhancement gain
aud.uop.ms12.ac4.lang :ac4 1st Preferred Language code
aud.uop.ms12.ac4.lang2 :ac4 2nd Preferred Language code
aud.uop.ms12.ac4.at :ac4 Preferred associated type of service
aud.uop.ms12.ac4.pat :ac4 Prefer Presentation Selection by associated type over language
aud.uop.ms12.ac4.mainidx :ac4 Main Presentation index to be decoded
aud.uop.ms12.ac4.associdx :ac4 Assoc Presentation index to be decoded
aud.uop.ms12.ac4.xa :MD_ID_AD_MIXING_ENABLED
aud.t.t :play tone
aud.t.stop :stop tone
aud.t.utone :play universal tone
aud.t.s :sound effect on/off
aud.t.b :bypass post processing
aud.t.banner :DD banner turn on for DD Test
aud.t.mal :Allocate memory for test
aud.t.aoutg :Aout gain control
aud.Clip.p :play aud clip
aud.Clip.s :stop aud clip
aud.Clip.v :set clip volume
aud.atv.q :query ATV audio informantion
aud.atv.sys :Tv channel system: B/G, D/K, I, L, M
aud.atv.sm :ATV Sound Mode: mono, stereo, dual,...
aud.atv.mts :BTSC system factory options
aud.atv.a2 :A2 system factory options
aud.atv.pal :PAL system factory options
aud.atv.CFO :Query MTS Carrier Shift
aud.atv.qovm :query ATV Hdev detection result
aud.dtv.q :Query DTV decoder informantion
aud.dtv.ptsd :Delay audio startup by increasing PTS
aud.dtv.dls :Query Supported Dolby License
aud.dtv.c :Query Target Country
aud.dtv.ac3.ac3ka :ac3 karaoke mode steup
aud.dtv.ac3.ac3dm :ac3 dual mono mode steup
aud.dtv.ac3.ac3cm :ac3 compresssion mode steup
aud.dtv.ac3.ac3dr :ac3 drc range steup
aud.dtv.ac3.q :ac3 query decoder status
aud.dtv.ddc.ddc :DDC control steup
aud.dtv.ddc.id :DDC associated stream id steup
aud.dtv.ddc.m :DDC mixer steup
aud.dtv.ddt.mdc :DDT bypass mode
aud.dtv.ddt.dmx :DDT downmix mode
aud.dtv.ddt.rf :DDC RF/Line in mode
aud.dtv.ddt.dual :DDC dual mode
aud.dtv.ddt.drc :DDC DRC Cut/Boost factor
aud.fmrdo.det :Detect FM radio channel
aud.fmrdo.play :Play FM radio channel
aud.fmrdo.fm2 :Setup FM radio channel
aud.fmrdo.fmthl :Setup FM radio threshold
aud.fmrdo.fmthlq :Query FM radio threshold
aud.fmrdo.vol :Fine tune volume
aud.fmrdo.en :Enable FM detect Notify
aud.io.spdif.i :Spdif-in init
aud.io.spdif.reset :Spdif-in reset
aud.io.spdif.e :Spdif-in enalbe
aud.io.spdif.d :Spdif-in diable
aud.io.spdif.c :Spdif-in check locked?
aud.io.spdif.s :Spdif-in select channel
aud.io.spdif.r :Spdif-in read registers ex. readrg
aud.io.spdif.w :Spdif-in write registers ex. writerg [addr] [value]
aud.io.spdif.iecs :IEC setting [decoder id] [flag] [enable]
aud.io.spdif.iecc :IEC Channel setting [decoder id] [channel]
aud.io.spdif.iecb :IEC output HDMI always [enable]
aud.io.spdif.iecq :IEC setting query
aud.io.spdif.flag :IEC RAW delay sync with channel delay control
aud.io.spdif.delay :IEC RAW delay
aud.io.spdif.info :SPDIF get setup
aud.io.spdif.resetreg :SPDIF reset registers
aud.io.spdif.cpy :SPDIF copyright setup
aud.io.spdif.code :SPDIF category code setup
aud.io.spdif.word :SPDIF word length setup
aud.io.spdif.set :SPDIF information setup
aud.io.spdif.protect :SPDIF copy protect setup
aud.io.spdif.mode :SPDIF set update mode
aud.io.spdif.cs :SPDIF get channel status
aud.io.spdif.hbr :HDMI HBR mode
aud.io.adac.q :Query speaker enable state
aud.io.adac.f :Data format ex. format 0 1
aud.io.adac.d :Data invert ex. datainvert 0 1
aud.io.adac.drv :Select MCLK BCLK driving current ex. drv 0 8 8
aud.io.adac.cr :WM8776/MT8291 register read
aud.io.adac.cw :WM8776/MT8291 register write
aud.io.adac.ch :WM8776/MT8291 register write
aud.io.adac.ar :Amplifier register read
aud.io.adac.aw :Amplifier register write
aud.io.adac.ai :Amplifier init
aud.io.adac.am :Amplifier mute control
aud.io.adac.ani :Amplifier nvm init
aud.io.idac.ch :Internal DAC channel Select
aud.io.idac.m :Internal DAC Mute
aud.io.idac.e :Internal DAC Enable
aud.io.idac.i :Internal DAC Init
aud.io.idac.inv :Internal LR invert
aud.io.idac.pwmen :PWM enable OR disable
aud.io.idac.pg :Set PWM gain
aud.io.idac.mt :Set Moniter Status
aud.io.idac.pd :Set PWM Delay
aud.io.idac.pwmr :PWMDAC Y YRAM Read
aud.io.idac.pwmw :PWMDAC Y YRAM Write
aud.io.idac.dacr :PWMDAC Read
aud.io.idac.dacw :PWMDAC Write
aud.io.idac.pwmsg :PWMSigGen
aud.io.idac.ldo :internal LDO Enable OR disable
aud.io.aadc.m :AADC Mute PGA
aud.io.aadc.pd :AADC power down
aud.io.aadc.gain :AADC power down
aud.io.cfg.isw :Av input component select
aud.io.cfg.osw :Out channel switch
aud.nvm.r :Read NVM
aud.nvm.w :Write NVM
aud.nvm.init :Initialize NVM
aud.nvm.pfr :Profile Read
aud.nvm.l :AQ list all data on flash
aud.nvm.aq :AQ Read Idx
aud.nvm.sm :Show SoundMode value
aud.nvm.sa :Show Setting Assisant value
aud.src.q :Query ASRC status
aud.src.t :Enable ASRC Tracking Mode
aud.dram.qm :Query AUD Dram Map
aud.dram.dm :dump dsp memory
aud.dram.r :Read physical memory in bytes
aud.dram.r4 :Read physical memory in dwrds
aud.dram.phy :Virtual to Physical convert
aud.dram.vir :Physical to Virtual convert
aud.dram.sh :read dsp share memory: sh [group]
aud.dram.shw :write dsp share memory: sh [group] [addr] [val] [size]
aud.dram.cm :read dsp common memory: cm [addr] [length]
aud.dram.cmw :write dsp common memory: cm [addr] [value]
aud.dram.norm :read dsp normal dram
aud.dram.cmpt :read dsp compact dram
aud.dram.c :dump channel ouput data
aud.dram.flush :Flush DSP memory
aud.dram.dump :dump Fifo data to file
aud.dram.ul :Upload file data to dram
aud.dram.mal :Allocate Dram
aud.dram.dumpLoop :dump Fifo data to file infinitely
aud.dram.dumpStop :stop dumpLoop
aud.dram.dumpAS :Set dumpLoop auto save to a new file
aud.adecomx.dm :Set Debug Mask
aud.adecomx.q :Query
aud.sd.d :Set AV Sync Debug On/Off
aud.sd.sid :Set Audio STC ID
aud.sd.qq :Query PTS Queue
aud.sd.qpts :Query PTS Info
aud.db.q :query Dolby related information
aud.db.impulse :generate impluse signal
aud.db.t :generate tone
aud.pm.c :Clear history
aud.pm.q :Query history
aud.pm.qd :Query delay
aud.pm.e :Enable play mute control
aud.util.dls :Dump log on/off set
aud.util.dlq :Dump log on/off query
aud.util.lbs :Log bits set
aud.util.lbq :Log bits query
n.i :Initialize Nptv
n.ms :Main Source Select
n.ps :Pip Source Select
n.ns :3rd path Source Select
n.fw :Nptv fimware on/off
n.fixcs :Fix color space
n.scan :Set Scan Mode
n.demo :Set Demo Mode
n.d_on :NPTV.d_on
n.d_off :NPTV.d_off
n.d_l :NPTV.d_l
n.fw_upgrade :Firmware Upgrade
n.ss :NPTV Status
n.d :Cmd delay for automation
n.p :Print String
n.sfir :Set H FIR PreDown
n.gfir :Get H FIR PreDown
n.srs :Config SRS
n.slt_vdo :slt vdo_path_check
n.vdo.q :Video Query
n.vdo.dly :Video Delay
n.vdo.modchg :Video Mode Change Done
n.vdo.dram :Video DRAM Status Monitor
n.vdo.swi :Initialize Software Register
n.vdo.swr :Read Software Register
n.vdo.sww :Write Software Register
n.css.i :CSS Initial
n.css.comp :CSS Compensate
n.css.onoff :CSS On/Off
n.3d.pk :3D packing Mode
n.3d.322 :3D to 2D
n.3d.fpr :FPR Mode
n.3d.q :Config Query
n.3d.navi :3D Navigation
n.3d.lrs :Set L/R Indicator switch
n.3d.ns :Navi Stress test
n.3d.sp3d :Panel 3d Setting
n.3d.s3dptn :set 3d pattern
n.3d.ttd.fw :Set TTD Adap FW
n.3d.tddc.i :Init TDDC
n.3d.tddc.fw :Set TDDC Adap FW
n.vrm.i :VRM init
n.vrm.u :VRM update
n.vrm.g :VRM get
n.vrm.d :VRM dump
n.vrm.dly :Set Import Delay
n.vrm.sim :Set Import Module
n.vrm.gis :Get Import Status
n.vrm.t :Trigger manually
n.vrm.fom :Set Forced overscan module
n.vrm.gom :Get overscan module
n.vrm.appset :Set application mode
n.vrm.appget :Get application mode
n.vrm.appclr :Clr application mode
n.vrm.d_on :SCPOS.d_on
n.vrm.d_off :SCPOS.d_off
n.vrm.d_l :SCPOS.d_l
n.scl.selfi :Scalar input Pattern self gen
n.scl.sci :Scalar input Pattern
n.scl.sco :Scalar output Pattern
n.scl.ftt :Set Frame Track TARGET value
n.scl.ftlr :Set Frame Track Base On L or R
n.scl.hpos :Set H Porch
n.scl.vpos :Set V Porch
n.scl.pipsel :PIP source select
n.scl.tvesel :TVE source select
n.scl.d_on :SCPOS.d_on
n.scl.d_off :SCPOS.d_off
n.scl.d_l :SCPOS.d_l
n.scl.ipoo :Nptv Import Protection on/off
n.scl.fover :Check scaler dram fifo overflow status
n.scl.q :Query scaler status
n.scl.mir :Set Scaler Mirror in H dir on/off
n.scl.flip :Set Scaler Flip in V dir on/off
n.scl.mf :Set Scaler Mirror and Flip in both H/V for main and sub
n.scl.3dio :Set 3D input/ output format
n.scl.3dres :Set 3D pre/pst resolution
n.scl.aut :Auto check
n.scl.srcrut :Source Region UT
n.scl.outrut :Output Region UT
n.scl.poll :Read Status
n.scl.coef :Set Scaling Coef
n.scl.f4 :Forced Input 444/422 mode
n.scl.fsm :Forced 444/422 scaling mode
n.scl.fdf :Force dram 444/422 write format
n.scl.fdm :Force front/back dram mode
n.scl.fvs :Force V FIR/Partial sum scaling
n.scl.gvs :Get V FIR/Partial sum scaling
n.scl.crcs :Enable scaler CRC
n.scl.crcq :Query scaler CRC status
n.scl.isrs :Enable scaler ISR
n.scl.isrc :Clear scaler ISR status
n.scl.isrq :Query scaler ISR status
n.scl.isrt :Test scaler ISR frame rate
n.scl.addr :Force scaler dram address
n.gfx.i :Initialization
n.gfx.src :Select dump path(0:main, 1:sub)
n.gfx.res :Update resolution(width, height)
n.gfx.fn :Set frame number(1~4)
n.gfx.add :Set dram address, frame size, frame number
n.gfx.wm :Set dram write mode(0: continue, 1:trigger)
n.gfx.t :Trigger dram write 1 frame
n.gfx.wen :Switch dram write OnOff
n.gfx.32 :Enable 3D to 2D
n.gfx.fd :Input frame drop N/M
n.gfx.f :Set dump format(0:RGBA888, 1:RGB565)
n.gfx.a :Set alpha value(0~127)
n.gfx.d :gfx dump setting
n.gfx.q :Query dump status
n.gfx.d_on :GFX.d_on
n.gfx.d_off :GFX.d_off
n.gfx.d_l :GFX.d_l
n.ft.q :Query frame track status
n.ft.fftm :force frame track mode
n.ft.ffoo :force frame track on/off
n.venc.i :Initialization
n.venc.em :ScpipVenc Mux select
n.venc.ef :ScpipVenc Fld Mode
n.venc.input :Select input path (0:main, 1:sub)
n.venc.src :Select dump path (0:main, 1:sub, 2: mon_out)
n.venc.res :Update resolution(width, height, scan)
n.venc.add :Set dram address, frame size, frame number
n.venc.wm :Set dram write mode(0: continue, 1:trigger)
n.venc.t :Trigger dram write 1 frame
n.venc.wen :Switch dram write OnOff
n.venc.fd :Input frame drop N/M
n.venc.dd :dump scaler dram one
n.venc.pi :field pair invert
n.venc.ai :address invert
n.venc.q :Query dump status
n.venc.d_on :VENC.d_on
n.venc.d_off :VENC.d_off
n.venc.d_l :VENC.d_l
n.dec.gt :Query current decoder type
n.dec.q :Query decoder information
n.dec.tmd :Trigger Mode Detection
n.dec.w :Get Current Video Width
n.dec.h :Get Current Video Heigth
n.dec.fr :Get Current Frame Rate
n.dec.i :Query whether current input source is interlaced
n.dec.vp :Get Current VPorch
n.dec.hp :Get Current HPorch
n.dec.ss :Get Current Signal Status
n.dec.vt :Get VTotal
n.dec.ht :Get HTotal
n.dec.t :Get Timing
n.dec.isvga :check if it is vga timing
n.dec.dmc :set decoder mode change
n.hdmi2.d_on :HDMI.d_on
n.hdmi2.d_off :HDMI.d_off
n.hdmi2.d_l :HDMI.d_l
n.hdmi2.i :HDMI initialization
n.hdmi2.m :HDMI mainloop
n.hdmi2.dmsg :HDMI mainloop