Implemented s24 and s32 sample format cases of both pass and default
functions.
Because both s24 and s32 cases use 32-bit samples for source/sink stream
while s16 case uses 16-bit, for pre_delay_buffers, it followed as well
(32-bit for s24/s32, 16-bit for s16). One special note is that we <<8 when
storing samples from source to pre_delay_buffers, and >>8 when loading from
pre_delay_buffers. It makes 32-bit samples in pre_delay_buffers are always
Q1.31 in both s24 and s32 cases.
In common functions (e.g. drc_compress_output), sample byte information is
required to pass if the function has the operation of pre_delay_buffers, to
distinguish 16-bit and 32-bit sample cases.
Signed-off-by: Pin-chih Lin <johnylin@google.com>
In drc_generic.c and drc_math_generic.c, all floating-point math functions
are removed, and all float vaiables are replaced by fixed-point (int32_t)
variables with the appropriate precisions. It is verified that the
fixed-point replacement only lead to quite insignificant MSE errors among
all test patterns.
- Multiplications are replaced by Q_MULTSR_32X32 with the appropriate
precisions.
- Divisions (x/y) are replaced by Q_MULTSR_32X32(x, inv(y)), where inv(y)
is approximated 1/y by polynomial functions generated by fpminimax of
Sollya with rexp optimization.
Signed-off-by: Pin-chih Lin <johnylin@google.com>
Replaced the config coefficient "attack_frames" by "one_over_attack_frames"
(=1/attack_frames). It is because only "one_over_attack_frames" is used by
firmware and it could save a division operand by the replacement.
Signed-off-by: Pin-chih Lin <johnylin@google.com>
Implemented the following fixed-point functions for the approximation of
math calculations in drc_math_generic.c. fpminimax of Sollya is used for
generating a good polynomial approximation of wanted functions.
logf(x)
- Input is Q6.26: max 32.0
- Output range ~ (-inf, 3.4657); regulated to Q6.26: (-32.0, 32.0)
linear_to_decibels(x)
- Input is Q6.26: max 32.0
- Output range ~ (-inf, 30.1030); regulated to Q11.21: (-1024.0, 1024.0)
asinf(x)
- Use two-step polynomial approximation among [0, 1] whose pivot point is
1/sqrt(2)
- Input is Q2.30: (-2.0, 2.0)
- Output range: [-1.0, 1.0]; regulated to Q2.30: (-2.0, 2.0)
powf(x, y)
- Input x is Q6.26: (-32.0, 32.0); y is Q2.30: (-2.0, 2.0)
- Output is Q12.20: max 2048.0
Signed-off-by: Pin-chih Lin <johnylin@google.com>
We are leaking memory if the host sends bad messages to the firmware
since we are not freeing the buffer.
Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
This commit adds demux_prepare_active_look_up()
function. It contains channel parameter checking.
Look up table should not include elements referring
to channels higher than those actually set in
source/sink buffers.
Signed-off-by: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
This commit adds channel parameter checking in
mux_prepare_active_look_up() function. Look up
table should not include elements referring to
channels higher than those actually set in
source/sink buffers.
Signed-off-by: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
This patch extends codec processing topology with C_CONTROLS
which comprises of SETUP configuration for both SoF component
and CADENCE codec.
Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
This patch adds a processing topology which uses external
codec for processing. This topology comprises of:
HOST -> CODEC_ADAPTER -> DAI
So the only processing component is codec_adapter which can be
configured to work with any codec.
Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
This implements a middle layer between the SoF component
codec_adapter and specific codec. For example, the SoF component
may receive a prepare request from the driver, so it prepares itself
(assigns sink/source buffers, check states, etc) and then calls this
middle layer which proceed with codec specific preparation. The exact
same scenario happens for any other interface as well.
Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
This introduces new SoF component called "codec adapter".
It provides means to process samples through external codec
libraries. This part implements only the SoF component.
Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
Before switching off memory, IPC_HOST_BASE literal value should
be moved to register, in order to avoid accessing to disabled
memory.
Signed-off-by: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
Before switching off memory, IPC_HOST_BASE literal value should
be moved to register, in order to avoid accessing to disabled
memory.
Signed-off-by: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
Modified traces are quite verbose so should be done
with tr_dbg() function to reduce messaging noise in
non-verbose scenario.
Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
This fixes compilation with:
CFLAGS=-fno-common ./scripts/rebuild-testbench.sh
sof/tools/testbench/topology.c:24: multiple definition of `lib_table';
sof/tools/testbench/testbench.c:39: first defined here
This was detected by Gentoo 10 which uses -fno-common by default, thanks
Guennadi for the report and investigation.
Commit 03067c6c77 ("host: set up shared library table") introduced a
strange "lib_table" symbol that was apparently meant to be global but
was not really because of some confusion between arrays and pointers and
needed to be passed around and "initialized to itself" (!) at run time
as seen in the sample trace below:
topology.c
struct shared_lib_table *lib_table;
parse_topology(..., library_table,...)
{
printf("DEBUG1 ----- %p, %p, %p\n",
&lib_table, lib_table, library_table);
lib_table = library_table;
printf("DEBUG2 ----- %p, %p, %p\n",
&lib_table, lib_table, library_table);
}
Log:
DEBUG1 ----- 0x56298c954040, 0x56298c951183, 0x56298c954040
DEBUG2 ----- 0x56298c954040, 0x56298c954040, 0x56298c954040
Signed-off-by: Marc Herbert <marc.herbert@intel.com>
Used the similar parameter set as the DRC kernel in CRAS to generate ctrl
bytes for DRC component.
Plotted input-output dB response curve with the specific parameter set.
Signed-off-by: Pin-chih Lin <johnylin@google.com>
"make + make install" duplicates many steps, probably because of the
fatal combination of build timestamps + source hash, see PR #3353 for a
similar example.
A single, combined "make install" generates the exact same binary
outputs 30% faster and prints 30% shorter build logs.
Signed-off-by: Marc Herbert <marc.herbert@intel.com>
Assertions don't show proper location for functions implemented
in header file.
Before changes, example location of this assert was:
Location: src/audio/pipeline.c:303
Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Included changes:
0d2af68a9e gitignore: Add checkpatch temporary file to gitignore
8249abfa11 toml: Keep available manifest parsers in list
c98a29da14 toml: Extract version parsing to separate function
b9cf1aeb3b pkcs1_5.c: don't pretend everything is fine when failing to sign
e87db0f080 pkcs1_5.c: intermediate named constants in ri_manifest_sign_v1_x()
86754c1389 hash: Assert memory overflow during hash calculation
37323face2 Merge pull request #28 from marc-hb/copy-sram-overflow
7322c02349 manifest.c: assert buffer overflow in man_copy_sram()
Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
After experiments I found that current SDMA watermark
causes SDMA to miss SAI DMA requests.
The empirical value was chosen so that watermark is a
divisor of min(bd_count, fifo watermark).
Of course this needs to be revisited, but for now "it just works" (tm).
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
For handling events we only needs an enable/disable functionalities.
Setting up an event (that means reading the event number and saving
it in dma_pdata is already done at config time).
So, this patch just introduces:
* smda_enable_event
* sdma_disable_event
and removes existing sdma_clear_event and sdma_set_event.
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
A channel will be scheduled when both an event has occurred
and the users have enabled the channel.
This allows us to strictly control channel scheduling.
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Without this index will always be 0 and we cannot differentiate
between channels for various function calls.
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Host platform sets HSTART_HE bit to activate the corresponding channel
and the DSP will clear the HE bit when done.
In order, for the channel to be rescheduled we need to start again the
HSTART_HE after we got an interrupt that a BD was processed.
This is done in sdma_copy using sdma_enable_channel.
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
During several runs next_bd might not be zero, this means that
when an interrupt arrives we will mark the wrong BD as being ready
to be processed by the DSP.
This causes the DSP to block waiting forever for an available BD.
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
We no longer care about setting overrides values at stop
because they are correctly set at config time.
What we need to do instead, is to clear HE bit (SDMA_STOP_STAT).
This patch also introduces sdma_disable_channel function to simmetry
with sdma_enable_channel.
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
A channel is scheduled when the following condition is true:
(HE[i] or HO[i]) and (EP[i] or EO[i])
In order to strictly control a channel's behavior we allow it to run
only after the users has started the channel in sdma_start and an
event arrives.
For this reason we need to set host override and event override to 0.
This is already done at config time.
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Channel priority is set during config time.
Also, notice that only channels will index != 0 will call
sdma_start so it is correct to not check for index != 0 in
sdma_start. This makes code easier to read.
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
A few error paths through ipc_pipeline_complete() didn't send
any error log. Each silent error path is some kind of firmware
malfunction.
Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Both the fuzzer and the testbench call init_system_notifier which
initializes the struct so there is no need for this check (which causes
a double alloc) in the get function.
Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
The bf_defaults() now sets the default directory locations for
for bf_export() so it does not need to be set in every script.
Also the defaults for input channels and output mixing are set to
that in typical design they do not need to be set.
The default distance for look direction is set to 5.0m so it is better
guaranteed in far field for even relatively large arrays. The far field
assumes planar sound waves. The design equations do not fully support
near field with spherical waves.
The FFT length is changed to 1024 to enable design of longer filter bank
filters. There's no compromise in performance for for e.g. length 64.
The incorrect use of mic_n (number of microphones) is replaced by
num_filters. It's possible define beamformer that ignores some mic
channels so these are not the same.
The automatic systematic design file names are now created for all array
types, not just line.
The script is made more flexible to run without need to export data and
clutter just to quickly interactively check from plots what kind of
beam pattern and other characteristic some array, e.g. circular with
some radius and mic count gives.
Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
The common array identifier string is brought up for easier edit to
test other array geometries than this default. A typo about 16 kHz
is fixed, the test runs at 48 kHz testbench default rate.
Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This patch adds the missing XYZ 3D array helper and does minor fixes
for two others. The L-shape microphones orientation is made similar as
in rectangular array by inverting the y-axis. The missing centering
of rectangular array is added.
Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
The memory sanitzer catches uninitialized value errors on the size check
for small data sizes. Therefore lets us calloc so we can assume the
whole region exists without having the sanitizer get upset.
Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
Previously, the __GNUC__ flag was used to differentiate between GCC and XCC.
However, that flag is defined by XCC as well,
as a result, __XCC__ flag should be checked instead.
Signed-off-by: Slawomir Blauciak <slawomir.blauciak@linux.intel.com>
Audio component samples have been moved to a new location, fix Zephyr
builds to account for it.
Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>