yuezonghe | 824eb0c | 2024-06-27 02:32:26 -0700 | [diff] [blame^] | 1 | /* |
| 2 | * linux/arch/arm/mach-sa1100/generic.h |
| 3 | * |
| 4 | * Author: Nicolas Pitre |
| 5 | */ |
| 6 | |
| 7 | struct sys_timer; |
| 8 | |
| 9 | extern struct sys_timer sa1100_timer; |
| 10 | extern void __init sa1100_map_io(void); |
| 11 | extern void __init sa1100_init_irq(void); |
| 12 | extern void __init sa1100_init_gpio(void); |
| 13 | extern void sa11x0_restart(char, const char *); |
| 14 | |
| 15 | #define SET_BANK(__nr,__start,__size) \ |
| 16 | mi->bank[__nr].start = (__start), \ |
| 17 | mi->bank[__nr].size = (__size) |
| 18 | |
| 19 | extern void sa1110_mb_enable(void); |
| 20 | extern void sa1110_mb_disable(void); |
| 21 | |
| 22 | struct cpufreq_policy; |
| 23 | |
| 24 | extern unsigned int sa11x0_freq_to_ppcr(unsigned int khz); |
| 25 | extern int sa11x0_verify_speed(struct cpufreq_policy *policy); |
| 26 | extern unsigned int sa11x0_getspeed(unsigned int cpu); |
| 27 | extern unsigned int sa11x0_ppcr_to_freq(unsigned int idx); |
| 28 | |
| 29 | struct flash_platform_data; |
| 30 | struct resource; |
| 31 | |
| 32 | void sa11x0_register_mtd(struct flash_platform_data *flash, |
| 33 | struct resource *res, int nr); |
| 34 | |
| 35 | struct irda_platform_data; |
| 36 | void sa11x0_register_irda(struct irda_platform_data *irda); |
| 37 | |
| 38 | struct mcp_plat_data; |
| 39 | void sa11x0_ppc_configure_mcp(void); |
| 40 | void sa11x0_register_mcp(struct mcp_plat_data *data); |
| 41 | |
| 42 | struct sa1100fb_mach_info; |
| 43 | void sa11x0_register_lcd(struct sa1100fb_mach_info *inf); |