[PATCH 4/5] ARM: phyCORE-AM335x: Add support for 2x512MB RAM

2014-09-04 Thread Teresa Gámez
Added settings for 1GB RAM option. Signed-off-by: Teresa Gámez t.ga...@phytec.de --- arch/arm/boards/phytec-phycore-am335x/lowlevel.c | 25 ++ images/Makefile.am33xx |4 +++ 2 files changed, 29 insertions(+), 0 deletions(-) diff --git

[PATCH 2/5] ARM: phyCORE-AM335x: Update RAM Timings

2014-09-04 Thread Teresa Gámez
Increased the RAM frequency to 400MHz. Recalculation of the RAM timing values was needed. Signed-off-by: Teresa Gámez t.ga...@phytec.de --- arch/arm/boards/phytec-phycore-am335x/lowlevel.c | 70 +++--- 1 files changed, 35 insertions(+), 35 deletions(-) diff --git

[PATCH 5/5] ARM: phyCORE-AM335x: Update partition table

2014-09-04 Thread Teresa Gámez
Added device tree partition and made rootfs partition variable size depending on nand flash size. Signed-off-by: Teresa Gámez t.ga...@phytec.de --- arch/arm/dts/am335x-phytec-phycore.dts | 22 ++ 1 files changed, 18 insertions(+), 4 deletions(-) diff --git

[PATCH 3/5] ARM: phyCORE-AM335x: Fixup RAM setting naming

2014-09-04 Thread Teresa Gámez
Naming is confusing and wrong. Fixed it up. Signed-off-by: Teresa Gámez t.ga...@phytec.de --- arch/arm/boards/phytec-phycore-am335x/lowlevel.c | 30 +++--- images/Makefile.am33xx | 18 ++-- 2 files changed, 24 insertions(+), 24 deletions(-)

[PATCH 1/5] ARM: phyCORE-AM335x: Updated SPI NOR dts entries

2014-09-04 Thread Teresa Gámez
Updated the SPI NOR flash entries. NOR flash got detected but did not work. - Updated muxing - Fixed frequency - Fixed CS - Removed first compatible entry (the flashes used is changing frequently) Signed-off-by: Teresa Gámez t.ga...@phytec.de --- arch/arm/dts/am335x-phytec-phycore.dts | 14

Re: [PATCH 5/5] ARM: phyCORE-AM335x: Update partition table

2014-09-04 Thread Alexander Aring
Hi Teresa, On Thu, Sep 04, 2014 at 08:50:40AM +0200, Teresa Gámez wrote: Added device tree partition and made rootfs partition variable size depending on nand flash size. Signed-off-by: Teresa Gámez t.ga...@phytec.de --- arch/arm/dts/am335x-phytec-phycore.dts | 22 ++

Re: [PATCH 5/5] ARM: phyCORE-AM335x: Update partition table

2014-09-04 Thread Alexander Aring
On Thu, Sep 04, 2014 at 09:12:58AM +0200, Alexander Aring wrote: Hi Teresa, On Thu, Sep 04, 2014 at 08:50:40AM +0200, Teresa Gámez wrote: Added device tree partition and made rootfs partition variable size depending on nand flash size. Signed-off-by: Teresa Gámez t.ga...@phytec.de

Re: [PATCH] Documentation: .gitignore: ignore 'commands/' generated directory

2014-09-04 Thread Sascha Hauer
On Wed, Sep 03, 2014 at 07:16:39PM +0400, Antony Pavlov wrote: Signed-off-by: Antony Pavlov antonynpav...@gmail.com Applied, thanks Sascha --- Documentation/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/.gitignore b/Documentation/.gitignore index

Re: [PATCH v3 2/3] pinctrl: at91: add pinctrl driver

2014-09-04 Thread Sascha Hauer
On Wed, Sep 03, 2014 at 05:10:33PM +0200, Raphaël Poggi wrote: This patch is perfect :-). You just miss to check the return value in at91_gpio_probe. Do I have to integrate this patch in mine ? or you will apply it yourself ? I just added the return value check, squashed the patch into your

[PATCH] Fix barebox metadata

2014-09-04 Thread Philipp Zabel
Patch 97e81f2d78f3 (Add support for metadata in barebox images) writes the wrong length for the model tag in the barebox metadata. Fix this to use the correct value. Signed-off-by: Philipp Zabel p.za...@pengutronix.de --- scripts/gen-dtb-s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

Re: [PATCH v3 2/3] pinctrl: at91: add pinctrl driver

2014-09-04 Thread Raphaël Poggi
Perfect thank you, so I just have to send one patch for the gpio clock registration. 2014-09-04 11:26 GMT+02:00 Sascha Hauer s.ha...@pengutronix.de: On Wed, Sep 03, 2014 at 05:10:33PM +0200, Raphaël Poggi wrote: This patch is perfect :-). You just miss to check the return value in

Re: [PATCH] Fix barebox metadata

2014-09-04 Thread Sascha Hauer
On Thu, Sep 04, 2014 at 11:28:20AM +0200, Philipp Zabel wrote: Patch 97e81f2d78f3 (Add support for metadata in barebox images) writes the wrong length for the model tag in the barebox metadata. Fix this to use the correct value. Signed-off-by: Philipp Zabel p.za...@pengutronix.de Applied,

