[PATCH 1/3] arm64: tegra: Fix Tegra194 HDA {clock,reset}-names ordering

2020-11-18 Thread Sameer Pujar
As per the HDA binding doc reorder {clock,reset}-names entries for Tegra194. This also serves as a preparation for converting existing binding doc to json-schema. Signed-off-by: Sameer Pujar --- arch/arm64/boot/dts/nvidia/tegra194.dtsi | 12 ++-- 1 file changed, 6 insertions(+), 6

[PATCH 0/3] Convert Tegra HDA doc to json-schema

2020-11-18 Thread Sameer Pujar
Fix Tegra194 DT and convert Tegra HDA doc to YAML format. Ran binding validation checks to ensure there are no warnings/errors for HDA. Sameer Pujar (3): arm64: tegra: Fix Tegra194 HDA {clock,reset}-names ordering dt-bindings: tegra: Convert HDA doc to json-schema dt-bindings: tegra: Add

Re: [PATCH v3 1/3] dt-bindings: Convert graph bindings to json-schema

2020-11-12 Thread Sameer Pujar
Hi Rob, From: Sameer Pujar Convert device tree bindings of graph to YAML format. Currently graph.txt doc is referenced in multiple files and all of these need to use schema references. For now graph.txt is updated to refer to graph.yaml. For users of the graph binding, they should reference

[PATCH v5 4/6] arm64: defconfig: Enable Tegra audio graph card driver

2020-11-11 Thread Sameer Pujar
This commit enables Tegra audio graph card driver which is based on the generic audio-graph card driver. This is intended to be used on platforms based on Tegra210 and later chips. Signed-off-by: Sameer Pujar --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH v5 6/6] arm64: tegra: Audio graph sound card for Jetson Nano and TX1

2020-11-11 Thread Sameer Pujar
Enable support for audio-graph based sound card on Jetson-Nano and Jetson-TX1. Depending on the platform, required I/O interfaces are enabled. * Jetson-Nano: Enable I2S3, I2S4, DMIC1 and DMIC2. * Jetson-TX1: Enable all I2S and DMIC interfaces. Signed-off-by: Sameer Pujar --- arch/arm64/boot

[PATCH v5 5/6] arm64: tegra: Audio graph header for Tegra210

2020-11-11 Thread Sameer Pujar
-by: Sameer Pujar --- .../boot/dts/nvidia/tegra210-audio-graph.dtsi | 153 + 1 file changed, 153 insertions(+) create mode 100644 arch/arm64/boot/dts/nvidia/tegra210-audio-graph.dtsi diff --git a/arch/arm64/boot/dts/nvidia/tegra210-audio-graph.dtsi b/arch/arm64/boot/dts

[PATCH v5 2/6] ASoC: dt-bindings: tegra: Add json-schema for Tegra audio graph card

2020-11-11 Thread Sameer Pujar
Add YAML schema for Tegra audio graph sound card DT bindings. It uses the same DT bindings provided by generic audio graph driver. Along with this few standard clock DT bindings are added which are specifically required for Tegra audio. Signed-off-by: Sameer Pujar --- .../sound/nvidia,tegra

[PATCH v5 1/6] ASoC: dt-bindings: tegra: Add graph bindings

2020-11-11 Thread Sameer Pujar
Add device tree binding properties of generic graph to ASoC component devices. This allows to define audio ports out of these components or DAIs and audio graph based sound card can be realised with this. Signed-off-by: Sameer Pujar --- .../devicetree/bindings/sound/nvidia,tegra186-dspk.yaml

[PATCH v5 3/6] ASoC: tegra: Add audio graph based card driver

2020-11-11 Thread Sameer Pujar
with component model. Signed-off-by: Sameer Pujar --- sound/soc/tegra/Kconfig | 9 ++ sound/soc/tegra/Makefile | 2 + sound/soc/tegra/tegra_audio_graph_card.c | 255 +++ 3 files changed, 266 insertions(+) create mode 100644 sound/soc/tegra

[PATCH v5 0/6] Tegra210 audio graph card

2020-11-11 Thread Sameer Pujar
ter above change, multiple Codec endpoint support is not required and hence dropped for now. This will be considered separately if at all required in future. * Re-ordered patches in the series. Sameer Pujar (6): ASoC: dt-bindings: tegra: Add graph bindings ASoC: dt-bindings: tegra: Add j

[Bug 1903871] [NEW] No sound from speakers after removing headphones

2020-11-11 Thread Sameer Tariq
Package: linux-image-5.4.0-53-generic 5.4.0-53.59 ProcVersionSignature: Ubuntu 5.4.0-53.59-generic 5.4.65 Uname: Linux 5.4.0-53-generic x86_64 ApportVersion: 2.20.11-0ubuntu27.11 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: sameer 1982 F pulseaudio

[Kernel-packages] [Bug 1903871] [NEW] No sound from speakers after removing headphones

