Re: [U-Boot] [PATCH v2] ARM: tegra: enable ums on nyan boards

2019-02-14 Thread Tristan Bastian
Am 15.02.2019 00:42 schrieb Stephen Warren : > > On 2/14/19 4:25 PM, Tristan Bastian wrote: > > This patch enables UMS on the nyan devices like the nyan-big. > > A patch like this has been sent in by Stephen Warren some time ago for > > oth

[U-Boot] [PATCH v2] ARM: tegra: enable ums on nyan boards

2019-02-14 Thread Tristan Bastian
-by: Tristan Bastian --- arch/arm/dts/tegra124-nyan.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/dts/tegra124-nyan.dtsi b/arch/arm/dts/tegra124-nyan.dtsi index 51895e4816..2b28fe1497 100644 --- a/arch/arm/dts/tegra124-nyan.dtsi +++ b/arch/arm/dts/tegra124-nyan.dtsi @@ -414,6

[U-Boot] [PATCH] ARM: tegra: enable ums on nyan boards

2019-02-14 Thread Tristan Bastian
This patch enables UMS on the nyan devices like the nyan-big. A patch like this has been sent in by Stephen Warren some time ago for other tegra devices: commit e6607cffef965011ef0ddc0fbe6f4b7c0d53aeec But the nyan devices never received that functionality. Signed-off-by: Tristan Bastian

[U-Boot] [REGRESSION] tegra: efi: EFI boot on nyan-big/tegra124 not possible

2019-02-14 Thread Tristan Bastian
. Any ideas? Tristan ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 1/2] nyan-big: change spi delay

2019-02-14 Thread Tristan Bastian
Hi Jon, Hi Stephen, could you take a look at these two patches since I didn't get heard anything from Tom.. Thanks, Tristan Am 21.01.19 um 22:55 schrieb Simon Glass: On Thu, 17 Jan 2019 at 10:33, Simon Glass wrote: On Wed, 16 Jan 2019 at 11:50, Tristan Bastian wrote: Internal keyboard

Re: [U-Boot] [REGRESSION] tegra124: nyan-big: LPAE not working

2019-02-11 Thread Tristan Bastian
Am 11.02.19 um 11:48 schrieb Thierry Reding: On Mon, Feb 11, 2019 at 10:04:37AM +, Tristan Bastian wrote: Thierry Reding – Mon, 11. February 2019 10:38 On Mon, Feb 11, 2019 at 09:20:33AM +, Tristan Bastian wrote: Thierry Reding – Mon, 11. February 2019 9:52 On Sun, Feb 10, 2019

Re: [U-Boot] [PATCH] cros: Expand the Chromium OS documentation

2019-02-08 Thread Tristan Bastian
Hi Simon, Simon Glass – Fri, 8. February 2019 5:12 > Hi Tristan, > > On Mon, 4 Feb 2019 at 08:01, Tristan Bastian wrote: > > > > Hi Simon, > > > > I'm using the nyan-big chromebook (tegra124). > > Is it possible to replace coreboot + depthcharge with

Re: [U-Boot] [PATCH] cros: Expand the Chromium OS documentation

2019-02-04 Thread Tristan Bastian
I'm only getting 2 of my 4GB of memory.. So I would like to try and run u-boot natively to see if chainloading is the problem or u-boot itself.. Or maybe you have some instructions to run coreboot + u-boot without depthcharge? Thanks, Tristan Simon Glass – Thu, 31. January 2019 4:52 > The curr

[U-Boot] [PATCH 0/2] Make nyan-big working..

2019-01-16 Thread Tristan Bastian
Another problem is, that the internal keyboard is not working on the current master. A change of the SPI deactive delay solves that. A workaround for the current master was to press [reload/refresh]+[power] button. With the second patch this is no longer needed.

[U-Boot] [PATCH 2/2] nyan-big: add padding to its file

2019-01-16 Thread Tristan Bastian
Without this padding nyan-big ends at a blank screen on boot. Details on how to get to this padding can be found in the README.chromium under Notes. Signed-off-by: Tristan Bastian --- doc/chromium/nyan-big.its | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/chromium

