FreeBSD/src e1bbaa7sys/dev/sound/pcm pcm.h sound.h, sys/sys soundcard.h

sound: Implement AFMT_FLOAT support

Even though the OSS manual [1] advises against using AFMT_FLOAT, there
are applications that expect the sound driver to support it, and might
not work properly without it.

This patch adds AFMT_F32_LE|BE (as well as AFMT_FLOAT for OSS
compatibility) in sys/soundcard.h and implements AFMT_F32_LE|BE <->
AFMT_S32_LE|BE conversion functions. As a result, applications can
write/read floats to/from sound(4), but internally, because sound(4)
works with integers, we convert floating point samples to integer ones,
before doing any processing.

The reason for encoding/decoding IEEE754s manually, instead of using
fpu_kern(9), is that fpu_kern(9) is not supported by all architectures,
and also introduces significant overhead.

The IEEE754 encoding/decoding implementation has been written by Ariff
Abdullah [2].

    [9 lines not shown]
DeltaFile
+64-3sys/dev/sound/pcm/pcm.h
+8-5sys/dev/sound/pcm/sound.h
+8-0sys/sys/soundcard.h
+6-0tests/sys/sound/pcm_read_write.c
+4-0sys/dev/sound/pcm/channel.c
+4-0sys/dev/sound/pcm/feeder_rate.c
+94-82 files not shown
+98-88 files

FreeBSD/src caa0636sys/dev/sound/pcm feeder_mixer.c channel.c

sound: Update COPYRIGHT notices

Only to files I've currently made significant contributions to.

Sponsored by:   The FreeBSD Foundation
MFC after:      1 week

(cherry picked from commit c824383b269d8abe175ea4751194660716d5600e)
DeltaFile
+4-0sys/dev/sound/pcm/feeder_mixer.c
+4-0sys/dev/sound/pcm/channel.c
+4-0sys/dev/sound/pcm/channel.h
+4-0sys/dev/sound/pcm/pcm.h
+4-0sys/dev/sound/pcm/dsp.h
+4-0sys/dev/sound/pcm/feeder.c
+24-010 files not shown
+49-516 files

FreeBSD/src d8c3c67sys/dev/sound/pcm pcm.h feeder_rate.c

sound: Turn clamp macros into a function

This makes some subsequent feeder refactors easier to implement.

Sponsored by:   The FreeBSD Foundation
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D48421

(cherry picked from commit 4918fc2e238b581aaf1f63e20003d5fa957f0b09)
DeltaFile
+38-26sys/dev/sound/pcm/pcm.h
+2-6sys/dev/sound/pcm/feeder_rate.c
+2-6sys/dev/sound/pcm/feeder_eq.c
+2-1sys/dev/sound/pcm/feeder_volume.c
+1-1sys/dev/sound/pcm/feeder_mixer.c
+45-405 files

FreeBSD/src 33529d6sys/dev/sound/pcm pcm.h feeder_format.c, tests/sys/sound pcm_read_write.c

sound: Refactor the format conversion framework

Merge the PCM_READ|WRITE_* macros defined in pcm/pcm.h, as well as the
intpcm_read|write_* macros defined in pcm/feeder_format.c, into six
inline functions: pcm_sample_read|write[_norm|calc](). The absence of
macro magic makes the code significantly easier to read, use and modify.

Since these functions take the input/output format as a parameter, get
rid of the read() and write() function pointers defined in struct
feed_format_info, as well as the feeder_format_read|write_op()
functions, and use the new read/write functions directly.

Sponsored by:   The FreeBSD Fondation
MFC after:      1 week
Reviewed by:    markj
Differential Revision:  https://reviews.freebsd.org/D47932

(cherry picked from commit 433e270f341cf660b2fe125c2e0f733073829188)
DeltaFile
+246-311sys/dev/sound/pcm/pcm.h
+6-272tests/sys/sound/pcm_read_write.c
+6-215sys/dev/sound/pcm/feeder_format.c
+19-24sys/dev/sound/pcm/feeder_matrix.c
+10-8sys/dev/sound/pcm/feeder_rate.c
+6-6sys/dev/sound/pcm/feeder_eq.c
+293-8365 files not shown
+303-85011 files

FreeBSD/src c824383sys/dev/sound/pcm vchan.h channel.c

sound: Update COPYRIGHT notices

Only to files I've currently made significant contributions to.

