RE: [PATCH v5 0/2] dm: core: drivers: add function uclass_probe_all()

2020-12-16 Thread Vabhav Sharma (OSS)
Dear Sean Anderson, I have incorporated all your review comments and request your review/ack to merge the changes Regards, Vabhav > -Original Message- > From: Vabhav Sharma > Sent: Wednesday, December 9, 2020 10:42 AM > To: s...@chromium.org; s...@denx.de; sean...@gmail

[PATCH v5 2/2] drivers: serial: probe all uart devices

2020-12-08 Thread Vabhav Sharma
From: Vabhav Sharma U-Boot DM model probe only single device at a time which is enabled and configured using device tree or platform data method. PL011 UART IP is SBSA compliant and firmware does the serial port set-up, initialization and let the kernel use UART port for sending and receiving

[PATCH v5 1/2] dm: core: add function uclass_probe_all() to probe all devices

2020-12-08 Thread Vabhav Sharma
From: Vabhav Sharma Support a common method to probe all devices associated with uclass. This includes data structures and code for finding the first device and looping for remaining devices associated with uclasses (groups of devices with the same purpose, e.g. all SERIAL ports

[PATCH v5 0/2] dm: core: drivers: add function uclass_probe_all()

2020-12-08 Thread Vabhav Sharma
From: Vabhav Sharma - Add common method to probe devices belonging to same uclass - Add config in serial uclass to support optional inclusion of uclass_probe_all - Enable support for available serial devices probe Changes for v5: Incorporated review comments from Sean Anderson - Added error

RE: [PATCH v4 1/2] dm: core: add function uclass_probe_all() to probe all devices

2020-12-01 Thread Vabhav Sharma (OSS)
> -Original Message- > From: Sean Anderson > Sent: Monday, November 23, 2020 6:54 PM > To: Vabhav Sharma (OSS) ; > s...@chromium.org; s...@denx.de > Cc: u-boot@lists.denx.de; Varun Sethi ; > andre.przyw...@arm.com > Subject: Re: [PATCH v4 1/2] dm: core: add f

RE: [PATCH v4 1/2] dm: core: add function uclass_probe_all() to probe all devices

2020-11-23 Thread Vabhav Sharma (OSS)
> -Original Message- > From: Sean Anderson > Sent: Thursday, November 19, 2020 9:05 AM > To: Vabhav Sharma (OSS) ; > s...@chromium.org; s...@denx.de > Cc: u-boot@lists.denx.de; Varun Sethi ; > andre.przyw...@arm.com; Vabhav Sharma > Subject: Re: [PATCH v4 1/2

RE: [PATCH v4 2/2] drivers: serial: probe all uart devices

2020-11-22 Thread Vabhav Sharma (OSS)
> -Original Message- > From: Sean Anderson > Sent: Thursday, November 19, 2020 9:01 AM > To: Vabhav Sharma (OSS) ; > s...@chromium.org; s...@denx.de > Cc: u-boot@lists.denx.de; Varun Sethi ; > andre.przyw...@arm.com; Vabhav Sharma > Subject: Re: [PATCH v4 2/2

[PATCH v4 2/2] drivers: serial: probe all uart devices

2020-11-17 Thread Vabhav Sharma
From: Vabhav Sharma U-Boot DM model probe only single device at a time which is enabled and configured using device tree or platform data method. PL011 UART IP is SBSA compliant and firmware does the serial port set-up, initialization and let the kernel use UART port for sending and receiving

RE: [PATCH v3 1/2] dm: core: add function uclass_probe_all() to probe all devices

2020-11-17 Thread Vabhav Sharma (OSS)
> -Original Message- > From: Simon Glass > Sent: Tuesday, October 27, 2020 10:22 AM > To: Vabhav Sharma (OSS) > Cc: Stefan Roese ; U-Boot Mailing List ; > Varun Sethi ; Andre Przywara > ; Vabhav Sharma > Subject: Re: [PATCH v3 1/2] dm: core: add function uclas

[PATCH v4 1/2] dm: core: add function uclass_probe_all() to probe all devices

2020-11-17 Thread Vabhav Sharma
From: Vabhav Sharma Support a common method to probe all devices associated with uclass. This includes data structures and code for finding the first device and looping for remaining devices associated with uclasses (groups of devices with the same purpose, e.g. all SERIAL ports

[PATCH v4 0/2] dm: core: drivers: add function uclass_probe_all()

2020-11-17 Thread Vabhav Sharma
From: Vabhav Sharma - Add common method to probe devices belonging to same uclass - Add config in serial uclass to support optional inclusion of uclass_probe_all - Enable support for available serial devices probe Changes for v4: Incorporated review comments from Simon - Removed if (dev

RE: [PATCH] dm: core: add function uclass_probe_all() to probe all devices

2020-10-19 Thread Vabhav Sharma (OSS)
> -Original Message- > From: Stefan Roese > Sent: Monday, October 19, 2020 3:40 PM > To: Vabhav Sharma (OSS) ; u- > b...@lists.denx.de; s...@chromium.org > Cc: Varun Sethi ; andre.przyw...@arm.com; Vabhav > Sharma > Subject: Re: [PATCH] dm: core: add f

[PATCH v3 2/2] drivers: serial: probe all uart devices

2020-10-19 Thread Vabhav Sharma
From: Vabhav Sharma U-Boot DM model probe only single device at a time which is enabled and configured using device tree or platform data method. PL011 UART IP is SBSA compliant and firmware does the serial port set-up, initialization and let the kernel use UART port for sending and receiving

[PATCH v3 0/2] dm: core: drivers: add function uclass_probe_all()

2020-10-19 Thread Vabhav Sharma
From: Vabhav Sharma - Add common method to probe devices belonging to same uclass - Add config in serial uclass to support optional inclusion of uclass_probe_all - Enable support for available serial devices probe Changes for v3: Incorporated Simon and Stephan review comment - Define

[PATCH v3 1/2] dm: core: add function uclass_probe_all() to probe all devices

2020-10-19 Thread Vabhav Sharma
From: Vabhav Sharma Support a common method to probe all devices associated with uclass. This includes data structures and code for finding the first device and looping for remaining devices associated with uclasses (groups of devices with the same purpose, e.g. all SERIAL ports

RE: [PATCH v2] drivers: serial: probe all uart devices

2020-10-19 Thread Vabhav Sharma (OSS)
Hi Simon, Stefan, Thank you for feedback and time > -Original Message- > From: Simon Glass > Sent: Thursday, October 15, 2020 8:35 PM > To: Stefan Roese > Cc: Vabhav Sharma (OSS) ; > andre.przyw...@arm.com; u-boot@lists.denx.de > Subject: Re: [PATCH v2] drivers: s

[PATCH] dm: core: add function uclass_probe_all() to probe all devices

2020-10-19 Thread Vabhav Sharma
From: Vabhav Sharma Support a common method to probe all devices associated with uclass. This includes data structures and code for finding the first device and looping for remaining devices associated with uclasses (groups of devices with the same purpose, e.g. all SERIAL ports

[PATCH v3] drivers: serial: probe all uart devices

2020-10-19 Thread Vabhav Sharma
From: Vabhav Sharma U-Boot DM model probe only single device at a time which is enabled and configured using device tree or platform data method. PL011 UART IP is SBSA compliant and firmware does the serial port set-up, initialization and let the kernel use UART port for sending and receiving

RE: [PATCH v2] drivers: serial: probe all uart devices

2020-10-14 Thread Vabhav Sharma (OSS)
Hi Simon, Apology for delayed reply, Got occupied due to other business deliverables > -Original Message- > From: Simon Glass > Sent: Wednesday, September 30, 2020 10:15 PM > To: Vabhav Sharma (OSS) > Cc: Andre Przywara ; U-Boot Mailing List b...@lists.denx.de>; Ste

RE: [PATCH v2] drivers: serial: probe all uart devices

2020-10-14 Thread Vabhav Sharma (OSS)
Hi Stefan, Sorry for delayed reply, Occupied with high priority task > -Original Message- > From: Stefan Roese > Sent: Wednesday, September 30, 2020 10:46 AM > To: Vabhav Sharma (OSS) ; > andre.przyw...@arm.com; u-boot@lists.denx.de; s...@chromium.org > Cc: Vabhav Sha

[PATCH v2] drivers: serial: probe all uart devices

2020-09-29 Thread Vabhav Sharma
From: Vabhav Sharma U-Boot DM model probe only single device at a time which is enabled and configured using device tree or platform data method. PL011 UART IP is SBSA compliant and firmware does the serial port set-up, initialization and let the kernel use UART port for sending and receiving

RE: [PATCH] drivers: serial: probe all uart devices

2020-09-29 Thread Vabhav Sharma (OSS)
> -Original Message- > From: Stefan Roese > Sent: Tuesday, September 29, 2020 10:52 AM > To: Vabhav Sharma (OSS) ; > andre.przyw...@arm.com; u-boot@lists.denx.de; s...@chromium.org > Cc: Vabhav Sharma > Subject: Re: [PATCH] drivers: serial: probe all uart devices &

[PATCH] drivers: serial: probe all uart devices

2020-09-28 Thread Vabhav Sharma
From: Vabhav Sharma U-Boot DM model probe only single device at a time which is enabled and configured using device tree or platform data method. PL011 UART IP is SBSA compliant and firmware does the serial port set-up, initialization and let the kernel use UART port for sending and receiving

[U-Boot] [PATCH] arm64: lx2160a: dts: Fix UART node status

2019-11-26 Thread Vabhav Sharma
LX2160A PL011 UART driver fetch IP block values using platform data from board file instead of device tree. Modified UART nodes in device tree to disable state. Signed-off-by: Vabhav Sharma --- arch/arm/dts/fsl-lx2160a.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/dts/fsl

[U-Boot] [PATCH v2] armv8: ls1046afrwy: Add support for LS1046AFRWY platform

2019-06-06 Thread Vabhav Sharma
. Signed-off-by: Camelia Groza Signed-off-by: Madalin Bucur Signed-off-by: Pankit Garg Signed-off-by: Pramod Kumar Signed-off-by: Rajesh Bhagat Signed-off-by: Vabhav Sharma --- Changes in v2: - Incorporated review comments from Prabhakar Kushwaha - Removed non tfa boot support changes

Re: [U-Boot] [PATCH] armv8: ls1046afrwy: Add support for LS1046AFRWY platform

2019-06-04 Thread Vabhav Sharma
Dear Prabhakar, > -Original Message- > From: Prabhakar Kushwaha > Sent: Tuesday, May 21, 2019 7:45 PM > To: Vabhav Sharma ; u-boot@lists.denx.de > Cc: Pramod Kumar ; Pankit Garg > ; Varun Sethi ; Camelia > Alexandra Groza > Subject: RE: [U-Boot] [PATCH] armv8:

[U-Boot] [PATCH v2] mtd: spi: add spi flash id mt25qu512a

2019-05-14 Thread Vabhav Sharma
Add micron mt25qu512a flash description. Signed-off-by: Ashish Kumar Signed-off-by: Pramod Kumar Signed-off-by: Vabhav Sharma --- Changes for v2: - Use INFO6 - Removed SPI_NOR_4B_OPCODES drivers/mtd/spi/spi-nor-ids.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/mtd/spi/spi

[U-Boot] [PATCH] mtd: spi: add spi flash id mt25qu512a

2019-05-10 Thread Vabhav Sharma
Add micron mt25qu512a flash description. Signed-off-by: Ashish Kumar Signed-off-by: Pramod Kumar Signed-off-by: Vabhav Sharma --- drivers/mtd/spi/spi-nor-ids.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/mtd/spi/spi-nor-ids.c b/drivers/mtd/spi/spi-nor-ids.c index ec92976

[U-Boot] [PATCH] armv8: ls1046afrwy: Add support for LS1046AFRWY platform

2019-05-09 Thread Vabhav Sharma
. Signed-off-by: Camelia Groza Signed-off-by: Madalin Bucur Signed-off-by: Pankit Garg Signed-off-by: Pramod Kumar Signed-off-by: Rajesh Bhagat Signed-off-by: Vabhav Sharma --- arch/arm/Kconfig | 17 ++ arch/arm/cpu/armv8/Kconfig

Re: [U-Boot] [PATCH] drivers: serial: lpuart: Enable Little Endian Support

2019-04-18 Thread Vabhav Sharma
Hello Maintainers, A gentle reminder to merge the changes. Regards, Vabhav > -Original Message- > From: Vabhav Sharma > Sent: Thursday, January 31, 2019 5:38 PM > To: u-boot@lists.denx.de; u-boot...@lists.denx.de > Cc: Vabhav Sharma > Subject: [PATCH] drivers: seri

[U-Boot] [PATCH] drivers: serial: lpuart: Enable Little Endian Support

2019-01-31 Thread Vabhav Sharma
By default LPUART driver with compatible string "fsl,ls1021a-lpuart" support big-endian mode.On NXP SoC like LS1028A LPUART IP is little-endian,Added support to Fetch LPUART IP Endianness from lpuart device-tree node. Signed-off-by: Vabhav Sharma --- drivers/serial/serial_lpuart.c |

[U-Boot] [PATCH] drivers: serial: dm: Enable DM_FLAG_PRE_RELOC in SBSA pl011 uart driver

2019-01-30 Thread Vabhav Sharma
s flag set unconditionally Signed-off-by: Vabhav Sharma --- drivers/serial/serial_pl01x.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/serial/serial_pl01x.c b/drivers/serial/serial_pl01x.c index 12512f6..2a5f256 100644 --- a/drivers/serial/serial_pl01x.c +++ b/drivers/serial/seri

Re: [U-Boot] [U-Boot-DM] [PATCH] drivers: serial: probe all serial devices

2018-11-02 Thread Vabhav Sharma
> -Original Message- > From: Wolfgang Denk > Sent: Friday, October 26, 2018 4:57 PM > To: Vabhav Sharma > Cc: Marek Vasut ; u-boot@lists.denx.de; u-boot- > d...@lists.denx.de; s...@chromium.org; yamada.masah...@socionext.com; > bmeng...@gmail.com > Subject

[U-Boot] Feedback: Device probe during boot

2018-11-02 Thread Vabhav Sharma
04, Simon Glass wrote: > > On 23 May 2018 at 11:56, Vabhav Sharma wrote: > >> Hello Everyone, > >> > >> I am working on integrating generic PL011 driver in u-boot and linux for > > Note, it is 'U-Boot' > > >> ARMv8 NXP SoC and facing issue w

Re: [U-Boot] [U-Boot-DM] [PATCH] drivers: serial: probe all serial devices

2018-10-25 Thread Vabhav Sharma
> -Original Message- > From: Wolfgang Denk > Sent: Thursday, October 25, 2018 7:35 PM > To: Vabhav Sharma > Cc: Marek Vasut ; u-boot@lists.denx.de; u-boot- > d...@lists.denx.de; s...@chromium.org; yamada.masah...@socionext.com; > bmeng...@gmail.com > Subject

Re: [U-Boot] [PATCH] drivers: serial: probe all serial devices

2018-10-25 Thread Vabhav Sharma
> -Original Message- > From: s...@google.com On Behalf Of Simon Glass > Sent: Friday, October 19, 2018 8:56 AM > To: Bin Meng > Cc: Vabhav Sharma ; U-Boot Mailing List b...@lists.denx.de>; u-boot...@lists.denx.de; Andreas Dannenberg > ; Masahiro Yamada > ; Ste

Re: [U-Boot] [U-Boot-DM] [PATCH] drivers: serial: probe all serial devices

2018-10-25 Thread Vabhav Sharma
Hi Marek Vasut, Apology for delayed reply, Occupied with other work > -Original Message- > From: Marek Vasut > Sent: Tuesday, October 16, 2018 2:39 PM > To: Vabhav Sharma ; u-boot@lists.denx.de; u- > boot...@lists.denx.de; s...@chromium.org > Cc: yamada.masah...@so

Re: [U-Boot] [PATCH] drivers: serial: probe all serial devices

2018-10-16 Thread Vabhav Sharma
> -Original Message- > From: Bin Meng > Sent: Monday, October 15, 2018 5:58 PM > To: Vabhav Sharma > Cc: U-Boot Mailing List ; u-boot...@lists.denx.de; > Simon Glass ; dannenb...@ti.com; Masahiro Yamada > ; Stefan Roese > Subject: Re: [PATCH] drivers: serial:

Re: [U-Boot] [U-Boot-DM] [PATCH] drivers: serial: probe all serial devices

2018-10-16 Thread Vabhav Sharma
> -Original Message- > From: Marek Vasut > Sent: Tuesday, October 16, 2018 12:29 PM > To: Vabhav Sharma ; u-boot@lists.denx.de; u-boot- > d...@lists.denx.de; s...@chromium.org > Cc: yamada.masah...@socionext.com; bmeng...@gmail.com > Subject: Re: [U-Boot-DM] [P

[U-Boot] [PATCH] drivers: serial: probe all serial devices

2018-10-15 Thread Vabhav Sharma
Serial subsystem search and probe only one first serial device and unable to use remaining available UART devices This patch changes the logic to probe all available serial devices using platform data or device tree in DM model in order to use all UART devices Signed-off-by: Vabhav Sharma