Re: [U-Boot] cl-som-am57x_defconfig will be dropped

2019-02-11 Thread Uri Mashiach
Hi Vignesh, No maintenance is scheduled for the CL-SOM-AM57x module. Please remove relevant files if needed. Thanks, Uri On 11/02/2019 8:25, Vignesh R wrote: Hi Uri, I see following warnings when building configs/cl-som-am57x_defconfig[1] which means board has not be moved to U-Boot Driver Mo

[U-Boot] [PATCH 1/6] arm: am57xx: cl-som-am57x: fix XHCI registers base address

2017-02-08 Thread Uri Mashiach
ently missing). Signed-off-by: Uri Mashiach --- include/linux/usb/xhci-omap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/usb/xhci-omap.h b/include/linux/usb/xhci-omap.h index 9de80d7..89665a0 100644 --- a/include/linux/usb/xhci-omap.h +++ b/include/linux/

[U-Boot] [PATCH 2/6] usb: host: xhci-omap: fix double weak board_usb_init functions

2017-02-08 Thread Uri Mashiach
for boards that defines CONFIG_USB_XHCI_OMAP. Signed-off-by: Uri Mashiach --- board/compulab/cl-som-am57x/cl-som-am57x.c | 2 +- board/ti/am43xx/board.c| 4 ++-- board/ti/am57xx/board.c| 4 ++-- board/ti/dra7xx/evm.c | 4

[U-Boot] [PATCH 4/6] arm: am57xx: cl-som-am57x: fix USB scan

2017-02-08 Thread Uri Mashiach
2 Resetting CPU ... resetting ... --cut-- Fix by enabling USB configuration in the SPL. Signed-off-by: Uri Mashiach --- include/configs/cl-som-am57x.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/c

[U-Boot] [PATCH 3/6] arm: am57xx: cl-som-am57x: invoke clock API to enable/disable clocks

2017-02-08 Thread Uri Mashiach
board_usb_cleanup. Signed-off-by: Uri Mashiach --- board/compulab/cl-som-am57x/cl-som-am57x.c | 10 -- drivers/usb/host/xhci-omap.c | 3 +++ 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/board/compulab/cl-som-am57x/cl-som-am57x.c b/board/compulab/cl-som-am57x/cl-som

[U-Boot] [PATCH 6/6] arm: am57xx: cl-som-am57x: enable USB commands

2017-02-08 Thread Uri Mashiach
Add CONFIG_CMD_USB to the defconfig file. Signed-off-by: Uri Mashiach --- configs/cl-som-am57x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/cl-som-am57x_defconfig b/configs/cl-som-am57x_defconfig index 1831f45..83d7bd0 100644 --- a/configs/cl-som-am57x_defconfig +++ b

[U-Boot] [PATCH 5/6] arm: am57xx: cl-som-am57x: enable USB storage

2017-02-08 Thread Uri Mashiach
Add CONFIG_USB_STORAGE to the defconfig file. Signed-off-by: Uri Mashiach --- configs/cl-som-am57x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/cl-som-am57x_defconfig b/configs/cl-som-am57x_defconfig index 916b836..1831f45 100644 --- a/configs/cl-som-am57x_defconfig

Re: [U-Boot] [PATCH 2/6] usb: host: xhci-omap: fix double weak board_usb_init functions

2017-02-09 Thread Uri Mashiach
Hello Marek, On 02/09/2017 10:35 AM, Marek Vasut wrote: On 02/09/2017 08:01 AM, Uri Mashiach wrote: A weak version of the function board_usb_init is implemented in: common/usb.c drivers/usb/host/xhci-omap.c To fix the double implementations: * Convert the board_usb_init function in drivers

Re: [U-Boot] [PATCH 1/6] arm: am57xx: cl-som-am57x: fix XHCI registers base address

2017-02-12 Thread Uri Mashiach
Hi Tom, On 02/09/2017 10:29 PM, Tom Rini wrote: On Thu, Feb 09, 2017 at 09:00:26AM +0200, Uri Mashiach wrote: The following XHCI registers base address are set to OMAP5 values: OMAP_XHCI_BASE, OMAP_OCP1_SCP_BASE, OMAP_OTG_WRAPPER_BASE Captured crash for "usb start&quo

Re: [U-Boot] [PATCH 2/6] usb: host: xhci-omap: fix double weak board_usb_init functions

2017-02-12 Thread Uri Mashiach
Hi, On 02/09/2017 05:27 PM, Tom Rini wrote: On Thu, Feb 09, 2017 at 02:35:30PM +0100, Marek Vasut wrote: On 02/09/2017 12:36 PM, Uri Mashiach wrote: Hello Marek, Hi! [...] diff --git a/drivers/usb/host/xhci-omap.c b/drivers/usb/host/xhci-omap.c index b881b19..ceee12a 100644 --- a

[U-Boot] [PATCH v2 0/6] arm: am57xx: cl-som-am57x: fix usb

2017-02-13 Thread Uri Mashiach
Various USB related comits for the CL-SOM-AM57x module. --- V1 -> V2: Replace commit "fix XHCI registers base address" with "reintroduce the CONFIG_AM57XX symbol". Uri Mashiach (6): arm: am57xx: reintroduce the CONFIG_AM57XX symbol usb: host: xhci-omap: fix dou

[U-Boot] [PATCH v2 1/6] arm: am57xx: reintroduce the CONFIG_AM57XX symbol