2020-11-11 Thread Sameer Tariq
Package: linux-image-5.4.0-53-generic 5.4.0-53.59 ProcVersionSignature: Ubuntu 5.4.0-53.59-generic 5.4.65 Uname: Linux 5.4.0-53-generic x86_64 ApportVersion: 2.20.11-0ubuntu27.11 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: sameer 1982 F pulseaudio

[PATCH 0/2] Refactor Audio Graph schema

2020-11-11 Thread Sameer Pujar
reference 'audio-graph.yaml' and define its own compatible and specific properties. This depends on following series: http://patchwork.ozlabs.org/project/devicetree-bindings/patch/20201102203656.220187-2-r...@kernel.org/ Sameer Pujar (2): ASoC: audio-graph-card: Refactor schema ASoC: renesas,rsnd

[PATCH 1/2] ASoC: audio-graph-card: Refactor schema

2020-11-11 Thread Sameer Pujar
There can be customized sound cards which are based on generic audio graph. In such cases most of the stuff is reused from generic audio graph. To facilitate this, refactor audio graph schema into multiple files and the base schema can be reused for specific sound cards. Signed-off-by: Sameer

[PATCH 2/2] ASoC: renesas,rsnd: Update audio graph references

2020-11-11 Thread Sameer Pujar
Since audio graph schema is refactored now update the related references here. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- Documentation/devicetree/bindings/sound/renesas,rsnd.yaml | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Documentation/devicetree

Re: [PATCH v3 1/3] dt-bindings: Convert graph bindings to json-schema

2020-11-11 Thread Sameer Pujar
Hi Rob, From: Sameer Pujar Convert device tree bindings of graph to YAML format. Currently graph.txt doc is referenced in multiple files and all of these need to use schema references. For now graph.txt is updated to refer to graph.yaml. For users of the graph binding, they should reference

[sympy] Personal Introduction (Sameer Raipure)

2020-11-08 Thread Sameer Raipure
Hello Everyone! This is Sameer Raipure, a 2nd-year undergrad at NIT Warangal. I am quite new to Python and consider myself a beginner*. *I am presently working on mathematical titles like Fourier Transforms, partial differential equations and Z transforms. Even though I'm a beginner I'm fairly

[PATCH v2 4/4] dt-bindings: bus: Convert ACONNECT doc to json-schema

2020-11-06 Thread Sameer Pujar
Move ACONNECT documentation to YAML format. Signed-off-by: Sameer Pujar --- .../bindings/bus/nvidia,tegra210-aconnect.txt | 44 .../bindings/bus/nvidia,tegra210-aconnect.yaml | 82 ++ 2 files changed, 82 insertions(+), 44 deletions(-) delete mode

[PATCH v2 1/4] arm64: tegra: Rename ADMA device nodes for Tegra210

2020-11-06 Thread Sameer Pujar
DMA device nodes should follow regex pattern of "^dma-controller(@.*)?$". This is a preparatory patch to use YAML doc format for ADMA. Signed-off-by: Sameer Pujar --- arch/arm64/boot/dts/nvidia/tegra210-p2371-2180.dts | 2 +- arch/arm64/boot/dts/nvidia/tegra210-p3450-.dts | 2 +-

[PATCH v2 2/4] dt-bindings: dma: Convert ADMA doc to json-schema

2020-11-06 Thread Sameer Pujar
Move ADMA documentation to YAML format. Signed-off-by: Sameer Pujar --- .../bindings/dma/nvidia,tegra210-adma.txt | 56 .../bindings/dma/nvidia,tegra210-adma.yaml | 99 ++ 2 files changed, 99 insertions(+), 56 deletions(-) delete mode 100644

[PATCH v2 3/4] dt-bindings: interrupt-controller: arm,gic: Update Tegra compatibles

2020-11-06 Thread Sameer Pujar
Update Tegra compatibles to support newer Tegra chips and required combinations. Signed-off-by: Sameer Pujar Reviewed-by: Rob Herring --- .../devicetree/bindings/interrupt-controller/arm,gic.yaml| 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Documentation

[PATCH v2 0/4] Convert few Tegra docs to json-schema

2020-11-06 Thread Sameer Pujar
red 'additionalProperty' and thus fix errors/warnings in the schema. * Fix indentation warnings in arm,gic.yaml for AGIC documentation. With this fix add "Reviewed-by" tag from Rob. * Drop individual child pattern properties for ACONNECT schema and instead use generic pattern property.

Re: [PATCH 4/4] dt-bindings: bus: Convert ACONNECT doc to json-schema

2020-11-05 Thread Sameer Pujar
Move ACONNECT documentation to YAML format. Signed-off-by: Sameer Pujar --- .../bindings/bus/nvidia,tegra210-aconnect.txt | 44 --- .../bindings/bus/nvidia,tegra210-aconnect.yaml | 86 ++ 2 files changed, 86 insertions(+), 44 deletions(-) delete

[PATCH 3/4] dt-bindings: interrupt-controller: arm,gic: Update Tegra compatibles

