Re: [U-Boot] [v2] arm64: mvebu: use single defconfig for Armada8K development boards

2017-06-15 Thread Stefan Roese
Hi Igal, On 13.06.2017 09:35, ig...@marvell.com wrote: From: Igal Liberman Currently, Marvell Armada8k development board use 3 different defconfigs: mvebu_db-88f7040-nand_defconfig mvebu_db-88f7040_defconfig mvebu_db-88f8040_defconfig Having 3 different defconfigs ma

Re: [U-Boot] [PATCH v3 4/6] console: Use map_sysmem() for the pre-relocation console

2017-06-15 Thread Bin Meng
On Fri, Jun 16, 2017 at 11:37 AM, Simon Glass wrote: > At present this feature casts the address to a pointer. Use the > map_sysmem() function so that it will work correctly on sandbox. > > Signed-off-by: Simon Glass > --- > > Changes in v3: > - Add new patch to use map_sysmem() for the pre-reloc

Re: [U-Boot] [PATCH v3 5/6] sandbox: Enable more console options

2017-06-15 Thread Bin Meng
On Fri, Jun 16, 2017 at 11:37 AM, Simon Glass wrote: > Enable the pre-console buffer, displaying the model and post-relocation > console announce on sandbox. Also add a model name to the device tree. > This allows testing of these features. > > Signed-off-by: Simon Glass > --- > > Changes in v3:

Re: [U-Boot] [PATCH v3 3/6] test: Add a test for snprintf() and the banner/version

2017-06-15 Thread Bin Meng
On Fri, Jun 16, 2017 at 11:37 AM, Simon Glass wrote: > Add a simple test to make sure that these functions obey the buffer size > passed into them. > > Signed-off-by: Simon Glass > --- > > Changes in v3: None > Changes in v2: > - Fix buffer overflow problem when there is not enough space for the

Re: [U-Boot] [PATCH v3 6/6] sandbox: Drop special case console code for sandbox

2017-06-15 Thread Bin Meng
On Fri, Jun 16, 2017 at 11:37 AM, Simon Glass wrote: > At present sandbox has a special case where it directly calls os_putc() > when it does not have a console yet. > > Now that we have the pre-console buffer enabled we can drop this. Any > early characters will be buffered and output later. > >

Re: [U-Boot] [PATCH v3 2/6] Allow displaying the U-Boot banner on a video display

2017-06-15 Thread Bin Meng
On Fri, Jun 16, 2017 at 11:37 AM, Simon Glass wrote: > At present the U-Boot banner is only displayed on the serial console. If > this is not visible to the user, the banner does not show. Some devices > have a video display which can usefully display this information. > > Add a banner which is pr

Re: [U-Boot] [PATCH v3 1/6] display_options: Refactor to allow obtaining the banner

2017-06-15 Thread Bin Meng
On Fri, Jun 16, 2017 at 11:37 AM, Simon Glass wrote: > Move the display options code into a separate function so that the U-Boot > banner can be obtained from other code. Adjust the 'version' command to > use it. > > Signed-off-by: Simon Glass > --- > > Changes in v3: None > Changes in v2: > - Up

[U-Boot] [PATCH 2/3] moveconfig: Allow control of which implying configs are shown

2017-06-15 Thread Simon Glass
Sometimes it is useful to display CONFIG_TARGET or CONFIG_CMD configs. Add an option to control this. Also we generally ignore implying configs which affect fewer than 5 boards. But sometimes it is useful to show those those, so add an option that reduces the minimum to two. ERRATUM configs are n

[U-Boot] [PATCH 3/3] moveconfig: Allow automatic location and adding of 'imply'

2017-06-15 Thread Simon Glass
By using a Kconfig parser we can find the location of each option in the Kconfig tree. Using the information from the database we can then automatically add an 'imply' option into the right place if requested by the user. Add a -a option to support adding 'imply' options. Display the location of a

[U-Boot] [PATCH 0/3] moveconfig: Allow automatic adding of 'imply' to options

2017-06-15 Thread Simon Glass
A common requirement when converting options to Kconfig is to minimise the number of defconfig files that must be changed. For example, if the pre-Kconfig CONFIG_SCSI option is defined in zynq-common.h, then hopefully it can be added as an 'imply SCSI' to the Kconfig under ARCH_ZYNQ. This allows a

[U-Boot] [PATCH 1/3] moveconfig: Allow piping in 'git show --stat' output

2017-06-15 Thread Simon Glass
It is useful to be able to process only a subset of boards to save time. Often that subset is defined by the defconfig files in a git commit. This change allows things like: # Build the database ./tools.moveconfig.py -b # Find some implying configs ./tools/moveconfig.py -i CONFIG_X

[U-Boot] [PATCH v3 5/6] sandbox: Enable more console options

