亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? config.h

?? WINDRIVER SBC405 BSP
?? H
字號:
/* config.h - Wind River SBC405GP configuration header *//* Copyright 1984-2002 Wind River Systems, Inc. *//*modification history--------------------01l,21jan03,pch  Update BSP_REV for SPR 80226 fix.01k,12jul02,pch  SPR 78057:  enable coexistence of emac and fei01j,26jun02,pch  SPR 73650 & 76704: clean up refs to processor revisions01i,17apr02,jtp  SPR#73673 turn off I-MMU to reduce TLB Entry register                 contention01h,17feb02,g_h  Add the NO_NETWORK option to BOOT_DEVICE type01g,29jan02,g_h  Add #undef NV_RAM_SIZE before re-defining it again.01f,18jan02,g_h  Change ROM_SIZE to 2MB - reserved space for reset vector.01e,18jan02,g_h  Add MAC_ADRS_LEN macro01d,11jan02,pch  Move WRONG_CPU_MSG defn from ppc405GP.h to config.h01c,22nov01,g_h  Cleaning for T2.201b,17sep01,g_h  update to reflect the changes done in T2CP401a,22apr01,g_h  created from Walnut config.h version 01l.*//*This file contains the configuration parameters for theWind River SBC 405GP CPU evaluation board.*/#ifndef __INCconfigh#define __INCconfigh#ifdef __cplusplusextern "C" {#endif/* BSP version/revision identification, before configAll.h */#define BSP_VER_1_1     0#define BSP_VER_1_2     1#define BSP_VERSION     "1.2"           /* A Tornado 2.0 BSP    */#define BSP_REV         "/7"            /* 0 for first revision */#include "configAll.h"/* CPU configuration *//* Message displayed for unrecognized processor */#define WRONG_CPU_MSG "Unsupported processor version ";/* Memory configuration *//* * The constants ROM_TEXT_ADRS, ROM_SIZE, RAM_HIGH_ADRS, and RAM_LOW_ADRS * are defined in config.h and Makefile. * All definitions for these constants must be identical. * * Boot ROM address space. */#define ROM_BASE_ADRS        0xFFE00000	             /* base address of ROM  */#define ROM_TEXT_ADRS        (ROM_BASE_ADRS + NV_RAM_SIZE) /* with PC & SP   */#define ROM_WARM_ADRS        (ROM_TEXT_ADRS+0x0004)  /* warm reboot entry    */#define ROM_SIZE             0x001FFE00		     /* 2MB                  */#define RAM_LOW_ADRS         0x00010000		     /* RAM addr for vxWorks */#define RAM_HIGH_ADRS        0x01C00000		     /* RAM addr for bootrom */#define LOCAL_MEM_SIZE       0x04000000              /* 64 memory default    */#define LOCAL_MEM_LOCAL_ADRS 0x00000000              /* Fixed at zero        */#define USER_RESERVED_MEM    0x02000000		     /* see sysMemTop()      *//* Serial port configuration */#define  INCLUDE_SIO/* * The clock used to drive the UARTs on the 405GP can be derived from * one of two different sources.  The 11.0592 MHz external oscillator on SBC405GP * can be used, or the CPU clock can be used with an additional internal UART * divisor (see the CPC0_CR0 register).  If you do not want to use the external * UART clock oscillator, undef UART_CLOCK_EXTERNAL * NOTE: Revs B, C and D of the 405GP have an errata which prevents the * internal divisor to work at different rates. So if you want to use a  * different console BAUD rate, it is recommended that you use the external * clock. */#define  UART_CLOCK_EXTERNAL      /* define to use external 11.0592 MHz clock *//* Timer configuration */#define  INCLUDE_AUX_CLK#define  INCLUDE_TIMESTAMP/* * 405 timers (PIT, FIT, WDT) can be driven from an external clock source, * or at the same frequency as the CPU. */#undef TIMER_CLOCK_EXTERNAL/* EMAC MAC address configuration *//* * The Ethernet hardware address that is used with EMAC is * *       0x00A01Ennnnnn * * where the first three bytes are defined below, and last three bytes are * stored in the NVRAM and can be modified by using the function * sysLanIbmEmacEnetAddrSet() *//*                                    ___ Alignment pad *//*                                   |                  *//*                                  \|/                 */#define ENET_DEFAULT         0x00A01E00 /* WRS fixed MAC addr */#define MAC_ADRS_LEN	     6/* NvRAM configuration */             #define NV_RAM_ADRS          ROM_BASE_ADRS#define NV_RAM_SIZE          0x200#undef  NV_BOOT_OFFSET#define NV_BOOT_OFFSET	     0#define NV_ENET_OFFSET	     0x1F0 /* Offset of Ethernet HW adrs from the boot offset *//* Cache configuration  */#define INCLUDE_CACHE_SUPPORT#define USER_I_CACHE_ENABLE  #define USER_D_CACHE_ENABLE  #undef	USER_D_CACHE_MODE#define USER_D_CACHE_MODE    CACHE_COPYBACK /* select COPYBACK or WRITETHROUGH *//* * MMU configuration * * Note: leaving I-MMU disabled reduces contention for the 64 available * UTLB Entries. This typically improves application performance. */#define INCLUDE_MMU_BASIC#undef  INCLUDE_MMU_FULL#undef USER_I_MMU_ENABLE#define USER_D_MMU_ENABLE/* * On the 405 CPU we cannot enable the MMU unless the caches are initialized * (unless ofcourse we mark the entire address space as un-cacheable). There * is no separate way of disabling the caches when the MMU is enabled, other * than on a page-by-page basis. Hence it is recommended that caches always * be used whenever the MMU is used. */#ifdef INCLUDE_MMU_BASIC    #ifndef INCLUDE_CACHE_SUPPORT    #error "You need to include Cache support for MMU support."    #endif#endif/* PCI configuration */#define INCLUDE_PCI#ifdef  INCLUDE_PCI#define INCLUDE_SHOW_ROUTINES #define INCLUDE_PCI_AUTOCONF#define PCI_LAT_TIMER        255 /* PCI Latency Timer value */#ifndef PCI_CFG_TYPE#   ifdef INCLUDE_PCI_AUTOCONF#      define PCI_CFG_TYPE PCI_CFG_AUTO#   else#      define PCI_CFG_TYPE PCI_CFG_FORCE#   endif /* INCLUDE_PCI_AUTOCONF */#endif /* PCI_CFG_TYPE */#endif /* INCLUDE_PCI *//* Software floating point support */#undef INCLUDE_SW_FP/* Wind River FPGA card support */#undef  INCLUDE_WR_FPGA_CARD#ifdef  INCLUDE_WR_FPGA_CARD#define WR_FPGA_CARD_ON_LOCAL_BUS#endif  /*INCLUDE_WR_FPGA_CARD *//* Network driver configuration */#define	INCLUDE_NETWORK#define INCLUDE_NET_INIT#undef  INCLUDE_EI#undef  INCLUDE_LN#undef  INCLUDE_BP#undef	INCLUDE_EX#undef	INCLUDE_ENP#undef	INCLUDE_SM_NET#undef  INCLUDE_SM_SEQ_ADDR/* Only if using network */#ifdef	INCLUDE_NETWORK/* Enhanced Network Driver (END) support */#define	INCLUDE_END		/* Enhanced Network Driver (see configNet.h) */#undef  INCLUDE_BSD		/* BSD 4.4 drivers (not supported) *//* Network Driver Types */#define NO_NETWORK           0#define EMAC_END	     1  /* build in the EMAC driver */#define FEI_END		     2  /* build in the FEI driver */#define BOOT_DEVICE  EMAC_END /* Choose your Boot Device: EMAC_END or FEI_END */#undef	BOTH_NET	/* build in both drivers, BOOT_DEVICE chooses primary */#if defined(BOTH_NET) || (BOOT_DEVICE == EMAC_END)  /*   * Optimized data cache flush and invalidate functions for ibmEmacEnd   */  #define EMAC_CACHE_FLUSH(address, len) \          cacheFlush405 (_DATA_CACHE, (address), (len))  #define EMAC_CACHE_INVALIDATE(address, len) \          cacheInvalidate405 (_DATA_CACHE, (address), (len))#endif	/* BOTH_NET || BOOT_DEVICE == EMAC_END */#else	/* INCLUDE_NETWORK */  #define BOOT_DEVICE NO_NETWORK  #undef  BOTH_NET#endif	/* INCLUDE_NETWORK *//* Boot device */#if (BOOT_DEVICE == EMAC_END)  #define BOOT_DEV_NAME      "emac"  #define INCLUDE_EMAC_NETWORK	 /* include 405GP native EMAC network support */  #define ETHERNET_ADR_SET    /* (used in bootConfig.c to enable 'N' command) */  #undef  WDB_COMM_TYPE  #define WDB_COMM_TYPE      WDB_COMM_END	  #ifdef BOTH_NET    #define INCLUDE_FEI82557END		/* also include FEI driver */  #endif /* BOTH_NET */#elif (BOOT_DEVICE == FEI_END)  #define BOOT_DEV_NAME      "fei"  #define INCLUDE_FEI82557END		/* include FEI driver */  #undef  WDB_COMM_TYPE  #define WDB_COMM_TYPE      WDB_COMM_END  #ifdef BOTH_NET    #define INCLUDE_EMAC_NETWORK	/* also include EMAC */  #endif /* BOTH_NET */#elif (BOOT_DEVICE == NO_NETWORK)  #define BOOT_DEV_NAME      "none"  #undef  INCLUDE_FEI82557END  #undef  INCLUDE_EMAC_NETWORK#else	/* BOOT_DEVICE */ #define BOOT_DEV_NAME "none"#endif	/* BOOT_DEVICE *//* Debuging configuration *//* 			 * If the FORCE_DEFAULT_BOOT_LINE is defined then the DEFAULT_BOOT_LINE * parameters are always used regardless of NVRAM values specified at * bootrom time. See target.nr for details. This is usually used to debug * WR downloaded images with out a bootrom present. */#undef  FORCE_DEFAULT_BOOT_LINE#ifdef  INCLUDE_WDB_COMM_VTMD#define FORCE_DEFAULT_BOOT_LINE /* When using TMD this macro should be undefined */#endif  /* INCLUDE_WDB_COMM_VTMD *//* visionWARE configuration */#define INCLUDE_VWARE_LAUNCH/* Stuff to be excluded if FORCE_DEFAULT_BOOT_LINE defined */#ifdef  FORCE_DEFAULT_BOOT_LINE#undef  INCLUDE_VWARE_LAUNCH#undef  ETHERNET_ADR_SET#undef  NV_RAM_SIZE#define NV_RAM_SIZE          NONE#endif  /* FORCE_DEFAULT_BOOT_LINE *//* Boot line configuration */#if defined(BOOT_DEV_NAME)#define DEFAULT_BOOT_LINE    BOOT_DEV_NAME \                             "(0,0)sbc405gp:vxWorks " \                             "e=24.42.124.92 " \                             "h=24.42.124.94 " \                             "g=0.0.0.0 "  \                             "u=anonymous pw=user "     \                             "f=0x00 tn=sbc405gp"#ifdef INCLUDE_VWARE_LAUNCH#define VWARE_BOOT_LINE	     BOOT_DEV_NAME \                             "(0,0)sbc405gp:vxworks " \                             "%s " \                             "%s " \                             "%s " \                             "u=anonymous pw=user " \                             "f=0x000 tn=sbc405gp" #endif /* INCLUDE_VWARE_LAUNCH */#endif /* BOOT_DEV_NAME *//* * User application initialization * * USER_APPL_INIT must be a valid C statement or block.  It is * included in the usrRoot() routine only if INCLUDE_USER_APPL is * defined.  The code for USER_APPL_INIT is only an example.  The * user is expected to change it as needed.  The use of taskSpawn * is recommended over direct execution of the user routine. */#undef	INCLUDE_USER_APPL#define	USER_APPL_INIT \	{ \	IMPORT int myAppInit(); \	taskSpawn ("myApp", 30, 0, 5120, \		   myAppInit, 0x1, 0x2, 0x3, 0,0,0,0,0,0,0); \	}/* Include hardware header file */#include "wrSbc405gp.h"        /* board header file          */#include "ppc405GP.h"          /* chip header file           */#if defined(EMAC_CACHE_FLUSH) || defined(EMAC_CACHE_INVALIDATE)#include "405cache.h"#endif /* defined(EMAC_CACHE_FLUSH) || defined(EMAC_CACHE_INVALIDATE) */#ifdef __cplusplus}#endif /* __cplusplus */#endif	/* __INCconfigh */#if defined(PRJ_BUILD)#include "prjParams.h"#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美久久久一区| 亚洲老司机在线| 久久精品国产一区二区三| 91黄视频在线| 一区二区三区四区中文字幕| 国产v综合v亚洲欧| 欧美精品一区二区三区高清aⅴ | 欧美一级欧美一级在线播放| 夜夜嗨av一区二区三区| 在线视频国产一区| 亚洲免费电影在线| 欧美日韩一区二区在线观看| 亚洲va国产天堂va久久en| 91精品国产一区二区三区蜜臀| 天堂久久一区二区三区| 欧美精品一区二区不卡| 精品综合免费视频观看| 国产精品午夜在线| 色呦呦国产精品| 老色鬼精品视频在线观看播放| 久久亚洲精精品中文字幕早川悠里 | 日韩免费福利电影在线观看| 国产乱理伦片在线观看夜一区| 国产欧美一区二区精品性| av在线播放一区二区三区| 欧美成人女星排名| 久久99国产精品免费| 中文字幕高清一区| 欧美人与z0zoxxxx视频| 高清不卡一二三区| 亚洲超碰97人人做人人爱| 欧美一区二区三区日韩视频| 国产精品一区免费在线观看| 亚洲国产精品久久人人爱| 精品国产乱码久久久久久免费| a4yy欧美一区二区三区| 强制捆绑调教一区二区| 亚洲成人资源在线| 国产精品高潮久久久久无| 欧美sm美女调教| 久久精品视频在线看| 在线观看日韩一区| 成人av免费在线观看| 国产精品一区二区免费不卡| 日韩国产一区二| 日本怡春院一区二区| 欧美国产日产图区| 精品少妇一区二区三区在线视频 | 国产福利精品导航| 精品夜夜嗨av一区二区三区| 亚欧色一区w666天堂| 亚洲激情在线播放| 亚洲国产综合在线| 日一区二区三区| 亚洲风情在线资源站| 亚洲一区在线播放| 丝袜亚洲另类欧美综合| 日韩成人午夜电影| 激情综合五月天| 国产.欧美.日韩| 99久精品国产| 欧美色区777第一页| 69堂国产成人免费视频| 精品久久久久久久久久久院品网| 日韩免费看的电影| 国产精品久久三| 亚洲午夜激情网页| 精品亚洲国内自在自线福利| 高潮精品一区videoshd| 色先锋aa成人| 在线观看一区日韩| 国产99久久久国产精品潘金网站| 国产精品一区二区在线播放| 一本色道综合亚洲| 91精品国产乱| 亚洲男同性视频| 久久国产视频网| 欧美日韩国产综合久久| 久久精品一区二区三区四区| 一区二区欧美国产| 国产精品456| 日韩一区二区三区在线| 中文乱码免费一区二区| 美女网站色91| 欧美精品久久久久久久多人混战 | 日韩欧美久久一区| 亚洲国产中文字幕在线视频综合 | 91亚洲精品久久久蜜桃网站| 日韩视频一区二区在线观看| 亚洲欧美另类小说| 成人永久看片免费视频天堂| 欧美不卡123| 黄网站免费久久| 日韩精品一区二区在线| 肉丝袜脚交视频一区二区| 欧美日韩精品高清| 五月婷婷色综合| 在线观看av不卡| 亚洲主播在线观看| 在线看日韩精品电影| 亚洲电影视频在线| 欧美精品99久久久**| 日韩电影在线一区二区三区| 欧美日韩成人综合在线一区二区| 亚洲女人的天堂| 欧美丰满一区二区免费视频| 丝袜亚洲精品中文字幕一区| 91麻豆精品国产无毒不卡在线观看| 亚洲视频一区二区在线| 欧美天堂亚洲电影院在线播放| 一区二区三区中文字幕| 欧美日韩aaaaa| 久久国产成人午夜av影院| 久久久久久黄色| 成人av网站免费| 亚洲高清视频中文字幕| 日韩区在线观看| 97精品久久久午夜一区二区三区| 天天操天天综合网| 国产综合一区二区| 久久久99久久精品欧美| 在线观看日韩高清av| 久久精品72免费观看| ㊣最新国产の精品bt伙计久久| 91久久精品网| 国产精品69久久久久水密桃| 亚洲一区二区在线播放相泽| 2023国产精品| 欧美色中文字幕| 不卡一区二区三区四区| 婷婷中文字幕一区三区| 亚洲欧美色图小说| 久久九九国产精品| 日韩欧美国产一区二区在线播放 | 91小视频在线| 国产成人精品一区二区三区四区 | 久久亚洲一级片| 日韩免费一区二区| 亚洲精品一区二区三区福利 | 国产精品污网站| 亚洲精品一区在线观看| 欧美在线影院一区二区| av午夜一区麻豆| 成人av中文字幕| 成人综合在线观看| 高清免费成人av| 成人美女视频在线看| 国产精品99久久久久久久vr| 激情综合五月天| 激情五月激情综合网| 国产一区美女在线| 国产精品亚洲第一| 成人午夜精品一区二区三区| 亚洲女人****多毛耸耸8| 日韩欧美一区二区在线视频| 日韩视频在线一区二区| 欧美大白屁股肥臀xxxxxx| 久久人人超碰精品| 国产欧美一二三区| 一区二区三区四区高清精品免费观看 | 国产精品1区2区| 日本在线播放一区二区三区| 婷婷成人激情在线网| 亚洲成人一二三| 蜜桃久久久久久久| 国产在线精品不卡| 午夜精品在线看| 美腿丝袜在线亚洲一区| 国内久久精品视频| 成人永久aaa| 欧美性感一类影片在线播放| 暴力调教一区二区三区| 4438x亚洲最大成人网| 在线免费观看日本一区| 精品亚洲国内自在自线福利| 国产成人免费视频网站| 亚洲影视在线播放| 亚洲裸体xxx| 久色婷婷小香蕉久久| 91色在线porny| 91精品在线免费| 亚洲色图在线看| 久久99久久久欧美国产| 成人av电影在线播放| 欧美一区二区三区四区视频| 国产精品久久精品日日| 五月婷婷激情综合| www.在线成人| www成人在线观看| 亚洲图片欧美色图| 久久精品国产77777蜜臀| 色婷婷一区二区| 国产欧美一区二区精品秋霞影院| 亚洲一区二区三区四区在线| 国产高清精品久久久久| 欧美另类变人与禽xxxxx| 国产精品久久免费看| 国产一区二区福利| 精品入口麻豆88视频| 日韩电影在线一区二区三区|