├── .github ├── actions │ └── create-publish-folder.sh └── workflows │ ├── pull-request.yml │ ├── woke.yml │ └── woke_pr.yml ├── .gitignore ├── .wokeignore ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── algos ├── demux │ ├── demux.rst │ └── images │ │ ├── demux.png │ │ ├── mux.png │ │ └── muxdemux.png ├── eq │ ├── Picture_FIR_equalized_response.png │ ├── Picture_FIR_impulse_response.png │ ├── Picture_FIR_response.png │ ├── Picture_FIR_response_absolute.png │ ├── Picture_FIR_right_channel_equalized.png │ ├── Picture_IIR_FIR_target_vs_achieved_response.png │ ├── Picture_iir_absolute_response.png │ ├── Picture_iir_filter_response_vs_ideal_target.png │ ├── Picture_iir_impulse_response.png │ ├── Picture_iir_poles_and_zeros.png │ ├── Picture_iir_simulated_left_and_channel_responses.png │ ├── Picture_imported_frequency_response_for_iir.png │ ├── Picture_raw_frequency_response.png │ ├── Picture_response_with_smoothing.png │ ├── Picture_right_channel_FIR_absolute_response.png │ ├── Picture_right_channel_response.png │ ├── Picture_simulated_IIR_FIR_frequency_response.png │ ├── Picture_simulated_left_and_right_channel_responses.png │ ├── Picture_speaker_meas.jpg │ ├── Picture_tested_speaker_frequency_response.png │ └── equalizers_tuning.rst ├── index.rst ├── src │ ├── images │ │ ├── equiripple.png │ │ ├── kaiser.png │ │ ├── poly32.png │ │ └── poly34.png │ ├── sample_rate_conversion.rst │ ├── src_2stage.txt │ └── src_std_int32_table.h └── tdfb │ ├── beamformer_delay_and_sum.png │ ├── circular_array.png │ ├── circular_di.png │ ├── circular_filters.png │ ├── circular_polar.png │ ├── circular_spatial.png │ ├── circular_wng.png │ ├── line_array.png │ ├── lshape_array.png │ ├── lshape_array_rot.png │ ├── rectangular_array.png │ ├── time_domain_fixed_beamformer.rst │ ├── two_beams_left.png │ ├── two_beams_right.png │ └── xyz_array.png ├── api ├── audio-stream-api.rst ├── component-api.rst ├── component-ext-api.rst ├── dai-drivers-api.rst ├── dma-drivers-api.rst ├── index.rst ├── memory-alloc-api.rst ├── platform-api.rst ├── pm-runtime-api.rst ├── uapi.rst └── uuid-api.rst ├── architectures ├── firmware │ ├── index.rst │ ├── intel │ │ ├── ace │ │ │ ├── iadk_modules.rst │ │ │ └── index.rst │ │ ├── cavs │ │ │ ├── cavs-boot │ │ │ │ ├── apollolake │ │ │ │ │ ├── apl-boot-ldr.rst │ │ │ │ │ ├── apl-boot-rom.rst │ │ │ │ │ ├── images │ │ │ │ │ │ └── apl-rom-flow.pu │ │ │ │ │ └── index.rst │ │ │ │ ├── cavs-dsp-boot-overview.rst │ │ │ │ ├── images │ │ │ │ │ ├── boot-dsp.pu │ │ │ │ │ ├── boot-ldr-flow.pu │ │ │ │ │ ├── loading-bins.pu │ │ │ │ │ └── write-bin.pu │ │ │ │ └── index.rst │ │ │ ├── images │ │ │ │ └── idc-send-message.pu │ │ │ ├── index.rst │ │ │ └── smp │ │ │ │ └── index.rst │ │ └── index.rst │ ├── sof-common │ │ ├── components │ │ │ ├── component-mgmt-api.rst │ │ │ ├── component-module-api.rst │ │ │ ├── component-overview.rst │ │ │ ├── images │ │ │ │ ├── comp-copy-flow.pu │ │ │ │ ├── comp-dev-states.pu │ │ │ │ ├── comp-driver.pu │ │ │ │ ├── comp-module-api.pu │ │ │ │ ├── comp-new-flow.pu │ │ │ │ ├── comp-prepare-flow.pu │ │ │ │ └── component-mgmt-api.pu │ │ │ └── index.rst │ │ └── index.rst │ ├── sof-xtos │ │ ├── drivers │ │ │ ├── dai │ │ │ │ ├── images │ │ │ │ │ ├── dai-ops.pu │ │ │ │ │ └── dai-set-config.pu │ │ │ │ └── index.rst │ │ │ ├── dma │ │ │ │ ├── images │ │ │ │ │ ├── dma-ops.pu │ │ │ │ │ └── dma-transfer.pu │ │ │ │ ├── index.rst │ │ │ │ └── intel │ │ │ │ │ ├── hda-dma.rst │ │ │ │ │ ├── images │ │ │ │ │ ├── hda-host-output.pu │ │ │ │ │ ├── hda-link.pu │ │ │ │ │ ├── hda-start-flow.pu │ │ │ │ │ └── hda-stop-flow.pu │ │ │ │ │ └── index.rst │ │ │ ├── images │ │ │ │ ├── device-disco.pu │ │ │ │ ├── device-probe.pu │ │ │ │ └── device-remove.pu │ │ │ └── index.rst │ │ ├── images │ │ │ ├── edf-scheduler-deps.pu │ │ │ ├── edf-scheduler-flow.pu │ │ │ ├── fw-arch-diag.png │ │ │ ├── ll-scheduler-deps.pu │ │ │ ├── ll-scheduler-flow.pu │ │ │ ├── memory-zones.dot │ │ │ ├── runtime-zone.dot │ │ │ ├── scheduler-ops.pu │ │ │ └── system-zone.dot │ │ ├── index.rst │ │ ├── kd_integration │ │ │ ├── images │ │ │ │ ├── kd-component-diagram.pu │ │ │ │ ├── kd-e2e-sequence-diagram.pu │ │ │ │ ├── kd-state-diagram.pu │ │ │ │ └── kd-timing-diagram.pu │ │ │ ├── index.rst │ │ │ └── kd-integration.rst │ │ ├── mem-mgmt.rst │ │ ├── overview.rst │ │ ├── pipelines │ │ │ ├── images │ │ │ │ ├── ppl-new.pu │ │ │ │ ├── ppl-op-downstream.pu │ │ │ │ ├── ppl-operations.pu │ │ │ │ ├── ppl-params.pu │ │ │ │ ├── ppl-reset.pu │ │ │ │ ├── ppl-struct.pu │ │ │ │ └── ppl-task.pu │ │ │ └── index.rst │ │ ├── pm-runtime │ │ │ ├── images │ │ │ │ ├── pm-dsp-core-idle.pu │ │ │ │ └── pm-dsp-core-init.pu │ │ │ ├── index.rst │ │ │ ├── intel │ │ │ │ ├── images │ │ │ │ │ └── dsp-core-lps-cavs-d0-d0i3-d0.pu │ │ │ │ └── pm-dsp-core-cavs.rst │ │ │ └── pm-dsp-core.rst │ │ └── schedulers.rst │ └── sof-zephyr │ │ ├── app_layer │ │ ├── images │ │ │ └── app_layer_diagram.pu │ │ └── index.rst │ │ ├── images │ │ ├── overview_diagram.pu │ │ ├── sof_lib.pu │ │ └── sof_lib_zephyr.pu │ │ ├── index.rst │ │ ├── mpp_layer │ │ ├── async_messaging.rst │ │ ├── dp_scheduling.rst │ │ ├── images │ │ │ ├── async_messaging │ │ │ │ ├── flow_prod_cons_same_core.pu │ │ │ │ └── flow_prod_primary_cons_secondary_core.pu │ │ │ ├── dp_scheduling │ │ │ │ ├── example1.pu │ │ │ │ ├── example1_1.pu │ │ │ │ ├── example1_2.pu │ │ │ │ ├── example1_3.pu │ │ │ │ ├── example1_4.pu │ │ │ │ ├── example1_5.pu │ │ │ │ ├── example2.pu │ │ │ │ ├── example2_1.pu │ │ │ │ ├── example2_1a.pu │ │ │ │ ├── example2_2.pu │ │ │ │ ├── example2_2a.pu │ │ │ │ ├── example2_3.pu │ │ │ │ ├── example2_4.pu │ │ │ │ ├── example2_5.pu │ │ │ │ ├── example2_6.pu │ │ │ │ ├── example2_7.pu │ │ │ │ ├── example3.pu │ │ │ │ ├── example3_1.pu │ │ │ │ ├── example3_2.pu │ │ │ │ ├── example3_3.pu │ │ │ │ ├── example3_4.pu │ │ │ │ ├── example3_5.pu │ │ │ │ ├── example3_6.pu │ │ │ │ ├── example3_7.pu │ │ │ │ ├── example4.pu │ │ │ │ ├── example4_1.pu │ │ │ │ ├── example4_2.pu │ │ │ │ └── pic1_chains.pu │ │ │ ├── lib_manager │ │ │ │ ├── library_manager_delete_instance.pu │ │ │ │ ├── library_manager_init_instance.pu │ │ │ │ └── library_manager_load.pu │ │ │ ├── mpp_layer_diagram.pu │ │ │ └── mpp_scheduling │ │ │ │ ├── edf_scheduling.diag │ │ │ │ ├── example_DP_secondary_core_timeline.pu │ │ │ │ ├── example_LL_DP_timeline.pu │ │ │ │ ├── example_multiple_cores_timeline.pu │ │ │ │ ├── example_task_with_budget.pu │ │ │ │ ├── schedulers_diagram.pu │ │ │ │ ├── schedulers_threads_periodic_update.pu │ │ │ │ └── schedulers_zephyr.pu │ │ ├── index.rst │ │ ├── lib_manager.rst │ │ ├── mpp_overview.rst │ │ └── mpp_scheduling.rst │ │ ├── overview.rst │ │ ├── rtos_layer │ │ ├── images │ │ │ ├── kernel_services.pu │ │ │ ├── power │ │ │ │ ├── dsp_fw_power_states.pu │ │ │ │ ├── dx_state_transitions.pu │ │ │ │ ├── flow_disable_d0i3.pu │ │ │ │ ├── flow_dsp_idle.pu │ │ │ │ ├── flow_enable_d0i3.pu │ │ │ │ ├── flow_primary_core_power_down.pu │ │ │ │ ├── flow_secondary_core_boot.pu │ │ │ │ ├── flow_secondary_core_power_down.pu │ │ │ │ └── power_components.pu │ │ │ └── zephyr_kernel_diagram.pu │ │ ├── index.rst │ │ ├── io_drivers │ │ │ ├── dmic │ │ │ │ ├── dmic_driver.rst │ │ │ │ └── images │ │ │ │ │ ├── dmic_diagram.pu │ │ │ │ │ ├── dmic_gateway_init.pu │ │ │ │ │ ├── dmic_gateway_release.pu │ │ │ │ │ └── dmic_gateway_state_transitions.pu │ │ │ ├── hda │ │ │ │ ├── hda_driver.rst │ │ │ │ └── images │ │ │ │ │ ├── hda_capture.pu │ │ │ │ │ ├── hda_io_driver_deps.pu │ │ │ │ │ └── hda_playback.pu │ │ │ ├── i2s │ │ │ │ ├── i2s_driver.rst │ │ │ │ └── images │ │ │ │ │ ├── i2s_diagram.pu │ │ │ │ │ └── i2s_tdm.dot │ │ │ ├── images │ │ │ │ └── io_drivers_diagram.pu │ │ │ └── index.rst │ │ ├── memory_management │ │ │ ├── heap_sharing.rst │ │ │ ├── images │ │ │ │ ├── dynamic_module_load.pu │ │ │ │ ├── heaps.pu │ │ │ │ ├── memory_allocation.pu │ │ │ │ ├── memory_allocation_from_memory_driver.pu │ │ │ │ ├── memory_initialization.pu │ │ │ │ └── memory_management_layers.pu │ │ │ ├── index.rst │ │ │ ├── memory_management_driver.rst │ │ │ ├── memory_management_flows.rst │ │ │ ├── memory_zones.rst │ │ │ └── mpp_memory_management.rst │ │ ├── power_management.rst │ │ └── zephyr_kernel_overview.rst │ │ └── zephyr_api_integration.rst ├── host │ ├── index.rst │ └── linux_driver │ │ └── architecture │ │ ├── images │ │ ├── sof-driver-arch-1.png │ │ └── sof-driver-arch-2.png │ │ └── sof_driver_arch.rst ├── images │ └── driver-arch-diag.png └── index.rst ├── conf.py ├── contribute ├── contribute_guidelines.rst ├── doc_guidelines.rst ├── dox-source-code.rst ├── index.rst ├── linux │ └── development_tree.rst └── process │ ├── abiprocess.rst │ ├── bug-tracking.rst │ ├── docbuild.rst │ └── images │ ├── abiprocess.pu │ ├── audacity-clean-sine-wave.png │ ├── audacity-end-of-glitch.png │ ├── audacity-sine-wave-with-glitch.png │ ├── audacity-start-of-glitch.png │ ├── bug-life-cycle.png │ ├── example-trace-point.png │ ├── fork-sof-docs.png │ ├── label-blocked.png │ ├── label-branch-glk.png │ ├── label-branch-master.png │ ├── label-branch-v1-2.png │ ├── label-bug.png │ ├── label-duplicate.png │ ├── label-invalid.png │ ├── label-need-info.png │ ├── label-platform-apl.png │ ├── label-platform-byt.png │ ├── label-platform-glk.png │ ├── label-priorities.png │ ├── label-verified.png │ └── label-will-not-fix.png ├── developer_guides ├── add_new_arch.rst ├── debugability │ ├── coredump-reader │ │ └── index.rst │ ├── index.rst │ ├── logger │ │ └── index.rst │ ├── perf-counters │ │ └── index.rst │ ├── probes │ │ └── index.rst │ ├── ri-info │ │ ├── index.rst │ │ ├── output_full_bytes.txt │ │ ├── output_headers.txt │ │ └── output_verbose.txt │ ├── shell │ │ └── index.rst │ └── traces │ │ ├── images │ │ ├── build-traces.dot │ │ ├── process-traces.dot │ │ └── trace-enable-flow.pu │ │ └── index.rst ├── firmware │ ├── async_messaging_best_practices.rst │ ├── cmake.rst │ ├── component-tutorial │ │ ├── tut-i-basic-fw-code.rst │ │ ├── tut-ii-topology.rst │ │ ├── tut-iii-runtime-params.rst │ │ ├── tut-intro.rst │ │ └── tut-iv-exceptions.rst │ ├── index.rst │ ├── llext_modules.rst │ └── porting.rst ├── fuzzing │ ├── fuzzing_in_docker.rst │ ├── index.rst │ └── testbench_afl_fuzzing.rst ├── index.rst ├── introduction.rst ├── linux_driver │ ├── index.rst │ └── third_party │ │ ├── index.rst │ │ └── keyword_detect │ │ └── keyword_detect.rst ├── rimage │ ├── extended_manifest.rst │ ├── images │ │ ├── ext_man_build_flow.pu │ │ └── image_build_flow.pu │ └── index.rst ├── tech │ ├── build-cmocka.rst │ └── compile_wsl.rst ├── testbench │ ├── build_testbench.rst │ ├── debug_in_testbench.rst │ ├── fig_add_breakpoint.png │ ├── fig_ddd.png │ ├── fig_ddd_structs.png │ ├── fig_mhwaveedit.png │ ├── fig_process_test_eqiir.png │ ├── index.rst │ ├── prepare_new_component.rst │ └── test_audio_quality.rst ├── topology │ ├── images │ │ ├── tplg1.png │ │ └── tplg2.png │ └── topology.rst ├── topology2 │ └── topology2.rst ├── tuning │ └── sof-ctl.rst ├── unit_tests.rst ├── uuid │ └── index.rst ├── virtualization │ ├── files │ │ └── q-v6.sh │ ├── images │ │ ├── data-flow-v1.png │ │ ├── data-flow.png │ │ ├── ipc-v3.png │ │ ├── ipc.png │ │ ├── topology-v2.png │ │ └── topology.png │ ├── running.rst │ └── virtualization.rst └── xtrun │ └── index.rst ├── getting_started ├── build-guide │ ├── build-3rd-party-toolchain.rst │ ├── build-from-scratch.rst │ ├── build-with-docker.rst │ └── build-with-zephyr.rst ├── index.rst ├── intel_debug │ ├── introduction.rst │ └── suggestions.rst ├── loadable_modules │ └── lmdk_user_guide.rst ├── nxp │ └── sof_imx_user_guide.rst ├── setup_linux │ ├── install_locally.rst │ ├── prepare_build_environment.rst │ └── setup_ktest_environment.rst └── setup_special_device │ ├── images │ └── minnow_turbot.png │ ├── setup_minnowboard_turbot.rst │ └── setup_up_2_board.rst ├── images ├── logo_sof_dark.png ├── logo_sof_dark_56h.png ├── logo_sof_white.png ├── logo_sof_white_200w.png └── sof-favicon-16x16.png ├── index.rst ├── introduction ├── images │ ├── pipeline-overview.png │ └── sdk-overview.png └── index.rst ├── maintainers ├── admin.rst ├── code_owners.rst ├── index.rst └── merge_rights.rst ├── make.bat ├── platforms ├── index.rst ├── intel-cavs │ ├── apollolake │ │ ├── apl-memory.rst │ │ ├── images │ │ │ └── apl-memory.dot │ │ └── index.rst │ ├── cannonlake │ │ ├── cnl-config.rst │ │ ├── cnl-memory.rst │ │ ├── images │ │ │ └── cnl-memory.dot │ │ └── index.rst │ ├── commons │ │ ├── images │ │ │ ├── core-enable.pu │ │ │ ├── work-smp-cavs.pu │ │ │ └── work-st.pu │ │ ├── index.rst │ │ ├── multicore-processing.rst │ │ └── work-queue.rst │ ├── icelake │ │ ├── icl-config.rst │ │ ├── icl-memory.rst │ │ └── index.rst │ ├── images │ │ └── cavs-platform-deps.pu │ ├── index.rst │ └── tigerlake │ │ ├── images │ │ └── tgl-memory.dot │ │ ├── index.rst │ │ ├── tgl-config.rst │ │ └── tgl-memory.rst └── intel-legacy │ ├── baytrail │ └── index.rst │ ├── broadwell │ └── index.rst │ ├── index.rst │ └── merrifield │ └── index.rst ├── presentations ├── images │ └── liam_elce.png ├── index.rst └── pdf │ ├── SOF_DEMO_equalizer.pdf │ ├── SOF_ELCE.pdf │ └── SOF_OSFC.pdf ├── release.rst ├── rules-woke.yaml ├── scripts ├── docker_build │ ├── Dockerfile │ └── docker-build.sh ├── plantuml.cfg ├── plantuml.jar ├── publish-README.md ├── publish-index.html ├── requirements-lax.txt └── requirements.txt ├── setup.py ├── static └── sof-custom.css ├── substitutions.txt ├── tox.ini └── tsc ├── index.rst ├── meetings.rst └── representatives.rst /.github/actions/create-publish-folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/.github/actions/create-publish-folder.sh -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/woke.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/.github/workflows/woke.yml -------------------------------------------------------------------------------- /.github/workflows/woke_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/.github/workflows/woke_pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.wokeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/.wokeignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/README.md -------------------------------------------------------------------------------- /algos/demux/demux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/demux/demux.rst -------------------------------------------------------------------------------- /algos/demux/images/demux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/demux/images/demux.png -------------------------------------------------------------------------------- /algos/demux/images/mux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/demux/images/mux.png -------------------------------------------------------------------------------- /algos/demux/images/muxdemux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/demux/images/muxdemux.png -------------------------------------------------------------------------------- /algos/eq/Picture_FIR_equalized_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_FIR_equalized_response.png -------------------------------------------------------------------------------- /algos/eq/Picture_FIR_impulse_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_FIR_impulse_response.png -------------------------------------------------------------------------------- /algos/eq/Picture_FIR_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_FIR_response.png -------------------------------------------------------------------------------- /algos/eq/Picture_FIR_response_absolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_FIR_response_absolute.png -------------------------------------------------------------------------------- /algos/eq/Picture_FIR_right_channel_equalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_FIR_right_channel_equalized.png -------------------------------------------------------------------------------- /algos/eq/Picture_IIR_FIR_target_vs_achieved_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_IIR_FIR_target_vs_achieved_response.png -------------------------------------------------------------------------------- /algos/eq/Picture_iir_absolute_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_iir_absolute_response.png -------------------------------------------------------------------------------- /algos/eq/Picture_iir_filter_response_vs_ideal_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_iir_filter_response_vs_ideal_target.png -------------------------------------------------------------------------------- /algos/eq/Picture_iir_impulse_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_iir_impulse_response.png -------------------------------------------------------------------------------- /algos/eq/Picture_iir_poles_and_zeros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_iir_poles_and_zeros.png -------------------------------------------------------------------------------- /algos/eq/Picture_iir_simulated_left_and_channel_responses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_iir_simulated_left_and_channel_responses.png -------------------------------------------------------------------------------- /algos/eq/Picture_imported_frequency_response_for_iir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_imported_frequency_response_for_iir.png -------------------------------------------------------------------------------- /algos/eq/Picture_raw_frequency_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_raw_frequency_response.png -------------------------------------------------------------------------------- /algos/eq/Picture_response_with_smoothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_response_with_smoothing.png -------------------------------------------------------------------------------- /algos/eq/Picture_right_channel_FIR_absolute_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_right_channel_FIR_absolute_response.png -------------------------------------------------------------------------------- /algos/eq/Picture_right_channel_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_right_channel_response.png -------------------------------------------------------------------------------- /algos/eq/Picture_simulated_IIR_FIR_frequency_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_simulated_IIR_FIR_frequency_response.png -------------------------------------------------------------------------------- /algos/eq/Picture_simulated_left_and_right_channel_responses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_simulated_left_and_right_channel_responses.png -------------------------------------------------------------------------------- /algos/eq/Picture_speaker_meas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_speaker_meas.jpg -------------------------------------------------------------------------------- /algos/eq/Picture_tested_speaker_frequency_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/Picture_tested_speaker_frequency_response.png -------------------------------------------------------------------------------- /algos/eq/equalizers_tuning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/eq/equalizers_tuning.rst -------------------------------------------------------------------------------- /algos/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/index.rst -------------------------------------------------------------------------------- /algos/src/images/equiripple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/src/images/equiripple.png -------------------------------------------------------------------------------- /algos/src/images/kaiser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/src/images/kaiser.png -------------------------------------------------------------------------------- /algos/src/images/poly32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/src/images/poly32.png -------------------------------------------------------------------------------- /algos/src/images/poly34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/src/images/poly34.png -------------------------------------------------------------------------------- /algos/src/sample_rate_conversion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/src/sample_rate_conversion.rst -------------------------------------------------------------------------------- /algos/src/src_2stage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/src/src_2stage.txt -------------------------------------------------------------------------------- /algos/src/src_std_int32_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/src/src_std_int32_table.h -------------------------------------------------------------------------------- /algos/tdfb/beamformer_delay_and_sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/beamformer_delay_and_sum.png -------------------------------------------------------------------------------- /algos/tdfb/circular_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/circular_array.png -------------------------------------------------------------------------------- /algos/tdfb/circular_di.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/circular_di.png -------------------------------------------------------------------------------- /algos/tdfb/circular_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/circular_filters.png -------------------------------------------------------------------------------- /algos/tdfb/circular_polar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/circular_polar.png -------------------------------------------------------------------------------- /algos/tdfb/circular_spatial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/circular_spatial.png -------------------------------------------------------------------------------- /algos/tdfb/circular_wng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/circular_wng.png -------------------------------------------------------------------------------- /algos/tdfb/line_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/line_array.png -------------------------------------------------------------------------------- /algos/tdfb/lshape_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/lshape_array.png -------------------------------------------------------------------------------- /algos/tdfb/lshape_array_rot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/lshape_array_rot.png -------------------------------------------------------------------------------- /algos/tdfb/rectangular_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/rectangular_array.png -------------------------------------------------------------------------------- /algos/tdfb/time_domain_fixed_beamformer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/time_domain_fixed_beamformer.rst -------------------------------------------------------------------------------- /algos/tdfb/two_beams_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/two_beams_left.png -------------------------------------------------------------------------------- /algos/tdfb/two_beams_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/two_beams_right.png -------------------------------------------------------------------------------- /algos/tdfb/xyz_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/algos/tdfb/xyz_array.png -------------------------------------------------------------------------------- /api/audio-stream-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/audio-stream-api.rst -------------------------------------------------------------------------------- /api/component-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/component-api.rst -------------------------------------------------------------------------------- /api/component-ext-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/component-ext-api.rst -------------------------------------------------------------------------------- /api/dai-drivers-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/dai-drivers-api.rst -------------------------------------------------------------------------------- /api/dma-drivers-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/dma-drivers-api.rst -------------------------------------------------------------------------------- /api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/index.rst -------------------------------------------------------------------------------- /api/memory-alloc-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/memory-alloc-api.rst -------------------------------------------------------------------------------- /api/platform-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/platform-api.rst -------------------------------------------------------------------------------- /api/pm-runtime-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/pm-runtime-api.rst -------------------------------------------------------------------------------- /api/uapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/uapi.rst -------------------------------------------------------------------------------- /api/uuid-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/api/uuid-api.rst -------------------------------------------------------------------------------- /architectures/firmware/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/index.rst -------------------------------------------------------------------------------- /architectures/firmware/intel/ace/iadk_modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/ace/iadk_modules.rst -------------------------------------------------------------------------------- /architectures/firmware/intel/ace/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/ace/index.rst -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/cavs-boot/apollolake/apl-boot-ldr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/cavs-boot/apollolake/apl-boot-ldr.rst -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/cavs-boot/apollolake/apl-boot-rom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/cavs-boot/apollolake/apl-boot-rom.rst -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/cavs-boot/apollolake/images/apl-rom-flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/cavs-boot/apollolake/images/apl-rom-flow.pu -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/cavs-boot/apollolake/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/cavs-boot/apollolake/index.rst -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/cavs-boot/cavs-dsp-boot-overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/cavs-boot/cavs-dsp-boot-overview.rst -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/cavs-boot/images/boot-dsp.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/cavs-boot/images/boot-dsp.pu -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/cavs-boot/images/boot-ldr-flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/cavs-boot/images/boot-ldr-flow.pu -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/cavs-boot/images/loading-bins.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/cavs-boot/images/loading-bins.pu -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/cavs-boot/images/write-bin.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/cavs-boot/images/write-bin.pu -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/cavs-boot/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/cavs-boot/index.rst -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/images/idc-send-message.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/images/idc-send-message.pu -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/index.rst -------------------------------------------------------------------------------- /architectures/firmware/intel/cavs/smp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/cavs/smp/index.rst -------------------------------------------------------------------------------- /architectures/firmware/intel/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/intel/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/component-mgmt-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/component-mgmt-api.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/component-module-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/component-module-api.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/component-overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/component-overview.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/images/comp-copy-flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/images/comp-copy-flow.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/images/comp-dev-states.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/images/comp-dev-states.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/images/comp-driver.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/images/comp-driver.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/images/comp-module-api.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/images/comp-module-api.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/images/comp-new-flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/images/comp-new-flow.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/images/comp-prepare-flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/images/comp-prepare-flow.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/images/component-mgmt-api.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/images/component-mgmt-api.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-common/components/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/components/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-common/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-common/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dai/images/dai-ops.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dai/images/dai-ops.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dai/images/dai-set-config.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dai/images/dai-set-config.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dai/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dai/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dma/images/dma-ops.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dma/images/dma-ops.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dma/images/dma-transfer.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dma/images/dma-transfer.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dma/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dma/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dma/intel/hda-dma.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dma/intel/hda-dma.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dma/intel/images/hda-host-output.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dma/intel/images/hda-host-output.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dma/intel/images/hda-link.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dma/intel/images/hda-link.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dma/intel/images/hda-start-flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dma/intel/images/hda-start-flow.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dma/intel/images/hda-stop-flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dma/intel/images/hda-stop-flow.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/dma/intel/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/dma/intel/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/images/device-disco.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/images/device-disco.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/images/device-probe.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/images/device-probe.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/images/device-remove.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/images/device-remove.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/drivers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/drivers/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/images/edf-scheduler-deps.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/images/edf-scheduler-deps.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/images/edf-scheduler-flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/images/edf-scheduler-flow.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/images/fw-arch-diag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/images/fw-arch-diag.png -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/images/ll-scheduler-deps.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/images/ll-scheduler-deps.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/images/ll-scheduler-flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/images/ll-scheduler-flow.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/images/memory-zones.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/images/memory-zones.dot -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/images/runtime-zone.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/images/runtime-zone.dot -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/images/scheduler-ops.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/images/scheduler-ops.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/images/system-zone.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/images/system-zone.dot -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/kd_integration/images/kd-component-diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/kd_integration/images/kd-component-diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/kd_integration/images/kd-e2e-sequence-diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/kd_integration/images/kd-e2e-sequence-diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/kd_integration/images/kd-state-diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/kd_integration/images/kd-state-diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/kd_integration/images/kd-timing-diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/kd_integration/images/kd-timing-diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/kd_integration/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/kd_integration/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/kd_integration/kd-integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/kd_integration/kd-integration.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/mem-mgmt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/mem-mgmt.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/overview.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pipelines/images/ppl-new.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pipelines/images/ppl-new.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pipelines/images/ppl-op-downstream.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pipelines/images/ppl-op-downstream.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pipelines/images/ppl-operations.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pipelines/images/ppl-operations.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pipelines/images/ppl-params.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pipelines/images/ppl-params.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pipelines/images/ppl-reset.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pipelines/images/ppl-reset.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pipelines/images/ppl-struct.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pipelines/images/ppl-struct.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pipelines/images/ppl-task.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pipelines/images/ppl-task.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pipelines/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pipelines/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pm-runtime/images/pm-dsp-core-idle.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pm-runtime/images/pm-dsp-core-idle.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pm-runtime/images/pm-dsp-core-init.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pm-runtime/images/pm-dsp-core-init.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pm-runtime/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pm-runtime/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pm-runtime/intel/images/dsp-core-lps-cavs-d0-d0i3-d0.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pm-runtime/intel/images/dsp-core-lps-cavs-d0-d0i3-d0.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pm-runtime/intel/pm-dsp-core-cavs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pm-runtime/intel/pm-dsp-core-cavs.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/pm-runtime/pm-dsp-core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/pm-runtime/pm-dsp-core.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-xtos/schedulers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-xtos/schedulers.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/app_layer/images/app_layer_diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/app_layer/images/app_layer_diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/app_layer/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/app_layer/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/images/overview_diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/images/overview_diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/images/sof_lib.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/images/sof_lib.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/images/sof_lib_zephyr.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/images/sof_lib_zephyr.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/async_messaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/async_messaging.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/dp_scheduling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/dp_scheduling.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/async_messaging/flow_prod_cons_same_core.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/async_messaging/flow_prod_cons_same_core.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/async_messaging/flow_prod_primary_cons_secondary_core.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/async_messaging/flow_prod_primary_cons_secondary_core.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1_1.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1_1.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1_2.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1_2.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1_3.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1_3.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1_4.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1_4.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1_5.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example1_5.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_1.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_1.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_1a.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_1a.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_2.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_2.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_2a.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_2a.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_3.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_3.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_4.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_4.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_5.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_5.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_6.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_6.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_7.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example2_7.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_1.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_1.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_2.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_2.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_3.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_3.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_4.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_4.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_5.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_5.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_6.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_6.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_7.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example3_7.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example4.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example4.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example4_1.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example4_1.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example4_2.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/example4_2.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/pic1_chains.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/dp_scheduling/pic1_chains.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/lib_manager/library_manager_delete_instance.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/lib_manager/library_manager_delete_instance.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/lib_manager/library_manager_init_instance.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/lib_manager/library_manager_init_instance.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/lib_manager/library_manager_load.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/lib_manager/library_manager_load.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/mpp_layer_diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/mpp_layer_diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/edf_scheduling.diag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/edf_scheduling.diag -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/example_DP_secondary_core_timeline.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/example_DP_secondary_core_timeline.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/example_LL_DP_timeline.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/example_LL_DP_timeline.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/example_multiple_cores_timeline.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/example_multiple_cores_timeline.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/example_task_with_budget.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/example_task_with_budget.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/schedulers_diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/schedulers_diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/schedulers_threads_periodic_update.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/schedulers_threads_periodic_update.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/schedulers_zephyr.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/images/mpp_scheduling/schedulers_zephyr.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/lib_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/lib_manager.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/mpp_overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/mpp_overview.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/mpp_layer/mpp_scheduling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/mpp_layer/mpp_scheduling.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/overview.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/kernel_services.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/kernel_services.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/power/dsp_fw_power_states.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/power/dsp_fw_power_states.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/power/dx_state_transitions.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/power/dx_state_transitions.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_disable_d0i3.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_disable_d0i3.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_dsp_idle.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_dsp_idle.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_enable_d0i3.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_enable_d0i3.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_primary_core_power_down.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_primary_core_power_down.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_secondary_core_boot.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_secondary_core_boot.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_secondary_core_power_down.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/power/flow_secondary_core_power_down.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/power/power_components.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/power/power_components.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/images/zephyr_kernel_diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/images/zephyr_kernel_diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/dmic/dmic_driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/dmic/dmic_driver.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/dmic/images/dmic_diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/dmic/images/dmic_diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/dmic/images/dmic_gateway_init.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/dmic/images/dmic_gateway_init.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/dmic/images/dmic_gateway_release.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/dmic/images/dmic_gateway_release.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/dmic/images/dmic_gateway_state_transitions.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/dmic/images/dmic_gateway_state_transitions.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/hda/hda_driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/hda/hda_driver.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/hda/images/hda_capture.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/hda/images/hda_capture.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/hda/images/hda_io_driver_deps.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/hda/images/hda_io_driver_deps.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/hda/images/hda_playback.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/hda/images/hda_playback.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/i2s/i2s_driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/i2s/i2s_driver.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/i2s/images/i2s_diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/i2s/images/i2s_diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/i2s/images/i2s_tdm.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/i2s/images/i2s_tdm.dot -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/images/io_drivers_diagram.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/images/io_drivers_diagram.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/io_drivers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/io_drivers/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/heap_sharing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/heap_sharing.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/dynamic_module_load.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/dynamic_module_load.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/heaps.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/heaps.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/memory_allocation.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/memory_allocation.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/memory_allocation_from_memory_driver.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/memory_allocation_from_memory_driver.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/memory_initialization.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/memory_initialization.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/memory_management_layers.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/images/memory_management_layers.pu -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/index.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/memory_management_driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/memory_management_driver.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/memory_management_flows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/memory_management_flows.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/memory_zones.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/memory_zones.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/memory_management/mpp_memory_management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/memory_management/mpp_memory_management.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/power_management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/power_management.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/rtos_layer/zephyr_kernel_overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/rtos_layer/zephyr_kernel_overview.rst -------------------------------------------------------------------------------- /architectures/firmware/sof-zephyr/zephyr_api_integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/firmware/sof-zephyr/zephyr_api_integration.rst -------------------------------------------------------------------------------- /architectures/host/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/host/index.rst -------------------------------------------------------------------------------- /architectures/host/linux_driver/architecture/images/sof-driver-arch-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/host/linux_driver/architecture/images/sof-driver-arch-1.png -------------------------------------------------------------------------------- /architectures/host/linux_driver/architecture/images/sof-driver-arch-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/host/linux_driver/architecture/images/sof-driver-arch-2.png -------------------------------------------------------------------------------- /architectures/host/linux_driver/architecture/sof_driver_arch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/host/linux_driver/architecture/sof_driver_arch.rst -------------------------------------------------------------------------------- /architectures/images/driver-arch-diag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/images/driver-arch-diag.png -------------------------------------------------------------------------------- /architectures/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/architectures/index.rst -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/conf.py -------------------------------------------------------------------------------- /contribute/contribute_guidelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/contribute_guidelines.rst -------------------------------------------------------------------------------- /contribute/doc_guidelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/doc_guidelines.rst -------------------------------------------------------------------------------- /contribute/dox-source-code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/dox-source-code.rst -------------------------------------------------------------------------------- /contribute/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/index.rst -------------------------------------------------------------------------------- /contribute/linux/development_tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/linux/development_tree.rst -------------------------------------------------------------------------------- /contribute/process/abiprocess.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/abiprocess.rst -------------------------------------------------------------------------------- /contribute/process/bug-tracking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/bug-tracking.rst -------------------------------------------------------------------------------- /contribute/process/docbuild.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/docbuild.rst -------------------------------------------------------------------------------- /contribute/process/images/abiprocess.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/abiprocess.pu -------------------------------------------------------------------------------- /contribute/process/images/audacity-clean-sine-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/audacity-clean-sine-wave.png -------------------------------------------------------------------------------- /contribute/process/images/audacity-end-of-glitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/audacity-end-of-glitch.png -------------------------------------------------------------------------------- /contribute/process/images/audacity-sine-wave-with-glitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/audacity-sine-wave-with-glitch.png -------------------------------------------------------------------------------- /contribute/process/images/audacity-start-of-glitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/audacity-start-of-glitch.png -------------------------------------------------------------------------------- /contribute/process/images/bug-life-cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/bug-life-cycle.png -------------------------------------------------------------------------------- /contribute/process/images/example-trace-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/example-trace-point.png -------------------------------------------------------------------------------- /contribute/process/images/fork-sof-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/fork-sof-docs.png -------------------------------------------------------------------------------- /contribute/process/images/label-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-blocked.png -------------------------------------------------------------------------------- /contribute/process/images/label-branch-glk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-branch-glk.png -------------------------------------------------------------------------------- /contribute/process/images/label-branch-master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-branch-master.png -------------------------------------------------------------------------------- /contribute/process/images/label-branch-v1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-branch-v1-2.png -------------------------------------------------------------------------------- /contribute/process/images/label-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-bug.png -------------------------------------------------------------------------------- /contribute/process/images/label-duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-duplicate.png -------------------------------------------------------------------------------- /contribute/process/images/label-invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-invalid.png -------------------------------------------------------------------------------- /contribute/process/images/label-need-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-need-info.png -------------------------------------------------------------------------------- /contribute/process/images/label-platform-apl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-platform-apl.png -------------------------------------------------------------------------------- /contribute/process/images/label-platform-byt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-platform-byt.png -------------------------------------------------------------------------------- /contribute/process/images/label-platform-glk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-platform-glk.png -------------------------------------------------------------------------------- /contribute/process/images/label-priorities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-priorities.png -------------------------------------------------------------------------------- /contribute/process/images/label-verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-verified.png -------------------------------------------------------------------------------- /contribute/process/images/label-will-not-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/contribute/process/images/label-will-not-fix.png -------------------------------------------------------------------------------- /developer_guides/add_new_arch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/add_new_arch.rst -------------------------------------------------------------------------------- /developer_guides/debugability/coredump-reader/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/coredump-reader/index.rst -------------------------------------------------------------------------------- /developer_guides/debugability/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/index.rst -------------------------------------------------------------------------------- /developer_guides/debugability/logger/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/logger/index.rst -------------------------------------------------------------------------------- /developer_guides/debugability/perf-counters/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/perf-counters/index.rst -------------------------------------------------------------------------------- /developer_guides/debugability/probes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/probes/index.rst -------------------------------------------------------------------------------- /developer_guides/debugability/ri-info/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/ri-info/index.rst -------------------------------------------------------------------------------- /developer_guides/debugability/ri-info/output_full_bytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/ri-info/output_full_bytes.txt -------------------------------------------------------------------------------- /developer_guides/debugability/ri-info/output_headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/ri-info/output_headers.txt -------------------------------------------------------------------------------- /developer_guides/debugability/ri-info/output_verbose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/ri-info/output_verbose.txt -------------------------------------------------------------------------------- /developer_guides/debugability/shell/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/shell/index.rst -------------------------------------------------------------------------------- /developer_guides/debugability/traces/images/build-traces.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/traces/images/build-traces.dot -------------------------------------------------------------------------------- /developer_guides/debugability/traces/images/process-traces.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/traces/images/process-traces.dot -------------------------------------------------------------------------------- /developer_guides/debugability/traces/images/trace-enable-flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/traces/images/trace-enable-flow.pu -------------------------------------------------------------------------------- /developer_guides/debugability/traces/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/debugability/traces/index.rst -------------------------------------------------------------------------------- /developer_guides/firmware/async_messaging_best_practices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/firmware/async_messaging_best_practices.rst -------------------------------------------------------------------------------- /developer_guides/firmware/cmake.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/firmware/cmake.rst -------------------------------------------------------------------------------- /developer_guides/firmware/component-tutorial/tut-i-basic-fw-code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/firmware/component-tutorial/tut-i-basic-fw-code.rst -------------------------------------------------------------------------------- /developer_guides/firmware/component-tutorial/tut-ii-topology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/firmware/component-tutorial/tut-ii-topology.rst -------------------------------------------------------------------------------- /developer_guides/firmware/component-tutorial/tut-iii-runtime-params.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/firmware/component-tutorial/tut-iii-runtime-params.rst -------------------------------------------------------------------------------- /developer_guides/firmware/component-tutorial/tut-intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/firmware/component-tutorial/tut-intro.rst -------------------------------------------------------------------------------- /developer_guides/firmware/component-tutorial/tut-iv-exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/firmware/component-tutorial/tut-iv-exceptions.rst -------------------------------------------------------------------------------- /developer_guides/firmware/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/firmware/index.rst -------------------------------------------------------------------------------- /developer_guides/firmware/llext_modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/firmware/llext_modules.rst -------------------------------------------------------------------------------- /developer_guides/firmware/porting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/firmware/porting.rst -------------------------------------------------------------------------------- /developer_guides/fuzzing/fuzzing_in_docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/fuzzing/fuzzing_in_docker.rst -------------------------------------------------------------------------------- /developer_guides/fuzzing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/fuzzing/index.rst -------------------------------------------------------------------------------- /developer_guides/fuzzing/testbench_afl_fuzzing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/fuzzing/testbench_afl_fuzzing.rst -------------------------------------------------------------------------------- /developer_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/index.rst -------------------------------------------------------------------------------- /developer_guides/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/introduction.rst -------------------------------------------------------------------------------- /developer_guides/linux_driver/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/linux_driver/index.rst -------------------------------------------------------------------------------- /developer_guides/linux_driver/third_party/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/linux_driver/third_party/index.rst -------------------------------------------------------------------------------- /developer_guides/linux_driver/third_party/keyword_detect/keyword_detect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/linux_driver/third_party/keyword_detect/keyword_detect.rst -------------------------------------------------------------------------------- /developer_guides/rimage/extended_manifest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/rimage/extended_manifest.rst -------------------------------------------------------------------------------- /developer_guides/rimage/images/ext_man_build_flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/rimage/images/ext_man_build_flow.pu -------------------------------------------------------------------------------- /developer_guides/rimage/images/image_build_flow.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/rimage/images/image_build_flow.pu -------------------------------------------------------------------------------- /developer_guides/rimage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/rimage/index.rst -------------------------------------------------------------------------------- /developer_guides/tech/build-cmocka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/tech/build-cmocka.rst -------------------------------------------------------------------------------- /developer_guides/tech/compile_wsl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/tech/compile_wsl.rst -------------------------------------------------------------------------------- /developer_guides/testbench/build_testbench.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/testbench/build_testbench.rst -------------------------------------------------------------------------------- /developer_guides/testbench/debug_in_testbench.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/testbench/debug_in_testbench.rst -------------------------------------------------------------------------------- /developer_guides/testbench/fig_add_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/testbench/fig_add_breakpoint.png -------------------------------------------------------------------------------- /developer_guides/testbench/fig_ddd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/testbench/fig_ddd.png -------------------------------------------------------------------------------- /developer_guides/testbench/fig_ddd_structs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/testbench/fig_ddd_structs.png -------------------------------------------------------------------------------- /developer_guides/testbench/fig_mhwaveedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/testbench/fig_mhwaveedit.png -------------------------------------------------------------------------------- /developer_guides/testbench/fig_process_test_eqiir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/testbench/fig_process_test_eqiir.png -------------------------------------------------------------------------------- /developer_guides/testbench/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/testbench/index.rst -------------------------------------------------------------------------------- /developer_guides/testbench/prepare_new_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/testbench/prepare_new_component.rst -------------------------------------------------------------------------------- /developer_guides/testbench/test_audio_quality.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/testbench/test_audio_quality.rst -------------------------------------------------------------------------------- /developer_guides/topology/images/tplg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/topology/images/tplg1.png -------------------------------------------------------------------------------- /developer_guides/topology/images/tplg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/topology/images/tplg2.png -------------------------------------------------------------------------------- /developer_guides/topology/topology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/topology/topology.rst -------------------------------------------------------------------------------- /developer_guides/topology2/topology2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/topology2/topology2.rst -------------------------------------------------------------------------------- /developer_guides/tuning/sof-ctl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/tuning/sof-ctl.rst -------------------------------------------------------------------------------- /developer_guides/unit_tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/unit_tests.rst -------------------------------------------------------------------------------- /developer_guides/uuid/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/uuid/index.rst -------------------------------------------------------------------------------- /developer_guides/virtualization/files/q-v6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/virtualization/files/q-v6.sh -------------------------------------------------------------------------------- /developer_guides/virtualization/images/data-flow-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/virtualization/images/data-flow-v1.png -------------------------------------------------------------------------------- /developer_guides/virtualization/images/data-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/virtualization/images/data-flow.png -------------------------------------------------------------------------------- /developer_guides/virtualization/images/ipc-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/virtualization/images/ipc-v3.png -------------------------------------------------------------------------------- /developer_guides/virtualization/images/ipc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/virtualization/images/ipc.png -------------------------------------------------------------------------------- /developer_guides/virtualization/images/topology-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/virtualization/images/topology-v2.png -------------------------------------------------------------------------------- /developer_guides/virtualization/images/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/virtualization/images/topology.png -------------------------------------------------------------------------------- /developer_guides/virtualization/running.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/virtualization/running.rst -------------------------------------------------------------------------------- /developer_guides/virtualization/virtualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/virtualization/virtualization.rst -------------------------------------------------------------------------------- /developer_guides/xtrun/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/developer_guides/xtrun/index.rst -------------------------------------------------------------------------------- /getting_started/build-guide/build-3rd-party-toolchain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/build-guide/build-3rd-party-toolchain.rst -------------------------------------------------------------------------------- /getting_started/build-guide/build-from-scratch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/build-guide/build-from-scratch.rst -------------------------------------------------------------------------------- /getting_started/build-guide/build-with-docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/build-guide/build-with-docker.rst -------------------------------------------------------------------------------- /getting_started/build-guide/build-with-zephyr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/build-guide/build-with-zephyr.rst -------------------------------------------------------------------------------- /getting_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/index.rst -------------------------------------------------------------------------------- /getting_started/intel_debug/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/intel_debug/introduction.rst -------------------------------------------------------------------------------- /getting_started/intel_debug/suggestions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/intel_debug/suggestions.rst -------------------------------------------------------------------------------- /getting_started/loadable_modules/lmdk_user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/loadable_modules/lmdk_user_guide.rst -------------------------------------------------------------------------------- /getting_started/nxp/sof_imx_user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/nxp/sof_imx_user_guide.rst -------------------------------------------------------------------------------- /getting_started/setup_linux/install_locally.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/setup_linux/install_locally.rst -------------------------------------------------------------------------------- /getting_started/setup_linux/prepare_build_environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/setup_linux/prepare_build_environment.rst -------------------------------------------------------------------------------- /getting_started/setup_linux/setup_ktest_environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/setup_linux/setup_ktest_environment.rst -------------------------------------------------------------------------------- /getting_started/setup_special_device/images/minnow_turbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/setup_special_device/images/minnow_turbot.png -------------------------------------------------------------------------------- /getting_started/setup_special_device/setup_minnowboard_turbot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/setup_special_device/setup_minnowboard_turbot.rst -------------------------------------------------------------------------------- /getting_started/setup_special_device/setup_up_2_board.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/getting_started/setup_special_device/setup_up_2_board.rst -------------------------------------------------------------------------------- /images/logo_sof_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/images/logo_sof_dark.png -------------------------------------------------------------------------------- /images/logo_sof_dark_56h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/images/logo_sof_dark_56h.png -------------------------------------------------------------------------------- /images/logo_sof_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/images/logo_sof_white.png -------------------------------------------------------------------------------- /images/logo_sof_white_200w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/images/logo_sof_white_200w.png -------------------------------------------------------------------------------- /images/sof-favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/images/sof-favicon-16x16.png -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/index.rst -------------------------------------------------------------------------------- /introduction/images/pipeline-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/introduction/images/pipeline-overview.png -------------------------------------------------------------------------------- /introduction/images/sdk-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/introduction/images/sdk-overview.png -------------------------------------------------------------------------------- /introduction/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/introduction/index.rst -------------------------------------------------------------------------------- /maintainers/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/maintainers/admin.rst -------------------------------------------------------------------------------- /maintainers/code_owners.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/maintainers/code_owners.rst -------------------------------------------------------------------------------- /maintainers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/maintainers/index.rst -------------------------------------------------------------------------------- /maintainers/merge_rights.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/maintainers/merge_rights.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/make.bat -------------------------------------------------------------------------------- /platforms/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/index.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/apollolake/apl-memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/apollolake/apl-memory.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/apollolake/images/apl-memory.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/apollolake/images/apl-memory.dot -------------------------------------------------------------------------------- /platforms/intel-cavs/apollolake/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/apollolake/index.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/cannonlake/cnl-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/cannonlake/cnl-config.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/cannonlake/cnl-memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/cannonlake/cnl-memory.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/cannonlake/images/cnl-memory.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/cannonlake/images/cnl-memory.dot -------------------------------------------------------------------------------- /platforms/intel-cavs/cannonlake/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/cannonlake/index.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/commons/images/core-enable.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/commons/images/core-enable.pu -------------------------------------------------------------------------------- /platforms/intel-cavs/commons/images/work-smp-cavs.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/commons/images/work-smp-cavs.pu -------------------------------------------------------------------------------- /platforms/intel-cavs/commons/images/work-st.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/commons/images/work-st.pu -------------------------------------------------------------------------------- /platforms/intel-cavs/commons/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/commons/index.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/commons/multicore-processing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/commons/multicore-processing.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/commons/work-queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/commons/work-queue.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/icelake/icl-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/icelake/icl-config.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/icelake/icl-memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/icelake/icl-memory.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/icelake/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/icelake/index.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/images/cavs-platform-deps.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/images/cavs-platform-deps.pu -------------------------------------------------------------------------------- /platforms/intel-cavs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/index.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/tigerlake/images/tgl-memory.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/tigerlake/images/tgl-memory.dot -------------------------------------------------------------------------------- /platforms/intel-cavs/tigerlake/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/tigerlake/index.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/tigerlake/tgl-config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/tigerlake/tgl-config.rst -------------------------------------------------------------------------------- /platforms/intel-cavs/tigerlake/tgl-memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-cavs/tigerlake/tgl-memory.rst -------------------------------------------------------------------------------- /platforms/intel-legacy/baytrail/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-legacy/baytrail/index.rst -------------------------------------------------------------------------------- /platforms/intel-legacy/broadwell/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-legacy/broadwell/index.rst -------------------------------------------------------------------------------- /platforms/intel-legacy/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-legacy/index.rst -------------------------------------------------------------------------------- /platforms/intel-legacy/merrifield/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/platforms/intel-legacy/merrifield/index.rst -------------------------------------------------------------------------------- /presentations/images/liam_elce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/presentations/images/liam_elce.png -------------------------------------------------------------------------------- /presentations/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/presentations/index.rst -------------------------------------------------------------------------------- /presentations/pdf/SOF_DEMO_equalizer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/presentations/pdf/SOF_DEMO_equalizer.pdf -------------------------------------------------------------------------------- /presentations/pdf/SOF_ELCE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/presentations/pdf/SOF_ELCE.pdf -------------------------------------------------------------------------------- /presentations/pdf/SOF_OSFC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/presentations/pdf/SOF_OSFC.pdf -------------------------------------------------------------------------------- /release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/release.rst -------------------------------------------------------------------------------- /rules-woke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/rules-woke.yaml -------------------------------------------------------------------------------- /scripts/docker_build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/scripts/docker_build/Dockerfile -------------------------------------------------------------------------------- /scripts/docker_build/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/scripts/docker_build/docker-build.sh -------------------------------------------------------------------------------- /scripts/plantuml.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/scripts/plantuml.cfg -------------------------------------------------------------------------------- /scripts/plantuml.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/scripts/plantuml.jar -------------------------------------------------------------------------------- /scripts/publish-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/scripts/publish-README.md -------------------------------------------------------------------------------- /scripts/publish-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/scripts/publish-index.html -------------------------------------------------------------------------------- /scripts/requirements-lax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/scripts/requirements-lax.txt -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/setup.py -------------------------------------------------------------------------------- /static/sof-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/static/sof-custom.css -------------------------------------------------------------------------------- /substitutions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/substitutions.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/tox.ini -------------------------------------------------------------------------------- /tsc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/tsc/index.rst -------------------------------------------------------------------------------- /tsc/meetings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/tsc/meetings.rst -------------------------------------------------------------------------------- /tsc/representatives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesofproject/sof-docs/HEAD/tsc/representatives.rst --------------------------------------------------------------------------------