Skip to content

Commit

Permalink
Add sof-v2.10 for Intel hardware
Browse files Browse the repository at this point in the history
Add binaries for supported Intel systems.

Community binaries build identification "Build #4542".

Also contains topology2/IPC4 topology files for all configurations
supported in the release.

Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
  • Loading branch information
kv2019i committed Jul 3, 2024
1 parent e0e77a6 commit 50e0b17
Show file tree
Hide file tree
Showing 70 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions v2.10.x/sof-ace-tplg-v2.10
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added v2.10.x/sof-ipc4-tplg-v2.10/sof-hda-generic.tplg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added v2.10.x/sof-ipc4-tplg-v2.10/sof-lnl-rt722-l0.tplg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added v2.10.x/sof-ipc4-tplg-v2.10/sof-mtl-rt5650.tplg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added v2.10.x/sof-ipc4-tplg-v2.10/sof-mtl-rt712-l0.tplg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added v2.10.x/sof-ipc4-tplg-v2.10/sof-mtl-rt722-l0.tplg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added v2.10.x/sof-ipc4-tplg-v2.10/sof-tgl-rt712.tplg
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions v2.10.x/sof-ipc4-v2.10/adl-n/community/sof-adl-n.ri
1 change: 1 addition & 0 deletions v2.10.x/sof-ipc4-v2.10/adl-s/community/sof-adl-s.ri
Binary file added v2.10.x/sof-ipc4-v2.10/adl/community/sof-adl.ri
Binary file not shown.
1 change: 1 addition & 0 deletions v2.10.x/sof-ipc4-v2.10/arl-s/community/sof-arl-s.ri
1 change: 1 addition & 0 deletions v2.10.x/sof-ipc4-v2.10/arl/community/sof-arl.ri
1 change: 1 addition & 0 deletions v2.10.x/sof-ipc4-v2.10/ehl/community/sof-ehl.ri
Binary file added v2.10.x/sof-ipc4-v2.10/lnl/community/sof-lnl.ri
Binary file not shown.
Binary file added v2.10.x/sof-ipc4-v2.10/mtl/community/sof-mtl.ri
Binary file not shown.
1 change: 1 addition & 0 deletions v2.10.x/sof-ipc4-v2.10/rpl-s/community/sof-rpl-s.ri
1 change: 1 addition & 0 deletions v2.10.x/sof-ipc4-v2.10/rpl/community/sof-rpl.ri
Binary file not shown.
1 change: 1 addition & 0 deletions v2.10.x/sof-ipc4-v2.10/tgl/community/sof-rpl.ri
Binary file added v2.10.x/sof-ipc4-v2.10/tgl/community/sof-tgl.ri
Binary file not shown.
38 changes: 38 additions & 0 deletions v2.10.x/tools-v2.10/mtrace-reader.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/usr/bin/env python3
# SPDX-License-Identifier: BSD-3-Clause
#
# Copyright (c) 2022, Intel Corporation. All rights reserved.

#pylint:disable=mixed-indentation

# Tool to stream data from Linux SOF driver "mtrace" debugfs
# interface to standard output. Plain "cat" is not sufficient
# as each read() syscall returns log data with a 32bit binary
# header, containing the payload length.

import struct
import os
import sys

READ_BUFFER = 16384
MTRACE_FILE = "/sys/kernel/debug/sof/mtrace/core0"

fd = os.open(MTRACE_FILE, os.O_RDONLY)
while fd >= 0:
# direct unbuffered os.read() must be used to comply with
# debugfs protocol used. each non-zero read will return
# a buffer containing a 32bit header and a payload
read_bytes = os.read(fd, READ_BUFFER)

# handle end-of-file
if len(read_bytes) == 0:
continue

if len(read_bytes) <= 4:
continue

header = struct.unpack('I', read_bytes[0:4])
data_len = header[0]
data = read_bytes[4:4+data_len]

os.write(sys.stdout.fileno(), data)
Binary file added v2.10.x/tools-v2.10/sof-ctl
Binary file not shown.
Binary file added v2.10.x/tools-v2.10/sof-probes
Binary file not shown.

0 comments on commit 50e0b17

Please sign in to comment.