Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DNM] PR8785 with more debug #8786

Closed

Commits on Jan 24, 2024

  1. zephyr: use k_smp_cpu_start/_resume for secondary core power up

    This changes the secondary core power up routine to use the newly
    introduced k_smp_cpu_start() and k_smp_cpu_resume(). This removes
    the need to mirror part of the SMP start up code from Zephyr, and
    no longer need to call into Zephyr private kernel code.
    
    West update includes :
    
    eefaeee061c8 kernel: smp: introduce k_smp_cpu_resume
    042cb6ac4e00 soc: intel_adsp: enable DfTTS-based time stamping
                 on ACE platforms
    6a0b1da158a4 soc: intel_adsp: call framework callback function for restore
    e7217925c93e ace: use a 'switch' statement in pm_state_set()
    c99a604bbf2c ace: remove superfluous variable initialisation
    a0ac2faf9bde intel_adsp: ace: enable power domain
    4204ca9bcb3f ace: fix DSP panic during startup  (fixes c3a6274bf5e4)
    d4b0273ab0c4 cmake: sparse.template: add COMMAND_ERROR_IS_FATAL
    ca12fd13c6d3 xtensa: intel_adsp: fix a cache handling error
    0ee1e28a2f5f xtensa: polish doxygen and add to missing doc
    035c8d8ceb4b xtensa: remove sys_define_gpr_with_alias()
    a64eec6aaeec xtensa: remove XTENSA_ERR_NORET
    
    Signed-off-by: Daniel Leung <daniel.leung@intel.com>
    Signed-off-by: Rander Wang <rander.wang@intel.com>
    dcpleung authored and kv2019i committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    c996109 View commit details
    Browse the repository at this point in the history
  2. module_adapter: fix double-free of base_cfg_ext data

    Fix a possible double-free if reset is called multiple times.
    
    Fixes: 7046004 ("module_adapter_ipc4: Save and pre-parse base_cfg_ext data")
    Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
    kv2019i committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    70f3d54 View commit details
    Browse the repository at this point in the history
  3. Revert "ipc4: relax the IPC timeout checks and be nicer to other thre…

    …ads"
    
    When a stream is triggered to start, host kernel first sendis trigger
    start ipc message to fw and then start host dma for this stream.
    Ipc_wait_for_compound_msg is used to wait for all pipelines in the
    stream to be complete and need to be done fast since it blocks host
    to start hda dma. The reverted commit adds a 10 ms delay and results
    to host copier xrun warning for it can't get data from host dma.
    
       And this commit also makes a negative effect for stream_start_offset
    calculation which is for the difference between dai gateway and
    host gateway. We calculate it in host start function but host dma is
    started 10ms later, so there will be at least 10ms data error.
    
    This reverts commit 909a327.
    
    Signed-off-by: Rander Wang <rander.wang@intel.com>
    RanderWang authored and kv2019i committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    a745359 View commit details
    Browse the repository at this point in the history
  4. module_adapter: move input_pins free from reset to free method

    The input_pints is allocated in new, so it should be fred only
    in the free method.
    
    Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
    kv2019i committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    6a570e6 View commit details
    Browse the repository at this point in the history
  5. [DNM] audio: module_adapter: increased debug level

    Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
    kv2019i committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    07515d7 View commit details
    Browse the repository at this point in the history
  6. [DNM] ipc: ipc4: add debugu to chain-dma stop

    Check whether the Zephyr commit "drivers: dma: intel-adsp-hda: add delay to stop host dma"
    is causing the failures.
    kv2019i committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    63ef14c View commit details
    Browse the repository at this point in the history