Commit Graph

6005 Commits

Author SHA1 Message Date
Fred Oh ceabe95d6b topology: icl-nocodec: enable more SSP and DMIC pipelines
Previously sof-icl-nocodec topology only enabled SSP0. To effectively test
more test cases, this enables more playback and capture pipelines with
SSP1, SSP2 and DMIC3.

Signed-off-by: Fred Oh <fred.oh@linux.intel.com>
2020-11-18 11:10:04 +00:00
Ranjani Sridharan f0d491a4ab ssp/dai: Dont treat dai_config during active audio as an error
When a DAI_CONFIG IPC is sent from the driver for a particular
DAI type and index, all DAI components that match the type and index
are configured. When all components are set up during topology
loading, this isn't really much of a problem as all DAI_CONFIG
IPCs will be sent at that time as well ie there is no active
playback/capture. But with dynamic pipeline loading, the playback
and capture DAIs will be individually configured whenever the
respective pipeline is started. This will end up with errors both
when configuring the SSP and when configuring the DAI comp itself.

So, ignore the request to configure the SSP and the DAI comp
that is already active so that the other DAI comp can be
configured successfully when its pipeline is set up.

Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
2020-11-18 11:08:59 +00:00
Ryan Lee e7a339bd4c smart amp: memory reset after allocation
Added memset by zero after memory allocation.

Signed-off-by: Ryan Lee <ryans.lee@maximintegrated.com>
2020-11-17 16:05:29 +00:00
Ryan Lee 1b89167f51 smart amp: added forced parameter function
Read whole DSM parameters including non-volatile parameters
from DSM component instead of reading cache.
The function is added for the diagnostic purpose.

Signed-off-by: Ryan Lee <ryans.lee@maximintegrated.com>
2020-11-17 16:05:29 +00:00
Ryan Lee f0b2017fc7 smart amp: parameter restoration after DSM re-init
DSM is re-initialized when the format is changed.
DSM parameters loaded from the blob before re-init
is not safe for the re-init process
Parameter re-configuration is necessary after re-init.
'maxim_dsm_restore_param' was added for this purpose.

Signed-off-by: Ryan Lee <ryans.lee@maximintegrated.com>
2020-11-17 16:05:29 +00:00
Ryan Lee 4a27e4628d smart amp: support dynamic bit-depth conversion
Support dynamic bit deptch conversion on runtime.
Re-initialize DSM if the frame_fmt is changed.

Signed-off-by: Ryan Lee <ryans.lee@maximintegrated.com>
2020-11-17 16:05:29 +00:00
Ryan Lee ce9db8ef60 smart amp: Changed buffer size for 32bit processing
Changed buffer size from 16bit to 32bit
Removed 32bit <-> 16bit conversion code.

Signed-off-by: Ryan Lee <ryans.lee@maximintegrated.com>
2020-11-17 16:05:29 +00:00
Ryan Lee 5fe1a6a51f smart amp: replaced variable x and y by idx and channel respectively
Changed variable x to idx and variable y to ch because x and y are
not good name for an iterator.

Signed-off-by: Ryan Lee <ryans.lee@maximintegrated.com>
2020-11-17 16:05:29 +00:00
Curtis Malainey 0aa92d8963 mixer: delete unused function
This function isn't called anywhere, time to do some cleaning

Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
2020-11-16 08:10:55 -08:00
Daniel Baluta 8354454b4d platform: imx: Fix PLATFORM_DCACHE_ALIGN
At this point PLATFORM_DCACHE_ALIGN is equal with DCACHE_LINE_SIZE
which on i.MX boards is 128.

Functions like rmalloc and rzalloc are allocating memory aligned at
PLATFORM_DCACHE_ALIGN bytes. This means that blocks under 128 bytes
are not really used and blocks sized > 128 are preffered for small
allocations.

This seems to be an unnecessary overhead which results in SOF not
being abel to allocate memory for simple pipelines (e.g simple
pipeline with a mixer).