Sponsored by:   The FreeBSD Foundation
MFC after:      1 week
DeltaFile
+4-0sys/dev/sound/pcm/vchan.h
+4-0sys/dev/sound/pcm/channel.c
+4-0sys/dev/sound/pcm/channel.h
+4-0sys/dev/sound/pcm/dsp.h
+4-0sys/dev/sound/pcm/feeder.c
+4-0sys/dev/sound/pcm/feeder_eq.c
+24-010 files not shown
+49-516 files

FreeBSD/src 4918fc2sys/dev/sound/pcm pcm.h feeder_eq.c

sound: Turn clamp macros into a function

This makes some subsequent feeder refactors easier to implement.

Sponsored by:   The FreeBSD Foundation
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D48421
DeltaFile
+38-26sys/dev/sound/pcm/pcm.h
+2-6sys/dev/sound/pcm/feeder_eq.c
+2-6sys/dev/sound/pcm/feeder_rate.c
+2-1sys/dev/sound/pcm/feeder_volume.c
+1-1sys/dev/sound/pcm/feeder_mixer.c
+45-405 files

FreeBSD/src 433e270sys/dev/sound/pcm pcm.h feeder_format.c, tests/sys/sound pcm_read_write.c

sound: Refactor the format conversion framework

Merge the PCM_READ|WRITE_* macros defined in pcm/pcm.h, as well as the
intpcm_read|write_* macros defined in pcm/feeder_format.c, into six
inline functions: pcm_sample_read|write[_norm|calc](). The absence of
macro magic makes the code significantly easier to read, use and modify.

Since these functions take the input/output format as a parameter, get
rid of the read() and write() function pointers defined in struct
feed_format_info, as well as the feeder_format_read|write_op()
functions, and use the new read/write functions directly.

Sponsored by:   The FreeBSD Fondation
MFC after:      1 week
Reviewed by:    markj
Differential Revision:  https://reviews.freebsd.org/D47932
DeltaFile
+246-311sys/dev/sound/pcm/pcm.h
+6-272tests/sys/sound/pcm_read_write.c
+6-215sys/dev/sound/pcm/feeder_format.c
+19-24sys/dev/sound/pcm/feeder_matrix.c
+10-8sys/dev/sound/pcm/feeder_rate.c
+6-6sys/dev/sound/pcm/feeder_eq.c
+293-8365 files not shown
+303-85011 files

FreeBSD/src f8167e0sys/amd64/amd64 cpu_switch.S efirt_support.S, sys/dev/mpr mpr_ioctl.h

sys: Remove $FreeBSD$: two-line .h pattern

Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/

Similar commit in current:
(cherry picked from commit 95ee2897e98f)
DeltaFile
+0-4sys/dev/mpr/mpr_ioctl.h
+0-4sys/dev/mps/mps_ioctl.h
+0-2sys/amd64/amd64/cpu_switch.S
+0-2sys/amd64/amd64/efirt_support.S
+0-2sys/amd64/amd64/exception.S
+0-2sys/amd64/amd64/locore.S
+0-163,795 files not shown
+0-7,6063,801 files

FreeBSD/src 95ee289sys/amd64/acpica acpi_wakecode.S, sys/amd64/amd64 bpf_jit_machdep.h cpu_switch.S

sys: Remove $FreeBSD$: two-line .h pattern

Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
DeltaFile
+0-4sys/dev/mps/mps_ioctl.h
+0-4sys/dev/mpr/mpr_ioctl.h
+0-2sys/net80211/ieee80211_ratectl.h
+0-2sys/amd64/acpica/acpi_wakecode.S
+0-2sys/amd64/amd64/bpf_jit_machdep.h
+0-2sys/amd64/amd64/cpu_switch.S
+0-163,592 files not shown
+0-7,2003,598 files

FreeBSD/src caa41f6include bitstring.h complex.h, sys/dev/qlxge qls_isr.c

spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD

The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch
up to that fact and revert to their recommended match of BSD-2-Clause.

Discussed with:         pfg
MFC After:              3 days
Sponsored by:           Netflix

(cherry picked from commit 4d846d260e2b9a3d4d0a701462568268cbfe7a5b)
DeltaFile
+2-2sys/dev/qlxge/qls_isr.c
+2-2sys/xen/xenbus/xenbusb.h
+1-1include/bitstring.h
+1-1include/complex.h
+1-1include/cpio.h
+1-1include/elf-hints.h
+8-85,432 files not shown
+5,440-5,4405,438 files

