From: Tang Yuantian
When compling under 64bit platforms, there are lots of warnings,
like:
drivers/block/ahci.c:114:18: warning: cast to pointer from integer
of different size [-Wint-to-pointer-cast]
u8 *port_mmio = (u8 *)probe_ent->port[port].port_mmio;
^
drivers/block/ahci
Thanks for pointing out. Fixed in patch v3.
Regards,
Yuantian
> -Original Message-
> From: Tom Rini [mailto:tr...@konsulko.com]
> Sent: Thursday, July 09, 2015 9:48 AM
> To: Tang Yuantian-B29983
> Cc: Xie Shaohui-B21989; u-boot@lists.denx.de
> Subject: Re: [U-Boot,v2] ahci: Fix compiling
On 07/03/2015 05:12 PM, Tom Rini wrote:
> On Fri, Jul 03, 2015 at 04:46:10PM +0530, Vignesh R wrote:
>
>> ti_qspi uses memory map mode for faster read. Enabling DMA will increase
>> read speed by 3x @48MHz on DRA74 EVM.
>>
>> Signed-off-by: Vignesh R
>
> This ignores the feedback from
> http:/
Hello Masahiro,
On Thu, 9 Jul 2015 14:16:33 +0900, Masahiro Yamada
wrote:
> Hi Simon,
>
> > 3. How do we handle things like gpio_exynos_bind() which allocs some
> > data and passes it to a device it creates, as platform data? At
> > present we don't free it.
>
> So, currently this driver is lea
Hi Simon,
2015-07-09 9:22 GMT+09:00 Simon Glass :
> Hi Masahiro,
>
> On 7 July 2015 at 22:29, Masahiro Yamada
> wrote:
>> In U-Boot's driver model, memory is basically allocated and freed
>> in the core framework. So, low level drivers generally only have
>> to specify the size of needed memor
On 07/09/2015 12:57 AM, Peter Griffin wrote:
> This patch adds the glue code for hi6220 SoC which has 2x synopsis
> dw_mmc controllers. This will be used by the hikey board support
> in subsequent patches.
>
> Signed-off-by: Peter Griffin
> ---
> arch/arm/include/asm/arch-hi6220/dwmmc.h | 8 +++
To improve eTSEC performance on LS1021A Rev2.0,
snooping of all transmit frames from memory and
all transmit BD memory accesses in enabled.
Signed-off-by: Alison Wang
---
include/tsec.h | 4
1 file changed, 4 deletions(-)
diff --git a/include/tsec.h b/include/tsec.h
index 58cdc19..1119d2c
On LS1021A Rev2.0, OCRAM's security level needs to be changed to
non-secure access for SD boot. This patch will allow OCRAM
access permission as R/W in SPL.
Signed-off-by: Alison Wang
---
board/freescale/ls1021aqds/ls1021aqds.c | 178 +---
board/freescale/ls1021atwr/l
On Tue, Jul 07, 2015 at 03:48:26PM +0800, tang yuantian wrote:
> From: Tang Yuantian
>
> When compling under 64bit platforms, there are lots of warnings,
> like:
>
> drivers/block/ahci.c:114:18: warning: cast to pointer from integer
> of different size [-Wint-to-pointer-cast]
> u8 *port_mmio
Hi Stefan,
> -Original Message-
> From: Vikas MANOCHA
> Sent: Wednesday, July 01, 2015 9:25 AM
> To: 'Stefan Roese'
> Cc: 'u-boot@lists.denx.de'; 'grmo...@opensource.altera.com';
> 'dingu...@opensource.altera.com'; 'jt...@openedev.com'
> Subject: RE: [PATCH RESEND 0/7] spi: cadence_qspi: o
On 7 July 2015 at 22:29, Masahiro Yamada wrote:
> devm_kmalloc() is identical to kmalloc() except that the memory
> allocated with it is managed and will be automatically released
> when the device is removed/unbound.
>
> Likewise for the other variants.
>
> Signed-off-by: Masahiro Yamada
> ---
>
Hi Masahiro,
On 7 July 2015 at 22:29, Masahiro Yamada wrote:
> In U-Boot's driver model, memory is basically allocated and freed
> in the core framework. So, low level drivers generally only have
> to specify the size of needed memory with .priv_auto_alloc_size,
> .platdata_auto_alloc_size, etc.
Hi Masahiro,
On 7 July 2015 at 22:29, Masahiro Yamada wrote:
> Currently, we only have DM_FLAG_ACTIVATED to indicate the device
> status, but we still cannot know in which stage is in progress,
> binding or probing.
>
> This commit introduces a new flag, DM_FLAG_BOUND, which is set when
> the dev
On 7 July 2015 at 22:29, Masahiro Yamada wrote:
> The macro cpu_relax() is defined by several headers in different
> ways.
>
> arch/{arm,avr32,mips}/include/asm/processor.h defines it as follows:
> #define cpu_relax() barrier()
>
> On the other hand, include/linux/compat.h defines it as follow
On 7 July 2015 at 22:29, Masahiro Yamada wrote:
> Currently, kzalloc() returns zero-filled memory, while kmalloc()
> simply ignores the second argument and never fills the memory
> area with zeros.
>
> I want kmalloc(size, __GFP_ZERO) to behave as kzalloc() does,
> which will make it easier to add
On 7 July 2015 at 22:46, Bin Meng wrote:
> On Wed, Jul 8, 2015 at 12:29 PM, Masahiro Yamada
> wrote:
>> These two declarations in arch/x86/include/asm/interrupt.h conflict
>> with ones in include/linux/compat.h, so x86 boards cannot include
>> .
>>
>> The comment /* arch/x86/lib/interrupts.c */ i
On 7 July 2015 at 22:29, Masahiro Yamada wrote:
> The vzalloc(size) is equivalent to kzalloc(size, 0). Move it to
> include/linux/compat.h as an inline function in order to avoid the
> function call overhead.
>
> Signed-off-by: Masahiro Yamada
> ---
>
> include/linux/compat.h | 6 --
> lib/
Hi Bin,
On 8 July 2015 at 18:17, Bin Meng wrote:
>
> Hi Simon,
>
> On Thu, Jul 9, 2015 at 4:28 AM, Simon Glass wrote:
> > Hi Bin,
> >
> > On 8 July 2015 at 07:50, Bin Meng wrote:
> >> Remove duplicated entry of OF_CONTROL in crownbay_defconfig and
> >> minnowmax_defconfig which causes a warning
Hi Simon,
On Thu, Jul 9, 2015 at 4:28 AM, Simon Glass wrote:
> Hi Bin,
>
> On 8 July 2015 at 07:50, Bin Meng wrote:
>> Remove duplicated entry of OF_CONTROL in crownbay_defconfig and
>> minnowmax_defconfig which causes a warning when making defconfig.
>> The updated defconfig files are generated
On Wed, 2015-07-08 at 13:58 +0200, Marcel Ziswiler wrote:
> From: Marcel Ziswiler
>
> Various U-Boot adoptions/extensions to MTD/NAND/UBI did not take buffer
> alignment into account which led to failures of the following form:
>
> ERROR: v7_dcache_inval_range - start address is not aligned - 0x
The temperature calculation must be typecasted to keep the compiler
from sign extending a negative value prior to division.
This fixes an issue where if the CPU temperature is <0C it will get stuck
in the busywait loop until the CPU heats up to 0C.
Cc: Ye Li
Cc: Jason Liu
Signed-off-by: Tim Har
Hello Alexander,
On Wed, 08 Jul 2015 20:15:42 +0200, Alexander Stein
wrote:
> Hello Albert,
>
> On Monday 06 July 2015, 23:26:41 wrote Albert ARIBAUD:
> > On Mon, 06 Jul 2015 20:24:31 +0200, Alexander Stein
> > wrote:
> > > Hello Albert,
> > >
> > > On Monday 06 July 2015, 09:39:40 wrote Alber
On Tue, Jun 9, 2015 at 6:40 AM, Tim Harvey wrote:
> Remove the check for temperature being within the min/max range and enter the
> busywait cooling loop whenever the CPU temperature is over the critical temp.
> This fixes the issue where if a board was booted at a temp greater than
> the CPU temp
After extension of the dfu_get_buf() to also setup (implicitly) the dfu_buf_size
variable it is not needed to set dfu_buf_size to CONFIG_SYS_DFU_DATA_BUF_SIZE.
This variable is set in the dfu_get_buf() by not only considering
CONFIG_SYS_DFU_DATA_BUF but more importantly the "dfu_bufsiz" env variab
Hi Simon,
> -Original Message-
> From: Simon Glass [mailto:s...@google.com] On Behalf Of Simon Glass
> Sent: Tuesday, July 07, 2015 7:54 PM
> To: U-Boot Mailing List
> Cc: Stephen Warren; Stephen Warren; Joe Hershberger; Masahiro Yamada;
> Simon Glass; Linus Walleij; Masahiro Yamada; Marek
On Wednesday, July 08, 2015 at 07:49:37 PM, Hans de Goede wrote:
> Hi,
Hi!
> On 08-07-15 17:02, Marek Vasut wrote:
> > On Wednesday, July 08, 2015 at 04:54:07 PM, Hans de Goede wrote:
> >> USB devices are not really designed to get the power bounced off and on
> >> at them. Esp. USB powered hardd
Hi Joe,
On 8 July 2015 at 14:43, Joe Hershberger wrote:
> Hi Simon,
>
> On Wed, Jul 8, 2015 at 3:31 PM, Simon Glass wrote:
>> +Hans
>>
>> Hi Joe,
>>
>> On 7 July 2015 at 22:04, Joe Hershberger wrote:
>>> Hi Simon,
>>>
>>> On Tue, Jul 7, 2015 at 9:53 PM, Simon Glass wrote:
For USB Ethernet
On 07/06/2015 02:20 AM, Marcel Ziswiler wrote:
From: Max Krummenacher
Enable CONFIG_IP_DEFRAG and set CONFIG_TFTP_BLOCKSIZE to 16384.
This increases the tftp download speed considerably.
While at it enable CONFIG_TFTP_TSIZE which limits the progress bar to
fifty '#' independent of the download
On 07/07/2015 12:04 AM, Marcel Ziswiler wrote:
On 6 July 2015 18:38:21 CEST, Simon Glass wrote:
Out of interest, is this just a message for the user? Why is it useful?
Well, we or customers might do other interesting things on entering rcm like
stopping autoboot or automatically start ums
On 07/07/2015 03:47 AM, Masahiro Yamada wrote:
The word "partition" is doubled. Keep decent forms for the
following lines.
Also, fix some other typos while we are here.
Acked-by: Stephen Warren
___
U-Boot mailing list
U-Boot@lists.denx.de
http://li
Hi Simon,
On Wed, Jul 8, 2015 at 3:31 PM, Simon Glass wrote:
> +Hans
>
> Hi Joe,
>
> On 7 July 2015 at 22:04, Joe Hershberger wrote:
>> Hi Simon,
>>
>> On Tue, Jul 7, 2015 at 9:53 PM, Simon Glass wrote:
>>> For USB Ethernet devices we need to use the usbethaddr environment variable
>>> (instead
On 08.07.15 22:22, ivan.khoronzhuk wrote:
Vitaly,
On 08.07.15 21:28, Vitaly Andrianov wrote:
On 07/08/2015 01:50 PM, ivan.khoronzhuk wrote:
Vitaly,
On 08.07.15 20:26, Vitaly Andrianov wrote:
On 07/08/2015 01:05 PM, Ivan Khoronzhuk wrote:
Vitaly,
On 08.07.15 20:05, Vitaly Andrianov wr
+Hans
Hi Joe,
On 7 July 2015 at 22:04, Joe Hershberger wrote:
> Hi Simon,
>
> On Tue, Jul 7, 2015 at 9:53 PM, Simon Glass wrote:
>> For USB Ethernet devices we need to use the usbethaddr environment variable
>> (instead of ethaddr) the Ethernet hardware address. Add this to the uclass
>> so tha
Hi Bin,
On 8 July 2015 at 07:50, Bin Meng wrote:
> Remove duplicated entry of OF_CONTROL in crownbay_defconfig and
> minnowmax_defconfig which causes a warning when making defconfig.
> The updated defconfig files are generated by 'make savedefconfig'.
>
> Signed-off-by: Bin Meng
> ---
>
> confi
Hi Masahiro,
On 8 July 2015 at 03:35, Masahiro Yamada wrote:
> Hi Simon,
>
>
> 2015-07-07 2:32 GMT+09:00 Simon Glass :
>> Hi Masahiro,
>>
>> On 6 July 2015 at 11:24, Masahiro Yamada
>> wrote:
>>>
>>> Hi Simon,
>>>
>>>
>>> 2015-06-24 8:29 GMT+09:00 Simon Glass :
>>>
>>> > +
>>> > +static int rk3
Hi Hans,
On 8 July 2015 at 08:16, Hans de Goede wrote:
> Hi,
>
>
> On 08-07-15 16:08, Simon Glass wrote:
>>
>> +Masahiro
>>
>> Hi Hans,
>>
>> On 8 July 2015 at 05:56, Hans de Goede wrote:
>>>
>>> Hi Simon,
>>>
>>>
>>> On 07-07-15 09:00, Hans de Goede wrote:
Hi,
On 06-07-
Vitaly,
On 08.07.15 20:26, Vitaly Andrianov wrote:
On 07/08/2015 01:05 PM, Ivan Khoronzhuk wrote:
Vitaly,
On 08.07.15 20:05, Vitaly Andrianov wrote:
On 07/08/2015 12:38 PM, Ivan Khoronzhuk wrote:
Hi, Vitaly
I suppose it's better to decide in upper driver how to use swinfo
field.
Like in
Vitaly,
On 08.07.15 21:28, Vitaly Andrianov wrote:
On 07/08/2015 01:50 PM, ivan.khoronzhuk wrote:
Vitaly,
On 08.07.15 20:26, Vitaly Andrianov wrote:
On 07/08/2015 01:05 PM, Ivan Khoronzhuk wrote:
Vitaly,
On 08.07.15 20:05, Vitaly Andrianov wrote:
On 07/08/2015 12:38 PM, Ivan Khoronzh
Hi, Vitaly
I suppose it's better to decide in upper driver how to use swinfo field.
Like in drivers/net/keystone_net.c
The keystone navigator supposed to be used as a tool for communicating
between different IPs, and each of them decide how to use swinfo fields.
It's protocol specific informatio
Vitaly,
On 08.07.15 20:05, Vitaly Andrianov wrote:
On 07/08/2015 12:38 PM, Ivan Khoronzhuk wrote:
Hi, Vitaly
I suppose it's better to decide in upper driver how to use swinfo field.
Like in drivers/net/keystone_net.c
The keystone navigator supposed to be used as a tool for communicating
bet
Hi, Vitaly
I suppose it's better to decide in upper driver how to use swinfo field.
Like in drivers/net/keystone_net.c
The keystone navigator supposed to be used as a tool for communicating
between different IPs, and each of them decide how to use swinfo fields.
It's protocol specific informatio
Use fdt_setprop_u32() instead of fdt_setprop().
Fixes: 0181937fa371a ("crypto/fsl: Add fixup for crypto node")
Signed-off-by: Horia Geantă
Reviewed-by: Mingkai Hu
---
drivers/crypto/fsl/sec.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/crypto/fsl/sec.c b/driver
Signed-off-by: Horia Geantă
---
drivers/crypto/fsl/sec.c | 17 -
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/drivers/crypto/fsl/sec.c b/drivers/crypto/fsl/sec.c
index b25b1a4052d2..0940faf768cc 100644
--- a/drivers/crypto/fsl/sec.c
+++ b/drivers/crypto/fsl/sec.c
HW coherency won't work properly for CAAM write transactions
if AWCACHE is left to default (POR) value - 4'b0001.
It has to be programmed to 4'b0010.
For platforms that have HW coherency support:
-PPC-based: the update has no effect; CAAM coherency already works
due to the IOMMU (PAMU) driver sett
On 07/08/2015 01:50 PM, ivan.khoronzhuk wrote:
Vitaly,
On 08.07.15 20:26, Vitaly Andrianov wrote:
On 07/08/2015 01:05 PM, Ivan Khoronzhuk wrote:
Vitaly,
On 08.07.15 20:05, Vitaly Andrianov wrote:
On 07/08/2015 12:38 PM, Ivan Khoronzhuk wrote:
Hi, Vitaly
I suppose it's better to decid
Hello Albert,
On Monday 06 July 2015, 23:26:41 wrote Albert ARIBAUD:
> On Mon, 06 Jul 2015 20:24:31 +0200, Alexander Stein
> wrote:
> > Hello Albert,
> >
> > On Monday 06 July 2015, 09:39:40 wrote Albert ARIBAUD:
> > > On Sat, 4 Jul 2015 11:48:39 +0200, Alexander Stein
> > > wrote:
> > >
> >
Hi,
On 08-07-15 17:02, Marek Vasut wrote:
On Wednesday, July 08, 2015 at 04:54:07 PM, Hans de Goede wrote:
USB devices are not really designed to get the power bounced off and on
at them. Esp. USB powered harddisks do not like this.
Currently we power off the USB ports both on a "usb reset" an
On Mon, Jun 15, 2015 at 06:40:19PM +0800, Bin Meng wrote:
> commit f566c99 "net: Update hardware MAC address if it changes in env"
> removes writing MAC address to designware controller after soft reset.
> This makes designware ethernet port fail to work. Actually the MAC
> address should always b
Hi Vladimir,
Thanks for taking the time to test this patch.
After further investigation, the issue was with our internal Micrel KSZ8031RNL
phy implementation.
The extra 10ms delay is not require. This patch should be discard.
Thanks for the feedback regarding the mail system;
- for an internal
On Wed, Jul 08, 2015 at 04:52:43PM +0200, Hans de Goede wrote:
> Hi Tom,
>
> One of the sunxi dts files for a new board got merged into the
> upstream kernel under a different name than that it was originally
> submitted with. This pull-req contains a single patch adjusting
> the name in u-boot,
On 07/08/2015 01:05 PM, Ivan Khoronzhuk wrote:
Vitaly,
On 08.07.15 20:05, Vitaly Andrianov wrote:
On 07/08/2015 12:38 PM, Ivan Khoronzhuk wrote:
Hi, Vitaly
I suppose it's better to decide in upper driver how to use swinfo field.
Like in drivers/net/keystone_net.c
The keystone navigator s
On 07/08/2015 12:38 PM, Ivan Khoronzhuk wrote:
Hi, Vitaly
I suppose it's better to decide in upper driver how to use swinfo field.
Like in drivers/net/keystone_net.c
The keystone navigator supposed to be used as a tool for communicating
between different IPs, and each of them decide how to us
This patch adds the header files which will be used in the subsquent
board / drivers to enable support for hi6220 hikey board.
Signed-off-by: Peter Griffin
---
arch/arm/include/asm/arch-hi6220/hi6220.h | 324 +++
.../include/asm/arch-hi6220/hi6220_regs_alwayson.h | 349 +
HiKey is the first 96boards consumer edition compliant board. It features a
hi6220
SoC which has eight ARM A53 cpu's.
This initial port adds support for: -
1) Serial
2) eMMC / sd card
3) USB
4) GPIO
It has been tested with Arm Trusted Firmware running u-boot as the BL33
executable.
Notes:
eMM
This pmic is used on the 96boards consumer edition HiKey board.
Signed-off-by: Peter Griffin
---
arch/arm/include/asm/arch-hi6220/hi6553.h | 75 +++
1 file changed, 75 insertions(+)
create mode 100644 arch/arm/include/asm/arch-hi6220/hi6553.h
diff --git a/arch/arm/i
This patch adds the glue code for hi6220 SoC which has 2x synopsis
dw_mmc controllers. This will be used by the hikey board support
in subsequent patches.
Signed-off-by: Peter Griffin
---
arch/arm/include/asm/arch-hi6220/dwmmc.h | 8 +
drivers/mmc/Makefile | 1 +
driver
To help others with compiling and flashing ATF and u-boot add
a README for this board.
Signed-off-by: Peter Griffin
---
board/hisilicon/hikey/README | 160 +++
1 file changed, 160 insertions(+)
create mode 100644 board/hisilicon/hikey/README
diff --git a
Hi Folks,
This series adds support for the first 96boards consumer edition HiKey board.
More information can be found about this board at the following link
https://www.96boards.org/products/hikey/.
This initial port adds support for: -
1) Serial
2) eMMC and sd card
3) USB
4) GPIO
It has been
This patch adds support for the GPIO perif found on hi6220
SoC.
Signed-off-by: Peter Griffin
---
arch/arm/include/asm/arch-hi6220/gpio.h | 29 ++
drivers/gpio/Makefile | 2 +
drivers/gpio/hi6220_gpio.c | 95 +
3 files change
The MCAST_TFTP support requires that network drivers has mcast functon
implemented. This commit adds dummy keystone2_eth_bcast_addr() to meet
the requirement. As far as the driver doesn't use ALE and doesn't filter
any incoming packets, the function is empty.
Signed-off-by: Vitaly Andrianov
---
Keystone2 SOC physical DDR3 address range is outside the first 4GB and
cannot be entirely accessible without MMU enabled. Only first 2GB of
the physical memory have 32-bits aliased addresses. This patch adds u-boot
shell command that allows to enable/disable MMU and map the 1GB of
36bits physical m
K2L and L2E have different from K2HK EthSS version, which uses tag_info
field for destination slave port. This commit adds the dest_port_info field
to the struct pktdma_cfg, to configure which HD filed tag_info or pkt_info
shall be used to configure descriptor.
Before that commit the swinfo[2] was
When core A turning of core B, via tetris DPSC it places the core
B DPSC into transitional state. The core B has to execute wfi instruction
to move its DPSC to the OFF state. This patch add such instruction.
Signed-off-by: Vitaly Andrianov
---
arch/arm/mach-keystone/cmd_mon.c | 9 +++--
1 fi
+ML
Hi Ulrich,
On 7 July 2015 at 08:32, Ulrich Prinz wrote:
> Am 24.06.2015 um 01:28 schrieb Simon Glass:
>>
>>
>> The Rockchip RK3288 is based on a quad-core Cortex-A17 CPU and has a good
>> set of peripherals. Various full-featured U-Boot ports are available and
>> this is an attempt to bring
On Wednesday, July 08, 2015 at 04:54:07 PM, Hans de Goede wrote:
> USB devices are not really designed to get the power bounced off and on
> at them. Esp. USB powered harddisks do not like this.
>
> Currently we power off the USB ports both on a "usb reset" and when
> booting the kernel, causing t
On Wed, 2015-07-08 at 16:54 +0200, Hans de Goede wrote:
> USB devices are not really designed to get the power bounced off and on
> at them. Esp. USB powered harddisks do not like this.
>
> Currently we power off the USB ports both on a "usb reset" and when
> booting the kernel, causing the usb-po
USB devices are not really designed to get the power bounced off and on
at them. Esp. USB powered harddisks do not like this.
Currently we power off the USB ports both on a "usb reset" and when
booting the kernel, causing the usb-power to bounce off and then back
on again.
This patch removes the
Hi Tom,
One of the sunxi dts files for a new board got merged into the
upstream kernel under a different name than that it was originally
submitted with. This pull-req contains a single patch adjusting
the name in u-boot, so that we do not end up shipping a u-boot
which looks for a differently na
On Wednesday, July 08, 2015 at 04:22:14 PM, Lukasz Majewski wrote:
> Hi Steve,
Hi!
> > >> b/drivers/usb/gadget/bcm_udc_otg.h new file mode 100644
> > >> index 000..81a1fc0
> > >> --- /dev/null
> > >> +++ b/drivers/usb/gadget/bcm_udc_otg.h
> > >> @@ -0,0 +1,17 @@
> > >> +/*
> > >> + * Copyrigh
Hi Steve,
> Hi, Lukasz
>
> On 15-07-07 06:33 AM, Lukasz Majewski wrote:
> > Hi Steve,
> >
> >> From: "JD (Jiandong) Zheng"
> >>
> >> Add the required files for the Broadcom UDC OTG interface.
> >>
> >> Signed-off-by: Steve Rae
> >> ---
> >>
> >> Changes in v2: None
> >>
> >> arch/arm/include/
Hi,
On 08-07-15 16:08, Simon Glass wrote:
+Masahiro
Hi Hans,
On 8 July 2015 at 05:56, Hans de Goede wrote:
Hi Simon,
On 07-07-15 09:00, Hans de Goede wrote:
Hi,
On 06-07-15 18:39, Simon Glass wrote:
Hi Hans,
On 5 July 2015 at 12:56, Hans de Goede wrote:
Some boards simply do not h
Hi Steve,
>
>
> On 15-07-07 06:27 AM, Lukasz Majewski wrote:
> > Hi Steve,
> >
> >> Signed-off-by: Steve Rae
> >> ---
> >>
> >> Changes in v2: None
> >>
> >> drivers/usb/gadget/s3c_udc_otg.c | 4
> >> 1 file changed, 4 insertions(+)
> >>
> >> diff --git a/drivers/usb/gadget/s3c_udc_otg.
On 8 July 2015 at 05:58, Marcel Ziswiler wrote:
> From: Marcel Ziswiler
>
> Allow showing custom board info from a checkboard() function being
> implemented if CONFIG_CUSTOM_BOARDINFO is specified. Previously the
> device tree model was always displayed not taking any
> CONFIG_CUSTOM_BOARDINFO i
On 8 July 2015 at 05:58, Marcel Ziswiler wrote:
>
> From: Marcel Ziswiler
>
> Various U-Boot adoptions/extensions to MTD/NAND/UBI did not take buffer
> alignment into account which led to failures of the following form:
>
> ERROR: v7_dcache_inval_range - start address is not aligned - 0x1f7f0108
On 23 June 2015 at 15:38, Simon Glass wrote:
> This is checking the wrong method. Fix it.
>
> Signed-off-by: Simon Glass
> ---
>
> Changes in v3: None
> Changes in v2: None
>
> drivers/cpu/cpu-uclass.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/cpu/cpu-uclas
+Masahiro
Hi Hans,
On 8 July 2015 at 05:56, Hans de Goede wrote:
> Hi Simon,
>
>
> On 07-07-15 09:00, Hans de Goede wrote:
>>
>> Hi,
>>
>> On 06-07-15 18:39, Simon Glass wrote:
>>>
>>> Hi Hans,
>>>
>>> On 5 July 2015 at 12:56, Hans de Goede wrote:
Some boards simply do not have any se
Hello Sharma,
On Wed, 8 Jul 2015 10:31:45 +, Sharma Bhupesh
wrote:
> Hi Albert
>
> > -Original Message-
> > From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net]
> > Sent: Wednesday, July 08, 2015 2:50 PM
> > To: Sharma Bhupesh-B45370
> > Cc: Wang Haikun-B53464; Bin Meng; Russell K
Remove duplicated entry of OF_CONTROL in crownbay_defconfig and
minnowmax_defconfig which causes a warning when making defconfig.
The updated defconfig files are generated by 'make savedefconfig'.
Signed-off-by: Bin Meng
---
configs/crownbay_defconfig | 14 ++
configs/minnowmax_def
Hi Peng,
On 30/06/2015 10:02, Peng Fan wrote:
> The reason to add different commands but not one CHECK_DATA_COMMAND is that
> compatible with current implementation.
> Current DCD supports "DATA 4 addr value". If want to use one
> CHECK_DATA_COMMAND
> to cover CHECK_BITS_SET/CLR, we need another
On Wednesday, July 08, 2015 at 01:58:47 PM, Marcel Ziswiler wrote:
> From: Marcel Ziswiler
>
> This patch fixes operation of our on-board AX88772B chip without EEPROM
> but with a ethaddr coming from the regular U-Boot environment. This is
> a forward port of some remaining parts initially implem
From: Max Krummenacher
http://lists.denx.de/pipermail/u-boot/2012-September/134347.html
allows for reading files in chunks from the shell.
When this feature is used to read past the end of a file an error
was returned instead of returning the bytes read up to the end of
file. Thus the following
From: Max Krummenacher
This fixes the following warning (and the runtime error reporting):
../common/image-fdt.c:491:4: warning: 'fdt_ret' may be used
uninitialized in this function [-Wmaybe-uninitialized]
Signed-off-by: Max Krummenacher
Signed-off-by: Marcel Ziswiler
Acked-by: Marek Vasut
Ac
From: Marcel Ziswiler
Various U-Boot adoptions/extensions to MTD/NAND/UBI did not take buffer
alignment into account which led to failures of the following form:
ERROR: v7_dcache_inval_range - start address is not aligned - 0x1f7f0108
ERROR: v7_dcache_inval_range - stop address is not aligned -
From: Max Krummenacher
CONFIG_TFTP_TSIZE should limit a tftp downloads progress to 50 '#'
chars. Make this work also for small files.
If the file size is small, i.e. smaller than 2 tftp block sizes the
number of '#' can get much larger. i.e. with a 1 byte file 65000
characters are printed, with
From: Marcel Ziswiler
Allow showing custom board info from a checkboard() function being
implemented if CONFIG_CUSTOM_BOARDINFO is specified. Previously the
device tree model was always displayed not taking any
CONFIG_CUSTOM_BOARDINFO into account.
Signed-off-by: Marcel Ziswiler
---
Changes in
From: Marcel Ziswiler
Remove spurious new line in configuration file.
Signed-off-by: Marcel Ziswiler
Tested-by: Marek Vasut
Acked-by: Marek Vasut
---
Changes in v2: none
include/configs/colibri_vf.h | 1 -
1 file changed, 1 deletion(-)
diff --git a/include/configs/colibri_vf.h b/include/co
From: Marcel Ziswiler
This patch fixes operation of our on-board AX88772B chip without EEPROM
but with a ethaddr coming from the regular U-Boot environment. This is
a forward port of some remaining parts initially implemented by
Antmicro.
Signed-off-by: Marcel Ziswiler
---
Changes in v2:
- run
From: Stefan Agner
Use the boot loader splash screen from WinCE which matches our
wallpapers position wise. Although the logo is an 8-bit indexed BMP as
well colours looked odd at first in U-Boot. After converting to full
RGB palette and converting back to an indexed BMP using imagemagick
the Log
From: Marcel Ziswiler
This patch set is an assortment of fixes/enhancements distilled
straight from our downstream integration work.
Marcel Ziswiler (4):
net: asix: fix operation without eeprom
generic-board: allow showing custom board info
colibri_vf: remove spurious new line
mtd/nand/u
Hi Simon,
On 07-07-15 09:00, Hans de Goede wrote:
Hi,
On 06-07-15 18:39, Simon Glass wrote:
Hi Hans,
On 5 July 2015 at 12:56, Hans de Goede wrote:
Some boards simply do not have any serial ports. Also no one will see the
panic message as there is no where to print it if no serial port is fo
Hi Bin,
On 07/08 11:18, Bin Meng wrote:
> Hi Andrew,
>
> On Wed, Jul 8, 2015 at 3:16 AM, wrote:
> > From: Andrew Bradford
> >
> > Allow for configuration of FSP UPD from the device tree which will
> > override any settings which the FSP was built with itself if the device
> > tree settings exi
Hi Albert
> -Original Message-
> From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net]
> Sent: Wednesday, July 08, 2015 2:50 PM
> To: Sharma Bhupesh-B45370
> Cc: Wang Haikun-B53464; Bin Meng; Russell King; Mark Rutland; Sun York-
> R58495; Kushwaha Prabhakar-B32579; u-boot@lists.denx.de
Hi Simon,
2015-07-07 2:32 GMT+09:00 Simon Glass :
> Hi Masahiro,
>
> On 6 July 2015 at 11:24, Masahiro Yamada
> wrote:
>>
>> Hi Simon,
>>
>>
>> 2015-06-24 8:29 GMT+09:00 Simon Glass :
>>
>> > +
>> > +static int rk3288_pinctrl_get_periph_id(struct udevice *dev,
>> > +
Hello Sharma,
On Wed, 8 Jul 2015 07:31:47 +, Sharma Bhupesh
wrote:
> > -Original Message-
> > From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Wang
> > Haikun
> > On 7/8/2015 3:13 PM, Bin Meng wrote:
> > > Hi,
> > >
> > > On Wed, Jul 8, 2015 at 2:51 PM, Wang Haikun
> >
On Wed, Jul 8, 2015 at 5:05 PM, Bin Meng wrote:
> Hi Simon,
>
> I've rebased my git repo on u-boot-x86/master branch and found one
> warning popped up:
>
> $ make crownbay_defconfig
> HOSTCC scripts/basic/fixdep
> HOSTCC scripts/kconfig/conf.o
> SHIPPED scripts/kconfig/zconf.tab.c
> SHIP
Hi Bin,
Thanks for your comments.
Please see my reply inline.
> -Original Message-
> From: Bin Meng [mailto:bmeng...@gmail.com]
> Sent: Wednesday, July 08, 2015 4:14 PM
> To: Lian Minghuan-B31939
> Cc: U-Boot Mailing List; Hu Mingkai-B21284; Sun York-R58495
> Subject: Re: [U-Boot] [PATCH
Hi Simon,
I've rebased my git repo on u-boot-x86/master branch and found one
warning popped up:
$ make crownbay_defconfig
HOSTCC scripts/basic/fixdep
HOSTCC scripts/kconfig/conf.o
SHIPPED scripts/kconfig/zconf.tab.c
SHIPPED scripts/kconfig/zconf.lex.c
SHIPPED scripts/kconfig/zconf.has
Hi Minghuan,
On Tue, Jul 7, 2015 at 7:55 PM, Minghuan Lian
wrote:
> PCIe extends device's configuration space to 4k and provides
> extended capability. The patch adds function to find them.
> The code is ported from Linux PCIe driver.
>
> Signed-off-by: Minghuan Lian
>
> ---
> drivers/pci/pci.c
> -Original Message-
> From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Wang
> Haikun
> On 7/8/2015 3:13 PM, Bin Meng wrote:
> > Hi,
> >
> > On Wed, Jul 8, 2015 at 2:51 PM, Wang Haikun
> wrote:
> >> On 6/26/2015 7:53 PM, Haikun Wang wrote:
> >>> From: Haikun Wang
> >>>
> >>
2015-07-08 13:29 GMT+09:00 Masahiro Yamada :
> diff --git a/drivers/core/devres.c b/drivers/core/devres.c
> index f24bcac..71f2f67 100644
> --- a/drivers/core/devres.c
> +++ b/drivers/core/devres.c
> @@ -13,6 +13,7 @@
> #include
> #include
> #include
> +#include
>
> struct devres {
>
1 - 100 of 102 matches
Mail list logo