summaryrefslogtreecommitdiff
path: root/include/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h
index 1e21b7a3d5c..8b32431b568 100644
--- a/include/common.h
+++ b/include/common.h
@@ -307,6 +307,13 @@ void pciinfo (int, int);
int misc_init_f (void);
int misc_init_r (void);
+/* Environment/nand support functions */
+extern void nand_setup_default_ecc_method(void);
+extern void nand_switch_ecc_default(int *ecc_method);
+extern void nand_switch_ecc_method(int ecc_method);
+extern int setenv_reserved_name(const char *name);
+extern void touchup_env(void);
+
/* common/exports.c */
void jumptable_init(void);
@@ -724,6 +731,14 @@ int pcmcia_init (void);
* Board-specific Platform code can reimplement show_boot_progress () if needed
*/
void show_boot_progress(int val);
+#ifdef CONFIG_BOARD_LCD_SETMEM
+ulong board_lcd_setmem (ulong addr);
+#endif
+
+#ifdef CONFIG_LCD_PERCENT
+extern void lcd_percent_init(int total_size);
+extern void lcd_percent_update(int size);
+#endif
/* Multicore arch functions */
#ifdef CONFIG_MP