Home
last modified time | relevance | path

Searched refs:oss (Results 1 – 25 of 52) sorted by relevance

123

/linux-6.15/sound/core/oss/
H A Dpcm_oss.c542 runtime->oss.plugin_first = runtime->oss.plugin_last = NULL; in snd_pcm_oss_plugin_clear()
1429 runtime->oss.period_ptr %= runtime->oss.period_bytes; in snd_pcm_oss_write1()
1431 runtime->oss.period_ptr == runtime->oss.buffer_used) in snd_pcm_oss_write1()
1529 …if (copy_to_user(buf, runtime->oss.buffer + (runtime->oss.period_ptr - runtime->oss.buffer_used), … in snd_pcm_oss_read1()
1678 runtime->oss.buffer + runtime->oss.buffer_used, in snd_pcm_oss_sync()
1928 if (runtime->oss.subdivision || runtime->oss.fragshift) in snd_pcm_oss_set_subdivide1()
1966 if (runtime->oss.subdivision || runtime->oss.fragshift) in snd_pcm_oss_set_fragment1()
2169 if (runtime->oss.params || runtime->oss.prepare) in snd_pcm_oss_get_odelay()
2197 if (runtime->oss.params || runtime->oss.prepare) { in snd_pcm_oss_get_ptr()
2351 substream->oss.oss = 0; in snd_pcm_oss_release_substream()
[all …]
H A DMakefile7 snd-mixer-oss-y := mixer_oss.o
9 snd-pcm-oss-y := pcm_oss.o
10 snd-pcm-oss-$(CONFIG_SND_PCM_OSS_PLUGINS) += pcm_plugin.o \
13 obj-$(CONFIG_SND_MIXER_OSS) += snd-mixer-oss.o
14 obj-$(CONFIG_SND_PCM_OSS) += snd-pcm-oss.o
/linux-6.15/arch/m68k/mac/
H A Doss.c33 volatile struct mac_oss *oss; variable
46 oss = (struct mac_oss *) OSS_BASE; in oss_init()
47 pr_debug("OSS detected at %p", oss); in oss_init()
54 oss->irq_level[i] = 0; in oss_init()
77 events = oss->irq_pending & OSS_IP_NUBUS; in oss_nubus_irq()
119 oss->irq_level[OSS_VIA1] = OSS_IRQLEV_VIA1; in oss_register_interrupts()
149 oss->irq_level[irq] = OSS_IRQLEV_NUBUS; in oss_irq_enable()
167 oss->irq_level[OSS_IOPSCC] = 0; in oss_irq_disable()
170 oss->irq_level[OSS_IOPISM] = 0; in oss_irq_disable()
173 oss->irq_level[OSS_SCSI] = 0; in oss_irq_disable()
[all …]
H A DMakefile6 obj-y := config.o macints.o iop.o via.o oss.o psc.o \
/linux-6.15/Documentation/sound/designs/
H A Doss-emulation.rst13 as add-on kernel modules, snd-pcm-oss, snd-mixer-oss and snd-seq-oss.
33 /proc/asound/oss/sndstat. This shows in the same syntax of
80 options are available for snd-pcm-oss:
93 options snd-pcm-oss adsp_map=2
100 options snd-pcm-oss adsp_map=0,2
133 exists only after snd-pcm-oss module is loaded.
171 % echo "quake 0 0 direct" > /proc/asound/card0/pcm0p/oss
194 options snd-pcm-oss nonblock_open=0
207 % cat /proc/asound/card0/pcm0p/oss > /somewhere/oss-cfg
212 % cat /somewhere/oss-cfg > /proc/asound/card0/pcm0p/oss
[all …]
H A Dindex.rst16 oss-emulation
17 seq-oss
H A Dseq-oss.rst67 ``/proc/asound/seq/oss`` at any time. In the later version,
75 and OSS emulation (``--with-oss=yes``) options. A module ``snd-seq-oss.o``
86 Run ``cat /proc/asound/seq/oss``, and check the devices. For example,
112 ``/proc/asound/oss-devices`` or ones of the original OSS driver.
113 Use the device number listed in ``/proc/asound/seq/oss``
132 ``/proc/asound/seq/oss``.
134 ``/proc/asound/oss-devices``.
H A Dprocfile.rst50 oss/devices
53 oss/sndstat
206 seq/oss
/linux-6.15/sound/core/seq/oss/
H A DMakefile7 snd-seq-oss-y := seq_oss.o seq_oss_init.o seq_oss_timer.o seq_oss_ioctl.o \
11 obj-$(CONFIG_SND_SEQUENCER_OSS) += snd-seq-oss.o
/linux-6.15/Documentation/translations/zh_CN/process/
H A Dsecurity-bugs.rst60 公共 "oss-security" 邮件列表进行。两者紧密关联且被展示在 linux-distros 维基:
61 <https://oss-security.openwall.org/wiki/mailing-lists/distros>
/linux-6.15/sound/core/
H A Dpcm.c396 if (substream->oss.oss) { in snd_pcm_substream_proc_hw_params_read()
397 snd_iprintf(buffer, "OSS format: %s\n", snd_pcm_oss_format_name(runtime->oss.format)); in snd_pcm_substream_proc_hw_params_read()
398 snd_iprintf(buffer, "OSS channels: %u\n", runtime->oss.channels); in snd_pcm_substream_proc_hw_params_read()
399 snd_iprintf(buffer, "OSS rate: %u\n", runtime->oss.rate); in snd_pcm_substream_proc_hw_params_read()
400 snd_iprintf(buffer, "OSS period bytes: %lu\n", (unsigned long)runtime->oss.period_bytes); in snd_pcm_substream_proc_hw_params_read()
401 snd_iprintf(buffer, "OSS periods: %u\n", runtime->oss.periods); in snd_pcm_substream_proc_hw_params_read()
402 snd_iprintf(buffer, "OSS period frames: %lu\n", (unsigned long)runtime->oss.period_frames); in snd_pcm_substream_proc_hw_params_read()
634 mutex_init(&pstr->oss.setup_mutex); in snd_pcm_new_stream()
832 for (setup = pstr->oss.setup_list; setup; setup = setupn) { in snd_pcm_free_stream()
H A DKconfig85 and read <file:Documentation/sound/designs/oss-emulation.rst>.
90 will be called snd-mixer-oss.
98 here and read <file:Documentation/sound/designs/oss-emulation.rst>.
103 will be called snd-pcm-oss.
H A DMakefile53 obj-$(CONFIG_SND_OSSEMUL) += oss/
/linux-6.15/arch/arm64/boot/dts/freescale/
H A Ds32gxxxa-rdb.dtsi5 * Authors: Ciprian Marian Costea <ciprianmarian.costea@oss.nxp.com>
6 * Ghennadi Procopciuc <ghennadi.procopciuc@oss.nxp.com>
H A Ds32gxxxa-evb.dtsi5 * Authors: Ciprian Marian Costea <ciprianmarian.costea@oss.nxp.com>
6 * Ghennadi Procopciuc <ghennadi.procopciuc@oss.nxp.com>
/linux-6.15/sound/
H A DMakefile6 obj-$(CONFIG_DMASOUND) += oss/dmasound/
/linux-6.15/arch/m68k/include/asm/
H A Dmac_oss.h73 extern volatile struct mac_oss *oss;
/linux-6.15/include/sound/
H A Dpcm_oss.h58 unsigned oss: 1; /* oss mode */ member
H A Drawmidi.h60 oss: 1; /* OSS compatible mode */ member
/linux-6.15/Documentation/translations/zh_TW/admin-guide/
H A Dsecurity-bugs.rst64 <http://oss-security.openwall.org/wiki/mailing-lists/distros#how-to-use-the-lists>。
/linux-6.15/Documentation/translations/zh_CN/admin-guide/
H A Dnumastat.rst41 你可以使用numactl软件包(http://oss.sgi.com/projects/libnuma/)中的numastat工具
/linux-6.15/sound/core/seq/
H A DMakefile20 obj-$(CONFIG_SND_SEQUENCER_OSS) += oss/
/linux-6.15/Documentation/ABI/testing/
H A Dsysfs-driver-hid10 Users: HIDAPI library (http://www.signal11.us/oss/hidapi)
/linux-6.15/Documentation/devicetree/bindings/media/
H A Dnxp,dw100.yaml10 - Xavier Roumegue <xavier.roumegue@oss.nxp.com>
/linux-6.15/Documentation/devicetree/bindings/net/
H A Dnxp,s32-dwmac.yaml11 - Jan Petrous (OSS) <jan.petrous@oss.nxp.com>

123