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
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
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
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
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
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
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
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
>
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
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
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
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",
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
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-
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
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
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
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
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
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
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
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
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
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
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
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:
>
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
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
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
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
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
> -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
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
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.
> >
> >
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
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
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
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
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
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
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
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
__
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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.
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
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
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
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
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
__
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
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.
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
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
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 -
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
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
>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
>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
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"
76 matches
Mail list logo