[For next PATCH] ARM: phytec-som-am335x: Remove mmc rootfstype

2015-02-24 Thread Teresa Gámez
Rootfs type is beeing detected. Removed the rootfstype parameter. Signed-off-by: Teresa Gámez --- arch/arm/boards/phytec-som-am335x/defaultenv-physom-am335x/boot/mmc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boards/phytec-som-am335x/defaultenv-physom-am335x/bo

Re: [PATCH v2 1/2] arm: virt_to_phys should take a volatile ptr

2015-02-24 Thread Sascha Hauer
On Tue, Feb 24, 2015 at 10:00:18PM +0100, Lucas Stach wrote: > So users can pass in device memory pointers without provoking > warnings. > > Signed-off-by: Lucas Stach > --- > arch/arm/cpu/mmu.c | 2 +- > arch/arm/include/asm/mmu.h | 4 ++-- > 2 files changed, 3 insertions(+), 3 deletion

Re: [PATCH 2/3] friendlyarm-mini2440: add support for the W35 display

2015-02-24 Thread Sascha Hauer
On Tue, Feb 24, 2015 at 03:53:49PM +0100, Michael Olbrich wrote: > Signed-off-by: Michael Olbrich > --- > > I'm not quite sure about the sync flags. I tried to match what the kernel > does and it looks correct here. > > Michael > > arch/arm/boards/friendlyarm-mini2440/Kconfig| 6 ++ >

Re: [PATCH 3/3] ARM Samsung: add simple NAND barebox update handler

2015-02-24 Thread Sascha Hauer
On Tue, Feb 24, 2015 at 03:53:50PM +0100, Michael Olbrich wrote: > Signed-off-by: Michael Olbrich > --- > > I'm not sure if writing to /dev/nand0.barebox.bb is correct. But from what > I can tell, the nand boot code cannot handle bad blocks, so it probably > doesn't matter anyways. So when the b

Re: [For next PATCH 3/3] ARM: phytec-som-am335x: Update sd-card rootfs to ext4

2015-02-24 Thread Teresa Gámez
Am Mittwoch, den 25.02.2015, 08:22 +0100 schrieb Sascha Hauer: > On Tue, Feb 24, 2015 at 08:52:14AM +0100, Teresa Gámez wrote: > > Update rootfs to ext4. ext3 filesystems are still getting mounted. > > > > Signed-off-by: Teresa Gámez > > --- > > arch/arm/boards/phytec-som-am335x/defaultenv-physo

Re: [PATCH 1/3] ARM Samsung: fix booting from NAND without pbl

2015-02-24 Thread Sascha Hauer
On Tue, Feb 24, 2015 at 03:53:48PM +0100, Michael Olbrich wrote: > This was broken in 558d72dc5116 (ARM Samsung: fix booting from NAND with > pbl). '_text' is TEXT_BASE when building without pbl and (TEXT_BASE - > SZ_2M) when building with pbl, so this works in both cases. > > Signed-off-by: Micha

Re: [For next PATCH 1/3] ARM: phytec-som-am335x: Fix rootfs bootargs

2015-02-24 Thread Sascha Hauer
On Tue, Feb 24, 2015 at 08:52:12AM +0100, Teresa Gámez wrote: > The roofs is mounted from nand when booting from spi. The VID header offset > was set fix to 2048. This is not needed any more. Removed it like it was done > for nand. > > Signed-off-by: Teresa Gámez > --- > arch/arm/boards/phytec-s

Re: [For next PATCH 3/3] ARM: phytec-som-am335x: Update sd-card rootfs to ext4

2015-02-24 Thread Sascha Hauer
On Tue, Feb 24, 2015 at 08:52:14AM +0100, Teresa Gámez wrote: > Update rootfs to ext4. ext3 filesystems are still getting mounted. > > Signed-off-by: Teresa Gámez > --- > arch/arm/boards/phytec-som-am335x/defaultenv-physom-am335x/boot/mmc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >

[PATCH v2 1/2] arm: virt_to_phys should take a volatile ptr

2015-02-24 Thread Lucas Stach
So users can pass in device memory pointers without provoking warnings. Signed-off-by: Lucas Stach --- arch/arm/cpu/mmu.c | 2 +- arch/arm/include/asm/mmu.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/cpu/mmu.c b/arch/arm/cpu/mmu.c index e733ec4..aaf

[PATCH v2 2/2] net: rtl8169: silence compiler warning

2015-02-24 Thread Lucas Stach
Silence warning about cast from volatile to normal pointer, as this is the intended bhavior here. Signed-off-by: Lucas Stach --- drivers/net/rtl8169.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/rtl8169.c b/drivers/net/rtl8169.c index 19f5763..f8a6500 1006

[PATCH 1/3] ARM Samsung: fix booting from NAND without pbl

2015-02-24 Thread Michael Olbrich
This was broken in 558d72dc5116 (ARM Samsung: fix booting from NAND with pbl). '_text' is TEXT_BASE when building without pbl and (TEXT_BASE - SZ_2M) when building with pbl, so this works in both cases. Signed-off-by: Michael Olbrich --- I hope I understood how this should work and this is corre

[PATCH 2/3] friendlyarm-mini2440: add support for the W35 display

2015-02-24 Thread Michael Olbrich
Signed-off-by: Michael Olbrich --- I'm not quite sure about the sync flags. I tried to match what the kernel does and it looks correct here. Michael arch/arm/boards/friendlyarm-mini2440/Kconfig| 6 ++ arch/arm/boards/friendlyarm-mini2440/mini2440.c | 17 + 2 files chan

[PATCH 3/3] ARM Samsung: add simple NAND barebox update handler

2015-02-24 Thread Michael Olbrich
Signed-off-by: Michael Olbrich --- I'm not sure if writing to /dev/nand0.barebox.bb is correct. But from what I can tell, the nand boot code cannot handle bad blocks, so it probably doesn't matter anyways. Michael arch/arm/boards/friendlyarm-mini2440/mini2440.c | 3 + arch/arm/mach-samsung/Kc