mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2025-02-15 00:18:03 +00:00
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
config MMPROFILE
|
|
tristate "MMProfile module enable or disable"
|
|
help
|
|
Enable other module to use Multimedia profiling mechanism.
|
|
By enable this config, the mmp/ driver is built into kernel.
|
|
Otherwise other module will use empty functions in header file
|
|
instead. This is to make the profiling mechanism driver to be
|
|
a switchable module.
|
|
|
|
config MTK_MMPROFILE_SUPPORT
|
|
bool "MMProfile function enable or disable"
|
|
default y
|
|
depends on MMPROFILE
|
|
help
|
|
Multimedia profiling mechanism function support.
|
|
By enable this config, the actual implementation under mmp/src/
|
|
will be used.
|
|
Otherwise mmp/dummy/ is used to provide empty functions. In this
|
|
situation, the profiling mechanism will not work.
|
|
|
|
config MTK_MMPROFILE_DEBUG
|
|
bool "MMProfile function debug"
|
|
depends on MTK_MMPROFILE_SUPPORT
|
|
help
|
|
Multimedia profiling mechanism function debug feature.
|
|
By enable this config, the actual implementation under mmp/src/
|
|
will be used. This is to make the profiling mechanism driver can
|
|
dump input/output buffer.
|