2017-02-13 Thread Uri Mashiach
The SOC family symbol CONFIG_AM57XX was removed by the commit 3891a54: "ARM: DRA7x/AM57xx: Get rid of CONFIG_AM57XX". The symbol is needed by the XHCI OMAP USB driver. Without the symbol all the AM57x targets symbols should be ored in the ifdef'ery. Signed-off-by: Uri Mashiac

[U-Boot] [PATCH v2 2/6] usb: host: xhci-omap: fix double weak board_usb_init functions

2017-02-13 Thread Uri Mashiach
for boards that defines CONFIG_USB_XHCI_OMAP. Signed-off-by: Uri Mashiach --- V1 -> V2: Use __weak instead of attribute block board/compulab/cl-som-am57x/cl-som-am57x.c | 2 +- board/ti/am43xx/board.c| 4 ++-- board/ti/am57xx/board.c| 4 ++-- board

[U-Boot] [PATCH v2 3/6] arm: am57xx: cl-som-am57x: invoke clock API to enable/disable clocks

2017-02-13 Thread Uri Mashiach
board_usb_cleanup. Signed-off-by: Uri Mashiach Reviewed-by: Marek Vasut Reviewed-by: Tom Rini --- V1 -> V2: none board/compulab/cl-som-am57x/cl-som-am57x.c | 10 -- drivers/usb/host/xhci-omap.c | 2 ++ 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/board/compulab

[U-Boot] [PATCH v2 4/6] arm: am57xx: cl-som-am57x: fix USB scan

2017-02-13 Thread Uri Mashiach
2 Resetting CPU ... resetting ... --cut-- Fix by enabling USB configuration in the SPL. Signed-off-by: Uri Mashiach Reviewed-by: Tom Rini Reviewed-by: Igor Grinberg --- V1 -> V2: none include/configs/cl-som-am57x.h | 4 ++-- 1 file cha

[U-Boot] [PATCH v2 5/6] arm: am57xx: cl-som-am57x: enable USB storage

2017-02-13 Thread Uri Mashiach
Add CONFIG_USB_STORAGE to the defconfig file. Signed-off-by: Uri Mashiach Reviewed-by: Tom Rini --- V1 -> V2: none configs/cl-som-am57x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/cl-som-am57x_defconfig b/configs/cl-som-am57x_defconfig index 916b836..1831f45 100

[U-Boot] [PATCH v2 6/6] arm: am57xx: cl-som-am57x: enable USB commands

2017-02-13 Thread Uri Mashiach
Add CONFIG_CMD_USB to the defconfig file. Signed-off-by: Uri Mashiach Reviewed-by: Tom Rini --- V1 -> V2: none configs/cl-som-am57x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/cl-som-am57x_defconfig b/configs/cl-som-am57x_defconfig index 1831f45..83d7bd0 100644 --

Re: [U-Boot] [PATCH 1/6] arm: am57xx: cl-som-am57x: fix XHCI registers base address

2017-02-13 Thread Uri Mashiach
On 02/13/2017 01:46 PM, Lokesh Vutla wrote: On Sunday 12 February 2017 09:17 PM, Tom Rini wrote: On Sun, Feb 12, 2017 at 10:55:27AM +0200, Uri Mashiach wrote: Hi Tom, On 02/09/2017 10:29 PM, Tom Rini wrote: On Thu, Feb 09, 2017 at 09:00:26AM +0200, Uri Mashiach wrote: The following

Re: [U-Boot] [PATCH 1/6] arm: am57xx: cl-som-am57x: fix XHCI registers base address

2017-02-14 Thread Uri Mashiach
On 02/13/2017 02:33 PM, Lokesh Vutla wrote: On Monday 13 February 2017 05:42 PM, Uri Mashiach wrote: On 02/13/2017 01:46 PM, Lokesh Vutla wrote: On Sunday 12 February 2017 09:17 PM, Tom Rini wrote: On Sun, Feb 12, 2017 at 10:55:27AM +0200, Uri Mashiach wrote: Hi Tom, On 02/09/2017

Re: [U-Boot] [PATCH v2 1/6] arm: am57xx: reintroduce the CONFIG_AM57XX symbol

2017-02-15 Thread Uri Mashiach
wrote: On Mon, Feb 13, 2017 at 7:27 AM, Tom Rini wrote: On Mon, Feb 13, 2017 at 01:34:52PM +0200, Uri Mashiach wrote: The SOC family symbol CONFIG_AM57XX was removed by the commit 3891a54: "ARM: DRA7x/AM57xx: Get rid of CONFIG_AM57XX". The symbol is needed by the XHCI OMAP USB drive

[U-Boot] [PATCH v3 0/7] am57xx: cl-som-am57x: fix usb

2017-02-20 Thread Uri Mashiach
duce the CONFIG_AM57XX symbol" with "xHCI registers based on USB port index" Uri Mashiach (7): arm: dra7xx: move CONFIG_DRA7XX to Kconfig arm: usb: dra7xx: xHCI registers based on USB port index usb: host: xhci-omap: fix double weak board_usb_init functions arm: am57xx: cl-so

[U-Boot] [PATCH v3 1/7] arm: dra7xx: move CONFIG_DRA7XX to Kconfig

2017-02-20 Thread Uri Mashiach
The symbol CONFIG_DRA7XX is needed for Kconfig conditions. Cc: Lokesh Vutla Signed-off-by: Uri Mashiach --- V3 -> V2: new commit board/compulab/cl-som-am57x/Kconfig | 4 board/ti/am57xx/Kconfig | 4 board/ti/dra7xx/Kconfig | 4 include/conf