2020-11-05 Thread Sameer Pujar
Update Tegra compatibles to support newer Tegra chips and required combinations. Signed-off-by: Sameer Pujar --- .../devicetree/bindings/interrupt-controller/arm,gic.yaml| 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings

[PATCH 2/4] dt-bindings: dma: Convert ADMA doc to json-schema

2020-11-05 Thread Sameer Pujar
Move ADMA documentation to YAML format. Signed-off-by: Sameer Pujar --- .../bindings/dma/nvidia,tegra210-adma.txt | 56 - .../bindings/dma/nvidia,tegra210-adma.yaml | 95 ++ 2 files changed, 95 insertions(+), 56 deletions(-) delete mode 100644

[PATCH 0/4] Convert few Tegra docs to json-schema

2020-11-05 Thread Sameer Pujar
Following are the summary of changes. * Update ADMA device node names for some of Tegra210 DT files. * Convert ADMA, AGIC and ACONNECT docs to YAML. Sameer Pujar (4): arm64: tegra: Rename ADMA device nodes for Tegra210 dt-bindings: dma: Convert ADMA doc to json-schema dt-bindings: interrupt

[PATCH 1/4] arm64: tegra: Rename ADMA device nodes for Tegra210

2020-11-05 Thread Sameer Pujar
DMA device nodes should follow regex pattern of "^dma-controller(@.*)?$". This is a preparatory patch to use YAML doc format for ADMA. Signed-off-by: Sameer Pujar --- arch/arm64/boot/dts/nvidia/tegra210-p2371-2180.dts | 2 +- arch/arm64/boot/dts/nvidia/tegra210-p3450-.dts | 2 +-

[PATCH 4/4] dt-bindings: bus: Convert ACONNECT doc to json-schema

2020-11-05 Thread Sameer Pujar
Move ACONNECT documentation to YAML format. Signed-off-by: Sameer Pujar --- .../bindings/bus/nvidia,tegra210-aconnect.txt | 44 --- .../bindings/bus/nvidia,tegra210-aconnect.yaml | 86 ++ 2 files changed, 86 insertions(+), 44 deletions(-) delete mode 100644

Re: [PATCH v3 0/3] dt-bindings: Convert graph bindings to json-schema

2020-11-03 Thread Sameer Pujar
Hi Rob, Sameer, I wanted to experiment with what the interface for graph users looks like, so I've tweaked your patch a bit and converted 2 users. Thanks for the update and help. ___ dri-devel mailing list dri-devel@lists.freedesktop.org https

Re: [PATCH] ASoC: tegra: remove unneeded semicolon

2020-11-02 Thread Sameer Pujar
Hi Tom, From: Tom Rix A semicolon is not needed after a switch statement. Signed-off-by: Tom Rix --- Acked-by: Sameer Pujar Thanks for the update.

Re: [PATCH v3 0/3] dt-bindings: Convert graph bindings to json-schema

2020-11-02 Thread Sameer Pujar
Hi Rob, Sameer, I wanted to experiment with what the interface for graph users looks like, so I've tweaked your patch a bit and converted 2 users. Thanks for the update and help.

[PATCH v5 5/7] ASoC: audio-graph: Support empty Codec endpoint

2020-11-02 Thread Sameer Pujar
. This patch helps to support such links where user can populate Codec endpoint only and its fields in Platform DT depending on the plugged HW. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- sound/soc/generic/audio-graph-card.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion

[PATCH v5 7/7] ASoC: audio-graph: Expose helpers from audio graph

2020-11-02 Thread Sameer Pujar
. The graph_probe() function is simplified by moving more common stuff to graph_parse_of(). Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- include/sound/graph_card.h | 16 ++ sound/soc/generic/audio-graph-card.c | 95 +++- 2 files changed, 66

[PATCH v5 6/7] ASoC: audio-graph: Expose new members for asoc_simple_priv

2020-11-02 Thread Sameer Pujar
. Subsequent patches in the series illustrate usage for above. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- include/sound/simple_card_utils.h| 3 +++ sound/soc/generic/audio-graph-card.c | 41 2 files changed, 35 insertions(+), 9 deletions(-) diff

[PATCH v5 1/7] ASoC: soc-core: Fix component name_prefix parsing

2020-11-02 Thread Sameer Pujar
uot; property whenever "prefix" is missing in DAI link Codec node. Signed-off-by: Sameer Pujar --- sound/soc/soc-core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 05a085f..9b3eaec 100644 --- a/sound/s

[PATCH v5 4/7] ASoC: audio-graph: Identify 'no_pcm' DAI links for DPCM

2020-11-02 Thread Sameer Pujar
' flag for DPCM DAI link. This helps to have BE<->BE component links where PCM devices need not be created for CPU component involved in such links. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- sound/soc/generic/audio-graph-card.c | 25 + 1 file chang

[PATCH v5 3/7] ASoC: audio-graph: Use of_node and DAI for DPCM DAI link names

2020-11-02 Thread Sameer Pujar
For multiple instances of components, using DAI name alone for DAI links is causing conflicts. Components can define multiple DAIs and hence using just a device name won't help either. Thus DT device node reference and DAI names are used to uniquely represent DAI link names. Signed-off-by: Sameer

