Re: [U-Boot] Setting ipaddr via setenv() - H_INTERACTIVE vs H_PROGRAMMATIC

2016-03-01 Thread Stefan Roese
Hi Joe, On 02.03.2016 07:46, Joe Hershberger wrote: On Wed, Mar 2, 2016 at 12:21 AM, Stefan Roese wrote: Hi Joe, (adding Tom to Cc as this seems to be a fundamental issue) On 01.03.2016 20:40, Joe Hershberger wrote: On Tue, Mar 1, 2016 at 4:35 AM, Stefan Roese wrote: Hi Joe, I'm currentl

Re: [U-Boot] Setting ipaddr via setenv() - H_INTERACTIVE vs H_PROGRAMMATIC

2016-03-01 Thread Joe Hershberger
Hi Stefan, On Wed, Mar 2, 2016 at 12:21 AM, Stefan Roese wrote: > Hi Joe, > > (adding Tom to Cc as this seems to be a fundamental issue) > > On 01.03.2016 20:40, Joe Hershberger wrote: >> On Tue, Mar 1, 2016 at 4:35 AM, Stefan Roese wrote: >>> Hi Joe, >>> >>> I'm currently stumbling over a probl

Re: [U-Boot] Setting ipaddr via setenv() - H_INTERACTIVE vs H_PROGRAMMATIC

2016-03-01 Thread Stefan Roese
Hi Joe, (adding Tom to Cc as this seems to be a fundamental issue) On 01.03.2016 20:40, Joe Hershberger wrote: > On Tue, Mar 1, 2016 at 4:35 AM, Stefan Roese wrote: >> Hi Joe, >> >> I'm currently stumbling over a problem in some board specific code >> (not in mainline yet), that sets the "ipaddr

Re: [U-Boot] Olimex-A20-EVB ethernet stops working with latest U-boot, works with tag v2016.01

2016-03-01 Thread Ing. Damiano Bolla
Good morning Peng, I cannot attache an image, moderators will stop it forever I did revert the commit, see attached image showing git repository status Unfortunately the result is still negative, see the following log U-Boot 2016.03-rc2-00117-gde889c0 (Feb 25 2016 - 08:12:50 +0100) Allwinner T

Re: [U-Boot] [PATCH] serial: Move carriage return before line feed for some serial drivers

2016-03-01 Thread Huan Wang
Hi, Jim, > -Original Message- > From: James Chargin [mailto:jimccr...@gmail.com] > Sent: Thursday, February 25, 2016 10:19 PM > To: u-boot@lists.denx.de; b18...@freescale.com > Subject: Re: [U-Boot] [PATCH] serial: Move carriage return before line > feed for some serial drivers > > This i

Re: [U-Boot] placement for new clock drivers

2016-03-01 Thread Simon Glass
Hi Dinh, On 1 March 2016 at 15:16, Dinh Nguyen wrote: > > Hi Simon, > > On 02/29/2016 08:03 PM, Simon Glass wrote: > >> > >> I think going forward, it would make sense to place the driver to be of > >> UCLASS_CLK and would go into drivers/clk/, instead of under > >> arch/arm/mach-socfpga director

Re: [U-Boot] Newbie SPL question for socfpga_sockit

2016-03-01 Thread Phil Reid
On 2/03/2016 10:40 AM, George Broz wrote: Sorry for the delayed response - got called away, but am back to this now. I patched socfpga_common.h and re-built the project. I picked up spl/u-boot-spl-dtb.sfp and u-boot-dtb.img and transferred them to the SD card with: dd if=u-boot-spl-dtb.sfp of=/

Re: [U-Boot] [PATCH 1/3] dm: serial-uclass: Move a carriage return before a line feed

2016-03-01 Thread Bin Meng
On Wed, Mar 2, 2016 at 11:00 AM, Alison Wang wrote: > In general, a carriage return needs to execute before a line feed. The > patch is to change serial DM driver serial-uclass.c based on this rule. > > Signed-off-by: Alison Wang > --- > drivers/serial/serial-uclass.c | 5 +++-- > 1 file changed

Re: [U-Boot] [PATCH 3/3] dm: serial: Remove duplicated carriage return character