[U-Boot] [PATCH v3 2/7] arm: usb: dra7xx: xHCI registers based on USB port index

2017-02-20 Thread Uri Mashiach
Modify the determination of the base address of xHCI registers of DRA7XX targets. Before the commit: by the target. After the commit: by the USB port index. Cc: Lokesh Vutla Cc: Marek Vasut Signed-off-by: Uri Mashiach --- V1 -> V2: Replace the commit "fix XHCI registers base address&qu

[U-Boot] [PATCH v3 3/7] usb: host: xhci-omap: fix double weak board_usb_init functions

2017-02-20 Thread Uri Mashiach
for boards that defines CONFIG_USB_XHCI_OMAP. Cc: Lokesh Vutla Signed-off-by: Uri Mashiach Acked-by: Marek Vasut Reviewed-by: Tom Rini --- V1 -> V2: Use __weak instead of attribute block V2 -> V3: none board/compulab/cl-som-am57x/cl-som-am57x.c | 2 +- board/ti/am43xx/b

[U-Boot] [PATCH v3 4/7] arm: am57xx: cl-som-am57x: invoke clock API to enable/disable clocks

2017-02-20 Thread Uri Mashiach
board_usb_cleanup. Cc: Marek Vasut Signed-off-by: Uri Mashiach Reviewed-by: Marek Vasut Reviewed-by: Tom Rini --- V1 -> V3: none board/compulab/cl-som-am57x/cl-som-am57x.c | 10 -- drivers/usb/host/xhci-omap.c | 2 ++ 2 files changed, 2 insertions(+), 10 deletions(-) diff --gi

[U-Boot] [PATCH v3 6/7] arm: am57xx: cl-som-am57x: enable USB storage

2017-02-20 Thread Uri Mashiach
Add CONFIG_USB_STORAGE to the defconfig file. Signed-off-by: Uri Mashiach Reviewed-by: Tom Rini --- V1 -> V3: none configs/cl-som-am57x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/cl-som-am57x_defconfig b/configs/cl-som-am57x_defconfig index 916b836..1831f45 100

[U-Boot] [PATCH v3 5/7] arm: am57xx: cl-som-am57x: fix USB scan

2017-02-20 Thread Uri Mashiach
2 Resetting CPU ... resetting ... --cut-- Fix by enabling USB configuration in the SPL. Signed-off-by: Uri Mashiach Reviewed-by: Tom Rini Reviewed-by: Igor Grinberg --- V1 -> V3: none include/configs/cl-som-am57x.h | 4 ++-- 1 file cha

Re: [U-Boot] [PATCH v3 2/7] arm: usb: dra7xx: xHCI registers based on USB port index

2017-02-20 Thread Uri Mashiach
On 02/19/2017 04:27 PM, Marek Vasut wrote: On 02/19/2017 02:27 PM, Uri Mashiach wrote: Modify the determination of the base address of xHCI registers of DRA7XX targets. Before the commit: by the target. After the commit: by the USB port index. Cc: Lokesh Vutla Cc: Marek Vasut Signed-off-by

[U-Boot] [PATCH v3 7/7] arm: am57xx: cl-som-am57x: enable USB commands

2017-02-20 Thread Uri Mashiach
Add CONFIG_CMD_USB to the defconfig file. Signed-off-by: Uri Mashiach Reviewed-by: Tom Rini --- V1 -> V3: none configs/cl-som-am57x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/cl-som-am57x_defconfig b/configs/cl-som-am57x_defconfig index 1831f45..83d7bd0 100644 --

Re: [U-Boot] [PATCH v3 1/7] arm: dra7xx: move CONFIG_DRA7XX to Kconfig

2017-02-20 Thread Uri Mashiach
On 02/19/2017 05:15 PM, Tom Rini wrote: On Sun, Feb 19, 2017 at 03:27:13PM +0200, Uri Mashiach wrote: The symbol CONFIG_DRA7XX is needed for Kconfig conditions. Cc: Lokesh Vutla Signed-off-by: Uri Mashiach --- V3 -> V2: new commit board/compulab/cl-som-am57x/Kconfig | 4 board

Re: [U-Boot] [PATCH v3 2/7] arm: usb: dra7xx: xHCI registers based on USB port index

2017-02-22 Thread Uri Mashiach
9/17 17:15, Tom Rini wrote: On Sun, Feb 19, 2017 at 04:13:02PM +0100, Marek Vasut wrote: On 02/19/2017 03:55 PM, Uri Mashiach wrote: On 02/19/2017 04:27 PM, Marek Vasut wrote: On 02/19/2017 02:27 PM, Uri Mashiach wrote: Modify the determination of the base address of xHCI registers of DRA7

[U-Boot] [PATCH v4 0/7] am57xx: cl-som-am57x: fix usb

2017-02-23 Thread Uri Mashiach
duce the CONFIG_AM57XX symbol" with "xHCI registers based on USB port index" V3 -> V4: Update commit "move CONFIG_DRA7XX to Kconfig" Update commit "xHCI registers based on USB port index" Uri Mashiach (7): arm: dra7xx: move CONFIG_DRA7XX to Kconf

[U-Boot] [PATCH v4 4/7] arm: am57xx: cl-som-am57x: invoke clock API to enable/disable clocks

2017-02-23 Thread Uri Mashiach
board_usb_cleanup. Cc: Marek Vasut Signed-off-by: Uri Mashiach Reviewed-by: Marek Vasut Reviewed-by: Tom Rini --- V1 -> V4: none board/compulab/cl-som-am57x/cl-som-am57x.c | 10 -- drivers/usb/host/xhci-omap.c | 2 ++ 2 files changed, 2 insertions(+), 10 deletions(-) diff --gi