FreeBSD/src 4d846d2include elf.h fmtmsg.h, sys/dev/qlxge qls_isr.c

spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD

The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch
up to that fact and revert to their recommended match of BSD-2-Clause.

Discussed with:         pfg
MFC After:              3 days
Sponsored by:           Netflix
DeltaFile
+2-2sys/dev/qlxge/qls_isr.c
+2-2sys/xen/xenbus/xenbusb.h
+1-1include/elf.h
+1-1include/fmtmsg.h
+1-1include/inttypes.h
+1-1include/iso646.h
+8-85,571 files not shown
+5,579-5,5795,577 files

FreeBSD/src 4ab2e06 (r331722)sys/dev/altera/atse if_atse.c, sys/dev/altera/avgen altera_avgen.c

Revert r330897:

This was intended to be a non-functional change. It wasn't. The commit
message was thus wrong. In addition it broke arm, and merged crypto
related code.

Revert with prejudice.

This revert skips files touched in r316370 since that commit was since
MFCed. This revert also skips files that require $FreeBSD$ property
changes.

Thank you to those who helped me get out of this mess including but not
limited to gonzo, kevans, rgrimes.

Requested by: gjb (re)
DeltaFile
+555-222sys/mips/beri/beri_pic.c
+26-212sys/dev/altera/avgen/altera_avgen.c
+68-129sys/dev/sound/pci/hdspe-pcm.c
+42-116sys/dev/altera/jtag_uart/altera_jtag_uart_tty.c
+16-109sys/dev/cfe/cfe_ioctl.h
+47-56sys/dev/altera/atse/if_atse.c
+754-8446,810 files not shown
+1,982-15,6676,816 files

FreeBSD/src be5d0b9 (r330897)sys/arm/arm pl190.c, sys/arm/versatile versatile_sic.c

Partial merge of the SPDX changes

These changes are incomplete but are making it difficult
to determine what other changes can/should be merged.

No objections from:     pfg
DeltaFile
+238-571sys/mips/beri/beri_pic.c
+178-61sys/arm/arm/pl190.c
+212-26sys/dev/altera/avgen/altera_avgen.c
+209-24sys/arm/versatile/versatile_sic.c
+129-68sys/dev/sound/pci/hdspe-pcm.c
+116-42sys/dev/altera/jtag_uart/altera_jtag_uart_tty.c
+1,082-7926,829 files not shown
+16,022-1,9906,835 files

FreeBSD/src 718cf2c (r326255)sys/dev/ath/ath_hal/ar9003 ar9300_devid.h, sys/dev/bm if_bmreg.h

sys/dev: further adoption of SPDX licensing ID tags.

Mainly focus on files that use BSD 2-Clause license, however the tool I
was using misidentified many licenses so this was mostly a manual - error
prone - task.

The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.
DeltaFile
+5-1sys/dev/qlxge/qls_isr.c
+4-2sys/dev/bm/if_bmreg.h
+4-2sys/dev/ath/ath_hal/ar9003/ar9300_devid.h
+3-1sys/dev/qlxgbe/ql_hw.h
+3-1sys/dev/qlxgbe/ql_inline.h
+3-1sys/dev/qlxgbe/ql_ioctl.c
+22-81,976 files not shown
+4,089-1591,982 files

FreeBSD/src 246e7a2 (r270962)contrib/file ltmain.sh, contrib/sqlite3 sqlite3.c configure

IFC @r269962

Submitted by:   Anish Gupta (akgupt3 at gmail.com)
DeltaFile
+22,450-15,124contrib/sqlite3/sqlite3.c
+5,658-12,035contrib/sqlite3/configure
+6,412-4,081contrib/sqlite3/aclocal.m4
+6,467-3,742contrib/sqlite3/ltmain.sh
+9,664-0contrib/file/ltmain.sh
+9,028-0sys/dev/cxgbe/firmware/t5fw-1.11.27.0.bin.uu
+59,679-34,9825,594 files not shown
+257,325-259,7485,600 files

FreeBSD/src ee7b057 (r270164)contrib/file ltmain.sh, sys/dev/cxgbe/firmware t5fw-1.11.27.0.bin.uu t4fw-1.11.27.0.bin.uu

