Re: [U-Boot] [PATCH] patman: fix series-notes handling for buildman

2016-01-31 Thread Albert ARIBAUD
Hello Simon, On Thu, 19 Nov 2015 20:29:11 -0700, Simon Glass wrote: > Hi Albert, > > On 13 November 2015 at 19:35, Simon Glass wrote: > > On 9 November 2015 at 14:36, Albert ARIBAUD > > wrote: > >> Hello Simon, > >> > >> On

Re: [U-Boot] [PATCH v2 17/23] tegra: video: Convert tegra20 LCD driver to driver model

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:37:56 -0700 Simon Glass s...@chromium.org wrote: > Move this driver over to use driver model. This involves rearranging the > code somewhat. The effect is that everything is run from the probe() method. > > Boards which use this are fixed up, but only seaboard is tested. >

Re: [U-Boot] [PATCH 1/2] arm: imx6: Add DDR3 calibration code for MX6 Q/D/DL

2016-01-31 Thread Marek Vasut
On Monday, January 25, 2016 at 12:30:00 AM, Tom Rini wrote: > On Mon, Jan 25, 2016 at 12:00:05AM +0100, Marek Vasut wrote: > > On Sunday, January 24, 2016 at 11:21:51 PM, Tom Rini wrote: > > > On Sun, Jan 24, 2016 at 11:07:30PM +0100, Marek Vasut wrote: > > > > On Sunday, January 24, 2016 at

Re: [U-Boot] [PATCH v2 11/23] tegra: nyan-big: Move the LCD driver to driver model

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:37:50 -0700 Simon Glass s...@chromium.org wrote: > Adjust the driver to use driver model. The SOR becomes a bridge device. We > use the normal simple_panel driver to handle the display itself. We also > need to enable some options such as regulators, PWMs and DM_VIDEO

Re: [U-Boot] [PATCH v2 22/23] tegra: video: Move LCD driver to use the DM PWM driver

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:38:01 -0700 Simon Glass s...@chromium.org wrote: > Use the driver-model PWM driver in preference to the old code. > > Signed-off-by: Simon Glass > --- > > Changes in v2: None > > arch/arm/dts/tegra20-colibri.dts | 4 >

[U-Boot] [PATCH] OMAP3: omap3_logic: Enable Android Fastboot

2016-01-31 Thread Adam Ford
Android Fastboot requires USB. The TWL4030 PMIC on omap3_logic handles USB traffic. This patch sets up the USB gadget and Android Fastboot to match what is done in the omap3_beagle project. Signed-off-by: Adam Ford --- board/logicpd/omap3som/omap3logic.c | 37

Re: [U-Boot] [PATCH v2 15/23] tegra: video: Move the check for CONFIG_OF_CONTROL to Kconfig

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:37:54 -0700 Simon Glass s...@chromium.org wrote: > We can check this in Kconfig now. > > Signed-off-by: Simon Glass > --- > > Changes in v2: None > > drivers/video/Kconfig | 1 + > drivers/video/tegra.c | 4 > 2 files changed, 1 insertion(+), 4

Re: [U-Boot] [PATCH v2 14/23] tegra: video: Merge the display driver into one file

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:37:53 -0700 Simon Glass s...@chromium.org wrote: > At present we have code in arch/arm and code in drivers/video. Move it all > into drivers/video since it is a display driver and our current approach is > to put all driver code in drivers/. > > Make a few functions static

Re: [U-Boot] [PATCH v2 02/23] dm: video: Flush the cache after a puts()

2016-01-31 Thread Anatolij Gustschin
Hi Simon, On Sat, 30 Jan 2016 16:37:41 -0700 Simon Glass s...@chromium.org wrote: > This helps keep the display consistent. puts() is used when printing the > prompt, so is a useful way to make sure the current display contents is > visible. > > Signed-off-by: Simon Glass >

Re: [U-Boot] [PATCH v2 08/23] tegra: lcd: Merge tegra124-lcd.c into display.c

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:37:47 -0700 Simon Glass s...@chromium.org wrote: > There isn't a lot of benefit of have two separate files. With driver model > the code needs to be in the same driver, so it's better to have it in the > same file. > > Signed-off-by: Simon Glass > --- >

[U-Boot] Pull request: u-boot-arm/master

2016-01-31 Thread Albert ARIBAUD
Hello Tom, The following changes since commit 8cdae1dacde7dbe74d53a8ac1a05761a53c4f191: video: Correct 'tor' typo in comment (2016-01-30 10:58:47 +0100) are available in the git repository at: git://git.denx.de/u-boot-arm master for you to fetch changes up to

[U-Boot] [PATCH] OMAP3: omap3_logic: Remove YAFFS support.

2016-01-31 Thread Adam Ford
UBIFS is the preferred OS, and YAFFS isn't officially included in Linux. Removing this feature reduces the code size. Signed-off-by: Adam Ford --- include/configs/omap3_logic.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/configs/omap3_logic.h

Re: [U-Boot] Conversion of serial_pxa.c to driver model