[U-Boot] [PATCH v4 3/7] usb: host: xhci-omap: fix double weak board_usb_init functions

2017-02-23 Thread Uri Mashiach
for boards that defines CONFIG_USB_XHCI_OMAP. Cc: Lokesh Vutla Signed-off-by: Uri Mashiach Acked-by: Marek Vasut Reviewed-by: Tom Rini --- V1 -> V2: Use __weak instead of attribute block V2 -> V4: none board/compulab/cl-som-am57x/cl-som-am57x.c | 2 +- board/ti/am43xx/b

[U-Boot] [PATCH v4 1/7] arm: dra7xx: move CONFIG_DRA7XX to Kconfig

2017-02-23 Thread Uri Mashiach
The symbol CONFIG_DRA7XX is needed for Kconfig conditions. Cc: Lokesh Vutla Signed-off-by: Uri Mashiach --- V2 -> V3: new commit V3 -> V4: move the DRA7XX symbol introduction to arch/arm/mach-omap2/omap5/Kconfig arch/arm/mach-omap2/omap5/Kconfig | 8 include/configs/am57xx

[U-Boot] [PATCH v4 2/7] arm: usb: dra7xx: xHCI registers based on USB port index

2017-02-23 Thread Uri Mashiach
Modify the determination of the base address of xHCI registers of DRA7XX targets. Before the commit: by the target. After the commit: by the USB port index. Cc: Lokesh Vutla Cc: Marek Vasut Cc: Roger Quadros Signed-off-by: Uri Mashiach --- V1 -> V2: Replace the commit "fix XHCI regist

[U-Boot] [PATCH v4 5/7] arm: am57xx: cl-som-am57x: fix USB scan

2017-02-23 Thread Uri Mashiach
2 Resetting CPU ... resetting ... --cut-- Fix by enabling USB configuration in the SPL. Signed-off-by: Uri Mashiach Reviewed-by: Tom Rini Reviewed-by: Igor Grinberg --- V1 -> V4: none include/configs/cl-som-am57x.h | 4 ++-- 1 file cha

[U-Boot] [PATCH v4 7/7] arm: am57xx: cl-som-am57x: enable USB commands

2017-02-23 Thread Uri Mashiach
Add CONFIG_CMD_USB to the defconfig file. Signed-off-by: Uri Mashiach Reviewed-by: Tom Rini --- V1 -> V4: none configs/cl-som-am57x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/cl-som-am57x_defconfig b/configs/cl-som-am57x_defconfig index 1831f45..83d7bd0 100644 --

[U-Boot] [PATCH v4 6/7] arm: am57xx: cl-som-am57x: enable USB storage

2017-02-23 Thread Uri Mashiach
Add CONFIG_USB_STORAGE to the defconfig file. Signed-off-by: Uri Mashiach Reviewed-by: Tom Rini --- V1 -> V4: none configs/cl-som-am57x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/cl-som-am57x_defconfig b/configs/cl-som-am57x_defconfig index 916b836..1831f45 100

Re: [U-Boot] [PATCH v4 3/7] usb: host: xhci-omap: fix double weak board_usb_init functions

2017-02-28 Thread Uri Mashiach
Hi, On 02/27/2017 06:22 PM, Roger Quadros wrote: Hi, On 23/02/17 15:39, Uri Mashiach wrote: A weak version of the function board_usb_init is implemented in: common/usb.c drivers/usb/host/xhci-omap.c To fix the double implementations: * Convert the board_usb_init function in drivers/usb/host

Re: [U-Boot] [PATCH v4 3/7] usb: host: xhci-omap: fix double weak board_usb_init functions

2017-03-01 Thread Uri Mashiach
On 02/28/2017 03:13 PM, Roger Quadros wrote: On 28/02/17 10:00, Uri Mashiach wrote: Hi, On 02/27/2017 06:22 PM, Roger Quadros wrote: Hi, On 23/02/17 15:39, Uri Mashiach wrote: A weak version of the function board_usb_init is implemented in: common/usb.c drivers/usb/host/xhci-omap.c

Re: [U-Boot] [PATCH v4 0/7] am57xx: cl-som-am57x: fix usb

2017-04-23 Thread Uri Mashiach
Hello Tom, A gentle ping on this patch series. On 02/23/2017 03:39 PM, Uri Mashiach wrote: Various USB related comits for the CL-SOM-AM57x module. --- V1 -> V2: Replace commit "fix XHCI registers base address" with "reintroduce the CONFIG_AM57XX symbol". V2 -&

[U-Boot] [PATCH 0/4] arm: am57xx: cl-som-am57x: 2'nd stage

2017-05-17 Thread Uri Mashiach
Various commits related to the CL-SOM-AM57x module. Uri Mashiach (4): arm: am57xx: cl-som-am57x: support for FS boot arm: am57xx: cl-som-am57x: change the shell prompt ARM: am57xx: cl-som-am57x: support for AM5718 arm: am57xx: cl-som-am57x: adjust default env to the installation

[U-Boot] [PATCH 3/4] ARM: am57xx: cl-som-am57x: support for AM5718

2017-05-17 Thread Uri Mashiach
Disable SDRAM controller EMIF2 for single core SOC Set SDRAM size size to 1GB Signed-off-by: Uri Mashiach --- board/compulab/cl-som-am57x/spl.c | 5 + 1 file changed, 5 insertions(+) diff --git a/board/compulab/cl-som-am57x/spl.c b/board/compulab/cl-som-am57x/spl.c index 855678f..de2dadc

