config SND_SOC_IMG bool "Audio support for Imagination Technologies designs" help Audio support for Imagination Technologies audio hardware config SND_SOC_IMG_I2S_IN tristate "Imagination I2S Input Device Driver" depends on SND_SOC_IMG select SND_SOC_GENERIC_DMAENGINE_PCM help Say Y or M if you want to add support for I2S in driver for Imagination Technologies I2S in device. config SND_SOC_IMG_I2S_OUT tristate "Imagination I2S Output Device Driver" depends on SND_SOC_IMG select SND_SOC_GENERIC_DMAENGINE_PCM help Say Y or M if you want to add support for I2S out driver for Imagination Technologies I2S out device. config SND_SOC_IMG_PARALLEL_OUT tristate "Imagination Parallel Output Device Driver" depends on SND_SOC_IMG select SND_SOC_GENERIC_DMAENGINE_PCM help Say Y or M if you want to add support for parallel out driver for Imagination Technologies parallel out device. config SND_SOC_IMG_SPDIF_IN tristate "Imagination SPDIF Input Device Driver" depends on SND_SOC_IMG select SND_SOC_GENERIC_DMAENGINE_PCM help Say Y or M if you want to add support for SPDIF input driver for Imagination Technologies SPDIF input device. config SND_SOC_IMG_SPDIF_OUT tristate "Imagination SPDIF Output Device Driver" depends on SND_SOC_IMG select SND_SOC_GENERIC_DMAENGINE_PCM help Say Y or M if you want to add support for SPDIF out driver for Imagination Technologies SPDIF out device. config SND_SOC_IMG_PISTACHIO_INTERNAL_DAC tristate "Support for Pistachio SoC Internal DAC Driver" depends on SND_SOC_IMG help Say Y or M if you want to add support for Pistachio internal DAC driver for Imagination Technologies Pistachio internal DAC device. ce/Makefile'>logtreecommitdiff
path: root/kernel/trace/Makefile
diff options
context:
space:
mode:
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>2016-06-23 12:45:36 -0400
committerSteven Rostedt <rostedt@goodmis.org>2016-09-02 12:47:51 -0400
commite7c15cd8a113335cf7154f027c9c8da1a92238ee (patch)
treeb6f7c3ac217af4203489e874c359c409d63f7c27 /kernel/trace/Makefile
parent8861dd303cba879bae9a9dcee74042fb642bf03b (diff)
tracing: Added hardware latency tracer
The hardware latency tracer has been in the PREEMPT_RT patch for some time. It is used to detect possible SMIs or any other hardware interruptions that the kernel is unaware of. Note, NMIs may also be detected, but that may be good to note as well. The logic is pretty simple. It simply creates a thread that spins on a single CPU for a specified amount of time (width) within a periodic window (window). These numbers may be adjusted by their cooresponding names in /sys/kernel/tracing/hwlat_detector/ The defaults are window = 1000000 us (1 second) width = 500000 us (1/2 second) The loop consists of: t1 = trace_clock_local(); t2 = trace_clock_local(); Where trace_clock_local() is a variant of sched_clock(). The difference of t2 - t1 is recorded as the "inner" timestamp and also the timestamp t1 - prev_t2 is recorded as the "outer" timestamp. If either of these differences are greater than the time denoted in /sys/kernel/tracing/tracing_thresh then it records the event. When this tracer is started, and tracing_thresh is zero, it changes to the default threshold of 10 us. The hwlat tracer in the PREEMPT_RT patch was originally written by Jon Masters. I have modified it quite a bit and turned it into a tracer. Based-on-code-by: Jon Masters <jcm@redhat.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace/Makefile')