2016-01-31 Thread Marek Vasut
On Sunday, January 31, 2016 at 05:16:37 PM, Simon Glass wrote: > Hi Marek, Hi, > Are you planning to convert this to driver model? No, I don't plan to convert it any soon. CCing some more interested parties. > I see that two boards still use it. That's only because you removed the rest

Re: [U-Boot] [PATCH v2 20/23] tegra: video: Move all fdt-decoding into a single function

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:37:59 -0700 Simon Glass s...@chromium.org wrote: > Join the two functions which decode the device tree and put them in the > ofdata_to_platdata() method. > > Signed-off-by: Simon Glass > --- > > Changes in v2: None > > drivers/video/tegra.c | 264 >

Re: [U-Boot] [PATCH v2 18/23] tegra: video: Remove the static variables

2016-01-31 Thread Fabio Estevam
On Sat, Jan 30, 2016 at 9:37 PM, Simon Glass wrote: > diff --git a/drivers/video/tegra.c b/drivers/video/tegra.c > index bb2601f..f49f95d 100644 > --- a/drivers/video/tegra.c > +++ b/drivers/video/tegra.c > @@ -2,7 +2,7 @@ > * Copyright (c) 2011 The Chromium OS Authors. >

[U-Boot] [PATCH] OMAP3: omap3_logic: Enable CONFIG_SMC911X_32_BIT

2016-01-31 Thread Adam Ford
The interface automatically converts one 32-bit word into two 16 words. The README said it is permissible to use this flag in that scenario. Signed-off-by: Adam Ford --- include/configs/omap3_logic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [U-Boot] [PATCH v2 19/23] tegra: video: Move LCD enums into the driver

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:37:58 -0700 Simon Glass s...@chromium.org wrote: > There is no need to have these in a separate file as they are not > referenced from anywhere else. > > Signed-off-by: Simon Glass > --- > > Changes in v2: None > >

[U-Boot] [PATCH] Revert "arm: Remove wireless_space board"

2016-01-31 Thread Albert ARIBAUD
Revert commit b352182a and complete generic board support. Signed-off-by: Albert ARIBAUD --- arch/arm/mach-kirkwood/Kconfig | 4 + board/LaCie/wireless_space/Kconfig | 12 ++ board/LaCie/wireless_space/MAINTAINERS | 6 +

Re: [U-Boot] [PATCH v2 12/23] tegra: video: Rename CONFIG_VIDEO_TEGRA to CONFIG_VIDEO_TEGRA20

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:37:51 -0700 Simon Glass s...@chromium.org wrote: > This option refers only to the tegra20 video driver, so name it as such > to avoid confusion with tegra124. > > Also move this option to Kconfig. > > Signed-off-by: Simon Glass > --- > > Changes in

Re: [U-Boot] [PATCH v2 18/23] tegra: video: Remove the static variables

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:37:57 -0700 Simon Glass s...@chromium.org wrote: > We can move the static variables into the driver-private data. > > Signed-off-by: Simon Glass > --- > > Changes in v2: None > > drivers/video/tegra.c | 31 +++ > 1 file

Re: [U-Boot] [PATCH 00/14] EFI payload / application support v2

2016-01-31 Thread Alexander Graf
On 01/31/2016 04:17 PM, Simon Glass wrote: Hi Alexander, On 14 January 2016 at 22:06, Alexander Graf wrote: This is my Christmas present for my openSUSE friends :). U-Boot is a great project for embedded devices. However, convincing everyone involved that only for "a few

Re: [U-Boot] [PATCH v2 16/23] tegra: video: Merge the two config structures together

2016-01-31 Thread Anatolij Gustschin
On Sat, 30 Jan 2016 16:37:55 -0700 Simon Glass s...@chromium.org wrote: > We have a structure for the display panel and another for the controller. > There is some overlap between them. Merge them to simplify the driver. > > Signed-off-by: Simon Glass > --- > > Changes in

Re: [U-Boot] [PATCH] fdt: introudce fdt_get_child_count

2016-01-31 Thread Peng Fan
Hi Simon, On Sun, Jan 31, 2016 at 08:37:45AM -0700, Simon Glass wrote: >Hi Peng, > >On 30 January 2016 at 23:38, Peng Fan wrote: >> Introudce fdt_get_child_count for get the number of subnodes of >> one parent node. >> >> Signed-off-by: Peng Fan >>

Re: [U-Boot] [PATCH] armv8/ls1043a: Implement workaround for erratum A009660

2016-01-31 Thread Mingkai Hu
> -Original Message- > From: york sun > Sent: Saturday, January 30, 2016 4:40 AM > To: Mingkai Hu; u-boot@lists.denx.de > Subject: Re: [PATCH] armv8/ls1043a: Implement workaround for erratum > A009660 > > On 01/25/2016 10:12 PM, Mingkai Hu wrote: > > > > > >> -Original Message-

Re: [U-Boot] 64-bit x86 U-Boot?

2016-01-31 Thread Albert ARIBAUD
Hello Simon, On Sun, 31 Jan 2016 19:20:31 -0700, Simon Glass wrote: > Hi Bin, > > At present U-Boot supports booting a 64-bit kernel directly. It can > also be loaded as a 64-bit payload from EFI. But it cannot be built as > a 64-bit boot loader. > > I took a bit of a look

