Server IP : 85.214.239.14 / Your IP : 3.22.75.223 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/usr/include/sound/sof/ |
Upload File : |
/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */ /* * This file is provided under a dual BSD/GPLv2 license. When using or * redistributing this file, you may do so under either license. * * Copyright(c) 2018 Intel Corporation. All rights reserved. */ #ifndef __INCLUDE_UAPI_SOUND_SOF_USER_HEADER_H__ #define __INCLUDE_UAPI_SOUND_SOF_USER_HEADER_H__ #include <linux/types.h> /* * Header for all non IPC ABI data. * * Identifies data type, size and ABI. * Used by any bespoke component data structures or binary blobs. */ struct sof_abi_hdr { __u32 magic; /**< 'S', 'O', 'F', '\0' */ __u32 type; /**< component specific type */ __u32 size; /**< size in bytes of data excl. this struct */ __u32 abi; /**< SOF ABI version */ __u32 reserved[4]; /**< reserved for future use */ __u32 data[]; /**< Component data - opaque to core */ } __attribute__((packed)); #define SOF_MANIFEST_DATA_TYPE_NHLT 1 /** * struct sof_manifest_tlv - SOF manifest TLV data * @type: type of data * @size: data size (not including the size of this struct) * @data: payload data */ struct sof_manifest_tlv { __le32 type; __le32 size; __u8 data[]; }; /** * struct sof_manifest - SOF topology manifest * @abi_major: Major ABI version * @abi_minor: Minor ABI version * @abi_patch: ABI patch * @count: count of tlv items * @items: consecutive variable size tlv items */ struct sof_manifest { __le16 abi_major; __le16 abi_minor; __le16 abi_patch; __le16 count; struct sof_manifest_tlv items[]; }; #endif