[U-Boot] [PATCH 2/4] arm: am57xx: cl-som-am57x: change the shell prompt

2017-05-17 Thread Uri Mashiach
Change the shell prompt to "U-Boot# ". Signed-off-by: Uri Mashiach --- configs/cl-som-am57x_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/cl-som-am57x_defconfig b/configs/cl-som-am57x_defconfig index 57d96b4..29322f9 100644 --- a/configs/cl-som-am57x_defco

[U-Boot] [PATCH 1/4] arm: am57xx: cl-som-am57x: support for FS boot

2017-05-17 Thread Uri Mashiach
Supported boot devices are raw QSPI and raw SD card. Add support for a FAT16/32 file system for SD card. The SOC's boot ROM only supports FAT file system. Therefore remove the SPL support for the EXT file system. Signed-off-by: Uri Mashiach --- configs/cl-som-am57x_defconfig | 1 + in

[U-Boot] [PATCH 4/4] arm: am57xx: cl-som-am57x: adjust default env to the installation system

2017-05-17 Thread Uri Mashiach
The SD card automatic installation system depends on the default environment of the previous U-Boot. Add the missing environment variables. Signed-off-by: Uri Mashiach --- include/configs/cl-som-am57x.h | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/configs

[U-Boot] [PATCH] net: usb: mcs7830: fix no DM recive path

2017-05-17 Thread Uri Mashiach
Modifications: * The call condition of the function net_process_received_packet() is the success of the function mcs7830_recv_common(). * The return value of the function mcs7830_recv reflects the success of the function mcs7830_recv_common(). Signed-off-by: Uri Mashiach --- drivers/usb/eth

[U-Boot] [PATCH v2] net: usb: mcs7830: fix no DM recive path

2017-05-18 Thread Uri Mashiach
mcs7830_recv_common(). Signed-off-by: Uri Mashiach --- v1 -> v2: update the commit message. drivers/usb/eth/mcs7830.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/usb/eth/mcs7830.c b/drivers/usb/eth/mcs7830.c index 9d6cf8c..4abef5d 100644 --- a/drivers/usb/eth/mcs783

[U-Boot] [PATCH v3] net: usb: mcs7830: fix no DM recive path

2017-05-18 Thread Uri Mashiach
x27;s success status. Signed-off-by: Uri Mashiach --- v1 -> v3: update the commit message. drivers/usb/eth/mcs7830.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/usb/eth/mcs7830.c b/drivers/usb/eth/mcs7830.c index 9d6cf8c..4abef5d 100644 --- a/drivers/usb/eth

[U-Boot] [PATCH v4] net: usb: mcs7830: fix non-DM ingress path

2017-05-21 Thread Uri Mashiach
The mcs7830_recv() (non-DM) function discards good packets and tries to process "bad" packets due to incorrect test condition. Fix the condition and return the proper value as described in function doc. Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg --- v1 -> v4: update the c

[U-Boot] [PATCH 0/5] cl-som-am57x: initial support

2016-12-01 Thread Uri Mashiach
spl arm: am57xx: cl-som-am57x: fetch board rev from EEPROM arm: am57xx: cl-som-am57x: add ETH support Uri Mashiach (1): arm: am57xx: cl-som-am57x: update default env arch/arm/cpu/armv7/omap5/Kconfig | 4 + board/compulab/cl-som-am57x/Kconfig| 12 ++ board/compulab/cl

[U-Boot] [PATCH 5/5] arm: am57xx: cl-som-am57x: update default env

2016-12-01 Thread Uri Mashiach
Modify U-Boot default env settings. Boot sequence: 1. SD card boot script 2. SD card boot no script 3. SATA boot script 4. SATA boot no script 5. eMMC boot script 6. eMMC boot no script Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg --- include/configs/cl-som-am57x.h | 61

[U-Boot] [PATCH 4/5] arm: am57xx: cl-som-am57x: add ETH support

2016-12-01 Thread Uri Mashiach
ed from the on-board EEPROM or from the SOC's MAC fuses. Set the following PHYs RGMII clock delays: - Enable RX delay - Disable TX delay Signed-off-by: Dmitry Lifshitz [uri.mashi...@compulab.co.il: add RGMII clock delays] Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg --- board/compu

[U-Boot] [PATCH 1/5] arm: am57xx: cl-som-am57x: add initial board support

2016-12-01 Thread Uri Mashiach
From: Dmitry Lifshitz Features supported : * Serial console * SPI Flash * MMC/SD Card * eMMC storage * SATA * PCA9555 - GPIO expander over I2C5 bus * USB Signed-off-by: Dmitry Lifshitz [uri.mashi...@compulab.co.il: Adjust to v2016.11] Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg

[U-Boot] [PATCH 2/5] arm: am57xx: cl-som-am57x: add MMC as a boot devices for spl

2016-12-01 Thread Uri Mashiach
From: Dmitry Lifshitz Use spl alternate boot device feature to define fallback to the main boot device as it is defined by hardware. Signed-off-by: Dmitry Lifshitz Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg --- include/configs/cl-som-am57x.h | 10 ++ 1 file changed, 10

[U-Boot] [PATCH 3/5] arm: am57xx: cl-som-am57x: fetch board rev from EEPROM

2016-12-01 Thread Uri Mashiach
From: Dmitry Lifshitz Add PCB revision message. Implement board revision get_board_rev API. Signed-off-by: Dmitry Lifshitz Commit description update. Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg --- board/compulab/cl-som-am57x/cl-som-am57x.c | 14 ++ include/configs/cl

