]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
OneNAND: Remove base address offset usage
authordirk.behme@googlemail.com <dirk.behme@googlemail.com>
Sun, 10 Aug 2008 15:56:36 +0000 (17:56 +0200)
committerWolfgang Denk <wd@denx.de>
Sun, 10 Aug 2008 20:45:04 +0000 (22:45 +0200)
commitaa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
tree40f126ae48746bdb6b103b3b05fdece68e204f26
parentc11528083ef6e55e76df742228c26e39d151813d
OneNAND: Remove base address offset usage

While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
using OneNAND and some using NAND, we found some differences in OneNAND and
NAND command address handling.

As this might confuse users (it already confused us), we like to align OneNAND
and NAND address handling.

The issue is that cmd_onenand.c subtracts the onenand base address from the
addresses you type into the u-boot command line so, unlike nand, you can't
use addresses relative to the start of the onenand part e.g. this won't work:

onenand read 82000000 280000 400000

you have to use:

onenand read 82000000 20280000 400000

Looking at recent git, the only board currently using OneNAND is Apollon, and
for this the OneNAND base address is 0 (apollon.h)

#define CFG_ONENAND_BASE 0x00000000

so patch below won't break any existing boards and will align OneNAND and NAND
handling on boards where OneNAND base address is != 0.

Signed-off-by: Steve Sakoman <sakoman@gmail.com>
Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
common/cmd_onenand.c
common/env_onenand.c