Re: [U-Boot] [PATCH v4 2/4] QE: add QE support on ls1043ardb

2016-01-31 Thread Mingkai Hu
> -Original Message- > From: Zhao Qiang [mailto:qiang.z...@nxp.com] > Sent: Friday, January 29, 2016 12:28 PM > To: Mingkai Hu > Cc: tr...@konsulko.com; york sun; u-boot@lists.denx.de; Qiang Zhao > Subject: [PATCH v4 2/4] QE: add QE support on ls1043ardb > > Upload qe microcode on

[U-Boot] [PATCH v2] armv8/ls1043a: Implement workaround for erratum A009660

2016-01-31 Thread Mingkai Hu
From: Mingkai Hu Memory controller performance is not optimal with default internal target queue register value, write required value for optimal DDR performance. Signed-off-by: Mingkai Hu --- v2: - Add a check to make sure A009660 and A008514 is are

Re: [U-Boot] [PATCH v3 0/7] fdt: Replace u-boot-dtb.bin with u-boot.bin

2016-01-31 Thread Albert ARIBAUD
Hello Simon, Nitpicking: On Sun, 31 Jan 2016 18:10:48 -0700, Simon Glass wrote: > The original decision to use a separate u-boot-dtb.bin was aimed at allowing > any device tree file to be concatenated to the u-boot.bin image after the > build. However this no-longer seems so

Re: [U-Boot] [PATCH v4 4/4] qe: assgin pins to qe-hdlc

2016-01-31 Thread Mingkai Hu
> -Original Message- > From: Zhao Qiang [mailto:qiang.z...@nxp.com] > Sent: Friday, January 29, 2016 12:28 PM > To: Mingkai Hu > Cc: tr...@konsulko.com; york sun; u-boot@lists.denx.de; Qiang Zhao > Subject: [PATCH v4 4/4] qe: assgin pins to qe-hdlc > > qe-hdlc and usb multi-use the

Re: [U-Boot] [PATCH v4 3/4] ls1043rdb: move USB mux config to config_board_mux

2016-01-31 Thread Mingkai Hu
> -Original Message- > From: Zhao Qiang [mailto:qiang.z...@nxp.com] > Sent: Friday, January 29, 2016 12:28 PM > To: Mingkai Hu > Cc: tr...@konsulko.com; york sun; u-boot@lists.denx.de; Qiang Zhao > Subject: [PATCH v4 3/4] ls1043rdb: move USB mux config to > config_board_mux > > USB pins

[U-Boot] [PATCH 1/2] pinctrl: imx: Introduce pinctrl driver for i.MX6

2016-01-31 Thread Peng Fan
Introduce pinctrl for i.MX6 1. pinctrl-imx.c is for common usage. It's used by i.MX6/7. 2. Add PINCTRL_IMX PINCTRL_IMX6 Kconfig entry. 3. To the pinctrl_ops implementation, only set_state is implemented. To i.MX6/7, the pinctrl dts entry is as following: { pinctrl-names = "default";

[U-Boot] [PATCH 2/2] pinctrl: imx: Support i.MX7D

2016-01-31 Thread Peng Fan
Introudce i.MX7 pinctrl driver support. For now only i.MX7D supported. There are two iomux controllers in i.MX7D, iomuxc and iomuxc_lpsr. To iomuxc_lpsr, ZERO_OFFSET_VALID is set, means offset of mux_reg and conf_reg can begin at 0. Signed-off-by: Peng Fan Cc: Simon Glass

Re: [U-Boot] [PATCH] OMAP3: omap3_logic: Remove YAFFS support.

2016-01-31 Thread Albert ARIBAUD
Hello Adam, On Sun, 31 Jan 2016 17:17:24 -0600, Adam Ford wrote: > UBIFS is the preferred OS, and YAFFS isn't officially included in > Linux. Removing this feature reduces the code size. Typo: "preferred FS", not "preferred OS". Amicalement, -- Albert.

[U-Boot] [PATCH] armv8/ls1043aqds: fix DSPI/QSPI node in dts file

2016-01-31 Thread Gong Qianyu
Fix the lost dts info when merging patches. Fix DSPI node for 'commit e0579a5852b3 ("armv8/ls1043aqds: add DSPI support")' and QSPI node for 'commit 166ef1e90ce4 ("armv8/ls1043aqds: add QSPI support in SD boot")'. Signed-off-by: Gong Qianyu ---

[U-Boot] 64-bit x86 U-Boot?

2016-01-31 Thread Simon Glass
Hi Bin, At present U-Boot supports booting a 64-bit kernel directly. It can also be loaded as a 64-bit payload from EFI. But it cannot be built as a 64-bit boot loader. I took a bit of a look at this. It looks like we need to stay in 32-bit mode until the FSP is loaded. Also, to get to 64-bit

Re: [U-Boot] Conversion of serial_pxa.c to driver model