Merge head from 7/28
DeltaFile
+10,713-0sys/dev/i40e/i40e_register_x710_int.h
+9,664-0contrib/file/ltmain.sh
+9,028-0sys/dev/cxgbe/firmware/t5fw-1.11.27.0.bin.uu
+9,019-0sys/dev/cxgbe/firmware/t4fw-1.11.27.0.bin.uu
+0-8,705sys/dev/cxgbe/firmware/t4fw-1.9.12.0.bin.uu
+0-8,417sys/dev/cxgbe/firmware/t5fw-1.9.12.0.bin.uu
+38,424-17,1226,904 files not shown
+275,846-197,0416,910 files

FreeBSD/src 1b833d5 (r269947)contrib/file ltmain.sh, contrib/sqlite3 sqlite3.c configure

Sync to HEAD at r269943.
DeltaFile
+22,450-15,124contrib/sqlite3/sqlite3.c
+5,658-12,035contrib/sqlite3/configure
+6,412-4,081contrib/sqlite3/aclocal.m4
+6,467-3,742contrib/sqlite3/ltmain.sh
+9,664-0contrib/file/ltmain.sh
+9,028-0sys/dev/cxgbe/firmware/t5fw-1.11.27.0.bin.uu
+59,679-34,9824,966 files not shown
+217,573-243,2484,972 files

FreeBSD/src e7d939b (r268351)sys/contrib/ia64/libuwx/src uwx_uinfo.c, sys/ia64/disasm disasm_extract.c disasm_decode.c

Remove ia64.

This includes:
o   All directories named *ia64*
o   All files named *ia64*
o   All ia64-specific code guarded by __ia64__
o   All ia64-specific makefile logic
o   Mention of ia64 in comments and documentation

This excludes:
o   Everything under contrib/
o   Everything under crypto/
o   sys/xen/interface
o   sys/sys/elf_common.h

Discussed at: BSDcan
DeltaFile
+0-2,923sys/ia64/ia64/pmap.c
+0-2,609sys/ia64/disasm/disasm_extract.c
+0-2,565sys/ia64/disasm/disasm_decode.c
+0-1,758sys/ia64/ia64/exception.S
+0-1,540sys/ia64/ia64/machdep.c
+0-1,119sys/contrib/ia64/libuwx/src/uwx_uinfo.c
+0-12,514438 files not shown
+129-62,813444 files

FreeBSD/src 039ea81contrib/ipfilter .cvsignore, contrib/ipfilter/BSD .cvsignore

Copy releng/8.3 to release/8.3.0 as part of the 8.3-RELEASE build process.

Approved by:    re (implicit)

This commit was manufactured to restore the state of the 8.3-RELEASE image.
DeltaFile
+0-87contrib/ipfilter/test/.cvsignore
+0-28contrib/ipfilter/.cvsignore
+0-22contrib/ipfilter/BSD/.cvsignore
+0-13contrib/libpcap/.cvsignore
+0-12contrib/tcpdump/.cvsignore
+0-9contrib/ipfilter/iplang/.cvsignore
+0-17122,678 files not shown
+22,716-22,91522,684 files

FreeBSD/src dec99dacontrib/ipfilter .cvsignore, contrib/ipfilter/BSD .cvsignore

Copy releng/8.2 to release/8.2.0 for 8.2-RELEASE.

Approved by:    re (implicit)

This commit was manufactured to restore the state of the 8.2-RELEASE image.
DeltaFile
+0-87contrib/ipfilter/test/.cvsignore
+0-28contrib/ipfilter/.cvsignore
+0-22contrib/ipfilter/BSD/.cvsignore
+0-13contrib/libpcap/.cvsignore
+0-12contrib/tcpdump/.cvsignore
+0-10lib/libarchive/test/.cvsignore
+0-17221,736 files not shown
+21,746-21,95521,742 files

FreeBSD/src a7d5f7e (r214084)contrib/libstdc++ configure, games/fortune/datfiles fortunes

A new jail(8) with a configuration file, to replace the work currently done
by /etc/rc.d/jail.
DeltaFile
+0-235,924share/dict/web2
+0-111,817contrib/libstdc++/configure
+0-76,205share/dict/web2a
+0-74,292sys/contrib/octeon-sdk/cvmx-csr-db.c
+0-73,991sys/contrib/octeon-sdk/cvmx-csr-typedefs.h
+0-59,651games/fortune/datfiles/fortunes
+0-631,88044,919 files not shown
+0-17,210,07844,925 files

