On Mon, Jan 6, 2014 at 12:39 PM, Sourav Poddar wrote:
> On Saturday 04 January 2014 08:34 PM, Jagannadha Sutradharudu Teki wrote:
>>
>> QEB code comprises of couple of flash register read/write operations,
>> this patch moved flash register operations on to sf_op
>>
>> Signed-off-by: Jagannadha Su
Hi Sourav,
On Mon, Jan 6, 2014 at 12:10 PM, Sourav Poddar wrote:
> Hi Jagan,
>
> On Saturday 21 December 2013 12:50 PM, Jagannadha Sutradharudu Teki wrote:
>>
>> From: Jagannadha Sutradharudu
>> Teki
>>
>> From: "Poddar, Sourav"
>>
>> Add QSPI definitions and clock configuration support.
>>
>> Si
On Saturday 04 January 2014 08:34 PM, Jagannadha Sutradharudu Teki wrote:
This a suffix series for
http://u-boot.10912.n7.nabble.com/PATCH-v4-00-36-sf-Add-common-probe-and-extended-quad-read-write-cmds-support-td163949.html
for adding extended read and quad read/write commands support.
Concept:
Using the TPL/SPL method to booting from 8k page NAND flash.
- Add 256kB size SRAM tlb for second step booting;
- Add spl.c for TPL image boot;
- Add spl_minimal.c for minimal SPL image;
- Add C29XPCIE_NAND configure;
- Modify C29XPCIE.h for nand config and e
Using the TPL method for nand boot by sram was already
supported. Here add some code for mpc85xx ifc nand boot.
- For ifc, elbc, esdhc, espi, all need the SPL without
section .resetvec.
- Use a clear function name for nand spl boot.
- Add CONFIG_SPL_DRIVERS_MISC_SUP
On Saturday 04 January 2014 08:34 PM, Jagannadha Sutradharudu Teki wrote:
QEB code comprises of couple of flash register read/write operations,
this patch moved flash register operations on to sf_op
Signed-off-by: Jagannadha Sutradharudu Teki
---
drivers/mtd/spi/sf_internal.h | 11 ---
dr
On Saturday 04 January 2014 08:34 PM, Jagannadha Sutradharudu Teki wrote:
Discovered the read dummy_cycles based on the configured
read command.
Signed-off-by: Jagannadha Sutradharudu Teki
---
drivers/mtd/spi/sf_internal.h | 2 ++
drivers/mtd/spi/sf_ops.c | 10 ++
drivers/mtd/s
On 04.01.2014 20:36, Fabio Estevam wrote:
> From: Fabio Estevam
>
> There is no need to print an error message when cpu_eth_init() fails because
> net/eth.c already prints it.
>
> In order to simplify the code, just return the value from cpu_eth_init(bis)
> directly.
>
> Cc: Stefan Roese
> Sig
Like other architectures, CONFIG_AVR32 can be defined
in arch/avr32/config.mk rather than board header files.
Signed-off-by: Masahiro Yamada
Cc: Andreas Bießmann
---
arch/avr32/config.mk| 2 +-
include/configs/atngw100.h | 1 -
include/configs/atngw100mkii.h | 1 -
include/con
CONFIG_SH is defined in arch/sh/config.mk.
It is not necessary to define it in each board
header config header file.
Signed-off-by: Masahiro Yamada
Cc: Nobuhiro Iwamatsu
---
include/configs/MigoR.h | 1 -
include/configs/ap325rxa.h | 1 -
include/configs/ap_sh4a_4a.h | 1 -
include/confi
Commit 643aae1406c93ddc64fcf8c136b47cdffd9c8ccd
deleted include/linux/config.h but missed to
delete _LINUX_CONFIG_H macro.
It is no longer used at all.
Signed-off-by: Masahiro Yamada
---
Changes in v2:
- Fix a typo in the subject: s/obsolte/obsolete/
arch/powerpc/cpu/mpc5xx/start.S| 1 -
Hi Jagan,
On Saturday 21 December 2013 12:50 PM, Jagannadha Sutradharudu Teki wrote:
From: Jagannadha Sutradharudu Teki
From: "Poddar, Sourav"
Add QSPI definitions and clock configuration support.
Signed-off-by: Sourav Poddar
Reviewed-by: Jagannadha Sutradharudu Teki
---
V3: Added review tag
V
Commit 643aae1406c93ddc64fcf8c136b47cdffd9c8ccd
deleted include/linux/config.h but missed to
delete _LINUX_CONFIG_H macro.
It is no longer used at all.
Signed-off-by: Masahiro Yamada
---
arch/powerpc/cpu/mpc5xx/start.S| 1 -
arch/powerpc/cpu/mpc5xxx/start.S | 1 -
arch/powerpc/cpu/mpc824x/
On 4 January 2014 12:49, Marek Vasut wrote:
> On Friday, January 03, 2014 at 06:14:38 AM, Inderpal Singh wrote:
> > Hi Marek,
> >
> > Thanks for review.
> >
> > On 3 January 2014 06:26, Marek Vasut wrote:
> > > On Thursday, January 02, 2014 at 10:41:59 AM, Inderpal Singh wrote:
> > > > Arndale b
On 4 January 2014 12:46, Marek Vasut wrote:
> On Friday, January 03, 2014 at 06:03:47 AM, Inderpal Singh wrote:
> > Hi Marek,
> >
> > Thanks for the review.
> >
> > On 3 January 2014 06:24, Marek Vasut wrote:
> > > On Thursday, January 02, 2014 at 10:41:58 AM, Inderpal Singh wrote:
> > > > From:
Enable Erratum A006379 for T2080, T2081, T4160, B4420.
Signed-off-by: Shengzhou Liu
---
arch/powerpc/include/asm/fsl_errata.h | 6 +-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/arch/powerpc/include/asm/fsl_errata.h
b/arch/powerpc/include/asm/fsl_errata.h
index 8af6751..507
Cc: Anatolij Gustschin
On 04/01/14 01:43, Przemyslaw Marczak wrote:
> Changes:
> - le16_to_cpu() to get_unaligned_le16()
> - le32_to_cpu() to get_unaligned_le32()
> when access fields in struct bmp header.
>
> This changes avoids data abort exception caused by unaligned data access.
>
> Signed-o
Hi, Antonious
Expect your advice.
Best Regards,
-- Haijun
On 11/01/2013 03:44 PM, Zhang Haijun wrote:
Hi, Antonious
How about this patch?
Could you give some advice?
于 2013/10/21 17:23, Zhang Haijun 写道:
Hi, Babic
Thanks.
This patch is test on PPC.
Regards,
Haijun
于 2013/10/21 17:19,
Hi, Panto
Could you help review this patch set?
Best Regards,
-- Haijun
On 12/30/2013 04:20 PM, Haijun Zhang wrote:
Add command class define.
Add mmc erase and secure erase define.
Add secure erase and trim support bit define.
Signed-off-by: Haijun Zhang
---
changes for V5:
- Add som
Hi, Panto
This patch set are superseded.
There are revision five.
Best Regards,
-- Haijun
On 12/10/2013 04:20 PM, Haijun Zhang wrote:
From: Haijun Zhang
Add command class define.
Add mmc erase and secure erase define.
Add secure erase and trim support bit define.
Signed-off-by: Haijun Zhan
On 04/01/14 16:14, Marek Vasut wrote:
> On Friday, January 03, 2014 at 11:40:52 AM, Vivek Gautam wrote:
>> The gpio_*() apis require the exact gpio line number to deduce
>> the gpio bank and the gpio pin addresses.
>> So fix the gpio number for VBUS used for EHCI ports as well as
>> XHCI ports on e
On 04/01/14 16:14, Marek Vasut wrote:
> On Friday, January 03, 2014 at 11:40:53 AM, Vivek Gautam wrote:
>> Previously as a part of moving the VBUS gpio support to device tree
>> following patch removed this and added relevant support in driver:
>> 4a271cb exynos: usb: Switch USB VBUS GPIOs to be de
This is next version patch series for -
http://u-boot.10912.n7.nabble.com/PATCH-0-5-sf-Add-support-to-access-dual-flash-memory-td160223.html
"nr_flash" support look likes how many no.of flashes can be connected
to a controller from a given chipselect. Usually from every controller
we can connect s
This patch added support for accessing dual memories in
stacked connection with single chipselect line from controller.
For more info - see doc/SPI/README.nr-flash
Signed-off-by: Jagannadha Sutradharudu Teki
---
doc/SPI/README.nr-flash| 65 ++
dri
This patch added support for accessing dual memories in
parallel connection with single chipselect line from controller.
For more info - see doc/SPI/README.nr-flash
Signed-off-by: Jagannadha Sutradharudu Teki
---
doc/SPI/README.nr-flash| 27 +++
drivers/mtd/spi/sf_op
Unified the bar code from read_ops into a spi_flash_bar()
Signed-off-by: Jagannadha Sutradharudu Teki
---
drivers/mtd/spi/sf_ops.c | 13 +
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/drivers/mtd/spi/sf_ops.c b/drivers/mtd/spi/sf_ops.c
index 7a499d5..633a203 100644
-
This config will use for defining greater than single flash support.
currently - DUAL_STACKED and DUAL_PARALLEL.
Signed-off-by: Jagannadha Sutradharudu Teki
---
README | 6 ++
drivers/mtd/spi/sf.c | 3 ++-
drivers/mtd/spi/sf_ops.c | 14 ++
drivers/mt
Beagleboard XM doesn't have a NAND chip.
Let the configuration reflect so.
Signed-off-by: Sanjeev Premi
Cc: Tom Rini
---
Patch was created and tested against:
183acb70: Prepare v2013.10
Forward ported to latest master for submission.
Difference in binary sizes: MLO u-boot.img
B
Dear Dennis,
In message <20140104133617.43f70...@anubis.ausil.us> you wrote:
>
> > Sorry, but this "There is no reason to continue using uImage" is a
> > phrase which challenges my protest.
...
> It is all about the target use case, uImage and FIT images suit a
> useful purpose in an embedded use
29 matches
Mail list logo