diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/arm/mach-sa1100/generic.h |
Linux-2.6.12-rc2v2.6.12-rc2
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!
Diffstat (limited to 'arch/arm/mach-sa1100/generic.h')
-rw-r--r-- | arch/arm/mach-sa1100/generic.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/arch/arm/mach-sa1100/generic.h b/arch/arm/mach-sa1100/generic.h new file mode 100644 index 000000000000..bfe41da9923e --- /dev/null +++ b/arch/arm/mach-sa1100/generic.h | |||
@@ -0,0 +1,38 @@ | |||
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 | |||
13 | #define SET_BANK(__nr,__start,__size) \ | ||
14 | mi->bank[__nr].start = (__start), \ | ||
15 | mi->bank[__nr].size = (__size), \ | ||
16 | mi->bank[__nr].node = (((unsigned)(__start) - PHYS_OFFSET) >> 27) | ||
17 | |||
18 | extern void (*sa1100fb_backlight_power)(int on); | ||
19 | extern void (*sa1100fb_lcd_power)(int on); | ||
20 | |||
21 | extern void sa1110_mb_enable(void); | ||
22 | extern void sa1110_mb_disable(void); | ||
23 | |||
24 | struct cpufreq_policy; | ||
25 | |||
26 | extern unsigned int sa11x0_freq_to_ppcr(unsigned int khz); | ||
27 | extern int sa11x0_verify_speed(struct cpufreq_policy *policy); | ||
28 | extern unsigned int sa11x0_getspeed(unsigned int cpu); | ||
29 | extern unsigned int sa11x0_ppcr_to_freq(unsigned int idx); | ||
30 | |||
31 | struct flash_platform_data; | ||
32 | struct resource; | ||
33 | |||
34 | extern void sa11x0_set_flash_data(struct flash_platform_data *flash, | ||
35 | struct resource *res, int nr); | ||
36 | |||
37 | struct irda_platform_data; | ||
38 | void sa11x0_set_irda_data(struct irda_platform_data *irda); | ||