2016-03-01 Thread Bin Meng
On Wed, Mar 2, 2016 at 11:00 AM, Alison Wang wrote: > As the handling for carriage return and line feed is done in the common > DM driver serial-uclass.c, such handling in some serial DM drivers is > duplicated and need to be removed. > > Signed-off-by: Alison Wang > --- > drivers/serial/serial_

Re: [U-Boot] [PATCH 2/3] serial: Move carriage return before line feed for some serial drivers

2016-03-01 Thread Bin Meng
On Wed, Mar 2, 2016 at 11:00 AM, Alison Wang wrote: > In general, a carriage return needs to execute before a line feed. > The patch is to change some serial drivers based on this rule, such > as serial_mxc.c, serial_pxa.c, serial_s3c24x0.c and usbtty.c. > > Signed-off-by: Alison Wang > --- > dr

[U-Boot] [PATCH 3/3] dm: serial: Remove duplicated carriage return character

2016-03-01 Thread Alison Wang
As the handling for carriage return and line feed is done in the common DM driver serial-uclass.c, such handling in some serial DM drivers is duplicated and need to be removed. Signed-off-by: Alison Wang --- drivers/serial/serial_arc.c| 3 --- drivers/serial/serial_lpuart.c | 6 -- 2 fil

[U-Boot] [PATCH 2/3] serial: Move carriage return before line feed for some serial drivers

2016-03-01 Thread Alison Wang
In general, a carriage return needs to execute before a line feed. The patch is to change some serial drivers based on this rule, such as serial_mxc.c, serial_pxa.c, serial_s3c24x0.c and usbtty.c. Signed-off-by: Alison Wang --- drivers/serial/serial_mxc.c | 8 drivers/serial/serial_

[U-Boot] [PATCH 0/3] serial: Fix the error handling for carriage return and line feed

2016-03-01 Thread Alison Wang
This serial is to fix the error handling for carriage return and line feed. Alison Wang (3): dm: serial-uclass: Move a carriage return before a line feed serial: Move carriage return before line feed for some serial drive

[U-Boot] [PATCH 1/3] dm: serial-uclass: Move a carriage return before a line feed

2016-03-01 Thread Alison Wang
In general, a carriage return needs to execute before a line feed. The patch is to change serial DM driver serial-uclass.c based on this rule. Signed-off-by: Alison Wang --- drivers/serial/serial-uclass.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/serial/ser

Re: [U-Boot] [PATCH] serial: Move carriage return before line feed for some serial drivers

2016-03-01 Thread Huan Wang
Hi, Bin, > On Thu, Feb 25, 2016 at 11:02 AM, Huan Wang wrote: > > Hi, Bin, > > > >> On Thu, Feb 25, 2016 at 10:41 AM, Alison Wang > >> wrote: > >> > In general, a carriage return needs to execute before a line feed. > >> > The patch is to change some serial drivers based on this rule, such > >>

Re: [U-Boot] Newbie SPL question for socfpga_sockit

2016-03-01 Thread George Broz
On 17 February 2016 at 18:45, Phil Reid wrote: > G'day George > > > On 18/02/2016 5:54 AM, George Broz wrote: >> >> Hello, >> >> Sorry for the newbie question... >> >> I have an Altera/Terasic board (socfpga_sockit) that has issues >> recognizing >> USB storage devices (roughly 60% good / 40% bad)

Re: [U-Boot] [PATCH v2 00/25] exynos: video: Convert exynos LCD driver to use driver model

2016-03-01 Thread Minkyu Kang
Hi, On 29/02/16 16:18, Jaehoon Chung wrote: > Hi, > > On 02/29/2016 01:23 PM, Simon Glass wrote: >> Hi, >> >> On 23 February 2016 at 05:04, Minkyu Kang wrote: >>> Dear Simon Glass, >>> >>> On 23/02/16 15:42, Simon Glass wrote: Hi Minkyu, On 21 February 2016 at 21:08, Simon Glass

Re: [U-Boot] [PATCH V4] OMAP3: Various: Future-proof serial platdata

2016-03-01 Thread Alexander Graf
On 02.03.16 01:05, Adam Ford wrote: > I can only test OMAP3, and I tried to state that in the patch. I grepped > for the platdata structure and not that manu boards aooeared. I didn't > want to just fix the board that affects me, but I didn't want to go > beyond the platform for fear of breaking

Re: [U-Boot] [PATCH V4] OMAP3: Various: Future-proof serial platdata