Re: [U-Boot] [PATCH 1/5] arm: am57xx: cl-som-am57x: add initial board support

2016-12-03 Thread Uri Mashiach
Hello Tom, On 12/01/2016 05:36 PM, Tom Rini wrote: > On Thu, Dec 01, 2016 at 10:28:12AM +0200, Uri Mashiach wrote: > >> From: Dmitry Lifshitz >> >> Features supported : >> >> * Serial console >> * SPI Flash >> * MMC/SD Card >> * eMMC storag

[U-Boot] [PATCH v2 4/4] arm: am57xx: cl-som-am57x: update default env

2016-12-05 Thread Uri Mashiach
Modify U-Boot default env settings. Boot sequence: 1. SD card boot script 2. SD card boot no script 3. SATA boot script 4. SATA boot no script 5. eMMC boot script 6. eMMC boot no script Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg Reviewed-by: Tom Rini --- include/configs/cl-som

[U-Boot] [PATCH v2 0/4] cl-som-am57x: initial support

2016-12-05 Thread Uri Mashiach
arm: am57xx: cl-som-am57x: add ETH support Uri Mashiach (1): arm: am57xx: cl-som-am57x: update default env arch/arm/mach-omap2/omap5/Kconfig | 4 + board/compulab/cl-som-am57x/Kconfig| 12 ++ board/compulab/cl-som-am57x/MAINTAINERS| 6 + board/compulab/cl-som-am57x

[U-Boot] [PATCH v2 1/4] arm: am57xx: cl-som-am57x: add initial board support

2016-12-05 Thread Uri Mashiach
Lifshitz [uri.mashi...@compulab.co.il: Adjust to v2016.11] Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg --- --- v1 -> v2: Merged with commit "add MMC as a boot devices for spl". Commit "add MMC as a boot devices for spl" converted to Kconfig arch/arm/m

[U-Boot] [PATCH v2 3/4] arm: am57xx: cl-som-am57x: add ETH support

2016-12-05 Thread Uri Mashiach
ed from the on-board EEPROM or from the SOC's MAC fuses. Set the following PHYs RGMII clock delays: - Enable RX delay - Disable TX delay Signed-off-by: Dmitry Lifshitz [uri.mashi...@compulab.co.il: add RGMII clock delays] Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg --- board/compu

[U-Boot] [PATCH v2 2/4] arm: am57xx: cl-som-am57x: fetch board rev from EEPROM

2016-12-05 Thread Uri Mashiach
From: Dmitry Lifshitz Add PCB revision message. Implement board revision get_board_rev API. Signed-off-by: Dmitry Lifshitz Commit description update. Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg Reviewed-by: Tom Rini --- board/compulab/cl-som-am57x/cl-som-am57x.c | 14

Re: [U-Boot] [PATCH v2 1/4] arm: am57xx: cl-som-am57x: add initial board support

2016-12-06 Thread Uri Mashiach
Hi Tom, Sending again - reply all On 12/05/2016 05:28 PM, Tom Rini wrote: On Mon, Dec 05, 2016 at 10:27:55AM +0200, Uri Mashiach wrote: From: Dmitry Lifshitz Features supported : * Serial console * SPI Flash * MMC/SD Card * eMMC storage * SATA * PCA9555 - GPIO expander over I2C5 bus * USB

[U-Boot] [PATCH v3 0/4] cl-som-am57x: initial support

2016-12-08 Thread Uri Mashiach
arm: am57xx: cl-som-am57x: add ETH support Uri Mashiach (1): arm: am57xx: cl-som-am57x: update default env arch/arm/mach-omap2/omap5/Kconfig | 4 + board/compulab/cl-som-am57x/Kconfig| 12 ++ board/compulab/cl-som-am57x/MAINTAINERS| 6 + board/compulab/cl-som-am57x

[U-Boot] [PATCH v3 4/4] arm: am57xx: cl-som-am57x: update default env

2016-12-08 Thread Uri Mashiach
Modify U-Boot default env settings. Boot sequence: 1. SD card boot script 2. SD card boot no script 3. SATA boot script 4. SATA boot no script 5. eMMC boot script 6. eMMC boot no script Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg Reviewed-by: Tom Rini --- include/configs/cl-som

[U-Boot] [PATCH v3 2/4] arm: am57xx: cl-som-am57x: fetch board rev from EEPROM

2016-12-08 Thread Uri Mashiach
From: Dmitry Lifshitz Add PCB revision message. Implement board revision get_board_rev API. Signed-off-by: Dmitry Lifshitz Commit description update. Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg Reviewed-by: Tom Rini --- board/compulab/cl-som-am57x/cl-som-am57x.c | 14

[U-Boot] [PATCH v3 1/4] arm: am57xx: cl-som-am57x: add initial board support

2016-12-08 Thread Uri Mashiach
Lifshitz [uri.mashi...@compulab.co.il: Adjust to v2016.11] Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg --- --- v2 -> v3: Remove CONFIG_SPL_OS_BOOT from board configuration file - CONFIG_SPL_OS_BOOT included in Kconfig v1 -> v2: Merged with commit "add MMC as a boot devi

[U-Boot] [PATCH v3 3/4] arm: am57xx: cl-som-am57x: add ETH support

2016-12-08 Thread Uri Mashiach
ed from the on-board EEPROM or from the SOC's MAC fuses. Set the following PHYs RGMII clock delays: - Enable RX delay - Disable TX delay Signed-off-by: Dmitry Lifshitz [uri.mashi...@compulab.co.il: add RGMII clock delays] Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg Reviewed-by: Tom