2017-06-15 Thread Simon Glass
Enable the pre-console buffer, displaying the model and post-relocation console announce on sandbox. Also add a model name to the device tree. This allows testing of these features. Signed-off-by: Simon Glass --- Changes in v3: - Add new patch to enable more console options on sandbox Changes i

[U-Boot] [PATCH v3 6/6] sandbox: Drop special case console code for sandbox

2017-06-15 Thread Simon Glass
At present sandbox has a special case where it directly calls os_putc() when it does not have a console yet. Now that we have the pre-console buffer enabled we can drop this. Any early characters will be buffered and output later. Signed-off-by: Simon Glass --- Changes in v3: - Add new patch to

[U-Boot] [PATCH v3 3/6] test: Add a test for snprintf() and the banner/version

2017-06-15 Thread Simon Glass
Add a simple test to make sure that these functions obey the buffer size passed into them. Signed-off-by: Simon Glass --- Changes in v3: None Changes in v2: - Fix buffer overflow problem when there is not enough space for the build tag - Add test to check for buffer overflow problems test/Make

[U-Boot] [PATCH v3 2/6] Allow displaying the U-Boot banner on a video display

2017-06-15 Thread Simon Glass
At present the U-Boot banner is only displayed on the serial console. If this is not visible to the user, the banner does not show. Some devices have a video display which can usefully display this information. Add a banner which is printed after relocation only on non-serial devices if CONFIG_DIS

[U-Boot] [PATCH v3 4/6] console: Use map_sysmem() for the pre-relocation console

2017-06-15 Thread Simon Glass
At present this feature casts the address to a pointer. Use the map_sysmem() function so that it will work correctly on sandbox. Signed-off-by: Simon Glass --- Changes in v3: - Add new patch to use map_sysmem() for the pre-relocation console Changes in v2: None common/console.c | 11 +

[U-Boot] [PATCH v3 1/6] display_options: Refactor to allow obtaining the banner

2017-06-15 Thread Simon Glass
Move the display options code into a separate function so that the U-Boot banner can be obtained from other code. Adjust the 'version' command to use it. Signed-off-by: Simon Glass --- Changes in v3: None Changes in v2: - Update the code to be more testable - Avoid a warning on spring, etc. cm

Re: [U-Boot] [PATCH v2 2/3] Allow displaying the U-Boot banner on a video display

2017-06-15 Thread Simon Glass
Hi Bin, On 15 June 2017 at 19:12, Bin Meng wrote: > Hi Simon, > > On Fri, Jun 16, 2017 at 12:09 AM, Simon Glass wrote: >> Hi Bin, >> >> On 12 June 2017 at 19:10, Bin Meng wrote: >>> Hi Simon, >>> >>> On Mon, Jun 12, 2017 at 11:17 PM, Simon Glass wrote: Hi Bin, On 12 June 2017 at

Re: [U-Boot] [PATCH] tools/tbot: update README

2017-06-15 Thread Simon Glass
On 8 June 2017 at 22:13, Heiko Schocher wrote: > > refer in the README to tbots webpage, and delete > the README in tools/tbot, as the latest documentation > for tbot is on this webpage. > > Signed-off-by: Heiko Schocher > --- > > test/README | 2 +- > tools/tbot/RE

Re: [U-Boot] [PATCH v2 2/3] Allow displaying the U-Boot banner on a video display

2017-06-15 Thread Bin Meng
Hi Simon, On Fri, Jun 16, 2017 at 12:09 AM, Simon Glass wrote: > Hi Bin, > > On 12 June 2017 at 19:10, Bin Meng wrote: >> Hi Simon, >> >> On Mon, Jun 12, 2017 at 11:17 PM, Simon Glass wrote: >>> Hi Bin, >>> >>> On 12 June 2017 at 09:13, Bin Meng wrote: Hi Simon, On Sun, Jun 11,

[U-Boot] [PATCH 2/2] MIPS: Stop building position independent code

2017-06-15 Thread Paul Burton
U-Boot has up until now built with -fpic for the MIPS architecture, producing position independent code which uses indirection through a global offset table, making relocation fairly straightforward as it simply involves patching up GOT entries. Using -fpic does however have some downsides. The bi

[U-Boot] [PATCH 1/2] Makefile: Allow arch post-link hook

2017-06-15 Thread Paul Burton
This commit allows an architecture to provide a Makefile.postlink whose u-boot target gets invoked after the u-boot ELF is linked. This will be of use for MIPS in a following commit. This mirrors Linux commit fbe6e37dab97 ("kbuild: add arch specific post-link Makefile"). Signed-off-by: Paul Burto

Re: [U-Boot] [PATCH] arc: Move dram_init out of arch code, into board code