2016-03-01 Thread Adam Ford
I can only test OMAP3, and I tried to state that in the patch. I grepped for the platdata structure and not that manu boards aooeared. I didn't want to just fix the board that affects me, but I didn't want to go beyond the platform for fear of breaking something and not being able to test it. On Ma

Re: [U-Boot] [PATCH V4] OMAP3: Various: Future-proof serial platdata

2016-03-01 Thread Alexander Graf
On 02.03.16 00:23, Adam Ford wrote: > A few boards still use ns16550_platdata structures, but assume the structure > is going to be in a specific order. By explicitly naming each entry, > this should also help 'future-proof' in the event the structure changes. > > Tested on the Logic PD Torpedo

[U-Boot] [PATCH V4] OMAP3: Various: Future-proof serial platdata

2016-03-01 Thread Adam Ford
A few boards still use ns16550_platdata structures, but assume the structure is going to be in a specific order. By explicitly naming each entry, this should also help 'future-proof' in the event the structure changes. Tested on the Logic PD Torpedo + Wireless. I only changed a handful of devices

[U-Boot] [PATCH V3] OMAP3: Various: Future-proof serial platdata A few boards still use ns16550_platdata structures, but assume the structure is going to be in a specific order. By explicitly naming e

2016-03-01 Thread Adam Ford
Tested on the Logic PD Torpedo + Wireless. I only changed a handful of devices that used the same syntax as the Logic board. Appologies if I missed one or stepped on toes. Thanks to Derald Woods and Alexander Graf. Signed-off-by: Adam Ford V3: Remove reg_offset out in all the structs. It was

Re: [U-Boot] [PATCH v3 3/3] board:freescale:usb: Add device-tree fixup support for xhci controller

2016-03-01 Thread Marek Vasut
On 03/01/2016 08:03 AM, Sriram Dash wrote: > Enables usb device-tree fixup code to incorporate xhci controller > > Signed-off-by: Ramneek Mehresh > Signed-off-by: Sriram Dash Changelog ? > --- > board/freescale/common/Makefile | 1 + > board/freescale/common/usb.c| 30 +--

Re: [U-Boot] [PATCH v3 1/3] board:freescale:common: Move device-tree fixup framework to common file

2016-03-01 Thread Marek Vasut
On 03/01/2016 08:03 AM, Sriram Dash wrote: > Move usb device-tree fixup framework from ehci-fsl.c to common place so > that it can be used by other drivers as well (xhci-fsl.c). > > Signed-off-by: Ramneek Mehresh > Signed-off-by: Sriram Dash > --- > board/freescale/common/Makefile

Re: [U-Boot] [PATCH v3 2/3] board:freescale:usb: Remove code duplication for fdt_usb_get_node_type

2016-03-01 Thread Marek Vasut
On 03/01/2016 08:03 AM, Sriram Dash wrote: > Call fdt_usb_get_node_type() from fdt_fixup_usb_mode_phy_type() to > avoid code duplication. > > Signed-off-by: Ramneek Mehresh > Signed-off-by: Sriram Dash > --- > board/freescale/common/usb.c | 72 > ++-- >

Re: [U-Boot] placement for new clock drivers

2016-03-01 Thread Dinh Nguyen
Hi Simon, On 02/29/2016 08:03 PM, Simon Glass wrote: >> >> I think going forward, it would make sense to place the driver to be of >> UCLASS_CLK and would go into drivers/clk/, instead of under >> arch/arm/mach-socfpga directory, Am I correct in assuming that? > > Yes. > Do you see any benefits

Re: [U-Boot] Setting ipaddr via setenv() - H_INTERACTIVE vs H_PROGRAMMATIC

2016-03-01 Thread Joe Hershberger
Hi Stefan, On Tue, Mar 1, 2016 at 4:35 AM, Stefan Roese wrote: > Hi Joe, > > I'm currently stumbling over a problem in some board specific code > (not in mainline yet), that sets the "ipaddr" env variable via > setenv(). But as I now noticed, the callback on_ipaddr() doesn't > set net_ip to this

Re: [U-Boot] [PATCH v2 01/32] dm: Drop the block_dev_desc_t typedef

