[U-Boot] tftp using ENC424J600

2016-09-14 Thread Edward Wingate
Can u-boot currently do tftp using a Microchip ENC424J600? This is an ethernet over SPI module. Thanks for any information. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [RFC PATCH] kconfig: introduce kconfig for UBI

2016-09-14 Thread Heiko Schocher
move the UBI config options into Kconfig. Signed-off-by: Heiko Schocher --- Tested with tbot: http://lists.denx.de/pipermail/u-boot/2016-June/258119.html result: Boards : 1196 compile err : 36 not checked : 0 U-Boot good : 1157 bad 3 SPL good: 427 bad 0 ('compile err :', [...] ('bad

Re: [U-Boot] [PATCH 1/5] power: regulator: Add ctrl_reg and volt_reg fields for pmic

2016-09-14 Thread Keerthy
Hi Marczak, On Wednesday 14 September 2016 01:33 PM, Przemyslaw Marczak wrote: Hello Keerthy, On 09/14/2016 06:28 AM, Keerthy wrote: The ctrl reg contains bit fields to enable and disable regulators, and volt_reg has the bit fields to configure the voltage values. The registers are frequently

[U-Boot] [PATCH] test: add NFS download test

2016-09-14 Thread Guillaume GARDET
Add a NFS download test, based on TFTP test. Tested on i.MX6 SabreLite board. Signed-off-by: Guillaume GARDET Cc: Tom Rini Cc: Joe Hershberger Cc: Stephen Warren Cc: Simon Glass --- test/py/tests/test_net.py | 49 +++ 1 file changed, 49 insertion

[U-Boot] recommended place to add some custom settings to u-boot environment?

2016-09-14 Thread Robert P. J. Day
on my target board, there is some non-linux environment info in "var=val" form that i want to drag into the current environment whenever u-boot starts up. my plan is just to import that content into a (new) hash table, then tweak it a bit before further adding it to "env_htab". the logistics see

Re: [U-Boot] recommended place to add some custom settings to u-boot environment?

2016-09-14 Thread Wolfgang Denk
Dear Robert, In message you wrote: > > on my target board, there is some non-linux environment info in > "var=val" form that i want to drag into the current environment > whenever u-boot starts up. my plan is just to import that content into > a (new) hash table, then tweak it a bit before fu

Re: [U-Boot] recommended place to add some custom settings to u-boot environment?

2016-09-14 Thread Robert P. J. Day
On Wed, 14 Sep 2016, Wolfgang Denk wrote: > Dear Robert, > > In message you > wrote: > > > > on my target board, there is some non-linux environment info in > > "var=val" form that i want to drag into the current environment > > whenever u-boot starts up. my plan is just to import that content

Re: [U-Boot] [PATCH 2/2] armv8/fsl-lsch3: consolidate the clock system initialization

2016-09-14 Thread Z.Q. Hou
Hi Prabhakar, > -Original Message- > From: Prabhakar Kushwaha > Sent: 2016年9月14日 16:18 > To: Z.Q. Hou ; u-boot@lists.denx.de; > albert.u.b...@aribaud.net; york sun ; Mingkai Hu > ; Calvin Johnson > Subject: RE: [PATCH 2/2] armv8/fsl-lsch3: consolidate the clock system > initialization >

Re: [U-Boot] [bug report] sunxi: booting from eMMC

2016-09-14 Thread Hans de Goede
Hi, On 13-09-16 13:50, Maxime Ripard wrote: Hi, On Mon, Sep 12, 2016 at 04:47:49PM +0200, Hans de Goede wrote: On 12-09-16 15:56, Maxime Ripard wrote: Hi, On Mon, Sep 12, 2016 at 01:53:24PM +0200, Ciprian Manea wrote: I'm using a SinA33 dev board (Allwinner a33 SoC) and at the moment I'm tr

Re: [U-Boot] [Patch v6 5/9] armv8: fsl-layerscape: spl: remove BSS clearing and board_init_r

2016-09-14 Thread Q.Y. Gong
Hi York, I'm still using an older version of toolchain(4.9-2014.07). But I just tried to use the gcc-linaro-4.9-2016.02. It couldn't boot up even without my patchset(hang in SPL). Regards, Qianyu From: york sun Sent: Wednesday, September 14, 2016 4:45:37 A

Re: [U-Boot] [PATCH v2] rtl8169: fix cache misalignment message on transmit.

