1 /* Coldfire C Header File
2 * Copyright Freescale Semiconductor Inc
5 * 2008/05/23 Revision: 0.95
7 * (c) Copyright UNIS, a.s. 1997-2008
12 * http : www.processorexpert.com
13 * mail : info@processorexpert.com
16 #ifndef __MCF52221_PMM_H__
17 #define __MCF52221_PMM_H__
20 /*********************************************************************
22 * Power Management (PMM)
24 *********************************************************************/
26 /* Register read/write macros */
27 #define MCF_PMM_LPICR (*(vuint8 *)(0x40000012))
28 #define MCF_PMM_LPCR (*(vuint8 *)(0x40110007))
31 /* Bit definitions and macros for MCF_PMM_LPICR */
32 #define MCF_PMM_LPICR_XLPM_IPL(x) (((x)&0x7)<<0x4)
33 #define MCF_PMM_LPICR_ENBSTOP (0x80)
35 /* Bit definitions and macros for MCF_PMM_LPCR */
36 #define MCF_PMM_LPCR_STPMD (0x8)
37 #define MCF_PMM_LPCR_LPMD(x) (((x)&0x3)<<0x6)
38 #define MCF_PMM_LPCR_LPMD_RUN (0)
39 #define MCF_PMM_LPCR_LPMD_DOZE (0x40)
40 #define MCF_PMM_LPCR_LPMD_WAIT (0x80)
41 #define MCF_PMM_LPCR_LPMD_STOP (0xC0)
44 #endif /* __MCF52221_PMM_H__ */