forked from Samsung/TizenRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig.debug
1276 lines (1039 loc) · 27.8 KB
/
Kconfig.debug
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
#
# For a description of the syntax of this configuration file,
# see kconfig-language at https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt
#
config DEBUG
bool "Enable Debug Features"
default n
select DEBUG_ERROR
---help---
Enables built-in debug features. Selecting this option will (1) Enable
debug assertions in the code, (2) enable extended parameter testing in
many functions, and (3) enable support for debug output to the SYSLOG.
Note that enabling this option by itself does not produce debug output.
Debug output must also be selected on a subsystem-by-subsystem basis.
if DEBUG
config DEBUG_ERROR
bool "Enable Error Debug Output"
default n
---help---
Enables ERROR debug output (assuming debug features are enabled).
If you enable DEBUG_ERROR, debug messages for error will be reported in the
debug SYSLOG output.
Errors are significant system exceptions that require immediate attention.
config DEBUG_WARN
bool "Enable Warning Debug Output"
default n
---help---
Enables Warning debug output (assuming debug features are enabled).
If you enable DEBUG_WARN, debug messages for warning will be reported in the
debug SYSLOG output.
Warnings are considered to be various unexpected conditions, potential errors
or errors that will not have serious consequences.
config DEBUG_VERBOSE
bool "Enable Informational(Verbose) Debug Output"
default n
---help---
Enables Informational debug output (assuming debug features are enabled).
If you enable DEBUG_VERBOSE, debug messages for information will be reported in the
debug SYSLOG output.
comment "Subsystem Debug Options"
config DEBUG_AUDIO
bool "Audio Debug Feature"
default n
depends on AUDIO
---help---
Enable Audio debug feature.
if DEBUG_AUDIO
config DEBUG_AUDIO_ERROR
bool "Audio Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable audio error debug SYSLOG output.
config DEBUG_AUDIO_WARN
bool "Audio Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable audio warning debug SYSLOG output.
config DEBUG_AUDIO_INFO
bool "Audio Infomational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable audio informational debug SYSLOG output.
endif #DEBUG_AUDIO
config DEBUG_BINFMT
bool "Binary Loader Debug Features"
default n
depends on BINFMT_ENABLE
---help---
Enable binary loader debug features.
if DEBUG_BINFMT
config DEBUG_BINFMT_ERROR
bool "Binary Loader Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable binary loader error output to SYSLOG.
config DEBUG_BINFMT_WARN
bool "Binary Loader Warnings Output"
default n
depends on DEBUG_WARN
---help---
Enable binary loader warning output to SYSLOG.
config DEBUG_BINFMT_INFO
bool "Binary Loader Informational Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable binary loader informational output to SYSLOG.
endif # DEBUG_BINFMT
config DEBUG_BINARY_COMPRESSION
bool "Binary Compression Debug Features"
default n
depends on COMPRESSED_BINARY
---help---
Enable binary compression debug features
if DEBUG_BINARY_COMPRESSION
config DEBUG_BINARY_COMPRESSION_ERROR
bool "Enable Error logs of Binary Compression"
default n
depends on DEBUG_ERROR
---help---
Enables error logs for Binary Compression interface.
config DEBUG_BINARY_COMPRESSION_INFO
bool "Enable Debug logs of Binary Compression"
default n
depends on DEBUG_VERBOSE
---help---
Enables debug logs for Binary Compression interface.
endif # DEBUG_BINARY_COMPRESSION
config DEBUG_BINMGR
bool "Binary Manager Debug Features"
default n
depends on BINARY_MANAGER
---help---
Enable binary manager debug features.
if DEBUG_BINMGR
config DEBUG_BINMGR_ERROR
bool "Enable Error logs of Binary Manager"
default n
depends on DEBUG_ERROR
---help---
Enables error logs for Binary Manager interface.
config DEBUG_BINMGR_INFO
bool "Enable Debug logs of Binary Manager"
default n
depends on DEBUG_VERBOSE
---help---
Enables debug logs for Binary Manager interface.
endif # DEBUG_BINMGR
config DEBUG_FS
bool "File System Debug Feature"
default n
---help---
Enable file system debug feature.
if DEBUG_FS
config DEBUG_FS_ERROR
bool "File System Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable file system error debug SYSLOG output.
config DEBUG_FS_WARN
bool "File System Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable file system warning debug SYSLOG output.
config DEBUG_FS_INFO
bool "File System Infomational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable file system informational debug SYSLOG output.
endif #DEBUG_FS
config DEBUG_LIB
bool "C Library Debug Feature"
default n
---help---
Enable C library debug feature.
if DEBUG_LIB
config DEBUG_LIB_ERROR
bool "C Library Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable C Library error debug SYSLOG output.
config DEBUG_LIB_WARN
bool "C Library Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable C Library warning debug SYSLOG output.
config DEBUG_LIB_INFO
bool "C Library Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable C Library informational debug SYSLOG output.
endif #DEBUG_LIB
config DEBUG_LOGDUMP
bool "logdump Debug Feature"
default n
depends on LOG_DUMP
---help---
Enable logdump debug feature.
if DEBUG_LOGDUMP
config DEBUG_LOGDUMP_ERROR
bool "logdump Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable logdump error debug SYSLOG output.
config DEBUG_LOGDUMP_WARN
bool "logdump Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable logdump warning debug SYSLOG output.
config DEBUG_LOGDUMP_INFO
bool "logdump Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable logdump informational debug SYSLOG output.
endif #DEBUG_LOGDUMP
config DEBUG_MM
bool "Memory Manager Debug Feature"
default n
---help---
Enable memory management debug feature.
if DEBUG_MM
config DEBUG_MM_ERROR
bool "Memory Manager Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable memory management error debug SYSLOG output.
config DEBUG_MM_WARN
bool "Memory Manager Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable memory management Warning debug SYSLOG output.
config DEBUG_MM_INFO
bool "Memory Manager Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable memory management informational debug SYSLOG output.
endif #DEBUG_MM
config DEBUG_NET
bool "Network Debug Feature"
default n
depends on ARCH_HAVE_NET
---help---
Enable network debug feature.
if DEBUG_NET
config DEBUG_NET_ERROR
bool "Network Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable network error debug SYSLOG output.
config DEBUG_NET_WARN
bool "Network Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable network warning debug SYSLOG output.
config DEBUG_NET_INFO
bool "Network Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable network informational debug SYSLOG output.
endif #DEBUG_NET
config DEBUG_BLE
bool "BLE Debug Feature"
default n
---help---
Enable BLE debug feature.
if DEBUG_BLE
config DEBUG_BLE_ERROR
bool "BLE Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable BLE error debug SYSLOG output.
config DEBUG_BLE_WARN
bool "BLE Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable BLE warning debug SYSLOG output.
config DEBUG_BLE_INFO
bool "BLE Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable BLE informational debug SYSLOG output.
endif #DEBUG_BLE
config DEBUG_PM
bool "Power Management Debug Features"
default n
---help---
Enable PM debug feature.
if DEBUG_PM
config DEBUG_PM_ERROR
bool "PM Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable PM error debug SYSLOG output.
config DEBUG_PM_WARN
bool "PM Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable PM warning debug SYSLOG output.
config DEBUG_PM_INFO
bool "PM Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable PM informational debug SYSLOG output.
endif #DEBUG_PM
config DEBUG_SCHED
bool "Scheduler Debug Feature"
default n
---help---
Enable OS debug feature.
if DEBUG_SCHED
config DEBUG_SCHED_ERROR
bool "Scheduler Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable OS error debug SYSLOG output.
config DEBUG_SCHED_WARN
bool "Scheduler Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable OS warning debug SYSLOG output.
config DEBUG_SCHED_INFO
bool "Scheduler Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable OS informational debug SYSLOG output.
endif #DEBUG_SCHED
config DEBUG_SHM
bool "Shared Memory Debug Feature"
default n
depends on MM_SHM
---help---
Enable shared memory management debug feature.
if DEBUG_SHM
config DEBUG_SHM_ERROR
bool "Shared Memory Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable shared memory management error debug SYSLOG output.
config DEBUG_SHM_WARN
bool "Shared Memory Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable shared memory management warning debug SYSLOG output.
config DEBUG_SHM_INFO
bool "Shared Memory Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable shared memory management informational debug SYSLOG output.
endif #DEBUG_SHM
config DEBUG_SYSCALL
bool "SYSCALL Debug Feature"
default n
depends on LIB_SYSCALL
---help---
Enable very low level output related to system calls. This gives
you basically a poor man's version of strace.
if DEBUG_SYSCALL
config DEBUG_SYSCALL_ERROR
bool "SYSCALL Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable system calls error debug SYSLOG output.
config DEBUG_SYSCALL_WARN
bool "SYSCALL Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable system calls warning debug SYSLOG output.
config DEBUG_SYSCALL_INFO
bool "SYSCALL Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable system calls informational debug SYSLOG output.
endif #DEBUG_SYSCALL
config DEBUG_TASH
bool "TASH Debug Feature"
default n
depends on TASH
---help---
Enable TASH debug feature.
if DEBUG_TASH
config DEBUG_TASH_ERROR
bool "Print error messages in TASH"
default y
depends on DEBUG_ERROR
config DEBUG_TASH_INFO
bool "Print informational messages in TASH"
default n
depends on DEBUG_VERBOSE
endif #DEBUG_TASH
comment "Framework Debug Options"
config DEBUG_EVENTLOOP
bool "EventLoop Debug Feature"
default n
depends on EVENTLOOP
---help---
Enable EventLoop debug feature.
if DEBUG_EVENTLOOP
config DEBUG_EVENTLOOP_ERROR
bool "Enable EventLoop Error Debug Output"
default n
depends on DEBUG_ERROR
---help---
EventLoop Error Debug Output.
config DEBUG_EVENTLOOP_INFO
bool "Enable EventLoop Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
EventLoop Informational Debug Output.
endif #DEBUG_EVENTLOOP
config DEBUG_IOTBUS
bool "IoTbus Debug Feature"
default n
depends on IOTBUS
---help---
Enable IoTbus debug feature.
config DEBUG_MEDIA
bool "Media Debug Feature"
default n
depends on MEDIA
---help---
Enable Media debug feature.
if DEBUG_MEDIA
config DEBUG_MEDIA_ERROR
bool "Media Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable Media error SYSLOG output
config DEBUG_MEDIA_WARN
bool "Media Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable Media warning SYSLOG output
config DEBUG_MEDIA_INFO
bool "Media Informational Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable Media informational SYSLOG output
endif #DEBUG_MEDIA
config DEBUG_MESSAGING_IPC
bool "Messaging Framework Debug Feature"
default n
depends on MESSAGING_IPC
---help---
Enable Messaging debug feature.
config DEBUG_PREFERENCE
bool "Preference Debug Output"
default n
depends on PREFERENCE
---help---
Preference Debug Output.
if DEBUG_PREFERENCE
config DEBUG_PREFERENCE_ERROR
bool "Enable Preference Error Debug Output"
default y
depends on DEBUG_ERROR
---help---
Preference Error Debug Output.
config DEBUG_PREFERENCE_INFO
bool "Enable Preference Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Preference Informational Debug Output.
endif #DEBUG_PREFERENCE
config DEBUG_ST_THINGS
bool "ST Things Debug Feature"
default y
depends on ST_THINGS
---help---
Enable st things debug feature.
if DEBUG_ST_THINGS
config DEBUG_ST_THINGS_ERROR
bool "ST Things Error Output"
default y
depends on DEBUG_ERROR
---help---
Enable ST Things error debug SYSLOG output.
config DEBUG_ST_THINGS_WARN
bool "ST Things Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable ST Things warning debug SYSLOG output.
config DEBUG_ST_THINGS_DEBUG
bool "ST Things Developer Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable ST Things Developer debug SYSLOG output.
config DEBUG_ST_THINGS_INFO
bool "ST Things Infomational Debug Output"
default y
depends on DEBUG_VERBOSE
---help---
Enable ST Things informational debug SYSLOG output.
endif #DEBUG_ST_THINGS
config DEBUG_TASK_MANAGER
bool "Task Manager Debug Feature"
default n
depends on TASK_MANAGER
---help---
Enable Task Manager debug feature.
if DEBUG_TASK_MANAGER
config DEBUG_TASK_MANAGER_ERROR
bool "Enable Task Manager Error Debug Output"
default n
depends on DEBUG_ERROR
---help---
Task Manager Error Debug Output.
config DEBUG_TASK_MANAGER_INFO
bool "Enable Task Manager Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Task Manager Informational Debug Output.
endif #DEBUG_TASK_MANAGER
config DEBUG_REBOOT_REASON
bool "Reboot Reason Debug Feature"
default n
depends on SYSTEM_REBOOT_REASON
---help---
Enable Reboot Reason debug feature.
if DEBUG_REBOOT_REASON
config DEBUG_REBOOT_REASON_ERROR
bool "Enable Reboot Reason Error Debug Output"
default n
depends on DEBUG_ERROR
---help---
Reboot Reason Error Debug Output.
config DEBUG_REBOOT_REASON_INFO
bool "Enable Reboot Reason Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Reboot Reason Informational Debug Output.
endif #DEBUG_REBOOT_REASON
config DEBUG_UI
bool "AraUI Debug Feature"
default n
depends on UI
---help---
Enable AraUI debug feature.
if DEBUG_UI
config UI_DEBUG_DRAW
bool "Draw debug boxes"
default n
---help---
Draw debug boxes
config DEBUG_UI_ERROR
bool "UI Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable UI error SYSLOG output
config DEBUG_UI_WARN
bool "UI Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable UI warning SYSLOG output
config DEBUG_UI_INFO
bool "UI Informational Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable UI informational SYSLOG output
endif #DEBUG_UI
comment "OS Function Debug Options"
config DEBUG_DMA
bool "DMA Debug Feature"
default n
depends on ARCH_DMA
---help---
Enable DMA-releated debug Feature.
Support for this debug option is architecture-specific and may not
be available for some MCUs.
config ARCH_HAVE_HEAPCHECK
bool
default n
config DEBUG_HEAP
bool "Heap usage debug hooks"
default n
depends on ARCH_HAVE_HEAPCHECK
---help---
Enable hooks to check heap usage. Only supported by a few architectures.
config DEBUG_MM_HEAPINFO
bool "Heap Info debug option"
default n
---help---
Enable task wise malloc debug.
config DEBUG_CHECK_FRAGMENTATION
bool "Show where and how memory is fragmented"
default n
depends on DEBUG_MM_HEAPINFO
---help---
Count the number of freed memory segments with the range from size 2^n to 2^(n+1).
config DEBUG_IRQ
bool "Interrupt Controller Debug Feature"
default n
---help---
Some (but not all) architectures support debug output to verify
interrupt controller logic. If supported, then option will enable
that output. This may interfere with normal operations! You
should *not* enable interrupt controller debug unless you suspect
that here is a problem with that logic. On some platforms, this
option may even cause crashes! Use with care!
if DEBUG_IRQ
config DEBUG_IRQ_INFO
bool "Interrupt Debug information"
default n
depends on DEBUG_VERBOSE
---help---
List the registered interrupts, it's occurrence count and corresponding isr.
endif #DEBUG_IRQ
config DEBUG_PAGING
bool "Demand Paging Debug Feature"
default n
depends on PAGING
---help---
Enable demand paging debug Feature.
comment "Driver Debug Options"
config DEBUG_ANALOG
bool "Analog Device Driver Debug Feature"
default n
---help---
Enable Analog debug Feature.
if DEBUG_ANALOG
config DEBUG_ANALOG_ERROR
bool "Analog Error Output"
default y
depends on DEBUG_ERROR
---help---
Enable Analog error debug output.
config DEBUG_ANALOG_WARN
bool "Analog Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable Analog warning debug output.
config DEBUG_ANALOG_INFO
bool "Analog Infomational Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable Analog informational debug output.
endif #DEBUG_ANALOG
config DEBUG_I2S
bool "I2S Device Driver Debug Feature"
default n
---help---
Enable i2s debug Feature.
if DEBUG_I2S
config DEBUG_I2S_ERROR
bool "I2S Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable i2s error debug output.
config DEBUG_I2S_WARN
bool "I2S Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable i2s warning debug output.
config DEBUG_I2S_INFO
bool "I2S Infomational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable i2s informational debug output.
endif #DEBUG_I2S
config DEBUG_MIPI_DSI
bool "Enable MIPI driver Debug Feature"
default n
depends on MIPI_DSI
---help---
Enable mipi driver debug feature.
if DEBUG_MIPI_DSI
config DEBUG_MIPI_ERROR
bool "Enable MIPI Error Debug Output"
default n
depends on DEBUG_ERROR
---help---
Enable MIPI Error Debug Output.
config DEBUG_MIPI_WARN
bool "Enable MIPI Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable MIPI warning debug output.
config DEBUG_MIPI_INFO
bool "Enable MIPI Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable MIPI Informational Debug Output.
endif #DEBUG_MIPI
config DEBUG_LCD
bool "LCD driver Debug Feature"
default n
depends on LCD
---help---
Enable lcd driver debug feature.
if DEBUG_LCD
config DEBUG_LCD_ERROR
bool "Enable LCD Error Debug Output"
default n
depends on DEBUG_ERROR
---help---
LCD Error Debug Output.
config DEBUG_LCD_INFO
bool "Enable LCD Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
LCD Informational Debug Output.
config DEBUG_GRAPHICS_ERROR
bool "Enable Graphics Error Debug Output"
default n
depends on DEBUG_ERROR
---help---
Graphics Error Debug Output.
config DEBUG_GRAPHICS_INFO
bool "Enable Graphics Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Graphics Informational Debug Output.
endif #DEBUG_LCD
config DEBUG_PWM
bool "PWM Debug Feature"
default n
depends on PWM
---help---
Enable PWM driver debug Feature.
Support for this debug option is architecture-specific and may not
be available for some MCUs.
config DEBUG_RTC
bool "RTC Debug Feature"
default n
depends on RTC
---help---
Enable RTC driver debug Feature.
Support for this debug option is architecture-specific and may not
be available for some MCUs.
config DEBUG_SPI
bool "SPI Debug Feature"
default n
depends on SPI
---help---
Enable SPI debug Feature.
Support for this debug option is architecture-specific and may not
be available for some MCUs.
if DEBUG_SPI
config DEBUG_SPI_ERROR
bool "SPI Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable SPI error debug SYSLOG output.
config DEBUG_SPI_WARN
bool "SPI Warning Output"
default n
depends on DEBUG_WARN
---help---
Enable SPI warning debug SYSLOG output.
config DEBUG_SPI_INFO
bool "SPI Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable SPI informational debug SYSLOG output.
endif #DEBUG_SPI
config DEBUG_TIMER
bool "Timer Debug Feature"
default n
depends on TIMER
---help---
Enable timer debug Feature.
Support for this debug option is architecture-specific and may not
be available for some MCUs.
if DEBUG_TIMER
config DEBUG_TIMER_ERROR
bool "TIMER Error Output"
default n
depends on DEBUG_ERROR
---help---
Enable TIMER error debug SYSLOG output.
config DEBUG_TIMER_INFO
bool "TIMER Informational Debug Output"
default n
depends on DEBUG_VERBOSE
---help---
Enable TIMER informational debug SYSLOG output.
endif #DEBUG_TIMER
config DEBUG_TTRACE
bool "T-trace Debug Output"
default n