diff options
author | Justin Waters <justin.waters@timesys.com> | 2012-04-17 13:43:17 -0400 |
---|---|---|
committer | Justin Waters <justin.waters@timesys.com> | 2012-04-17 13:43:17 -0400 |
commit | 4f60d7e7027af17ceffc1a38e6dbe4e3e95c71ec (patch) | |
tree | dd33f3760e08226d5c05036d664d2d68fb3765dc /include/common.h | |
parent | b1af6f532e0d348b153d5c148369229d24af361a (diff) |
LogicPD Support for OMAP3/DM3/AM3 boards
From Logic BSP-2.0-5-01
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 15 |
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 |