[PATCH v5 0/7] Audio Graph Updates

2020-11-02 Thread Sameer Pujar
BAR. Updated DT patches accordingly. * After above change, multiple Codec endpoint support is not required and hence dropped for now. This will be considered separately if at all required in future. * Re-ordered patches in the series. Sameer Pujar (7): ASoC: soc-core: Fix component name_prefi

[PATCH v5 2/7] ASoC: soc-pcm: Get all BEs along DAPM path

2020-11-02 Thread Sameer Pujar
be called for all these listed components for a valid DAPM path. Signed-off-by: Sameer Pujar --- include/sound/soc.h | 1 + sound/soc/soc-pcm.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/sound/soc.h b/include/sound/soc.h index 5ac578c..4a9958b 100644 --- a/include

Re: [PATCH v4 00/15] Audio graph card updates and usage with Tegra210 audio

2020-10-30 Thread Sameer Pujar
Updated DT patches accordingly. * After above change, multiple Codec endpoint support is not required and hence dropped for now. This will be considered separately if at all required in future. * Re-ordered patches in the series. Sameer Pujar (15): ASoC: soc-core: Fix component n

Re: [PATCH v4 08/15] Documentation: of: Convert graph bindings to json-schema

2020-10-23 Thread Sameer Pujar
Signed-off-by: Sameer Pujar Cc: Philipp Zabel --- Documentation/devicetree/bindings/graph.txt | 128 The removed Documentation/devicetree/bindings/graph.txt is referenced by a lot of files, tree-wide. Should the references be updated in the same series? May

[jira] [Commented] (ATLAS-3992) UI: Upgrade to JQuery 3.5.1

2020-10-21 Thread Sameer Shaikh (Jira)
[ https://issues.apache.org/jira/browse/ATLAS-3992?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17218749#comment-17218749 ] Sameer Shaikh commented on ATLAS-3992: -- +1 > UI: Upgrade to JQuery 3.

Re: [PATCH v4 11/15] ASoC: dt-bindings: tegra: Add json-schema for Tegra audio graph card

2020-10-20 Thread Sameer Pujar
Add YAML schema for Tegra audio graph sound card DT bindings. It uses the same DT bindings provided by generic audio graph driver. Along with this few standard clock DT bindings are added which are specifically required for Tegra audio. Signed-off-by: Sameer Pujar --- .../sound/nvidia

Re: [PATCH v4 10/15] ASoC: dt-bindings: tegra: Add graph bindings

2020-10-20 Thread Sameer Pujar
Add device tree binding properties of generic graph to ASoC component devices. This allows to define audio ports out of these components or DAIs and audio graph based sound card can be realised with this. Signed-off-by: Sameer Pujar --- Documentation/devicetree/bindings/sound/nvidia

Re: [PATCH v4 08/15] Documentation: of: Convert graph bindings to json-schema

2020-10-19 Thread Sameer Pujar
Signed-off-by: Sameer Pujar Cc: Philipp Zabel --- Documentation/devicetree/bindings/graph.txt | 128 Documentation/devicetree/bindings/graph.yaml | 170 +++ 2 files changed, 170 insertions(+), 128 deletions(-) delete mode 100644

Re: need assistant

2020-10-19 Thread Sameer Ahmed
I wanna work with you On Thu, Oct 15, 2020, 8:30 PM ericki...@gmail.com wrote: > hello guys am new at Django , i have couple of projects for Django and > pyside2 if anyone is willing to assist me in this fields i be so great full > as we learn from each other and carry out more projects > > >

Re: [PATCH v4 09/15] ASoC: dt-bindings: audio-graph: Convert bindings to json-schema

2020-10-18 Thread Sameer Pujar
Hi Morimoto-san, Convert device tree bindings of audio graph card to YAML format. Also expose some common definitions which can be used by similar graph based audio sound cards. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- I'm posting this patch to Rob & DT ML. Not yet acce

Re: Template styles.

2020-10-17 Thread Sameer Ahmed
You can create separate template add bootstrap to it. Also add your form to it. If you want to know how to do it kindly visit geeksforgeeks.org/django-forms/ On Sat, Oct 17, 2020, 9:19 PM Mohemed Misfar wrote: > Django has amazing model forms and django froms. In case if i use them, I > am

[PATCH v4 15/15] arm64: tegra: Audio graph sound card for Jetson Nano and TX1

2020-10-16 Thread Sameer Pujar
Enable support for audio-graph based sound card on Jetson-Nano and Jetson-TX1. Depending on the platform, required I/O interfaces are enabled. * Jetson-Nano: Enable I2S3, I2S4, DMIC1 and DMIC2. * Jetson-TX1: Enable all I2S and DMIC interfaces. Signed-off-by: Sameer Pujar --- arch/arm64/boot

[PATCH v4 14/15] arm64: tegra: Audio graph header for Tegra210

2020-10-16 Thread Sameer Pujar
-by: Sameer Pujar --- .../boot/dts/nvidia/tegra210-audio-graph.dtsi | 153 + 1 file changed, 153 insertions(+) create mode 100644 arch/arm64/boot/dts/nvidia/tegra210-audio-graph.dtsi diff --git a/arch/arm64/boot/dts/nvidia/tegra210-audio-graph.dtsi b/arch/arm64/boot/dts

[PATCH v4 09/15] ASoC: dt-bindings: audio-graph: Convert bindings to json-schema

2020-10-16 Thread Sameer Pujar
Convert device tree bindings of audio graph card to YAML format. Also expose some common definitions which can be used by similar graph based audio sound cards. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- .../devicetree/bindings/sound/audio-graph-card.txt | 337

[PATCH v4 11/15] ASoC: dt-bindings: tegra: Add json-schema for Tegra audio graph card

2020-10-16 Thread Sameer Pujar
Add YAML schema for Tegra audio graph sound card DT bindings. It uses the same DT bindings provided by generic audio graph driver. Along with this few standard clock DT bindings are added which are specifically required for Tegra audio. Signed-off-by: Sameer Pujar --- .../sound/nvidia,tegra

[PATCH v4 13/15] arm64: defconfig: Enable Tegra audio graph card driver

2020-10-16 Thread Sameer Pujar
This commit enables Tegra audio graph card driver which is based on the generic audio-graph card driver. This is intended to be used on platforms based on Tegra210 and later chips. Signed-off-by: Sameer Pujar --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH v4 12/15] ASoC: tegra: Add audio graph based card driver