2017-06-15 Thread Alex
Hi Alexey, On 06/15/2017 12:21 PM, Alexey Brodkin wrote: Any progress with that one? Or I'm missing your respin(s)? You're not missing them. I got caught up with other things bringing up this SOC. I'm looking at enabling SPL and having a working boot path. I want to have a working solution i

Re: [U-Boot] [PATCH v2 2/3] dm: core: Test uclass_first/next_device() on probe failure

2017-06-15 Thread sjg
Add some tests which check the behaviour of uclass_first_device() and uclass_next_device() when probing of a device fails. Signed-off-by: Simon Glass --- Changes in v2: None arch/sandbox/dts/test.dts | 19 + include/dm/uclass-id.h| 1 + test/dm/test-fdt.c| 72 +

Re: [U-Boot] [PATCH] rockchip: dts: rk3328: add aliases for mmc controller

2017-06-15 Thread sjg
Hi Kever, On 8 June 2017 at 18:48, Kever Yang wrote: > Simon, > > After the long discuss, this patch can be applied without any update, > right? > OK I've resurrected it in patchwork: http://patchwork.ozlabs.org/patch/763856/ Regards, Simon > > Thanks, > - Kever > > On 05/23/2017 04:26 AM

Re: [U-Boot] [PATCH v2 3/3] dm: core: Add uclass_first/next_device_check()

2017-06-15 Thread sjg
On 06/09/2017 12:41 AM, Simon Glass wrote: > Hi, > > On 23 April 2017 at 20:10, Simon Glass wrote: >> Sometimes it is useful to iterate through all devices in a uclass and >> skip over those which do not work correctly (e.g fail to probe). Add two >> new functions to provide this feature. >> >> Th

Re: [U-Boot] [PATCH v2 6/6] moveconfig: Support looking for implied CONFIG options

2017-06-15 Thread sjg
Some CONFIG options can be implied by others and this can help to reduce the size of the defconfig files. For example, CONFIG_X86 implies CONFIG_CMD_IRQ, so we can put 'imply CMD_IRQ' under 'config X86' and all x86 boards will have that option, avoiding adding CONFIG_CMD_IRQ to each of the x86 defc

Re: [U-Boot] [PATCH v2 2/6] moveconfig: Allow reading the defconfig list from stdin

2017-06-15 Thread sjg
Support passes in a defconfig filename of '-' to read the list from stdin instead of from a file. Signed-off-by: Simon Glass --- Changes in v2: None tools/moveconfig.py | 21 ++--- 1 file changed, 18 insertions(+), 3 deletions(-) Applied to u-boot-dm, thanks! _

Re: [U-Boot] [PATCH v2 3/6] moveconfig: Tidy up the documentation and add hints

2017-06-15 Thread sjg
The newest clean-up features are not mentioned in the docs. Fix this and add a few hints for particular workflows that are hopefully helpful. Signed-off-by: Simon Glass --- Changes in v2: - Adjust hints to include Tom Rini's <(...) approach - Drop change of 'headers' to 'header' tools/moveconf

Re: [U-Boot] [PATCH v2 1/2] dtoc: Support multiple compatible strings in a node

2017-06-15 Thread sjg
Hi Simon, On 06/14/2017 11:10 AM, Simon Glass wrote: > Sometimes a node will have multiple compatible strings. Drivers may use > one or the other so the best approach seems to be to #define them to be > equivalent. > > Update dtoc to support this. > > Signed-off-by: Simon Glass This patch works

Re: [U-Boot] [PATCH v2 1/3] dm: core: Clarify uclass_first/next_device() comments

2017-06-15 Thread sjg
These are not as clear as they could be. Tidy them up a bit. Also fix a tiny code-style nit. Signed-off-by: Simon Glass --- Changes in v2: None drivers/core/uclass.c | 3 +-- include/dm/uclass.h | 13 +++-- 2 files changed, 12 insertions(+), 4 deletions(-) Applied to u-boot-dm, tha

Re: [U-Boot] [PATCH v2 02/29] Convert CONFIG_SCSI to Kconfig

2017-06-15 Thread sjg
This converts the following to Kconfig: CONFIG_SCSI Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v2: - Move the "imply SCSI" before the "help" message - Change 'enabled' to 'enables' in config SCSI README | 1 - arch/Kconfig

Re: [U-Boot] [PATCH 5/5] cmd gpt: test in sandbox

2017-06-15 Thread sjg
From: Alison Chaiken Make minor changes to README.gpt and sandbox_defconfig to support testing of the gpt command's functionality in the sandbox. Signed-off-by: Alison Chaiken --- doc/README.gpt | 10 ++ 1 file changed, 10 insertions(+) Applied to u-boot-dm, thanks! __

Re: [U-Boot] [PATCH 4/5] sandbox: README: fix partition command invocation