Re: [U-Boot] [RFC] usb: host: xhci-omap: Remove redundant board_usb_init and board_usb_cleanup functions

2018-02-14 Thread Uri Mashiach
ff-by: Faiz Abbas Reviewed-by: Marek Vasut I'd like some TBs from the people using those boards. I have tested this for dra7xx, am43xx and am57xx. So why is it marked RFC ? Because I was unclear why Uri Mashiach did not do this in 1a9a5f7 ("fix double weak board_usb_init fu

Re: [U-Boot] [RFC] usb: host: xhci-omap: Remove redundant board_usb_init and board_usb_cleanup functions

2018-02-14 Thread Uri Mashiach
Hi Faiz, On 02/14/2018 05:47 PM, Faiz Abbas wrote: Hi Uri, On Wednesday 14 February 2018 08:56 PM, Uri Mashiach wrote: Hi, Sorry for the late response. On 02/14/2018 04:19 PM, Marek Vasut wrote: On 02/14/2018 03:14 PM, Faiz Abbas wrote: Hi, On Wednesday 14 February 2018 06:53 PM, Marek

Re: [U-Boot] [PATCH v2] usb: host: xhci-omap: Remove redundant board_usb_init and board_usb_cleanup functions

2018-02-15 Thread Uri Mashiach
mode). Therefore, remove init and cleanup functions from xhci-omap and implement them in the board files. Signed-off-by: Faiz Abbas Reviewed-by: Marek Vasut Reviewed-by: Bin Meng Tested-by: Uri Mashiach --- v2: Added init and cleanup implementations for boards which were relying on the weak implement

[U-Boot] [PATCH 0/4] cl-som-imx7: initial support

2017-09-23 Thread Uri Mashiach
(1): arm: imx7d: add support for Compulab cl-som-imx7 Uri Mashiach (3): imx: mx7: fix the CCM_ macros imx: mx7: DDR controller configuration for the i.MX7 architecture imx: mx7: SPL support for i.MX7 arch/arm/include/asm/arch-mx7/crm_regs.h | 51 ++--- arch/arm/include/asm/arch-mx7/imx

[U-Boot] [PATCH 1/4] imx: mx7: fix the CCM_ macros

2017-09-23 Thread Uri Mashiach
The CCM_ macros use the CCM_BASE_ADDRESS macro, which doesn't exist. Replace the CCM_BASE_ADDRESS macros with CCM_BASE_ADDR. Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg --- arch/arm/include/asm/arch-mx7/crm_regs.h | 46 1 file changed, 23 inser

[U-Boot] [PATCH 2/4] imx: mx7: DDR controller configuration for the i.MX7 architecture

2017-09-23 Thread Uri Mashiach
The configuration files imximage.cfg are used for the DDR controller configuration. Add DDR configuration function to replace the DDR controller configuration in the imximage.cfg file. The function can be used for DDR size detection. Signed-off-by: Uri Mashiach --- arch/arm/include/asm/arch-mx7

[U-Boot] [PATCH 4/4] arm: imx7d: add support for Compulab cl-som-imx7

2017-09-23 Thread Uri Mashiach
ile mode 100644 index 000..2b917a5 --- /dev/null +++ b/board/compulab/cl-som-imx7/MAINTAINERS @@ -0,0 +1,6 @@ +CL-SOM-IMX7 BOARD +M: Uri Mashiach +S: Maintained +F: board/compulab/cl-som-imx7 +F: include/configs/cl-som-imx7.h +F: configs/cl-som-imx7_defconfig diff --git a

[U-Boot] [PATCH 3/4] imx: mx7: SPL support for i.MX7

2017-09-23 Thread Uri Mashiach
Add configuration file and spl_boot_device function for the i.MX7 SPL. Signed-off-by: Uri Mashiach --- arch/arm/include/asm/arch-mx7/sys_proto.h | 1 + arch/arm/mach-imx/spl.c | 23 ++- include/configs/imx7_spl.h| 67 +++ 3

Re: [U-Boot] [PATCH 3/4] imx: mx7: SPL support for i.MX7

2017-10-02 Thread Uri Mashiach
Hi Stefano, On 10/02/2017 05:22 PM, Stefano Babic wrote: Hi Uri, On 24/09/2017 15:32, Fabio Estevam wrote: Hi Uri, On Sun, Sep 24, 2017 at 3:00 AM, Uri Mashiach wrote: Add configuration file and spl_boot_device function for the i.MX7 SPL. Signed-off-by: Uri Mashiach Thanks for working

[U-Boot] [PATCH] imx: mx7: spl: remove redundant SATA definitionas

2017-10-09 Thread Uri Mashiach
The i.MX7 SOC doesn't include the SATA interface. Signed-off-by: Uri Mashiach --- include/configs/imx7_spl.h | 6 -- 1 file changed, 6 deletions(-) diff --git a/include/configs/imx7_spl.h b/include/configs/imx7_spl.h index e562cdb..b89dba6 100644 --- a/include/configs/imx7_spl.h

Re: [U-Boot] [PATCH 1/2] imx7: spl: Use SPL boot device MMC1 for all of the SOCs MMC/SD boot devices

2018-01-03 Thread Uri Mashiach
Hello Eran, On 01/03/2018 12:53 PM, Eran Matityahu wrote: Use only one SPL MMC device, similarly to the iMX6 code What is the reason for not using MMC2? Signed-off-by: Eran Matityahu --- arch/arm/mach-imx/spl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/a