FreeBSD/src 90d6fa7contrib/ipfilter .cvsignore, contrib/ipfilter/BSD .cvsignore

Copy releng/8.1 to release/8.1.0 for 8.1-RELEASE.

Approved by:    re (implicit)

This commit was manufactured to restore the state of the 8.1-RELEASE image.
DeltaFile
+0-87contrib/ipfilter/test/.cvsignore
+0-28contrib/ipfilter/.cvsignore
+0-22contrib/ipfilter/BSD/.cvsignore
+0-13contrib/libpcap/.cvsignore
+0-12contrib/tcpdump/.cvsignore
+0-10lib/libarchive/test/.cvsignore
+0-17221,656 files not shown
+21,681-21,89021,662 files

FreeBSD/src a4d3b78contrib/ipfilter .cvsignore, contrib/ipfilter/BSD .cvsignore

Create release/8.0.0 for the 8.0-RELEASE.

Approved by:    re (implicit)

This commit was manufactured to restore the state of the 8.0-RELEASE image.
DeltaFile
+0-87contrib/ipfilter/test/.cvsignore
+0-28contrib/ipfilter/.cvsignore
+0-22contrib/ipfilter/BSD/.cvsignore
+0-13contrib/libpcap/.cvsignore
+0-12contrib/tcpdump/.cvsignore
+0-10lib/libarchive/test/.cvsignore
+0-17221,366 files not shown
+21,369-21,57821,372 files

FreeBSD/src 10b3b54 (r197292)sys/dev/bce if_bcefw.h, sys/dev/drm r600_microcode.h

Merge from head
DeltaFile
+28,896-11,377sys/dev/ispfw/asm_2400.h
+13,791-13,454sys/dev/bce/if_bcefw.h
+27,016-0sys/dev/ispfw/asm_2500.h
+23,295-0sys/dev/drm/r600_microcode.h
+9,461-9,376sys/dev/mxge/rss_ethp_z8e.h
+9,376-9,295sys/dev/mxge/rss_eth_z8e.h
+111,835-43,5029,468 files not shown
+1,127,414-1,017,0109,474 files

FreeBSD/src 7e857dd (r194056)contrib/bind9/doc/rfc rfc1122.txt rfc4634.txt, share/misc pci_vendors

- Merge from HEAD
DeltaFile
+9,235-0sys/contrib/dev/acpica/changes.txt
+0-8,448sys/contrib/dev/acpica/CHANGES.txt
+4,704-3,646share/misc/pci_vendors
+0-6,844contrib/bind9/doc/rfc/rfc1122.txt
+0-6,051contrib/bind9/doc/rfc/rfc4634.txt
+0-5,782contrib/bind9/doc/rfc/rfc1123.txt
+13,939-30,7713,172 files not shown
+271,611-465,1273,178 files

FreeBSD/src 90da2b2 (r193640)sys/dev/sound/pcm feeder_rate.c channel.c

Sound Mega-commit. Expect further cleanup until code freeze.

For a slightly thorough explaination, please refer to
        [1] http://people.freebsd.org/~ariff/SOUND_4.TXT.html .

Summary of changes includes:

1 Volume Per-Channel (vpc).  Provides private / standalone volume control
  unique per-stream pcm channel without touching master volume / pcm.
  Applications can directly use SNDCTL_DSP_[GET|SET][PLAY|REC]VOL, or for
  backwards compatibility, SOUND_MIXER_PCM through the opened dsp device
  instead of /dev/mixer.  Special "bypass" mode is enabled through
  /dev/mixer which will automatically detect if the adjustment is made
  through /dev/mixer and forward its request to this private volume
  controller.  Changes to this volume object will not interfere with
  other channels.

  Requirements:
    - SNDCTL_DSP_[GET|SET][PLAY|REC]_VOL are newer ioctls (OSSv4) which

    [79 lines not shown]
DeltaFile
+1,639-538sys/dev/sound/pcm/feeder_rate.c
+967-650sys/dev/sound/pcm/channel.c
+0-1,435sys/dev/sound/pcm/feeder_fmt.c
+674-714sys/dev/sound/pcm/vchan.c
+636-221sys/dev/sound/pcm/dsp.c
+843-0sys/dev/sound/pcm/feeder_chain.c
+4,759-3,55886 files not shown
+12,572-5,89092 files