2016-01-31 Thread Simon Glass
Hi Marek, On 31 January 2016 at 14:26, Marek Vasut wrote: > On Sunday, January 31, 2016 at 05:16:37 PM, Simon Glass wrote: >> Hi Marek, > > Hi, > >> Are you planning to convert this to driver model? > > No, I don't plan to convert it any soon. CCing some more interested parties. >

[U-Boot] [PATCH v3 2/2] imx: mx6sxsabreauto: Add support for mx6sx SABREAUTO board

2016-01-31 Thread Ye Li
Initial version for mx6sx SABREAUTO board support with features: PMIC, QSPI, NAND flash, SD/MMC, USB, Ethernet, I2C, IO Expander. Signed-off-by: Ye Li --- Changes for v3: - None Changes for v2: - None arch/arm/cpu/armv7/mx6/Kconfig |6 +

[U-Boot] [PATCH v3 1/2] mx6: soc: Add ENET2 mac address support

2016-01-31 Thread Ye Li
The i.MX6SX and i.MX6UL has two ENET controllers, add support for reading MAC address from fuse for ENET2. Signed-off-by: Ye Li --- Changes for v3: - Modify dev_id check expression according to Fabio's comment. Changes for v2: - Add second MAC address to

[U-Boot] [PATCH v3 1/7] tegra: Clarify generation of -nodtb file with OF_CONTROL

2016-01-31 Thread Simon Glass
Fix the ALL-y logic in the Makefile so that is clear that we always want the -nodtb file. Signed-off-by: Simon Glass --- Changes in v3: - Fix build error when CONFIG_OF_EMBED is used - Drop unnecessary ifdef around Makefile rule Changes in v2: - Rewrite this commit based on

[U-Boot] [PATCH v3 0/7] fdt: Replace u-boot-dtb.bin with u-boot.bin

2016-01-31 Thread Simon Glass
At present u-boot.bin holds the plain U-Boot binary without the device tree. This is somewhat annoying since you need either u-boot.bin or u-boot-dtb.bin depending on whether device tree is used. This series adjusts the build such that u-boot.bin includes a device tree if enabled, and the plain

[U-Boot] [PATCH v3 4/7] tegra: Always build a boot image with the same filename

2016-01-31 Thread Simon Glass
Adjust the Makefile to build u-boot-tegra.bin which contains a device tree if OF_SEPARATE is enabled, and does not if not. This mirrors U-Boot's new approach of using u-boot.bin to handle both cases. Signed-off-by: Simon Glass --- Changes in v3: - Update commit message to say

[U-Boot] [PATCH v3 2/7] fdt: Build a U-Boot binary without device tree

2016-01-31 Thread Simon Glass
At present u-boot.bin holds the plain U-Boot binary without the device tree. This is somewhat annoying since you need either u-boot.bin or u-boot-dtb.bin depending on whether device tree is used. Adjust the build such that u-boot.bin includes a device tree (if enabled), and the plain binary is in

[U-Boot] [PATCH v3 3/7] fdt: Build an SPL binary without device tree

2016-01-31 Thread Simon Glass
At present u-boot-spl.bin holds the plain SPL binary without the device tree. This is somewhat annoying since you need either u-boot-spl.bin or u-boot-spl-dtb.bin depending on whether device tree is used. Adjust the build such that u-boot-spl.bin includes a device tree (if enabled), and the plain

Re: [U-Boot] [PATCH 00/14] EFI payload / application support v2

2016-01-31 Thread Simon Glass
Hi Alexander, On 31 January 2016 at 14:43, Alexander Graf wrote: > > > On 01/31/2016 04:17 PM, Simon Glass wrote: >> >> Hi Alexander, >> >> On 14 January 2016 at 22:06, Alexander Graf wrote: >>> >>> This is my Christmas present for my openSUSE friends :). >>> >>>

[U-Boot] [PATCH v3 7/7] Makefile: Drop unnecessary -dtb suffixes

2016-01-31 Thread Simon Glass
When OF_CONTROL is enabled, u-boot-dtb.* files are the same as u-boot.* files. So we can use the latter for simplicity. Signed-off-by: Simon Glass --- Changes in v3: None Changes in v2: - Tweak the tegra rule slightly Makefile | 15 +++ 1 file changed, 7

[U-Boot] [PATCH v3 6/7] Makefile: Make u-boot.img the same as u-boot-dtb.img

2016-01-31 Thread Simon Glass
Create u-boot.img even when OF_CONTROL is enabled, so that this file can be used in both cases. Signed-off-by: Simon Glass --- Changes in v3: - Rewrite the commit message for clarity Changes in v2: None Makefile | 13 +++-- 1 file changed, 3 insertions(+), 10

[U-Boot] [PATCH v3 5/7] socfpga: Simplify Makefile filenames

2016-01-31 Thread Simon Glass
We don't need the -dtb suffix anymore, so drop it. Signed-off-by: Simon Glass --- Changes in v3: None Changes in v2: - Fix the update_filename in MCV Makefile | 10 +- include/configs/socfpga_mcvevk.h | 2 +- scripts/Makefile.spl

Re: [U-Boot] [PATCH 00/14] EFI payload / application support v2

