diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-28 15:34:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-28 15:34:01 -0400 |
commit | 604a2785a8482cad4d63202465133c720db5eda7 (patch) | |
tree | e2f510a8a54d7d4443cb52f3a0be46f527ebb779 /arch/blackfin/include/asm/dpmc.h | |
parent | 66833d5f3934a19d0988b7d0de58149bfd7a5884 (diff) | |
parent | d310fb4bb73629840430cb13cb282915e49fef4b (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/blackfin-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/blackfin-2.6:
Blackfin arch: Fix PM building on BF52x: No ROTWE on BF52x, add USBWE
Blackfin arch: sram: use 'unsigned long' for irqflags
Blackfin arch: let PCI depend on BROKEN
Blackfin arch: move include/asm-blackfin header files to arch/blackfin
Blackfin arch: fix bug - MPU crashes under stress
Blackfin arch: Fix bug - when to rmmod the L1_module, it stucks and then reboot the board.
Blackfin arch: dont actually need to muck with EMAC_SYSTAT for BF52x for demuxing
Blackfin arch: Add MTD Partitions for MTD_DATAFLASH, increase max SPI SCLK
Diffstat (limited to 'arch/blackfin/include/asm/dpmc.h')
-rw-r--r-- | arch/blackfin/include/asm/dpmc.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/arch/blackfin/include/asm/dpmc.h b/arch/blackfin/include/asm/dpmc.h new file mode 100644 index 000000000000..96e8208f929a --- /dev/null +++ b/arch/blackfin/include/asm/dpmc.h | |||
@@ -0,0 +1,57 @@ | |||
1 | /* | ||
2 | * include/asm-blackfin/dpmc.h - Miscellaneous IOCTL commands for Dynamic Power | ||
3 | * Management Controller Driver. | ||
4 | * Copyright (C) 2004-2008 Analog Device Inc. | ||
5 | * | ||
6 | */ | ||
7 | #ifndef _BLACKFIN_DPMC_H_ | ||
8 | #define _BLACKFIN_DPMC_H_ | ||
9 | |||
10 | #ifdef __KERNEL__ | ||
11 | #ifndef __ASSEMBLY__ | ||
12 | |||
13 | void sleep_mode(u32 sic_iwr0, u32 sic_iwr1, u32 sic_iwr2); | ||
14 | void hibernate_mode(u32 sic_iwr0, u32 sic_iwr1, u32 sic_iwr2); | ||
15 | void sleep_deeper(u32 sic_iwr0, u32 sic_iwr1, u32 sic_iwr2); | ||
16 | void do_hibernate(int wakeup); | ||
17 | void set_dram_srfs(void); | ||
18 | void unset_dram_srfs(void); | ||
19 | |||
20 | #define VRPAIR(vlev, freq) (((vlev) << 16) | ((freq) >> 16)) | ||
21 | |||
22 | struct bfin_dpmc_platform_data { | ||
23 | const unsigned int *tuple_tab; | ||
24 | unsigned short tabsize; | ||
25 | unsigned short vr_settling_time; /* in us */ | ||
26 | }; | ||
27 | |||
28 | #else | ||
29 | |||
30 | #define PM_PUSH(x) \ | ||
31 | R0 = [P0 + (x - SRAM_BASE_ADDRESS)];\ | ||
32 | [--SP] = R0;\ | ||
33 | |||
34 | #define PM_POP(x) \ | ||
35 | R0 = [SP++];\ | ||
36 | [P0 + (x - SRAM_BASE_ADDRESS)] = R0;\ | ||
37 | |||
38 | #define PM_SYS_PUSH(x) \ | ||
39 | R0 = [P0 + (x - PLL_CTL)];\ | ||
40 | [--SP] = R0;\ | ||
41 | |||
42 | #define PM_SYS_POP(x) \ | ||
43 | R0 = [SP++];\ | ||
44 | [P0 + (x - PLL_CTL)] = R0;\ | ||
45 | |||
46 | #define PM_SYS_PUSH16(x) \ | ||
47 | R0 = w[P0 + (x - PLL_CTL)];\ | ||
48 | [--SP] = R0;\ | ||
49 | |||
50 | #define PM_SYS_POP16(x) \ | ||
51 | R0 = [SP++];\ | ||
52 | w[P0 + (x - PLL_CTL)] = R0;\ | ||
53 | |||
54 | #endif | ||
55 | #endif /* __KERNEL__ */ | ||
56 | |||
57 | #endif /*_BLACKFIN_DPMC_H_*/ | ||