2017-06-15 Thread sjg
On 4 June 2017 at 16:11, wrote: > From: Alison Chaiken > > The instructions for creating a disk image that are presently in > README.sandbox fail because sfdisk doesn't know about GPT. > > Signed-off-by: Alison Chaiken > --- > board/sandbox/README.sandbox | 2 +- > 1 file changed, 1 insertion(

Re: [U-Boot] [PATCH v2 4/6] moveconfig: Add a constant for auto.conf

2017-06-15 Thread sjg
This filename is used a few times. Move it to a constant before adding further uses. Signed-off-by: Simon Glass --- Changes in v2: None tools/moveconfig.py | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) Applied to u-boot-dm, thanks! __

Re: [U-Boot] [PATCH v2 1/6] moveconfig: Support providing a path to the defconfig files

2017-06-15 Thread sjg
It is convenient to provide the full patch to the defconfig files in some situations, e.g. when the file was generated by a shell command (e.g. 'ls configs/zynq*'). Add support for this, and move the globbing code into a function with its own documentation. Signed-off-by: Simon Glass --- Change

Re: [U-Boot] [PATCH v2 01/29] configs: Resync with savedefconfig

2017-06-15 Thread sjg
Rsync all defconfig files using moveconfig.py Signed-off-by: Simon Glass --- Changes in v2: None configs/Sinovoip_BPI_M2_Plus_defconfig | 1 - configs/UCP1020_SPIFLASH_defconfig | 2 +- configs/UCP1020_defconfig| 2 +- configs/adp-ae3xx_defcon

Re: [U-Boot] [PATCH] arc: Move dram_init out of arch code, into board code

2017-06-15 Thread Alexey Brodkin
Hi Alexandru, On Mon, 2017-06-05 at 13:00 -0700, Alexandru Gagniuc wrote: > On 06/05/2017 12:22 PM, Alexey Brodkin wrote: > > > > Hi Alexandru, > > > > On Mon, 2017-06-05 at 10:49 -0700, Alexandru Gagniuc wrote: > > > > > > The following commit > > > f1683aa board_f: Rename initdram() to dram_i

Re: [U-Boot] [PATCH v2 5/6] moveconfig: Support building a simple config database

2017-06-15 Thread sjg
Add a -b option which scans all the defconfigs and builds a database of all the CONFIG options used by each. This is useful for querying later. At present this only works with the separate -b option, which does not move any configs. It would be possible to adjust the script to build the database a

Re: [U-Boot] [PATCH v2 14/29] dm: sata: Move ataid into struct ahci_uc_priv

2017-06-15 Thread sjg
This array relates to the AHCI controller so should be exist out on its own in the file. Move it into the structure. Adjust functions that need access to this to take the structure as a parameter. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v2: None drivers/ata/ahci.c | 50

Re: [U-Boot] [PATCH v2 05/29] Convert CONFIG_CMD_SATA to Kconfig

2017-06-15 Thread sjg
This converts the following to Kconfig: CONFIG_CMD_SATA Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v2: None arch/Kconfig | 1 + arch/arm/cpu/armv7/mx6/Kconfig | 4 ++ arch/arm/mach-mvebu/Kconfig

Re: [U-Boot] [PATCH v2 07/29] sata: Move drivers into new drivers/ata directory

2017-06-15 Thread sjg
At present we have the SATA and PATA drivers mixed up in the drivers/block directory. It is better to split them out into their own place. Use drivers/ata which is what Linux does. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v2: None arch/powerpc/cpu/mpc85xx/cpu_init.c |

Re: [U-Boot] [PATCH v2 06/29] Kconfig: Add CONFIG_SATA to enable SATA

2017-06-15 Thread sjg
At present CONFIG_CMD_SATA enables the 'sata' command which also brings in SATA support. Some boards may wish to enable SATA without the command. Add a separate CONFIG to permit this. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- Changes in v2: None api/api_storage.c

Re: [U-Boot] [PATCH v2 27/29] dm: ahci: Add a driver for SCSI on AHCI

2017-06-15 Thread sjg
On Thu, Jun 15, 2017 at 11:28 AM, Simon Glass wrote: > Some AHCI drivers use SCSI under the hood. Rather than making the AHCI > driver be in the SCSI uclass it makes sense to have the AHCI device create > a SCSI device as a child. That way we can handle any AHCI-specific > operations rather than t

Re: [U-Boot] [PATCH v2 29/29] x86: Move link to use driver model for SCSI

2017-06-15 Thread sjg
On Thu, Jun 15, 2017 at 11:28 AM, Simon Glass wrote: > As a demonstration of how to use SCSI with driver model, move link over > to use this. This patch needs more work, but illustrates the concept. > > Signed-off-by: Simon Glass > --- > > Changes in v2: > - Update link64 and panther also > - Dro

[U-Boot] [PATCH] ti816x: Add additional boot device detection logic