2016-01-31 Thread Simon Glass
Hi Alexander, On 31 January 2016 at 19:52, Simon Glass wrote: > Hi Alexander, > > On 31 January 2016 at 14:43, Alexander Graf wrote: >> >> >> On 01/31/2016 04:17 PM, Simon Glass wrote: >>> >>> Hi Alexander, >>> >>> On 14 January 2016 at 22:06, Alexander Graf

[U-Boot] [PATCH V2] fdt: introduce fdtdec_get_child_count

2016-01-31 Thread Peng Fan
Introduce fdtdec_get_child_count for get the number of subnodes of one parent node. Signed-off-by: Peng Fan Cc: Simon Glass --- V2: correct spell error. renamed to fdtdec_get_child_count, move code to lib/fdtdec.c and add prototype in

Re: [U-Boot] [PATCH] fdt: introudce fdt_get_child_count

2016-01-31 Thread Fabio Estevam
On Sun, Jan 31, 2016 at 4:38 AM, Peng Fan wrote: > Introudce fdt_get_child_count for get the number of subnodes of s/Introudce/Introduce Same error in Subject. ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] Include patchwork patch ID in commit message?

2016-01-31 Thread Albert ARIBAUD
Hello Masahiro, On Fri, 29 Jan 2016 18:57:28 +0900, Masahiro Yamada wrote: > 2016-01-29 14:14 GMT+09:00 Heiko Schocher : > > Hello Joe, > > > > > > Am 28.01.2016 um 16:15 schrieb Joe Hershberger: > >> > >> Hi Heiko, > >> > >> On Thu, Jan 28, 2016 at

Re: [U-Boot] [PATCH v2 1/7] tegra: Clarify generation of -nodtb file with OF_CONTROL

2016-01-31 Thread Masahiro Yamada
Hi Simon, 2016-01-29 12:24 GMT+09:00 Simon Glass : > Fix the ALL-y logic in the Makefile so that is clear that we always want > the -nodtb file. > > Signed-off-by: Simon Glass > --- This commit introduces a build error for the combination of

Re: [U-Boot] [PATCH v2 2/7] fdt: Build a U-Boot binary without device tree

2016-01-31 Thread Masahiro Yamada
Hi Simon, 2016-01-29 12:24 GMT+09:00 Simon Glass : > At present u-boot.bin holds the plain U-Boot binary without the device tree. > This is somewhat annoying since you need either u-boot.bin or u-boot-dtb.bin > depending on whether device tree is used. > > Adjust the build such

Re: [U-Boot] [PATCH v2 3/7] fdt: Build an SPL binary without device tree

2016-01-31 Thread Masahiro Yamada
Hi Simon, 2016-01-29 12:24 GMT+09:00 Simon Glass : > At present u-boot-spl.bin holds the plain SPL binary without the device > tree. This is somewhat annoying since you need either u-boot-spl.bin or > u-boot-spl-dtb.bin depending on whether device tree is used. > > Adjust the

[U-Boot] [PATCH 0/6] dm: serial: Remove serial drivers not yet converted to driver model

2016-01-31 Thread Simon Glass
The deadline was yesterday, so lets remove all the drivers that are not converted and don't appear to be used. There are still five that do seem to be in use but are not converted: arm_dcc.c mcfuart.c serial_bfin.c serial_pxa.c serial_s3c24x0.c I will send emails to the

[U-Boot] [PATCH 1/6] dm: freescale: Drop mxs_auart serial driver

2016-01-31 Thread Simon Glass
This does not appear to be used, and has not been converted to driver model by the deadline (doc/driver-model/serial-howto.txt). Signed-off-by: Simon Glass --- drivers/serial/Makefile| 1 - drivers/serial/mxs_auart.c | 151 -

[U-Boot] [PATCH 2/6] dm: opencores: Drop opencores_yanu serial driver

2016-01-31 Thread Simon Glass
This does not appear to be used, and has not been converted to driver model by the deadline (doc/driver-model/serial-howto.txt). Signed-off-by: Simon Glass --- drivers/serial/Makefile | 1 - drivers/serial/opencores_yanu.c | 242

[U-Boot] Conversion of serial_pxa.c to driver model

2016-01-31 Thread Simon Glass
Hi Marek, Are you planning to convert this to driver model? I see that two boards still use it. Regards, Simon ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2 4/7] tegra: Always build a boot image with the same filename

2016-01-31 Thread Masahiro Yamada
2016-01-29 12:24 GMT+09:00 Simon Glass : > Adjust the Makefile to build u-boot-tegra.bin which contains a device tree > if OF_CONTROL is enabled, and does not if not. This mirrors U-Boot's new > approach of using u-boot.bin to handle both cases. CONFIG_TEGRA_COMMON selects

[U-Boot] Converting serial_s3c24x0.c to driver model

2016-01-31 Thread Simon Glass
Hi David, I'm sorry if you have not heard about this before. I sent out an email to all maintainers some months ago. You are listed as the maintainer of a few boards which use the serial_s3c24x0.c serial driver. We are trying to convert all of these drivers to driver model. Please see

[U-Boot] Conversion of serial_bfin to driver model