2020-10-16 Thread Sameer Pujar
with component model. Signed-off-by: Sameer Pujar --- sound/soc/tegra/Kconfig | 9 ++ sound/soc/tegra/Makefile | 2 + sound/soc/tegra/tegra_audio_graph_card.c | 255 +++ 3 files changed, 266 insertions(+) create mode 100644 sound/soc/tegra

[PATCH v4 10/15] ASoC: dt-bindings: tegra: Add graph bindings

2020-10-16 Thread Sameer Pujar
Add device tree binding properties of generic graph to ASoC component devices. This allows to define audio ports out of these components or DAIs and audio graph based sound card can be realised with this. Signed-off-by: Sameer Pujar --- Documentation/devicetree/bindings/sound/nvidia,tegra186

[PATCH v4 08/15] Documentation: of: Convert graph bindings to json-schema

2020-10-16 Thread Sameer Pujar
Convert device tree bindings of graph to YAML format. Signed-off-by: Sameer Pujar Cc: Philipp Zabel --- Documentation/devicetree/bindings/graph.txt | 128 Documentation/devicetree/bindings/graph.yaml | 170 +++ 2 files changed, 170 insertions

[PATCH v4 05/15] ASoC: audio-graph: Support empty Codec endpoint

2020-10-16 Thread Sameer Pujar
. This patch helps to support such links where user can populate Codec endpoint only and its fields in Platform DT depending on the plugged HW. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- sound/soc/generic/audio-graph-card.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion

[PATCH v4 07/15] ASoC: audio-graph: Expose helpers from audio graph

2020-10-16 Thread Sameer Pujar
. The graph_probe() function is simplified by moving more common stuff to graph_parse_of(). Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- include/sound/graph_card.h | 16 ++ sound/soc/generic/audio-graph-card.c | 95 +++- 2 files changed, 66

[PATCH v4 06/15] ASoC: audio-graph: Expose new members for asoc_simple_priv

2020-10-16 Thread Sameer Pujar
. Subsequent patches in the series illustrate usage for above. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- include/sound/simple_card_utils.h| 3 +++ sound/soc/generic/audio-graph-card.c | 41 2 files changed, 35 insertions(+), 9 deletions(-) diff

[PATCH v4 03/15] ASoC: audio-graph: Use of_node and DAI for DPCM DAI link names

2020-10-16 Thread Sameer Pujar
For multiple instances of components, using DAI name alone for DAI links is causing conflicts. Components can define multiple DAIs and hence using just a device name won't help either. Thus DT device node reference and DAI names are used to uniquely represent DAI link names. Signed-off-by: Sameer

[PATCH v4 01/15] ASoC: soc-core: Fix component name_prefix parsing

2020-10-16 Thread Sameer Pujar
uot; property whenever "prefix" is missing in DAI link Codec node. Signed-off-by: Sameer Pujar --- sound/soc/soc-core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index ea3986a..cb7333d 100644 --- a/sound/s

[PATCH v4 02/15] ASoC: soc-pcm: Get all BEs along DAPM path

2020-10-16 Thread Sameer Pujar
be called for all these listed components for a valid DAPM path. Signed-off-by: Sameer Pujar --- include/sound/soc.h | 1 + sound/soc/soc-pcm.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/sound/soc.h b/include/sound/soc.h index 3b038c5..9b69d70 100644 --- a/include

[PATCH v4 00/15] Audio graph card updates and usage with Tegra210 audio