2017-06-15 Thread Tom Rini
It has been observed that between PG1.0 and PG2.0/2.1 depending on which device we boot from, we may see a different value here than is documented in the TRM. Update the values for NAND and MMC1 based on real life usage on each revision. Signed-off-by: Tom Rini --- arch/arm/mach-omap2/boot-comm

Re: [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors

2017-06-15 Thread Alexey Brodkin
Hi Marek, On Thu, 2017-06-15 at 19:51 +0200, Marek Vasut wrote: > On 06/15/2017 07:48 PM, Alexey Brodkin wrote: > > > > Hi Marek, > > > > On Thu, 2017-06-15 at 19:23 +0200, Marek Vasut wrote: > > > > > > On 06/15/2017 07:19 PM, Tom Rini wrote: > > > > > > > > > > > > On Thu, Jun 15, 2017 at 0

Re: [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors

2017-06-15 Thread Marek Vasut
On 06/15/2017 07:48 PM, Alexey Brodkin wrote: > Hi Marek, > > On Thu, 2017-06-15 at 19:23 +0200, Marek Vasut wrote: >> On 06/15/2017 07:19 PM, Tom Rini wrote: >>> >>> On Thu, Jun 15, 2017 at 07:00:25PM +0200, Marek Vasut wrote: On 06/14/2017 11:55 AM, Alexey Brodkin wrote: > > [snip] >

Re: [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors

2017-06-15 Thread Alexey Brodkin
Hi Marek, On Thu, 2017-06-15 at 19:23 +0200, Marek Vasut wrote: > On 06/15/2017 07:19 PM, Tom Rini wrote: > > > > On Thu, Jun 15, 2017 at 07:00:25PM +0200, Marek Vasut wrote: > > > > > > On 06/14/2017 11:55 AM, Alexey Brodkin wrote: [snip] > > Clearly that patch did NOT land in my mailbox. S

Re: [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors

2017-06-15 Thread Marek Vasut
On 06/15/2017 07:19 PM, Tom Rini wrote: > On Thu, Jun 15, 2017 at 07:00:25PM +0200, Marek Vasut wrote: >> On 06/14/2017 11:55 AM, Alexey Brodkin wrote: >>> Hi Marek, >>> >>> On Mon, 2017-06-05 at 14:06 +0200, Marek Vasut wrote: On 06/05/2017 02:03 PM, Alexey Brodkin wrote: > > Hi Marek

Re: [U-Boot] [PATCH 2/3] regulator: lp873x: Fix the return value of ldo_get_enable function

2017-06-15 Thread Keerthy
On Tuesday 13 June 2017 09:04 AM, Keerthy wrote: > > > On Tuesday 13 June 2017 05:21 AM, Simon Glass wrote: >> On 10 June 2017 at 23:01, Keerthy wrote: >>> The function wrongly returned an integer while it is supposed to >>> return boolean. Fix that. >>> >>> Fixes: 99785de83 ("power: regulator

Re: [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors

2017-06-15 Thread Tom Rini
On Thu, Jun 15, 2017 at 07:00:25PM +0200, Marek Vasut wrote: > On 06/14/2017 11:55 AM, Alexey Brodkin wrote: > > Hi Marek, > > > > On Mon, 2017-06-05 at 14:06 +0200, Marek Vasut wrote: > >> On 06/05/2017 02:03 PM, Alexey Brodkin wrote: > >>> > >>> Hi Marek, > >> > >> Hi, > >> > >>> > >>> On Mon, 2

Re: [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors

2017-06-15 Thread Marek Vasut
On 06/14/2017 11:55 AM, Alexey Brodkin wrote: > Hi Marek, > > On Mon, 2017-06-05 at 14:06 +0200, Marek Vasut wrote: >> On 06/05/2017 02:03 PM, Alexey Brodkin wrote: >>> >>> Hi Marek, >> >> Hi, >> >>> >>> On Mon, 2017-06-05 at 13:42 +0200, Marek Vasut wrote: On 06/05/2017 09:19 AM, Alexey

Re: [U-Boot] [PATCH v2 08/13] usb: gadget: ether: Provide a way to read MAC address

2017-06-15 Thread Marek Vasut
On 06/14/2017 02:24 PM, Vignesh R wrote: > > > On Tuesday 13 June 2017 07:36 PM, Marek Vasut wrote: >> On 06/13/2017 02:10 PM, Vignesh R wrote: >>> Provide a way to read MAC address for usb_ether device from board >>> function. Board files can override board_set_usbnet_devaddr() to >>> populate M

Re: [U-Boot] [PATCH v2 05/13] drivers: usb: common: add support to get maximum speed from dt

2017-06-15 Thread Marek Vasut
On 06/14/2017 11:16 AM, Vignesh R wrote: > > > On Tuesday 13 June 2017 07:31 PM, Marek Vasut wrote: >> On 06/13/2017 02:10 PM, Vignesh R wrote: >>> From: Mugunthan V N >>> >>> Add support to get maximum speed from dt so that usb drivers >>> makes use of it for DT parsing. >>> >>> Signed-off-by:

Re: [U-Boot] [PATCH v2 01/13] drivers: usb: dwc3: remove devm_zalloc from linux_compact

2017-06-15 Thread Marek Vasut
On 06/14/2017 11:05 AM, Vignesh R wrote: > > > On Tuesday 13 June 2017 07:28 PM, Marek Vasut wrote: >> On 06/13/2017 02:09 PM, Vignesh R wrote: >>> From: Mugunthan V N >>> >>> devm_zalloc() is already defined in dm/device.h header, so >>> devm_zalloc can be removed from linux_compact.h beader fi

Re: [U-Boot] [PATCH v2 06/13] drivers: usb: dwc3: add ti dwc3 peripheral driver with driver model support

2017-06-15 Thread Marek Vasut
On 06/14/2017 02:25 PM, Vignesh R wrote: [...] >>> /** >>> * dwc3_omap_uboot_init - dwc3 omap uboot initialization code >>> * @dev: struct dwc3_omap_device containing initialization data >>> @@ -462,3 +487,145 @@ MODULE_ALIAS("platform:omap-dwc3"); >>> MODULE_AUTHOR("Felipe Balbi "); >>> MOD

Re: [U-Boot] [PATCH 0/4] powerpc: remove support for 5xxx and 512x

2017-06-15 Thread Marek Vasut
On 06/14/2017 05:49 AM, Heiko Schocher wrote: > remove support for 5xxx and 512x powerpc, as there is no interest > in it anymore. > > travis builds are clean: > https://travis-ci.org/hsdenx/u-boot-test/builds/242380936 > > > Heiko Schocher (4): > powerpc, 5xxx, 512x: remove support for mpc5xx

Re: [U-Boot] [PATCH v5 04/11] usb: host: xhci-rockchip: use fixed regulator to control vbus

2017-06-15 Thread Marek Vasut
On 06/15/2017 05:51 AM, rock-chips(daniel.meng) wrote: > > > On 2017/6/13 17:11, Marek Vasut wrote: >> On 06/12/2017 11:19 AM, Meng Dongyang wrote: >>> Use fixed regulator to control the voltage of vbus and turn off >>> vbus when usb stop. >>> >>> Signed-off-by: Meng Dongyang >>> --- >>> >>> Cha

Re: [U-Boot] [PATCH] defconfig: arm335x_evm_usbspl: Update MUSB Ethernet

2017-06-15 Thread Marek Vasut
On 06/15/2017 03:01 PM, Tom Rini wrote: > On Mon, Jun 12, 2017 at 06:02:39PM -0500, Michael Welling wrote: > >> Adds CONFIG_SPL_USB_GADGET_SUPPORT and CONFIG_SPL_USBETH_SUPPORT. >> >> Removes CONFIG_SPL_NAND_SUPPORT, CONFIG_SPL_MTD_SUPPORT, and >> CONFIG_SPL_YMODEM_SUPPORT >> to free up space to

Re: [U-Boot] [PATCH 12/13] armv7: support rk3066 early back to bootrom in start.S

2017-06-15 Thread Simon Glass
Hi Pawel, On 15 June 2017 at 10:32, Paweł Jarosz wrote: > > > W dniu 15.06.2017 o 18:00, Simon Glass pisze: > >> (just repeating other thread for completeness) >> >> On 15 June 2017 at 09:42, Paweł Jarosz wrote: >>> >>> >>> W dniu 15.06.2017 o 16:50, Simon Glass pisze: >>> + Some other rock

Re: [U-Boot] [PATCH 12/13] armv7: support rk3066 early back to bootrom in start.S

2017-06-15 Thread Paweł Jarosz
W dniu 15.06.2017 o 18:00, Simon Glass pisze: (just repeating other thread for completeness) On 15 June 2017 at 09:42, Paweł Jarosz wrote: W dniu 15.06.2017 o 16:50, Simon Glass pisze: + Some other rockchip people Hi Pawel, On 15 June 2017 at 01:15, Paweł Jarosz wrote: Hi Simon W dn

Re: [U-Boot] [PATCH 14/22] mmc: add power cyle support in mmc core

2017-06-15 Thread Jean-Jacques Hiblot
Hi Jaehoon, On 25/05/2017 14:35, Jaehoon Chung wrote: On 05/13/2017 03:16 AM, Jean-Jacques Hiblot wrote: mmc/sd specification requires vdd to be disabled for 1 ms and then enabled again during power cycle. Add a function in mmc core to perform power cycle and set the io signal to it's initial

Re: [U-Boot] [PATCH v2 2/3] Allow displaying the U-Boot banner on a video display

2017-06-15 Thread Simon Glass
Hi Bin, On 12 June 2017 at 19:10, Bin Meng wrote: > Hi Simon, > > On Mon, Jun 12, 2017 at 11:17 PM, Simon Glass wrote: >> Hi Bin, >> >> On 12 June 2017 at 09:13, Bin Meng wrote: >>> Hi Simon, >>> >>> On Sun, Jun 11, 2017 at 1:59 AM, Simon Glass wrote: At present the U-Boot banner is only

Re: [U-Boot] [PATCH 12/13] armv7: support rk3066 early back to bootrom in start.S

2017-06-15 Thread Simon Glass
(just repeating other thread for completeness) On 15 June 2017 at 09:42, Paweł Jarosz wrote: > > > W dniu 15.06.2017 o 16:50, Simon Glass pisze: > >> + Some other rockchip people >> >> Hi Pawel, >> >> On 15 June 2017 at 01:15, Paweł Jarosz wrote: >>> >>> Hi Simon >>> >>> >>> W dniu 14.06.2017 o

Re: [U-Boot] [PATCH 06/13] rockchip: rk3066: add core support

2017-06-15 Thread Simon Glass
Hi Pawel, On 15 June 2017 at 09:41, Paweł Jarosz wrote: > Hi > > > W dniu 15.06.2017 o 16:57, Simon Glass pisze: > >> +Philipp >> >> Hi Kever, >> >> On 14 June 2017 at 06:15, Kever Yang wrote: >>> >>> Simon, >>> >>> >>> >>> On 06/13/2017 07:50 AM, Simon Glass wrote: Hi Pawel,

Re: [U-Boot] [PATCH] armv8: ls1046ardb: update core frequency to 1800MHZ

2017-06-15 Thread York Sun
On 06/15/2017 01:28 AM, Q.y. Gong wrote: > Hi York, > >> -Original Message- >> From: York Sun >> Sent: Wednesday, June 14, 2017 4:55 AM >> To: Q.y. Gong ; u-boot@lists.denx.de >> Cc: Mingkai Hu >> Subject: Re: [PATCH] armv8: ls1046ardb: update core frequency to 1800MHZ >> >> On 06/12/2017

Re: [U-Boot] [PATCH 12/13] armv7: support rk3066 early back to bootrom in start.S

2017-06-15 Thread Paweł Jarosz
W dniu 15.06.2017 o 16:50, Simon Glass pisze: + Some other rockchip people Hi Pawel, On 15 June 2017 at 01:15, Paweł Jarosz wrote: Hi Simon W dniu 14.06.2017 o 13:06, Simon Glass pisze: +Philippe Hi Pawel, On 12 June 2017 at 17:50, Simon Glass wrote: Hi Pawel, On 9 June 2017 at 06:3

Re: [U-Boot] [PATCH 06/13] rockchip: rk3066: add core support

2017-06-15 Thread Paweł Jarosz
Hi W dniu 15.06.2017 o 16:57, Simon Glass pisze: +Philipp Hi Kever, On 14 June 2017 at 06:15, Kever Yang wrote: Simon, On 06/13/2017 07:50 AM, Simon Glass wrote: Hi Pawel, On 9 June 2017 at 07:03, Paweł Jarosz wrote: W dniu 09.06.2017 o 14:27, Simon Glass pisze: Hi Pawel, On 7 Ju

Re: [U-Boot] [PATCH 06/13] rockchip: rk3066: add core support

2017-06-15 Thread Simon Glass
+Philipp Hi Kever, On 14 June 2017 at 06:15, Kever Yang wrote: > Simon, > > > > On 06/13/2017 07:50 AM, Simon Glass wrote: >> >> Hi Pawel, >> >> On 9 June 2017 at 07:03, Paweł Jarosz wrote: >>> >>> >>> W dniu 09.06.2017 o 14:27, Simon Glass pisze: >>> Hi Pawel, On 7 June 2017 at

Re: [U-Boot] [PATCH 12/13] armv7: support rk3066 early back to bootrom in start.S

2017-06-15 Thread Simon Glass
+ Some other rockchip people Hi Pawel, On 15 June 2017 at 01:15, Paweł Jarosz wrote: > Hi Simon > > > W dniu 14.06.2017 o 13:06, Simon Glass pisze: > > +Philippe > > Hi Pawel, > > On 12 June 2017 at 17:50, Simon Glass wrote: > > Hi Pawel, > > On 9 June 2017 at 06:31, Paweł Jarosz wrote: > > W

Re: [U-Boot] [PATCH v1] rockchip: video: mipi: Modify format type for debug message

2017-06-15 Thread Dr. Philipp Tomsich
> On 14 Jun 2017, at 11:58, Eric Gao wrote: > > Modify format type for debug message. > > Signed-off-by: Eric Gao Reviewed-by: Philipp Tomsich ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH v1] rockchip: video: mipi: Modify variable type for arm32 compatibility

2017-06-15 Thread Dr. Philipp Tomsich
Just a few nitpicks regarding typing the pointers and base-addresses. > On 14 Jun 2017, at 11:26, Eric Gao wrote: > > Some address relevant varibable is defined originally as u64. To > compatible with arm32, this patch change them to "void __iomem *" type. > > Signed-off-by: Eric Gao > > ---

Re: [U-Boot] Please pull u-boot-mpc85xx master

2017-06-15 Thread Tom Rini
On Tue, Jun 13, 2017 at 05:02:36PM +, York Sun wrote: > Tom, > > The following changes since commit 8cb3ce64f936f5dedbcfc1935c5caf31bb682474: > >Merge git://git.denx.de/u-boot-dm (2017-06-10 18:01:22 -0400) > > are available in the git repository at: > >git://git.denx.de/u-boot-mpc

Re: [U-Boot] [PATCH] defconfig: arm335x_evm_usbspl: Update MUSB Ethernet

2017-06-15 Thread Tom Rini
On Mon, Jun 12, 2017 at 06:02:39PM -0500, Michael Welling wrote: > Adds CONFIG_SPL_USB_GADGET_SUPPORT and CONFIG_SPL_USBETH_SUPPORT. > > Removes CONFIG_SPL_NAND_SUPPORT, CONFIG_SPL_MTD_SUPPORT, and > CONFIG_SPL_YMODEM_SUPPORT > to free up space to fit in RAM. > > Signed-off-by: Michael Welling

Re: [U-Boot] Pull request, u-boot-tegra/master

2017-06-15 Thread Tom Rini
On Mon, Jun 12, 2017 at 04:32:56PM -0700, Tom Warren wrote: > Tom, > > Please pull u-boot-tegra/master into U-Boot/master. Thanks! > > All Tegra builds are OK, and Stephen's automated test system reports that > all tests pass. > > The following changes since commit 8cb3ce64f936f5dedbcfc1935c5ca

[U-Boot] [PATCH 1/1] board:ls2080ardb: Update execution of config_board_mux

2017-06-15 Thread Santan Kumar
config_board_mux() is dependent on 'hwconfig' env read value. For some bootloaders like QSPI, env is ready only after relocation. So delay execution of config_board_mux() to misc_init_r(). Signed-off-by: Santan Kumar --- board/freescale/ls2080ardb/ls2080ardb.c | 27 ++-

Re: [U-Boot] [PATCH v4 03/10] dm: spi: add BCM63xx SPI driver

2017-06-15 Thread Álvaro Fernández Rojas
Hi Jagan, El 15/6/17 a las 7:38, Jagan Teki escribió: > On Wed, Jun 14, 2017 at 3:27 PM, Álvaro Fernández Rojas > wrote: >> This driver is a simplified version of linux/drivers/spi/spi-bcm63xx.c >> Instead of supporting both HW revisions of the controller in a single build, >> support has been sp

Re: [U-Boot] [PATCH] armv8: ls1046ardb: update core frequency to 1800MHZ

2017-06-15 Thread Q.y. Gong
Hi York, > -Original Message- > From: York Sun > Sent: Wednesday, June 14, 2017 4:55 AM > To: Q.y. Gong ; u-boot@lists.denx.de > Cc: Mingkai Hu > Subject: Re: [PATCH] armv8: ls1046ardb: update core frequency to 1800MHZ > > On 06/12/2017 02:30 AM, Gong Qianyu wrote: > > Update the default

Re: [U-Boot] [PATCH 0/7] rockchip: Split sdram common function into sdram_common.c

2017-06-15 Thread Andy Yan
Hi Kever: On 2017年06月13日 17:29, Kever Yang wrote: Some function like the dram capability decode and dram_init() are the same for all Rockchip SoCs, maybe alaso cap detect function later, add sdram_common.c for all SoC driver. Kever Yang (7): rockchip: add sdram_common for common functions

Re: [U-Boot] [PATCH 12/13] armv7: support rk3066 early back to bootrom in start.S

2017-06-15 Thread Paweł Jarosz
Hi Simon W dniu 14.06.2017 o 13:06, Simon Glass pisze: +Philippe Hi Pawel, On 12 June 2017 at 17:50, Simon Glass wrote: Hi Pawel, On 9 June 2017 at 06:31, Paweł Jarosz wrote: W dniu 09.06.2017 o 13:46, Heiko Stuebner pisze: Am Mittwoch, 7. Juni 2017, 17:37:13 CEST schrieb Paweł Jarosz