📄 s3c2440aa.h
字号:
/* * (C) Copyright 2003 * David M黮ler ELSOFT AG Switzerland. d.mueller@elsoft.ch * * See file CREDITS for list of people who contributed to this * project. * * 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 *//************************************************ * NAME : s3c2440.h * Version : 2004. * ************************************************/#ifndef __S3C2440_H__#define __S3C2440_H__#define S3C24X0_UART_CHANNELS 3#define S3C24X0_SPI_CHANNELS 2/* S3C2440 only supports 512 Byte HW ECC */#define S3C2440_ECCSIZE 512#define S3C2440_ECCBYTES 3typedef enum { S3C24X0_UART0, S3C24X0_UART1, S3C24X0_UART2} S3C24X0_UARTS_NR;/* S3C2440 device base addresses */#define S3C24X0_MEMCTL_BASE 0x48000000#define S3C24X0_USB_HOST_BASE 0x49000000#define S3C24X0_INTERRUPT_BASE 0x4A000000#define S3C24X0_DMA_BASE 0x4B000000#define S3C24X0_CLOCK_POWER_BASE 0x4C000000#define S3C24X0_LCD_BASE 0x4D000000#define S3C2440_NAND_BASE 0x4E000000#define S3C24X0_UART_BASE 0x50000000#define S3C24X0_TIMER_BASE 0x51000000#define S3C24X0_USB_DEVICE_BASE 0x52000140#define USB_DEVICE_PHYS_ADR 0x52000000#define S3C24X0_WATCHDOG_BASE 0x53000000#define S3C24X0_I2C_BASE 0x54000000#define S3C24X0_I2S_BASE 0x55000000#define S3C24X0_GPIO_BASE 0x56000000#define S3C24X0_RTC_BASE 0x57000000#define S3C2440_ADC_BASE 0x58000000#define S3C24X0_SPI_BASE 0x59000000#define S3C2440_SDI_BASE 0x5A000000/* include common stuff */#include <s3c24x0.h>static inline S3C24X0_MEMCTL * const S3C24X0_GetBase_MEMCTL(void){ return (S3C24X0_MEMCTL * const)S3C24X0_MEMCTL_BASE;}static inline S3C24X0_USB_HOST * const S3C24X0_GetBase_USB_HOST(void){ return (S3C24X0_USB_HOST * const)S3C24X0_USB_HOST_BASE;}static inline S3C24X0_INTERRUPT * const S3C24X0_GetBase_INTERRUPT(void){ return (S3C24X0_INTERRUPT * const)S3C24X0_INTERRUPT_BASE;}static inline S3C24X0_DMAS * const S3C24X0_GetBase_DMAS(void){ return (S3C24X0_DMAS * const)S3C24X0_DMA_BASE;}static inline S3C24X0_CLOCK_POWER * const S3C24X0_GetBase_CLOCK_POWER(void){ return (S3C24X0_CLOCK_POWER * const)S3C24X0_CLOCK_POWER_BASE;}static inline S3C24X0_LCD * const S3C24X0_GetBase_LCD(void){ return (S3C24X0_LCD * const)S3C24X0_LCD_BASE;}static inline S3C2440_NAND * const S3C2440_GetBase_NAND(void){ return (S3C2440_NAND * const)S3C2440_NAND_BASE;}static inline S3C24X0_UART * const S3C24X0_GetBase_UART(S3C24X0_UARTS_NR nr){ return (S3C24X0_UART * const)(S3C24X0_UART_BASE + (nr * 0x4000));}static inline S3C24X0_TIMERS * const S3C24X0_GetBase_TIMERS(void){ return (S3C24X0_TIMERS * const)S3C24X0_TIMER_BASE;}static inline S3C24X0_USB_DEVICE * const S3C24X0_GetBase_USB_DEVICE(void){ return (S3C24X0_USB_DEVICE * const)S3C24X0_USB_DEVICE_BASE;}static inline S3C24X0_WATCHDOG * const S3C24X0_GetBase_WATCHDOG(void){ return (S3C24X0_WATCHDOG * const)S3C24X0_WATCHDOG_BASE;}static inline S3C24X0_I2C * const S3C24X0_GetBase_I2C(void){ return (S3C24X0_I2C * const)S3C24X0_I2C_BASE;}static inline S3C24X0_I2S * const S3C24X0_GetBase_I2S(void){ return (S3C24X0_I2S * const)S3C24X0_I2S_BASE;}static inline S3C24X0_GPIO * const S3C24X0_GetBase_GPIO(void){ return (S3C24X0_GPIO * const)S3C24X0_GPIO_BASE;}static inline S3C24X0_RTC * const S3C24X0_GetBase_RTC(void){ return (S3C24X0_RTC * const)S3C24X0_RTC_BASE;}#if 0static inline S3C2440_ADC * const S3C2440_GetBase_ADC(void){ return (S3C2440_ADC * const)S3C2440_ADC_BASE;}static inline S3C24X0_SPI * const S3C24X0_GetBase_SPI(void){ return (S3C24X0_SPI * const)S3C24X0_SPI_BASE;}static inline S3C2440_SDI * const S3C2440_GetBase_SDI(void){ return (S3C2440_SDI * const)S3C2440_SDI_BASE;}#endif/* PENDING BIT */#define BIT_EINT0 (0x1)#define BIT_EINT1 (0x1<<1)#define BIT_EINT2 (0x1<<2)#define BIT_EINT3 (0x1<<3)#define BIT_EINT4_7 (0x1<<4)#define BIT_EINT8_23 (0x1<<5)#define BIT_BAT_FLT (0x1<<7)#define BIT_TICK (0x1<<8)#define BIT_WDT (0x1<<9)#define BIT_TIMER0 (0x1<<10)#define BIT_TIMER1 (0x1<<11)#define BIT_TIMER2 (0x1<<12)#define BIT_TIMER3 (0x1<<13)#define BIT_TIMER4 (0x1<<14)#define BIT_UART2 (0x1<<15)#define BIT_LCD (0x1<<16)#define BIT_DMA0 (0x1<<17)#define BIT_DMA1 (0x1<<18)#define BIT_DMA2 (0x1<<19)#define BIT_DMA3 (0x1<<20)#define BIT_SDI (0x1<<21)#define BIT_SPI0 (0x1<<22)#define BIT_UART1 (0x1<<23)#define BIT_USBD (0x1<<25)#define BIT_USBH (0x1<<26)#define BIT_IIC (0x1<<27)#define BIT_UART0 (0x1<<28)#define BIT_SPI1 (0x1<<29)#define BIT_RTC (0x1<<30)#define BIT_ADC (0x1<<31)#define BIT_ALLMSK (0xFFFFFFFF)/* Memory control */#define BWSCON (*(volatile unsigned *)0x48000000)#define BANKCON0 (*(volatile unsigned *)0x48000004)#define BANKCON1 (*(volatile unsigned *)0x48000008)#define BANKCON2 (*(volatile unsigned *)0x4800000C)#define BANKCON3 (*(volatile unsigned *)0x48000010)#define BANKCON4 (*(volatile unsigned *)0x48000014)#define BANKCON5 (*(volatile unsigned *)0x48000018)#define BANKCON6 (*(volatile unsigned *)0x4800001C)#define BANKCON7 (*(volatile unsigned *)0x48000020)#define REFRESH (*(volatile unsigned *)0x48000024)#define BANKSIZE (*(volatile unsigned *)0x48000028)#define MRSRB6 (*(volatile unsigned *)0x4800002C)#define MRSRB7 (*(volatile unsigned *)0x48000030)/* USB HOST */#define rHcRevision (*(volatile unsigned *)0x49000000)#define rHcControl (*(volatile unsigned *)0x49000004)#define rHcCommonStatus (*(volatile unsigned *)0x49000008)#define rHcInterruptStatus (*(volatile unsigned *)0x4900000C)#define rHcInterruptEnable (*(volatile unsigned *)0x49000010)#define rHcInterruptDisable (*(volatile unsigned *)0x49000014)#define rHcHCCA (*(volatile unsigned *)0x49000018)#define rHcPeriodCuttendED (*(volatile unsigned *)0x4900001C)#define rHcControlHeadED (*(volatile unsigned *)0x49000020)#define rHcControlCurrentED (*(volatile unsigned *)0x49000024)#define rHcBulkHeadED (*(volatile unsigned *)0x49000028)#define rHcBuldCurrentED (*(volatile unsigned *)0x4900002C)#define rHcDoneHead (*(volatile unsigned *)0x49000030)#define rHcRmInterval (*(volatile unsigned *)0x49000034)#define rHcFmRemaining (*(volatile unsigned *)0x49000038)#define rHcFmNumber (*(volatile unsigned *)0x4900003C)#define rHcPeriodicStart (*(volatile unsigned *)0x49000040)#define rHcLSThreshold (*(volatile unsigned *)0x49000044)#define rHcRhDescriptorA (*(volatile unsigned *)0x49000048)#define rHcRhDescriptorB (*(volatile unsigned *)0x4900004C)#define rHcRhStatus (*(volatile unsigned *)0x49000050)#define rHcRhPortStatus1 (*(volatile unsigned *)0x49000054)#define rHcRhPortStatus2 (*(volatile unsigned *)0x49000058)/* INTERRUPT getfree uncommented rINTMSK 2003.12.05 */#define SRCPND (*(volatile unsigned *)0x4A000000)#define INTMOD (*(volatile unsigned *)0x4A000004)#define INTMSK (*(volatile unsigned *)0x4A000008)#define PRIORITY (*(volatile unsigned *)0x4A00000C)#define INTPND (*(volatile unsigned *)0x4A000010)#define INTOFFSET (*(volatile unsigned *)0x4A000014)#define SUBSRCPND (*(volatile unsigned *)0x4A000018)#define INTSUBMSK (*(volatile unsigned *)0x4A00001C)/* DMA */#define rDISRC0 (*(volatile unsigned *)0x4B000000)#define rDISRCC0 (*(volatile unsigned *)0x4B000004)#define rDIDST0 (*(volatile unsigned *)0x4B000008)#define rDIDSTC0 (*(volatile unsigned *)0x4B00000C)#define rDCON0 (*(volatile unsigned *)0x4B000010)#define rDSTAT0 (*(volatile unsigned *)0x4B000014)#define rDCSRC0 (*(volatile unsigned *)0x4B000018)#define rDCDST0 (*(volatile unsigned *)0x4B00001C)#define rDMASKTRIG0 (*(volatile unsigned *)0x4B000020)#define rDISRC1 (*(volatile unsigned *)0x4B000040)#define rDISRCC1 (*(volatile unsigned *)0x4B000044)#define rDIDST1 (*(volatile unsigned *)0x4B000048)#define rDIDSTC1 (*(volatile unsigned *)0x4B00004C)#define rDCON1 (*(volatile unsigned *)0x4B000050)#define rDSTAT1 (*(volatile unsigned *)0x4B000054)#define rDCSRC1 (*(volatile unsigned *)0x4B000058)#define rDCDST1 (*(volatile unsigned *)0x4B00005C)#define rDMASKTRIG1 (*(volatile unsigned *)0x4B000060)#define rDISRC2 (*(volatile unsigned *)0x4B000080)#define rDISRCC2 (*(volatile unsigned *)0x4B000084)#define rDIDST2 (*(volatile unsigned *)0x4B000088)#define rDIDSTC2 (*(volatile unsigned *)0x4B00008C)#define rDCON2 (*(volatile unsigned *)0x4B000090)#define rDSTAT2 (*(volatile unsigned *)0x4B000094)#define rDCSRC2 (*(volatile unsigned *)0x4B000098)#define rDCDST2 (*(volatile unsigned *)0x4B00009C)#define rDMASKTRIG2 (*(volatile unsigned *)0x4B0000A0)#define rDISRC3 (*(volatile unsigned *)0x4B0000C0)#define rDISRCC3 (*(volatile unsigned *)0x4B0000C4)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -