-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PATCH] m68knommu: ColdFire 523x processor register definitions
ColdFire 523x processor hardware register definitions. Signed-off-by: Greg Ungerer <gerg@uclinux.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
- Loading branch information
Greg Ungerer
authored and
Linus Torvalds
committed
Sep 9, 2005
1 parent
4fe8a0f
commit 910ce39
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/****************************************************************************/ | ||
|
||
/* | ||
* m523xsim.h -- ColdFire 523x System Integration Module support. | ||
* | ||
* (C) Copyright 2003-2005, Greg Ungerer <gerg@snapgear.com> | ||
*/ | ||
|
||
/****************************************************************************/ | ||
#ifndef m523xsim_h | ||
#define m523xsim_h | ||
/****************************************************************************/ | ||
|
||
#include <linux/config.h> | ||
|
||
/* | ||
* Define the 523x SIM register set addresses. | ||
*/ | ||
#define MCFICM_INTC0 0x0c00 /* Base for Interrupt Ctrl 0 */ | ||
#define MCFICM_INTC1 0x0d00 /* Base for Interrupt Ctrl 0 */ | ||
#define MCFINTC_IPRH 0x00 /* Interrupt pending 32-63 */ | ||
#define MCFINTC_IPRL 0x04 /* Interrupt pending 1-31 */ | ||
#define MCFINTC_IMRH 0x08 /* Interrupt mask 32-63 */ | ||
#define MCFINTC_IMRL 0x0c /* Interrupt mask 1-31 */ | ||
#define MCFINTC_INTFRCH 0x10 /* Interrupt force 32-63 */ | ||
#define MCFINTC_INTFRCL 0x14 /* Interrupt force 1-31 */ | ||
#define MCFINTC_IRLR 0x18 /* */ | ||
#define MCFINTC_IACKL 0x19 /* */ | ||
#define MCFINTC_ICR0 0x40 /* Base ICR register */ | ||
|
||
#define MCFINT_VECBASE 64 /* Vector base number */ | ||
#define MCFINT_UART0 13 /* Interrupt number for UART0 */ | ||
#define MCFINT_PIT1 36 /* Interrupt number for PIT1 */ | ||
#define MCFINT_QSPI 18 /* Interrupt number for QSPI */ | ||
|
||
/* | ||
* SDRAM configuration registers. | ||
*/ | ||
#define MCFSIM_DCR 0x44 /* SDRAM control */ | ||
#define MCFSIM_DACR0 0x48 /* SDRAM base address 0 */ | ||
#define MCFSIM_DMR0 0x4c /* SDRAM address mask 0 */ | ||
#define MCFSIM_DACR1 0x50 /* SDRAM base address 1 */ | ||
#define MCFSIM_DMR1 0x54 /* SDRAM address mask 1 */ | ||
|
||
/****************************************************************************/ | ||
#endif /* m523xsim_h */ |