Home
last modified time | relevance | path

Searched refs:scb_data (Results 1 – 10 of 10) sorted by relevance

/Linux-v4.19/drivers/scsi/aic7xxx/
Daic7xxx_core.c397 return (ahc->scb_data->hscb_busaddr in ahc_hscb_busaddr()
404 ahc_dmamap_sync(ahc, ahc->scb_data->hscb_dmat, in ahc_sync_scb()
405 ahc->scb_data->hscb_dmamap, in ahc_sync_scb()
416 ahc_dmamap_sync(ahc, ahc->scb_data->sg_dmat, scb->sg_map->sg_dmamap, in ahc_sync_sglist()
531 if ((scb = SLIST_FIRST(&ahc->scb_data->free_scbs)) == NULL) { in ahc_get_scb()
533 scb = SLIST_FIRST(&ahc->scb_data->free_scbs); in ahc_get_scb()
537 SLIST_REMOVE_HEAD(&ahc->scb_data->free_scbs, links.sle); in ahc_get_scb()
551 ahc->scb_data->scbindex[hscb->tag] = NULL; in ahc_free_scb()
555 SLIST_INSERT_HEAD(&ahc->scb_data->free_scbs, scb, links.sle); in ahc_free_scb()
566 scb = ahc->scb_data->scbindex[tag]; in ahc_lookup_scb()
[all …]
Daic79xx_core.c529 ahd_dmamap_sync(ahd, ahd->scb_data.hscb_dmat, in ahd_sync_scb()
541 ahd_dmamap_sync(ahd, ahd->scb_data.sg_dmat, in ahd_sync_sglist()
550 ahd_dmamap_sync(ahd, ahd->scb_data.sense_dmat, in ahd_sync_sense()
802 scb = ahd->scb_data.scbindex[tag]; in ahd_lookup_scb()
842 ahd->scb_data.scbindex[SCB_GET_TAG(scb)] = scb; in ahd_swap_with_next_hscb()
6393 for (i = 0; i < ahd->scb_data.maxhscbs; i++) { in ahd_initialize_hscbs()
6407 struct scb_data *scb_data; in ahd_init_scbdata() local
6410 scb_data = &ahd->scb_data; in ahd_init_scbdata()
6411 TAILQ_INIT(&scb_data->free_scbs); in ahd_init_scbdata()
6413 LIST_INIT(&scb_data->free_scb_lists[i]); in ahd_init_scbdata()
[all …]
Daic7xxx.h581 struct scb_data { struct
912 struct scb_data *scb_data; member
Daic79xx.h629 struct scb_data { struct
1062 struct scb_data scb_data; member
Daic79xx_proc.c287 ahd->scb_data.numscbs, AHD_NSEG); in ahd_linux_show_info()
Daic7xxx_proc.c302 ahc->scb_data->numscbs, AHC_NSEG); in ahc_linux_show_info()
Daic79xx_pci.c297 struct scb_data *shared_scb_data; in ahd_pci_config()
/Linux-v4.19/sound/pci/cs46xx/
Ddsp_spos_scb_lib.c288 _dsp_create_generic_scb (struct snd_cs46xx *chip, char * name, u32 * scb_data, u32 dest, in _dsp_create_generic_scb() argument
302 scb_data[SCBsubListPtr] = in _dsp_create_generic_scb()
305 scb_data[SCBfuncEntryPtr] &= 0xFFFF0000; in _dsp_create_generic_scb()
306 scb_data[SCBfuncEntryPtr] |= task_entry->address; in _dsp_create_generic_scb()
310 scb = cs46xx_dsp_create_scb(chip,name,scb_data,dest); in _dsp_create_generic_scb()
366 cs46xx_dsp_create_generic_scb (struct snd_cs46xx *chip, char * name, u32 * scb_data, in cs46xx_dsp_create_generic_scb() argument
382 return _dsp_create_generic_scb (chip,name,scb_data,dest,task_entry, in cs46xx_dsp_create_generic_scb()
Ddsp_spos.c953 static void _dsp_create_scb (struct snd_cs46xx *chip, u32 * scb_data, u32 dest) in _dsp_create_scb() argument
961 spdst, scb_data[i]); in _dsp_create_scb()
962 writel(scb_data[i],spdst); in _dsp_create_scb()
1045 cs46xx_dsp_create_scb (struct snd_cs46xx *chip, char * name, u32 * scb_data, u32 dest) in cs46xx_dsp_create_scb() argument
1051 scb_data = kmemdup(scb_data, SCB_BYTES, GFP_KERNEL); in cs46xx_dsp_create_scb()
1052 if (!scb_data) in cs46xx_dsp_create_scb()
1058 desc->data = scb_data; in cs46xx_dsp_create_scb()
1059 _dsp_create_scb(chip,scb_data,dest); in cs46xx_dsp_create_scb()
1063 kfree(scb_data); in cs46xx_dsp_create_scb()
Dcs46xx_lib.h120 u32 * scb_data, u32 dest);