For this reason, we set PLATFORM_DCACHE_ALIGN to a smaller value
(sizeof(void*)) but keep HEAP_BUF_ALIGNMENT unchanged.

Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
2020-11-16 11:59:11 +00:00
Andy Ross 23d1dc005a schedule/timer_domain: Correct Zephyr driver check
The comment implies that it's looking for what Zephyr knows as the
"cavs_timer" driver, but the test was specifying an old (and AFAICT
SOF-specific?) kconfig.  Use the one that corresponds to the actual
driver selection.

Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
2020-11-16 11:23:50 +00:00
Andy Ross 2664fc30fb zephyr/wrapper: Disable check for CONFIG_SYS_HEAP_ALIGNED_ALLOC
This kconfig variable no longer exists in upstream Zephyr (the feature
it used to control is now zero-overhead and always enabled).

Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
2020-11-16 11:23:50 +00:00
Andy Ross e1cf7f57c9 include/sof/common.h: Fix collisions with Zephyr symbols
IS_ENABLED and ARRAY_SIZE exist in effectively identical forms in the
Zephyr headers already.  Disable the SOF definitions when building
with Zephyr to avoid the macro redefinition collision.  Likewise
__unused gets defined twice.

Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
2020-11-16 11:23:50 +00:00
Curtis Malainey 221189d3f7 trace: enforce mailbox size
If we are fuzzing we can get the trace system into a state where it
tries flush dma and overshoot the mailbox boundary.

Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
2020-11-16 11:12:58 +00:00
Keyon Jie 60dfaa7ee3 ssp: refine the RX FIFO flushing logic
The SSSR_BSY is not necessary for flushing, we need to read out entries
every time the FIFO is not empty. This flushing may need take place
several rounds, and we need to wait 1 sample time between 2 flushing
rounds.

Fixes #3525

Signed-off-by: Keyon Jie <yang.jie@linux.intel.com>
2020-11-16 11:05:53 +00:00
Keyon Jie 322839449d clk: add helper to get sample ticks for a specific sample rate
Add helper clock_ticks_per_sample() to calculate and return the clock ticks
for a specific sample rate.

Signed-off-by: Keyon Jie <yang.jie@linux.intel.com>
2020-11-16 11:05:53 +00:00
Curtis Malainey 324681ec62 kpb: fix logging cast issue
We cannot assume the build will always be 32bits, therefore when casting
an int to a ptr use uintptr_t

Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
2020-11-11 15:48:05 +00:00
Curtis Malainey 4eb262ae0f dai: include interrupt header
We are using interrupts here, lets include the header so we don't hit
build failures.

Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
2020-11-11 15:48:05 +00:00
Curtis Malainey 731090510f library: add missing header
We are using int types in this header, we need inttypes.h otherwise
sometimes we fail to build.

Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
2020-11-11 15:48:05 +00:00
Curtis Malainey 522ce1526b pcm_converter: fix type mismatch
the extern and the actual variable should have the same types

Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
2020-11-11 15:48:05 +00:00
Keyon Jie 50b7b3bc06 tools/README: update comment for testbench building
The host-build-all.sh is deprecated, update to the recommended
'rebuild-testbench.sh'.

Signed-off-by: Keyon Jie <yang.jie@linux.intel.com>
2020-11-11 14:16:19 +08:00
Pin-chih Lin 984e02ef09 sof: drc: Implement s24 and s32 sample format cases
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>
2020-11-10 18:38:57 -08:00
Pin-chih Lin 8a70f62846 sof: drc: component implemented by fixed-point calculations
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>
2020-11-10 18:38:57 -08:00
Pin-chih Lin 91998d7d01 sof: drc: Use one_over_attack_frames in replace of attack_frames
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>
2020-11-10 18:38:57 -08:00
Pin-chih Lin 03b1fba732 sof: drc: More fixed-point approximative functions
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>
2020-11-10 18:38:57 -08:00
Curtis Malainey 9b5ba31938 dma-trace: free buffer on error
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>
2020-11-09 22:20:45 +00:00
Bartosz Kokoszko 85986e1f4f demux: add demux_prepare_active_look_up() function
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>
2020-11-09 22:19:08 +00:00
Bartosz Kokoszko acc022b4c4 mux: add channels check in mux_prepare_active_look_up()
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>
2020-11-09 22:19:08 +00:00
Bartosz Kokoszko 473d8894f0 mux: change prepare_active_look_up() function name
This commit changes prepare_active_look_up() function
name to be mux specific.