[U-Boot] [PATCH 1/2] nyan-big: change spi delay

2019-01-16 Thread Tristan Bastian
Internal keyboard of nyan-big is only working when cold booting by pressing [reload/refresh]+[power] button. With this patch keyboard is working by only pressing [power] button. Signed-off-by: Tristan Bastian --- arch/arm/dts/tegra124-nyan-big-u-boot.dtsi | 2 +- 1 file changed, 1 insertion

[U-Boot] [PATCH 3/3] Add the NBC + netconsole corresponding documentation

2010-11-17 Thread tristan . lelong
From: Tristan Lelong tristan.lel...@blunderer.org Signed-off-by: Tristan Lelong tristan.lel...@blunderer.org --- doc/README.netconsole | 66 + 1 files changed, 66 insertions(+), 0 deletions(-) create mode 100644 doc/README.netconsole diff

[U-Boot] [PATCH 1/3] Add support for Net Boot Controller (NBC) packet

2010-11-17 Thread tristan . lelong
From: Tristan Lelong tristan.lel...@blunderer.org This adds the core NBC feature: * Integration into u-boot * NBC packet processing * NetConsole reconfigure Signed-off-by: Tristan Lelong tristan.lel...@blunderer.org --- common/main.c |5 ++ include/net.h |6 ++- net/Makefile |2

[U-Boot] [PATCH 0/3] Net Boot Controller

2010-11-17 Thread tristan . lelong
From: Tristan Lelong tristan.lel...@blunderer.org This patch allow to interrupt u-boot autoboot from remote PC and auto-reconfigure a netconsole redirected to this remote PC Tristan Lelong (3): Add support for Net Boot Controller (NBC) packet Add sendnbc tool to broadcast NBC magic packet

[U-Boot] [PATCH 2/3] Add sendnbc tool to broadcast NBC magic packet

2010-11-17 Thread tristan . lelong
From: Tristan Lelong tristan.lel...@blunderer.org This tool send NBC packet filled with data provided on command line It can be used in combination with netconsole by calling: BOARD_IP=192.168.0.2 ./sendnbc -i $BOARD_IP ./netconsole $BOARD_IP Signed-off-by: Tristan Lelong tristan.lel

Re: [U-Boot] [PATCH 0/3] Net Boot Controller

2010-11-17 Thread tristan
Hi Stefano, 2010/11/17 Stefano Babic sba...@denx.de On 11/16/2010 07:04 PM, tristan.lel...@blunderer.org wrote: From: Tristan Lelong tristan.lel...@blunderer.org This patch allow to interrupt u-boot autoboot from remote PC and auto-reconfigure a netconsole redirected to this remote PC

Re: [U-Boot] [PATCH 0/3] Net Boot Controller

2010-11-17 Thread tristan
Hi Michael, 2010/11/17 Michael Zaidman michael.zaid...@gmail.com Hi Tristan, On Tue, Nov 16, 2010 at 8:04 PM, tristan.lel...@blunderer.org wrote: From: Tristan Lelong tristan.lel...@blunderer.org This patch allow to interrupt u-boot autoboot from remote PC and auto-reconfigure

Re: [U-Boot] [PATCH 2/3] Add sendnbc tool to broadcast NBC magic packet

2010-11-17 Thread tristan
Hi Mike, Thank you for all your correction hints. I used the Lindent script to check for mistakes, but obviously, this was not enought, and I will correct all these with care. Regards 2010/11/17 Mike Frysinger vap...@gentoo.org On Tuesday, November 16, 2010 13:04:32

Re: [U-Boot] [PATCH 0/3] Net Boot Controller

2010-11-17 Thread tristan
Thank you for your time. As I understand, there are some ways to achieve almost the same feature using only the preboot command. I'll take a closer look at it. Regards 2010/11/17 Wolfgang Denk w...@denx.de Dear tristan, In message aanlkti=01bccmnbenot6ojcstvfazpxx+azpqkxk3