Home
last modified time | relevance | path

Searched refs:atc (Results 1 – 24 of 24) sorted by relevance

/linux/sound/pci/ctxfi/
H A Dctatc.h88 int (*map_audio_buffer)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
89 void (*unmap_audio_buffer)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
90 unsigned long (*get_ptp_phys)(struct ct_atc *atc, int index);
94 int (*pcm_playback_prepare)(struct ct_atc *atc,
96 int (*pcm_playback_start)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
97 int (*pcm_playback_stop)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
98 int (*pcm_playback_position)(struct ct_atc *atc,
100 int (*spdif_passthru_playback_prepare)(struct ct_atc *atc,
102 int (*pcm_capture_prepare)(struct ct_atc *atc, struct ct_atc_pcm *apcm);
103 int (*pcm_capture_start)(struct ct_atc *atc, struc
[all...]
H A Dctpcm.c106 struct ct_atc *atc = snd_pcm_substream_chip(apcm->substream); in ct_atc_pcm_free_substream() local
108 atc->pcm_release_resources(atc, apcm); in ct_atc_pcm_free_substream()
117 struct ct_atc *atc = snd_pcm_substream_chip(substream); in ct_pcm_playback_open() local
130 atc->spdif_out_passthru(atc, 1); in ct_pcm_playback_open()
148 apcm->timer = ct_timer_instance_new(atc->timer, apcm); in ct_pcm_playback_open()
165 struct ct_atc *atc = snd_pcm_substream_chip(substream); in ct_pcm_playback_close() local
169 atc->spdif_out_passthru(atc, 0); in ct_pcm_playback_close()
179 struct ct_atc *atc = snd_pcm_substream_chip(substream); in ct_pcm_hw_params() local
183 atc->pcm_release_resources(atc, apcm); in ct_pcm_hw_params()
189 struct ct_atc *atc = snd_pcm_substream_chip(substream); in ct_pcm_hw_free() local
[all …]
H A Dctmixer.c344 struct ct_atc *atc = snd_kcontrol_chip(kcontrol); in ct_alsa_mix_volume_get() local
350 amixer = ((struct ct_mixer *)atc->mixer)-> in ct_alsa_mix_volume_get()
366 struct ct_atc *atc = snd_kcontrol_chip(kcontrol); in ct_alsa_mix_volume_put() local
367 struct ct_mixer *mixer = atc->mixer; in ct_alsa_mix_volume_put()
423 struct ct_atc *atc = snd_kcontrol_chip(kcontrol); in output_switch_get() local
424 ucontrol->value.enumerated.item[0] = atc->output_switch_get(atc); in output_switch_get()
431 struct ct_atc *atc = snd_kcontrol_chip(kcontrol); in output_switch_put() local
434 return atc->output_switch_put(atc, ucontro in output_switch_put()
458 struct ct_atc *atc = snd_kcontrol_chip(kcontrol); mic_source_switch_get() local
466 struct ct_atc *atc = snd_kcontrol_chip(kcontrol); mic_source_switch_put() local
482 do_line_mic_switch(struct ct_atc * atc,enum CTALSA_MIXER_CTL type) do_line_mic_switch() argument
499 do_digit_io_switch(struct ct_atc * atc,int state) do_digit_io_switch() argument
523 do_switch(struct ct_atc * atc,enum CTALSA_MIXER_CTL type,int state) do_switch() argument
592 struct ct_atc *atc = snd_kcontrol_chip(kcontrol); ct_alsa_mix_switch_put() local
636 struct ct_atc *atc = snd_kcontrol_chip(kcontrol); ct_spdif_get() local
655 struct ct_atc *atc = snd_kcontrol_chip(kcontrol); ct_spdif_put() local
737 struct ct_atc *atc = mixer->atc; ct_mixer_kcontrols_create() local
1171 ct_mixer_create(struct ct_atc * atc,struct ct_mixer ** rmixer) ct_mixer_create() argument
1210 ct_alsa_mix_create(struct ct_atc * atc,enum CTALSADEVS device,const char * device_name) ct_alsa_mix_create() argument
[all...]
H A Dxfi.c60 struct ct_atc *atc; in ct_card_probe() local
90 pci_id->driver_data, subsystem[dev], &atc); in ct_card_probe()
94 card->private_data = atc; in ct_card_probe()
97 err = ct_atc_create_alsa_devs(atc); in ct_card_probe()
104 card->shortname, atc->chip_name, atc->model_name); in ct_card_probe()
129 struct ct_atc *atc = card->private_data; in ct_card_suspend() local
131 return atc->suspend(atc); in ct_card_suspend()
137 struct ct_atc *atc = card->private_data; in ct_card_resume() local
139 return atc->resume(atc); in ct_card_resume()
H A Dctmixer.h42 struct ct_atc *atc; member
60 int ct_alsa_mix_create(struct ct_atc *atc,
63 int ct_mixer_create(struct ct_atc *atc, struct ct_mixer **rmixer);
H A Dctpcm.h19 int ct_alsa_pcm_create(struct ct_atc *atc,
H A Dcttimer.h20 struct ct_timer *ct_timer_new(struct ct_atc *atc);
/linux/drivers/base/
H A Dtransport_class.c91 int anon_transport_class_register(struct anon_transport_class *atc) in anon_transport_class_register() argument
94 atc->container.class = &atc->tclass.class; in anon_transport_class_register()
95 attribute_container_set_no_classdevs(&atc->container); in anon_transport_class_register()
96 error = attribute_container_register(&atc->container); in anon_transport_class_register()
99 atc->tclass.setup = anon_transport_dummy_function; in anon_transport_class_register()
100 atc->tclass.remove = anon_transport_dummy_function; in anon_transport_class_register()
113 void anon_transport_class_unregister(struct anon_transport_class *atc) in anon_transport_class_unregister() argument
115 if (unlikely(attribute_container_unregister(&atc->container))) in anon_transport_class_unregister()
/linux/include/linux/
H A Dattribute_container.h28 attribute_container_no_classdevs(struct attribute_container *atc) in attribute_container_no_classdevs() argument
30 return atc->flags & ATTRIBUTE_CONTAINER_NO_CLASSDEVS; in attribute_container_no_classdevs()
34 attribute_container_set_no_classdevs(struct attribute_container *atc) in attribute_container_set_no_classdevs() argument
36 atc->flags |= ATTRIBUTE_CONTAINER_NO_CLASSDEVS; in attribute_container_set_no_classdevs()
/linux/drivers/video/fbdev/
H A Dvga16fb.c539 u8 atc[VGA_ATT_C]; in vga16fb_set_par() local
574 atc[i] = i; in vga16fb_set_par()
576 atc[VGA_ATC_MODE] = 0x04; in vga16fb_set_par()
578 atc[VGA_ATC_MODE] = 0x41; in vga16fb_set_par()
580 atc[VGA_ATC_MODE] = 0x81; in vga16fb_set_par()
581 atc[VGA_ATC_OVERSCAN] = 0x00; /* 0 for EGA, 0xFF for VGA */ in vga16fb_set_par()
582 atc[VGA_ATC_PLANE_ENABLE] = 0x0F; in vga16fb_set_par()
584 atc[VGA_ATC_PEL] = (info->var.xoffset & 3) << 1; in vga16fb_set_par()
586 atc[VGA_ATC_PEL] = info->var.xoffset & 7; in vga16fb_set_par()
587 atc[VGA_ATC_COLOR_PAGE] = 0x00; in vga16fb_set_par()
[all …]
H A Di740fb.c49 u8 atc[VGA_ATT_C]; member
555 par->atc[i] = i; in i740fb_decode_var()
556 par->atc[VGA_ATC_MODE] = 0x81; in i740fb_decode_var()
557 par->atc[VGA_ATC_OVERSCAN] = 0x00; /* 0 for EGA, 0xFF for VGA */ in i740fb_decode_var()
558 par->atc[VGA_ATC_PLANE_ENABLE] = 0x0F; in i740fb_decode_var()
559 par->atc[VGA_ATC_COLOR_PAGE] = 0x00; in i740fb_decode_var()
643 par->atc[VGA_ATC_OVERSCAN] = 0; in i740fb_decode_var()
800 i740outb(par, VGA_ATT_IW, par->atc[i]); in i740fb_set_par()
/linux/arch/arm/boot/dts/nvidia/
H A Dtegra20-trimslice.dts53 atc {
54 nvidia,pins = "atc", "gmb";
203 nvidia,pins = "ata", "atc", "atd", "ate",
H A Dtegra20-tamonten.dtsi46 atc {
47 nvidia,pins = "atc";
185 nvidia,pins = "ata", "atb", "atc", "atd", "ate",
H A Dtegra20-ventana.dts62 atc {
63 nvidia,pins = "atc";
208 nvidia,pins = "ata", "atb", "atc", "atd",
H A Dtegra20-harmony.dts60 atc {
61 nvidia,pins = "atc";
203 nvidia,pins = "ata", "atb", "atc", "atd", "ate",
H A Dtegra20-seaboard.dts60 atc {
61 nvidia,pins = "atc";
206 nvidia,pins = "ata", "atb", "atc", "atd",
H A Dtegra20-paz00.dts59 nvidia,pins = "ata", "atc", "atd", "ate",
201 nvidia,pins = "ata", "atb", "atc", "atd", "ate",
H A Dtegra20-acer-a500-picasso.dts103 atc {
104 nvidia,pins = "atc";
249 nvidia,pins = "ata", "atb", "atc", "atd",
H A Dtegra20-colibri.dtsi111 nvidia,pins = "atc", "atd", "ate", "dap1",
/linux/drivers/gpu/drm/radeon/
H A Dcik_reg.h232 uint32_t atc:1; member
/linux/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_pm4_headers_vi.h463 unsigned int atc:1; member
/linux/drivers/iommu/arm/arm-smmu-v3/
H A Darm-smmu-v3.c328 cmd[0] |= FIELD_PREP(CMDQ_ATC_0_GLOBAL, ent->atc.global); in arm_smmu_cmdq_build_cmd()
329 cmd[0] |= FIELD_PREP(CMDQ_ATC_0_SSID, ent->atc.ssid); in arm_smmu_cmdq_build_cmd()
330 cmd[0] |= FIELD_PREP(CMDQ_ATC_0_SID, ent->atc.sid); in arm_smmu_cmdq_build_cmd()
331 cmd[1] |= FIELD_PREP(CMDQ_ATC_1_SIZE, ent->atc.size); in arm_smmu_cmdq_build_cmd()
332 cmd[1] |= ent->atc.addr & CMDQ_ATC_1_ADDR_MASK; in arm_smmu_cmdq_build_cmd()
2125 .atc.ssid = ssid, in arm_smmu_atc_inv_to_cmd()
2129 cmd->atc.size = ATC_INV_SIZE_ALL; in arm_smmu_atc_inv_to_cmd()
2161 cmd->atc.addr = page_start << inval_grain_shift; in arm_smmu_atc_inv_to_cmd()
2162 cmd->atc.size = log2_span; in arm_smmu_atc_inv_to_cmd()
2176 cmd.atc.sid = master->streams[i].id; in arm_smmu_atc_inv_master()
[all …]
/linux/drivers/net/dsa/b53/
H A Db53_common.c2671 u32 atc; in b53_set_ageing_time() local
2680 atc = DIV_ROUND_CLOSEST(msecs, 500); in b53_set_ageing_time()
2682 atc = DIV_ROUND_CLOSEST(msecs, 1000); in b53_set_ageing_time()
2685 atc |= AGE_CHANGE; in b53_set_ageing_time()
2687 b53_write32(dev, B53_MGMT_PAGE, reg, atc); in b53_set_ageing_time()
/linux/drivers/pinctrl/tegra/
H A Dpinctrl-tegra20.c2048 MUX_PG(atc, IDE, NAND, GMI, SDIO4, 0x14, 2, 0x80, 22, 0xa0, 4),