2016-03-01 Thread Stephen Warren
On 02/29/2016 03:25 PM, Simon Glass wrote: Use 'struct' instead of a typdef. Also since 'struct block_dev_desc' is long and causes 80-column violations, rename it to struct blk_desc. The series, Tested-by: Stephen Warren ___ U-Boot mailing list U-Boo

Re: [U-Boot] [PATCH 2/2] boards: ls2080: Disable fdt copying by default

2016-03-01 Thread york sun
On 03/01/2016 09:35 AM, Scott Wood wrote: > On Tue, 2016-03-01 at 16:48 +, york sun wrote: >> On 03/01/2016 08:01 AM, Scott Wood wrote: >>> On Tue, 2016-03-01 at 06:03 +, Bhupesh Sharma wrote: > From: york sun > Sent: Tuesday, March 01, 2016 11:30 AM > > On 02/29/2016 09:20

Re: [U-Boot] Problem with attaching UBI partition

2016-03-01 Thread Jagan Teki
Hi Denis, On 1 March 2016 at 18:34, Bakhvalov, Denis (Nokia - PL/Wroclaw) wrote: > Hi Marek, > >>Try enabling CONFIG_SPI_FLASH_BAR in your board config ;-) > > That solved my issue. > Thank you very much. > I removed workaround from the code. Sorry, I couldn't understand the issue nor what you s

Re: [U-Boot] [PATCH 2/2] boards: ls2080: Disable fdt copying by default

2016-03-01 Thread Scott Wood
On Tue, 2016-03-01 at 16:48 +, york sun wrote: > On 03/01/2016 08:01 AM, Scott Wood wrote: > > On Tue, 2016-03-01 at 06:03 +, Bhupesh Sharma wrote: > > > > From: york sun > > > > Sent: Tuesday, March 01, 2016 11:30 AM > > > > > > > > On 02/29/2016 09:20 PM, Bhupesh Sharma wrote: > > > > >

Re: [U-Boot] [PATCHv2 2/2] Add support the Avionic Design Meerkat COM and Kein Baseboard

2016-03-01 Thread Stephen Warren
On 03/01/2016 01:03 AM, Julian Scheel wrote: Add support for platforms based on the Meerkat COM module. Includes support for the minimal reference platform called Kein Baseboard, which in fact is sufficient to run most existing Meerkat carriers. Signed-off-by: Julian Scheel --- Changes in v2:

Re: [U-Boot] [PATCH 2/2] boards: ls2080: Disable fdt copying by default

2016-03-01 Thread york sun
On 03/01/2016 08:01 AM, Scott Wood wrote: > On Tue, 2016-03-01 at 06:03 +, Bhupesh Sharma wrote: >>> From: york sun >>> Sent: Tuesday, March 01, 2016 11:30 AM >>> >>> On 02/29/2016 09:20 PM, Bhupesh Sharma wrote: > From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Scott >

Re: [U-Boot] [PATCH v4 0/5] dm: omap3_spi: Convert to driver model

2016-03-01 Thread Jagan Teki
On 1 March 2016 at 21:32, Christophe Henri RICARD wrote: > Hi Jagan, > > Yes i did build and test those patches on top of the current u-boot master > branch. OK, thanks. one thing you missed is, "author change" - anyway I will update them while applying. Tom - Shall I send the PR for these 3 or

Re: [U-Boot] [PATCH v4 0/5] dm: omap3_spi: Convert to driver model

2016-03-01 Thread Christophe Henri RICARD
Hi Jagan, Yes i did build and test those patches on top of the current u-boot master branch. Best Regards Christophe -Original Message- From: Jagan Teki [mailto:jt...@openedev.com] Sent: mardi 1 mars 2016 16:51 To: Christophe Henri RICARD Cc: Tom Rini; u-boot@lists.denx.de Subject: Re:

Re: [U-Boot] [PATCH 2/2] boards: ls2080: Disable fdt copying by default

2016-03-01 Thread Scott Wood
On Tue, 2016-03-01 at 06:03 +, Bhupesh Sharma wrote: > > From: york sun > > Sent: Tuesday, March 01, 2016 11:30 AM > > > > On 02/29/2016 09:20 PM, Bhupesh Sharma wrote: > > > > From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Scott > > > > Wood > > > > Sent: Tuesday, March 01, 2

Re: [U-Boot] [PATCH 2/2] boards: ls2080: Disable fdt copying by default