v2014.09.0

2014-09-04 Thread Sascha Hauer
Hi All, After a long long holiday we have a September release. ome highlights for this release are: - barebox now has RTC support - Marvell MVEBU support has gained i2c and PCIe support - Canon PowerShot A1100 IS support - Freescale P1010 SoC support - barebox now runs as EFI payload on X86-64

[PATCH v3 0/4] firmware programming interface

2014-09-04 Thread Steffen Trumtrar
Hi! Changes since v2: - don't forget to call the close hook - change compatible to make it clear that passive-serial means a fpga programming mode - minor cleanup The interface was tested on a Socfpga SoCkit board with v2014.08.0. Regards, Steffen Juergen Beisert (2): Add a Firmware

[PATCH v3 1/4] Add a Firmware programming framework

2014-09-04 Thread Steffen Trumtrar
From: Juergen Beisert j...@pengutronix.de This framework handles a list of registered Firmware programming handlers to unify a firmware programming interface by hiding the details how to program a specific Firmware in its handler. This is created with FPGAs in mind but should be usable for other

[PATCH v3 4/4] Firmware: socfpga: Add SoCFPGA FPGA program support

2014-09-04 Thread Steffen Trumtrar
From: Sascha Hauer s.ha...@pengutronix.de Signed-off-by: Sascha Hauer s.ha...@pengutronix.de --- Changes since v2: - be sure to clear nce bit to allow HPS configuration arch/arm/dts/socfpga.dtsi | 6 + arch/arm/mach-socfpga/Makefile| 1 +

[PATCH v3 2/4] Firmware: provide a handler to program Altera FPGAs

2014-09-04 Thread Steffen Trumtrar
From: Juergen Beisert j...@pengutronix.de This handler uses a regular SPI master and a few GPIOs to program an Altera FPGA in serial mode. Signed-off-by: Juergen Beisert j...@pengutronix.de Signed-off-by: Sascha Hauer s.ha...@pengutronix.de Signed-off-by: Steffen Trumtrar

[PATCH v3 3/4] DT: Add binding for Altera FPGAs in passive-serial mode

2014-09-04 Thread Steffen Trumtrar
From: Sascha Hauer s.ha...@pengutronix.de Altera FPGAs that are programmed via SPI use the passive serial protocol. Add a simple binding that describes the setup for this usecase. Cc: devicet...@vger.kernel.org Signed-off-by: Sascha Hauer s.ha...@pengutronix.de Signed-off-by: Steffen Trumtrar

[RFC] ARM: dts: i.MX53: voipac: Provide NAND flash partition table

2014-09-04 Thread Rostislav Lisovy
Signed-off-by: Rostislav Lisovy lis...@gmail.com --- When compiled and loaded with the imx-usb-loader to RAM, the command saveenv and loadenv do work properly (i.e. loading environment from /dev/nand0.environment.bb). When I flash the barebox to the NAND with the barebox_update command and reboot

[PATCH] ARM: dts: i.MX53: voipac: Provide NAND flash partition table

2014-09-04 Thread Rostislav Lisovy
Signed-off-by: Rostislav Lisovy lis...@gmail.com --- This is a bit embarrassing but please ignore my previous email. Everything works just fine, I was constantly flashing the old binary without the partition table :-) arch/arm/dts/imx53-voipac-bsb.dts | 1 +

Re: picotcp tftp support [was Adding IPv4 multicast support]

2014-09-04 Thread Antony Pavlov
On Wed, 16 Jul 2014 08:48:18 +0200 Daniele Lacamera daniele.lacam...@tass.be wrote: On Wed, Jul 16, 2014 at 8:30 AM, Sascha Hauer s.ha...@pengutronix.de wrote: Right now the network users register to a udp port and provide a handler which is called whenever a packet to this port is received.

Re: [PATCH 1/5] ARM: phyCORE-AM335x: Updated SPI NOR dts entries

2014-09-04 Thread Sascha Hauer
Hi Teresa, On Thu, Sep 04, 2014 at 08:50:36AM +0200, Teresa Gámez wrote: Updated the SPI NOR flash entries. NOR flash got detected but did not work. - Updated muxing - Fixed frequency - Fixed CS - Removed first compatible entry (the flashes used is changing frequently) Signed-off-by:

Re: [PATCH] ARM: dts: i.MX53: voipac: Provide NAND flash partition table

2014-09-04 Thread Sascha Hauer
On Thu, Sep 04, 2014 at 05:44:11PM +0200, Rostislav Lisovy wrote: Signed-off-by: Rostislav Lisovy lis...@gmail.com --- This is a bit embarrassing but please ignore my previous email. Everything works just fine, I was constantly flashing the old binary without the partition table :-) :-)

Re: [PATCH] serial: imx: Fix for non-devicetree boards

2014-09-04 Thread Sascha Hauer
On Fri, Aug 15, 2014 at 11:10:03AM +0200, Philipp Zabel wrote: Commit 3843bfd0ab77eaf125ca617922927b61fc8ded74 serial: imx: Determine device name from device tree broke this driver for non-devicetree boards, since of_alias_get may not be called with a NULL pointer as first argument.