2016-01-31 Thread Simon Glass
Hi Sonic, I'm sorry if you have not heard about this before. I sent out an email to all maintainers some months ago. You are listed as the maintainer of a few boards which use the serial_bfin.c serial driver. We are trying to convert all of these drivers to driver model. Please see

[U-Boot] Converting arm_dcc to driver model

2016-01-31 Thread Simon Glass
Hi Michal, I notice that the only user of this driver appears to be a board you maintain. Do you think you could convert this to driver model? Please see doc/driver-model/serial-howto.txt. I'm hoping you might have hardware to test with. Regards, Simon

[U-Boot] Converting mcfuart.c to driver model

2016-01-31 Thread Simon Glass
Hi TsiChung, I'm sorry if you have not heard about this before. I sent out an email to all maintainers some months ago. You are listed as the maintainer of a few boards which use the mcfuart.c serial driver. We are trying to convert all of these drivers to driver model. Please see

[U-Boot] [PATCH 5/6] dm: pxa: serial: Drop serial_sa1100 serial driver

2016-01-31 Thread Simon Glass
This does not appear to be used, and has not been converted to driver model by the deadline (doc/driver-model/serial-howto.txt). Signed-off-by: Simon Glass --- drivers/serial/Makefile| 1 - drivers/serial/serial_sa1100.c | 162

Re: [U-Boot] [PATCH v2 6/7] Makefile: Make u-boot.img the same as u-boot-dtb.img

2016-01-31 Thread Masahiro Yamada
Hi Simon, 2016-01-29 12:24 GMT+09:00 Simon Glass : > When OF_CONTROL is enabled, u-boot.img has no purpose since it does not > include the required device tree binary. Why? u-boot.img is created on u-boot.bin and, since 2/7, u-boot.bin includes DTB as needed. > The

[U-Boot] [PATCH 3/6] dm: freescale: serial: Drop serial_imx serial driver

2016-01-31 Thread Simon Glass
This does not appear to be used, and has not been converted to driver model by the deadline (doc/driver-model/serial-howto.txt). Signed-off-by: Simon Glass --- drivers/serial/Makefile | 1 - drivers/serial/serial_imx.c | 223

[U-Boot] [PATCH 4/6] dm: serial: Drop serial_max3100 serial driver

2016-01-31 Thread Simon Glass
This does not appear to be used, and has not been converted to driver model by the deadline (doc/driver-model/serial-howto.txt). Signed-off-by: Simon Glass --- drivers/serial/Makefile | 1 - drivers/serial/serial_max3100.c | 294

[U-Boot] [PATCH 6/6] dm: Update on current serial driver status

2016-01-31 Thread Simon Glass
Update the README to reflect the current status. Signed-off-by: Simon Glass --- doc/driver-model/serial-howto.txt | 14 -- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/doc/driver-model/serial-howto.txt b/doc/driver-model/serial-howto.txt index

Re: [U-Boot] [PATCH v2 0/7] fdt: Replace u-boot-dtb.bin with u-boot.bin

2016-01-31 Thread Masahiro Yamada
2016-01-29 12:24 GMT+09:00 Simon Glass : > At present u-boot.bin holds the plain U-Boot binary without the device tree. > This is somewhat annoying since you need either u-boot.bin or u-boot-dtb.bin > depending on whether device tree is used. > > This series adjusts the build

Re: [U-Boot] [PATCH v1 1/2] Revert "powerpc: mpc85xx: remove P2020DS board support"

2016-01-31 Thread Bin Meng
Hi York, On Sun, Jan 31, 2016 at 6:03 AM, York Sun wrote: > This reverts commit 168dcc6cef7a0e13bc52fc8fa8de2866cf4033dc. > Align with changes since P2020DS was removed, including adding > these macros to defconfig > > CONFIG_SYS_NS16550 > CONFIG_CMD_NET > CONFIG_NETDEVICES >

Re: [U-Boot] [PATCH v2 06/18] Migrate CONFIG_ULPI* to Kconfig

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:52, Mateusz Kulikowski wrote: > Move CONFIG_USB_ULPI* from headers to defconfigs for boards that use it. > Also - add CONFIG_USB where necesarry - all boards use it, > but some are not defining it explicitly. > > Affected boards: >

Re: [U-Boot] [PATCH v2 02/18] gpio: Add support for Qualcomm gpio controller

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:52, Mateusz Kulikowski wrote: > Add support for gpio controllers on Qualcomm Snapdragon devices. > This devices are usually called Top Level Mode Multiplexing in > Qualcomm documentation. > > Signed-off-by: Mateusz Kulikowski

Re: [U-Boot] [PATCH v2 05/18] usb: ulpi: Add Kconfig options for ULPI

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:52, Mateusz Kulikowski wrote: > The following options can be now enabled via defconfig: > - CONFIG_USB_ULPI > - CONFIG_USB_ULPI_VIEWPORT > - CONFIG_USB_ULPI_VIEWPORT_OMAP > > Signed-off-by: Mateusz Kulikowski >

