21 items
NAME ↑ SIZE MODIFIED PERMS ACTIONS
.. / Parent Directory
intel — dir
2026-05-19 19:43 · rwxr-xr-x
2026-05-19 19:43 rwxr-xr-x
sof — dir
2026-06-09 20:11 · rwxr-xr-x
2026-06-09 20:11 rwxr-xr-x
asequencer.h — 23.25 KB
2026-05-19 19:43 · rw-r--r--
23.25 KB 2026-05-19 19:43 rw-r--r--
asoc.h — 19.7 KB
2026-05-19 19:43 · rw-r--r--
19.7 KB 2026-05-19 19:43 rw-r--r--
asound.h — 54.01 KB
2026-05-19 19:43 · rw-r--r--
54.01 KB 2026-05-19 19:43 rw-r--r--
asound_fm.h — 3.55 KB
2026-05-19 19:43 · rw-r--r--
3.55 KB 2026-05-19 19:43 rw-r--r--
compress_offload.h — 7.79 KB
2026-05-19 19:43 · rw-r--r--
7.79 KB 2026-05-19 19:43 rw-r--r--
compress_params.h — 16.69 KB
2026-05-19 19:43 · rw-r--r--
16.69 KB 2026-05-19 19:43 rw-r--r--
emu10k1.h — 18.45 KB
2026-05-19 19:43 · rw-r--r--
18.45 KB 2026-05-19 19:43 rw-r--r--
fcp.h — 3.65 KB
2026-05-19 19:43 · rw-r--r--
3.65 KB 2026-05-19 19:43 rw-r--r--
firewire.h — 10.76 KB
2026-05-19 19:43 · rw-r--r--
10.76 KB 2026-05-19 19:43 rw-r--r--
hdsp.h — 2.03 KB
2026-05-19 19:43 · rw-r--r--
2.03 KB 2026-05-19 19:43 rw-r--r--
hdspm.h — 4.38 KB
2026-05-19 19:43 · rw-r--r--
4.38 KB 2026-05-19 19:43 rw-r--r--
sb16_csp.h — 3.48 KB
2026-05-19 19:43 · rw-r--r--
3.48 KB 2026-05-19 19:43 rw-r--r--
scarlett2.h — 1.58 KB
2026-05-19 19:43 · rw-r--r--
1.58 KB 2026-05-19 19:43 rw-r--r--
sfnt_info.h — 6.6 KB
2026-05-19 19:43 · rw-r--r--
6.6 KB 2026-05-19 19:43 rw-r--r--
skl-tplg-interface.h — 3.72 KB
2026-05-19 19:43 · rw-r--r--
3.72 KB 2026-05-19 19:43 rw-r--r--
snd_ar_tokens.h — 7.48 KB
2026-05-19 19:43 · rw-r--r--
7.48 KB 2026-05-19 19:43 rw-r--r--
snd_sst_tokens.h — 11.48 KB
2026-05-19 19:43 · rw-r--r--
11.48 KB 2026-05-19 19:43 rw-r--r--
tlv.h — 4.05 KB
2026-05-19 19:43 · rw-r--r--
4.05 KB 2026-05-19 19:43 rw-r--r--
usb_stream.h — 1.21 KB
2026-05-19 19:43 · rw-r--r--
1.21 KB 2026-05-19 19:43 rw-r--r--
ONLINE
sound
21 items
01:02:22
TERMINAL FM
Edit
Preview
Download
Rename
Copy
Chmod
Delete
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Focusrite Scarlett 2 Protocol Driver for ALSA * (including Scarlett 2nd Gen, 3rd Gen, 4th Gen, Clarett USB, and * Clarett+ series products) * * Copyright (c) 2023 by Geoffrey D. Bennett */ #ifndef __UAPI_SOUND_SCARLETT2_H #define __UAPI_SOUND_SCARLETT2_H #include #include #define SCARLETT2_HWDEP_MAJOR 1 #define SCARLETT2_HWDEP_MINOR 0 #define SCARLETT2_HWDEP_SUBMINOR 0 #define SCARLETT2_HWDEP_VERSION \ ((SCARLETT2_HWDEP_MAJOR << 16) | \ (SCARLETT2_HWDEP_MINOR << 8) | \ SCARLETT2_HWDEP_SUBMINOR) #define SCARLETT2_HWDEP_VERSION_MAJOR(v) (((v) >> 16) & 0xFF) #define SCARLETT2_HWDEP_VERSION_MINOR(v) (((v) >> 8) & 0xFF) #define SCARLETT2_HWDEP_VERSION_SUBMINOR(v) ((v) & 0xFF) /* Get protocol version */ #define SCARLETT2_IOCTL_PVERSION _IOR('S', 0x60, int) /* Reboot */ #define SCARLETT2_IOCTL_REBOOT _IO('S', 0x61) /* Select flash segment */ #define SCARLETT2_SEGMENT_ID_SETTINGS 0 #define SCARLETT2_SEGMENT_ID_FIRMWARE 1 #define SCARLETT2_SEGMENT_ID_COUNT 2 #define SCARLETT2_IOCTL_SELECT_FLASH_SEGMENT _IOW('S', 0x62, int) /* Erase selected flash segment */ #define SCARLETT2_IOCTL_ERASE_FLASH_SEGMENT _IO('S', 0x63) /* Get selected flash segment erase progress * 1 through to num_blocks, or 255 for complete */ struct scarlett2_flash_segment_erase_progress { unsigned char progress; unsigned char num_blocks; }; #define SCARLETT2_IOCTL_GET_ERASE_PROGRESS \ _IOR('S', 0x64, struct scarlett2_flash_segment_erase_progress) #endif /* __UAPI_SOUND_SCARLETT2_H */