Home
last modified time | relevance | path

Searched refs:dsp (Results 1 – 25 of 39) sorted by relevance

12

/drivers/isdn/mISDN/
Ddsp_cmx.c159 dsp_cmx_debug(struct dsp *dsp) in dsp_cmx_debug() argument
163 struct dsp *odsp; in dsp_cmx_debug()
172 if (dsp == odsp) in dsp_cmx_debug()
184 member->dsp->name, member->dsp->pcm_slot_tx, in dsp_cmx_debug()
185 member->dsp->pcm_bank_tx, member->dsp->pcm_slot_rx, in dsp_cmx_debug()
186 member->dsp->pcm_bank_rx, member->dsp->hfc_conf, in dsp_cmx_debug()
187 member->dsp->tx_data, member->dsp->rx_is_off, in dsp_cmx_debug()
188 (member->dsp == dsp) ? " *this*" : ""); in dsp_cmx_debug()
220 dsp_cmx_add_conf_member(struct dsp *dsp, struct dsp_conf *conf) in dsp_cmx_add_conf_member() argument
224 if (!conf || !dsp) { in dsp_cmx_add_conf_member()
[all …]
Ddsp_core.c188 dsp_rx_off_member(struct dsp *dsp) in dsp_rx_off_member() argument
195 if (!dsp->features_rx_off) in dsp_rx_off_member()
199 if (!dsp->rx_disabled) in dsp_rx_off_member()
202 else if (dsp->dtmf.software) in dsp_rx_off_member()
205 else if (dsp->echo.software) in dsp_rx_off_member()
208 else if (dsp->conf && dsp->conf->software) in dsp_rx_off_member()
213 if (rx_off == dsp->rx_is_off) in dsp_rx_off_member()
216 if (!dsp->ch.peer) { in dsp_rx_off_member()
224 if (dsp->ch.peer->ctrl(dsp->ch.peer, CONTROL_CHANNEL, &cq)) { in dsp_rx_off_member()
229 dsp->rx_is_off = rx_off; in dsp_rx_off_member()
[all …]
Ddsp_dtmf.c40 void dsp_dtmf_goertzel_init(struct dsp *dsp) in dsp_dtmf_goertzel_init() argument
42 dsp->dtmf.size = 0; in dsp_dtmf_goertzel_init()
43 dsp->dtmf.lastwhat = '\0'; in dsp_dtmf_goertzel_init()
44 dsp->dtmf.lastdigit = '\0'; in dsp_dtmf_goertzel_init()
45 dsp->dtmf.count = 0; in dsp_dtmf_goertzel_init()
50 void dsp_dtmf_hardware(struct dsp *dsp) in dsp_dtmf_hardware() argument
54 if (!dsp->dtmf.enable) in dsp_dtmf_hardware()
57 if (!dsp->features.hfc_dtmf) in dsp_dtmf_hardware()
61 if (dsp->tx_volume) { in dsp_dtmf_hardware()
65 __func__, dsp->name); in dsp_dtmf_hardware()
[all …]
Ddsp.h92 struct dsp;
95 struct dsp *dsp; member
170 struct dsp { struct
245 extern void dsp_cmx_debug(struct dsp *dsp); argument
246 extern void dsp_cmx_hardware(struct dsp_conf *conf, struct dsp *dsp);
247 extern int dsp_cmx_conf(struct dsp *dsp, u32 conf_id);
248 extern void dsp_cmx_receive(struct dsp *dsp, struct sk_buff *skb);
249 extern void dsp_cmx_hdlc(struct dsp *dsp, struct sk_buff *skb);
251 extern void dsp_cmx_transmit(struct dsp *dsp, struct sk_buff *skb);
252 extern int dsp_cmx_del_conf_member(struct dsp *dsp);
[all …]
Ddsp_blowfish.c369 dsp_bf_encrypt(struct dsp *dsp, u8 *data, int len) in dsp_bf_encrypt() argument
371 int i = 0, j = dsp->bf_crypt_pos; in dsp_bf_encrypt()
372 u8 *bf_data_in = dsp->bf_data_in; in dsp_bf_encrypt()
373 u8 *bf_crypt_out = dsp->bf_crypt_out; in dsp_bf_encrypt()
374 u32 *P = dsp->bf_p; in dsp_bf_encrypt()
375 u32 *S = dsp->bf_s; in dsp_bf_encrypt()
448 dsp->bf_crypt_pos = j; in dsp_bf_encrypt()
458 dsp_bf_decrypt(struct dsp *dsp, u8 *data, int len) in dsp_bf_decrypt() argument
461 u8 j = dsp->bf_decrypt_in_pos; in dsp_bf_decrypt()
462 u8 k = dsp->bf_decrypt_out_pos; in dsp_bf_decrypt()
[all …]
Ddsp_hwec.c34 void dsp_hwec_enable(struct dsp *dsp, const char *arg) in dsp_hwec_enable() argument
40 if (!dsp) { in dsp_hwec_enable()
85 if (!dsp->ch.peer->ctrl(&dsp->ch, CONTROL_CHANNEL, &cq)) { in dsp_hwec_enable()
92 void dsp_hwec_disable(struct dsp *dsp) in dsp_hwec_disable() argument
96 if (!dsp) { in dsp_hwec_disable()
105 if (!dsp->ch.peer->ctrl(&dsp->ch, CONTROL_CHANNEL, &cq)) { in dsp_hwec_disable()
Ddsp_tones.c375 void dsp_tone_copy(struct dsp *dsp, u8 *data, int len) in dsp_tone_copy() argument
379 struct dsp_tone *tone = &dsp->tone; in dsp_tone_copy()
438 dsp_tone_hw_message(struct dsp *dsp, u8 *sample, int len) in dsp_tone_hw_message() argument
447 if (dsp->ch.peer) { in dsp_tone_hw_message()
448 if (dsp->ch.recv(dsp->ch.peer, nskb)) in dsp_tone_hw_message()
462 struct dsp *dsp = from_timer(dsp, t, tone.tl); in dsp_tone_timeout() local
463 struct dsp_tone *tone = &dsp->tone; in dsp_tone_timeout()
477 dsp_tone_hw_message(dsp, NULL, 0); in dsp_tone_timeout()
479 dsp_tone_hw_message(dsp, pat->data[index], *(pat->siz[index])); in dsp_tone_timeout()
496 dsp_tone(struct dsp *dsp, int tone) in dsp_tone() argument
[all …]
Ddsp_hwec.h7 extern void dsp_hwec_enable(struct dsp *dsp, const char *arg);
8 extern void dsp_hwec_disable(struct dsp *dsp);
Ddsp_pipeline.c176 dsp_hwec_disable(container_of(pipeline, struct dsp, in _dsp_pipeline_destroy()
236 struct dsp, pipeline), args); in dsp_pipeline_build()
/drivers/scsi/
D53c700.c578 struct scsi_cmnd *SCp, __u32 dsp) in save_for_reselection() argument
585 slot->resume_offset = dsp; in save_for_reselection()
796 struct scsi_cmnd *SCp, __u32 dsp, __u32 dsps) in process_extended_message() argument
798 __u32 resume_offset = dsp, temp = dsp + 8; in process_extended_message()
876 struct scsi_cmnd *SCp, __u32 dsp, __u32 dsps) in process_message() argument
879 __u32 temp = dsp + 8, resume_offset = dsp; in process_message()
898 dsp, dsps); in process_message()
963 process_script_interrupt(__u32 dsps, __u32 dsp, struct scsi_cmnd *SCp, in process_script_interrupt() argument
1100 save_for_reselection(hostdata, SCp, dsp); in process_script_interrupt()
1204 …host->host_no, reselection_id, lun, dsp, dsp - hostdata->pScript, hostdata->state, hostdata->comma… in process_script_interrupt()
[all …]
Dncr53c8xx.c5816 u32 dsp; in ncr_log_hard_error() local
5823 dsp = INL (nc_dsp); in ncr_log_hard_error()
5825 if (dsp > np->p_script && dsp <= np->p_script + sizeof(struct script)) { in ncr_log_hard_error()
5826 script_ofs = dsp - np->p_script; in ncr_log_hard_error()
5831 else if (np->p_scripth < dsp && in ncr_log_hard_error()
5832 dsp <= np->p_scripth + sizeof(struct scripth)) { in ncr_log_hard_error()
5833 script_ofs = dsp - np->p_scripth; in ncr_log_hard_error()
5838 script_ofs = dsp; in ncr_log_hard_error()
6238 u32 dsp; in ncr_int_ma() local
6249 dsp = INL (nc_dsp); in ncr_int_ma()
[all …]
/drivers/char/mwave/
DREADME18 If the dsp irq has not been setup and stored in bios by the
20 irq used by the dsp to be configured.
23 If the dsp io range has not been setup and stored in bios by the
25 io range used by the dsp to be configured.
/drivers/scsi/sym53c8xx_2/
Dsym_hipd.c1120 u32 dsp; local
1127 dsp = INL(np, nc_dsp);
1129 if (dsp > np->scripta_ba &&
1130 dsp <= np->scripta_ba + np->scripta_sz) {
1131 script_ofs = dsp - np->scripta_ba;
1136 else if (np->scriptb_ba < dsp &&
1137 dsp <= np->scriptb_ba + np->scriptb_sz) {
1138 script_ofs = dsp - np->scriptb_ba;
1143 script_ofs = dsp;
2175 u32 dsp = INL(np, nc_dsp); local
[all …]
/drivers/firmware/imx/
DMakefile2 obj-$(CONFIG_IMX_DSP) += imx-dsp.o
/drivers/media/pci/cx88/
DMakefile3 cx88-dsp.o cx88-input.o
/drivers/clk/davinci/
Dpsc-dm646x.c36 LPSC(1, 0, dsp, pll1_sysclk1, NULL, LPSC_ALWAYS_ENABLED),
Dpsc-dm644x.c62 LPSC(39, 1, dsp, pll1_sysclk1, NULL, LPSC_ALWAYS_ENABLED),
Dpsc-da850.c39 LPSC(15, 1, dsp, pll0_sysclk1, dsp_clkdev, LPSC_FORCE | LPSC_LOCAL_RESET),
/drivers/scsi/be2iscsi/
Dbe_main.h714 u8 dsp; /* DWORD 0 */ member
776 u8 dsp; /* DWORD 11 */ member
870 u8 dsp; /* DWORD 0 */ member
/drivers/usb/atm/
Dueagle-atm.c722 static int check_dsp_e1(const u8 *dsp, unsigned int len) in check_dsp_e1() argument
729 pagecount = FW_GET_BYTE(dsp); in check_dsp_e1()
738 pageoffset = get_unaligned_le32(dsp + p); in check_dsp_e1()
749 blockcount = FW_GET_BYTE(dsp + pp); in check_dsp_e1()
759 blocksize = get_unaligned_le16(dsp + pp); in check_dsp_e1()
773 static int check_dsp_e4(const u8 *dsp, int len) in check_dsp_e4() argument
776 struct l1_code *p = (struct l1_code *) dsp; in check_dsp_e4()
777 unsigned int sum = p->code - dsp; in check_dsp_e4()
799 if ((u8 *)(blockidx + 1) - dsp >= len) in check_dsp_e4()
/drivers/clk/sirf/
Dclk-atlas6.c61 rtc, osc, pll1, pll2, pll3, mem, sys, security, dsp, gps, enumerator
Dclk-prima2.c60 rtc, osc, pll1, pll2, pll3, mem, sys, security, dsp, gps, enumerator
/drivers/media/radio/
Dradio-timb.c127 i2c_get_adapter(pdata->i2c_adapter), pdata->dsp, NULL); in timbradio_probe()
/drivers/gpu/drm/radeon/
Dsumo_dpm.h111 u32 dsp; member
/drivers/video/fbdev/aty/
Daty128fb.c1414 static void aty128_set_fifo(const struct aty128_ddafifo *dsp, in aty128_set_fifo() argument
1417 aty_st_le32(DDA_CONFIG, dsp->dda_config); in aty128_set_fifo()
1418 aty_st_le32(DDA_ON_OFF, dsp->dda_on_off); in aty128_set_fifo()
1422 static int aty128_ddafifo(struct aty128_ddafifo *dsp, in aty128_ddafifo() argument
1472 dsp->dda_config = p << 16 | m->Rloop << 20 | x; in aty128_ddafifo()
1473 dsp->dda_on_off = ron << 16 | roff; in aty128_ddafifo()

12