/openbmc/linux/Documentation/devicetree/bindings/iio/adc/ |
H A D | adi,ad7124.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 4 --- 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Stefan Popa <stefan.popa@analog.com> 16 https://www.analog.com/media/en/technical-documentation/data-sheets/AD7124-8.pdf 21 - adi,ad7124-4 22 - adi,ad7124-8 32 clock-names: 34 - const: mclk 40 '#address-cells': [all …]
|
H A D | adi,ad4130.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 4 --- 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Cosmin Tanislav <cosmin.tanislav@analog.com> 15 https://www.analog.com/media/en/technical-documentation/data-sheets/AD4130-8.pdf 20 - adi,ad4130 29 clock-names: 31 - const: mclk 36 interrupt-names: 42 - int [all …]
|
H A D | st,stm32-adc.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/iio/adc/st,stm32-adc.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 STM32 ADC is a successive approximation analog-to-digital converter. 11 It has several multiplexed input channels. Conversions can be performed 13 stored in a left-aligned or right-aligned 32-bit data register. 17 voltage goes beyond the user-defined, higher or lower thresholds. 22 - Fabrice Gasnier <fabrice.gasnier@foss.st.com> 27 - st,stm32f4-adc-core [all …]
|
H A D | adi,max11410.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 4 --- 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Ibrahim Tilki <Ibrahim.Tilki@analog.com> 21 - adi,max11410 30 interrupt-names: 34 - enum: [gpio0, gpio1] 35 - const: gpio1 37 '#address-cells': 40 '#size-cells': [all …]
|
H A D | adi,ad7292.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Analog Devices AD7292 10-Bit Monitor and Control System 10 - Marcelo Schmitt <marcelo.schmitt1@gmail.com> 13 Analog Devices AD7292 10-Bit Monitor and Control System with ADC, DACs, 17 https://www.analog.com/media/en/technical-documentation/data-sheets/ad7292.pdf 22 - adi,ad7292 27 vref-supply: 31 spi-cpha: true [all …]
|
H A D | adc.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: IIO Common Properties for ADC Channels 10 - Jonathan Cameron <jic23@kernel.org> 13 A few properties are defined in a common way ADC channels. 17 pattern: "^channel(@[0-9a-f]+)?$" 32 diff-channels: 33 $ref: /schemas/types.yaml#/definitions/uint32-array 42 settling-time-us: [all …]
|
/openbmc/linux/include/linux/iio/ |
H A D | events.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* The industrial I/O - event passing to userspace 4 * Copyright (c) 2008-2011 Jonathan Cameron 13 * IIO_EVENT_CODE() - create event identifier 15 * @diff: Whether the event is for an differential channel or not. 19 * @chan: Channel number for non-differential channels. 20 * @chan1: First channel number for differential channels. 21 * @chan2: Second channel number for differential channels. 24 #define IIO_EVENT_CODE(chan_type, diff, modifier, direction, \ argument 26 (((u64)type << 56) | ((u64)diff << 55) | \ [all …]
|
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal/ |
H A D | 0002-Fix-Eq-CAPS-plugin-name.patch | 3 Date: Wed, 5 Oct 2016 10:57:29 -0300 10 Upstream-Status: Pending 12 Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> 13 --- 14 README | 8 ++++---- 15 ctl_equal.c | 2 +- 16 pcm_equal.c | 2 +- 17 3 files changed, 6 insertions(+), 6 deletions(-) 19 diff --git a/README b/README 21 --- a/README [all …]
|
/openbmc/u-boot/doc/device-tree-bindings/adc/ |
H A D | st,stm32-adc.txt | 3 STM32 ADC is a successive approximation analog-to-digital converter. 4 It has several multiplexed input channels. Conversions can be performed 6 stored in a left-aligned or right-aligned 32-bit data register. 10 voltage goes beyond the user-defined, higher or lower thresholds. 16 - regular conversion can be done in sequence, running in background 17 - injected conversions have higher priority, and so have the ability to 22 ----------------------------------- 24 - compatible: Should be one of: 25 "st,stm32f4-adc-core" 26 "st,stm32h7-adc-core" [all …]
|
/openbmc/linux/drivers/iio/adc/ |
H A D | stm32-adc.c | 1 // SPDX-License-Identifier: GPL-2.0 5 * Copyright (C) 2016, STMicroelectronics - All Rights Reserved 12 #include <linux/dma-mapping.h> 16 #include <linux/iio/timer/stm32-lptim-trigger.h> 17 #include <linux/iio/timer/stm32-timer-trigger.h> 26 #include <linux/nvmem-consumer.h> 31 #include "stm32-adc-core.h" 39 #define STM32_ADC_CH_MAX 20 /* max number of channels */ 58 /* extsel - trigger mux selection value */ 84 STM32_ADC_INT_CH_NONE = -1, [all …]
|
/openbmc/linux/sound/core/ |
H A D | pcm_lib.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 5 * Abramo Bagnara <abramo@alsa-project.org> 43 delta = new_ptr - ptr; in update_silence_vars() 47 delta += runtime->boundary; in update_silence_vars() 48 if ((snd_pcm_uframes_t)delta < runtime->silence_filled) in update_silence_vars() 49 runtime->silence_filled -= delta; in update_silence_vars() 51 runtime->silence_filled = 0; in update_silence_vars() 52 runtime->silence_start = new_ptr; in update_silence_vars() 57 * runtime->silence_start: starting pointer to silence area 58 * runtime->silence_filled: size filled with silence [all …]
|
/openbmc/linux/tools/testing/selftests/alsa/ |
H A D | pcm-test.c | 1 // SPDX-License-Identifier: GPL-2.0 21 #include "alsa-local.h" 66 timestamp_t now, diff; in timestamp_diff_ms() local 68 if (tstamp->tv_nsec > now.tv_nsec) { in timestamp_diff_ms() 69 diff.tv_sec = now.tv_sec - tstamp->tv_sec - 1; in timestamp_diff_ms() 70 diff.tv_nsec = (now.tv_nsec + 1000000000L) - tstamp->tv_nsec; in timestamp_diff_ms() 72 diff.tv_sec = now.tv_sec - tstamp->tv_sec; in timestamp_diff_ms() 73 diff.tv_nsec = now.tv_nsec - tstamp->tv_nsec; in timestamp_diff_ms() 75 return (diff.tv_sec * 1000) + ((diff.tv_nsec + 500000L) / 1000000L); in timestamp_diff_ms() 89 return -1; in device_from_id() [all …]
|
/openbmc/openbmc/poky/meta/recipes-multimedia/libsndfile/libsndfile1/ |
H A D | cve-2022-33065.patch | 3 Date: Tue, 10 Oct 2023 16:10:34 -0400 10 src/mat4.c:323:41: runtime error: signed integer overflow: 205 * -100663296 cannot be represented i… 11 SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior src/mat4.c:323:41 in 13 SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior src/mat4.c:323:48 in 19 CVE: CVE-2022-33065 23 Upstream-Status: Backport [9a829113c88a51e57c1e46473e90609e4b7df151] 25 Signed-off-by: Alex Stewart <alex.stewart@ni.com> 26 --- 27 src/mat4.c | 2 +- 28 1 file changed, 1 insertion(+), 1 deletion(-) [all …]
|
H A D | CVE-2024-50612.patch | 3 Date: Fri, 15 Nov 2024 19:46:53 -0800 6 CVE: CVE-2024-50612 7 Upstream-Status: Backport [4755f5bd7854611d92ad0f1295587b439f9950ba] 8 Signed-off-by: Ross Burton <ross.burton@arm.com> 9 --- 10 src/ogg.c | 12 ++-- 11 src/ogg_opus.c | 17 +++-- 12 src/ogg_vorbis.c | 170 ++++++++++++++++++++++++++--------------------- 13 3 files changed, 114 insertions(+), 85 deletions(-) 15 diff --git a/src/ogg.c b/src/ogg.c [all …]
|
/openbmc/openbmc/poky/scripts/ |
H A D | sstate-sysroot-cruft.sh | 5 # SPDX-License-Identifier: GPL-2.0-only 18 -h, --help 21 --tmpdir=<tmpdir> 23 Something like /OE/oe-core/tmp-eglibc (no / at the end). 25 --whitelist=<whitelist-file> 26 Text file, each line is regular expression for paths we want to ignore in resulting diff. 27 You can use diff file from the script output, if it contains only expected exceptions. 42 while [ -n "$1" ]; do 44 --tmpdir=*) 45 tmpdir=`echo $1 | sed -e 's#^--tmpdir=##' | xargs readlink -e` [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/ |
H A D | CVE-2019-7572.patch | 4 # Mon Jun 10 08:57:11 2019 -0700 5 # Branch SDL-1.2 8 CVE-2019-7572: Fix a buffer overwrite in IMA_ADPCM_decode 16 CVE-2019-7572 19 Signed-off-by: Petr Písař <ppisar@redhat.com> 24 # Sat Jun 08 17:57:43 2019 -0700 25 # Branch SDL-1.2 28 CVE-2019-7572: Fix a buffer overread in IMA_ADPCM_nibble 37 CVE-2019-7572 40 Signed-off-by: Petr Písař <ppisar@redhat.com> [all …]
|
H A D | CVE-2019-7574.patch | 4 # Mon Jun 10 08:50:59 2019 -0700 5 # Branch SDL-1.2 8 CVE-2019-7574: Fix a buffer overread in IMA_ADPCM_decode 13 CVE-2019-7574 16 Signed-off-by: Petr Písař <ppisar@redhat.com> 18 CVE: CVE-2019-7574 19 Upstream-Status: Backport 20 Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> 22 diff -r 388987dff7bf -r a6e3d2f5183e src/audio/SDL_wave.c 23 --- a/src/audio/SDL_wave.c Sat Jun 08 18:02:09 2019 -0700 [all …]
|
H A D | CVE-2019-7578.patch | 4 # Sat Jun 08 18:02:09 2019 -0700 5 # Branch SDL-1.2 8 CVE-2019-7578: Fix a buffer overread in InitIMA_ADPCM 12 CVE-2019-7578 15 Signed-off-by: Petr Písař <ppisar@redhat.com> 17 CVE: CVE-2019-7578 18 Upstream-Status: Backport 19 Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> 21 diff -r e52413f52586 -r 388987dff7bf src/audio/SDL_wave.c 22 --- a/src/audio/SDL_wave.c Sat Jun 08 17:57:43 2019 -0700 [all …]
|
H A D | CVE-2019-7576.patch | 4 # Mon Jun 10 09:06:23 2019 -0700 5 # Branch SDL-1.2 8 CVE-2019-7573, CVE-2019-7576: Fix buffer overreads in InitMS_ADPCM 12 CVE-2019-7573 14 CVE-2019-7576 17 Signed-off-by: Petr Písař <ppisar@redhat.com> 19 CVE: CVE-2019-7573 20 CVE: CVE-2019-7576 21 Upstream-Status: Backport 22 Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> [all …]
|
/openbmc/linux/drivers/dma/ |
H A D | dmatest.c | 1 // SPDX-License-Identifier: GPL-2.0-only 12 #include <linux/dma-mapping.h> 40 "Maximum number of channels to use (default: all)"); 50 "dmatest 0-memcpy 1-memset (default: 0)"); 65 "Pass -1 for infinite timeout"); 79 static int alignment = -1; 81 …M_DESC(alignment, "Custom data address alignment taken as 2^(alignment) (default: not used (-1))"); 92 * struct dmatest_params - test parameters. 97 * @max_channels: maximum number of channels to use 101 * @timeout: transfer timeout in msec, -1 for infinite timeout [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/freerdp/freerdp/ |
H A D | 0001-Fixed-compilation-warnings-in-ainput-channel.patch | 6 Upstream-Status: Backport [130094de3 Fixed compilation warnings in ainput channel] 7 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> 8 --- 9 channels/ainput/server/ainput_main.c | 18 ++++++++++++------ 10 1 file changed, 12 insertions(+), 6 deletions(-) 12 diff --git a/channels/ainput/server/ainput_main.c b/channels/ainput/server/ainput_main.c 14 --- a/channels/ainput/server/ainput_main.c 15 +++ b/channels/ainput/server/ainput_main.c 16 @@ -192,7 +192,7 @@ static UINT ainput_server_recv_mouse_event(ainput_server* ainput, wStream* s) 20 - BYTE* buffer = NULL; [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/mux/ |
H A D | adi,adg792a.txt | 4 - compatible : "adi,adg792a" or "adi,adg792g" 5 - #mux-control-cells : <0> if parallel (the three muxes are bound together 8 * Standard mux-controller bindings as described in mux-controller.yaml 11 - gpio-controller : if present, #gpio-cells below is required. 12 - #gpio-cells : should be <2> 13 - First cell is the GPO line number, i.e. 0 or 1 14 - Second cell is used to specify active high (0) 18 - idle-state : if present, array of states that the mux controllers will have 32 mux: mux-controller@50 { 35 #mux-control-cells = <1>; [all …]
|
/openbmc/linux/sound/soc/codecs/ |
H A D | pcm186x.c | 1 // SPDX-License-Identifier: GPL-2.0 5 * Copyright (C) 2015-2017 Texas Instruments Incorporated - https://www.ti.com 29 "avdd", /* Analog power supply. Connect to 3.3-V supply. */ 30 "dvdd", /* Digital power supply. Connect to 3.3-V supply. */ 31 "iovdd", /* I/O power supply. Connect to 3.3-V or 1.8-V. */ 44 static const DECLARE_TLV_DB_SCALE(pcm186x_pga_tlv, -1200, 50, 0); 48 PCM186X_PGA_VAL_CH1_R, 0, -24, 80, 7, 0, 54 PCM186X_PGA_VAL_CH1_R, 0, -24, 80, 7, 0, 57 PCM186X_PGA_VAL_CH2_R, 0, -24, 80, 7, 0, 84 "{VIN1P, VIN1M}[DIFF]", [all …]
|
/openbmc/linux/net/rxrpc/ |
H A D | conn_client.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* Client connection-specific management code. 13 * (2) DONT_REUSE - The connection should be discarded as soon as possible and 31 #include "ar-internal.h" 39 atomic_inc(&bundle->active); in rxrpc_activate_bundle() 48 idr_remove(&local->conn_ids, conn->proto.cid >> RXRPC_CIDSHIFT); in rxrpc_put_client_connection_id() 59 if (!idr_is_empty(&local->conn_ids)) { in rxrpc_destroy_client_conn_ids() 60 idr_for_each_entry(&local->conn_ids, conn, id) { in rxrpc_destroy_client_conn_ids() 62 conn, refcount_read(&conn->ref)); in rxrpc_destroy_client_conn_ids() 67 idr_destroy(&local->conn_ids); in rxrpc_destroy_client_conn_ids() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/minidlna/minidlna/ |
H A D | 0001-Add-compatibility-with-FFMPEG-7.0.patch | 3 Date: Thu, 29 Aug 2024 13:22:33 -0700 8 Upstream-Status: Submitted [https://sourceforge.net/p/minidlna/git/merge-requests/59/] 9 Signed-off-by: Khem Raj <raj.khem@gmail.com> 10 --- 14 diff --git a/libav.h b/libav.h 16 --- a/libav.h 18 @@ -58,6 +58,7 @@ 26 @@ -174,7 +175,11 @@ lav_get_interlaced(AVStream *s) 27 #define lav_codec_tag(s) s->codecpar->codec_tag 28 #define lav_sample_rate(s) s->codecpar->sample_rate [all …]
|