X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=onenand_ipl%2Fonenand_ipl.h;h=412572a08dcc59372d5da411e3d532852e8d10e7;hb=4e7b25e4fe777f525e426cbd58c3a3976c564f2e;hp=b9c6669a7b3c374cbd412305b8a8afb1e1a8f72e;hpb=92915741fc7c77175680e036965fb88d7552d743;p=u-boot diff --git a/onenand_ipl/onenand_ipl.h b/onenand_ipl/onenand_ipl.h index b9c6669a7b..412572a08d 100644 --- a/onenand_ipl/onenand_ipl.h +++ b/onenand_ipl/onenand_ipl.h @@ -23,22 +23,13 @@ #include -#define ONENAND_START_BLOCK 0 -#define ONENAND_BLOCK_SIZE 2048 +#define onenand_readw(a) readw(THIS_ONENAND(a)) +#define onenand_writew(v, a) writew(v, THIS_ONENAND(a)) -#ifndef CFG_PRINTF -#define printf(format, args...) -#endif - -#define onenand_readw(a) readw(a) -#define onenand_writew(v, a) writew(v, a) - -#define THIS_ONENAND(a) (CFG_ONENAND_BASE + (a)) +#define THIS_ONENAND(a) (CONFIG_SYS_ONENAND_BASE + (a)) #define READ_INTERRUPT() \ onenand_readw(THIS_ONENAND(ONENAND_REG_INTERRUPT)) -#define ONENAND_PAGE_SIZE 2048 - -extern int onenand_read_block(unsigned char *buf, ulong block); +extern int onenand_read_block(unsigned char *buf); #endif