On Sat, Jul 25, 2015 at 02:41:20PM +0200, Hans de Goede wrote:
> Hi Tom,
>
> Here is the first sunxi pull-req for v2015.10, highlights:
>
> -Some preparation patches for adding SPL nand support
> -Your patch to cleanup the sunxi defconfigs
> -Add device-model support to the sunxi musb-host code,
On Fri, Jul 24, 2015 at 10:12:46PM +0200, Marek Vasut wrote:
> The following changes since commit b217c89e8565ade3aaa9f74c33c93236bf151187:
>
> Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2015-07-20
> 17:12:52 -0400)
>
> are available in the git repository at:
>
> git://gi
On Fri, Jul 24, 2015 at 07:56:46AM +, Luka Perkov wrote:
> Hi Tom,
>
> can you please pull this batch from Stefan as well?
>
> This pull request does not contain patches that are still under review.
> Pull request for those will be sent another time.
>
> The following changes since commit 4
This is commented out in the Makefile for more than 10 years.
I assume it is proof that this tool is unused.
Signed-off-by: Masahiro Yamada
Cc: Pantelis Antoniou
---
tools/.gitignore | 1 -
tools/Makefile | 4 --
tools/mpc86x_clk.c | 202 --
The menuconfig for drivers are getting more and more cluttered
and unreadable because too many entries are displayed in a single
flat menu. Use hierarchic menu for each category.
Signed-off-by: Masahiro Yamada
---
drivers/core/Kconfig | 4
drivers/crypto/Kconfig | 4
drivers/demo/K
Here is an updated PR on u-boot/master.
The following changes since commit 413978d118bb7d7b0a8488d97d802f2899cd81ce:
Merge git://git.denx.de/u-boot-uniphier (2015-07-23 11:46:05 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-usb.git HEAD
for you to fetch changes up
[prune cc]
Hi Lukasz,
On 25 July 2015 at 09:02, Lukasz Majewski wrote:
> On Sat, 25 Jul 2015 14:24:43 +0200
> Wolfgang Denk wrote:
>
>> Dear Lukasz Majewski,
>>
>> In message <1437811877-13764-3-git-send-email-l.majew...@majess.pl>
>> you wrote:
>> > This change gives the ability to reuse the
Le samedi 25 juillet 2015 à 16:47 +0200, Paul Kocialkowski a écrit :
> Le vendredi 24 juillet 2015 à 21:54 +0200, Marek Vasut a écrit :
> > On Friday, July 24, 2015 at 07:24:28 PM, Paul Kocialkowski wrote:
> > > Le jeudi 23 juillet 2015 à 09:15 +0200, Lukasz Majewski a écrit :
> > > > Hi Paul,
> >
Le vendredi 24 juillet 2015 à 21:54 +0200, Marek Vasut a écrit :
> On Friday, July 24, 2015 at 07:24:28 PM, Paul Kocialkowski wrote:
> > Le jeudi 23 juillet 2015 à 09:15 +0200, Lukasz Majewski a écrit :
> > > Hi Paul,
> > >
> > > > Le lundi 20 juillet 2015 à 14:57 +0200, Lukasz Majewski a écrit :
Hi Bin,
On 25 July 2015 at 04:44, Bin Meng wrote:
> This needs to be squashed into commit e34580b to fix the build error
> in pci_auto_config_devices().
>
> Signed-off-by: Bin Meng
> ---
>
> drivers/pci/pci-uclass.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/driver
Dear Lukasz Majewski,
In message <1437811877-13764-3-git-send-email-l.majew...@majess.pl> you wrote:
> This change gives the ability to reuse the header file by other
> subsystems (like e.g. dfu).
>
> Without this change compilation error emerges for the legacy update.c file.
>
> Signed-off-by:
Discard the empty video_set_lut function from platform video
drivers.
This commit "69d275458893eaec35229b589092c2a6bde5440f" introduces
a weak function video_set_lut, so we do not need an strong function
in platform drivers, which does nothing.
Signed-off-by: Peng Fan
---
drivers/video/da8xx-fb
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 device is really bound, and cleared when it is unbound.
Signed-off-by: Masah
Currently, Devres requires additional 16 byte for each allocation,
which is not so insignificant in some cases.
Add CONFIG_DEVRES to make this framework optional.
If the option is disabled, devres functions fall back to
non-managed variants. For example, devres_alloc() to kzalloc(),
devm_kmalloc(
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. Nevertheless, some drivers still
need to allocate/free memory on thei
This new command can dump all device resources associated to
each device. The fields in every line shows:
- The address of the resource
- The size of the resource
- The name of the release function
- The stage in which the resource has been acquired (BIND/PROBE)
Currently, there is no dri
This is version 4 of Devres series.
Simon, Albert and I discussed whether we need (want) to
get this framework in.
Looks like our agreement is that we can add Devres, but
keeping it optional. The DM core part still sticks to the
manual malloc() and free().
With CONFIG_DEVRES disabled, devres AP
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
Acked-by: Simon Glass
---
Changes in v4: None
Changes in v3: None
Hi Tom,
Here is the first sunxi pull-req for v2015.10, highlights:
-Some preparation patches for adding SPL nand support
-Your patch to cleanup the sunxi defconfigs
-Add device-model support to the sunxi musb-host code, allowing
it to be built at the same time as the ehci & uhci code and
enabl
Hi Simon,
2015-07-24 8:21 GMT+09:00 Simon Glass :
> Hi Masahiro,
>
> On 23 July 2015 at 00:17, Masahiro Yamada
> wrote:
>> This new command can dump all device resources associated to
>> each device. The fields in every line shows:
>> - The address of the resource
>> - The size of the reso
2015-07-24 8:20 GMT+09:00 Simon Glass :
> Hi Masahiro,
>
> On 23 July 2015 at 00:17, 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 .pri
Hi Simon,
On Sat, Jul 25, 2015 at 4:31 AM, Simon Glass wrote:
> Hi Bin,
>
> I've merged in u-boot-x86/master to upstream/master and pushed it to
> u-boot-x86/testing.
>
> Can you please give it a test and make sure your PCI fixes are still correct?
>
It indeed has one merge issue and I've sent a
Documentation file for DFU extension. With this functionality it is now
possible to transfer FIT images with firmware updates via TFTP and use
DFU backend for storing them.
Signed-off-by: Lukasz Majewski
---
Changes for v2:
- Remove section regarding update_tftp() specific environment variables
-
The "dfu" command has been extended to support transfers via TFTP protocol.
Signed-off-by: Lukasz Majewski
---
Changes for v2:
- Remove "dfutftp" command
- Modify "dfu" command to support optional [tftp] parameter
- Only one flag (CONFIG_DFU_TFTP) needs to be enabled
---
common/cmd_dfu.c | 25 ++
This change gives the ability to reuse the header file by other
subsystems (like e.g. dfu).
Without this change compilation error emerges for the legacy update.c file.
Signed-off-by: Lukasz Majewski
---
Changes for v2:
- Move tftp.h from ./include to ./include/net/ directory
---
include/net/t
This function allows writing via DFU data stored from fixed buffer address
(like e.g. loadaddr env variable).
Such predefined buffers are used in the update_tftp() code. In fact this
function is a wrapper on the dfu_write() and dfu_flush().
Signed-off-by: Lukasz Majewski
---
Changes for v2:
- Us
Signed-off-by: Lukasz Majewski
---
Changes for v2:
- Do not enable CONFIG_UPDATE_TFTP since CONFIG_DFU_TFTP enables the common code
- Do not enable CONFIG_CMD_DFUTFTP since dfutftp commands has been removed
---
include/configs/am335x_evm.h | 8
1 file changed, 8 insertions(+)
diff --git
Up till now it was impossible to use code from update.c when system
was not equipped with raw FLASH memory.
Such behavior prevented DFU from reusing this code.
Signed-off-by: Lukasz Majewski
Acked-by: Joe Hershberger
---
Changes for v2:
- None
---
common/update.c | 15 +++
1 file c
This commit adds initial support for using tftp for downloading and
upgrading firmware on the device.
Signed-off-by: Lukasz Majewski
---
Changes for v2:
- Return -ENOSYS instead of plain -1
- Remove interface and devstring env variables reading in the dfu_tftp_write()
- Those parameters are now p
This commit series enables DFU subsystem to use ETH and TFTP protocol as
a medium for downloading data, which should bring substantial speedup
for writing large files (like rootfs).
Please read provided ./doc/README.dfutftp documentation entry for more
information.
Those patches should be applie
In the dfu-util it is possible to set major:minor number by unsing -d flag
(-d 0451:d022).
Such option is very handy when many DFU devices are connected to a single
host PC. This commit allows testing when above situation emerges.
Signed-off-by: Lukasz Majewski
---
Changes for v2:
- New patch
---
This code allows using DFU defined mediums for storing data received via
TFTP protocol.
It reuses and preserves functionality of legacy code at common/update.c.
The update_tftp() function now accepts parameters - namely medium device
name and its number (e.g. mmc 1).
Without this information pas
This needs to be squashed into commit e34580b to fix the build error
in pci_auto_config_devices().
Signed-off-by: Bin Meng
---
drivers/pci/pci-uclass.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c
index e87b7d0..c7d93f9
Currently the serial code assumes that there is always at least one serial
port (and panics / crashes due to null pointer dereferences when there is
none).
This makes it impossible to use u-boot on boards where there is no (debug)
serial port, because e.g. all uart pins are muxed to another functi
34 matches
Mail list logo