2016-03-01 Thread Scott Wood
On Tue, 2016-03-01 at 03:55 +, Prabhakar Kushwaha wrote: > > -Original Message- > > From: Scott Wood [mailto:o...@buserror.net] > > Sent: Tuesday, March 01, 2016 7:13 AM > > To: york sun ; U-Boot Mailing List > b...@lists.denx.de> > > Cc: Prabhakar Kushwaha > > Subject: Re: [U-Boot] [

Re: [U-Boot] [PATCH v4 0/5] dm: omap3_spi: Convert to driver model

2016-03-01 Thread Jagan Teki
On 1 March 2016 at 19:50, Christophe Henri RICARD wrote: > Hi Jagan, > > Just saw your mail but patches were already sent. > > It was easier for me to manage anyway. OK. > > Please let me know if it is really an issue. Did you test? thanks! -- Jagan. __

Re: [U-Boot] Problem with attaching UBI partition

2016-03-01 Thread Stefan Roese
Hi! (adding Marek to Cc again) On 01.03.2016 14:38, Chin Liang See wrote: On Tue, 2016-03-01 at 08:23 +0100, Stefan Roese wrote: On 01.03.2016 07:53, Chin Liang See wrote: On Mon, 2016-02-29 at 23:55 +0100, Marek Vasut wrote: On 02/24/2016 09:59 AM, Bakhvalov, Denis (Nokia - PL/Wroclaw) wrot

Re: [U-Boot] Problem with attaching UBI partition

2016-03-01 Thread Marek Vasut
On 03/01/2016 02:53 PM, Bakhvalov, Denis (Nokia - PL/Wroclaw) wrote: > Hi Jagan, > >> Sorry, I couldn't understand the issue nor what you solved? because, >> socfpga_arria5_defconfig by default have CONFIG_SPI_FLASH_BAR enabled >> and even sf probe looks no warning for enabling the same. If you >>

Re: [U-Boot] [PATCH v4 0/5] dm: omap3_spi: Convert to driver model

2016-03-01 Thread Jagan Teki
Hi Christophe, On 1 March 2016 at 18:14, Christophe Henri RICARD wrote: > Hi Jagan, > > Apologies again for the delay... :(. > > I got able to test your serie with few fixes on a Beagleboard xm. > > I going to send an updated series for your review and our topic discussion. Out of 5 patches on t

Re: [U-Boot] [PATCH] usb: gadget: composite: Correct recovery path for register

2016-03-01 Thread Marek Vasut
On 03/01/2016 01:42 PM, Lukasz Majewski wrote: > Hi Marek, > >> On 02/29/2016 11:11 AM, Lukasz Majewski wrote: >>> Hi Marek, >>> On 02/26/2016 08:43 PM, Sam Protsenko wrote: > On Fri, Feb 19, 2016 at 9:34 PM, Sam Protsenko > wrote: >> + Praneeth Bajjuri >> + Tom Rini >> +

Re: [U-Boot] [PATCH] arm: socfpga: Enabling U-Boot environment support in QSPI

2016-03-01 Thread Marek Vasut
On 03/01/2016 07:38 AM, Chin Liang See wrote: > On Fri, 2016-02-26 at 19:08 +0100, Marek Vasut wrote: >> On 02/26/2016 02:06 PM, Chin Liang See wrote: >>> On Wed, 2016-02-24 at 18:44 +0100, Marek Vasut wrote: On 02/24/2016 09:50 AM, Chin Liang See wrote: > Enabling the support of storing U

Re: [U-Boot] Problem with attaching UBI partition

2016-03-01 Thread Marek Vasut
On 03/01/2016 02:04 PM, Bakhvalov, Denis (Nokia - PL/Wroclaw) wrote: > Hi Marek, > >> Try enabling CONFIG_SPI_FLASH_BAR in your board config ;-) > > That solved my issue. > Thank you very much. > I removed workaround from the code. > > Best regards, > Denis Bakhvalov > Yay :-) -- Best regards

Re: [U-Boot] [PATCH v4 0/5] dm: omap3_spi: Convert to driver model

2016-03-01 Thread Christophe Henri RICARD
Hi Jagan, Just saw your mail but patches were already sent. It was easier for me to manage anyway. Please let me know if it is really an issue. Best Regards Christophe From: Jagan Teki [mailto:jt...@openedev.com] Sent: mardi 1 mars 2016 15:00 To: Christophe Henri RICARD Cc: Tom Rini; u-boot@li

