diff options
| -rw-r--r-- | include/configs/ASH405.h | 6 | ||||
| -rw-r--r-- | include/configs/CMS700.h | 2 | ||||
| -rw-r--r-- | include/configs/HH405.h | 2 | ||||
| -rw-r--r-- | include/configs/HUB405.h | 2 | ||||
| -rw-r--r-- | include/configs/IDS8247.h | 2 | ||||
| -rw-r--r-- | include/configs/PLU405.h | 2 | ||||
| -rw-r--r-- | include/configs/PPChameleonEVB.h | 3 | ||||
| -rw-r--r-- | include/configs/TQM8272.h | 2 | ||||
| -rw-r--r-- | include/configs/TQM85xx.h | 2 | ||||
| -rw-r--r-- | include/configs/VOH405.h | 2 | ||||
| -rw-r--r-- | include/configs/WUH405.h | 2 | ||||
| -rw-r--r-- | include/configs/acadia.h | 2 | ||||
| -rw-r--r-- | include/configs/kilauea.h | 2 | ||||
| -rw-r--r-- | include/configs/quad100hd.h | 2 | ||||
| -rw-r--r-- | include/configs/sc3.h | 1 | ||||
| -rw-r--r-- | include/configs/socrates.h | 2 | 
16 files changed, 34 insertions, 2 deletions
| diff --git a/include/configs/ASH405.h b/include/configs/ASH405.h index 2ee4f809d..694a87b97 100644 --- a/include/configs/ASH405.h +++ b/include/configs/ASH405.h @@ -157,8 +157,10 @@  #define CONFIG_SYS_NAND_CLE            (0x80000000 >> 2)   /* our CLE is GPIO2 */  #define CONFIG_SYS_NAND_ALE            (0x80000000 >> 3)   /* our ALE is GPIO3 */ -#define CONFIG_SYS_NAND_SKIP_BAD_DOT_I 1       /* ".i" read skips bad blocks   */ -#define CONFIG_SYS_NAND_QUIET          1 +#define CONFIG_SYS_NAND_SKIP_BAD_DOT_I	1	/* ".i" read skips bad blocks   */ +#define CONFIG_SYS_NAND_QUIET		1 + +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */  /*-----------------------------------------------------------------------   * PCI stuff diff --git a/include/configs/CMS700.h b/include/configs/CMS700.h index ae8494d57..2384925a2 100644 --- a/include/configs/CMS700.h +++ b/include/configs/CMS700.h @@ -165,6 +165,8 @@  #define CONFIG_SYS_NAND_SKIP_BAD_DOT_I 1       /* ".i" read skips bad blocks   */  #define CONFIG_SYS_NAND_QUIET          1 +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  /*   * For booting Linux, the board info and command line data   * have to be in the first 8 MB of memory, since this is diff --git a/include/configs/HH405.h b/include/configs/HH405.h index 92335239d..1a2266ff7 100644 --- a/include/configs/HH405.h +++ b/include/configs/HH405.h @@ -219,6 +219,8 @@  #define CONFIG_SYS_NAND_SKIP_BAD_DOT_I 1       /* ".i" read skips bad blocks   */  #define CONFIG_SYS_NAND_QUIET          1 +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  /*-----------------------------------------------------------------------   * PCI stuff   *----------------------------------------------------------------------- diff --git a/include/configs/HUB405.h b/include/configs/HUB405.h index ea502d42c..518d94d61 100644 --- a/include/configs/HUB405.h +++ b/include/configs/HUB405.h @@ -160,6 +160,8 @@  #define CONFIG_SYS_NAND_SKIP_BAD_DOT_I 1       /* ".i" read skips bad blocks   */  #define CONFIG_SYS_NAND_QUIET          1 +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  /*-----------------------------------------------------------------------   * PCI stuff   *----------------------------------------------------------------------- diff --git a/include/configs/IDS8247.h b/include/configs/IDS8247.h index 51e012cc4..4c4af054b 100644 --- a/include/configs/IDS8247.h +++ b/include/configs/IDS8247.h @@ -265,6 +265,8 @@  #define CONFIG_SYS_NAND0_BASE 0xE1000000  #define CONFIG_SYS_MAX_NAND_DEVICE     1       /* Max number of NAND devices           */ +#define CONFIG_SYS_64BIT_VSPRINTF		/* needed for nand_util.c */ +  #endif /* CONFIG_CMD_NAND */  /*----------------------------------------------------------------------- diff --git a/include/configs/PLU405.h b/include/configs/PLU405.h index 7f2337bac..2e41526af 100644 --- a/include/configs/PLU405.h +++ b/include/configs/PLU405.h @@ -183,6 +183,8 @@  #define CONFIG_SYS_NAND_SKIP_BAD_DOT_I 1       /* ".i" read skips bad blocks   */  #define CONFIG_SYS_NAND_QUIET          1 +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  /*   * PCI stuff   */ diff --git a/include/configs/PPChameleonEVB.h b/include/configs/PPChameleonEVB.h index 16baf8c9b..6331464ec 100644 --- a/include/configs/PPChameleonEVB.h +++ b/include/configs/PPChameleonEVB.h @@ -210,6 +210,9 @@   * NAND-FLASH stuff   *-----------------------------------------------------------------------   */ + +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  /*   * nand device 1 on dave (PPChameleonEVB) needs more time,   * so we just introduce additional wait in nand_wait(), diff --git a/include/configs/TQM8272.h b/include/configs/TQM8272.h index 9cac696b9..6c462af53 100644 --- a/include/configs/TQM8272.h +++ b/include/configs/TQM8272.h @@ -439,6 +439,8 @@  	WRITE_NAND(d, addr); \  } while(0) +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  #endif /* CONFIG_CMD_NAND */  #define	CONFIG_PCI diff --git a/include/configs/TQM85xx.h b/include/configs/TQM85xx.h index 6f13c63f5..cc3649e50 100644 --- a/include/configs/TQM85xx.h +++ b/include/configs/TQM85xx.h @@ -374,6 +374,8 @@  #define NAND_BIG_DELAY_US		25	/* max tR for Samsung devices	*/ +#define CONFIG_SYS_64BIT_VSPRINTF		/* needed for nand_util.c */ +  #endif /* CONFIG_NAND */  /* diff --git a/include/configs/VOH405.h b/include/configs/VOH405.h index 38a1d0dec..17397e8aa 100644 --- a/include/configs/VOH405.h +++ b/include/configs/VOH405.h @@ -169,6 +169,8 @@  #define CONFIG_SYS_NAND_SKIP_BAD_DOT_I 1       /* ".i" read skips bad blocks   */  #define CONFIG_SYS_NAND_QUIET          1 +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  /*-----------------------------------------------------------------------   * PCI stuff   *----------------------------------------------------------------------- diff --git a/include/configs/WUH405.h b/include/configs/WUH405.h index 5c281a1a6..dbfa1aae9 100644 --- a/include/configs/WUH405.h +++ b/include/configs/WUH405.h @@ -157,6 +157,8 @@  #define CONFIG_SYS_NAND_SKIP_BAD_DOT_I      1  /* ".i" read skips bad blocks   */ +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  /*-----------------------------------------------------------------------   * PCI stuff   *----------------------------------------------------------------------- diff --git a/include/configs/acadia.h b/include/configs/acadia.h index 9ffd86b1a..b71010769 100644 --- a/include/configs/acadia.h +++ b/include/configs/acadia.h @@ -265,6 +265,8 @@  #define CONFIG_SYS_NAND_BASE		(CONFIG_SYS_NAND_ADDR + CONFIG_SYS_NAND_CS)  #define CONFIG_SYS_NAND_SELECT_DEVICE  1	/* nand driver supports mutipl. chips	*/ +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  /*-----------------------------------------------------------------------   * External Bus Controller (EBC) Setup   *----------------------------------------------------------------------*/ diff --git a/include/configs/kilauea.h b/include/configs/kilauea.h index 97bac9959..df1b0612c 100644 --- a/include/configs/kilauea.h +++ b/include/configs/kilauea.h @@ -217,6 +217,8 @@  #define CONFIG_SYS_NAND_BASE		(CONFIG_SYS_NAND_ADDR + CONFIG_SYS_NAND_CS)  #define CONFIG_SYS_NAND_SELECT_DEVICE  1	/* nand driver supports mutipl. chips	*/ +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  /*-----------------------------------------------------------------------   * DDR SDRAM   *----------------------------------------------------------------------*/ diff --git a/include/configs/quad100hd.h b/include/configs/quad100hd.h index 3ea854bec..d63c43e93 100644 --- a/include/configs/quad100hd.h +++ b/include/configs/quad100hd.h @@ -225,6 +225,8 @@  #define CONFIG_SYS_NAND_CLE	31   /* our CLE is GPIO31 */  #define CONFIG_SYS_NAND_ALE	30   /* our ALE is GPIO30 */  #define CONFIG_SYS_MAX_NAND_DEVICE	1 + +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */  #endif  /*----------------------------------------------------------------------- diff --git a/include/configs/sc3.h b/include/configs/sc3.h index 97e1da22b..7e00ab8c7 100644 --- a/include/configs/sc3.h +++ b/include/configs/sc3.h @@ -426,6 +426,7 @@ extern unsigned long offsetOfEnvironment;  #define CONFIG_SYS_MAX_NAND_DEVICE	1  #define CONFIG_SYS_NAND_BASE		0x77D00000 +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */  #define CONFIG_JFFS2_NAND 1			/* jffs2 on nand support */ diff --git a/include/configs/socrates.h b/include/configs/socrates.h index 5b91b4d7c..35feed0fe 100644 --- a/include/configs/socrates.h +++ b/include/configs/socrates.h @@ -188,6 +188,8 @@  #define CONFIG_SYS_MAX_NAND_DEVICE	1  #define CONFIG_CMD_NAND +#define CONFIG_SYS_64BIT_VSPRINTF	/* needed for nand_util.c */ +  /* LIME GDC */  #define CONFIG_SYS_LIME_BASE		0xc8000000  #define CONFIG_SYS_LIME_SIZE		0x04000000	/* 64 MB	*/ |