2 * include/asm-blackfin/dpmc.h - Miscellaneous IOCTL commands for Dynamic Power
3 * Management Controller Driver.
4 * Copyright (C) 2004-2008 Analog Device Inc.
7 #ifndef _BLACKFIN_DPMC_H_
8 #define _BLACKFIN_DPMC_H_
13 void sleep_mode(u32 sic_iwr0
, u32 sic_iwr1
, u32 sic_iwr2
);
14 void deep_sleep(u32 sic_iwr0
, u32 sic_iwr1
, u32 sic_iwr2
);
15 void hibernate_mode(u32 sic_iwr0
, u32 sic_iwr1
, u32 sic_iwr2
);
16 void sleep_deeper(u32 sic_iwr0
, u32 sic_iwr1
, u32 sic_iwr2
);
17 void do_hibernate(int wakeup
);
18 void set_dram_srfs(void);
19 void unset_dram_srfs(void);
21 #define VRPAIR(vlev, freq) (((vlev) << 16) | ((freq) >> 16))
23 struct bfin_dpmc_platform_data
{
24 const unsigned int *tuple_tab
;
25 unsigned short tabsize
;
26 unsigned short vr_settling_time
; /* in us */
32 R0 = [P0 + (x - SRAM_BASE_ADDRESS)];\
37 [P0 + (x - SRAM_BASE_ADDRESS)] = R0;\
39 #define PM_SYS_PUSH(x) \
40 R0 = [P0 + (x - PLL_CTL)];\
43 #define PM_SYS_POP(x) \
45 [P0 + (x - PLL_CTL)] = R0;\
47 #define PM_SYS_PUSH16(x) \
48 R0 = w[P0 + (x - PLL_CTL)];\
51 #define PM_SYS_POP16(x) \
53 w[P0 + (x - PLL_CTL)] = R0;\
56 #endif /* __KERNEL__ */
58 #endif /*_BLACKFIN_DPMC_H_*/