1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
38 lines
1 KiB
C
38 lines
1 KiB
C
/*
|
|
* linux/arch/arm/mach-sa1100/generic.h
|
|
*
|
|
* Author: Nicolas Pitre
|
|
*/
|
|
|
|
struct sys_timer;
|
|
|
|
extern struct sys_timer sa1100_timer;
|
|
extern void __init sa1100_map_io(void);
|
|
extern void __init sa1100_init_irq(void);
|
|
|
|
#define SET_BANK(__nr,__start,__size) \
|
|
mi->bank[__nr].start = (__start), \
|
|
mi->bank[__nr].size = (__size), \
|
|
mi->bank[__nr].node = (((unsigned)(__start) - PHYS_OFFSET) >> 27)
|
|
|
|
extern void (*sa1100fb_backlight_power)(int on);
|
|
extern void (*sa1100fb_lcd_power)(int on);
|
|
|
|
extern void sa1110_mb_enable(void);
|
|
extern void sa1110_mb_disable(void);
|
|
|
|
struct cpufreq_policy;
|
|
|
|
extern unsigned int sa11x0_freq_to_ppcr(unsigned int khz);
|
|
extern int sa11x0_verify_speed(struct cpufreq_policy *policy);
|
|
extern unsigned int sa11x0_getspeed(unsigned int cpu);
|
|
extern unsigned int sa11x0_ppcr_to_freq(unsigned int idx);
|
|
|
|
struct flash_platform_data;
|
|
struct resource;
|
|
|
|
extern void sa11x0_set_flash_data(struct flash_platform_data *flash,
|
|
struct resource *res, int nr);
|
|
|
|
struct irda_platform_data;
|
|
void sa11x0_set_irda_data(struct irda_platform_data *irda);
|