📄 mc.h
字号:
//==========================================================================//// mc.h//// OpenCores.org memory controller definitions////==========================================================================//####ECOSGPLCOPYRIGHTBEGIN####// -------------------------------------------// This file is part of eCos, the Embedded Configurable Operating System.// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.//// eCos 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 or (at your option) any later version.//// eCos 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 eCos; if not, write to the Free Software Foundation, Inc.,// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.//// As a special exception, if other files instantiate templates or use macros// or inline functions from this file, or you compile this file and link it// with other works to produce a work based on this file, this file does not// by itself cause the resulting work to be covered by the GNU General Public// License. However the source code for this file must still be made available// in accordance with section (3) of the GNU General Public License.//// This exception does not invalidate any other reasons why a work based on// this file might be covered by the GNU General Public License.//// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.// at http://sources.redhat.com/ecos/ecos-license/// -------------------------------------------//####ECOSGPLCOPYRIGHTEND####//==========================================================================//#####DESCRIPTIONBEGIN####//// Author(s): sfurman// Contributors: Marko Mlinar// Date: 2003-01-17// Purpose: Define OpenRISC architecture special-purpose registers// Usage: #include <cyg/hal/hal_arch.h>// //####DESCRIPTIONEND####////==========================================================================/* Prototypes */#ifndef __MC_H#define __MC_H#define N_CE (8)#define MC_CSR (0x00)#define MC_POC (0x04)#define MC_BA_MASK (0x08)#define MC_CSC(i) (0x10 + (i) * 8)#define MC_TMS(i) (0x14 + (i) * 8)#define MC_ADDR_SPACE (MC_CSC(N_CE))/* POC register field definition */#define MC_POC_EN_BW_OFFSET 0#define MC_POC_EN_BW_WIDTH 2#define MC_POC_EN_MEMTYPE_OFFSET 2#define MC_POC_EN_MEMTYPE_WIDTH 2/* CSC register field definition */#define MC_CSC_EN_OFFSET 0#define MC_CSC_MEMTYPE_OFFSET 1#define MC_CSC_MEMTYPE_WIDTH 2#define MC_CSC_BW_OFFSET 4#define MC_CSC_BW_WIDTH 2#define MC_CSC_MS_OFFSET 6#define MC_CSC_MS_WIDTH 2#define MC_CSC_WP_OFFSET 8#define MC_CSC_BAS_OFFSET 9#define MC_CSC_KRO_OFFSET 10#define MC_CSC_PEN_OFFSET 11#define MC_CSC_SEL_OFFSET 16#define MC_CSC_SEL_WIDTH 8#define MC_CSC_MEMTYPE_SDRAM 0#define MC_CSC_MEMTYPE_SSRAM 1#define MC_CSC_MEMTYPE_ASYNC 2#define MC_CSC_MEMTYPE_SYNC 3#define MC_CSR_VALID 0xFF000703LU#define MC_POC_VALID 0x0000000FLU#define MC_BA_MASK_VALID 0x000000FFLU#define MC_CSC_VALID 0x00FF0FFFLU#define MC_TMS_SDRAM_VALID 0x0FFF83FFLU#define MC_TMS_SSRAM_VALID 0x00000000LU#define MC_TMS_ASYNC_VALID 0x03FFFFFFLU#define MC_TMS_SYNC_VALID 0x01FFFFFFLU#define MC_TMS_VALID 0xFFFFFFFFLU /* reg test compat. *//* TMS register field definition SDRAM */#define MC_TMS_SDRAM_TRFC_OFFSET 24#define MC_TMS_SDRAM_TRFC_WIDTH 4#define MC_TMS_SDRAM_TRP_OFFSET 20#define MC_TMS_SDRAM_TRP_WIDTH 4#define MC_TMS_SDRAM_TRCD_OFFSET 17#define MC_TMS_SDRAM_TRCD_WIDTH 4#define MC_TMS_SDRAM_TWR_OFFSET 15#define MC_TMS_SDRAM_TWR_WIDTH 2#define MC_TMS_SDRAM_WBL_OFFSET 9#define MC_TMS_SDRAM_OM_OFFSET 7#define MC_TMS_SDRAM_OM_WIDTH 2#define MC_TMS_SDRAM_CL_OFFSET 4#define MC_TMS_SDRAM_CL_WIDTH 3#define MC_TMS_SDRAM_BT_OFFSET 3#define MC_TMS_SDRAM_BL_OFFSET 0#define MC_TMS_SDRAM_BL_WIDTH 3/* TMS register field definition ASYNC */#define MC_TMS_ASYNC_TWWD_OFFSET 20#define MC_TMS_ASYNC_TWWD_WIDTH 6#define MC_TMS_ASYNC_TWD_OFFSET 16#define MC_TMS_ASYNC_TWD_WIDTH 4#define MC_TMS_ASYNC_TWPW_OFFSET 12#define MC_TMS_ASYNC_TWPW_WIDTH 4#define MC_TMS_ASYNC_TRDZ_OFFSET 8#define MC_TMS_ASYNC_TRDZ_WIDTH 4#define MC_TMS_ASYNC_TRDV_OFFSET 0#define MC_TMS_ASYNC_TRDV_WIDTH 8/* TMS register field definition SYNC */#define MC_TMS_SYNC_TTO_OFFSET 16#define MC_TMS_SYNC_TTO_WIDTH 9#define MC_TMS_SYNC_TWR_OFFSET 12#define MC_TMS_SYNC_TWR_WIDTH 4#define MC_TMS_SYNC_TRDZ_OFFSET 8#define MC_TMS_SYNC_TRDZ_WIDTH 4#define MC_TMS_SYNC_TRDV_OFFSET 0#define MC_TMS_SYNC_TRDV_WIDTH 8#endif// EOF mc.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -