cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

dice-harman.c (706B)


      1// SPDX-License-Identifier: GPL-2.0
      2// dice-harman.c - a part of driver for DICE based devices
      3//
      4// Copyright (c) 2021 Takashi Sakamoto
      5//
      6// Licensed under the terms of the GNU General Public License, version 2.
      7
      8#include "dice.h"
      9
     10int snd_dice_detect_harman_formats(struct snd_dice *dice)
     11{
     12	int i;
     13
     14	// Lexicon I-ONYX FW810s supports sampling transfer frequency up to
     15	// 96.0 kHz, 12 PCM channels and 1 MIDI channel in its first tx stream
     16	// , 10 PCM channels and 1 MIDI channel in its first rx stream for all
     17	// of the frequencies.
     18	for (i = 0; i < 2; ++i) {
     19		dice->tx_pcm_chs[0][i] = 12;
     20		dice->tx_midi_ports[0] = 1;
     21		dice->rx_pcm_chs[0][i] = 10;
     22		dice->rx_midi_ports[0] = 1;
     23	}
     24
     25	return 0;
     26}