2020-10-16 Thread Sameer Pujar
ge, multiple Codec endpoint support is not required and hence dropped for now. This will be considered separately if at all required in future. * Re-ordered patches in the series. Sameer Pujar (15): ASoC: soc-core: Fix component name_prefix parsing ASoC: soc-pcm: Get all BEs along DAPM path ASo

[PATCH v4 04/15] ASoC: audio-graph: Identify 'no_pcm' DAI links for DPCM

2020-10-16 Thread Sameer Pujar
' flag for DPCM DAI link. This helps to have BE<->BE component links where PCM devices need not be created for CPU component involved in such links. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- sound/soc/generic/audio-graph-card.c | 25 + 1 file chang

Re: [PATCH v3 09/13] ASoC: dt-bindings: tegra: Add schema for audio graph card

2020-10-15 Thread Sameer Pujar
Add YAML schema for Tegra audio graph sound card DT bindings. It uses the same DT bindings provided by generic audio graph driver. Along with this few standard clock DT bindings are added which are specifically required for Tegra audio. Signed-off-by: Sameer Pujar ---   .../sound/nvidia

Re: [ansible-project] Error while Trying to run a dynamic inventory script from ldap source,

2020-10-14 Thread sameer khan
I am running it as sudo, On Wed, Oct 14, 2020 at 5:54 AM prajwal wrote: > Try to run with the sudo command > > On Wed, 14 Oct, 2020, 2:51 pm sk32...@gmail.com, > wrote: > >> yep I did chmod a+x get_branch.py >> >> no luck with that too and I did the same to the config file as well, >> >> On

[jira] [Commented] (ATLAS-3954) UI: Type system property table improvement

