Changeset d3a0af7 in mainline
- Timestamp:
- 2011-01-06T17:18:40Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 122b753
- Parents:
- b590c21
- Location:
- uspace/srv/hw/netif/dp8390
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/srv/hw/netif/dp8390/dp8390.c ¶
rb590c21 rd3a0af7 54 54 static void dp_pio16_getblock(dpeth_t *dep, int page, size_t offset, size_t size, void *dst); 55 55 static int dp_pkt2user(dpeth_t *dep, int page, int length); 56 static void dp_pio8_user2nic(dpeth_t *dep, iovec_dat_t *iovp, vir_bytes offset, int nic_addr, vir_bytescount);57 static void dp_pio16_user2nic(dpeth_t *dep, iovec_dat_t *iovp, vir_bytes offset, int nic_addr, vir_bytescount);58 static void dp_pio8_nic2user(dpeth_t *dep, int nic_addr, iovec_dat_t *iovp, vir_bytes offset, vir_bytescount);59 static void dp_pio16_nic2user(dpeth_t *dep, int nic_addr, iovec_dat_t *iovp, vir_bytes offset, vir_bytescount);56 static void dp_pio8_user2nic(dpeth_t *dep, iovec_dat_t *iovp, size_t offset, int nic_addr, size_t count); 57 static void dp_pio16_user2nic(dpeth_t *dep, iovec_dat_t *iovp, size_t offset, int nic_addr, size_t count); 58 static void dp_pio8_nic2user(dpeth_t *dep, int nic_addr, iovec_dat_t *iovp, size_t offset, size_t count); 59 static void dp_pio16_nic2user(dpeth_t *dep, int nic_addr, iovec_dat_t *iovp, size_t offset, size_t count); 60 60 static void dp_next_iovec(iovec_dat_t *iovp); 61 61 static void conf_hw(dpeth_t *dep); 62 62 static void reply(dpeth_t *dep, int err, int may_block); 63 static void get_userdata(int user_proc, vir_bytes user_addr, vir_bytes count, void *loc_addr);64 63 static void insb(port_t port, void *buf, size_t size); 65 64 static void insw(port_t port, void *buf, size_t size); … … 205 204 sizeof(iovec_t), dep->de_write_iovec.iod_iovec); 206 205 dep->de_write_iovec.iod_iovec_s = count; 207 dep->de_write_iovec.iod_proc_nr = mp->DL_PROC;208 206 dep->de_write_iovec.iod_iovec_addr = (vir_bytes) mp->DL_ADDR; 209 207 … … 216 214 mp->DL_COUNT; 217 215 dep->de_write_iovec.iod_iovec_s = 1; 218 dep->de_write_iovec.iod_proc_nr = mp->DL_PROC;219 216 dep->de_write_iovec.iod_iovec_addr = 0; 220 217 size= mp->DL_COUNT; … … 222 219 */ 223 220 size = packet_get_data_length(packet); 224 dep->de_write_iovec.iod_iovec[0].iov_addr = (v ir_bytes) packet_get_data(packet);221 dep->de_write_iovec.iod_iovec[0].iov_addr = (void *) packet_get_data(packet); 225 222 dep->de_write_iovec.iod_iovec[0].iov_size = size; 226 223 dep->de_write_iovec.iod_iovec_s = 1; 227 dep->de_write_iovec.iod_iovec_addr = (uintptr_t)NULL;224 dep->de_write_iovec.iod_iovec_addr = NULL; 228 225 229 226 if (size < ETH_MIN_PACK_SIZE || size > ETH_MAX_PACK_SIZE_TAGGED) { … … 556 553 //unsigned pageno, curr, next; 557 554 int pageno, curr, next; 558 vir_byteslength;555 size_t length; 559 556 int packet_processed, r; 560 557 uint16_t eth_type; … … 683 680 return ENOMEM; 684 681 685 dep->de_read_iovec.iod_iovec[0].iov_addr = (v ir_bytes) packet_suffix(packet, length);682 dep->de_read_iovec.iod_iovec[0].iov_addr = (void *) packet_suffix(packet, length); 686 683 dep->de_read_iovec.iod_iovec[0].iov_size = length; 687 684 dep->de_read_iovec.iod_iovec_s = 1; 688 dep->de_read_iovec.iod_iovec_addr = (uintptr_t)NULL;685 dep->de_read_iovec.iod_iovec_addr = NULL; 689 686 690 687 last = page + (length - 1) / DP_PAGESIZE; … … 720 717 } 721 718 722 static void dp_pio8_user2nic(dpeth_t *dep, iovec_dat_t *iovp, vir_bytes offset, int nic_addr, vir_bytescount)719 static void dp_pio8_user2nic(dpeth_t *dep, iovec_dat_t *iovp, size_t offset, int nic_addr, size_t count) 723 720 { 724 721 // phys_bytes phys_user; 725 722 int i; 726 vir_bytesbytes;727 723 size_t bytes; 724 728 725 outb_reg0(dep, DP_ISR, ISR_RDC); 729 730 outb_reg0(dep, DP_RBCR0, count & 0xFF);726 727 outb_reg0(dep, DP_RBCR0, count & 0xFF); 731 728 outb_reg0(dep, DP_RBCR1, count >> 8); 732 outb_reg0(dep, DP_RSAR0, nic_addr & 0xFF);729 outb_reg0(dep, DP_RSAR0, nic_addr & 0xFF); 733 730 outb_reg0(dep, DP_RSAR1, nic_addr >> 8); 734 731 outb_reg0(dep, DP_CR, CR_DM_RW | CR_PS_P0 | CR_STA); 735 736 i= 0; 737 while (count > 0) 738 { 739 if (i >= IOVEC_NR) 740 { 732 733 i = 0; 734 while (count > 0) { 735 if (i >= IOVEC_NR) { 741 736 dp_next_iovec(iovp); 742 i = 0;737 i = 0; 743 738 continue; 744 739 } 740 745 741 assert(i < iovp->iod_iovec_s); 746 if (offset >= iovp->iod_iovec[i].iov_size)747 {742 743 if (offset >= iovp->iod_iovec[i].iov_size) { 748 744 offset -= iovp->iod_iovec[i].iov_size; 749 745 i++; 750 746 continue; 751 747 } 748 752 749 bytes = iovp->iod_iovec[i].iov_size - offset; 753 750 if (bytes > count) 754 751 bytes = count; 755 756 do_vir_outsb(dep->de_data_port, iovp->iod_proc_nr, 757 iovp->iod_iovec[i].iov_addr + offset, bytes); 752 753 do_vir_outsb(dep->de_data_port, iovp->iod_iovec[i].iov_addr + offset, bytes); 758 754 count -= bytes; 759 755 offset += bytes; 760 756 } 757 761 758 assert(count == 0); 762 763 for (i= 0; i<100; i++) 764 { 765 if (inb_reg0(dep, DP_ISR) &ISR_RDC) 759 760 for (i = 0; i < 100; i++) { 761 if (inb_reg0(dep, DP_ISR) & ISR_RDC) 766 762 break; 767 763 } 764 768 765 if (i == 100) 769 766 fprintf(stderr, "dp8390: remote dma failed to complete\n"); 770 767 } 771 768 772 /*===========================================================================* 773 * dp_pio16_user2nic * 774 *===========================================================================*/ 775 static void dp_pio16_user2nic(dep, iovp, offset, nic_addr, count) 776 dpeth_t *dep; 777 iovec_dat_t *iovp; 778 vir_bytes offset; 779 int nic_addr; 780 vir_bytes count; 781 { 782 vir_bytes vir_user; 783 vir_bytes ecount; 784 int i, r, user_proc; 785 vir_bytes bytes; 769 static void dp_pio16_user2nic(dpeth_t *dep, iovec_dat_t *iovp, size_t offset, int nic_addr, size_t count) 770 { 771 void *vir_user; 772 size_t ecount; 773 int i, r; 774 size_t bytes; 786 775 //uint8_t two_bytes[2]; 787 776 uint16_t two_bytes; 788 777 int odd_byte; 789 790 ecount = (count+1) &~1;791 odd_byte = 0;792 778 779 ecount = (count + 1) & ~1; 780 odd_byte = 0; 781 793 782 outb_reg0(dep, DP_ISR, ISR_RDC); 794 outb_reg0(dep, DP_RBCR0, ecount & 0xFF);783 outb_reg0(dep, DP_RBCR0, ecount & 0xFF); 795 784 outb_reg0(dep, DP_RBCR1, ecount >> 8); 796 outb_reg0(dep, DP_RSAR0, nic_addr & 0xFF);785 outb_reg0(dep, DP_RSAR0, nic_addr & 0xFF); 797 786 outb_reg0(dep, DP_RSAR1, nic_addr >> 8); 798 787 outb_reg0(dep, DP_CR, CR_DM_RW | CR_PS_P0 | CR_STA); 799 800 i= 0; 801 while (count > 0) 802 { 803 if (i >= IOVEC_NR) 804 { 788 789 i = 0; 790 while (count > 0) { 791 if (i >= IOVEC_NR) { 805 792 dp_next_iovec(iovp); 806 i = 0;793 i = 0; 807 794 continue; 808 795 } 796 809 797 assert(i < iovp->iod_iovec_s); 810 if (offset >= iovp->iod_iovec[i].iov_size)811 {798 799 if (offset >= iovp->iod_iovec[i].iov_size) { 812 800 offset -= iovp->iod_iovec[i].iov_size; 813 801 i++; 814 802 continue; 815 803 } 804 816 805 bytes = iovp->iod_iovec[i].iov_size - offset; 817 806 if (bytes > count) 818 807 bytes = count; 819 820 user_proc= iovp->iod_proc_nr;821 vir_user= iovp->iod_iovec[i].iov_addr + offset;822 if (odd_byte) 823 {824 r= sys_vircopy(user_proc, D, vir_user,825 // SELF, D, (vir_bytes)&two_bytes[1], 1);826 SELF, D, (vir_bytes)&(((uint8_t *)&two_bytes)[1]), 1);808 809 vir_user = iovp->iod_iovec[i].iov_addr + offset; 810 811 if (odd_byte) { 812 r = sys_vircopy(user_proc, D, vir_user, 813 // SELF, D, (vir_bytes) &two_bytes[1], 1); 814 SELF, D, &(((uint8_t *) &two_bytes)[1]), 1); 815 827 816 if (r != EOK) 828 817 fprintf(stderr, "DP8390: dp_pio16_user2nic: sys_vircopy failed\n"); 829 818 830 //outw(dep->de_data_port, *(uint16_t *) two_bytes);819 //outw(dep->de_data_port, *(uint16_t *) two_bytes); 831 820 outw(dep->de_data_port, two_bytes); 832 821 count--; … … 835 824 vir_user++; 836 825 odd_byte= 0; 826 837 827 if (!bytes) 838 828 continue; 839 829 } 840 ecount= bytes &~1; 841 if (ecount != 0) 842 { 843 do_vir_outsw(dep->de_data_port, user_proc, vir_user, 844 ecount); 830 831 ecount= bytes & ~1; 832 if (ecount != 0) { 833 do_vir_outsw(dep->de_data_port, vir_user, ecount); 845 834 count -= ecount; 846 835 offset += ecount; … … 848 837 vir_user += ecount; 849 838 } 850 if (bytes)851 {839 840 if (bytes) { 852 841 assert(bytes == 1); 853 r= sys_vircopy(user_proc, D, vir_user, 854 // SELF, D, (vir_bytes)&two_bytes[0], 1); 855 SELF, D, (vir_bytes)&(((uint8_t *)&two_bytes)[0]), 1); 842 843 r = sys_vircopy(user_proc, D, vir_user, 844 // SELF, D, (vir_bytes) &two_bytes[0], 1); 845 SELF, D, &(((uint8_t *) &two_bytes)[0]), 1); 846 856 847 if (r != EOK) 857 848 fprintf(stderr, "DP8390: dp_pio16_user2nic: sys_vircopy failed\n"); … … 864 855 } 865 856 } 857 866 858 assert(count == 0); 867 859 868 860 if (odd_byte) 869 //outw(dep->de_data_port, *(uint16_t *) two_bytes);861 //outw(dep->de_data_port, *(uint16_t *) two_bytes); 870 862 outw(dep->de_data_port, two_bytes); 871 872 for (i= 0; i<100; i++) 873 { 863 864 for (i = 0; i < 100; i++) { 874 865 if (inb_reg0(dep, DP_ISR) &ISR_RDC) 875 866 break; 876 867 } 868 877 869 if (i == 100) 878 870 fprintf(stderr, "dp8390: remote dma failed to complete\n"); 879 871 } 880 872 881 /*===========================================================================* 882 * dp_pio8_nic2user * 883 *===========================================================================*/ 884 static void dp_pio8_nic2user(dep, nic_addr, iovp, offset, count) 885 dpeth_t *dep; 886 int nic_addr; 887 iovec_dat_t *iovp; 888 vir_bytes offset; 889 vir_bytes count; 873 static void dp_pio8_nic2user(dpeth_t *dep, int nic_addr, iovec_dat_t *iovp, size_t offset, size_t count) 890 874 { 891 875 // phys_bytes phys_user; 892 876 int i; 893 vir_bytesbytes;894 895 outb_reg0(dep, DP_RBCR0, count & 0xFF);877 size_t bytes; 878 879 outb_reg0(dep, DP_RBCR0, count & 0xFF); 896 880 outb_reg0(dep, DP_RBCR1, count >> 8); 897 outb_reg0(dep, DP_RSAR0, nic_addr & 0xFF);881 outb_reg0(dep, DP_RSAR0, nic_addr & 0xFF); 898 882 outb_reg0(dep, DP_RSAR1, nic_addr >> 8); 899 883 outb_reg0(dep, DP_CR, CR_DM_RR | CR_PS_P0 | CR_STA); 900 901 i= 0; 902 while (count > 0) 903 { 904 if (i >= IOVEC_NR) 905 { 884 885 i = 0; 886 while (count > 0) { 887 if (i >= IOVEC_NR) { 906 888 dp_next_iovec(iovp); 907 889 i= 0; 908 890 continue; 909 891 } 892 910 893 assert(i < iovp->iod_iovec_s); 911 if (offset >= iovp->iod_iovec[i].iov_size)912 {894 895 if (offset >= iovp->iod_iovec[i].iov_size) { 913 896 offset -= iovp->iod_iovec[i].iov_size; 914 897 i++; 915 898 continue; 916 899 } 900 917 901 bytes = iovp->iod_iovec[i].iov_size - offset; 918 902 if (bytes > count) 919 903 bytes = count; 920 921 do_vir_insb(dep->de_data_port, iovp->iod_proc_nr, 922 iovp->iod_iovec[i].iov_addr + offset, bytes); 904 905 do_vir_insb(dep->de_data_port, iovp->iod_iovec[i].iov_addr + offset, bytes); 923 906 count -= bytes; 924 907 offset += bytes; 925 908 } 909 926 910 assert(count == 0); 927 911 } 928 912 929 /*===========================================================================* 930 * dp_pio16_nic2user * 931 *===========================================================================*/ 932 static void dp_pio16_nic2user(dep, nic_addr, iovp, offset, count) 933 dpeth_t *dep; 934 int nic_addr; 935 iovec_dat_t *iovp; 936 vir_bytes offset; 937 vir_bytes count; 938 { 939 vir_bytes vir_user; 940 vir_bytes ecount; 941 int i, r, user_proc; 942 vir_bytes bytes; 913 static void dp_pio16_nic2user(dpeth_t *dep, int nic_addr, iovec_dat_t *iovp, size_t offset, size_t count) 914 { 915 void *vir_user; 916 size_t ecount; 917 int i, r; 918 size_t bytes; 943 919 //uint8_t two_bytes[2]; 944 920 uint16_t two_bytes; 945 921 int odd_byte; 946 947 ecount = (count+1) &~1;948 odd_byte = 0;949 950 outb_reg0(dep, DP_RBCR0, ecount & 0xFF);922 923 ecount = (count + 1) & ~1; 924 odd_byte = 0; 925 926 outb_reg0(dep, DP_RBCR0, ecount & 0xFF); 951 927 outb_reg0(dep, DP_RBCR1, ecount >> 8); 952 outb_reg0(dep, DP_RSAR0, nic_addr & 0xFF);928 outb_reg0(dep, DP_RSAR0, nic_addr & 0xFF); 953 929 outb_reg0(dep, DP_RSAR1, nic_addr >> 8); 954 930 outb_reg0(dep, DP_CR, CR_DM_RR | CR_PS_P0 | CR_STA); 955 956 i= 0; 957 while (count > 0) 958 { 959 if (i >= IOVEC_NR) 960 { 931 932 i = 0; 933 while (count > 0) { 934 if (i >= IOVEC_NR) { 961 935 dp_next_iovec(iovp); 962 i = 0;936 i = 0; 963 937 continue; 964 938 } 939 965 940 assert(i < iovp->iod_iovec_s); 966 if (offset >= iovp->iod_iovec[i].iov_size)967 {941 942 if (offset >= iovp->iod_iovec[i].iov_size) { 968 943 offset -= iovp->iod_iovec[i].iov_size; 969 944 i++; 970 945 continue; 971 946 } 947 972 948 bytes = iovp->iod_iovec[i].iov_size - offset; 973 949 if (bytes > count) 974 950 bytes = count; 975 976 user_proc= iovp->iod_proc_nr; 977 vir_user= iovp->iod_iovec[i].iov_addr + offset; 978 if (odd_byte) 979 { 951 952 vir_user = iovp->iod_iovec[i].iov_addr + offset; 953 954 if (odd_byte) { 980 955 //r= sys_vircopy(SELF, D, (vir_bytes)&two_bytes[1], 981 r= sys_vircopy(SELF, D, (vir_bytes)&(((uint8_t *)&two_bytes)[1]),982 user_proc, D, vir_user,1);956 r= sys_vircopy(SELF, D, &(((uint8_t *) &two_bytes)[1]), 957 user_proc, D, vir_user, 1); 983 958 if (r != EOK) 984 959 fprintf(stderr, "DP8390: dp_pio16_nic2user: sys_vircopy failed\n"); … … 989 964 vir_user++; 990 965 odd_byte= 0; 966 991 967 if (!bytes) 992 968 continue; 993 969 } 994 ecount= bytes &~1; 995 if (ecount != 0) 996 { 997 do_vir_insw(dep->de_data_port, user_proc, vir_user, 998 ecount); 970 971 ecount= bytes & ~1; 972 if (ecount != 0) { 973 do_vir_insw(dep->de_data_port, vir_user, ecount); 999 974 count -= ecount; 1000 975 offset += ecount; … … 1002 977 vir_user += ecount; 1003 978 } 1004 if (bytes)1005 {979 980 if (bytes) { 1006 981 assert(bytes == 1); 1007 //*(uint16_t *)two_bytes= inw(dep->de_data_port); 1008 two_bytes= inw(dep->de_data_port); 1009 //r= sys_vircopy(SELF, D, (vir_bytes)&two_bytes[0], 1010 r= sys_vircopy(SELF, D, (vir_bytes)&(((uint8_t *)&two_bytes)[0]), 1011 user_proc, D, vir_user, 1); 982 983 //*(uint16_t *) two_bytes= inw(dep->de_data_port); 984 two_bytes = inw(dep->de_data_port); 985 //r= sys_vircopy(SELF, D, (vir_bytes) &two_bytes[0], 986 r = sys_vircopy(SELF, D, &(((uint8_t *) &two_bytes)[0]), 987 user_proc, D, vir_user, 1); 1012 988 if (r != EOK) 1013 989 fprintf(stderr, "DP8390: dp_pio16_nic2user: sys_vircopy failed\n"); … … 1020 996 } 1021 997 } 998 1022 999 assert(count == 0); 1023 1000 } 1024 1001 1025 /*===========================================================================* 1026 * dp_next_iovec * 1027 *===========================================================================*/ 1028 static void dp_next_iovec(iovp) 1029 iovec_dat_t *iovp; 1002 static void dp_next_iovec(iovec_dat_t *iovp) 1030 1003 { 1031 1004 assert(iovp->iod_iovec_s > IOVEC_NR); 1032 1005 1033 1006 iovp->iod_iovec_s -= IOVEC_NR; 1034 1035 1007 iovp->iod_iovec_addr += IOVEC_NR * sizeof(iovec_t); 1036 1037 get_userdata(iovp->iod_proc_nr, iovp->iod_iovec_addr, 1038 (iovp->iod_iovec_s > IOVEC_NR ? IOVEC_NR : iovp->iod_iovec_s) * 1039 sizeof(iovec_t), iovp->iod_iovec); 1040 } 1041 1042 /*===========================================================================* 1043 * conf_hw * 1044 *===========================================================================*/ 1045 static void conf_hw(dep) 1046 dpeth_t *dep; 1008 1009 memcpy(iovp->iod_iovec, iovp->iod_iovec_addr, 1010 (iovp->iod_iovec_s > IOVEC_NR ? IOVEC_NR : iovp->iod_iovec_s) * 1011 sizeof(iovec_t)); 1012 } 1013 1014 static void conf_hw(dpeth_t *dep) 1047 1015 { 1048 1016 // static eth_stat_t empty_stat = {0, 0, 0, 0, 0, 0 /* ,... */}; 1049 1017 1050 1018 // int ifnr; 1051 1019 // dp_conf_t *dcp; 1052 1020 1053 1021 // dep->de_mode= DEM_DISABLED; /* Superfluous */ 1054 1022 // ifnr= dep-de_table; 1055 1023 1056 1024 // dcp= &dp_conf[ifnr]; 1057 1025 // update_conf(dep, dcp); 1058 1026 // if (dep->de_mode != DEM_ENABLED) 1059 1027 // return; 1028 1060 1029 if (!ne_probe(dep)) { 1061 1030 printf("%s: No ethernet card found at %#lx\n", … … 1064 1033 return; 1065 1034 } 1066 1067 /* XXX */ if (dep->de_linmem == 0) dep->de_linmem= 0xFFFF0000; 1068 1035 1069 1036 dep->de_mode = DEM_ENABLED; 1070 1071 1037 dep->de_flags = DEF_EMPTY; 1072 1038 // dep->de_stat = empty_stat; 1073 1039 } 1074 1040 1075 /*===========================================================================* 1076 * reply * 1077 *===========================================================================*/ 1078 static void reply(dep, err, may_block) 1079 dpeth_t *dep; 1080 int err; 1081 int may_block; 1041 static void reply(dpeth_t *dep, int err, int may_block) 1082 1042 { 1083 1043 /* message reply; 1084 1044 int status; 1085 1045 int r; 1086 1046 1087 1047 status = 0; 1088 1048 if (dep->de_flags &DEF_PACK_SEND) 1089 1049 status |= DL_PACK_SEND; 1050 1090 1051 if (dep->de_flags &DEF_PACK_RECV) 1091 1052 status |= DL_PACK_RECV; 1092 1053 1093 1054 reply.m_type = DL_TASK_REPLY; 1094 1055 reply.DL_PORT = dep - de_table; … … 1096 1057 reply.DL_STAT = status | ((u32_t) err << 16); 1097 1058 reply.DL_COUNT = dep->de_read_s; 1098 reply.DL_CLCK = 0; *//* Don't know */ 1099 /* r= send(dep->de_client, &reply); 1100 1101 if (r == ELOCKED && may_block) 1102 { 1103 #if 0 1059 reply.DL_CLCK = 0; *//* Don't know */ 1060 1061 /* r = send(dep->de_client, &reply); 1062 if (r == ELOCKED && may_block) { 1104 1063 printf("send locked\n"); 1105 #endif1106 1064 return; 1107 1065 } 1108 1066 1109 1067 if (r < 0) 1110 1068 fprintf(stderr, "dp8390: send failed\n"); … … 1114 1072 } 1115 1073 1116 /*===========================================================================*1117 * get_userdata *1118 *===========================================================================*/1119 static void get_userdata(user_proc, user_addr, count, loc_addr)1120 int user_proc;1121 vir_bytes user_addr;1122 vir_bytes count;1123 void *loc_addr;1124 {1125 int r;1126 1127 r= sys_vircopy(user_proc, D, user_addr,1128 SELF, D, (vir_bytes)loc_addr, count);1129 if (r != EOK)1130 fprintf(stderr, "DP8390: get_userdata: sys_vircopy failed\n");1131 }1132 1133 1074 static void insb(port_t port, void *buf, size_t size) 1134 1075 { 1135 1076 size_t i; 1136 1137 for (i = 0; i < size; ++ i){1077 1078 for (i = 0; i < size; i++) 1138 1079 *((uint8_t *) buf + i) = inb(port); 1139 }1140 1080 } 1141 1081 … … 1143 1083 { 1144 1084 size_t i; 1145 1146 for (i = 0; i * 2 < size; ++ i){1085 1086 for (i = 0; i * 2 < size; i++) 1147 1087 *((uint16_t *) buf + i) = inw(port); 1148 }1149 1088 } 1150 1089 … … 1152 1091 { 1153 1092 size_t i; 1154 1155 for (i = 0; i < size; ++ i){1093 1094 for (i = 0; i < size; i++) 1156 1095 outb(port, *((uint8_t *) buf + i)); 1157 }1158 1096 } 1159 1097 … … 1161 1099 { 1162 1100 size_t i; 1163 1164 for (i = 0; i * 2 < size; ++ i){1101 1102 for (i = 0; i * 2 < size; i++) 1165 1103 outw(port, *((uint16_t *) buf + i)); 1166 }1167 1104 } 1168 1105 -
TabularUnified uspace/srv/hw/netif/dp8390/dp8390.h ¶
rb590c21 rd3a0af7 219 219 typedef void (*dp_initf_t)(struct dpeth *dep); 220 220 typedef void (*dp_stopf_t)(struct dpeth *dep); 221 typedef void (*dp_user2nicf_t)(struct dpeth *dep, struct iovec_dat *iovp, vir_bytes offset, int nic_addr, vir_bytescount);222 typedef void (*dp_nic2userf_t)(struct dpeth *dep, int nic_addr, struct iovec_dat *iovp, vir_bytes offset, vir_bytescount);221 typedef void (*dp_user2nicf_t)(struct dpeth *dep, struct iovec_dat *iovp, size_t offset, int nic_addr, size_t count); 222 typedef void (*dp_nic2userf_t)(struct dpeth *dep, int nic_addr, struct iovec_dat *iovp, size_t offset, size_t count); 223 223 typedef void (*dp_getblock_t)(struct dpeth *dep, int page, size_t offset, size_t size, void *dst); 224 224 … … 228 228 iovec_t iod_iovec[IOVEC_NR]; 229 229 int iod_iovec_s; 230 int iod_proc_nr; 231 vir_bytes iod_iovec_addr; 230 void *iod_iovec_addr; 232 231 } iovec_dat_t; 233 232 … … 254 253 /* 255 254 * The de_base_port field is the starting point of the probe. 256 * The conf routine also fills de_ linmem and de_irq. If the probe255 * The conf routine also fills de_irq. If the probe 257 256 * routine knows the irq and/or memory address because they are 258 257 * hardwired in the board, the probe should modify these fields. … … 261 260 */ 262 261 port_t de_base_port; 263 phys_bytes de_linmem;264 262 int de_irq; 265 263 dp_initf_t de_initf; … … 300 298 iovec_dat_t de_write_iovec; 301 299 iovec_dat_t de_tmp_iovec; 302 vir_bytesde_read_s;300 size_t de_read_s; 303 301 // int de_client; 304 302 // message de_sendmsg; -
TabularUnified uspace/srv/hw/netif/dp8390/dp8390_port.h ¶
rb590c21 rd3a0af7 92 92 /** Reads a memory block byte by byte. 93 93 * @param[in] port The address to be written. 94 * @param proc The source process. Ignored parameter.95 94 * @param[in] dst The destination address. 96 95 * @param[in] bytes The block size in bytes. 97 96 */ 98 #define do_vir_insb(port, proc, dst, bytes)insb((port), (void *)(dst), (bytes))97 #define do_vir_insb(port, dst, bytes) insb((port), (void *)(dst), (bytes)) 99 98 100 99 /** Reads a memory block word by word (2 bytes). 101 100 * @param[in] port The address to be written. 102 * @param proc The source process. Ignored parameter.103 101 * @param[in] dst The destination address. 104 102 * @param[in] bytes The block size in bytes. 105 103 */ 106 #define do_vir_insw(port, proc, dst, bytes)insw((port), (void *)(dst), (bytes))104 #define do_vir_insw(port, dst, bytes) insw((port), (void *)(dst), (bytes)) 107 105 108 106 /** Writes a memory block byte by byte. 109 107 * @param[in] port The address to be written. 110 * @param proc The source process. Ignored parameter.111 108 * @param[in] src The source address. 112 109 * @param[in] bytes The block size in bytes. 113 110 */ 114 #define do_vir_outsb(port, proc, src, bytes)outsb((port), (void *)(src), (bytes))111 #define do_vir_outsb(port, src, bytes) outsb((port), (void *)(src), (bytes)) 115 112 116 113 /** Writes a memory block word by word (2 bytes). 117 114 * @param[in] port The address to be written. 118 * @param proc The source process. Ignored parameter.119 115 * @param[in] src The source address. 120 116 * @param[in] bytes The block size in bytes. 121 117 */ 122 #define do_vir_outsw(port, proc, src, bytes)outsw((port), (void *)(src), (bytes))118 #define do_vir_outsw(port, src, bytes) outsw((port), (void *)(src), (bytes)) 123 119 124 120 /* Bits in 'DL_MODE' field of DL requests. */ … … 208 204 } ether_addr_t; 209 205 210 /* type.h */211 /** Type definition of the physical addresses and lengths in bytes.212 */213 typedef unsigned long phys_bytes;214 215 /** Type definition of the virtual addresses and lengths in bytes.216 */217 typedef unsigned long vir_bytes;218 219 206 /** Type definition of the input/output vector. 220 207 */ … … 222 209 /** Address of an I/O buffer. 223 210 */ 224 vir_bytes iov_addr; 225 /** Sizeof an I/O buffer. 226 */ 227 vir_bytes iov_size; 211 void *iov_addr; 212 213 /** Size of an I/O buffer. 214 */ 215 size_t iov_size; 228 216 } iovec_t; 229 217 -
TabularUnified uspace/srv/hw/netif/dp8390/ne2000.c ¶
rb590c21 rd3a0af7 110 110 f(dep, loc2, pat0) && f(dep, loc2, pat1) && 111 111 f(dep, loc2, pat2) && f(dep, loc2, pat3)) { 112 /* We don't need a memory segment */113 dep->de_linmem = 0;114 112 dep->de_initf = ne_init; 115 113 dep->de_stopf = ne_stop;
Note:
See TracChangeset
for help on using the changeset viewer.