[U-Boot] [PATCH v5 3/3] spi: omap3: Convert to driver model

2016-03-01 Thread Christophe Ricard
After this conversion the driver will able to support both dm and non-dm and code is more extensible like we can remove the non-dm part simply without touching anycode if all the boards which are using this driver become dm driven. Cc: Tom Rini Reviewed-by: Simon Glass Acked-by: Christophe Ricar

[U-Boot] [PATCH v5 2/3] spi: omap3: Make local functions as static

2016-03-01 Thread Christophe Ricard
Attach static on local defined functions. Cc: Tom Rini Cc: Simon Glass Cc: Christophe Ricard Signed-off-by: Jagan Teki Signed-off-by: Christophe Ricard --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: None drivers/spi/omap3_spi.c | 12 ++-- 1 file chan

[U-Boot] [PATCH v5 0/3] omap3_spi update after testing Jagan Teki v4 series.

2016-03-01 Thread Christophe Ricard
Hi Jagan, Simon, Please find an updated series based on Jagan Teki work. I have updated this series after validation on a Beagleboard xM and a TPM ST33ZP24 spi slave. Overall, priv->wordlen was not set and i got several code style issue when using patman. Best Regards Christophe Changes in v5

[U-Boot] [PATCH v5 1/3] spi: omap3: Move headers code inside the driver

2016-03-01 Thread Christophe Ricard
Header file have macro's and register definition and some unneeded function proto types which becomes tunned further in future patches and entire driver code resides in one file for more readability. Cc: Tom Rini Cc: Simon Glass Cc: Christophe Ricard Signed-off-by: Jagan Teki Signed-off-by: Ch

Re: [U-Boot] [PATCH v4 0/5] dm: omap3_spi: Convert to driver model

2016-03-01 Thread Jagan Teki
On Mar 1, 2016 7:07 PM, "Christophe Henri RICARD" < christophe-h.ric...@st.com> wrote: > > Hi Jagan, > > Yes. To be honest I am not sure where it comes from... > I will send back the latest 3 patches within this day. Better create a patch on top 3. > > Best Regards > Christophe > > -Original M

Re: [U-Boot] Problem with attaching UBI partition

2016-03-01 Thread Bakhvalov, Denis (Nokia - PL/Wroclaw)
Hi Jagan, > Sorry, I couldn't understand the issue nor what you solved? because, > socfpga_arria5_defconfig by default have CONFIG_SPI_FLASH_BAR enabled > and even sf probe looks no warning for enabling the same. If you > haven't enable CONFIG_SPI_FLASH_BAR then spi_flash core will give > warning

Re: [U-Boot] Problem with attaching UBI partition

2016-03-01 Thread Chin Liang See
On Tue, 2016-03-01 at 08:23 +0100, Stefan Roese wrote: > On 01.03.2016 07:53, Chin Liang See wrote: > > On Mon, 2016-02-29 at 23:55 +0100, Marek Vasut wrote: > > > On 02/24/2016 09:59 AM, Bakhvalov, Denis (Nokia - PL/Wroclaw) > > > wrote: > > > > Hello Heiko, > > > > > > > > > Which U-Boot version

Re: [U-Boot] [PATCH v4 0/5] dm: omap3_spi: Convert to driver model

2016-03-01 Thread Christophe Henri RICARD
Hi Jagan, Yes. To be honest I am not sure where it comes from... I will send back the latest 3 patches within this day. Best Regards Christophe -Original Message- From: Jagan Teki [mailto:jt...@openedev.com] Sent: mardi 1 mars 2016 14:35 To: Christophe Henri RICARD Cc: u-boot@lists.denx

Re: [U-Boot] U-Boot as first bootloader on Exynos platforms

2016-03-01 Thread Simon Glass
Hi Paul, On 1 March 2016 at 01:10, Paul Kocialkowski wrote: > Hi, > Le lundi 29 février 2016 à 19:03 -0700, Simon Glass a écrit : >> On 29 February 2016 at 03:15, Lukasz Majewski wrote: >> > > I was told some time ago that a publicly-available version of the >> > > Samsung Chromebook 2 (supposed

Re: [U-Boot] Problem with attaching UBI partition

2016-03-01 Thread Bakhvalov, Denis (Nokia - PL/Wroclaw)
Hi Marek, >Try enabling CONFIG_SPI_FLASH_BAR in your board config ;-) That solved my issue. Thank you very much. I removed workaround from the code. Best regards, Denis Bakhvalov ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman

