blob: de59bbf2702f53c88b7a226d8ba15634cbd93ae5 [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 cthardware.h
9 *
10 * @Brief
11 * This file contains the definition of hardware access methord.
12 *
13 * @Author Liu Chun
14 * @Date May 13 2008
15 *
16 */
17
18#ifndef CTHARDWARE_H
19#define CTHARDWARE_H
20
21#include <linux/types.h>
22#include <linux/pci.h>
23
24enum CHIPTYP {
25 ATC20K1,
26 ATC20K2,
27 ATCNONE
28};
29
Takashi Iwai94701952009-06-08 18:10:32 +020030enum CTCARDS {
31 /* 20k1 models */
32 CTSB055X,
Takashi Iwaia8f43102009-06-22 07:36:52 +020033 CT20K1_MODEL_FIRST = CTSB055X,
Takashi Iwai94701952009-06-08 18:10:32 +020034 CTSB073X,
35 CTUAA,
36 CT20K1_UNKNOWN,
37 /* 20k2 models */
38 CTSB0760,
Takashi Iwaia8f43102009-06-22 07:36:52 +020039 CT20K2_MODEL_FIRST = CTSB0760,
Takashi Iwai94701952009-06-08 18:10:32 +020040 CTHENDRIX,
41 CTSB0880,
Harry Butterworth55309212011-06-11 16:02:06 +080042 CTSB1270,
Takashi Iwaia8f43102009-06-22 07:36:52 +020043 CT20K2_UNKNOWN,
Takashi Iwai94701952009-06-08 18:10:32 +020044 NUM_CTCARDS /* This should always be the last */
45};
46
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020047/* Type of input source for ADC */
48enum ADCSRC{
49 ADC_MICIN,
50 ADC_LINEIN,
51 ADC_VIDEO,
52 ADC_AUX,
53 ADC_NONE /* Switch to digital input */
54};
55
56struct card_conf {
57 /* device virtual mem page table page physical addr
58 * (supporting one page table page now) */
59 unsigned long vm_pgt_phys;
60 unsigned int rsr; /* reference sample rate in Hzs*/
61 unsigned int msr; /* master sample rate in rsrs */
62};
63
64struct hw {
65 int (*card_init)(struct hw *hw, struct card_conf *info);
66 int (*card_stop)(struct hw *hw);
67 int (*pll_init)(struct hw *hw, unsigned int rsr);
Wai Yew CHAY29959a02009-06-22 14:52:34 +020068#ifdef CONFIG_PM
69 int (*suspend)(struct hw *hw, pm_message_t state);
70 int (*resume)(struct hw *hw, struct card_conf *info);
71#endif
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020072 int (*is_adc_source_selected)(struct hw *hw, enum ADCSRC source);
73 int (*select_adc_source)(struct hw *hw, enum ADCSRC source);
74 int (*have_digit_io_switch)(struct hw *hw);
Harry Butterworth55309212011-06-11 16:02:06 +080075 int (*have_dedicated_mic)(struct hw *hw);
76 int (*have_output_switch)(struct hw *hw);
77 int (*output_switch_get)(struct hw *hw);
78 int (*output_switch_put)(struct hw *hw, int position);
79 int (*have_mic_source_switch)(struct hw *hw);
80 int (*mic_source_switch_get)(struct hw *hw);
81 int (*mic_source_switch_put)(struct hw *hw, int position);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020082
83 /* SRC operations */
84 int (*src_rsc_get_ctrl_blk)(void **rblk);
85 int (*src_rsc_put_ctrl_blk)(void *blk);
86 int (*src_set_state)(void *blk, unsigned int state);
87 int (*src_set_bm)(void *blk, unsigned int bm);
88 int (*src_set_rsr)(void *blk, unsigned int rsr);
89 int (*src_set_sf)(void *blk, unsigned int sf);
90 int (*src_set_wr)(void *blk, unsigned int wr);
91 int (*src_set_pm)(void *blk, unsigned int pm);
92 int (*src_set_rom)(void *blk, unsigned int rom);
93 int (*src_set_vo)(void *blk, unsigned int vo);
94 int (*src_set_st)(void *blk, unsigned int st);
95 int (*src_set_ie)(void *blk, unsigned int ie);
96 int (*src_set_ilsz)(void *blk, unsigned int ilsz);
97 int (*src_set_bp)(void *blk, unsigned int bp);
98 int (*src_set_cisz)(void *blk, unsigned int cisz);
99 int (*src_set_ca)(void *blk, unsigned int ca);
100 int (*src_set_sa)(void *blk, unsigned int sa);
101 int (*src_set_la)(void *blk, unsigned int la);
102 int (*src_set_pitch)(void *blk, unsigned int pitch);
103 int (*src_set_clear_zbufs)(void *blk, unsigned int clear);
104 int (*src_set_dirty)(void *blk, unsigned int flags);
105 int (*src_set_dirty_all)(void *blk);
106 int (*src_commit_write)(struct hw *hw, unsigned int idx, void *blk);
107 int (*src_get_ca)(struct hw *hw, unsigned int idx, void *blk);
108 unsigned int (*src_get_dirty)(void *blk);
109 unsigned int (*src_dirty_conj_mask)(void);
110 int (*src_mgr_get_ctrl_blk)(void **rblk);
111 int (*src_mgr_put_ctrl_blk)(void *blk);
112 /* syncly enable src @idx */
113 int (*src_mgr_enbs_src)(void *blk, unsigned int idx);
114 /* enable src @idx */
115 int (*src_mgr_enb_src)(void *blk, unsigned int idx);
116 /* disable src @idx */
117 int (*src_mgr_dsb_src)(void *blk, unsigned int idx);
118 int (*src_mgr_commit_write)(struct hw *hw, void *blk);
119
120 /* SRC Input Mapper operations */
121 int (*srcimp_mgr_get_ctrl_blk)(void **rblk);
122 int (*srcimp_mgr_put_ctrl_blk)(void *blk);
123 int (*srcimp_mgr_set_imaparc)(void *blk, unsigned int slot);
124 int (*srcimp_mgr_set_imapuser)(void *blk, unsigned int user);
125 int (*srcimp_mgr_set_imapnxt)(void *blk, unsigned int next);
126 int (*srcimp_mgr_set_imapaddr)(void *blk, unsigned int addr);
127 int (*srcimp_mgr_commit_write)(struct hw *hw, void *blk);
128
129 /* AMIXER operations */
130 int (*amixer_rsc_get_ctrl_blk)(void **rblk);
131 int (*amixer_rsc_put_ctrl_blk)(void *blk);
132 int (*amixer_mgr_get_ctrl_blk)(void **rblk);
133 int (*amixer_mgr_put_ctrl_blk)(void *blk);
134 int (*amixer_set_mode)(void *blk, unsigned int mode);
135 int (*amixer_set_iv)(void *blk, unsigned int iv);
136 int (*amixer_set_x)(void *blk, unsigned int x);
137 int (*amixer_set_y)(void *blk, unsigned int y);
138 int (*amixer_set_sadr)(void *blk, unsigned int sadr);
139 int (*amixer_set_se)(void *blk, unsigned int se);
140 int (*amixer_set_dirty)(void *blk, unsigned int flags);
141 int (*amixer_set_dirty_all)(void *blk);
142 int (*amixer_commit_write)(struct hw *hw, unsigned int idx, void *blk);
143 int (*amixer_get_y)(void *blk);
144 unsigned int (*amixer_get_dirty)(void *blk);
145
146 /* DAIO operations */
147 int (*dai_get_ctrl_blk)(void **rblk);
148 int (*dai_put_ctrl_blk)(void *blk);
149 int (*dai_srt_set_srco)(void *blk, unsigned int src);
150 int (*dai_srt_set_srcm)(void *blk, unsigned int src);
151 int (*dai_srt_set_rsr)(void *blk, unsigned int rsr);
152 int (*dai_srt_set_drat)(void *blk, unsigned int drat);
153 int (*dai_srt_set_ec)(void *blk, unsigned int ec);
154 int (*dai_srt_set_et)(void *blk, unsigned int et);
155 int (*dai_commit_write)(struct hw *hw, unsigned int idx, void *blk);
156 int (*dao_get_ctrl_blk)(void **rblk);
157 int (*dao_put_ctrl_blk)(void *blk);
158 int (*dao_set_spos)(void *blk, unsigned int spos);
159 int (*dao_commit_write)(struct hw *hw, unsigned int idx, void *blk);
160 int (*dao_get_spos)(void *blk, unsigned int *spos);
161
162 int (*daio_mgr_get_ctrl_blk)(struct hw *hw, void **rblk);
163 int (*daio_mgr_put_ctrl_blk)(void *blk);
164 int (*daio_mgr_enb_dai)(void *blk, unsigned int idx);
165 int (*daio_mgr_dsb_dai)(void *blk, unsigned int idx);
166 int (*daio_mgr_enb_dao)(void *blk, unsigned int idx);
167 int (*daio_mgr_dsb_dao)(void *blk, unsigned int idx);
168 int (*daio_mgr_dao_init)(void *blk, unsigned int idx,
169 unsigned int conf);
170 int (*daio_mgr_set_imaparc)(void *blk, unsigned int slot);
171 int (*daio_mgr_set_imapnxt)(void *blk, unsigned int next);
172 int (*daio_mgr_set_imapaddr)(void *blk, unsigned int addr);
173 int (*daio_mgr_commit_write)(struct hw *hw, void *blk);
174
Takashi Iwaib7bbf872009-06-05 16:11:07 +0200175 int (*set_timer_irq)(struct hw *hw, int enable);
176 int (*set_timer_tick)(struct hw *hw, unsigned int tick);
Takashi Iwai54de6bc2009-06-08 10:21:07 +0200177 unsigned int (*get_wc)(struct hw *hw);
Takashi Iwaib7bbf872009-06-05 16:11:07 +0200178
179 void (*irq_callback)(void *data, unsigned int bit);
180 void *irq_callback_data;
181
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200182 struct pci_dev *pci; /* the pci kernel structure of this card */
183 int irq;
184 unsigned long io_base;
185 unsigned long mem_base;
Takashi Iwai94701952009-06-08 18:10:32 +0200186
187 enum CHIPTYP chip_type;
188 enum CTCARDS model;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200189};
190
Takashi Iwai94701952009-06-08 18:10:32 +0200191int create_hw_obj(struct pci_dev *pci, enum CHIPTYP chip_type,
192 enum CTCARDS model, struct hw **rhw);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200193int destroy_hw_obj(struct hw *hw);
194
195unsigned int get_field(unsigned int data, unsigned int field);
196void set_field(unsigned int *data, unsigned int field, unsigned int value);
197
Takashi Iwaib7bbf872009-06-05 16:11:07 +0200198/* IRQ bits */
199#define PLL_INT (1 << 10) /* PLL input-clock out-of-range */
200#define FI_INT (1 << 9) /* forced interrupt */
201#define IT_INT (1 << 8) /* timer interrupt */
202#define PCI_INT (1 << 7) /* PCI bus error pending */
203#define URT_INT (1 << 6) /* UART Tx/Rx */
204#define GPI_INT (1 << 5) /* GPI pin */
205#define MIX_INT (1 << 4) /* mixer parameter segment FIFO channels */
206#define DAI_INT (1 << 3) /* DAI (SR-tracker or SPDIF-receiver) */
207#define TP_INT (1 << 2) /* transport priority queue */
208#define DSP_INT (1 << 1) /* DSP */
209#define SRC_INT (1 << 0) /* SRC channels */
210
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200211#endif /* CTHARDWARE_H */