[U-Boot] [PATCH] DTS: Enable top USB port on CEI-TK1-SOM

2017-02-06 Thread Peter Chubb
From: Peter Chubb Only one of the two USB ports were enabled; this patch enables the one at the top of the board. Signed-off-by: Peter Chubb --- arch/arm/dts/tegra124-cei-tk1-som.dts | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/arch/arm/dts/tegra124-cei-tk1

Re: [U-Boot] [ARM] RFC: Add board support for Colorado Engineering TK1-SOM

2016-08-23 Thread Peter Chubb
>>>>> "Stephen" == Stephen Warren writes: Stephen> On 08/22/2016 04:29 PM, Peter Chubb wrote: >> >> This patch adds support for the TK1-SOM board, which is almost the Stephen> Nit: That blank line at start of the commit description Stephen> shou

Re: [U-Boot] [PATCH] ARM: tegra: increase console buffer size and sys args num

2016-08-23 Thread Peter Chubb
>>>>> "Stephen" == Stephen Warren writes: Stephen> On 08/22/2016 06:00 PM, Peter Chubb wrote: >> >> The Linux-for-Tegra kernel uses a very long command line. Stephen> There should be a From: line here indicating that Bryan is Stephen> the autho

[U-Boot] [PATCH] ARM: tegra: increase console buffer size and sys args num

2016-08-22 Thread Peter Chubb
RGS is too small to add a long long command line, and the kernel won't boot without the complete bootargs. Increasing these two config options solves this problem. (patch cherry-picked from the NVIDIA u-boot source; original author Bryan Wu) Signed-off-by: Bryan Wu Signed-off-by: Pet

[U-Boot] ARM: tegra: jetson-tk1: Increase console buffer size

2016-08-22 Thread Peter Chubb
U-Boot's console buffer size needs to be bigger to allow the default image on NVIDIA's Linux4Tegra to boot. Otherwise one sees: bootarg overflow 602+0+0+1 > 512 on the console, and the board refuses to boot. Signed-off-by: Peter Chubb --- include/configs/tegra-common.h |

[U-Boot] [ARM] RFC: Add board support for Colorado Engineering TK1-SOM

2016-08-22 Thread Peter Chubb
are in the pinmux and device tree. And the device tree is maybe 10 lines different. Signed-off-by: Peter Chubb --- arch/arm/dts/Makefile| 1 + arch/arm/dts/tegra124-tk1-som.dts| 477 +++ arch/arm/mach-tegra/tegra124/Kconfig

[U-Boot] tegra124 jetson-tk1 ethernet problems.

2016-08-01 Thread Peter Chubb
l_flush_buffer(void *buf, size_t size) { - flush_cache((unsigned long)buf, size); + unsigned long sz = ALIGN(size, ARCH_DMA_MINALIGN); + + flush_cache((unsigned long)buf, sz); } /****** -- Dr Peter Chubb