Re: [U-Boot] [PATCH v4 0/5] dm: omap3_spi: Convert to driver model

2016-03-01 Thread Christophe Henri RICARD
Hi Jagan, Apologies again for the delay... :(. I got able to test your serie with few fixes on a Beagleboard xm. I going to send an updated series for your review and our topic discussion. Best Regards Christophe -Original Message- From: Jagan Teki [mailto:jt...@openedev.com] Sent: lu

Re: [U-Boot] [PATCH] usb: gadget: composite: Correct recovery path for register

2016-03-01 Thread Lukasz Majewski
Hi Marek, > On 02/29/2016 11:11 AM, Lukasz Majewski wrote: > > Hi Marek, > > > >> On 02/26/2016 08:43 PM, Sam Protsenko wrote: > >>> On Fri, Feb 19, 2016 at 9:34 PM, Sam Protsenko > >>> wrote: > + Praneeth Bajjuri > + Tom Rini > + Rob Herring > > On Tue, Feb 16, 2016 at

[U-Boot] [PATCH] api: Export API structure address as an environment variable

2016-03-01 Thread Stanislav Galabov
This patch makes the U-Boot api export its structure address as an environment variable, so it can be used to directly hint FreeBSD's loader of api's location. The relevant FreeBSD loader change is currently under review at: https://reviews.freebsd.org/D5492 Signed-off-by: Stanislav Galabov ---

[U-Boot] Setting ipaddr via setenv() - H_INTERACTIVE vs H_PROGRAMMATIC

2016-03-01 Thread Stefan Roese
Hi Joe, I'm currently stumbling over a problem in some board specific code (not in mainline yet), that sets the "ipaddr" env variable via setenv(). But as I now noticed, the callback on_ipaddr() doesn't set net_ip to this new value. As flags has H_PROGRAMMATIC set and op_ipaddr() skips setting th

[U-Boot] [PATCH] ls102xa: dm: serial: Disable CONFIG_DM_STDIO for LCD/HDMI display

2016-03-01 Thread Alison Wang
When LCD/HDMI is connected to LS1021ATWR or LS1021AQDS, the console output should be shown on the monitor. If CONFIG_DM_SERIAL and CONFIG_DM_STDIO are both enabled, serial device is registered and added to the stdio list in serial-uclass.c. Then, vga device will be registered and added to the stdi

[U-Boot] [PATCH] omap3: Use raw SPL by default for mmc1

2016-03-01 Thread Alexander Graf
Now that we fall back to the FS code path when we don't find u-boot at the raw sector offset, there is no good reason to not default to raw boot. With this patch, I can successfully boot u-boot from a raw sector offset on beagle-xm. Signed-off-by: Alexander Graf --- I think this patch is safe a

Re: [U-Boot] U-Boot as first bootloader on Exynos platforms

2016-03-01 Thread Paul Kocialkowski
Hi,  Le lundi 29 février 2016 à 19:03 -0700, Simon Glass a écrit : > On 29 February 2016 at 03:15, Lukasz Majewski wrote: > > > I was told some time ago that a publicly-available version of the > > > Samsung Chromebook 2 (supposedly, the one with an Exynos 5800 SoC) > > > allows running unsigned c

[U-Boot] [PATCHv2 2/2] Add support the Avionic Design Meerkat COM and Kein Baseboard

2016-03-01 Thread Julian Scheel
Add support for platforms based on the Meerkat COM module. Includes support for the minimal reference platform called Kein Baseboard, which in fact is sufficient to run most existing Meerkat carriers. Signed-off-by: Julian Scheel --- Changes in v2: - Rename config options to TARGET_KEIN_BASEBOAR

[U-Boot] [PATCHv2 1/2] power: as3722: Allow using on any i2c bus with any address

2016-03-01 Thread Julian Scheel
From: Alban Bedel The init simply hardcoded the i2c bus and address to those used on jetson. Extend the init function to take the bus number and device address as parameter. As only jetson is using this code for now just fix this single use of the function. Signed-off-by: Alban Bedel Reviewed-b