blob: a3f9b1bc7dcc9859beb6d6fdd76f510043d4acbb [file] [log] [blame]
Wai Yew CHAY8cc72362009-05-14 08:05:58 +02001/**
2 * Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved.
3 *
4 * This source file is released under GPL v2 license (no other versions).
5 * See the COPYING file included in the main directory of this source
6 * distribution for the license terms and conditions.
7 *
8 * @File ctatc.h
9 *
10 * @Brief
11 * This file contains the definition of the device resource management object.
12 *
13 * @Author Liu Chun
14 * @Date Mar 28 2008
15 *
16 */
17
18#ifndef CTATC_H
19#define CTATC_H
20
21#include <linux/types.h>
22#include <linux/spinlock_types.h>
23#include <linux/pci.h>
24#include <linux/timer.h>
25#include <sound/core.h>
26
27#include "ctvmem.h"
28#include "ctresource.h"
29
30enum CTALSADEVS { /* Types of alsa devices */
31 FRONT,
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020032 SURROUND,
Takashi Iwai8372d4982009-06-02 14:27:56 +020033 CLFE,
34 SIDE,
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020035 IEC958,
36 MIXER,
37 NUM_CTALSADEVS /* This should always be the last */
38};
39
40enum CTCARDS {
41 CTSB0760,
42 CTHENDRIX,
43 CTSB08801,
44 CTSB08802,
45 CTSB08803,
46 NUM_CTCARDS /* This should always be the last */
47};
48
49struct ct_atc_chip_sub_details {
50 u16 subsys;
51 const char *nm_model;
52};
53
54struct ct_atc_chip_details {
55 u16 vendor;
56 u16 device;
57 const struct ct_atc_chip_sub_details *sub_details;
58 const char *nm_card;
59};
60
61struct ct_atc;
Takashi Iwaib7bbf872009-06-05 16:11:07 +020062struct ct_timer;
63struct ct_timer_instance;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020064
65/* alsa pcm stream descriptor */
66struct ct_atc_pcm {
67 struct snd_pcm_substream *substream;
68 void (*interrupt)(struct ct_atc_pcm *apcm);
Takashi Iwaib7bbf872009-06-05 16:11:07 +020069 struct ct_timer_instance *timer;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020070 unsigned int started:1;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020071
72 /* Only mono and interleaved modes are supported now. */
73 struct ct_vm_block *vm_block;
74 void *src; /* SRC for interacting with host memory */
75 void **srccs; /* SRCs for sample rate conversion */
76 void **srcimps; /* SRC Input Mappers */
77 void **amixers; /* AMIXERs for routing converted data */
78 void *mono; /* A SUM resource for mixing chs to one */
79 unsigned char n_srcc; /* Number of converting SRCs */
80 unsigned char n_srcimp; /* Number of SRC Input Mappers */
81 unsigned char n_amixer; /* Number of AMIXERs */
82};
83
84/* Chip resource management object */
85struct ct_atc {
86 struct pci_dev *pci;
87 struct snd_card *card;
88 unsigned int rsr; /* reference sample rate in Hz */
89 unsigned int msr; /* master sample rate in rsr */
90 unsigned int pll_rate; /* current rate of Phase Lock Loop */
91
92 const struct ct_atc_chip_details *chip_details;
93 enum CTCARDS model;
94 /* Create all alsa devices */
95 int (*create_alsa_devs)(struct ct_atc *atc);
96
97 struct ct_vm *vm; /* device virtual memory manager for this card */
98 int (*map_audio_buffer)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
99 void (*unmap_audio_buffer)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
100 unsigned long (*get_ptp_phys)(struct ct_atc *atc, int index);
101
102 spinlock_t atc_lock;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200103
104 int (*pcm_playback_prepare)(struct ct_atc *atc,
105 struct ct_atc_pcm *apcm);
106 int (*pcm_playback_start)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
107 int (*pcm_playback_stop)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
108 int (*pcm_playback_position)(struct ct_atc *atc,
109 struct ct_atc_pcm *apcm);
110 int (*spdif_passthru_playback_prepare)(struct ct_atc *atc,
111 struct ct_atc_pcm *apcm);
112 int (*pcm_capture_prepare)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
113 int (*pcm_capture_start)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
114 int (*pcm_capture_stop)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
115 int (*pcm_capture_position)(struct ct_atc *atc,
116 struct ct_atc_pcm *apcm);
117 int (*pcm_release_resources)(struct ct_atc *atc,
118 struct ct_atc_pcm *apcm);
119 int (*select_line_in)(struct ct_atc *atc);
120 int (*select_mic_in)(struct ct_atc *atc);
121 int (*select_digit_io)(struct ct_atc *atc);
122 int (*line_front_unmute)(struct ct_atc *atc, unsigned char state);
123 int (*line_surround_unmute)(struct ct_atc *atc, unsigned char state);
124 int (*line_clfe_unmute)(struct ct_atc *atc, unsigned char state);
125 int (*line_rear_unmute)(struct ct_atc *atc, unsigned char state);
126 int (*line_in_unmute)(struct ct_atc *atc, unsigned char state);
127 int (*spdif_out_unmute)(struct ct_atc *atc, unsigned char state);
128 int (*spdif_in_unmute)(struct ct_atc *atc, unsigned char state);
129 int (*spdif_out_get_status)(struct ct_atc *atc, unsigned int *status);
130 int (*spdif_out_set_status)(struct ct_atc *atc, unsigned int status);
131 int (*spdif_out_passthru)(struct ct_atc *atc, unsigned char state);
132 int (*have_digit_io_switch)(struct ct_atc *atc);
133
134 /* Don't touch! Used for internal object. */
135 void *rsc_mgrs[NUM_RSCTYP]; /* chip resource managers */
136 void *mixer; /* internal mixer object */
137 void *hw; /* chip specific hardware access object */
138 void **daios; /* digital audio io resources */
139 void **pcm; /* SUMs for collecting all pcm stream */
140 void **srcs; /* Sample Rate Converters for input signal */
141 void **srcimps; /* input mappers for SRCs */
142 unsigned char n_daio;
143 unsigned char n_src;
144 unsigned char n_srcimp;
145 unsigned char n_pcm;
Takashi Iwaib7bbf872009-06-05 16:11:07 +0200146
147 struct ct_timer *timer;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200148};
149
150
151int __devinit ct_atc_create(struct snd_card *card, struct pci_dev *pci,
152 unsigned int rsr, unsigned int msr,
153 struct ct_atc **ratc);
154
155#endif /* CTATC_H */