2020-10-13 Thread Sameer Shaikh (Jira)
[ https://issues.apache.org/jira/browse/ATLAS-3954?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17213110#comment-17213110 ] Sameer Shaikh commented on ATLAS-3954: -- +1 for the patch > UI: Type system property ta

[jira] [Commented] (ATLAS-3991) UI: Handlebar helper number format issue

2020-10-13 Thread Sameer Shaikh (Jira)
[ https://issues.apache.org/jira/browse/ATLAS-3991?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17213111#comment-17213111 ] Sameer Shaikh commented on ATLAS-3991: -- +1 for the patch > UI: Handlebar helper number format is

Re: [AI] Inquiry about Training on Tally for persons with vision loss

2020-10-09 Thread Sameer
reen, then you can make entries in any voucher entry screen. I have a file of Tally shortcut keys in pdf format which has been useful when learning Tally. Regards Mr. Sameer Latey On 10-10-2020 08:26 am, Aishwarya Pillai wrote: Thank you Jayant and Sameer for your responses. @Sameer, is there

Re: [AI] Inquiry about Training on Tally for persons with vision loss

2020-10-09 Thread Sameer
Dear Jayantji & Aishwaryaji, Tally is mostly accessible with JAWS. I use Tally 9 ERP daily with JAWS 2020. When using Tally with JAWS, we have to make extensive use of the JAWS cursor. It is not accessible "out-of-the-box" like Word or Excel. Regards Mr. Sameer Latey On

Re: Support for adding in selenium test cases

2020-10-08 Thread Sameer Apte
Thanks Olivier for your reply. I will have a look at it. But I am bit puzzled about mention of class org.apache.ofbiz.testtools.WebDriverTest in ofbiz codebase which I cannot locate anywhere.. Regards, Sameer Apte On Wed, 7 Oct 2020, 09:36 Olivier Heintz, wrote: > Hi, > > Currently,

Re: [PATCH v3 09/13] ASoC: dt-bindings: tegra: Add schema for audio graph card

2020-10-07 Thread Sameer Pujar
Add YAML schema for Tegra audio graph sound card DT bindings. It uses the same DT bindings provided by generic audio graph driver. Along with this few standard clock DT bindings are added which are specifically required for Tegra audio. Signed-off-by: Sameer Pujar --- .../sound/nvidia

Re: [AI] accessibility of net banking

2020-10-06 Thread Sameer
What problems did you face when using HDFC Bank netbanking on PC? I use it almost daily without any problems. Regards Mr. Sameer Latey On 07-10-2020 10:29 am, Mohib Anwar Rafay wrote: SBI is accessible, Kotak is accessible. However I didn't find hdfc website accessible on pc, however its

Support for adding in selenium test cases

2020-10-02 Thread Sameer Apte
cking this as I cannot see *org.apache.ofbiz.testtools.WebDriverTest* class anywhere which is referenced in the above block. Regards, Sameer Apte

Re: [PATCH v3 10/13] ASoC: tegra: Add audio graph based card driver

2020-10-02 Thread Sameer Pujar
Add Tegra audio machine driver which is based on generic audio graph card driver. It re-uses most of the common stuff from audio graph driver and uses the same DT binding. Required Tegra specific customizations are done in the driver. (snip) +static const struct snd_soc_ops

Re: [PATCH v3 07/13] ASoC: audio-graph: Update driver as per new exposed members

2020-10-02 Thread Sameer Pujar
ect DPCM DAI links. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- Can we merge [06/13] and [07/13] patches ? Yes can be merged.

Re: [PATCH v3 06/13] ASoC: simple-card-utils: Expose new members for asoc_simple_priv

2020-10-02 Thread Sameer Pujar
diff --git a/include/sound/simple_card_utils.h b/include/sound/simple_card_utils.h index 86a1e95..9825308 100644 --- a/include/sound/simple_card_utils.h +++ b/include/sound/simple_card_utils.h @@ -56,6 +56,10 @@ struct asoc_simple_priv { struct asoc_simple_dai *dais; struct

Re: [PATCH v3 10/13] ASoC: tegra: Add audio graph based card driver

2020-10-02 Thread Sameer Pujar
+/* Setup PLL clock as per the given sample rate */ +static int tegra_audio_graph_update_pll(struct snd_pcm_substream *substream, +struct snd_pcm_hw_params *params) +{ +struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream); +struct

Re: [PATCH v3 01/13] ASoC: soc-core: Fix component name_prefix parsing

2020-10-02 Thread Sameer Pujar
The "prefix" can be defined in DAI link node or it can be specified as part of the component node itself. Currently "sound-name-prefix" defined in a component is not taking effect. Actually the property is not getting parsed. It can be fixed by parsing "sound-name-prefix" property whenever

[PATCH v3 13/13] arm64: tegra: Audio graph sound card for Jetson Nano and TX1

2020-10-01 Thread Sameer Pujar
Enable support for audio-graph based sound card on Jetson-Nano and Jetson-TX1. Depending on the platform, required I/O interfaces are enabled. * Jetson-Nano: Enable I2S3, I2S4, DMIC1 and DMIC2. * Jetson-TX1: Enable all I2S and DMIC interfaces. Signed-off-by: Sameer Pujar --- arch/arm64/boot

[PATCH v3 12/13] arm64: tegra: Audio graph header for Tegra210

2020-10-01 Thread Sameer Pujar
-by: Sameer Pujar --- .../boot/dts/nvidia/tegra210-audio-graph.dtsi | 138 + 1 file changed, 138 insertions(+) create mode 100644 arch/arm64/boot/dts/nvidia/tegra210-audio-graph.dtsi diff --git a/arch/arm64/boot/dts/nvidia/tegra210-audio-graph.dtsi b/arch/arm64/boot/dts

[PATCH v3 11/13] arm64: defconfig: Enable Tegra audio graph card driver

2020-10-01 Thread Sameer Pujar
This commit enables Tegra audio graph card driver which is based on the generic audio-graph card driver. This is intended to be used on platforms based on Tegra210 and later chips. Signed-off-by: Sameer Pujar --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH v3 09/13] ASoC: dt-bindings: tegra: Add schema for audio graph card

2020-10-01 Thread Sameer Pujar
Add YAML schema for Tegra audio graph sound card DT bindings. It uses the same DT bindings provided by generic audio graph driver. Along with this few standard clock DT bindings are added which are specifically required for Tegra audio. Signed-off-by: Sameer Pujar --- .../sound/nvidia,tegra

[PATCH v3 08/13] ASoC: audio-graph: Expose helpers from audio graph

2020-10-01 Thread Sameer Pujar
is added for audio graph which can be included by vendor drivers. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- include/sound/graph_card.h | 19 +++ sound/soc/generic/audio-graph-card.c | 11 +++ 2 files changed, 26 insertions(+), 4 deletions(-) create

[PATCH v3 10/13] ASoC: tegra: Add audio graph based card driver

2020-10-01 Thread Sameer Pujar
as per the sample rate. - Internal structure 'tegra_audio_graph_data' is used to maintain clock handles of PLL. - The 'force_dpcm' flag is set to use DPCM for all DAI links. - The 'component_chaining' flag is set to use DPCM with component model. Signed-off-by: Sameer Pujar --- sound/soc

[PATCH v3 05/13] ASoC: audio-graph: Support empty Codec endpoint

2020-10-01 Thread Sameer Pujar
. This patch helps to support such links where user can populate Codec endpoint only and its fields in Platform DT depending on the plugged HW. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- sound/soc/generic/audio-graph-card.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion

[PATCH v3 06/13] ASoC: simple-card-utils: Expose new members for asoc_simple_priv

2020-10-01 Thread Sameer Pujar
when vendor driver wants to define its own structure for internal usage and still wants to rely on most of the other members from 'asoc_simple_priv'. Subsequent patches in the series illustrate usage for above. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- include/sound

[PATCH v3 03/13] ASoC: audio-graph: Use of_node and DAI for DPCM DAI link names

2020-10-01 Thread Sameer Pujar
For multiple instances of components, using DAI name alone for DAI links is causing conflicts. Components can define multiple DAIs and hence using just a device name won't help either. Thus DT device node reference and DAI names are used to uniquely represent DAI link names. Signed-off-by: Sameer

[PATCH v3 04/13] ASoC: audio-graph: Identify 'no_pcm' DAI links for DPCM

2020-10-01 Thread Sameer Pujar
' flag for DPCM DAI link. This helps to have BE<->BE component links where PCM devices need not be created for CPU component involved in such links. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- sound/soc/generic/audio-graph-card.c | 25 + 1 file chang

[PATCH v3 07/13] ASoC: audio-graph: Update driver as per new exposed members

2020-10-01 Thread Sameer Pujar
DAI links. Signed-off-by: Sameer Pujar Cc: Kuninori Morimoto --- sound/soc/generic/audio-graph-card.c | 40 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/sound/soc/generic/audio-graph-card.c b/sound/soc/generic/audio-graph-card.c index 0ba50

[PATCH v3 02/13] ASoC: soc-pcm: Get all BEs along DAPM path

2020-10-01 Thread Sameer Pujar
be called for all these listed components for a valid DAPM path. Signed-off-by: Sameer Pujar --- include/sound/soc.h | 1 + sound/soc/soc-pcm.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/sound/soc.h b/include/sound/soc.h index 3b038c5..9b69d70 100644 --- a/include

[PATCH v3 01/13] ASoC: soc-core: Fix component name_prefix parsing

2020-10-01 Thread Sameer Pujar
uot; property whenever "prefix" is missing in DAI link Codec node. Signed-off-by: Sameer Pujar --- sound/soc/soc-core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 74df224..a784943 100644 --- a/sound/s

[PATCH v3 00/13] Audio graph card updates and usage with Tegra210 audio

2020-10-01 Thread Sameer Pujar
s for DPCM" * DT binding is updated to use the newly exposed compatibles * No changes in other patches Sameer Pujar (13): ASoC: soc-core: Fix component name_prefix parsing ASoC: soc-pcm: Get all BEs along DAPM path ASoC: audio-graph: Use of_node and DAI for DPCM DAI link names ASoC:

[jira] [Comment Edited] (OPENEJB-2147) open-ejb upgrade from 3.1.4 doesn't support java 8 lambda expressions

2020-09-09 Thread Sameer Tiwari (Jira)
[ https://issues.apache.org/jira/browse/OPENEJB-2147?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17193070#comment-17193070 ] Sameer Tiwari edited comment on OPENEJB-2147 at 9/10/20, 4:47 AM: -- Hi

[jira] [Comment Edited] (OPENEJB-2147) open-ejb upgrade from 3.1.4 doesn't support java 8 lambda expressions

2020-09-09 Thread Sameer Tiwari (Jira)
[ https://issues.apache.org/jira/browse/OPENEJB-2147?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17193070#comment-17193070 ] Sameer Tiwari edited comment on OPENEJB-2147 at 9/9/20, 5:40 PM: - Hi

[jira] [Comment Edited] (OPENEJB-2147) open-ejb upgrade from 3.1.4 doesn't support java 8 lambda expressions

2020-09-09 Thread Sameer Tiwari (Jira)
[ https://issues.apache.org/jira/browse/OPENEJB-2147?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17193070#comment-17193070 ] Sameer Tiwari edited comment on OPENEJB-2147 at 9/9/20, 5:17 PM: - Hi

[jira] [Commented] (OPENEJB-2147) open-ejb upgrade from 3.1.4 doesn't support java 8 lambda expressions

2020-09-09 Thread Sameer Tiwari (Jira)
[ https://issues.apache.org/jira/browse/OPENEJB-2147?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17193070#comment-17193070 ] Sameer Tiwari commented on OPENEJB-2147: Hi [~romain.manni-bucau]  I have attached tomee.log

[jira] [Updated] (OPENEJB-2147) open-ejb upgrade from 3.1.4 doesn't support java 8 lambda expressions

2020-09-09 Thread Sameer Tiwari (Jira)
[ https://issues.apache.org/jira/browse/OPENEJB-2147?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sameer Tiwari updated OPENEJB-2147: --- Attachment: tomee.log > open-ejb upgrade from 3.1.4 doesn't support java 8 lam

Re: relation between OrderItem and OrderPaymentPreference at the time of refund

2020-09-09 Thread Sameer Apte
Thanks S K PradeepKumar On Wed, 9 Sep 2020, 10:39 S K Pradeep Kumar, wrote: > https://photos.app.goo.gl/E7qYA96gySQnpWpo7 > > On Wed, Sep 9, 2020, 12:44 PM Sameer Apte wrote: > > > Thanks for your reply S K Pradeep Kumar. > > Will go through that . Struggling to see

[jira] [Comment Edited] (OPENEJB-2147) open-ejb upgrade from 3.1.4 doesn't support java 8 lambda expressions

2020-09-09 Thread Sameer Tiwari (Jira)
[ https://issues.apache.org/jira/browse/OPENEJB-2147?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17192706#comment-17192706 ] Sameer Tiwari edited comment on OPENEJB-2147 at 9/9/20, 9:40 AM

<    3   4   5   6   7   8   9   10   11   12   >