Re: [U-Boot] [PATCH 1/2] imx7: spl: Use SPL boot device MMC1 for all of the SOCs MMC/SD boot devices

2018-01-04 Thread Uri Mashiach
On 01/03/2018 03:58 PM, Eran Matityahu wrote: Hi Uri. Hello Eran, On 01/03/2018 12:53 PM, Eran Matityahu wrote: Use only one SPL MMC device, similarly to the iMX6 code What is the reason for not using MMC2? The reason is so that you won't have to initialize more than one MMC device in

Re: [U-Boot] [PATCH 1/2] imx7: spl: Use SPL boot device MMC1 for all of the SOCs MMC/SD boot devices

2018-01-04 Thread Uri Mashiach
On 01/04/2018 01:37 PM, Stefano Babic wrote: On 04/01/2018 11:56, Eran Matityahu wrote: On Thu, Jan 4, 2018 at 12:42 PM, Stefano Babic wrote: On 04/01/2018 11:11, Eran Matityahu wrote: On Thu, Jan 4, 2018 at 12:02 PM, Eran Matityahu wrote: On Thu, Jan 4, 2018 at 11:14 AM, Stefano Babic w

[U-Boot] [PATCH v4 4/4] arm: am57xx: cl-som-am57x: update default env

2016-12-28 Thread Uri Mashiach
Modify U-Boot default env settings. Boot sequence: 1. SD card boot script 2. SD card boot no script 3. SATA boot script 4. SATA boot no script 5. eMMC boot script 6. eMMC boot no script Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg Reviewed-by: Tom Rini --- v3 -> v4: No modificati

[U-Boot] [PATCH v4 0/4] cl-som-am57x: initial support

2016-12-28 Thread Uri Mashiach
cl-som-am57x: fetch board rev from EEPROM arm: am57xx: cl-som-am57x: add ETH support Uri Mashiach (1): arm: am57xx: cl-som-am57x: update default env arch/arm/mach-omap2/omap5/Kconfig | 4 + board/compulab/cl-som-am57x/Kconfig| 12 ++ board/compulab/cl-som-am57x/MAINTAIN

[U-Boot] [PATCH v4 2/4] arm: am57xx: cl-som-am57x: fetch board rev from EEPROM

2016-12-28 Thread Uri Mashiach
From: Dmitry Lifshitz Add PCB revision message. Implement board revision get_board_rev API. Signed-off-by: Dmitry Lifshitz Commit description update. Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg Reviewed-by: Tom Rini --- v3 -> v4: No modifications board/compulab/cl-som-am57x/cl-

[U-Boot] [PATCH v4 1/4] arm: am57xx: cl-som-am57x: add initial board support

2016-12-28 Thread Uri Mashiach
Lifshitz [uri.mashi...@compulab.co.il: Adjust to v2016.11] Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg --- v3 -> v4: Adjusted to v2017.01-rc2: * arch/arm/mach-omap2/omap5/Kconfig - new board configuration moved to a new location. * Variable cl_som_am57x_volts initializat

[U-Boot] [PATCH v4 3/4] arm: am57xx: cl-som-am57x: add ETH support

2016-12-28 Thread Uri Mashiach
ed from the on-board EEPROM or from the SOC's MAC fuses. Set the following PHYs RGMII clock delays: - Enable RX delay - Disable TX delay Signed-off-by: Dmitry Lifshitz [uri.mashi...@compulab.co.il: add RGMII clock delays] Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg Reviewed-by: T

[U-Boot] [PATCH 2/2] status_led: Kconfig migration

2017-01-19 Thread Uri Mashiach
-T335 Signed-off-by: Uri Mashiach --- arch/arm/cpu/arm920t/ep93xx/led.c| 35 ++--- arch/powerpc/include/asm/status_led.h| 10 ++-- arch/powerpc/lib/interrupts.c| 6 +-- board/BuS/eb_cpu5282/eb_cpu5282.c| 2 +- board/bf533-stamp/bf533-st

[U-Boot] [PATCH 1/2] status_led: Kconfig migration - introduction

2017-01-19 Thread Uri Mashiach
Move all of the status LED feature to drivers/led/Kconfig. doc/README.LED updated to reflect the Kconfig implementation. Tested boards: CL-SOM-AM57x, CM-T335 Signed-off-by: Uri Mashiach --- README | 8 +- doc/README.LED | 58 +- drivers/led/Kconfig | 323

[U-Boot] [PATCH] arm: am57xx: cl-som-am57x: fix Ethernet

2017-01-23 Thread Uri Mashiach
fdf5d6e0 r4 : fdf5d618 r3 : fdf5d5b4 r2 : fdf5d5d0 r1 : 643a3631 r0 : fdf5d6e0 Flags: nzCv IRQs off FIQs off Mode SVC_32 Resetting CPU ... Modifications: * Enable Ethernet configuration in the SPL. * Update PINMUX of PHY enable GPIO. Signed-off-by: Uri Mashiach --- board/compulab/cl-som

[U-Boot] [PATCH] arm: am57xx: cl-som-am57x: remove board support

2019-04-14 Thread Uri Mashiach
U-Boot support for the CL-SOM-AM57x module is no longer required. Signed-off-by: Uri Mashiach --- arch/arm/dts/am57xx-cl-som-am57x.dts | 617 - arch/arm/dts/am57xx-sbc-am57x.dts | 179 - arch/arm/mach-omap2/omap5/Kconfig | 5 - board