Signed-off-by: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
2020-11-09 22:19:08 +00:00
Marcin Rajwa a6a11d8e65 topology: add C_CONTROL to codec processing topology
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>
2020-11-09 22:14:38 +00:00
Marcin Rajwa aacbe98768 topology: add simple topology with codec processing
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>
2020-11-09 22:14:38 +00:00
Marcin Rajwa 09dadff771 topology: add codec_adapter component
This patch adds codec_adapter component in the topology
of SoF.

Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
2020-11-09 22:14:38 +00:00
Marcin Rajwa af78d51912 codec_adapter: call middle layer interfaces
This patch calls middle layer interfaces to perform
codec specific operations.

Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
2020-11-09 22:14:38 +00:00
Marcin Rajwa f5f097a715 codec_adapter: export cadence specific functions
This exports cadence interfaces for the middle layer.

Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
2020-11-09 22:14:38 +00:00
Marcin Rajwa bb9254fd27 codec_adapter: add cadence codecs support
This implements ops for cadence codecs.

Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
2020-11-09 22:14:38 +00:00
Marcin Rajwa 9da98fdc7f codec_adapter: cadence: add header files
This adds header files for codecs working with CADENCE
API.

Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
2020-11-09 22:14:38 +00:00
Marcin Rajwa 02e7da03ac codec_adapter: add mapping function for codecs
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>
2020-11-09 22:14:38 +00:00
Marcin Rajwa 969d008f78 component: add "codec adapter" component
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>
2020-11-09 22:14:38 +00:00
Keyon Jie b20d86f2ce host-testbench.sh: update comment for testbench building
The host-build-all.sh is deprecated, update to the recommended
'rebuild-testbench.sh'.

Signed-off-by: Keyon Jie <yang.jie@linux.intel.com>
2020-11-09 22:08:30 +00:00
Bartosz Kokoszko c66d5b59ea apl: power_down: move IPC_HOST_BASE literal into register
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>
2020-11-09 22:00:00 +00:00
Bartosz Kokoszko 3e8a42bfc0 cavs: power_down: move IPC_HOST_BASE literal into register
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>
2020-11-09 22:00:00 +00:00
Karol Trzcinski 1aefc30f37 trace: hda-dma: Lower trace level
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>
2020-11-09 21:54:39 +00:00
Marc Herbert 3de29dac2a testbench: make lib_table actually global and stop passing it around
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>
2020-11-05 23:09:35 +00:00
Pin-chih Lin 51c034c408 tools: tune: Generate ctrl bytes from params for DRC
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>
2020-11-05 11:35:40 -08:00
Karol Trzcinski 9b5f48b3a3 pipeline: Fix spelling error
Changed `coomponents` to `components`

Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
2020-11-05 09:32:30 +02:00
Marc Herbert 2aa62e1e65 rebuild-testbench.sh: don't build twice with combined "make install"
"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>
2020-11-03 16:48:02 +00:00
Karol Trzcinski 137c90bbc6 buffer: Move functions using trace system to buffer.c
Then trace location in output trace file is correct.

Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
2020-11-03 16:47:02 +00:00
Karol Trzcinski fb838de413 buffer: Move buffer_params_match() implementation to buffer.c file
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>
2020-11-03 16:47:02 +00:00
Karol Trzcinski b72c7ec2df rimage: Update to commit 0d2af68a9e
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>
2020-10-30 14:15:32 +00:00
Daniel Baluta 12fdd638de drivers: imx: sdma: Fix SDMA watermark
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>
2020-10-30 13:49:37 +00:00