Re: [U-Boot] [PATCH v2 01/18] serial: Add support for Qualcomm serial port

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:52, Mateusz Kulikowski wrote: > This driver works in "new" Data Mover UART mode, so > will be compatible with modern Qualcomm chips only. > > Signed-off-by: Mateusz Kulikowski > Reviewed-by: Simon Glass

Re: [U-Boot] [PATCH v2 03/18] mmc: Add support for Qualcomm SDHCI controller

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:52, Mateusz Kulikowski wrote: > Add support for SD/eMMC controller present on some Qualcomm Snapdragon > devices. This controller implements SDHCI 2.0 interface but requires > vendor-specific initialization. > Driver works in PIO mode as ADMA

Re: [U-Boot] [PATCH v2 04/18] ehci-hcd: Add init_after_reset

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:52, Mateusz Kulikowski wrote: > Some host controllers need addidional initialization after ehci_reset() > In non-dm implementation it is possible to use > CONFIG_EHCI_HCD_INIT_AFTER_RESET. > This patch adds similar option to ehci drivers

Re: [U-Boot] [PATCH v2 07/18] usb: Rename ehci-fsl.h to ehci-ci.h

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:52, Mateusz Kulikowski wrote: > Most of ehci-fsl header describe USB controller > designed by Chipidea and used by various SoC vendors. > > This patch renames it to a generic header: ehci-ci.h > Contents of file are not changed (so it

Re: [U-Boot] [PATCH v2 12/18] spmi: Add sandbox test driver

2016-01-31 Thread Simon Glass
Hi Mateusz, On 24 January 2016 at 13:53, Mateusz Kulikowski wrote: > This patch adds emulated spmi bus controller with part of > pm8916 pmic on it to sandbox and tests validating SPMI uclass. > > Signed-off-by: Mateusz Kulikowski >

Re: [U-Boot] [PATCH v2 13/18] drivers: spmi: Add support for Qualcomm SPMI bus driver

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:53, Mateusz Kulikowski wrote: > Support SPMI arbiter on Qualcomm Snapdragon devices. > > Signed-off-by: Mateusz Kulikowski > Reviewed-by: Simon Glass > --- > > Changes in v2: > - Rename

Re: [U-Boot] [PATCH v2 14/18] pmic: Add support for Qualcomm PM8916 PMIC

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:53, Mateusz Kulikowski wrote: > This PMIC is connected on SPMI bus so needs SPMI support enabled. > > Signed-off-by: Mateusz Kulikowski > Reviewed-by: Simon Glass > --- > > Changes in v2: > -

Re: [U-Boot] [PATCH v2 11/18] drivers: Add SPMI bus uclass

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:53, Mateusz Kulikowski wrote: > Qualcom processors use proprietary bus to talk with PMIC devices - > SPMI (System Power Management Interface). > On wiring level it is similar to I2C, but on protocol level, it's > multi-master and has simple

Re: [U-Boot] [PATCH v2 17/18] board: Add Qualcomm Dragonboard 410C support

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:53, Mateusz Kulikowski wrote: > This commit add support for 96Boards Dragonboard410C. > It is board based on APQ8016 Qualcomm SoC, complying with > 96boards specification. > Features (present out of the box): > - 4x Cortex A53 (ARMv8) > - 2x

Re: [U-Boot] [PATCH v2 18/18] Add myself as Snapdragon and SPMI maintainer

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:53, Mateusz Kulikowski wrote: > - Update MAINTAINERS > - Update git-mailrc > > Signed-off-by: Mateusz Kulikowski > --- > > Changes in v2: > - New patch > > Changes in v1: None > > MAINTAINERS| 11

Re: [U-Boot] [PATCH v2 10/18] ehci: Add support for Qualcomm EHCI

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:53, Mateusz Kulikowski wrote: > This driver is able to reconfigure OTG controller into HOST mode. > Board can add board-specific initialization as board_prepare_usb(). > It requires USB_ULPI_VIEWPORT enabled in board configuration. > >

Re: [U-Boot] [PATCH v2 09/18] ehci-ci.h: drop generic USBCMD fields

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:53, Mateusz Kulikowski wrote: > Use definitions from ehci.h instead. > > Signed-off-by: Mateusz Kulikowski > Acked-by: Marek Vasut > --- > > Changes in v2: > - Add Acked-by > > Changes in v1:

Re: [U-Boot] [PATCH v2 08/18] usb: ehci-ci: Add missing registers.

2016-01-31 Thread Simon Glass
On 24 January 2016 at 13:53, Mateusz Kulikowski wrote: > Some registers of usb_ehci were marked as reserved. > This may be true for some variants of Chipidea USB core, but they have > meaning on other devices. > > The following registers were added: >

Re: [U-Boot] [PATCH 13/14] efi_loader: hook up in build environment

2016-01-31 Thread Simon Glass
On 14 January 2016 at 22:06, Alexander Graf wrote: > Now that we have all the bits and pieces ready for EFI payload loading > support, hook them up in Makefiles and KConfigs so that we can build. > > Signed-off-by: Alexander Graf > > --- > > v1 -> v2: > > - Move

Re: [U-Boot] [PATCH 09/14] efi_loader: Implement memory allocation and map

2016-01-31 Thread Simon Glass
Hi Alexander, On 14 January 2016 at 22:06, Alexander Graf wrote: > Due to popular request, this is a separate patch implementing all of the > memory > allocation and memory mapping bits. > > We assume we always have a linear RAM map. At TOM U-Boot resides. Inside of > U-Boot

Re: [U-Boot] [PATCH 07/14] efi_loader: Add disk interfaces

2016-01-31 Thread Simon Glass
On 14 January 2016 at 22:06, Alexander Graf wrote: > A EFI applications usually want to access storage devices to load data from. > > This patch adds support for EFI disk interfaces. It loops through all block > storage interfaces known to U-Boot and creates an EFI object for each

Re: [U-Boot] [PATCH 08/14] efi_loader: Add "bootefi" command

2016-01-31 Thread Simon Glass
Hi Alexander, On 14 January 2016 at 22:06, Alexander Graf wrote: > In order to execute an EFI application, we need to bridge the gap between > U-Boot's notion of executing images and EFI's notion of doing the same. > > The best path forward IMHO here is to stick completely to the

Re: [U-Boot] [PATCH V2] arm: config: enforce -fno-pic for gcc

2016-01-31 Thread Albert ARIBAUD
Hello Peng, On Sat, 30 Jan 2016 12:10:49 +0800, Peng Fan wrote: > Android's tool chain enable the -mandroid at default. > This option will enable the -fpic, which cause uboot compilation > failure: > " > LD u-boot > u-boot contains unexpected relocations:

Re: [U-Boot] [PATCH] fdt: introudce fdt_get_child_count

2016-01-31 Thread Simon Glass
Hi Peng, On 30 January 2016 at 23:38, Peng Fan wrote: > Introudce fdt_get_child_count for get the number of subnodes of > one parent node. > > Signed-off-by: Peng Fan > Cc: Simon Glass > --- > include/libfdt.h | 18

Re: [U-Boot] [PATCH 07/26] libfdt: Add a function to write a property placeholder

2016-01-31 Thread David Gibson
On Thu, Jan 28, 2016 at 09:39:27AM -0700, Simon Glass wrote: > The existing function to add a new property to a tree being built requires > that the entire contents of the new property be passed in. For some > applications it is more convenient to be able to add the property contents > later,

[U-Boot] [PATCHv7 2/2] sf: Turn SPI flash chip into 3-Byte address mode

2016-01-31 Thread Zhiqiang Hou
From: Hou Zhiqiang For more than 16MiB SPI flash chips, there are 3-Byte and 4-Byte address mode, and only the 3-Byte address mode is supported in U-Boot so far. So, reset the SPI flash to 3-Byte address mode in probe to ensure the SPI flash work correctly, because it

[U-Boot] [PATCHv7 1/2] sf: remove conditional compilation for BAR wr/rd command

2016-01-31 Thread Zhiqiang Hou
From: Hou Zhiqiang For the Spansion style SPI flashs, the Extended address control bit (EXTADD) that control the switching between 3-Byte and 4-Byte addressing mode is also in BAR[7]. Even if without the macro CONFIG_SPI_FLASH_BAR, the BAR[7] should be abled to

[U-Boot] [PATCH] armv8/ls1043a: enable workaround for errarum A009942

2016-01-31 Thread Shengzhou Liu
DDR erratum A-009942 is also applicable to LS1043A. Signed-off-by: Shengzhou Liu --- arch/arm/include/asm/arch-fsl-layerscape/config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-fsl-layerscape/config.h

Re: [U-Boot] How to access GP partitions from uboot (2015.04)

2016-01-31 Thread saikiran.jayanthi
HI HARSHA, I need Your help.In our project we are using internel emmc of 32Gb. Can u please provide how u created the GP partitions...when we are reading or writing commands in mmc we are getting partitions are not created and unsupported format..kindly let us know how you fornmatted for

[U-Boot] jboot to uboot

2016-01-31 Thread chronek
Hello, I have old Airlive Air3gii router, what comes with JBoot bootloader. I want change to U-Boot bootloader. If anyone know this Jboot bootloader and could help me, please share some knowledge. I am connected to router via serial and ethernet, JRecovery have small options: |# help

Re: [U-Boot] [PATCH 07/26] libfdt: Add a function to write a property placeholder

2016-01-31 Thread David Gibson
On Fri, Jan 29, 2016 at 11:23:31AM -0700, Simon Glass wrote: > Hi David, > > On 28 January 2016 at 22:29, David Gibson wrote: > > On Thu, Jan 28, 2016 at 09:39:27AM -0700, Simon Glass wrote: > >> The existing function to add a new property to a tree being built

Re: [U-Boot] [PATCH] arm: use common instructions applicable to armv7m & other arm archs

2016-01-31 Thread Albert ARIBAUD
Hello Vikas, On Sat, 30 Jan 2016 00:36:55 +0100, Vikas MANOCHA wrote: > Hi Albert, > > > -Original Message- > > From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net] > > Sent: Friday, January 29, 2016 9:16 AM > > To: Vikas MANOCHA > > Cc: u-boot@lists.denx.de;

  1   2   >