⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 leon_smc91111.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/* *  $Id: leon_smc91111.c,v 1.1.2.2 2006/04/24 16:58:41 joel Exp $ */#include <rtems.h>#include <bsp.h>#include <stdio.h>#include <stdlib.h>#include <stdio.h>#include <stdarg.h>#include <rtems/error.h>#include <rtems/rtems_bsdnet.h>#include <sys/param.h>#include <sys/mbuf.h>#include <sys/socket.h>#include <sys/sockio.h>#include <net/if.h>#include <netinet/in.h>#include <netinet/if_ether.h>#include <libchip/smc91111exp.h>#define SMC91111_BASE_ADDR (void*)0x20000300#define SMC91111_BASE_IRQ  LEON_TRAP_TYPE(4)#define SMC91111_BASE_PIO  4scmv91111_configuration_t leon_scmv91111_configuration = {  SMC91111_BASE_ADDR, /* base address */   SMC91111_BASE_IRQ,  /* vector number */   SMC91111_BASE_PIO,  /* PIO */   100,                 /* 100b */  1,                  /* fulldx */  1                   /* autoneg */};int _rtems_smc91111_driver_attach(  struct rtems_bsdnet_ifconfig *config,  scmv91111_configuration_t    *scm_config);/* * Attach an SMC91111 driver to the system */int rtems_smc91111_driver_attach_leon2(struct rtems_bsdnet_ifconfig *config){  /* activate io area */  /*configure pio */  *((volatile unsigned int *)0x80000000) |= 0x10f80000;  *((volatile unsigned int *)0x800000A8) |=    (0xe0 | leon_scmv91111_configuration.pio)      << (8 * ((leon_scmv91111_configuration.vector & 0x0f) - 4));    return _rtems_smc91111_driver_attach(config,&leon_scmv91111_configuration);};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -