URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [ColdFire_MCF5282_Eclipse/] [RTOSDemo/] [MCF5282/] [MCF5282_CFM.h] - Rev 589
Go to most recent revision | Compare with Previous | Blame | View Log
/* Coldfire C Header File * Copyright Freescale Semiconductor Inc * All rights reserved. * * 2007/03/19 Revision: 0.9 */ #ifndef __MCF5282_CFM_H__ #define __MCF5282_CFM_H__ /********************************************************************* * * ColdFire Flash Module (CFM) * *********************************************************************/ /* Register read/write macros */ #define MCF_CFM_CFMMCR (*(vuint16*)(&__IPSBAR[0x1D0000])) #define MCF_CFM_CFMCLKD (*(vuint8 *)(&__IPSBAR[0x1D0002])) #define MCF_CFM_CFMSEC (*(vuint32*)(&__IPSBAR[0x1D0008])) #define MCF_CFM_CFMPROT (*(vuint32*)(&__IPSBAR[0x1D0010])) #define MCF_CFM_CFMSACC (*(vuint32*)(&__IPSBAR[0x1D0014])) #define MCF_CFM_CFMDACC (*(vuint32*)(&__IPSBAR[0x1D0018])) #define MCF_CFM_CFMUSTAT (*(vuint8 *)(&__IPSBAR[0x1D0020])) #define MCF_CFM_CFMCMD (*(vuint8 *)(&__IPSBAR[0x1D0024])) /* Bit definitions and macros for MCF_CFM_CFMMCR */ #define MCF_CFM_CFMMCR_KEYACC (0x20) #define MCF_CFM_CFMMCR_CCIE (0x40) #define MCF_CFM_CFMMCR_CBEIE (0x80) #define MCF_CFM_CFMMCR_AEIE (0x100) #define MCF_CFM_CFMMCR_PVIE (0x200) #define MCF_CFM_CFMMCR_LOCK (0x400) /* Bit definitions and macros for MCF_CFM_CFMCLKD */ #define MCF_CFM_CFMCLKD_DIV(x) (((x)&0x3F)<<0) #define MCF_CFM_CFMCLKD_PRDIV8 (0x40) #define MCF_CFM_CFMCLKD_DIVLD (0x80) /* Bit definitions and macros for MCF_CFM_CFMSEC */ #define MCF_CFM_CFMSEC_SEC(x) (((x)&0xFFFF)<<0) #define MCF_CFM_CFMSEC_SECSTAT (0x40000000) #define MCF_CFM_CFMSEC_KEYEN (0x80000000) /* Bit definitions and macros for MCF_CFM_CFMPROT */ #define MCF_CFM_CFMPROT_PROT(x) (((x)&0xFFFFFFFF)<<0) /* Bit definitions and macros for MCF_CFM_CFMSACC */ #define MCF_CFM_CFMSACC_SUPV(x) (((x)&0xFFFFFFFF)<<0) /* Bit definitions and macros for MCF_CFM_CFMDACC */ #define MCF_CFM_CFMDACC_DATA(x) (((x)&0xFFFFFFFF)<<0) /* Bit definitions and macros for MCF_CFM_CFMUSTAT */ #define MCF_CFM_CFMUSTAT_BLANK (0x4) #define MCF_CFM_CFMUSTAT_ACCERR (0x10) #define MCF_CFM_CFMUSTAT_PVIOL (0x20) #define MCF_CFM_CFMUSTAT_CCIF (0x40) #define MCF_CFM_CFMUSTAT_CBEIF (0x80) /* Bit definitions and macros for MCF_CFM_CFMCMD */ #define MCF_CFM_CFMCMD_CMD(x) (((x)&0x7F)<<0) #define MCF_CFM_CFMCMD_BLANK_CHECK (0x5) #define MCF_CFM_CFMCMD_PAGE_ERASE_VERIFY (0x6) #define MCF_CFM_CFMCMD_WORD_PROGRAM (0x20) #define MCF_CFM_CFMCMD_PAGE_ERASE (0x40) #define MCF_CFM_CFMCMD_MASS_ERASE (0x41) #endif /* __MCF5282_CFM_H__ */
Go to most recent revision | Compare with Previous | Blame | View Log