2016-09-14 Thread Nicolas Chauvet
2016-09-14 3:29 GMT+02:00 : > The call to flush cache on the transmit buffer was misplaced (for very > short packets) and asked to flush less than a cacheline. > > Move the flush cache call to after a short packet has been padded > to minimum length (so the padding is flushed too), and round the s

[U-Boot] eb_cpu5282.c board returns failure(?) from misc_init_r()

2016-09-14 Thread Robert P. J. Day
i was just perusing the underlying code for invoking initcalls (mostly because i forgot to return the correct value, and bricked my target board), and i see this in lib/initcall.c: ret = (*init_fnc_ptr)(); if (ret) { printf("initcall sequence %p failed at call %p (err=%d)\n",

[U-Boot] [GIT PULL] Xilinx changes

2016-09-14 Thread Michal Simek
Hi Tom, here are patches I have collected for improving Xilinx support. I have also patches regarding moving IDENT_STRING to Kconfig but they need to be rework because simple adding it to Kconfig won't work. All boards need to be converted in this patch. Also I have pending patches around moving

Re: [U-Boot] [PATCH 1/5] power: regulator: Add ctrl_reg and volt_reg fields for pmic

2016-09-14 Thread Przemyslaw Marczak
Hello Keerthy, On 09/14/2016 06:28 AM, Keerthy wrote: The ctrl reg contains bit fields to enable and disable regulators, and volt_reg has the bit fields to configure the voltage values. The registers are frequently accessed hence make them part of dm_regulator_uclass_platdata structure. Signed-

[U-Boot] really weird return codes in mcf5373l.c, misc_init_r()

2016-09-14 Thread Robert P. J. Day
ok, now i'm just being entertained by the truly strange code i'm running across. here's a snippet from board/astro/mcf5373l/mcf5373l.c; what strikes you as odd about it? int misc_init_r(void) { int retval = 0; puts("Configure Xilinx FPGA..."); retval = astro5373l_xi

Re: [U-Boot] [PATCH] efi_loader: Fix crash on 32-bit systems

2016-09-14 Thread Robin Randhawa
Hi Alex. On Wed 14 Sep 08:34:47 2016, Alexander Graf wrote: [...] > Very nice catch! Thanks! [...] > Can you please double-check that this is the only place the type > mismatch happened? So I skimmed through the boot and run-time service API implementations and couldn't spot another ins

Re: [U-Boot] [PATCH 2/2] armv8/fsl-lsch3: consolidate the clock system initialization

2016-09-14 Thread Z.Q. Hou
Hi Prabhakar, Thanks for your feedback! > -Original Message- > From: Prabhakar Kushwaha > Sent: 2016年9月13日 18:04 > To: Z.Q. Hou ; u-boot@lists.denx.de; > albert.u.b...@aribaud.net; york sun ; Vincent Hu > ; Calvin Johnson > Subject: RE: [PATCH 2/2] armv8/fsl-lsch3: consolidate the clock

Re: [U-Boot] [RFC] board/liteboard: Add support for liteSOM and liteBoard

2016-09-14 Thread Marcin Niestroj
On 13.09.2016 20:23, Fabio Estevam wrote: Hi Marcin, On Wed, Aug 31, 2016 at 7:54 AM, Marcin Niestroj wrote: liteSOM is a System On Module (http://grinn-global.com/litesom/). It can't exists on its own, but will be used as part of other boards. Hardware specification: * NXP i.MX6UL processor

Re: [U-Boot] recommended place to add some custom settings to u-boot environment?

2016-09-14 Thread Wolfgang Denk
Dear Robert, In message you wrote: > > > Why not simply putting this as text (or wrapped with an uImage > > header) into some storage (or even a file) and then use "env import" > > to load it? > > the problem is that that additional "environment" info is on the > target board because of a le

Re: [U-Boot] recommended place to add some custom settings to u-boot environment?

2016-09-14 Thread Robert P. J. Day
On Wed, 14 Sep 2016, Wolfgang Denk wrote: > Dear Robert, > > In message you > wrote: > > > > > Why not simply putting this as text (or wrapped with an uImage > > > header) into some storage (or even a file) and then use "env import" > > > to load it? > > > > the problem is that that additional

[U-Boot] does it make sense to define misc_init_r() not conditional on CONFIG_MISC_INIT_R?

2016-09-14 Thread Robert P. J. Day
another oddity i noted in my travels ... in common/board_r.c, this: #ifdef CONFIG_MISC_INIT_R misc_init_r,/* miscellaneous platform-dependent init */ #endif suggests that any *definition* of a board's misc_init_r() routine should be similarly conditional, but there are

Re: [U-Boot] [PATCH v2 0/5] Enhance fs tests

2016-09-14 Thread Simon Glass
Hi Stefan, On 13 September 2016 at 17:01, Stefan Brüns wrote: > The first 3 patches do some cleanups for the current test, especially TC11 > had some issues (strange match for expected output, use of unitialized > variable). > > The last two patches add test cases for handling ".". Ext4 used to c

Re: [U-Boot] recommended place to add some custom settings to u-boot environment?

2016-09-14 Thread Wolfgang Denk
Dear Robert, In message you wrote: > > it needs to be done programatically, and i *believe* himport_r() can > handle it, as the string is space-separated and null-terminated, so > i'm about to test that. It will not realy work. "space-separated" is not good enough as a space character is a l

Re: [U-Boot] recommended place to add some custom settings to u-boot environment?

2016-09-14 Thread Robert P. J. Day
On Wed, 14 Sep 2016, Wolfgang Denk wrote: > Dear Robert, > > In message you wrote: > > > > it needs to be done programatically, and i *believe* himport_r() can > > handle it, as the string is space-separated and null-terminated, so > > i'm about to test that. > > It will not realy work. "space

Re: [U-Boot] [PATCH v2 0/5] Enhance fs tests

2016-09-14 Thread Tom Rini
On Wed, Sep 14, 2016 at 07:32:47AM -0600, Simon Glass wrote: > Hi Stefan, > > On 13 September 2016 at 17:01, Stefan Brüns > wrote: > > The first 3 patches do some cleanups for the current test, especially TC11 > > had some issues (strange match for expected output, use of unitialized > > variable

Re: [U-Boot] [ANN] U-Boot v2016.09 is released

2016-09-14 Thread Tom Rini
On Tue, Sep 13, 2016 at 07:49:55AM +0200, Heiko Schocher wrote: > Hello Tom, > > Am 12.09.2016 um 18:21 schrieb Tom Rini: > >Hey all, > > > >I've released v2016.09 and it's now live on git and FTP and ACD (along > >with PGP sig file). > > > >To repeat some of the highlights from the rc releases: >

Re: [U-Boot] [PATCH 00/12] ARM: uniphier: UniPhier SoC updates for v2016.11-rc1

2016-09-14 Thread Masahiro Yamada
2016-09-14 1:05 GMT+09:00 Masahiro Yamada : > I want to get this series in during this merge window. > > - DM migration > * remove legacy xHCI driver > * convert MMC driver to CONFIG_BLOCK > - Pinctrl driver improvements > * New pin-group > * Macro cleanup > - Misc fix

[U-Boot] pull request: u-boot-uniphier/master

2016-09-14 Thread Masahiro Yamada
Hi Tom, Here is the fist pull request from me for the v2016.11 development cycle. The following UniPhier updates are included: - DM migration * remove legacy xHCI driver * convert MMC driver to CONFIG_BLOCK - Pinctrl driver improvements * New pin-group * Macro cleanup

Re: [U-Boot] [PATCH v2 0/5] Enhance fs tests

2016-09-14 Thread Simon Glass
Hi Tom, On 14 September 2016 at 07:38, Tom Rini wrote: > On Wed, Sep 14, 2016 at 07:32:47AM -0600, Simon Glass wrote: >> Hi Stefan, >> >> On 13 September 2016 at 17:01, Stefan Brüns >> wrote: >> > The first 3 patches do some cleanups for the current test, especially TC11 >> > had some issues (st

Re: [U-Boot] recommended place to add some custom settings to u-boot environment?

2016-09-14 Thread Wolfgang Denk
Dear Robert, In message you wrote: > > > It will not realy work. "space-separated" is not good enough as a > > space character is a legal part of the value of an environment > > variable. You would need to tweak the import code. > > but himport_r() explicitly takes a separator character, an

[U-Boot] interaction between CONFIG_CMD_SAVEENV and CONFIG_BOOTCOMMAND

2016-09-14 Thread Nicolas le bayon
Hi Let me firstly explain my need. We use U-boot as a primary bootloader, with a bootcmd which loads and executes a script on one external device (SD ou USB). This script will continue the boot process (launch a kernel for example). The corresponding bootcmd defined in CONFIG_BOOTCOMMAND does this

Re: [U-Boot] [PATCH 2/2] armv8/fsl-lsch3: consolidate the clock system initialization

2016-09-14 Thread Prabhakar Kushwaha
> -Original Message- > From: Z.Q. Hou > Sent: Wednesday, September 14, 2016 8:16 AM > To: Prabhakar Kushwaha ; u- > b...@lists.denx.de; albert.u.b...@aribaud.net; york sun ; > Vincent Hu ; Calvin Johnson > Subject: RE: [PATCH 2/2] armv8/fsl-lsch3: consolidate the clock system > initializa

Re: [U-Boot] interaction between CONFIG_CMD_SAVEENV and CONFIG_BOOTCOMMAND

2016-09-14 Thread Wolfgang Denk
Dear Nicolas, In message you wrote: > > Of course, the user will be able to modify the content of the script, to > fit with their needs. But on our side, provider of this primary bootloader, > we want to be sure that the environment of this u-boot won't be changed by > the user, so that we want

Re: [U-Boot] recommended place to add some custom settings to u-boot environment?

2016-09-14 Thread Robert P. J. Day
On Wed, 14 Sep 2016, Wolfgang Denk wrote: > Dear Robert, > > In message you wrote: > > > > > It will not realy work. "space-separated" is not good enough as a > > > space character is a legal part of the value of an environment > > > variable. You would need to tweak the import code. > > > >

Re: [U-Boot] [PATCH v1 1/5] tegra: usb gadget: fix ci udc operation if not hostpc capable

2016-09-14 Thread Marcel Ziswiler
On Mon, 2016-09-12 at 12:13 -0600, Stephen Warren wrote: > On 09/09/2016 10:10 AM, Marcel Ziswiler wrote: > > > > The Tegra 2 aka T20 is not host PC capable. Therefore move the > > define > > CONFIG_CI_UDC_HAS_HOSTPC from the generic tegra-common-usb-gadget.h > > header file into resp. SoC type sp

Re: [U-Boot] [PATCH v6] spi: pl022_spi: Add support for ARM PL022 spi controller

2016-09-14 Thread Armando Visconti
Ciao Michael, On 09/08/2016 04:21 PM, Michael Brandl wrote: Dear U-Boot (SPI) Developers, this patch seems to be my only chance to get spi working without/before Linux. I wrote and used this code for u-boot for a asic specified by one of our customers. The patch was generic enough to be pushe

Re: [U-Boot] [PATCH v1 5/5] colibri_t20: enable dfu also for nand

2016-09-14 Thread Marcel Ziswiler
On Mon, 2016-09-12 at 12:24 -0600, Stephen Warren wrote: > On 09/09/2016 10:10 AM, Marcel Ziswiler wrote: > > > > Enable USB gadget DFU functionality for NAND as well. > > > > diff --git a/include/configs/colibri_t20.h > > b/include/configs/colibri_t20.h > > > > +/* USB DFU */ > > +#define CONFI

Re: [U-Boot] [arm] Where to put files for armv8 ThunderX

2016-09-14 Thread Tim Harvey
On Mon, Jun 20, 2016 at 3:15 PM, Aaron Williams wrote: > I have just been handed the task of cleaning up our U-Boot port to our > ThunderX armv8 chip and am wondering where I should put the files specific > to our chip. > > The people who previously worked on the chip created a subdirectory under

Re: [U-Boot] interaction between CONFIG_CMD_SAVEENV and CONFIG_BOOTCOMMAND

2016-09-14 Thread Nicolas le bayon
Would that really be enough? Please keep in mind that "env save" (or "saveenv") is only responsible for storing the current environment into persistant storage. It does not modify the environment at all. To modify the environment, you can use quite a number of commands, including "env set", "env

Re: [U-Boot] [PATCH v1 3/5] colibri_t20: fix display configuration

2016-09-14 Thread Stephen Warren
On 09/14/2016 09:20 AM, Marcel Ziswiler wrote: On Mon, 2016-09-12 at 12:18 -0600, Stephen Warren wrote: On 09/09/2016 10:10 AM, Marcel Ziswiler wrote: Without this patch the following error will be shown: stdio_add_devices: Video device failed (ret=-22) As commit ec5507707a1d1e84056a6c864338

Re: [U-Boot] [PATCH v1 5/5] colibri_t20: enable dfu also for nand

2016-09-14 Thread Stephen Warren
On 09/14/2016 09:41 AM, Marcel Ziswiler wrote: On Mon, 2016-09-12 at 12:24 -0600, Stephen Warren wrote: On 09/09/2016 10:10 AM, Marcel Ziswiler wrote: Enable USB gadget DFU functionality for NAND as well. diff --git a/include/configs/colibri_t20.h b/include/configs/colibri_t20.h +/* USB DFU

Re: [U-Boot] [PATCH] test: add NFS download test

2016-09-14 Thread Stephen Warren
On 09/14/2016 02:29 AM, Guillaume GARDET wrote: Add a NFS download test, based on TFTP test. Tested on i.MX6 SabreLite board. Signed-off-by: Guillaume GARDET Cc: Tom Rini Nit: There shouldn't be a blank line between your s-o-b and any other tags. Reviewed-by: Stephen Warren __

Re: [U-Boot] [PATCH v6] spi: pl022_spi: Add support for ARM PL022 spi controller

2016-09-14 Thread Jagan Teki
On Thu, Sep 8, 2016 at 7:51 PM, Michael Brandl wrote: > Dear U-Boot (SPI) Developers, > > this patch seems to be my only chance to get spi working without/before > Linux. > > I'm a student from Augsburg (Germany) experimenting with the Hikey Board > from 96boards. > The hi6220 processor from HiSil

Re: [U-Boot] interaction between CONFIG_CMD_SAVEENV and CONFIG_BOOTCOMMAND

2016-09-14 Thread Wolfgang Denk
Dear Nicolas, In message you wrote: > > > Would that really be enough? Please keep in mind that "env save" (or > > "saveenv") is only responsible for storing the current environment > > into persistant storage. It does not modify the environment at all. > > To modify the environment, you can

Re: [U-Boot] [PATCH v2 0/2] Detect and reject new ad-hoc CONFIG options

2016-09-14 Thread Tom Rini
On Tue, Sep 13, 2016 at 12:38:45PM -0600, Simon Glass wrote: > Hi Tom, > > On 13 September 2016 at 07:49, Tom Rini wrote: > > On Tue, Sep 13, 2016 at 07:35:42AM -0600, Simon Glass wrote: > >> Hi Tom, > >> > >> On 13 September 2016 at 07:16, Tom Rini wrote: > >> > On Mon, Sep 12, 2016 at 11:20:00

Re: [U-Boot] [PATCH v3 0/2] Detect and reject new ad-hoc CONFIG options

2016-09-14 Thread Tom Rini
On Tue, Sep 13, 2016 at 09:46:18PM -0600, Simon Glass wrote: > Hi Tom, > > On 13 September 2016 at 21:44, Simon Glass wrote: > > Despite the availability of Kconfig, the number of ad-hoc CONFIG options in > > U-Boot is still at over 8000. > > > > In February 2015 (commit 741e58e0) there were arou

Re: [U-Boot] [Patch v6 5/9] armv8: fsl-layerscape: spl: remove BSS clearing and board_init_r

2016-09-14 Thread york sun
Qianyu, On 09/14/2016 12:32 AM, Q.Y. Gong wrote: > > Hi York, > > > I'm still using an older version of toolchain(4.9-2014.07). > > > But I just tried to use the gcc-linaro-4.9-2016.02. > > It couldn't boot up even without my patchset(hang in SPL). I think you may just reproduced the issue I have

[U-Boot] [PATCH] doc: typo fix addess -> address

2016-09-14 Thread Jelle van der Waa
Signed-off-by: Jelle van der Waa --- doc/mkimage.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/mkimage.1 b/doc/mkimage.1 index ffa7d60..e883f07 100644 --- a/doc/mkimage.1 +++ b/doc/mkimage.1 @@ -70,7 +70,7 @@ Set compression type. Pass \-h as the compression to see th

Re: [U-Boot] [PATCH v1 0/5] various fixes mainly for colibri_t20

2016-09-14 Thread Marcel Ziswiler
On Mon, 2016-09-12 at 12:13 -0600, Stephen Warren wrote: > On 09/09/2016 10:10 AM, Marcel Ziswiler wrote: > > > > This series addresses various issues as seen on Colibri T20. Please > > note that for successful Ethernet operation not only on Colibri T20 > > but also on Colibri T30 the following pa

Re: [U-Boot] [PATCH] colibri_t30: fix usb ethernet functionality

2016-09-14 Thread Marcel Ziswiler
On Sat, 2016-09-10 at 18:51 +0200, Marek Vasut wrote: > On 09/10/2016 04:20 AM, Marcel Ziswiler wrote: > > > > Since commit aa7a648747d8c704a9a81c9e493d386930724e9d > > ("net: Stop including NFS overhead in defragment max") the > > following > > has been reproducibly observed while trying to trans

Re: [U-Boot] [ANN] U-Boot v2016.09 is released

2016-09-14 Thread Daniel Schwierzeck
Hi Tom, Am 12.09.2016 um 18:21 schrieb Tom Rini: > > Another thing I'd like to call out, and ask for a little help with too > is automated testing. The framework in test/py/test.py can be used on > real hardware and Stephen Warren has been doing a good job having things > run on Tegra boards. Y

Re: [U-Boot] [PATCH] colibri_t30: fix usb ethernet functionality

2016-09-14 Thread Marek Vasut
On 09/14/2016 04:36 PM, Marcel Ziswiler wrote: > On Sat, 2016-09-10 at 18:51 +0200, Marek Vasut wrote: >> On 09/10/2016 04:20 AM, Marcel Ziswiler wrote: >>> >>> Since commit aa7a648747d8c704a9a81c9e493d386930724e9d >>> ("net: Stop including NFS overhead in defragment max") the >>> following >>> has

Re: [U-Boot] [PATCH v3] drivers: usb: xhci-fsl: Implement Erratum A-010151 for FSL USB3 controller

2016-09-14 Thread Marek Vasut
On 09/14/2016 07:15 AM, Sriram Dash wrote: > Currently the controller by default enables the Receive Detect feature in P3 > mode in USB 3.0 PHY. However, USB 3.0 PHY does not reliably support receive > detection in P3 mode. > Enabling the USB3 controller to configure USB in P2 mode whenever the Rec

Re: [U-Boot] [PATCH v2] drivers: usb: fsl-dt-fixup: Fix the dt for multiple USB nodes in single traversal of device tree

2016-09-14 Thread Marek Vasut
On 09/14/2016 07:22 AM, Sriram Dash wrote: >> From: Sriram Dash [mailto:sriram.d...@nxp.com] >> > > Hello Marek, > > Any comments? Waiting for York to review this. It's a bulky patch V2 without changelog, shall I review the whole thing again ? >> For FSL USB node fixup, the dt is walked multi

Re: [U-Boot] [PATCH v1 3/5] colibri_t20: fix display configuration

2016-09-14 Thread Marcel Ziswiler
On Wed, 2016-09-14 at 17:19 +, Stephen Warren wrote: > On 09/14/2016 09:20 AM, Marcel Ziswiler wrote: > > > > On Mon, 2016-09-12 at 12:18 -0600, Stephen Warren wrote: > > > > > > On 09/09/2016 10:10 AM, Marcel Ziswiler wrote: > > > > > > > > > > > > Without this patch the following error wi

Re: [U-Boot] [PATCH v1 4/5] colibri_t20: fix usb operation and controller order

2016-09-14 Thread Marcel Ziswiler
On Mon, 2016-09-12 at 12:20 -0600, Stephen Warren wrote: > On 09/09/2016 10:10 AM, Marcel Ziswiler wrote: > > > > Without this patch the following error will be shown: > > > > Colibri T20 # usb start > > starting USB... > > No controllers found > This change seems fine, but I'm concerned that the

[U-Boot] [PATCH v2 2/4] simple panel: fix spelling of debug message

2016-09-14 Thread Marcel Ziswiler
Fix spelling of debug message from cnnot to cannot. Signed-off-by: Marcel Ziswiler Acked-by: Anatolij Gustschin --- Changes in v2: - Add Anatolij's ack. drivers/video/simple_panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/simple_panel.c b/drivers/vid

[U-Boot] [PATCH v2 0/4] various fixes mainly for colibri_t20

2016-09-14 Thread Marcel Ziswiler
This series addresses various issues as seen on Colibri T20. Please note that for successful Ethernet operation not only on Colibri T20 but also on Colibri T30 the following patch will still be required already waiting in Marek's usb tree: [PATCH v2] net: asix: Fix ASIX 88772B with driver model

[U-Boot] [PATCH v2 4/4] colibri_t20: fix usb operation and controller order

2016-09-14 Thread Marcel Ziswiler
Without this patch the following error will be shown: Colibri T20 # usb start starting USB... No controllers found This patch fixes USB operation and also the controller order as the CI UDC driver may only be instantiated on the first aka OTG port. Signed-off-by: Marcel Ziswiler --- Changes i

[U-Boot] [PATCH v2 1/4] tegra: usb gadget: fix ci udc operation if not hostpc capable

2016-09-14 Thread Marcel Ziswiler
The Tegra 2 aka T20 is not host PC capable. Therefore gate the define CONFIG_CI_UDC_HAS_HOSTPC in tegra-common-usb-gadget.h in case of CONFIG_TEGRA20. Signed-off-by: Marcel Ziswiler --- Changes in v2: - As suggested by Stephen gating the CONFIG_CI_UDC_HAS_HOSTPC define with CONFIG_TEGRA20 rat

[U-Boot] [PATCH v2 3/4] colibri_t20: fix display configuration

2016-09-14 Thread Marcel Ziswiler
Without this patch the following error will be shown: stdio_add_devices: Video device failed (ret=-22) As commit ec5507707a1d1e84056a6c864338f95f6118d3ca (video: tegra: Move to using simple-panel and pwm-backlight) states the Colibri T20 needs updating too which this patch finally attempts doing.

[U-Boot] [PATCH] ARM: vf610: use strcpy for soc environment variable

2016-09-14 Thread Marcel Ziswiler
From: Stefan Agner To create the soc environment variable we concatenate two strings on the stack. So far, strcat has been used for the first string as well as for the second string. Since the variable on the stack is not initialized, the first strcat may not start using the first entry in the ch

Re: [U-Boot] [PATCH v2] drivers: usb: fsl-dt-fixup: Fix the dt for multiple USB nodes in single traversal of device tree

2016-09-14 Thread york sun
On 09/14/2016 02:35 PM, Marek Vasut wrote: > On 09/14/2016 07:22 AM, Sriram Dash wrote: >>> From: Sriram Dash [mailto:sriram.d...@nxp.com] >>> >> >> Hello Marek, >> >> Any comments? > > Waiting for York to review this. > > It's a bulky patch V2 without changelog, shall I review the whole thing > ag

[U-Boot] [PATCH v2] apalis_t30: colibri_imx7: colibri_t30: fix ethernet functionality

2016-09-14 Thread Marcel Ziswiler
Since commit aa7a648747d8c704a9a81c9e493d386930724e9d ("net: Stop including NFS overhead in defragment max") the following has been reproducibly observed while trying to transfer data over TFTP: Load address: 0x80408000 Loading: EHCI timed out on TD - token=0x8008d80 T EHCI timed out on TD - token

Re: [U-Boot] [PATCH v1 3/5] colibri_t20: fix display configuration

2016-09-14 Thread Marcel Ziswiler
On Mon, 2016-09-12 at 12:18 -0600, Stephen Warren wrote: > On 09/09/2016 10:10 AM, Marcel Ziswiler wrote: > > > > Without this patch the following error will be shown: > > > > stdio_add_devices: Video device failed (ret=-22) > > > > As commit ec5507707a1d1e84056a6c864338f95f6118d3ca (video: tegr

Re: [U-Boot] [PATCH v2 1/4] tegra: usb gadget: fix ci udc operation if not hostpc capable

2016-09-14 Thread Stephen Warren
On 09/14/2016 04:14 PM, Marcel Ziswiler wrote: The Tegra 2 aka T20 is not host PC capable. Therefore gate the define CONFIG_CI_UDC_HAS_HOSTPC in tegra-common-usb-gadget.h in case of CONFIG_TEGRA20. Signed-off-by: Marcel Ziswiler Acked-by: Stephen Warren __

Re: [U-Boot] [PATCH v2 3/4] colibri_t20: fix display configuration

2016-09-14 Thread Stephen Warren
On 09/14/2016 04:14 PM, Marcel Ziswiler wrote: Without this patch the following error will be shown: stdio_add_devices: Video device failed (ret=-22) As commit ec5507707a1d1e84056a6c864338f95f6118d3ca (video: tegra: Move to using simple-panel and pwm-backlight) states the Colibri T20 needs upda

Re: [U-Boot] [PATCH v2 4/4] colibri_t20: fix usb operation and controller order

2016-09-14 Thread Stephen Warren
On 09/14/2016 04:14 PM, Marcel Ziswiler wrote: Without this patch the following error will be shown: Colibri T20 # usb start starting USB... No controllers found This patch fixes USB operation and also the controller order as the CI UDC driver may only be instantiated on the first aka OTG port.

Re: [U-Boot] [PATCH v1 5/5] colibri_t20: enable dfu also for nand

2016-09-14 Thread Marcel Ziswiler
On Wed, 2016-09-14 at 17:23 +, Stephen Warren wrote: > On 09/14/2016 09:41 AM, Marcel Ziswiler wrote: > > > > On Mon, 2016-09-12 at 12:24 -0600, Stephen Warren wrote: > > > > > > On 09/09/2016 10:10 AM, Marcel Ziswiler wrote: > > > > > > > > > > > > Enable USB gadget DFU functionality for N

[U-Boot] [PATCH] arm: imx6: configure NoC on i.MX6DQP

2016-09-14 Thread Filip Brozovic
The i.MX6DP and i.MX6QP incorporate NoC interconnect logic which needs to be configured in order to use external DDR memory. This patch enables the SPL to configure the necessary registers in accordance with the NXP engineering bulletin EB828. Signed-off-by: Filip Brozovic --- arch/arm/cpu/armv

[U-Boot] [PATCH] imx: iomux-v3: fix pad setup on i.MX6DQP when CONFIG_MX6QDL is defined

2016-09-14 Thread Filip Brozovic
The CPU detection macro is_mx6dq returns 0 on an i.MX6DQP, so we need to check for it explicitly in order to correctly initialize the pads when CONFIG_MX6QDL is defined. Signed-off-by: Filip Brozovic --- arch/arm/imx-common/iomux-v3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -

Re: [U-Boot] [PATCH 1/5] power: regulator: Add ctrl_reg and volt_reg fields for pmic

2016-09-14 Thread Przemyslaw Marczak
Hello Keerthy, On 09/14/2016 10:24 AM, Keerthy wrote: Hi Marczak, On Wednesday 14 September 2016 01:33 PM, Przemyslaw Marczak wrote: Hello Keerthy, On 09/14/2016 06:28 AM, Keerthy wrote: The ctrl reg contains bit fields to enable and disable regulators, and volt_reg has the bit fields to con

[U-Boot] [PATCH 0/2] Add TOPIC Miami boards

2016-09-14 Thread Mike Looijmans
These patches add support for the Miami range of boards from TOPIC. The boards are based on Xilinx Zynq SoCs, these two patches are for the 7-series, the Ultrascale MPSOC boards are to be added later. Please note that the "ps7_init_gpl" files are largely generated by a tool and as a result of that

Re: [U-Boot] [PATCH v2] drivers: usb: fsl-dt-fixup: Fix the dt for multiple USB nodes in single traversal of device tree

2016-09-14 Thread Sriram Dash
>From: york sun >On 09/14/2016 02:35 PM, Marek Vasut wrote: >> On 09/14/2016 07:22 AM, Sriram Dash wrote: From: Sriram Dash [mailto:sriram.d...@nxp.com] >>> >>> Hello Marek, >>> >>> Any comments? >> >> Waiting for York to review this. >> >> It's a bulky patch V2 without changelog, shall I

Re: [U-Boot] [PATCH v3] drivers: usb: xhci-fsl: Implement Erratum A-010151 for FSL USB3 controller

2016-09-14 Thread Sriram Dash
>From: Marek Vasut [mailto:ma...@denx.de] >On 09/14/2016 07:15 AM, Sriram Dash wrote: >> Currently the controller by default enables the Receive Detect feature >> in P3 mode in USB 3.0 PHY. However, USB 3.0 PHY does not reliably >> support receive detection in P3 mode. >> Enabling the USB3 controll

Re: [U-Boot] [PATCH 0/2] Add TOPIC Miami boards

2016-09-14 Thread Michal Simek
Hi Mike, On 15.9.2016 08:02, Mike Looijmans wrote: > These patches add support for the Miami range of boards from TOPIC. > The boards are based on Xilinx Zynq SoCs, these two patches are for > the 7-series, the Ultrascale MPSOC boards are to be added later. > > Please note that the "ps7_init_gpl"