?? mcf5272.h
字號(hào):
/* mcf5272.c - necessary mcf5272 definition for skyeye debugger Copyright (C) 2003-2007 Skyeye Develop Group for help please send mail to <skyeye-developer@lists.sf.linuxforum.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA*//* * 02/28/2007 Michael.Kang <blackfin.kang@gmail.com> */#ifndef __MCF5272_H__#define __MCF5272_H__#define TIMER_NUM 4#define TIMER0_IRQ 27#define UART_NUM 2#define UART1_IRQ 23#define INT1_IRQ 31#define SWTO_IRQ 4/* * Define the TIMER register set addresses. */#define MCFTIMER_TMR 0x00 /* Timer Mode reg (r/w) */#define MCFTIMER_TRR 0x04 /* Timer Reference (r/w) */#define MCFTIMER_TCAP 0x08 /* Timer Capture reg (r/w) */#define MCFTIMER_TCN 0x0c /* Timer Counter reg (r/w) */#define MCFTIMER_TER 0x11 /* Timer Event reg (r/w) *//* * Define the 5272 SIM register set addresses. */#define MCFSIM_SCR 0x04 /* SIM Config reg (r/w) */#define MCFSIM_SPR 0x06 /* System Protection reg (r/w)*/#define MCFSIM_PMR 0x08 /* Power Management reg (r/w) */#define MCFSIM_APMR 0x0e /* Active Low Power reg (r/w) */#define MCFSIM_DIR 0x10 /* Device Identity reg (r/w) */#define MCFSIM_ICR1 0x20 /* Intr Ctrl reg 1 (r/w) */#define MCFSIM_ICR2 0x24 /* Intr Ctrl reg 2 (r/w) */#define MCFSIM_ICR3 0x28 /* Intr Ctrl reg 3 (r/w) */#define MCFSIM_ICR4 0x2c /* Intr Ctrl reg 4 (r/w) */#define MCFSIM_ISR 0x30 /* Interrupt Source reg (r/w) */#define MCFSIM_PITR 0x34 /* Interrupt Transition (r/w) */#define MCFSIM_PIWR 0x38 /* Interrupt Wakeup reg (r/w) */#define MCFSIM_PIVR 0x3f /* Interrupt Vector reg (r/w( */#define MCFSIM_WRRR 0x280 /* Watchdog reference (r/w) */#define MCFSIM_WIRR 0x284 /* Watchdog interrupt (r/w) */#define MCFSIM_WCR 0x288 /* Watchdog counter (r/w) */#define MCFSIM_WER 0x28c /* Watchdog event (r/w) */#define MCFSIM_CSBR0 0x40 /* CS0 Base Address (r/w) */#define MCFSIM_CSOR0 0x44 /* CS0 Option (r/w) */#define MCFSIM_CSBR1 0x48 /* CS1 Base Address (r/w) */#define MCFSIM_CSOR1 0x4c /* CS1 Option (r/w) */#define MCFSIM_CSBR2 0x50 /* CS2 Base Address (r/w) */#define MCFSIM_CSOR2 0x54 /* CS2 Option (r/w) */#define MCFSIM_CSBR3 0x58 /* CS3 Base Address (r/w) */#define MCFSIM_CSOR3 0x5c /* CS3 Option (r/w) */#define MCFSIM_CSBR4 0x60 /* CS4 Base Address (r/w) */#define MCFSIM_CSOR4 0x64 /* CS4 Option (r/w) */#define MCFSIM_CSBR5 0x68 /* CS5 Base Address (r/w) */#define MCFSIM_CSOR5 0x6c /* CS5 Option (r/w) */#define MCFSIM_CSBR6 0x70 /* CS6 Base Address (r/w) */#define MCFSIM_CSOR6 0x74 /* CS6 Option (r/w) */#define MCFSIM_CSBR7 0x78 /* CS7 Base Address (r/w) */#define MCFSIM_CSOR7 0x7c /* CS7 Option (r/w) */#define MCFSIM_SDCR 0x180 /* SDRAM Configuration (r/w) */#define MCFSIM_SDTR 0x184 /* SDRAM Timing (r/w) */#define MCFSIM_DCAR0 0x4c /* DRAM 0 Address reg(r/w) */#define MCFSIM_DCMR0 0x50 /* DRAM 0 Mask reg (r/w) */#define MCFSIM_DCCR0 0x57 /* DRAM 0 Control reg (r/w) */#define MCFSIM_DCAR1 0x58 /* DRAM 1 Address reg (r/w) */#define MCFSIM_DCMR1 0x5c /* DRAM 1 Mask reg (r/w) */#define MCFSIM_DCCR1 0x63 /* DRAM 1 Control reg (r/w) */#define MCFSIM_PACNT 0x80 /* Port A Control (r/w) */#define MCFSIM_PADDR 0x84 /* Port A Direction (r/w) */#define MCFSIM_PADAT 0x86 /* Port A Data (r/w) */#define MCFSIM_PBCNT 0x88 /* Port B Control (r/w) */#define MCFSIM_PBDDR 0x8c /* Port B Direction (r/w) */#define MCFSIM_PBDAT 0x8e /* Port B Data (r/w) */#define MCFSIM_PCDDR 0x94 /* Port C Direction (r/w) */#define MCFSIM_PCDAT 0x96 /* Port C Data (r/w) */#define MCFSIM_PDCNT 0x98 /* Port D Control (r/w) *//* * Bit definitions for 5272 ICRs *//* Hereunder, PI = interrupt enable, IPL = int priority level *//* IPL may only be written at the same time as PI is enabled */#define MCFSIM_INT1PI 0x80000000#define MCFSIM_INT1IPL(x) ((x & 0x7) << 28)#define MCFSIM_INT2PI 0x08000000#define MCFSIM_INT2IPL(x) ((x & 0x7) << 24)#define MCFSIM_INT3PI 0x00800000#define MCFSIM_INT3IPL(x) ((x & 0x7) << 20)#define MCFSIM_INT4PI 0x00080000#define MCFSIM_INT4IPL(x) ((x & 0x7) << 16)#define MCFSIM_TMR0PI 0x00008000#define MCFSIM_TMR0IPL(x) ((x & 0x7) << 12)#define MCFSIM_TMR1PI 0x00000800#define MCFSIM_TMR1IPL(x) ((x & 0x7) << 8)#define MCFSIM_TMR2PI 0x00000080#define MCFSIM_TMR2IPL(x) ((x & 0x7) << 4)#define MCFSIM_TMR3PI 0x00000008#define MCFSIM_TMR3IPL(x) ((x & 0x7) << 0)/* Interrupt vectors for 5272: */#define MCF_INT_SUPRIOUS 64 /* User Spurious Interrupt */#define MCF_INT_INT1 65 /* External Interrupt Input 1 */#define MCF_INT_INT2 66 /* External Interrupt Input 2 */#define MCF_INT_INT3 67 /* External Interrupt Input 3 */#define MCF_INT_INT4 68 /* External Interrupt Input 4 */#define MCF_INT_TMR0 69 /* Timer 0 */#define MCF_INT_TMR1 70 /* Timer 1 */#define MCF_INT_TMR2 71 /* Timer 2 */#define MCF_INT_TMR3 72 /* Timer 3 */#define MCF_INT_UART1 73 /* UART 1 */#define MCF_INT_UART2 74 /* UART 2 */#define MCF_INT_PLIP 75 /* PLIC 2KHz Periodic */#define MCF_INT_PLIA 76 /* PLIC Asynchronous */#define MCF_INT_USB0 77 /* USB Endpoint 0 */#define MCF_INT_USB1 78 /* USB Endpoint 1 */#define MCF_INT_USB2 79 /* USB Endpoint 2 */#define MCF_INT_USB3 80 /* USB Endpoint 3 */#define MCF_INT_USB4 81 /* USB Endpoint 4 */#define MCF_INT_USB5 82 /* USB Endpoint 5 */#define MCF_INT_USB6 83 /* USB Endpoint 6 */#define MCF_INT_USB7 84 /* USB Endpoint 7 */#define MCF_INT_DMA 85 /* DMA Controller */#define MCF_INT_ERx 86 /* Ethernet Receiver */#define MCF_INT_ETx 87 /* Ethernet Transmitter */#define MCF_INT_ENTC 88 /* Ethernet Module Non-time-critical */#define MCF_INT_QSPI 89 /* Queued Serial Peripheral Interface */#define MCF_INT_INT5 90 /* External Interrupt Input 5 */#define MCF_INT_INT6 91 /* External Interrupt Input 6 */#define MCF_INT_SWTO 92 /* Software Watchdog Timer Timeout */#define MCF_INT_93 93 /* Reserved */#define MCF_INT_94 94 /* Reserved */#define MCF_INT_95 95 /* Reserved *//* Ether netcard */#define MCF_ECR 0x840 #define MCF_EIR 0x844#define MCF_EIMR 0x848#define MCF_RDAR 0x850#define MCF_MMFR 0x880#define MCF_MSCR 0x884#define MCF_RCR 0x944#define MCF_TCR 0x984#define MCF_MALR 0xc00#define MCF_MAUR 0xC04#define MCF_HTUR 0xC08#define MCF_HTLR 0xC0C#define MCF_ERDSR 0xC10#define MCF_ETDSR 0xC14#define MCF_EMRBR 0xC18#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -