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
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
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:
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
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.
>
>
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
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
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
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
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
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
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
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
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
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
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 +
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
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
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
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 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
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
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
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 +
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
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
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
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!
_
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
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
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
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
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!
__
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(
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!
__
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
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
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
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
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
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
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 |
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
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
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
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
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
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]
>
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
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
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
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
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
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
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:
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
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
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
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
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
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
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
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
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
(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
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,
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
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
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
+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
+ 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
> 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
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
>
> ---
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
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
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
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 ++-
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
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
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
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
81 matches
Mail list logo