/*1* Common Gemini architecture functions2*3* Copyright (C) 2008-2009 Paulius Zaleckas <[email protected]>4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or8* (at your option) any later version.9*/1011#ifndef __GEMINI_COMMON_H__12#define __GEMINI_COMMON_H__1314struct mtd_partition;1516extern void gemini_map_io(void);17extern void gemini_init_irq(void);18extern void gemini_timer_init(void);19extern void gemini_gpio_init(void);20extern void platform_register_rtc(void);2122/* Common platform devices registration functions */23extern int platform_register_uart(void);24extern int platform_register_pflash(unsigned int size,25struct mtd_partition *parts,26unsigned int nr_parts);2728#endif /* __GEMINI_COMMON_H__ */293031