(such as avoiding top
posting etc.) if you want a genuine response. Otherwise, your messages
would be considered simply as noise and no one would bother to respond.
Regards
Amit Virdi
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de
new driver implements the NAND interface part
of the peripheral.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/bitops.h | 11 +--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/arch/arm/include/asm/bitops.h b/arch/arm/include/asm
This patchset adds support for ST's FSMC controller. In the current u-boot, a
SPEAr specific driver exists for FSMC controller. This patchset adds a full
fledged driver that can be used across multiple platforms and removes the
obsolete SPEAr specific driver.
V1 -> V2
- Defined CONFIG_SYS_NAND_S
Signed-off-by: Amit Virdi
---
drivers/mtd/nand/Makefile |1 +
drivers/mtd/nand/fsmc_nand.c | 484 +
include/linux/mtd/fsmc_nand.h | 110 ++
3 files changed, 595 insertions(+), 0 deletions(-)
create mode 100644 drivers/mtd/nand/fsmc_nand.c
From: Vipin KUMAR
Since FSMC is a standard IP and it supports different memory interfaces, it
is supported independent of spear platform and spear is configured to use that
driver for interfacing with the NAND device
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include
From: Vipin KUMAR
Since, SPEAr platform uses generic FSMC driver now, so spear specific files
drivers/mtd/nand/spr_nand.c, arch/arm/include/asm/arch-spear/spr_nand.h are
removed
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/arch-spear/spr_nand.h | 57
duced so as to make the driver generic.
This patchset is rebased on "next".
Amit Virdi (4):
st_smi: Return error in case TFF is not set
st_smi: Change SMI timeout values
st_smi: Enhance the error handling
st_smi: Change timeout loop implementation
Armando Visconti (4):
st_
Curently the code makes wrong assumption that the Transfer finished flag shall
be set within the stipulated time. However, there may occur a scenario in which
the TFF flag is not set. Return error in that case.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
drivers/mtd/st_smi.c
renamed to st_smi.c and
st_smi.h and moved into drivers/mtd folder for reusability by other platforms
using smi controller peripheral.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
drivers/mtd/Makefile |2 +-
drivers/mtd/{spr_smi.c => st_sm
Signed-off-by: Amit Virdi
---
include/linux/mtd/st_smi.h |4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/mtd/st_smi.h b/include/linux/mtd/st_smi.h
index b7a78ac..04f81ea 100644
--- a/include/linux/mtd/st_smi.h
+++ b/include/linux/mtd/st_smi.h
@@ -109,8
This commit does the following:
- Reports error if SNOR flash is not found on the board
- Changes smi_read_sr to return error using which a retry mechanism is
implemented for reading flash status
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
drivers/mtd/st_smi.c | 34
From: Shiraz Hashim
Signed-off-by: Shiraz Hashim
Signed-off-by: Amit Virdi
---
drivers/mtd/st_smi.c |6 --
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/mtd/st_smi.c b/drivers/mtd/st_smi.c
index 7b4c6f3..eb902b2 100644
--- a/drivers/mtd/st_smi.c
+++ b/drivers
From: Vipin Kumar
smi_read_sr fails sometimes because of TFF not getting set within assumed time.
This condition may arise because of, for example, smi memory being in a erase
mode.
This fix is to enable reading the status register until timeout.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit
From: Armando Visconti
Since the smi erase code is very generic and works for any kind
of flash, there is no need to test for ST_M25Pxx_ID flash types
like m25p40 flashes).
Signed-off-by: Armando Visconti
Signed-off-by: Amit Virdi
---
drivers/mtd/st_smi.c | 50
From: Vipin KUMAR
SMI driver read status fails because the control register could not be
overwritten. Instead, the read status should be tried until timeout.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
drivers/mtd/st_smi.c |2 +-
1 files changed, 1 insertions(+), 1 deletions
From: Armando Visconti
THis patch introduces a new methodology for flash probing
in which flash_devices[] table, looked-up thru the dev_id, is
used to locate the flash geometry and information.
Signed-off-by: Armando Visconti
Signed-off-by: Amit Virdi
---
drivers/mtd/st_smi.c | 92
From: Armando Visconti
If the flash size was smaller than 1MB then flash_print_info()
was erroneously reporting 0 MB.
Signed-off-by: Armando Visconti
Signed-off-by: Amit Virdi
---
drivers/mtd/st_smi.c |9 +++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/drivers
There are two problems in the current timeout loop implementation:
1. In case initial test failing, there will always be a delay of 1 ms
2. The delay duration is not tunable
The new implementation addresses both these limitations.
Signed-off-by: Amit Virdi
---
drivers/mtd/st_smi.c | 27
From: Armando Visconti
Signed-off-by: Armando Visconti
Signed-off-by: Amit Virdi
---
drivers/mtd/st_smi.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/st_smi.c b/drivers/mtd/st_smi.c
index bd5602b..3f689e7 100644
--- a/drivers/mtd/st_smi.c
+++ b
emoved following config variables:
CONFIG_MONITOR_IS_IN_RAM
CONFIG_MTD_NAND_VERIFY_WRITE
- Defined CONFIG_EXTRA_ENV_UNLOCK only for SPEAr310 and SPEAr320
- Some cosmetic cleanups
Amit Virdi (6):
SPEAr: Fix ARM relocation support
SPEAr: Eliminate dependency on Xloader table
SPEAr: Initializ
relocation wasn't complete,
dram_init populated an uninitialized global variable resulting in corruption of
.rel.dyn area, which resulted in u-boot crash.
This commit fixes this problem by removing code that accesses bss segment
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
board/spear/c
Xloader table was used primarily to inform u-boot about the DDR size. However,
now the ddr size is calculated at runtime which eliminates any need for the
Xloader table. So removing this unnecessary code.
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
arch/arm/include/asm/arch-spear
From: Vipin KUMAR
ethaddr can be optionally read from i2c memory. So, chip_config command supports
reading/writing hw mac id into i2c memory. Placing this code within
CONFIG_CMD_NET as this would only be needed when network interface is configured
Signed-off-by: Vipin Kumar
Signed-off-by: Amit
From: Vipin KUMAR
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/arch-spear/hardware.h |1 +
board/spear/spear300/spear300.c| 10 ++
board/spear/spear310/spear310.c| 10 ++
board/spear/spear320/spear320.c
From: Vipin KUMAR
SPEAr310 and SPEAr320 SoCs have an extra ethernet controller. The
driver for this device is already supported by u-boot, so configuring
board configuration file and defining base addresses etc to make use
of the common driver
Signed-off-by: Vipin Kumar
Signed-off-by: Amit
From: Vipin KUMAR
Earlier, architecture specific init code was mixed with board initialization
code in board/spear/... This patch updates architecture support for SPEAr in
latest u-boot and prints the SoC information.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
From: Vipin KUMAR
SPEAr doesn't need CONFIG_SYS_HZ_CLOCK. This commit removes it.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
include/configs/spear-common.h |1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/include/configs/
. This
is necessary because the Parallel NOR flash connected on the spear310 and
spear320 boards, M28W64, has all its sectors in locked state at reset and these
have to be unlocked explicitly before being erased or written.
Signed-off-by: Vipin Kumar
Signed-off-by: Shiraz Hashim
Signed-off-by: Amit Vi
flash reading is required earlier than flash_init is called since the env_init
is called before flash_init. This makes the smi_init necessary before env_init
being called.
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
board/spear/common/spr_misc.c |8
include/configs/spear
configurations
1. Environment placed in NAND
2. Console on usb device
3. Console on usb device with environment placed in NAND
4. SPEAr310 and SPEAr320 support environment variables in parallel
NOR flash.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
board/spear/spear300/config.mk
From: Vipin Kumar
Few Designware peripheral registers need to be modified based on the
ethernet interface selected by the board. This patch supports interface
information in ethernet driver
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
board/spear/spear300/spear300.c | 11
command in u-boot starts to timeout
very often.
When Autoneg is ON, same phys started working perfectly.
Reported-by: Deepak Sikri
Reported-by: Armando Visconti
Signed-off-by: Shiraz Hashim
Signed-off-by: Amit Virdi
---
include/configs/spear-common.h |1 +
1 files changed, 1 insertions(+), 0
From: Vipin KUMAR
This patch enables the UDC and usb-console support only for usbtty
configurations
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
include/configs/spear-common.h |3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a
From: Vipin KUMAR
This patch enables the support for usb high speed device for spear platform SOCs
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
include/configs/spear-common.h |1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/configs/spear-common.h b
unlocked explicitly
before being erased or written.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
include/configs/spear3xx_evb.h |2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/configs/spear3xx_evb.h b/include/configs/spear3xx_evb.h
0m0.002s
sys 0m0.064s
After Enhancements
==
$ time ukermit.large -p /dev/ttyACM0 -f spear320_uImage.img
Downloading file: 100.00% completed(2014080/2014080 bytes)
real0m5.441s
user0m0.001s
sys 0m0.001s
Signed-off-by: Shiraz Hashim
Signed-off-by: Amit Virdi
---
board
booting from flash.
This patch corrects the definition of CONFIG_SYS_MONITOR_BASE and sets it to
TEXT_BASE
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
include/configs/spear-common.h |4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/configs/spear
From: Vipin Kumar
Enable CONFIG_SYS_FLASH_EMPTY_INFO macro to enable reporting of empty sector
information through flinfo command.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
include/configs/spear-common.h |3 ++-
1 files changed, 2 insertions(+), 1
From: Shiraz Hashim
UART in u-boot intends to run on 48MHz clock supplied by USB PLL.
Explicitly select the intended clock source.
Signed-off-by: Shiraz Hashim
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
arch/arm/cpu/arm926ejs/spear/cpu.c |7 ++-
arch/arm/include
When CONFIG_MTD_NAND_VERIFY_WRITE is defined, nand driver read back the data
everytime it writes. This process unnecessarily slows down the nand access.
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
include/configs/spear-common.h |1 -
1 files changed, 0 insertions(+), 1 deletions
From: Shiraz Hashim
SoC Core ID offset is 0x30 in miscellaneous configuration address
space. It was wrongly mentioned as periph2 clk enable.
Signed-off-by: Shiraz Hashim
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
arch/arm/include/asm/arch-spear/spr_misc.h |2 +-
1 files
In SPEAr configuration files, unnecessary paranthesis are used in some
\#defines. Remove them as they serve no purpose
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
arch/arm/include/asm/arch-spear/spr_gpt.h |4 ++--
include/configs/spear-common.h|8
include
In SPEAr, some of the configuration flags eg. CONFIG_SPEAR_EMI, were given value
"1", which isn't required. Define the flags without assigning any value
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
include/configs/spear-common.h | 16
include/configs
From: Vipin Kumar
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
Acked-by: Stefan Roese
---
include/configs/spear-common.h |2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/configs/spear-common.h b/include/configs/spear-common.h
index 89fbb15..ec4642f
() to read
link status from PHY.
- Print status and progress of auto negotiation.
- Print link status (speed, dupex) upon first usage.
Signed-off-by: Stefan Roese
Cc: Amit Virdi
Cc: Vipin Kumar
Cc: Joe Hershberger
---
drivers/net/designware.c | 114 +---
: 128 MiB
Tested on x600 (SPEAr600).
Signed-off-by: Stefan Roese
Cc: Amit Virdi
Cc: Vipin Kumar
Cc: Scott Wood
---
drivers/mtd/nand/nand_base.c |5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index bef79be..bfd6
Stefan,
On 5/8/2012 1:00 PM, Stefan Roese wrote:
Signed-off-by: Stefan Roese
Cc: Amit Virdi
Cc: Vipin Kumar
---
board/spear/common/Makefile |2 ++
board/spear/spear600/Makefile |2 ++
2 files changed, 4 insertions(+)
diff --git a/board/spear/common/Makefile b/board/spear/common
Hi Scott,
On 5/16/2012 2:44 AM, Scott Wood wrote:
On 05/07/2012 02:26 AM, Amit Virdi wrote:
+ while (num_err--) {
+ change_bit(0,&err_idx[i]);
+ change_bit(1,&err_idx[i]);
+
+ if (err_idx[i]< 512 * 8) {
+ change_
5,
>> +FSMC_VER6,
>> +FSMC_VER7,
>> +FSMC_VER8,
>> +};
>
> Is this really necessary?
>
Three fixups.
Signed-off-by: Amit Virdi
---
drivers/mtd/nand/fsmc_nand.c | 24 +---
include/linux/mtd/fsmc_nand.h | 12 ++--
2 files c
Three fixups.
Signed-off-by: Amit Virdi
Please discard this. I'll send changes in the V3 patchset.
Thanks
Amit Virdi
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
new driver implements the NAND interface part
of the peripheral.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/bitops.h | 11 +--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/arch/arm/include/asm/bitops.h b/arch/arm/include/asm
This patchset adds support for ST's FSMC controller. In the current u-boot, a
SPEAr specific driver exists for FSMC controller. This patchset adds a full
fledged driver that can be used across multiple platforms and removes the
obsolete SPEAr specific driver.
V2 -> V3
- Implemented timeout durin
From: Vipin KUMAR
Since FSMC is a standard IP and it supports different memory interfaces, it
is supported independent of spear platform and spear is configured to use that
driver for interfacing with the NAND device
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include
Signed-off-by: Amit Virdi
---
drivers/mtd/nand/Makefile |1 +
drivers/mtd/nand/fsmc_nand.c | 484 +
include/linux/mtd/fsmc_nand.h | 110 ++
3 files changed, 595 insertions(+), 0 deletions(-)
create mode 100644 drivers/mtd/nand/fsmc_nand.c
From: Vipin KUMAR
Since, SPEAr platform uses generic FSMC driver now, so spear specific files
drivers/mtd/nand/spr_nand.c, arch/arm/include/asm/arch-spear/spr_nand.h are
removed
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/arch-spear/spr_nand.h | 57
Kindly discard this patchset, it is same as V2 as I used older sha key
to generate the patchset. I'm so sorry for this mess. Sending the
correct patchset
On 5/16/2012 5:15 PM, Amit VIRDI wrote:
This patchset adds support for ST's FSMC controller. In the current u-boot, a
SPEA
This patchset adds support for ST's FSMC controller. In the current u-boot, a
SPEAr specific driver exists for FSMC controller. This patchset adds a full
fledged driver that can be used across multiple platforms and removes the
obsolete SPEAr specific driver.
V2 -> V3
- Implemented timeout durin
new driver implements the NAND interface part
of the peripheral.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/bitops.h | 11 +--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/arch/arm/include/asm/bitops.h b/arch/arm/include/asm
Signed-off-by: Amit Virdi
---
drivers/mtd/nand/Makefile |1 +
drivers/mtd/nand/fsmc_nand.c | 486 +
include/linux/mtd/fsmc_nand.h | 101 +
3 files changed, 588 insertions(+), 0 deletions(-)
create mode 100644 drivers/mtd/nand/fsmc_nand.c
From: Vipin KUMAR
Since FSMC is a standard IP and it supports different memory interfaces, it
is supported independent of spear platform and spear is configured to use that
driver for interfacing with the NAND device
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include
From: Vipin KUMAR
Since, SPEAr platform uses generic FSMC driver now, so spear specific files
drivers/mtd/nand/spr_nand.c, arch/arm/include/asm/arch-spear/spr_nand.h are
removed
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/arch-spear/spr_nand.h | 57
the data area are not contiguous here as
they are at different parts of RAM so we couldn't have done
if (err_idx[i]< (512+13) * 8) {
here.
You could still increment the error count.
Yes.
Thanks
Amit Virdi
___
U-Boot mailing list
U-Boot@lists
On 5/16/2012 10:24 PM, Scott Wood wrote:
On 05/16/2012 07:06 AM, Amit Virdi wrote:
+ if ((bits_ecc + bits_data)<= 8) {
+ if (bits_data)
+ memset(dat, 0xff, 512);
+ return bits_data;
return bits_d
This patchset adds support for ST's FSMC controller. In the current u-boot, a
SPEAr specific driver exists for FSMC controller. This patchset adds a full
fledged driver that can be used across multiple platforms and removes the
obsolete SPEAr specific driver.
V3->V4
- Removed local_irq_save and
. FSMC is a memory controller
peripheral from ST. The new driver implements the NAND interface part
of the peripheral.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/bitops.h |7 +--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/arch/arm
Signed-off-by: Amit Virdi
---
drivers/mtd/nand/Makefile |1 +
drivers/mtd/nand/fsmc_nand.c | 486 +
include/linux/mtd/fsmc_nand.h | 101 +
3 files changed, 588 insertions(+), 0 deletions(-)
create mode 100644 drivers/mtd/nand/fsmc_nand.c
From: Vipin KUMAR
Since FSMC is a standard IP and it supports different memory interfaces, it
is supported independent of spear platform and spear is configured to use that
driver for interfacing with the NAND device
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include
From: Vipin KUMAR
Since, SPEAr platform uses generic FSMC driver now, so spear specific files
drivers/mtd/nand/spr_nand.c, arch/arm/include/asm/arch-spear/spr_nand.h are
removed
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/arch-spear/spr_nand.h | 57
have interrupt support (at
least on powerpc -- not sure about ARM), so this should be atomic
against interrupts.
The NAND driver should be using __change_bit() instead.
Alright, I shall be soon sending V5 that drops this patch and uses
__change_bit directly.
Thanks
Amit
This patchset adds support for ST's FSMC controller. In the current u-boot, a
SPEAr specific driver exists for FSMC controller. This patchset adds a full
fledged driver that can be used across multiple platforms and removes the
obsolete SPEAr specific driver.
V4 -> V5
- Dropped the patch that de
From: Vipin KUMAR
Since FSMC is a standard IP and it supports different memory interfaces, it
is supported independent of spear platform and spear is configured to use that
driver for interfacing with the NAND device
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include
Signed-off-by: Amit Virdi
---
drivers/mtd/nand/Makefile |1 +
drivers/mtd/nand/fsmc_nand.c | 486 +
include/linux/mtd/fsmc_nand.h | 101 +
3 files changed, 588 insertions(+), 0 deletions(-)
create mode 100644 drivers/mtd/nand/fsmc_nand.c
From: Vipin KUMAR
Since, SPEAr platform uses generic FSMC driver now, so spear specific files
drivers/mtd/nand/spr_nand.c, arch/arm/include/asm/arch-spear/spr_nand.h are
removed
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/arch-spear/spr_nand.h | 57
Hi Wolfgang,
On 5/22/2012 9:21 PM, Wolfgang Denk wrote:
Dear Amit Virdi,
In message<4fbb6712.3040...@st.com> you wrote:
Alright, I shall be soon sending V5 that drops this patch and uses
__change_bit directly.
It would be a much better investment in time if you come up with
patche
On 5/22/2012 3:45 PM, Amit VIRDI wrote:
This patchset adds support for ST's FSMC controller. In the current u-boot, a
SPEAr specific driver exists for FSMC controller. This patchset adds a full
fledged driver that can be used across multiple platforms and removes the
obsolete SPEAr spe
This patchset adds support for ST's FSMC controller. In the current u-boot, a
SPEAr specific driver exists for FSMC controller. This patchset adds a full
fledged driver that can be used across multiple platforms and removes the
obsolete SPEAr specific driver.
V4 -> V5
- Dropped the patch that de
From: Vipin KUMAR
Since FSMC is a standard IP and it supports different memory interfaces, it
is supported independent of spear platform and spear is configured to use that
driver for interfacing with the NAND device
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include
Signed-off-by: Amit Virdi
---
drivers/mtd/nand/Makefile |1 +
drivers/mtd/nand/fsmc_nand.c | 487 +
include/linux/mtd/fsmc_nand.h | 101 +
3 files changed, 589 insertions(+), 0 deletions(-)
create mode 100644 drivers/mtd/nand/fsmc_nand.c
From: Vipin KUMAR
Since, SPEAr platform uses generic FSMC driver now, so spear specific files
drivers/mtd/nand/spr_nand.c, arch/arm/include/asm/arch-spear/spr_nand.h are
removed
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
arch/arm/include/asm/arch-spear/spr_nand.h | 57
Scott,
On 5/24/2012 10:04 PM, Vikram Narayanan wrote:
+/*
+ * (C) Copyright 2010
+ * Vipin Kumar, ST Micoelectronics, vipin.ku...@st.com.
+ *
+ * (C) Copyright 2012
+ * Amit Virdi, ST Micoelectronics, amit.vi...@st.com.
Fix the typo please. In all the copyright headers.
If you're fine
2012
+ * Amit Virdi, ST Micoelectronics, amit.vi...@st.com.
Regards
Amit Virdi
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
HTXFIFO | readl(&dma_p->opmode),&dma_p->opmode);
- writel(STOREFORWARD | TXSECONDFRAME,&dma_p->opmode);
+ writel(readl(&dma_p->opmode) | FLUSHTXFIFO | STOREFORWARD |
+ TXSECONDFRAME,&dma_p->opmode);
conf = FRAMEBURSTENAB
t for
SPEAr SoCs.
Anyways, I did try to compare the map files generated for the good and
the bad case but really couldn't conclude much!!
Any pointers?
Thanks
Amit Virdi
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
Albert,
Any suggestions?
Thanks
Amit Virdi
On 2/1/12, Amit Virdi wrote:
> Hi All,
>
> I'm in the process of updating platform support for spear series of
> SoC on the latest u-boot.
> I picked u-boot v2011.12. I tried compiling for different spear boards
> (spear 300
Adding Albert now...
On 2/3/12, Amit Virdi wrote:
> Albert,
>
> Any suggestions?
>
> Thanks
> Amit Virdi
>
> On 2/1/12, Amit Virdi wrote:
>> Hi All,
>>
>> I'm in the process of updating platform support for spear series of
>> SoC on th
Albert,
On Sat, Feb 4, 2012 at 8:35 AM, viresh kumar wrote:
> On Fri, Feb 3, 2012 at 10:24 AM, Albert ARIBAUD
> wrote:
> >>> On 2/1/12, Amit Virdi wrote:
> >>>> I'm in the process of updating platform support for spear series of
> >>>> SoC
Albert,
> Definitely a toolchain setting somewhere, and one that has disappeared in
> CS two years ago.
>
> Amicalement,
> --
> Albert.
>
Thanks a lot. Now I have got specific direction.
Best Regards
Amit Virdi
___
U-Boo
Signed-off-by: Amit Virdi
---
Makefile |8
boards.cfg |4
2 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/Makefile b/Makefile
index 0438f1e..1cee57f 100644
--- a/Makefile
+++ b/Makefile
@@ -655,14 +655,6 @@ ucname = $(shell echo $(1) | sed -e
ankful for any help.
Regards
Amit Virdi
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
Signed-off-by: Amit Virdi
---
board/spear/common/spr_misc.c | 20 +---
1 files changed, 1 insertions(+), 19 deletions(-)
diff --git a/board/spear/common/spr_misc.c b/board/spear/common/spr_misc.c
index 0812c20..3ab278f 100644
--- a/board/spear/common/spr_misc.c
+++ b/board
packet handling corrected
4. Dead code removed
5. Bulk out endpoint returns after servicing 1 interrupt and returns
back to service if more interrupts are pending
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
drivers/usb/gadget/designware_udc.c | 59
From: Vipin KUMAR
This patch adds the support for usb device high speed for designware peripheral.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
---
drivers/usb/gadget/designware_udc.c | 13 +
include/usb/designware_udc.h|3 +++
2 files changed, 12 insertions
From: Vipin KUMAR
The earlier usb device controller driver was specific to spear platforms. This
patch implements the usb device controller driver as a generic controller which
can be reused by other platforms using this peripheral.
Signed-off-by: Vipin Kumar
Signed-off-by: Amit Virdi
From: Shiraz Hashim
While receiving packets from FIFO sometimes the buffer provided was
nonaligned. Fix this by taking a temporary aligned buffer and then
copying the content to nonaligned buffer.
Signed-off-by: Shiraz Hashim
Signed-off-by: Amit Virdi
---
drivers/usb/gadget/designware_udc.c
Support for designware USB device controller (UDC) exists in the u-boot for
SPEAr platform. This patchset makes the driver more generic so that it can be
used across multiple platforms.
Shiraz Hashim (1):
USB:gadget:designware Fix memory nonalignment issue
Vipin KUMAR (3):
USB:gadget:designwa
On 2/17/2012 1:13 AM, Marek Vasut wrote:
Signed-off-by: Amit Virdi
Uh, are you sure the Subject correlates with the patch ?
M
Yeah. The fix is a part of the Relocation feature. For relocation, it is
essential that dram_init stores RAM size and do nothing more i.e. no
access to bss etc
Ciao Albert,
On Fri, Feb 17, 2012 at 2:53 PM, Albert ARIBAUD
wrote:
> Hi Amit,
>
> Le 15/02/2012 12:30, Amit Virdi a écrit :
>
> Hello All,
>>
>> While I'm running u-boot on spear320 board, I'm seeing a crash. The crash
>> happens during the .rel.dyn
Hello Marek,
On Fri, Feb 17, 2012 at 2:28 PM, Marek Vasut wrote:
> > On 2/17/2012 1:13 AM, Marek Vasut wrote:
> > >> Signed-off-by: Amit Virdi
> > >
> > > Uh, are you sure the Subject correlates with the patch ?
> > >
> > > M
> >
Ciao Albert,
On Fri, Feb 17, 2012 at 2:43 PM, Albert ARIBAUD
wrote:
> Hi Amit,
>
> Le 17/02/2012 05:06, Amit Virdi a écrit :
>
>
>> On 2/17/2012 1:13 AM, Marek Vasut wrote:
>>
>>> Signed-off-by: Amit Virdi
>>>>
>>>
>>>
Dear Marek,
On 10/16/2012 11:54 AM, Marek Vasut wrote:
Dear Amit Virdi,
[...]
Did we get any further with this patch please?
Vipin shall send V3 on this soon.
Regards
Amit Virdi
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de
1 - 100 of 258 matches
Mail list logo