/drivers/isdn/mISDN/ |
D | dsp_cmx.c | 159 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 …]
|
D | dsp_core.c | 188 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 …]
|
D | dsp_dtmf.c | 40 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 …]
|
D | dsp.h | 92 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 …]
|
D | dsp_blowfish.c | 369 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 …]
|
D | dsp_hwec.c | 34 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()
|
D | dsp_tones.c | 375 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 …]
|
D | dsp_hwec.h | 7 extern void dsp_hwec_enable(struct dsp *dsp, const char *arg); 8 extern void dsp_hwec_disable(struct dsp *dsp);
|
D | dsp_pipeline.c | 176 dsp_hwec_disable(container_of(pipeline, struct dsp, in _dsp_pipeline_destroy() 236 struct dsp, pipeline), args); in dsp_pipeline_build()
|
/drivers/scsi/ |
D | 53c700.c | 577 struct scsi_cmnd *SCp, __u32 dsp) in save_for_reselection() argument 584 slot->resume_offset = dsp; in save_for_reselection() 795 struct scsi_cmnd *SCp, __u32 dsp, __u32 dsps) in process_extended_message() argument 797 __u32 resume_offset = dsp, temp = dsp + 8; in process_extended_message() 875 struct scsi_cmnd *SCp, __u32 dsp, __u32 dsps) in process_message() argument 878 __u32 temp = dsp + 8, resume_offset = dsp; in process_message() 897 dsp, dsps); in process_message() 962 process_script_interrupt(__u32 dsps, __u32 dsp, struct scsi_cmnd *SCp, in process_script_interrupt() argument 1099 save_for_reselection(hostdata, SCp, dsp); in process_script_interrupt() 1203 …host->host_no, reselection_id, lun, dsp, dsp - hostdata->pScript, hostdata->state, hostdata->comma… in process_script_interrupt() [all …]
|
D | ncr53c8xx.c | 5651 u32 dsp; in ncr_log_hard_error() local 5658 dsp = INL (nc_dsp); in ncr_log_hard_error() 5660 if (dsp > np->p_script && dsp <= np->p_script + sizeof(struct script)) { in ncr_log_hard_error() 5661 script_ofs = dsp - np->p_script; in ncr_log_hard_error() 5666 else if (np->p_scripth < dsp && in ncr_log_hard_error() 5667 dsp <= np->p_scripth + sizeof(struct scripth)) { in ncr_log_hard_error() 5668 script_ofs = dsp - np->p_scripth; in ncr_log_hard_error() 5673 script_ofs = dsp; in ncr_log_hard_error() 6073 u32 dsp; in ncr_int_ma() local 6084 dsp = INL (nc_dsp); in ncr_int_ma() [all …]
|
/drivers/char/mwave/ |
D | README | 18 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/ |
D | sym_hipd.c | 1120 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/ |
D | Makefile | 2 obj-$(CONFIG_IMX_DSP) += imx-dsp.o
|
/drivers/media/pci/cx88/ |
D | Makefile | 3 cx88-dsp.o cx88-input.o
|
/drivers/clk/davinci/ |
D | psc-dm646x.c | 36 LPSC(1, 0, dsp, pll1_sysclk1, NULL, LPSC_ALWAYS_ENABLED),
|
D | psc-dm644x.c | 62 LPSC(39, 1, dsp, pll1_sysclk1, NULL, LPSC_ALWAYS_ENABLED),
|
D | psc-da850.c | 39 LPSC(15, 1, dsp, pll0_sysclk1, dsp_clkdev, LPSC_FORCE | LPSC_LOCAL_RESET),
|
/drivers/scsi/be2iscsi/ |
D | be_main.h | 714 u8 dsp; /* DWORD 0 */ member 776 u8 dsp; /* DWORD 11 */ member 870 u8 dsp; /* DWORD 0 */ member
|
/drivers/usb/atm/ |
D | ueagle-atm.c | 722 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/media/radio/ |
D | radio-timb.c | 127 i2c_get_adapter(pdata->i2c_adapter), pdata->dsp, NULL); in timbradio_probe()
|
/drivers/gpu/drm/radeon/ |
D | sumo_dpm.h | 111 u32 dsp; member
|
D | rv770_dpm.h | 124 u32 dsp; member
|
/drivers/video/fbdev/aty/ |
D | aty128fb.c | 1414 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()
|
/drivers/dma/ |
D | imx-sdma.c | 673 unsigned long evt, mcu, dsp; in sdma_config_ownership() local 680 dsp = readl_relaxed(sdma->regs + SDMA_H_DSPOVR); in sdma_config_ownership() 683 __clear_bit(channel, &dsp); in sdma_config_ownership() 685 __set_bit(channel, &dsp); in sdma_config_ownership() 699 writel_relaxed(dsp, sdma->regs + SDMA_H_DSPOVR); in sdma_config_ownership()
|