Changeset f902d36 in mainline
- Timestamp:
- 2011-01-11T12:04:06Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 04aade50
- Parents:
- 597c948
- Files:
-
- 14 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r597c948 rf902d36 98 98 $(USPACE_PATH)/srv/fs/fat/fat \ 99 99 $(USPACE_PATH)/srv/taskmon/taskmon \ 100 $(USPACE_PATH)/srv/hw/netif/ dp8390/dp8390 \100 $(USPACE_PATH)/srv/hw/netif/ne2000/ne2000 \ 101 101 $(USPACE_PATH)/srv/net/netif/lo/lo \ 102 102 $(USPACE_PATH)/srv/net/nil/eth/eth \ -
kernel/arch/amd64/include/interrupt.h
r597c948 rf902d36 55 55 #define IRQ_PIC_SPUR 7 56 56 #define IRQ_MOUSE 12 57 #define IRQ_ DP8390 957 #define IRQ_NE2000 9 58 58 59 59 /* This one must have four least significant bits set to ones */ -
kernel/arch/amd64/src/amd64.c
r597c948 rf902d36 238 238 sysinfo_set_item_val(irqs_info, NULL, true); 239 239 240 sysinfo_set_item_val("netif. dp8390.inr", NULL, IRQ_DP8390);240 sysinfo_set_item_val("netif.ne2000.inr", NULL, IRQ_NE2000); 241 241 } 242 242 -
kernel/arch/ia32/include/interrupt.h
r597c948 rf902d36 55 55 #define IRQ_PIC_SPUR 7 56 56 #define IRQ_MOUSE 12 57 #define IRQ_ DP8390 557 #define IRQ_NE2000 5 58 58 59 59 /* This one must have four least significant bits set to ones */ -
kernel/arch/ia32/src/ia32.c
r597c948 rf902d36 196 196 sysinfo_set_item_val(irqs_info, NULL, true); 197 197 198 sysinfo_set_item_val("netif. dp8390.inr", NULL, IRQ_DP8390);198 sysinfo_set_item_val("netif.ne2000.inr", NULL, IRQ_NE2000); 199 199 } 200 200 -
kernel/arch/ia64/include/interrupt.h
r597c948 rf902d36 61 61 #define IRQ_KBD (0x01 + LEGACY_INTERRUPT_BASE) 62 62 #define IRQ_MOUSE (0x0c + LEGACY_INTERRUPT_BASE) 63 #define IRQ_ DP8390 (0x09 + LEGACY_INTERRUPT_BASE)63 #define IRQ_NE2000 (0x09 + LEGACY_INTERRUPT_BASE) 64 64 65 65 /** General Exception codes. */ -
kernel/arch/ia64/src/ia64.c
r597c948 rf902d36 222 222 #endif 223 223 224 sysinfo_set_item_val("netif. dp8390.inr", NULL, IRQ_DP8390);224 sysinfo_set_item_val("netif.ne2000.inr", NULL, IRQ_NE2000); 225 225 226 226 sysinfo_set_item_val("ia64_iospace", NULL, true); -
uspace/Makefile
r597c948 rf902d36 80 80 srv/hw/char/i8042 \ 81 81 srv/hw/char/s3c24xx_uart \ 82 srv/hw/netif/ dp8390 \82 srv/hw/netif/ne2000 \ 83 83 srv/net/netif/lo \ 84 84 srv/net/il/arp \ -
uspace/doc/doxygroups.h
r597c948 rf902d36 43 43 44 44 /** 45 * @defgroup dp8390 Generic DP8390 network interface familyservice45 * @defgroup ne2000 NE2000 network interface service 46 46 * @ingroup netif 47 47 */ 48 49 /**50 * @defgroup ne2k NE2000 network interface family51 * @ingroup dp839052 */53 48 54 49 /** -
uspace/lib/c/include/ipc/services.h
r597c948 rf902d36 54 54 SERVICE_NETWORKING, 55 55 SERVICE_LO, 56 SERVICE_ DP8390,56 SERVICE_NE2000, 57 57 SERVICE_ETHERNET, 58 58 SERVICE_NILDUMMY, -
uspace/lib/net/generic/protocol_map.c
r597c948 rf902d36 50 50 switch (nil) { 51 51 case SERVICE_ETHERNET: 52 case SERVICE_ DP8390:52 case SERVICE_NE2000: 53 53 switch (il) { 54 54 case SERVICE_IP: … … 76 76 switch (nil) { 77 77 case SERVICE_ETHERNET: 78 case SERVICE_ DP8390:78 case SERVICE_NE2000: 79 79 switch (protocol) { 80 80 case ETH_P_IP: … … 139 139 switch (nil) { 140 140 case SERVICE_ETHERNET: 141 case SERVICE_ DP8390:141 case SERVICE_NE2000: 142 142 return HW_ETHER; 143 143 default: -
uspace/srv/hw/netif/ne2000/Makefile
r597c948 rf902d36 39 39 -include $(CONFIG_MAKEFILE) 40 40 41 BINARY = dp839041 BINARY = ne2000 42 42 43 43 SOURCES = \ -
uspace/srv/hw/netif/ne2000/ne2000.c
r597c948 rf902d36 78 78 static int irc_phone = -1; 79 79 80 /** DP8390 kernel interrupt command sequence.80 /** NE2000 kernel interrupt command sequence. 81 81 * 82 82 */ … … 128 128 }; 129 129 130 /** DP8390 kernel interrupt code.130 /** NE2000 kernel interrupt code. 131 131 * 132 132 */ … … 398 398 399 399 sysarg_t phonehash; 400 return ipc_connect_to_me(PHONE_NS, SERVICE_ DP8390, 0, 0, &phonehash);400 return ipc_connect_to_me(PHONE_NS, SERVICE_NE2000, 0, 0, &phonehash); 401 401 } 402 402 -
uspace/srv/net/cfg/ne2k
r597c948 rf902d36 1 # DP8390 (NE2k)configuration1 # NE2000 configuration 2 2 3 3 NAME=ne2k 4 4 5 NETIF= dp83905 NETIF=ne2000 6 6 NIL=eth 7 7 IL=ip … … 15 15 16 16 IP_CONFIG=static 17 IP_ADDR=10. 0.2.1517 IP_ADDR=10.10.16.86 18 18 IP_ROUTING=yes 19 IP_NETMASK=255.255.255. 24020 IP_BROADCAST=10. 0.2.25521 IP_GATEWAY=10. 0.2.219 IP_NETMASK=255.255.255.0 20 IP_BROADCAST=10.10.16.255 21 IP_GATEWAY=10.10.16.1 22 22 ARP=arp 23 23 -
uspace/srv/net/net/net.c
r597c948 rf902d36 288 288 if (rc != EOK) 289 289 return rc; 290 rc = add_module(NULL, &net_globals.modules, (uint8_t *) DP8390_NAME,291 (uint8_t *) DP8390_FILENAME, SERVICE_DP8390, 0, connect_to_service);290 rc = add_module(NULL, &net_globals.modules, (uint8_t *) NE2000_NAME, 291 (uint8_t *) NE2000_FILENAME, SERVICE_NE2000, 0, connect_to_service); 292 292 if (rc != EOK) 293 293 return rc; -
uspace/srv/net/net/net.h
r597c948 rf902d36 52 52 */ 53 53 54 #define DP8390_FILENAME "/srv/dp8390"55 #define DP8390_NAME "dp8390"54 #define NE2000_FILENAME "/srv/ne2000" 55 #define NE2000_NAME "ne2000" 56 56 57 57 #define ETHERNET_FILENAME "/srv/eth"
Note:
See TracChangeset
for help on using the changeset viewer.