diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/Kconfig | 11 | ||||
-rw-r--r-- | drivers/net/Makefile | 1 | ||||
-rw-r--r-- | drivers/net/e100.c | 241 | ||||
-rw-r--r-- | drivers/net/sis190.c | 1843 | ||||
-rw-r--r-- | drivers/net/tulip/Kconfig | 12 | ||||
-rw-r--r-- | drivers/net/tulip/Makefile | 1 | ||||
-rw-r--r-- | drivers/net/tulip/media.c | 36 | ||||
-rw-r--r-- | drivers/net/tulip/timer.c | 1 | ||||
-rw-r--r-- | drivers/net/tulip/tulip.h | 8 | ||||
-rw-r--r-- | drivers/net/tulip/tulip_core.c | 34 | ||||
-rw-r--r-- | drivers/net/tulip/uli526x.c | 1749 |
11 files changed, 3847 insertions, 90 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index a6a441b969fd..e0239a10d325 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
@@ -1923,6 +1923,17 @@ config R8169_VLAN | |||
1923 | 1923 | ||
1924 | If in doubt, say Y. | 1924 | If in doubt, say Y. |
1925 | 1925 | ||
1926 | config SIS190 | ||
1927 | tristate "SiS190 gigabit ethernet support" | ||
1928 | depends on PCI | ||
1929 | select CRC32 | ||
1930 | select MII | ||
1931 | ---help--- | ||
1932 | Say Y here if you have a SiS 190 PCI Gigabit Ethernet adapter. | ||
1933 | |||
1934 | To compile this driver as a module, choose M here: the module | ||
1935 | will be called sis190. This is recommended. | ||
1936 | |||
1926 | config SKGE | 1937 | config SKGE |
1927 | tristate "New SysKonnect GigaEthernet support (EXPERIMENTAL)" | 1938 | tristate "New SysKonnect GigaEthernet support (EXPERIMENTAL)" |
1928 | depends on PCI && EXPERIMENTAL | 1939 | depends on PCI && EXPERIMENTAL |
diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 954d26297d7c..5baafcd55610 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile | |||
@@ -43,6 +43,7 @@ obj-$(CONFIG_EEPRO100) += eepro100.o | |||
43 | obj-$(CONFIG_E100) += e100.o | 43 | obj-$(CONFIG_E100) += e100.o |
44 | obj-$(CONFIG_TLAN) += tlan.o | 44 | obj-$(CONFIG_TLAN) += tlan.o |
45 | obj-$(CONFIG_EPIC100) += epic100.o | 45 | obj-$(CONFIG_EPIC100) += epic100.o |
46 | obj-$(CONFIG_SIS190) += sis190.o | ||
46 | obj-$(CONFIG_SIS900) += sis900.o | 47 | obj-$(CONFIG_SIS900) += sis900.o |
47 | obj-$(CONFIG_YELLOWFIN) += yellowfin.o | 48 | obj-$(CONFIG_YELLOWFIN) += yellowfin.o |
48 | obj-$(CONFIG_ACENIC) += acenic.o | 49 | obj-$(CONFIG_ACENIC) += acenic.o |
diff --git a/drivers/net/e100.c b/drivers/net/e100.c index d0fa2448761d..25cc20e415da 100644 --- a/drivers/net/e100.c +++ b/drivers/net/e100.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /******************************************************************************* | 1 | /******************************************************************************* |
2 | 2 | ||
3 | 3 | ||
4 | Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved. | 4 | Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved. |
5 | 5 | ||
6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
7 | under the terms of the GNU General Public License as published by the Free | 7 | under the terms of the GNU General Public License as published by the Free |
@@ -156,7 +156,7 @@ | |||
156 | 156 | ||
157 | #define DRV_NAME "e100" | 157 | #define DRV_NAME "e100" |
158 | #define DRV_EXT "-NAPI" | 158 | #define DRV_EXT "-NAPI" |
159 | #define DRV_VERSION "3.4.8-k2"DRV_EXT | 159 | #define DRV_VERSION "3.4.14-k2"DRV_EXT |
160 | #define DRV_DESCRIPTION "Intel(R) PRO/100 Network Driver" | 160 | #define DRV_DESCRIPTION "Intel(R) PRO/100 Network Driver" |
161 | #define DRV_COPYRIGHT "Copyright(c) 1999-2005 Intel Corporation" | 161 | #define DRV_COPYRIGHT "Copyright(c) 1999-2005 Intel Corporation" |
162 | #define PFX DRV_NAME ": " | 162 | #define PFX DRV_NAME ": " |
@@ -785,6 +785,7 @@ static int e100_eeprom_save(struct nic *nic, u16 start, u16 count) | |||
785 | } | 785 | } |
786 | 786 | ||
787 | #define E100_WAIT_SCB_TIMEOUT 20000 /* we might have to wait 100ms!!! */ | 787 | #define E100_WAIT_SCB_TIMEOUT 20000 /* we might have to wait 100ms!!! */ |
788 | #define E100_WAIT_SCB_FAST 20 /* delay like the old code */ | ||
788 | static inline int e100_exec_cmd(struct nic *nic, u8 cmd, dma_addr_t dma_addr) | 789 | static inline int e100_exec_cmd(struct nic *nic, u8 cmd, dma_addr_t dma_addr) |
789 | { | 790 | { |
790 | unsigned long flags; | 791 | unsigned long flags; |
@@ -798,7 +799,7 @@ static inline int e100_exec_cmd(struct nic *nic, u8 cmd, dma_addr_t dma_addr) | |||
798 | if(likely(!readb(&nic->csr->scb.cmd_lo))) | 799 | if(likely(!readb(&nic->csr->scb.cmd_lo))) |
799 | break; | 800 | break; |
800 | cpu_relax(); | 801 | cpu_relax(); |
801 | if(unlikely(i > (E100_WAIT_SCB_TIMEOUT >> 1))) | 802 | if(unlikely(i > E100_WAIT_SCB_FAST)) |
802 | udelay(5); | 803 | udelay(5); |
803 | } | 804 | } |
804 | if(unlikely(i == E100_WAIT_SCB_TIMEOUT)) { | 805 | if(unlikely(i == E100_WAIT_SCB_TIMEOUT)) { |
@@ -902,8 +903,8 @@ static void mdio_write(struct net_device *netdev, int addr, int reg, int data) | |||
902 | 903 | ||
903 | static void e100_get_defaults(struct nic *nic) | 904 | static void e100_get_defaults(struct nic *nic) |
904 | { | 905 | { |
905 | struct param_range rfds = { .min = 16, .max = 256, .count = 64 }; | 906 | struct param_range rfds = { .min = 16, .max = 256, .count = 256 }; |
906 | struct param_range cbs = { .min = 64, .max = 256, .count = 64 }; | 907 | struct param_range cbs = { .min = 64, .max = 256, .count = 128 }; |
907 | 908 | ||
908 | pci_read_config_byte(nic->pdev, PCI_REVISION_ID, &nic->rev_id); | 909 | pci_read_config_byte(nic->pdev, PCI_REVISION_ID, &nic->rev_id); |
909 | /* MAC type is encoded as rev ID; exception: ICH is treated as 82559 */ | 910 | /* MAC type is encoded as rev ID; exception: ICH is treated as 82559 */ |
@@ -1006,25 +1007,213 @@ static void e100_configure(struct nic *nic, struct cb *cb, struct sk_buff *skb) | |||
1006 | c[16], c[17], c[18], c[19], c[20], c[21], c[22], c[23]); | 1007 | c[16], c[17], c[18], c[19], c[20], c[21], c[22], c[23]); |
1007 | } | 1008 | } |
1008 | 1009 | ||
1010 | /********************************************************/ | ||
1011 | /* Micro code for 8086:1229 Rev 8 */ | ||
1012 | /********************************************************/ | ||
1013 | |||
1014 | /* Parameter values for the D101M B-step */ | ||
1015 | #define D101M_CPUSAVER_TIMER_DWORD 78 | ||
1016 | #define D101M_CPUSAVER_BUNDLE_DWORD 65 | ||
1017 | #define D101M_CPUSAVER_MIN_SIZE_DWORD 126 | ||
1018 | |||
1019 | #define D101M_B_RCVBUNDLE_UCODE \ | ||
1020 | {\ | ||
1021 | 0x00550215, 0xFFFF0437, 0xFFFFFFFF, 0x06A70789, 0xFFFFFFFF, 0x0558FFFF, \ | ||
1022 | 0x000C0001, 0x00101312, 0x000C0008, 0x00380216, \ | ||
1023 | 0x0010009C, 0x00204056, 0x002380CC, 0x00380056, \ | ||
1024 | 0x0010009C, 0x00244C0B, 0x00000800, 0x00124818, \ | ||
1025 | 0x00380438, 0x00000000, 0x00140000, 0x00380555, \ | ||
1026 | 0x00308000, 0x00100662, 0x00100561, 0x000E0408, \ | ||
1027 | 0x00134861, 0x000C0002, 0x00103093, 0x00308000, \ | ||
1028 | 0x00100624, 0x00100561, 0x000E0408, 0x00100861, \ | ||
1029 | 0x000C007E, 0x00222C21, 0x000C0002, 0x00103093, \ | ||
1030 | 0x00380C7A, 0x00080000, 0x00103090, 0x00380C7A, \ | ||
1031 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1032 | 0x0010009C, 0x00244C2D, 0x00010004, 0x00041000, \ | ||
1033 | 0x003A0437, 0x00044010, 0x0038078A, 0x00000000, \ | ||
1034 | 0x00100099, 0x00206C7A, 0x0010009C, 0x00244C48, \ | ||
1035 | 0x00130824, 0x000C0001, 0x00101213, 0x00260C75, \ | ||
1036 | 0x00041000, 0x00010004, 0x00130826, 0x000C0006, \ | ||
1037 | 0x002206A8, 0x0013C926, 0x00101313, 0x003806A8, \ | ||
1038 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1039 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1040 | 0x00080600, 0x00101B10, 0x00050004, 0x00100826, \ | ||
1041 | 0x00101210, 0x00380C34, 0x00000000, 0x00000000, \ | ||
1042 | 0x0021155B, 0x00100099, 0x00206559, 0x0010009C, \ | ||
1043 | 0x00244559, 0x00130836, 0x000C0000, 0x00220C62, \ | ||
1044 | 0x000C0001, 0x00101B13, 0x00229C0E, 0x00210C0E, \ | ||
1045 | 0x00226C0E, 0x00216C0E, 0x0022FC0E, 0x00215C0E, \ | ||
1046 | 0x00214C0E, 0x00380555, 0x00010004, 0x00041000, \ | ||
1047 | 0x00278C67, 0x00040800, 0x00018100, 0x003A0437, \ | ||
1048 | 0x00130826, 0x000C0001, 0x00220559, 0x00101313, \ | ||
1049 | 0x00380559, 0x00000000, 0x00000000, 0x00000000, \ | ||
1050 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1051 | 0x00000000, 0x00130831, 0x0010090B, 0x00124813, \ | ||
1052 | 0x000CFF80, 0x002606AB, 0x00041000, 0x00010004, \ | ||
1053 | 0x003806A8, 0x00000000, 0x00000000, 0x00000000, \ | ||
1054 | } | ||
1055 | |||
1056 | /********************************************************/ | ||
1057 | /* Micro code for 8086:1229 Rev 9 */ | ||
1058 | /********************************************************/ | ||
1059 | |||
1060 | /* Parameter values for the D101S */ | ||
1061 | #define D101S_CPUSAVER_TIMER_DWORD 78 | ||
1062 | #define D101S_CPUSAVER_BUNDLE_DWORD 67 | ||
1063 | #define D101S_CPUSAVER_MIN_SIZE_DWORD 128 | ||
1064 | |||
1065 | #define D101S_RCVBUNDLE_UCODE \ | ||
1066 | {\ | ||
1067 | 0x00550242, 0xFFFF047E, 0xFFFFFFFF, 0x06FF0818, 0xFFFFFFFF, 0x05A6FFFF, \ | ||
1068 | 0x000C0001, 0x00101312, 0x000C0008, 0x00380243, \ | ||
1069 | 0x0010009C, 0x00204056, 0x002380D0, 0x00380056, \ | ||
1070 | 0x0010009C, 0x00244F8B, 0x00000800, 0x00124818, \ | ||
1071 | 0x0038047F, 0x00000000, 0x00140000, 0x003805A3, \ | ||
1072 | 0x00308000, 0x00100610, 0x00100561, 0x000E0408, \ | ||
1073 | 0x00134861, 0x000C0002, 0x00103093, 0x00308000, \ | ||
1074 | 0x00100624, 0x00100561, 0x000E0408, 0x00100861, \ | ||
1075 | 0x000C007E, 0x00222FA1, 0x000C0002, 0x00103093, \ | ||
1076 | 0x00380F90, 0x00080000, 0x00103090, 0x00380F90, \ | ||
1077 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1078 | 0x0010009C, 0x00244FAD, 0x00010004, 0x00041000, \ | ||
1079 | 0x003A047E, 0x00044010, 0x00380819, 0x00000000, \ | ||
1080 | 0x00100099, 0x00206FFD, 0x0010009A, 0x0020AFFD, \ | ||
1081 | 0x0010009C, 0x00244FC8, 0x00130824, 0x000C0001, \ | ||
1082 | 0x00101213, 0x00260FF7, 0x00041000, 0x00010004, \ | ||
1083 | 0x00130826, 0x000C0006, 0x00220700, 0x0013C926, \ | ||
1084 | 0x00101313, 0x00380700, 0x00000000, 0x00000000, \ | ||
1085 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1086 | 0x00080600, 0x00101B10, 0x00050004, 0x00100826, \ | ||
1087 | 0x00101210, 0x00380FB6, 0x00000000, 0x00000000, \ | ||
1088 | 0x002115A9, 0x00100099, 0x002065A7, 0x0010009A, \ | ||
1089 | 0x0020A5A7, 0x0010009C, 0x002445A7, 0x00130836, \ | ||
1090 | 0x000C0000, 0x00220FE4, 0x000C0001, 0x00101B13, \ | ||
1091 | 0x00229F8E, 0x00210F8E, 0x00226F8E, 0x00216F8E, \ | ||
1092 | 0x0022FF8E, 0x00215F8E, 0x00214F8E, 0x003805A3, \ | ||
1093 | 0x00010004, 0x00041000, 0x00278FE9, 0x00040800, \ | ||
1094 | 0x00018100, 0x003A047E, 0x00130826, 0x000C0001, \ | ||
1095 | 0x002205A7, 0x00101313, 0x003805A7, 0x00000000, \ | ||
1096 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1097 | 0x00000000, 0x00000000, 0x00000000, 0x00130831, \ | ||
1098 | 0x0010090B, 0x00124813, 0x000CFF80, 0x00260703, \ | ||
1099 | 0x00041000, 0x00010004, 0x00380700 \ | ||
1100 | } | ||
1101 | |||
1102 | /********************************************************/ | ||
1103 | /* Micro code for the 8086:1229 Rev F/10 */ | ||
1104 | /********************************************************/ | ||
1105 | |||
1106 | /* Parameter values for the D102 E-step */ | ||
1107 | #define D102_E_CPUSAVER_TIMER_DWORD 42 | ||
1108 | #define D102_E_CPUSAVER_BUNDLE_DWORD 54 | ||
1109 | #define D102_E_CPUSAVER_MIN_SIZE_DWORD 46 | ||
1110 | |||
1111 | #define D102_E_RCVBUNDLE_UCODE \ | ||
1112 | {\ | ||
1113 | 0x007D028F, 0x0E4204F9, 0x14ED0C85, 0x14FA14E9, 0x0EF70E36, 0x1FFF1FFF, \ | ||
1114 | 0x00E014B9, 0x00000000, 0x00000000, 0x00000000, \ | ||
1115 | 0x00E014BD, 0x00000000, 0x00000000, 0x00000000, \ | ||
1116 | 0x00E014D5, 0x00000000, 0x00000000, 0x00000000, \ | ||
1117 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1118 | 0x00E014C1, 0x00000000, 0x00000000, 0x00000000, \ | ||
1119 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1120 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1121 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1122 | 0x00E014C8, 0x00000000, 0x00000000, 0x00000000, \ | ||
1123 | 0x00200600, 0x00E014EE, 0x00000000, 0x00000000, \ | ||
1124 | 0x0030FF80, 0x00940E46, 0x00038200, 0x00102000, \ | ||
1125 | 0x00E00E43, 0x00000000, 0x00000000, 0x00000000, \ | ||
1126 | 0x00300006, 0x00E014FB, 0x00000000, 0x00000000, \ | ||
1127 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1128 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1129 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1130 | 0x00906E41, 0x00800E3C, 0x00E00E39, 0x00000000, \ | ||
1131 | 0x00906EFD, 0x00900EFD, 0x00E00EF8, 0x00000000, \ | ||
1132 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1133 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1134 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1135 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1136 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1137 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1138 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1139 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1140 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1141 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1142 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1143 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1144 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1145 | 0x00000000, 0x00000000, 0x00000000, 0x00000000, \ | ||
1146 | } | ||
1147 | |||
1009 | static void e100_load_ucode(struct nic *nic, struct cb *cb, struct sk_buff *skb) | 1148 | static void e100_load_ucode(struct nic *nic, struct cb *cb, struct sk_buff *skb) |
1010 | { | 1149 | { |
1011 | int i; | 1150 | /* *INDENT-OFF* */ |
1012 | static const u32 ucode[UCODE_SIZE] = { | 1151 | static struct { |
1013 | /* NFS packets are misinterpreted as TCO packets and | 1152 | u32 ucode[UCODE_SIZE + 1]; |
1014 | * incorrectly routed to the BMC over SMBus. This | 1153 | u8 mac; |
1015 | * microcode patch checks the fragmented IP bit in the | 1154 | u8 timer_dword; |
1016 | * NFS/UDP header to distinguish between NFS and TCO. */ | 1155 | u8 bundle_dword; |
1017 | 0x0EF70E36, 0x1FFF1FFF, 0x1FFF1FFF, 0x1FFF1FFF, 0x1FFF1FFF, | 1156 | u8 min_size_dword; |
1018 | 0x1FFF1FFF, 0x00906E41, 0x00800E3C, 0x00E00E39, 0x00000000, | 1157 | } ucode_opts[] = { |
1019 | 0x00906EFD, 0x00900EFD, 0x00E00EF8, | 1158 | { D101M_B_RCVBUNDLE_UCODE, |
1020 | }; | 1159 | mac_82559_D101M, |
1160 | D101M_CPUSAVER_TIMER_DWORD, | ||
1161 | D101M_CPUSAVER_BUNDLE_DWORD, | ||
1162 | D101M_CPUSAVER_MIN_SIZE_DWORD }, | ||
1163 | { D101S_RCVBUNDLE_UCODE, | ||
1164 | mac_82559_D101S, | ||
1165 | D101S_CPUSAVER_TIMER_DWORD, | ||
1166 | D101S_CPUSAVER_BUNDLE_DWORD, | ||
1167 | D101S_CPUSAVER_MIN_SIZE_DWORD }, | ||
1168 | { D102_E_RCVBUNDLE_UCODE, | ||
1169 | mac_82551_F, | ||
1170 | D102_E_CPUSAVER_TIMER_DWORD, | ||
1171 | D102_E_CPUSAVER_BUNDLE_DWORD, | ||
1172 | D102_E_CPUSAVER_MIN_SIZE_DWORD }, | ||
1173 | { D102_E_RCVBUNDLE_UCODE, | ||
1174 | mac_82551_10, | ||
1175 | D102_E_CPUSAVER_TIMER_DWORD, | ||
1176 | D102_E_CPUSAVER_BUNDLE_DWORD, | ||
1177 | D102_E_CPUSAVER_MIN_SIZE_DWORD }, | ||
1178 | { {0}, 0, 0, 0, 0} | ||
1179 | }, *opts; | ||
1180 | /* *INDENT-ON* */ | ||
1181 | |||
1182 | #define BUNDLESMALL 1 | ||
1183 | #define BUNDLEMAX 50 | ||
1184 | #define INTDELAY 15000 | ||
1185 | |||
1186 | opts = ucode_opts; | ||
1187 | |||
1188 | /* do not load u-code for ICH devices */ | ||
1189 | if (nic->flags & ich) | ||
1190 | return; | ||
1191 | |||
1192 | /* Search for ucode match against h/w rev_id */ | ||
1193 | while (opts->mac) { | ||
1194 | if (nic->mac == opts->mac) { | ||
1195 | int i; | ||
1196 | u32 *ucode = opts->ucode; | ||
1197 | |||
1198 | /* Insert user-tunable settings */ | ||
1199 | ucode[opts->timer_dword] &= 0xFFFF0000; | ||
1200 | ucode[opts->timer_dword] |= | ||
1201 | (u16) INTDELAY; | ||
1202 | ucode[opts->bundle_dword] &= 0xFFFF0000; | ||
1203 | ucode[opts->bundle_dword] |= (u16) BUNDLEMAX; | ||
1204 | ucode[opts->min_size_dword] &= 0xFFFF0000; | ||
1205 | ucode[opts->min_size_dword] |= | ||
1206 | (BUNDLESMALL) ? 0xFFFF : 0xFF80; | ||
1207 | |||
1208 | for(i = 0; i < UCODE_SIZE; i++) | ||
1209 | cb->u.ucode[i] = cpu_to_le32(ucode[i]); | ||
1210 | cb->command = cpu_to_le16(cb_ucode); | ||
1211 | return; | ||
1212 | } | ||
1213 | opts++; | ||
1214 | } | ||
1021 | 1215 | ||
1022 | if(nic->mac == mac_82551_F || nic->mac == mac_82551_10) { | 1216 | cb->command = cpu_to_le16(cb_nop); |
1023 | for(i = 0; i < UCODE_SIZE; i++) | ||
1024 | cb->u.ucode[i] = cpu_to_le32(ucode[i]); | ||
1025 | cb->command = cpu_to_le16(cb_ucode); | ||
1026 | } else | ||
1027 | cb->command = cpu_to_le16(cb_nop); | ||
1028 | } | 1217 | } |
1029 | 1218 | ||
1030 | static void e100_setup_iaaddr(struct nic *nic, struct cb *cb, | 1219 | static void e100_setup_iaaddr(struct nic *nic, struct cb *cb, |
@@ -1307,14 +1496,15 @@ static inline void e100_xmit_prepare(struct nic *nic, struct cb *cb, | |||
1307 | { | 1496 | { |
1308 | cb->command = nic->tx_command; | 1497 | cb->command = nic->tx_command; |
1309 | /* interrupt every 16 packets regardless of delay */ | 1498 | /* interrupt every 16 packets regardless of delay */ |
1310 | if((nic->cbs_avail & ~15) == nic->cbs_avail) cb->command |= cb_i; | 1499 | if((nic->cbs_avail & ~15) == nic->cbs_avail) |
1500 | cb->command |= cpu_to_le16(cb_i); | ||
1311 | cb->u.tcb.tbd_array = cb->dma_addr + offsetof(struct cb, u.tcb.tbd); | 1501 | cb->u.tcb.tbd_array = cb->dma_addr + offsetof(struct cb, u.tcb.tbd); |
1312 | cb->u.tcb.tcb_byte_count = 0; | 1502 | cb->u.tcb.tcb_byte_count = 0; |
1313 | cb->u.tcb.threshold = nic->tx_threshold; | 1503 | cb->u.tcb.threshold = nic->tx_threshold; |
1314 | cb->u.tcb.tbd_count = 1; | 1504 | cb->u.tcb.tbd_count = 1; |
1315 | cb->u.tcb.tbd.buf_addr = cpu_to_le32(pci_map_single(nic->pdev, | 1505 | cb->u.tcb.tbd.buf_addr = cpu_to_le32(pci_map_single(nic->pdev, |
1316 | skb->data, skb->len, PCI_DMA_TODEVICE)); | 1506 | skb->data, skb->len, PCI_DMA_TODEVICE)); |
1317 | // check for mapping failure? | 1507 | /* check for mapping failure? */ |
1318 | cb->u.tcb.tbd.size = cpu_to_le16(skb->len); | 1508 | cb->u.tcb.tbd.size = cpu_to_le16(skb->len); |
1319 | } | 1509 | } |
1320 | 1510 | ||
@@ -1539,7 +1729,7 @@ static inline int e100_rx_indicate(struct nic *nic, struct rx *rx, | |||
1539 | /* Don't indicate if hardware indicates errors */ | 1729 | /* Don't indicate if hardware indicates errors */ |
1540 | nic->net_stats.rx_dropped++; | 1730 | nic->net_stats.rx_dropped++; |
1541 | dev_kfree_skb_any(skb); | 1731 | dev_kfree_skb_any(skb); |
1542 | } else if(actual_size > nic->netdev->mtu + VLAN_ETH_HLEN) { | 1732 | } else if(actual_size > ETH_DATA_LEN + VLAN_ETH_HLEN) { |
1543 | /* Don't indicate oversized frames */ | 1733 | /* Don't indicate oversized frames */ |
1544 | nic->rx_over_length_errors++; | 1734 | nic->rx_over_length_errors++; |
1545 | nic->net_stats.rx_dropped++; | 1735 | nic->net_stats.rx_dropped++; |
@@ -1706,6 +1896,7 @@ static int e100_poll(struct net_device *netdev, int *budget) | |||
1706 | static void e100_netpoll(struct net_device *netdev) | 1896 | static void e100_netpoll(struct net_device *netdev) |
1707 | { | 1897 | { |
1708 | struct nic *nic = netdev_priv(netdev); | 1898 | struct nic *nic = netdev_priv(netdev); |
1899 | |||
1709 | e100_disable_irq(nic); | 1900 | e100_disable_irq(nic); |
1710 | e100_intr(nic->pdev->irq, netdev, NULL); | 1901 | e100_intr(nic->pdev->irq, netdev, NULL); |
1711 | e100_tx_clean(nic); | 1902 | e100_tx_clean(nic); |
@@ -2108,6 +2299,8 @@ static void e100_diag_test(struct net_device *netdev, | |||
2108 | } | 2299 | } |
2109 | for(i = 0; i < E100_TEST_LEN; i++) | 2300 | for(i = 0; i < E100_TEST_LEN; i++) |
2110 | test->flags |= data[i] ? ETH_TEST_FL_FAILED : 0; | 2301 | test->flags |= data[i] ? ETH_TEST_FL_FAILED : 0; |
2302 | |||
2303 | msleep_interruptible(4 * 1000); | ||
2111 | } | 2304 | } |
2112 | 2305 | ||
2113 | static int e100_phys_id(struct net_device *netdev, u32 data) | 2306 | static int e100_phys_id(struct net_device *netdev, u32 data) |
diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c new file mode 100644 index 000000000000..bf3440aa6c24 --- /dev/null +++ b/drivers/net/sis190.c | |||
@@ -0,0 +1,1843 @@ | |||
1 | /* | ||
2 | sis190.c: Silicon Integrated Systems SiS190 ethernet driver | ||
3 | |||
4 | Copyright (c) 2003 K.M. Liu <kmliu@sis.com> | ||
5 | Copyright (c) 2003, 2004 Jeff Garzik <jgarzik@pobox.com> | ||
6 | Copyright (c) 2003, 2004, 2005 Francois Romieu <romieu@fr.zoreil.com> | ||
7 | |||
8 | Based on r8169.c, tg3.c, 8139cp.c, skge.c, epic100.c and SiS 190/191 | ||
9 | genuine driver. | ||
10 | |||
11 | This software may be used and distributed according to the terms of | ||
12 | the GNU General Public License (GPL), incorporated herein by reference. | ||
13 | Drivers based on or derived from this code fall under the GPL and must | ||
14 | retain the authorship, copyright and license notice. This file is not | ||
15 | a complete program and may only be used when the entire operating | ||
16 | system is licensed under the GPL. | ||
17 | |||
18 | See the file COPYING in this distribution for more information. | ||
19 | |||
20 | */ | ||
21 | |||
22 | #include <linux/module.h> | ||
23 | #include <linux/moduleparam.h> | ||
24 | #include <linux/netdevice.h> | ||
25 | #include <linux/rtnetlink.h> | ||
26 | #include <linux/etherdevice.h> | ||
27 | #include <linux/ethtool.h> | ||
28 | #include <linux/pci.h> | ||
29 | #include <linux/mii.h> | ||
30 | #include <linux/delay.h> | ||
31 | #include <linux/crc32.h> | ||
32 | #include <linux/dma-mapping.h> | ||
33 | #include <asm/irq.h> | ||
34 | |||
35 | #define net_drv(p, arg...) if (netif_msg_drv(p)) \ | ||
36 | printk(arg) | ||
37 | #define net_probe(p, arg...) if (netif_msg_probe(p)) \ | ||
38 | printk(arg) | ||
39 | #define net_link(p, arg...) if (netif_msg_link(p)) \ | ||
40 | printk(arg) | ||
41 | #define net_intr(p, arg...) if (netif_msg_intr(p)) \ | ||
42 | printk(arg) | ||
43 | #define net_tx_err(p, arg...) if (netif_msg_tx_err(p)) \ | ||
44 | printk(arg) | ||
45 | |||
46 | #define PHY_MAX_ADDR 32 | ||
47 | #define PHY_ID_ANY 0x1f | ||
48 | #define MII_REG_ANY 0x1f | ||
49 | |||
50 | #ifdef CONFIG_SIS190_NAPI | ||
51 | #define NAPI_SUFFIX "-NAPI" | ||
52 | #else | ||
53 | #define NAPI_SUFFIX "" | ||
54 | #endif | ||
55 | |||
56 | #define DRV_VERSION "1.2" NAPI_SUFFIX | ||
57 | #define DRV_NAME "sis190" | ||
58 | #define SIS190_DRIVER_NAME DRV_NAME " Gigabit Ethernet driver " DRV_VERSION | ||
59 | #define PFX DRV_NAME ": " | ||
60 | |||
61 | #ifdef CONFIG_SIS190_NAPI | ||
62 | #define sis190_rx_skb netif_receive_skb | ||
63 | #define sis190_rx_quota(count, quota) min(count, quota) | ||
64 | #else | ||
65 | #define sis190_rx_skb netif_rx | ||
66 | #define sis190_rx_quota(count, quota) count | ||
67 | #endif | ||
68 | |||
69 | #define MAC_ADDR_LEN 6 | ||
70 | |||
71 | #define NUM_TX_DESC 64 /* [8..1024] */ | ||
72 | #define NUM_RX_DESC 64 /* [8..8192] */ | ||
73 | #define TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc)) | ||
74 | #define RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc)) | ||
75 | #define RX_BUF_SIZE 1536 | ||
76 | #define RX_BUF_MASK 0xfff8 | ||
77 | |||
78 | #define SIS190_REGS_SIZE 0x80 | ||
79 | #define SIS190_TX_TIMEOUT (6*HZ) | ||
80 | #define SIS190_PHY_TIMEOUT (10*HZ) | ||
81 | #define SIS190_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | \ | ||
82 | NETIF_MSG_LINK | NETIF_MSG_IFUP | \ | ||
83 | NETIF_MSG_IFDOWN) | ||
84 | |||
85 | /* Enhanced PHY access register bit definitions */ | ||
86 | #define EhnMIIread 0x0000 | ||
87 | #define EhnMIIwrite 0x0020 | ||
88 | #define EhnMIIdataShift 16 | ||
89 | #define EhnMIIpmdShift 6 /* 7016 only */ | ||
90 | #define EhnMIIregShift 11 | ||
91 | #define EhnMIIreq 0x0010 | ||
92 | #define EhnMIInotDone 0x0010 | ||
93 | |||
94 | /* Write/read MMIO register */ | ||
95 | #define SIS_W8(reg, val) writeb ((val), ioaddr + (reg)) | ||
96 | #define SIS_W16(reg, val) writew ((val), ioaddr + (reg)) | ||
97 | #define SIS_W32(reg, val) writel ((val), ioaddr + (reg)) | ||
98 | #define SIS_R8(reg) readb (ioaddr + (reg)) | ||
99 | #define SIS_R16(reg) readw (ioaddr + (reg)) | ||
100 | #define SIS_R32(reg) readl (ioaddr + (reg)) | ||
101 | |||
102 | #define SIS_PCI_COMMIT() SIS_R32(IntrControl) | ||
103 | |||
104 | enum sis190_registers { | ||
105 | TxControl = 0x00, | ||
106 | TxDescStartAddr = 0x04, | ||
107 | rsv0 = 0x08, // reserved | ||
108 | TxSts = 0x0c, // unused (Control/Status) | ||
109 | RxControl = 0x10, | ||
110 | RxDescStartAddr = 0x14, | ||
111 | rsv1 = 0x18, // reserved | ||
112 | RxSts = 0x1c, // unused | ||
113 | IntrStatus = 0x20, | ||
114 | IntrMask = 0x24, | ||
115 | IntrControl = 0x28, | ||
116 | IntrTimer = 0x2c, // unused (Interupt Timer) | ||
117 | PMControl = 0x30, // unused (Power Mgmt Control/Status) | ||
118 | rsv2 = 0x34, // reserved | ||
119 | ROMControl = 0x38, | ||
120 | ROMInterface = 0x3c, | ||
121 | StationControl = 0x40, | ||
122 | GMIIControl = 0x44, | ||
123 | GIoCR = 0x48, // unused (GMAC IO Compensation) | ||
124 | GIoCtrl = 0x4c, // unused (GMAC IO Control) | ||
125 | TxMacControl = 0x50, | ||
126 | TxLimit = 0x54, // unused (Tx MAC Timer/TryLimit) | ||
127 | RGDelay = 0x58, // unused (RGMII Tx Internal Delay) | ||
128 | rsv3 = 0x5c, // reserved | ||
129 | RxMacControl = 0x60, | ||
130 | RxMacAddr = 0x62, | ||
131 | RxHashTable = 0x68, | ||
132 | // Undocumented = 0x6c, | ||
133 | RxWolCtrl = 0x70, | ||
134 | RxWolData = 0x74, // unused (Rx WOL Data Access) | ||
135 | RxMPSControl = 0x78, // unused (Rx MPS Control) | ||
136 | rsv4 = 0x7c, // reserved | ||
137 | }; | ||
138 | |||
139 | enum sis190_register_content { | ||
140 | /* IntrStatus */ | ||
141 | SoftInt = 0x40000000, // unused | ||
142 | Timeup = 0x20000000, // unused | ||
143 | PauseFrame = 0x00080000, // unused | ||
144 | MagicPacket = 0x00040000, // unused | ||
145 | WakeupFrame = 0x00020000, // unused | ||
146 | LinkChange = 0x00010000, | ||
147 | RxQEmpty = 0x00000080, | ||
148 | RxQInt = 0x00000040, | ||
149 | TxQ1Empty = 0x00000020, // unused | ||
150 | TxQ1Int = 0x00000010, | ||
151 | TxQ0Empty = 0x00000008, // unused | ||
152 | TxQ0Int = 0x00000004, | ||
153 | RxHalt = 0x00000002, | ||
154 | TxHalt = 0x00000001, | ||
155 | |||
156 | /* {Rx/Tx}CmdBits */ | ||
157 | CmdReset = 0x10, | ||
158 | CmdRxEnb = 0x08, // unused | ||
159 | CmdTxEnb = 0x01, | ||
160 | RxBufEmpty = 0x01, // unused | ||
161 | |||
162 | /* Cfg9346Bits */ | ||
163 | Cfg9346_Lock = 0x00, // unused | ||
164 | Cfg9346_Unlock = 0xc0, // unused | ||
165 | |||
166 | /* RxMacControl */ | ||
167 | AcceptErr = 0x20, // unused | ||
168 | AcceptRunt = 0x10, // unused | ||
169 | AcceptBroadcast = 0x0800, | ||
170 | AcceptMulticast = 0x0400, | ||
171 | AcceptMyPhys = 0x0200, | ||
172 | AcceptAllPhys = 0x0100, | ||
173 | |||
174 | /* RxConfigBits */ | ||
175 | RxCfgFIFOShift = 13, | ||
176 | RxCfgDMAShift = 8, // 0x1a in RxControl ? | ||
177 | |||
178 | /* TxConfigBits */ | ||
179 | TxInterFrameGapShift = 24, | ||
180 | TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */ | ||
181 | |||
182 | /* StationControl */ | ||
183 | _1000bpsF = 0x1c00, | ||
184 | _1000bpsH = 0x0c00, | ||
185 | _100bpsF = 0x1800, | ||
186 | _100bpsH = 0x0800, | ||
187 | _10bpsF = 0x1400, | ||
188 | _10bpsH = 0x0400, | ||
189 | |||
190 | LinkStatus = 0x02, // unused | ||
191 | FullDup = 0x01, // unused | ||
192 | |||
193 | /* TBICSRBit */ | ||
194 | TBILinkOK = 0x02000000, // unused | ||
195 | }; | ||
196 | |||
197 | struct TxDesc { | ||
198 | __le32 PSize; | ||
199 | __le32 status; | ||
200 | __le32 addr; | ||
201 | __le32 size; | ||
202 | }; | ||
203 | |||
204 | struct RxDesc { | ||
205 | __le32 PSize; | ||
206 | __le32 status; | ||
207 | __le32 addr; | ||
208 | __le32 size; | ||
209 | }; | ||
210 | |||
211 | enum _DescStatusBit { | ||
212 | /* _Desc.status */ | ||
213 | OWNbit = 0x80000000, // RXOWN/TXOWN | ||
214 | INTbit = 0x40000000, // RXINT/TXINT | ||
215 | CRCbit = 0x00020000, // CRCOFF/CRCEN | ||
216 | PADbit = 0x00010000, // PREADD/PADEN | ||
217 | /* _Desc.size */ | ||
218 | RingEnd = 0x80000000, | ||
219 | /* TxDesc.status */ | ||
220 | LSEN = 0x08000000, // TSO ? -- FR | ||
221 | IPCS = 0x04000000, | ||
222 | TCPCS = 0x02000000, | ||
223 | UDPCS = 0x01000000, | ||
224 | BSTEN = 0x00800000, | ||
225 | EXTEN = 0x00400000, | ||
226 | DEFEN = 0x00200000, | ||
227 | BKFEN = 0x00100000, | ||
228 | CRSEN = 0x00080000, | ||
229 | COLEN = 0x00040000, | ||
230 | THOL3 = 0x30000000, | ||
231 | THOL2 = 0x20000000, | ||
232 | THOL1 = 0x10000000, | ||
233 | THOL0 = 0x00000000, | ||
234 | /* RxDesc.status */ | ||
235 | IPON = 0x20000000, | ||
236 | TCPON = 0x10000000, | ||
237 | UDPON = 0x08000000, | ||
238 | Wakup = 0x00400000, | ||
239 | Magic = 0x00200000, | ||
240 | Pause = 0x00100000, | ||
241 | DEFbit = 0x00200000, | ||
242 | BCAST = 0x000c0000, | ||
243 | MCAST = 0x00080000, | ||
244 | UCAST = 0x00040000, | ||
245 | /* RxDesc.PSize */ | ||
246 | TAGON = 0x80000000, | ||
247 | RxDescCountMask = 0x7f000000, // multi-desc pkt when > 1 ? -- FR | ||
248 | ABORT = 0x00800000, | ||
249 | SHORT = 0x00400000, | ||
250 | LIMIT = 0x00200000, | ||
251 | MIIER = 0x00100000, | ||
252 | OVRUN = 0x00080000, | ||
253 | NIBON = 0x00040000, | ||
254 | COLON = 0x00020000, | ||
255 | CRCOK = 0x00010000, | ||
256 | RxSizeMask = 0x0000ffff | ||
257 | /* | ||
258 | * The asic could apparently do vlan, TSO, jumbo (sis191 only) and | ||
259 | * provide two (unused with Linux) Tx queues. No publically | ||
260 | * available documentation alas. | ||
261 | */ | ||
262 | }; | ||
263 | |||
264 | enum sis190_eeprom_access_register_bits { | ||
265 | EECS = 0x00000001, // unused | ||
266 | EECLK = 0x00000002, // unused | ||
267 | EEDO = 0x00000008, // unused | ||
268 | EEDI = 0x00000004, // unused | ||
269 | EEREQ = 0x00000080, | ||
270 | EEROP = 0x00000200, | ||
271 | EEWOP = 0x00000100 // unused | ||
272 | }; | ||
273 | |||
274 | /* EEPROM Addresses */ | ||
275 | enum sis190_eeprom_address { | ||
276 | EEPROMSignature = 0x00, | ||
277 | EEPROMCLK = 0x01, // unused | ||
278 | EEPROMInfo = 0x02, | ||
279 | EEPROMMACAddr = 0x03 | ||
280 | }; | ||
281 | |||
282 | struct sis190_private { | ||
283 | void __iomem *mmio_addr; | ||
284 | struct pci_dev *pci_dev; | ||
285 | struct net_device_stats stats; | ||
286 | spinlock_t lock; | ||
287 | u32 rx_buf_sz; | ||
288 | u32 cur_rx; | ||
289 | u32 cur_tx; | ||
290 | u32 dirty_rx; | ||
291 | u32 dirty_tx; | ||
292 | dma_addr_t rx_dma; | ||
293 | dma_addr_t tx_dma; | ||
294 | struct RxDesc *RxDescRing; | ||
295 | struct TxDesc *TxDescRing; | ||
296 | struct sk_buff *Rx_skbuff[NUM_RX_DESC]; | ||
297 | struct sk_buff *Tx_skbuff[NUM_TX_DESC]; | ||
298 | struct work_struct phy_task; | ||
299 | struct timer_list timer; | ||
300 | u32 msg_enable; | ||
301 | struct mii_if_info mii_if; | ||
302 | struct list_head first_phy; | ||
303 | }; | ||
304 | |||
305 | struct sis190_phy { | ||
306 | struct list_head list; | ||
307 | int phy_id; | ||
308 | u16 id[2]; | ||
309 | u16 status; | ||
310 | u8 type; | ||
311 | }; | ||
312 | |||
313 | enum sis190_phy_type { | ||
314 | UNKNOWN = 0x00, | ||
315 | HOME = 0x01, | ||
316 | LAN = 0x02, | ||
317 | MIX = 0x03 | ||
318 | }; | ||
319 | |||
320 | static struct mii_chip_info { | ||
321 | const char *name; | ||
322 | u16 id[2]; | ||
323 | unsigned int type; | ||
324 | } mii_chip_table[] = { | ||
325 | { "Broadcom PHY BCM5461", { 0x0020, 0x60c0 }, LAN }, | ||
326 | { "Agere PHY ET1101B", { 0x0282, 0xf010 }, LAN }, | ||
327 | { "Marvell PHY 88E1111", { 0x0141, 0x0cc0 }, LAN }, | ||
328 | { "Realtek PHY RTL8201", { 0x0000, 0x8200 }, LAN }, | ||
329 | { NULL, } | ||
330 | }; | ||
331 | |||
332 | const static struct { | ||
333 | const char *name; | ||
334 | u8 version; /* depend on docs */ | ||
335 | u32 RxConfigMask; /* clear the bits supported by this chip */ | ||
336 | } sis_chip_info[] = { | ||
337 | { DRV_NAME, 0x00, 0xff7e1880, }, | ||
338 | }; | ||
339 | |||
340 | static struct pci_device_id sis190_pci_tbl[] __devinitdata = { | ||
341 | { PCI_DEVICE(PCI_VENDOR_ID_SI, 0x0190), 0, 0, 0 }, | ||
342 | { 0, }, | ||
343 | }; | ||
344 | |||
345 | MODULE_DEVICE_TABLE(pci, sis190_pci_tbl); | ||
346 | |||
347 | static int rx_copybreak = 200; | ||
348 | |||
349 | static struct { | ||
350 | u32 msg_enable; | ||
351 | } debug = { -1 }; | ||
352 | |||
353 | MODULE_DESCRIPTION("SiS sis190 Gigabit Ethernet driver"); | ||
354 | module_param(rx_copybreak, int, 0); | ||
355 | MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames"); | ||
356 | module_param_named(debug, debug.msg_enable, int, 0); | ||
357 | MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)"); | ||
358 | MODULE_AUTHOR("K.M. Liu <kmliu@sis.com>, Ueimor <romieu@fr.zoreil.com>"); | ||
359 | MODULE_VERSION(DRV_VERSION); | ||
360 | MODULE_LICENSE("GPL"); | ||
361 | |||
362 | static const u32 sis190_intr_mask = | ||
363 | RxQEmpty | RxQInt | TxQ1Int | TxQ0Int | RxHalt | TxHalt; | ||
364 | |||
365 | /* | ||
366 | * Maximum number of multicast addresses to filter (vs. Rx-all-multicast). | ||
367 | * The chips use a 64 element hash table based on the Ethernet CRC. | ||
368 | */ | ||
369 | static int multicast_filter_limit = 32; | ||
370 | |||
371 | static void __mdio_cmd(void __iomem *ioaddr, u32 ctl) | ||
372 | { | ||
373 | unsigned int i; | ||
374 | |||
375 | SIS_W32(GMIIControl, ctl); | ||
376 | |||
377 | msleep(1); | ||
378 | |||
379 | for (i = 0; i < 100; i++) { | ||
380 | if (!(SIS_R32(GMIIControl) & EhnMIInotDone)) | ||
381 | break; | ||
382 | msleep(1); | ||
383 | } | ||
384 | |||
385 | if (i > 999) | ||
386 | printk(KERN_ERR PFX "PHY command failed !\n"); | ||
387 | } | ||
388 | |||
389 | static void mdio_write(void __iomem *ioaddr, int phy_id, int reg, int val) | ||
390 | { | ||
391 | __mdio_cmd(ioaddr, EhnMIIreq | EhnMIIwrite | | ||
392 | (((u32) reg) << EhnMIIregShift) | (phy_id << EhnMIIpmdShift) | | ||
393 | (((u32) val) << EhnMIIdataShift)); | ||
394 | } | ||
395 | |||
396 | static int mdio_read(void __iomem *ioaddr, int phy_id, int reg) | ||
397 | { | ||
398 | __mdio_cmd(ioaddr, EhnMIIreq | EhnMIIread | | ||
399 | (((u32) reg) << EhnMIIregShift) | (phy_id << EhnMIIpmdShift)); | ||
400 | |||
401 | return (u16) (SIS_R32(GMIIControl) >> EhnMIIdataShift); | ||
402 | } | ||
403 | |||
404 | static void __mdio_write(struct net_device *dev, int phy_id, int reg, int val) | ||
405 | { | ||
406 | struct sis190_private *tp = netdev_priv(dev); | ||
407 | |||
408 | mdio_write(tp->mmio_addr, phy_id, reg, val); | ||
409 | } | ||
410 | |||
411 | static int __mdio_read(struct net_device *dev, int phy_id, int reg) | ||
412 | { | ||
413 | struct sis190_private *tp = netdev_priv(dev); | ||
414 | |||
415 | return mdio_read(tp->mmio_addr, phy_id, reg); | ||
416 | } | ||
417 | |||
418 | static u16 mdio_read_latched(void __iomem *ioaddr, int phy_id, int reg) | ||
419 | { | ||
420 | mdio_read(ioaddr, phy_id, reg); | ||
421 | return mdio_read(ioaddr, phy_id, reg); | ||
422 | } | ||
423 | |||
424 | static u16 __devinit sis190_read_eeprom(void __iomem *ioaddr, u32 reg) | ||
425 | { | ||
426 | u16 data = 0xffff; | ||
427 | unsigned int i; | ||
428 | |||
429 | if (!(SIS_R32(ROMControl) & 0x0002)) | ||
430 | return 0; | ||
431 | |||
432 | SIS_W32(ROMInterface, EEREQ | EEROP | (reg << 10)); | ||
433 | |||
434 | for (i = 0; i < 200; i++) { | ||
435 | if (!(SIS_R32(ROMInterface) & EEREQ)) { | ||
436 | data = (SIS_R32(ROMInterface) & 0xffff0000) >> 16; | ||
437 | break; | ||
438 | } | ||
439 | msleep(1); | ||
440 | } | ||
441 | |||
442 | return data; | ||
443 | } | ||
444 | |||
445 | static void sis190_irq_mask_and_ack(void __iomem *ioaddr) | ||
446 | { | ||
447 | SIS_W32(IntrMask, 0x00); | ||
448 | SIS_W32(IntrStatus, 0xffffffff); | ||
449 | SIS_PCI_COMMIT(); | ||
450 | } | ||
451 | |||
452 | static void sis190_asic_down(void __iomem *ioaddr) | ||
453 | { | ||
454 | /* Stop the chip's Tx and Rx DMA processes. */ | ||
455 | |||
456 | SIS_W32(TxControl, 0x1a00); | ||
457 | SIS_W32(RxControl, 0x1a00); | ||
458 | |||
459 | sis190_irq_mask_and_ack(ioaddr); | ||
460 | } | ||
461 | |||
462 | static void sis190_mark_as_last_descriptor(struct RxDesc *desc) | ||
463 | { | ||
464 | desc->size |= cpu_to_le32(RingEnd); | ||
465 | } | ||
466 | |||
467 | static inline void sis190_give_to_asic(struct RxDesc *desc, u32 rx_buf_sz) | ||
468 | { | ||
469 | u32 eor = le32_to_cpu(desc->size) & RingEnd; | ||
470 | |||
471 | desc->PSize = 0x0; | ||
472 | desc->size = cpu_to_le32((rx_buf_sz & RX_BUF_MASK) | eor); | ||
473 | wmb(); | ||
474 | desc->status = cpu_to_le32(OWNbit | INTbit); | ||
475 | } | ||
476 | |||
477 | static inline void sis190_map_to_asic(struct RxDesc *desc, dma_addr_t mapping, | ||
478 | u32 rx_buf_sz) | ||
479 | { | ||
480 | desc->addr = cpu_to_le32(mapping); | ||
481 | sis190_give_to_asic(desc, rx_buf_sz); | ||
482 | } | ||
483 | |||
484 | static inline void sis190_make_unusable_by_asic(struct RxDesc *desc) | ||
485 | { | ||
486 | desc->PSize = 0x0; | ||
487 | desc->addr = 0xdeadbeef; | ||
488 | desc->size &= cpu_to_le32(RingEnd); | ||
489 | wmb(); | ||
490 | desc->status = 0x0; | ||
491 | } | ||
492 | |||
493 | static int sis190_alloc_rx_skb(struct pci_dev *pdev, struct sk_buff **sk_buff, | ||
494 | struct RxDesc *desc, u32 rx_buf_sz) | ||
495 | { | ||
496 | struct sk_buff *skb; | ||
497 | dma_addr_t mapping; | ||
498 | int ret = 0; | ||
499 | |||
500 | skb = dev_alloc_skb(rx_buf_sz); | ||
501 | if (!skb) | ||
502 | goto err_out; | ||
503 | |||
504 | *sk_buff = skb; | ||
505 | |||
506 | mapping = pci_map_single(pdev, skb->data, rx_buf_sz, | ||
507 | PCI_DMA_FROMDEVICE); | ||
508 | |||
509 | sis190_map_to_asic(desc, mapping, rx_buf_sz); | ||
510 | out: | ||
511 | return ret; | ||
512 | |||
513 | err_out: | ||
514 | ret = -ENOMEM; | ||
515 | sis190_make_unusable_by_asic(desc); | ||
516 | goto out; | ||
517 | } | ||
518 | |||
519 | static u32 sis190_rx_fill(struct sis190_private *tp, struct net_device *dev, | ||
520 | u32 start, u32 end) | ||
521 | { | ||
522 | u32 cur; | ||
523 | |||
524 | for (cur = start; cur < end; cur++) { | ||
525 | int ret, i = cur % NUM_RX_DESC; | ||
526 | |||
527 | if (tp->Rx_skbuff[i]) | ||
528 | continue; | ||
529 | |||
530 | ret = sis190_alloc_rx_skb(tp->pci_dev, tp->Rx_skbuff + i, | ||
531 | tp->RxDescRing + i, tp->rx_buf_sz); | ||
532 | if (ret < 0) | ||
533 | break; | ||
534 | } | ||
535 | return cur - start; | ||
536 | } | ||
537 | |||
538 | static inline int sis190_try_rx_copy(struct sk_buff **sk_buff, int pkt_size, | ||
539 | struct RxDesc *desc, int rx_buf_sz) | ||
540 | { | ||
541 | int ret = -1; | ||
542 | |||
543 | if (pkt_size < rx_copybreak) { | ||
544 | struct sk_buff *skb; | ||
545 | |||
546 | skb = dev_alloc_skb(pkt_size + NET_IP_ALIGN); | ||
547 | if (skb) { | ||
548 | skb_reserve(skb, NET_IP_ALIGN); | ||
549 | eth_copy_and_sum(skb, sk_buff[0]->data, pkt_size, 0); | ||
550 | *sk_buff = skb; | ||
551 | sis190_give_to_asic(desc, rx_buf_sz); | ||
552 | ret = 0; | ||
553 | } | ||
554 | } | ||
555 | return ret; | ||
556 | } | ||
557 | |||
558 | static inline int sis190_rx_pkt_err(u32 status, struct net_device_stats *stats) | ||
559 | { | ||
560 | #define ErrMask (OVRUN | SHORT | LIMIT | MIIER | NIBON | COLON | ABORT) | ||
561 | |||
562 | if ((status & CRCOK) && !(status & ErrMask)) | ||
563 | return 0; | ||
564 | |||
565 | if (!(status & CRCOK)) | ||
566 | stats->rx_crc_errors++; | ||
567 | else if (status & OVRUN) | ||
568 | stats->rx_over_errors++; | ||
569 | else if (status & (SHORT | LIMIT)) | ||
570 | stats->rx_length_errors++; | ||
571 | else if (status & (MIIER | NIBON | COLON)) | ||
572 | stats->rx_frame_errors++; | ||
573 | |||
574 | stats->rx_errors++; | ||
575 | return -1; | ||
576 | } | ||
577 | |||
578 | static int sis190_rx_interrupt(struct net_device *dev, | ||
579 | struct sis190_private *tp, void __iomem *ioaddr) | ||
580 | { | ||
581 | struct net_device_stats *stats = &tp->stats; | ||
582 | u32 rx_left, cur_rx = tp->cur_rx; | ||
583 | u32 delta, count; | ||
584 | |||
585 | rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx; | ||
586 | rx_left = sis190_rx_quota(rx_left, (u32) dev->quota); | ||
587 | |||
588 | for (; rx_left > 0; rx_left--, cur_rx++) { | ||
589 | unsigned int entry = cur_rx % NUM_RX_DESC; | ||
590 | struct RxDesc *desc = tp->RxDescRing + entry; | ||
591 | u32 status; | ||
592 | |||
593 | if (desc->status & OWNbit) | ||
594 | break; | ||
595 | |||
596 | status = le32_to_cpu(desc->PSize); | ||
597 | |||
598 | // net_intr(tp, KERN_INFO "%s: Rx PSize = %08x.\n", dev->name, | ||
599 | // status); | ||
600 | |||
601 | if (sis190_rx_pkt_err(status, stats) < 0) | ||
602 | sis190_give_to_asic(desc, tp->rx_buf_sz); | ||
603 | else { | ||
604 | struct sk_buff *skb = tp->Rx_skbuff[entry]; | ||
605 | int pkt_size = (status & RxSizeMask) - 4; | ||
606 | void (*pci_action)(struct pci_dev *, dma_addr_t, | ||
607 | size_t, int) = pci_dma_sync_single_for_device; | ||
608 | |||
609 | if (unlikely(pkt_size > tp->rx_buf_sz)) { | ||
610 | net_intr(tp, KERN_INFO | ||
611 | "%s: (frag) status = %08x.\n", | ||
612 | dev->name, status); | ||
613 | stats->rx_dropped++; | ||
614 | stats->rx_length_errors++; | ||
615 | sis190_give_to_asic(desc, tp->rx_buf_sz); | ||
616 | continue; | ||
617 | } | ||
618 | |||
619 | pci_dma_sync_single_for_cpu(tp->pci_dev, | ||
620 | le32_to_cpu(desc->addr), tp->rx_buf_sz, | ||
621 | PCI_DMA_FROMDEVICE); | ||
622 | |||
623 | if (sis190_try_rx_copy(&skb, pkt_size, desc, | ||
624 | tp->rx_buf_sz)) { | ||
625 | pci_action = pci_unmap_single; | ||
626 | tp->Rx_skbuff[entry] = NULL; | ||
627 | sis190_make_unusable_by_asic(desc); | ||
628 | } | ||
629 | |||
630 | pci_action(tp->pci_dev, le32_to_cpu(desc->addr), | ||
631 | tp->rx_buf_sz, PCI_DMA_FROMDEVICE); | ||
632 | |||
633 | skb->dev = dev; | ||
634 | skb_put(skb, pkt_size); | ||
635 | skb->protocol = eth_type_trans(skb, dev); | ||
636 | |||
637 | sis190_rx_skb(skb); | ||
638 | |||
639 | dev->last_rx = jiffies; | ||
640 | stats->rx_packets++; | ||
641 | stats->rx_bytes += pkt_size; | ||
642 | if ((status & BCAST) == MCAST) | ||
643 | stats->multicast++; | ||
644 | } | ||
645 | } | ||
646 | count = cur_rx - tp->cur_rx; | ||
647 | tp->cur_rx = cur_rx; | ||
648 | |||
649 | delta = sis190_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx); | ||
650 | if (!delta && count && netif_msg_intr(tp)) | ||
651 | printk(KERN_INFO "%s: no Rx buffer allocated.\n", dev->name); | ||
652 | tp->dirty_rx += delta; | ||
653 | |||
654 | if (((tp->dirty_rx + NUM_RX_DESC) == tp->cur_rx) && netif_msg_intr(tp)) | ||
655 | printk(KERN_EMERG "%s: Rx buffers exhausted.\n", dev->name); | ||
656 | |||
657 | return count; | ||
658 | } | ||
659 | |||
660 | static void sis190_unmap_tx_skb(struct pci_dev *pdev, struct sk_buff *skb, | ||
661 | struct TxDesc *desc) | ||
662 | { | ||
663 | unsigned int len; | ||
664 | |||
665 | len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len; | ||
666 | |||
667 | pci_unmap_single(pdev, le32_to_cpu(desc->addr), len, PCI_DMA_TODEVICE); | ||
668 | |||
669 | memset(desc, 0x00, sizeof(*desc)); | ||
670 | } | ||
671 | |||
672 | static void sis190_tx_interrupt(struct net_device *dev, | ||
673 | struct sis190_private *tp, void __iomem *ioaddr) | ||
674 | { | ||
675 | u32 pending, dirty_tx = tp->dirty_tx; | ||
676 | /* | ||
677 | * It would not be needed if queueing was allowed to be enabled | ||
678 | * again too early (hint: think preempt and unclocked smp systems). | ||
679 | */ | ||
680 | unsigned int queue_stopped; | ||
681 | |||
682 | smp_rmb(); | ||
683 | pending = tp->cur_tx - dirty_tx; | ||
684 | queue_stopped = (pending == NUM_TX_DESC); | ||
685 | |||
686 | for (; pending; pending--, dirty_tx++) { | ||
687 | unsigned int entry = dirty_tx % NUM_TX_DESC; | ||
688 | struct TxDesc *txd = tp->TxDescRing + entry; | ||
689 | struct sk_buff *skb; | ||
690 | |||
691 | if (le32_to_cpu(txd->status) & OWNbit) | ||
692 | break; | ||
693 | |||
694 | skb = tp->Tx_skbuff[entry]; | ||
695 | |||
696 | tp->stats.tx_packets++; | ||
697 | tp->stats.tx_bytes += skb->len; | ||
698 | |||
699 | sis190_unmap_tx_skb(tp->pci_dev, skb, txd); | ||
700 | tp->Tx_skbuff[entry] = NULL; | ||
701 | dev_kfree_skb_irq(skb); | ||
702 | } | ||
703 | |||
704 | if (tp->dirty_tx != dirty_tx) { | ||
705 | tp->dirty_tx = dirty_tx; | ||
706 | smp_wmb(); | ||
707 | if (queue_stopped) | ||
708 | netif_wake_queue(dev); | ||
709 | } | ||
710 | } | ||
711 | |||
712 | /* | ||
713 | * The interrupt handler does all of the Rx thread work and cleans up after | ||
714 | * the Tx thread. | ||
715 | */ | ||
716 | static irqreturn_t sis190_interrupt(int irq, void *__dev, struct pt_regs *regs) | ||
717 | { | ||
718 | struct net_device *dev = __dev; | ||
719 | struct sis190_private *tp = netdev_priv(dev); | ||
720 | void __iomem *ioaddr = tp->mmio_addr; | ||
721 | unsigned int handled = 0; | ||
722 | u32 status; | ||
723 | |||
724 | status = SIS_R32(IntrStatus); | ||
725 | |||
726 | if ((status == 0xffffffff) || !status) | ||
727 | goto out; | ||
728 | |||
729 | handled = 1; | ||
730 | |||
731 | if (unlikely(!netif_running(dev))) { | ||
732 | sis190_asic_down(ioaddr); | ||
733 | goto out; | ||
734 | } | ||
735 | |||
736 | SIS_W32(IntrStatus, status); | ||
737 | |||
738 | // net_intr(tp, KERN_INFO "%s: status = %08x.\n", dev->name, status); | ||
739 | |||
740 | if (status & LinkChange) { | ||
741 | net_intr(tp, KERN_INFO "%s: link change.\n", dev->name); | ||
742 | schedule_work(&tp->phy_task); | ||
743 | } | ||
744 | |||
745 | if (status & RxQInt) | ||
746 | sis190_rx_interrupt(dev, tp, ioaddr); | ||
747 | |||
748 | if (status & TxQ0Int) | ||
749 | sis190_tx_interrupt(dev, tp, ioaddr); | ||
750 | out: | ||
751 | return IRQ_RETVAL(handled); | ||
752 | } | ||
753 | |||
754 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
755 | static void sis190_netpoll(struct net_device *dev) | ||
756 | { | ||
757 | struct sis190_private *tp = netdev_priv(dev); | ||
758 | struct pci_dev *pdev = tp->pci_dev; | ||
759 | |||
760 | disable_irq(pdev->irq); | ||
761 | sis190_interrupt(pdev->irq, dev, NULL); | ||
762 | enable_irq(pdev->irq); | ||
763 | } | ||
764 | #endif | ||
765 | |||
766 | static void sis190_free_rx_skb(struct sis190_private *tp, | ||
767 | struct sk_buff **sk_buff, struct RxDesc *desc) | ||
768 | { | ||
769 | struct pci_dev *pdev = tp->pci_dev; | ||
770 | |||
771 | pci_unmap_single(pdev, le32_to_cpu(desc->addr), tp->rx_buf_sz, | ||
772 | PCI_DMA_FROMDEVICE); | ||
773 | dev_kfree_skb(*sk_buff); | ||
774 | *sk_buff = NULL; | ||
775 | sis190_make_unusable_by_asic(desc); | ||
776 | } | ||
777 | |||
778 | static void sis190_rx_clear(struct sis190_private *tp) | ||
779 | { | ||
780 | unsigned int i; | ||
781 | |||
782 | for (i = 0; i < NUM_RX_DESC; i++) { | ||
783 | if (!tp->Rx_skbuff[i]) | ||
784 | continue; | ||
785 | sis190_free_rx_skb(tp, tp->Rx_skbuff + i, tp->RxDescRing + i); | ||
786 | } | ||
787 | } | ||
788 | |||
789 | static void sis190_init_ring_indexes(struct sis190_private *tp) | ||
790 | { | ||
791 | tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0; | ||
792 | } | ||
793 | |||
794 | static int sis190_init_ring(struct net_device *dev) | ||
795 | { | ||
796 | struct sis190_private *tp = netdev_priv(dev); | ||
797 | |||
798 | sis190_init_ring_indexes(tp); | ||
799 | |||
800 | memset(tp->Tx_skbuff, 0x0, NUM_TX_DESC * sizeof(struct sk_buff *)); | ||
801 | memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *)); | ||
802 | |||
803 | if (sis190_rx_fill(tp, dev, 0, NUM_RX_DESC) != NUM_RX_DESC) | ||
804 | goto err_rx_clear; | ||
805 | |||
806 | sis190_mark_as_last_descriptor(tp->RxDescRing + NUM_RX_DESC - 1); | ||
807 | |||
808 | return 0; | ||
809 | |||
810 | err_rx_clear: | ||
811 | sis190_rx_clear(tp); | ||
812 | return -ENOMEM; | ||
813 | } | ||
814 | |||
815 | static void sis190_set_rx_mode(struct net_device *dev) | ||
816 | { | ||
817 | struct sis190_private *tp = netdev_priv(dev); | ||
818 | void __iomem *ioaddr = tp->mmio_addr; | ||
819 | unsigned long flags; | ||
820 | u32 mc_filter[2]; /* Multicast hash filter */ | ||
821 | u16 rx_mode; | ||
822 | |||
823 | if (dev->flags & IFF_PROMISC) { | ||
824 | /* Unconditionally log net taps. */ | ||
825 | net_drv(tp, KERN_NOTICE "%s: Promiscuous mode enabled.\n", | ||
826 | dev->name); | ||
827 | rx_mode = | ||
828 | AcceptBroadcast | AcceptMulticast | AcceptMyPhys | | ||
829 | AcceptAllPhys; | ||
830 | mc_filter[1] = mc_filter[0] = 0xffffffff; | ||
831 | } else if ((dev->mc_count > multicast_filter_limit) || | ||
832 | (dev->flags & IFF_ALLMULTI)) { | ||
833 | /* Too many to filter perfectly -- accept all multicasts. */ | ||
834 | rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys; | ||
835 | mc_filter[1] = mc_filter[0] = 0xffffffff; | ||
836 | } else { | ||
837 | struct dev_mc_list *mclist; | ||
838 | unsigned int i; | ||
839 | |||
840 | rx_mode = AcceptBroadcast | AcceptMyPhys; | ||
841 | mc_filter[1] = mc_filter[0] = 0; | ||
842 | for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count; | ||
843 | i++, mclist = mclist->next) { | ||
844 | int bit_nr = | ||
845 | ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26; | ||
846 | mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31); | ||
847 | rx_mode |= AcceptMulticast; | ||
848 | } | ||
849 | } | ||
850 | |||
851 | spin_lock_irqsave(&tp->lock, flags); | ||
852 | |||
853 | SIS_W16(RxMacControl, rx_mode | 0x2); | ||
854 | SIS_W32(RxHashTable, mc_filter[0]); | ||
855 | SIS_W32(RxHashTable + 4, mc_filter[1]); | ||
856 | |||
857 | spin_unlock_irqrestore(&tp->lock, flags); | ||
858 | } | ||
859 | |||
860 | static void sis190_soft_reset(void __iomem *ioaddr) | ||
861 | { | ||
862 | SIS_W32(IntrControl, 0x8000); | ||
863 | SIS_PCI_COMMIT(); | ||
864 | msleep(1); | ||
865 | SIS_W32(IntrControl, 0x0); | ||
866 | sis190_asic_down(ioaddr); | ||
867 | msleep(1); | ||
868 | } | ||
869 | |||
870 | static void sis190_hw_start(struct net_device *dev) | ||
871 | { | ||
872 | struct sis190_private *tp = netdev_priv(dev); | ||
873 | void __iomem *ioaddr = tp->mmio_addr; | ||
874 | |||
875 | sis190_soft_reset(ioaddr); | ||
876 | |||
877 | SIS_W32(TxDescStartAddr, tp->tx_dma); | ||
878 | SIS_W32(RxDescStartAddr, tp->rx_dma); | ||
879 | |||
880 | SIS_W32(IntrStatus, 0xffffffff); | ||
881 | SIS_W32(IntrMask, 0x0); | ||
882 | /* | ||
883 | * Default is 100Mbps. | ||
884 | * A bit strange: 100Mbps is 0x1801 elsewhere -- FR 2005/06/09 | ||
885 | */ | ||
886 | SIS_W16(StationControl, 0x1901); | ||
887 | SIS_W32(GMIIControl, 0x0); | ||
888 | SIS_W32(TxMacControl, 0x60); | ||
889 | SIS_W16(RxMacControl, 0x02); | ||
890 | SIS_W32(RxHashTable, 0x0); | ||
891 | SIS_W32(0x6c, 0x0); | ||
892 | SIS_W32(RxWolCtrl, 0x0); | ||
893 | SIS_W32(RxWolData, 0x0); | ||
894 | |||
895 | SIS_PCI_COMMIT(); | ||
896 | |||
897 | sis190_set_rx_mode(dev); | ||
898 | |||
899 | /* Enable all known interrupts by setting the interrupt mask. */ | ||
900 | SIS_W32(IntrMask, sis190_intr_mask); | ||
901 | |||
902 | SIS_W32(TxControl, 0x1a00 | CmdTxEnb); | ||
903 | SIS_W32(RxControl, 0x1a1d); | ||
904 | |||
905 | netif_start_queue(dev); | ||
906 | } | ||
907 | |||
908 | static void sis190_phy_task(void * data) | ||
909 | { | ||
910 | struct net_device *dev = data; | ||
911 | struct sis190_private *tp = netdev_priv(dev); | ||
912 | void __iomem *ioaddr = tp->mmio_addr; | ||
913 | int phy_id = tp->mii_if.phy_id; | ||
914 | u16 val; | ||
915 | |||
916 | rtnl_lock(); | ||
917 | |||
918 | val = mdio_read(ioaddr, phy_id, MII_BMCR); | ||
919 | if (val & BMCR_RESET) { | ||
920 | // FIXME: needlessly high ? -- FR 02/07/2005 | ||
921 | mod_timer(&tp->timer, jiffies + HZ/10); | ||
922 | } else if (!(mdio_read_latched(ioaddr, phy_id, MII_BMSR) & | ||
923 | BMSR_ANEGCOMPLETE)) { | ||
924 | net_link(tp, KERN_WARNING "%s: PHY reset until link up.\n", | ||
925 | dev->name); | ||
926 | mdio_write(ioaddr, phy_id, MII_BMCR, val | BMCR_RESET); | ||
927 | mod_timer(&tp->timer, jiffies + SIS190_PHY_TIMEOUT); | ||
928 | } else { | ||
929 | /* Rejoice ! */ | ||
930 | struct { | ||
931 | int val; | ||
932 | const char *msg; | ||
933 | u16 ctl; | ||
934 | } reg31[] = { | ||
935 | { LPA_1000XFULL | LPA_SLCT, | ||
936 | "1000 Mbps Full Duplex", | ||
937 | 0x01 | _1000bpsF }, | ||
938 | { LPA_1000XHALF | LPA_SLCT, | ||
939 | "1000 Mbps Half Duplex", | ||
940 | 0x01 | _1000bpsH }, | ||
941 | { LPA_100FULL, | ||
942 | "100 Mbps Full Duplex", | ||
943 | 0x01 | _100bpsF }, | ||
944 | { LPA_100HALF, | ||
945 | "100 Mbps Half Duplex", | ||
946 | 0x01 | _100bpsH }, | ||
947 | { LPA_10FULL, | ||
948 | "10 Mbps Full Duplex", | ||
949 | 0x01 | _10bpsF }, | ||
950 | { LPA_10HALF, | ||
951 | "10 Mbps Half Duplex", | ||
952 | 0x01 | _10bpsH }, | ||
953 | { 0, "unknown", 0x0000 } | ||
954 | }, *p; | ||
955 | u16 adv; | ||
956 | |||
957 | val = mdio_read(ioaddr, phy_id, 0x1f); | ||
958 | net_link(tp, KERN_INFO "%s: mii ext = %04x.\n", dev->name, val); | ||
959 | |||
960 | val = mdio_read(ioaddr, phy_id, MII_LPA); | ||
961 | adv = mdio_read(ioaddr, phy_id, MII_ADVERTISE); | ||
962 | net_link(tp, KERN_INFO "%s: mii lpa = %04x adv = %04x.\n", | ||
963 | dev->name, val, adv); | ||
964 | |||
965 | val &= adv; | ||
966 | |||
967 | for (p = reg31; p->ctl; p++) { | ||
968 | if ((val & p->val) == p->val) | ||
969 | break; | ||
970 | } | ||
971 | if (p->ctl) | ||
972 | SIS_W16(StationControl, p->ctl); | ||
973 | net_link(tp, KERN_INFO "%s: link on %s mode.\n", dev->name, | ||
974 | p->msg); | ||
975 | netif_carrier_on(dev); | ||
976 | } | ||
977 | |||
978 | rtnl_unlock(); | ||
979 | } | ||
980 | |||
981 | static void sis190_phy_timer(unsigned long __opaque) | ||
982 | { | ||
983 | struct net_device *dev = (struct net_device *)__opaque; | ||
984 | struct sis190_private *tp = netdev_priv(dev); | ||
985 | |||
986 | if (likely(netif_running(dev))) | ||
987 | schedule_work(&tp->phy_task); | ||
988 | } | ||
989 | |||
990 | static inline void sis190_delete_timer(struct net_device *dev) | ||
991 | { | ||
992 | struct sis190_private *tp = netdev_priv(dev); | ||
993 | |||
994 | del_timer_sync(&tp->timer); | ||
995 | } | ||
996 | |||
997 | static inline void sis190_request_timer(struct net_device *dev) | ||
998 | { | ||
999 | struct sis190_private *tp = netdev_priv(dev); | ||
1000 | struct timer_list *timer = &tp->timer; | ||
1001 | |||
1002 | init_timer(timer); | ||
1003 | timer->expires = jiffies + SIS190_PHY_TIMEOUT; | ||
1004 | timer->data = (unsigned long)dev; | ||
1005 | timer->function = sis190_phy_timer; | ||
1006 | add_timer(timer); | ||
1007 | } | ||
1008 | |||
1009 | static void sis190_set_rxbufsize(struct sis190_private *tp, | ||
1010 | struct net_device *dev) | ||
1011 | { | ||
1012 | unsigned int mtu = dev->mtu; | ||
1013 | |||
1014 | tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE; | ||
1015 | /* RxDesc->size has a licence to kill the lower bits */ | ||
1016 | if (tp->rx_buf_sz & 0x07) { | ||
1017 | tp->rx_buf_sz += 8; | ||
1018 | tp->rx_buf_sz &= RX_BUF_MASK; | ||
1019 | } | ||
1020 | } | ||
1021 | |||
1022 | static int sis190_open(struct net_device *dev) | ||
1023 | { | ||
1024 | struct sis190_private *tp = netdev_priv(dev); | ||
1025 | struct pci_dev *pdev = tp->pci_dev; | ||
1026 | int rc = -ENOMEM; | ||
1027 | |||
1028 | sis190_set_rxbufsize(tp, dev); | ||
1029 | |||
1030 | /* | ||
1031 | * Rx and Tx descriptors need 256 bytes alignment. | ||
1032 | * pci_alloc_consistent() guarantees a stronger alignment. | ||
1033 | */ | ||
1034 | tp->TxDescRing = pci_alloc_consistent(pdev, TX_RING_BYTES, &tp->tx_dma); | ||
1035 | if (!tp->TxDescRing) | ||
1036 | goto out; | ||
1037 | |||
1038 | tp->RxDescRing = pci_alloc_consistent(pdev, RX_RING_BYTES, &tp->rx_dma); | ||
1039 | if (!tp->RxDescRing) | ||
1040 | goto err_free_tx_0; | ||
1041 | |||
1042 | rc = sis190_init_ring(dev); | ||
1043 | if (rc < 0) | ||
1044 | goto err_free_rx_1; | ||
1045 | |||
1046 | INIT_WORK(&tp->phy_task, sis190_phy_task, dev); | ||
1047 | |||
1048 | sis190_request_timer(dev); | ||
1049 | |||
1050 | rc = request_irq(dev->irq, sis190_interrupt, SA_SHIRQ, dev->name, dev); | ||
1051 | if (rc < 0) | ||
1052 | goto err_release_timer_2; | ||
1053 | |||
1054 | sis190_hw_start(dev); | ||
1055 | out: | ||
1056 | return rc; | ||
1057 | |||
1058 | err_release_timer_2: | ||
1059 | sis190_delete_timer(dev); | ||
1060 | sis190_rx_clear(tp); | ||
1061 | err_free_rx_1: | ||
1062 | pci_free_consistent(tp->pci_dev, RX_RING_BYTES, tp->RxDescRing, | ||
1063 | tp->rx_dma); | ||
1064 | err_free_tx_0: | ||
1065 | pci_free_consistent(tp->pci_dev, TX_RING_BYTES, tp->TxDescRing, | ||
1066 | tp->tx_dma); | ||
1067 | goto out; | ||
1068 | } | ||
1069 | |||
1070 | static void sis190_tx_clear(struct sis190_private *tp) | ||
1071 | { | ||
1072 | unsigned int i; | ||
1073 | |||
1074 | for (i = 0; i < NUM_TX_DESC; i++) { | ||
1075 | struct sk_buff *skb = tp->Tx_skbuff[i]; | ||
1076 | |||
1077 | if (!skb) | ||
1078 | continue; | ||
1079 | |||
1080 | sis190_unmap_tx_skb(tp->pci_dev, skb, tp->TxDescRing + i); | ||
1081 | tp->Tx_skbuff[i] = NULL; | ||
1082 | dev_kfree_skb(skb); | ||
1083 | |||
1084 | tp->stats.tx_dropped++; | ||
1085 | } | ||
1086 | tp->cur_tx = tp->dirty_tx = 0; | ||
1087 | } | ||
1088 | |||
1089 | static void sis190_down(struct net_device *dev) | ||
1090 | { | ||
1091 | struct sis190_private *tp = netdev_priv(dev); | ||
1092 | void __iomem *ioaddr = tp->mmio_addr; | ||
1093 | unsigned int poll_locked = 0; | ||
1094 | |||
1095 | sis190_delete_timer(dev); | ||
1096 | |||
1097 | netif_stop_queue(dev); | ||
1098 | |||
1099 | flush_scheduled_work(); | ||
1100 | |||
1101 | do { | ||
1102 | spin_lock_irq(&tp->lock); | ||
1103 | |||
1104 | sis190_asic_down(ioaddr); | ||
1105 | |||
1106 | spin_unlock_irq(&tp->lock); | ||
1107 | |||
1108 | synchronize_irq(dev->irq); | ||
1109 | |||
1110 | if (!poll_locked) { | ||
1111 | netif_poll_disable(dev); | ||
1112 | poll_locked++; | ||
1113 | } | ||
1114 | |||
1115 | synchronize_sched(); | ||
1116 | |||
1117 | } while (SIS_R32(IntrMask)); | ||
1118 | |||
1119 | sis190_tx_clear(tp); | ||
1120 | sis190_rx_clear(tp); | ||
1121 | } | ||
1122 | |||
1123 | static int sis190_close(struct net_device *dev) | ||
1124 | { | ||
1125 | struct sis190_private *tp = netdev_priv(dev); | ||
1126 | struct pci_dev *pdev = tp->pci_dev; | ||
1127 | |||
1128 | sis190_down(dev); | ||
1129 | |||
1130 | free_irq(dev->irq, dev); | ||
1131 | |||
1132 | netif_poll_enable(dev); | ||
1133 | |||
1134 | pci_free_consistent(pdev, TX_RING_BYTES, tp->TxDescRing, tp->tx_dma); | ||
1135 | pci_free_consistent(pdev, RX_RING_BYTES, tp->RxDescRing, tp->rx_dma); | ||
1136 | |||
1137 | tp->TxDescRing = NULL; | ||
1138 | tp->RxDescRing = NULL; | ||
1139 | |||
1140 | return 0; | ||
1141 | } | ||
1142 | |||
1143 | static int sis190_start_xmit(struct sk_buff *skb, struct net_device *dev) | ||
1144 | { | ||
1145 | struct sis190_private *tp = netdev_priv(dev); | ||
1146 | void __iomem *ioaddr = tp->mmio_addr; | ||
1147 | u32 len, entry, dirty_tx; | ||
1148 | struct TxDesc *desc; | ||
1149 | dma_addr_t mapping; | ||
1150 | |||
1151 | if (unlikely(skb->len < ETH_ZLEN)) { | ||
1152 | skb = skb_padto(skb, ETH_ZLEN); | ||
1153 | if (!skb) { | ||
1154 | tp->stats.tx_dropped++; | ||
1155 | goto out; | ||
1156 | } | ||
1157 | len = ETH_ZLEN; | ||
1158 | } else { | ||
1159 | len = skb->len; | ||
1160 | } | ||
1161 | |||
1162 | entry = tp->cur_tx % NUM_TX_DESC; | ||
1163 | desc = tp->TxDescRing + entry; | ||
1164 | |||
1165 | if (unlikely(le32_to_cpu(desc->status) & OWNbit)) { | ||
1166 | netif_stop_queue(dev); | ||
1167 | net_tx_err(tp, KERN_ERR PFX | ||
1168 | "%s: BUG! Tx Ring full when queue awake!\n", | ||
1169 | dev->name); | ||
1170 | return NETDEV_TX_BUSY; | ||
1171 | } | ||
1172 | |||
1173 | mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE); | ||
1174 | |||
1175 | tp->Tx_skbuff[entry] = skb; | ||
1176 | |||
1177 | desc->PSize = cpu_to_le32(len); | ||
1178 | desc->addr = cpu_to_le32(mapping); | ||
1179 | |||
1180 | desc->size = cpu_to_le32(len); | ||
1181 | if (entry == (NUM_TX_DESC - 1)) | ||
1182 | desc->size |= cpu_to_le32(RingEnd); | ||
1183 | |||
1184 | wmb(); | ||
1185 | |||
1186 | desc->status = cpu_to_le32(OWNbit | INTbit | DEFbit | CRCbit | PADbit); | ||
1187 | |||
1188 | tp->cur_tx++; | ||
1189 | |||
1190 | smp_wmb(); | ||
1191 | |||
1192 | SIS_W32(TxControl, 0x1a00 | CmdReset | CmdTxEnb); | ||
1193 | |||
1194 | dev->trans_start = jiffies; | ||
1195 | |||
1196 | dirty_tx = tp->dirty_tx; | ||
1197 | if ((tp->cur_tx - NUM_TX_DESC) == dirty_tx) { | ||
1198 | netif_stop_queue(dev); | ||
1199 | smp_rmb(); | ||
1200 | if (dirty_tx != tp->dirty_tx) | ||
1201 | netif_wake_queue(dev); | ||
1202 | } | ||
1203 | out: | ||
1204 | return NETDEV_TX_OK; | ||
1205 | } | ||
1206 | |||
1207 | static struct net_device_stats *sis190_get_stats(struct net_device *dev) | ||
1208 | { | ||
1209 | struct sis190_private *tp = netdev_priv(dev); | ||
1210 | |||
1211 | return &tp->stats; | ||
1212 | } | ||
1213 | |||
1214 | static void sis190_free_phy(struct list_head *first_phy) | ||
1215 | { | ||
1216 | struct sis190_phy *cur, *next; | ||
1217 | |||
1218 | list_for_each_entry_safe(cur, next, first_phy, list) { | ||
1219 | kfree(cur); | ||
1220 | } | ||
1221 | } | ||
1222 | |||
1223 | /** | ||
1224 | * sis190_default_phy - Select default PHY for sis190 mac. | ||
1225 | * @dev: the net device to probe for | ||
1226 | * | ||
1227 | * Select first detected PHY with link as default. | ||
1228 | * If no one is link on, select PHY whose types is HOME as default. | ||
1229 | * If HOME doesn't exist, select LAN. | ||
1230 | */ | ||
1231 | static u16 sis190_default_phy(struct net_device *dev) | ||
1232 | { | ||
1233 | struct sis190_phy *phy, *phy_home, *phy_default, *phy_lan; | ||
1234 | struct sis190_private *tp = netdev_priv(dev); | ||
1235 | struct mii_if_info *mii_if = &tp->mii_if; | ||
1236 | void __iomem *ioaddr = tp->mmio_addr; | ||
1237 | u16 status; | ||
1238 | |||
1239 | phy_home = phy_default = phy_lan = NULL; | ||
1240 | |||
1241 | list_for_each_entry(phy, &tp->first_phy, list) { | ||
1242 | status = mdio_read_latched(ioaddr, phy->phy_id, MII_BMSR); | ||
1243 | |||
1244 | // Link ON & Not select default PHY & not ghost PHY. | ||
1245 | if ((status & BMSR_LSTATUS) && | ||
1246 | !phy_default && | ||
1247 | (phy->type != UNKNOWN)) { | ||
1248 | phy_default = phy; | ||
1249 | } else { | ||
1250 | status = mdio_read(ioaddr, phy->phy_id, MII_BMCR); | ||
1251 | mdio_write(ioaddr, phy->phy_id, MII_BMCR, | ||
1252 | status | BMCR_ANENABLE | BMCR_ISOLATE); | ||
1253 | if (phy->type == HOME) | ||
1254 | phy_home = phy; | ||
1255 | else if (phy->type == LAN) | ||
1256 | phy_lan = phy; | ||
1257 | } | ||
1258 | } | ||
1259 | |||
1260 | if (!phy_default) { | ||
1261 | if (phy_home) | ||
1262 | phy_default = phy_home; | ||
1263 | else if (phy_lan) | ||
1264 | phy_default = phy_lan; | ||
1265 | else | ||
1266 | phy_default = list_entry(&tp->first_phy, | ||
1267 | struct sis190_phy, list); | ||
1268 | } | ||
1269 | |||
1270 | if (mii_if->phy_id != phy_default->phy_id) { | ||
1271 | mii_if->phy_id = phy_default->phy_id; | ||
1272 | net_probe(tp, KERN_INFO | ||
1273 | "%s: Using transceiver at address %d as default.\n", | ||
1274 | pci_name(tp->pci_dev), mii_if->phy_id); | ||
1275 | } | ||
1276 | |||
1277 | status = mdio_read(ioaddr, mii_if->phy_id, MII_BMCR); | ||
1278 | status &= (~BMCR_ISOLATE); | ||
1279 | |||
1280 | mdio_write(ioaddr, mii_if->phy_id, MII_BMCR, status); | ||
1281 | status = mdio_read_latched(ioaddr, mii_if->phy_id, MII_BMSR); | ||
1282 | |||
1283 | return status; | ||
1284 | } | ||
1285 | |||
1286 | static void sis190_init_phy(struct net_device *dev, struct sis190_private *tp, | ||
1287 | struct sis190_phy *phy, unsigned int phy_id, | ||
1288 | u16 mii_status) | ||
1289 | { | ||
1290 | void __iomem *ioaddr = tp->mmio_addr; | ||
1291 | struct mii_chip_info *p; | ||
1292 | |||
1293 | INIT_LIST_HEAD(&phy->list); | ||
1294 | phy->status = mii_status; | ||
1295 | phy->phy_id = phy_id; | ||
1296 | |||
1297 | phy->id[0] = mdio_read(ioaddr, phy_id, MII_PHYSID1); | ||
1298 | phy->id[1] = mdio_read(ioaddr, phy_id, MII_PHYSID2); | ||
1299 | |||
1300 | for (p = mii_chip_table; p->type; p++) { | ||
1301 | if ((p->id[0] == phy->id[0]) && | ||
1302 | (p->id[1] == (phy->id[1] & 0xfff0))) { | ||
1303 | break; | ||
1304 | } | ||
1305 | } | ||
1306 | |||
1307 | if (p->id[1]) { | ||
1308 | phy->type = (p->type == MIX) ? | ||
1309 | ((mii_status & (BMSR_100FULL | BMSR_100HALF)) ? | ||
1310 | LAN : HOME) : p->type; | ||
1311 | } else | ||
1312 | phy->type = UNKNOWN; | ||
1313 | |||
1314 | net_probe(tp, KERN_INFO "%s: %s transceiver at address %d.\n", | ||
1315 | pci_name(tp->pci_dev), | ||
1316 | (phy->type == UNKNOWN) ? "Unknown PHY" : p->name, phy_id); | ||
1317 | } | ||
1318 | |||
1319 | /** | ||
1320 | * sis190_mii_probe - Probe MII PHY for sis190 | ||
1321 | * @dev: the net device to probe for | ||
1322 | * | ||
1323 | * Search for total of 32 possible mii phy addresses. | ||
1324 | * Identify and set current phy if found one, | ||
1325 | * return error if it failed to found. | ||
1326 | */ | ||
1327 | static int __devinit sis190_mii_probe(struct net_device *dev) | ||
1328 | { | ||
1329 | struct sis190_private *tp = netdev_priv(dev); | ||
1330 | struct mii_if_info *mii_if = &tp->mii_if; | ||
1331 | void __iomem *ioaddr = tp->mmio_addr; | ||
1332 | int phy_id; | ||
1333 | int rc = 0; | ||
1334 | |||
1335 | INIT_LIST_HEAD(&tp->first_phy); | ||
1336 | |||
1337 | for (phy_id = 0; phy_id < PHY_MAX_ADDR; phy_id++) { | ||
1338 | struct sis190_phy *phy; | ||
1339 | u16 status; | ||
1340 | |||
1341 | status = mdio_read_latched(ioaddr, phy_id, MII_BMSR); | ||
1342 | |||
1343 | // Try next mii if the current one is not accessible. | ||
1344 | if (status == 0xffff || status == 0x0000) | ||
1345 | continue; | ||
1346 | |||
1347 | phy = kmalloc(sizeof(*phy), GFP_KERNEL); | ||
1348 | if (!phy) { | ||
1349 | sis190_free_phy(&tp->first_phy); | ||
1350 | rc = -ENOMEM; | ||
1351 | goto out; | ||
1352 | } | ||
1353 | |||
1354 | sis190_init_phy(dev, tp, phy, phy_id, status); | ||
1355 | |||
1356 | list_add(&tp->first_phy, &phy->list); | ||
1357 | } | ||
1358 | |||
1359 | if (list_empty(&tp->first_phy)) { | ||
1360 | net_probe(tp, KERN_INFO "%s: No MII transceivers found!\n", | ||
1361 | pci_name(tp->pci_dev)); | ||
1362 | rc = -EIO; | ||
1363 | goto out; | ||
1364 | } | ||
1365 | |||
1366 | /* Select default PHY for mac */ | ||
1367 | sis190_default_phy(dev); | ||
1368 | |||
1369 | mii_if->dev = dev; | ||
1370 | mii_if->mdio_read = __mdio_read; | ||
1371 | mii_if->mdio_write = __mdio_write; | ||
1372 | mii_if->phy_id_mask = PHY_ID_ANY; | ||
1373 | mii_if->reg_num_mask = MII_REG_ANY; | ||
1374 | out: | ||
1375 | return rc; | ||
1376 | } | ||
1377 | |||
1378 | static void __devexit sis190_mii_remove(struct net_device *dev) | ||
1379 | { | ||
1380 | struct sis190_private *tp = netdev_priv(dev); | ||
1381 | |||
1382 | sis190_free_phy(&tp->first_phy); | ||
1383 | } | ||
1384 | |||
1385 | static void sis190_release_board(struct pci_dev *pdev) | ||
1386 | { | ||
1387 | struct net_device *dev = pci_get_drvdata(pdev); | ||
1388 | struct sis190_private *tp = netdev_priv(dev); | ||
1389 | |||
1390 | iounmap(tp->mmio_addr); | ||
1391 | pci_release_regions(pdev); | ||
1392 | pci_disable_device(pdev); | ||
1393 | free_netdev(dev); | ||
1394 | } | ||
1395 | |||
1396 | static struct net_device * __devinit sis190_init_board(struct pci_dev *pdev) | ||
1397 | { | ||
1398 | struct sis190_private *tp; | ||
1399 | struct net_device *dev; | ||
1400 | void __iomem *ioaddr; | ||
1401 | int rc; | ||
1402 | |||
1403 | dev = alloc_etherdev(sizeof(*tp)); | ||
1404 | if (!dev) { | ||
1405 | net_drv(&debug, KERN_ERR PFX "unable to alloc new ethernet\n"); | ||
1406 | rc = -ENOMEM; | ||
1407 | goto err_out_0; | ||
1408 | } | ||
1409 | |||
1410 | SET_MODULE_OWNER(dev); | ||
1411 | SET_NETDEV_DEV(dev, &pdev->dev); | ||
1412 | |||
1413 | tp = netdev_priv(dev); | ||
1414 | tp->msg_enable = netif_msg_init(debug.msg_enable, SIS190_MSG_DEFAULT); | ||
1415 | |||
1416 | rc = pci_enable_device(pdev); | ||
1417 | if (rc < 0) { | ||
1418 | net_probe(tp, KERN_ERR "%s: enable failure\n", pci_name(pdev)); | ||
1419 | goto err_free_dev_1; | ||
1420 | } | ||
1421 | |||
1422 | rc = -ENODEV; | ||
1423 | |||
1424 | if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) { | ||
1425 | net_probe(tp, KERN_ERR "%s: region #0 is no MMIO resource.\n", | ||
1426 | pci_name(pdev)); | ||
1427 | goto err_pci_disable_2; | ||
1428 | } | ||
1429 | if (pci_resource_len(pdev, 0) < SIS190_REGS_SIZE) { | ||
1430 | net_probe(tp, KERN_ERR "%s: invalid PCI region size(s).\n", | ||
1431 | pci_name(pdev)); | ||
1432 | goto err_pci_disable_2; | ||
1433 | } | ||
1434 | |||
1435 | rc = pci_request_regions(pdev, DRV_NAME); | ||
1436 | if (rc < 0) { | ||
1437 | net_probe(tp, KERN_ERR PFX "%s: could not request regions.\n", | ||
1438 | pci_name(pdev)); | ||
1439 | goto err_pci_disable_2; | ||
1440 | } | ||
1441 | |||
1442 | rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | ||
1443 | if (rc < 0) { | ||
1444 | net_probe(tp, KERN_ERR "%s: DMA configuration failed.\n", | ||
1445 | pci_name(pdev)); | ||
1446 | goto err_free_res_3; | ||
1447 | } | ||
1448 | |||
1449 | pci_set_master(pdev); | ||
1450 | |||
1451 | ioaddr = ioremap(pci_resource_start(pdev, 0), SIS190_REGS_SIZE); | ||
1452 | if (!ioaddr) { | ||
1453 | net_probe(tp, KERN_ERR "%s: cannot remap MMIO, aborting\n", | ||
1454 | pci_name(pdev)); | ||
1455 | rc = -EIO; | ||
1456 | goto err_free_res_3; | ||
1457 | } | ||
1458 | |||
1459 | tp->pci_dev = pdev; | ||
1460 | tp->mmio_addr = ioaddr; | ||
1461 | |||
1462 | sis190_irq_mask_and_ack(ioaddr); | ||
1463 | |||
1464 | sis190_soft_reset(ioaddr); | ||
1465 | out: | ||
1466 | return dev; | ||
1467 | |||
1468 | err_free_res_3: | ||
1469 | pci_release_regions(pdev); | ||
1470 | err_pci_disable_2: | ||
1471 | pci_disable_device(pdev); | ||
1472 | err_free_dev_1: | ||
1473 | free_netdev(dev); | ||
1474 | err_out_0: | ||
1475 | dev = ERR_PTR(rc); | ||
1476 | goto out; | ||
1477 | } | ||
1478 | |||
1479 | static void sis190_tx_timeout(struct net_device *dev) | ||
1480 | { | ||
1481 | struct sis190_private *tp = netdev_priv(dev); | ||
1482 | void __iomem *ioaddr = tp->mmio_addr; | ||
1483 | u8 tmp8; | ||
1484 | |||
1485 | /* Disable Tx, if not already */ | ||
1486 | tmp8 = SIS_R8(TxControl); | ||
1487 | if (tmp8 & CmdTxEnb) | ||
1488 | SIS_W8(TxControl, tmp8 & ~CmdTxEnb); | ||
1489 | |||
1490 | |||
1491 | net_tx_err(tp, KERN_INFO "%s: Transmit timeout, status %08x %08x.\n", | ||
1492 | dev->name, SIS_R32(TxControl), SIS_R32(TxSts)); | ||
1493 | |||
1494 | /* Disable interrupts by clearing the interrupt mask. */ | ||
1495 | SIS_W32(IntrMask, 0x0000); | ||
1496 | |||
1497 | /* Stop a shared interrupt from scavenging while we are. */ | ||
1498 | spin_lock_irq(&tp->lock); | ||
1499 | sis190_tx_clear(tp); | ||
1500 | spin_unlock_irq(&tp->lock); | ||
1501 | |||
1502 | /* ...and finally, reset everything. */ | ||
1503 | sis190_hw_start(dev); | ||
1504 | |||
1505 | netif_wake_queue(dev); | ||
1506 | } | ||
1507 | |||
1508 | static int __devinit sis190_get_mac_addr_from_eeprom(struct pci_dev *pdev, | ||
1509 | struct net_device *dev) | ||
1510 | { | ||
1511 | struct sis190_private *tp = netdev_priv(dev); | ||
1512 | void __iomem *ioaddr = tp->mmio_addr; | ||
1513 | u16 sig; | ||
1514 | int i; | ||
1515 | |||
1516 | net_probe(tp, KERN_INFO "%s: Read MAC address from EEPROM\n", | ||
1517 | pci_name(pdev)); | ||
1518 | |||
1519 | /* Check to see if there is a sane EEPROM */ | ||
1520 | sig = (u16) sis190_read_eeprom(ioaddr, EEPROMSignature); | ||
1521 | |||
1522 | if ((sig == 0xffff) || (sig == 0x0000)) { | ||
1523 | net_probe(tp, KERN_INFO "%s: Error EEPROM read %x.\n", | ||
1524 | pci_name(pdev), sig); | ||
1525 | return -EIO; | ||
1526 | } | ||
1527 | |||
1528 | /* Get MAC address from EEPROM */ | ||
1529 | for (i = 0; i < MAC_ADDR_LEN / 2; i++) { | ||
1530 | __le16 w = sis190_read_eeprom(ioaddr, EEPROMMACAddr + i); | ||
1531 | |||
1532 | ((u16 *)dev->dev_addr)[0] = le16_to_cpu(w); | ||
1533 | } | ||
1534 | |||
1535 | return 0; | ||
1536 | } | ||
1537 | |||
1538 | /** | ||
1539 | * sis190_get_mac_addr_from_apc - Get MAC address for SiS965 model | ||
1540 | * @pdev: PCI device | ||
1541 | * @dev: network device to get address for | ||
1542 | * | ||
1543 | * SiS965 model, use APC CMOS RAM to store MAC address. | ||
1544 | * APC CMOS RAM is accessed through ISA bridge. | ||
1545 | * MAC address is read into @net_dev->dev_addr. | ||
1546 | */ | ||
1547 | static int __devinit sis190_get_mac_addr_from_apc(struct pci_dev *pdev, | ||
1548 | struct net_device *dev) | ||
1549 | { | ||
1550 | struct sis190_private *tp = netdev_priv(dev); | ||
1551 | struct pci_dev *isa_bridge; | ||
1552 | u8 reg, tmp8; | ||
1553 | int i; | ||
1554 | |||
1555 | net_probe(tp, KERN_INFO "%s: Read MAC address from APC.\n", | ||
1556 | pci_name(pdev)); | ||
1557 | |||
1558 | isa_bridge = pci_get_device(PCI_VENDOR_ID_SI, 0x0965, NULL); | ||
1559 | if (!isa_bridge) { | ||
1560 | net_probe(tp, KERN_INFO "%s: Can not find ISA bridge.\n", | ||
1561 | pci_name(pdev)); | ||
1562 | return -EIO; | ||
1563 | } | ||
1564 | |||
1565 | /* Enable port 78h & 79h to access APC Registers. */ | ||
1566 | pci_read_config_byte(isa_bridge, 0x48, &tmp8); | ||
1567 | reg = (tmp8 & ~0x02); | ||
1568 | pci_write_config_byte(isa_bridge, 0x48, reg); | ||
1569 | udelay(50); | ||
1570 | pci_read_config_byte(isa_bridge, 0x48, ®); | ||
1571 | |||
1572 | for (i = 0; i < MAC_ADDR_LEN; i++) { | ||
1573 | outb(0x9 + i, 0x78); | ||
1574 | dev->dev_addr[i] = inb(0x79); | ||
1575 | } | ||
1576 | |||
1577 | outb(0x12, 0x78); | ||
1578 | reg = inb(0x79); | ||
1579 | |||
1580 | /* Restore the value to ISA Bridge */ | ||
1581 | pci_write_config_byte(isa_bridge, 0x48, tmp8); | ||
1582 | pci_dev_put(isa_bridge); | ||
1583 | |||
1584 | return 0; | ||
1585 | } | ||
1586 | |||
1587 | /** | ||
1588 | * sis190_init_rxfilter - Initialize the Rx filter | ||
1589 | * @dev: network device to initialize | ||
1590 | * | ||
1591 | * Set receive filter address to our MAC address | ||
1592 | * and enable packet filtering. | ||
1593 | */ | ||
1594 | static inline void sis190_init_rxfilter(struct net_device *dev) | ||
1595 | { | ||
1596 | struct sis190_private *tp = netdev_priv(dev); | ||
1597 | void __iomem *ioaddr = tp->mmio_addr; | ||
1598 | u16 ctl; | ||
1599 | int i; | ||
1600 | |||
1601 | ctl = SIS_R16(RxMacControl); | ||
1602 | /* | ||
1603 | * Disable packet filtering before setting filter. | ||
1604 | * Note: SiS's driver writes 32 bits but RxMacControl is 16 bits | ||
1605 | * only and followed by RxMacAddr (6 bytes). Strange. -- FR | ||
1606 | */ | ||
1607 | SIS_W16(RxMacControl, ctl & ~0x0f00); | ||
1608 | |||
1609 | for (i = 0; i < MAC_ADDR_LEN; i++) | ||
1610 | SIS_W8(RxMacAddr + i, dev->dev_addr[i]); | ||
1611 | |||
1612 | SIS_W16(RxMacControl, ctl); | ||
1613 | SIS_PCI_COMMIT(); | ||
1614 | } | ||
1615 | |||
1616 | static int sis190_get_mac_addr(struct pci_dev *pdev, struct net_device *dev) | ||
1617 | { | ||
1618 | u8 from; | ||
1619 | |||
1620 | pci_read_config_byte(pdev, 0x73, &from); | ||
1621 | |||
1622 | return (from & 0x00000001) ? | ||
1623 | sis190_get_mac_addr_from_apc(pdev, dev) : | ||
1624 | sis190_get_mac_addr_from_eeprom(pdev, dev); | ||
1625 | } | ||
1626 | |||
1627 | static void sis190_set_speed_auto(struct net_device *dev) | ||
1628 | { | ||
1629 | struct sis190_private *tp = netdev_priv(dev); | ||
1630 | void __iomem *ioaddr = tp->mmio_addr; | ||
1631 | int phy_id = tp->mii_if.phy_id; | ||
1632 | int val; | ||
1633 | |||
1634 | net_link(tp, KERN_INFO "%s: Enabling Auto-negotiation.\n", dev->name); | ||
1635 | |||
1636 | val = mdio_read(ioaddr, phy_id, MII_ADVERTISE); | ||
1637 | |||
1638 | // Enable 10/100 Full/Half Mode, leave MII_ADVERTISE bit4:0 | ||
1639 | // unchanged. | ||
1640 | mdio_write(ioaddr, phy_id, MII_ADVERTISE, (val & ADVERTISE_SLCT) | | ||
1641 | ADVERTISE_100FULL | ADVERTISE_10FULL | | ||
1642 | ADVERTISE_100HALF | ADVERTISE_10HALF); | ||
1643 | |||
1644 | // Enable 1000 Full Mode. | ||
1645 | mdio_write(ioaddr, phy_id, MII_CTRL1000, ADVERTISE_1000FULL); | ||
1646 | |||
1647 | // Enable auto-negotiation and restart auto-negotiation. | ||
1648 | mdio_write(ioaddr, phy_id, MII_BMCR, | ||
1649 | BMCR_ANENABLE | BMCR_ANRESTART | BMCR_RESET); | ||
1650 | } | ||
1651 | |||
1652 | static int sis190_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) | ||
1653 | { | ||
1654 | struct sis190_private *tp = netdev_priv(dev); | ||
1655 | |||
1656 | return mii_ethtool_gset(&tp->mii_if, cmd); | ||
1657 | } | ||
1658 | |||
1659 | static int sis190_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) | ||
1660 | { | ||
1661 | struct sis190_private *tp = netdev_priv(dev); | ||
1662 | |||
1663 | return mii_ethtool_sset(&tp->mii_if, cmd); | ||
1664 | } | ||
1665 | |||
1666 | static void sis190_get_drvinfo(struct net_device *dev, | ||
1667 | struct ethtool_drvinfo *info) | ||
1668 | { | ||
1669 | struct sis190_private *tp = netdev_priv(dev); | ||
1670 | |||
1671 | strcpy(info->driver, DRV_NAME); | ||
1672 | strcpy(info->version, DRV_VERSION); | ||
1673 | strcpy(info->bus_info, pci_name(tp->pci_dev)); | ||
1674 | } | ||
1675 | |||
1676 | static int sis190_get_regs_len(struct net_device *dev) | ||
1677 | { | ||
1678 | return SIS190_REGS_SIZE; | ||
1679 | } | ||
1680 | |||
1681 | static void sis190_get_regs(struct net_device *dev, struct ethtool_regs *regs, | ||
1682 | void *p) | ||
1683 | { | ||
1684 | struct sis190_private *tp = netdev_priv(dev); | ||
1685 | unsigned long flags; | ||
1686 | |||
1687 | if (regs->len > SIS190_REGS_SIZE) | ||
1688 | regs->len = SIS190_REGS_SIZE; | ||
1689 | |||
1690 | spin_lock_irqsave(&tp->lock, flags); | ||
1691 | memcpy_fromio(p, tp->mmio_addr, regs->len); | ||
1692 | spin_unlock_irqrestore(&tp->lock, flags); | ||
1693 | } | ||
1694 | |||
1695 | static int sis190_nway_reset(struct net_device *dev) | ||
1696 | { | ||
1697 | struct sis190_private *tp = netdev_priv(dev); | ||
1698 | |||
1699 | return mii_nway_restart(&tp->mii_if); | ||
1700 | } | ||
1701 | |||
1702 | static u32 sis190_get_msglevel(struct net_device *dev) | ||
1703 | { | ||
1704 | struct sis190_private *tp = netdev_priv(dev); | ||
1705 | |||
1706 | return tp->msg_enable; | ||
1707 | } | ||
1708 | |||
1709 | static void sis190_set_msglevel(struct net_device *dev, u32 value) | ||
1710 | { | ||
1711 | struct sis190_private *tp = netdev_priv(dev); | ||
1712 | |||
1713 | tp->msg_enable = value; | ||
1714 | } | ||
1715 | |||
1716 | static struct ethtool_ops sis190_ethtool_ops = { | ||
1717 | .get_settings = sis190_get_settings, | ||
1718 | .set_settings = sis190_set_settings, | ||
1719 | .get_drvinfo = sis190_get_drvinfo, | ||
1720 | .get_regs_len = sis190_get_regs_len, | ||
1721 | .get_regs = sis190_get_regs, | ||
1722 | .get_link = ethtool_op_get_link, | ||
1723 | .get_msglevel = sis190_get_msglevel, | ||
1724 | .set_msglevel = sis190_set_msglevel, | ||
1725 | .nway_reset = sis190_nway_reset, | ||
1726 | }; | ||
1727 | |||
1728 | static int sis190_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) | ||
1729 | { | ||
1730 | struct sis190_private *tp = netdev_priv(dev); | ||
1731 | |||
1732 | return !netif_running(dev) ? -EINVAL : | ||
1733 | generic_mii_ioctl(&tp->mii_if, if_mii(ifr), cmd, NULL); | ||
1734 | } | ||
1735 | |||
1736 | static int __devinit sis190_init_one(struct pci_dev *pdev, | ||
1737 | const struct pci_device_id *ent) | ||
1738 | { | ||
1739 | static int printed_version = 0; | ||
1740 | struct sis190_private *tp; | ||
1741 | struct net_device *dev; | ||
1742 | void __iomem *ioaddr; | ||
1743 | int rc; | ||
1744 | |||
1745 | if (!printed_version) { | ||
1746 | net_drv(&debug, KERN_INFO SIS190_DRIVER_NAME " loaded.\n"); | ||
1747 | printed_version = 1; | ||
1748 | } | ||
1749 | |||
1750 | dev = sis190_init_board(pdev); | ||
1751 | if (IS_ERR(dev)) { | ||
1752 | rc = PTR_ERR(dev); | ||
1753 | goto out; | ||
1754 | } | ||
1755 | |||
1756 | tp = netdev_priv(dev); | ||
1757 | ioaddr = tp->mmio_addr; | ||
1758 | |||
1759 | rc = sis190_get_mac_addr(pdev, dev); | ||
1760 | if (rc < 0) | ||
1761 | goto err_release_board; | ||
1762 | |||
1763 | sis190_init_rxfilter(dev); | ||
1764 | |||
1765 | INIT_WORK(&tp->phy_task, sis190_phy_task, dev); | ||
1766 | |||
1767 | dev->open = sis190_open; | ||
1768 | dev->stop = sis190_close; | ||
1769 | dev->do_ioctl = sis190_ioctl; | ||
1770 | dev->get_stats = sis190_get_stats; | ||
1771 | dev->tx_timeout = sis190_tx_timeout; | ||
1772 | dev->watchdog_timeo = SIS190_TX_TIMEOUT; | ||
1773 | dev->hard_start_xmit = sis190_start_xmit; | ||
1774 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
1775 | dev->poll_controller = sis190_netpoll; | ||
1776 | #endif | ||
1777 | dev->set_multicast_list = sis190_set_rx_mode; | ||
1778 | SET_ETHTOOL_OPS(dev, &sis190_ethtool_ops); | ||
1779 | dev->irq = pdev->irq; | ||
1780 | dev->base_addr = (unsigned long) 0xdead; | ||
1781 | |||
1782 | spin_lock_init(&tp->lock); | ||
1783 | |||
1784 | rc = sis190_mii_probe(dev); | ||
1785 | if (rc < 0) | ||
1786 | goto err_release_board; | ||
1787 | |||
1788 | rc = register_netdev(dev); | ||
1789 | if (rc < 0) | ||
1790 | goto err_remove_mii; | ||
1791 | |||
1792 | pci_set_drvdata(pdev, dev); | ||
1793 | |||
1794 | net_probe(tp, KERN_INFO "%s: %s at %p (IRQ: %d), " | ||
1795 | "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x\n", | ||
1796 | pci_name(pdev), sis_chip_info[ent->driver_data].name, | ||
1797 | ioaddr, dev->irq, | ||
1798 | dev->dev_addr[0], dev->dev_addr[1], | ||
1799 | dev->dev_addr[2], dev->dev_addr[3], | ||
1800 | dev->dev_addr[4], dev->dev_addr[5]); | ||
1801 | |||
1802 | netif_carrier_off(dev); | ||
1803 | |||
1804 | sis190_set_speed_auto(dev); | ||
1805 | out: | ||
1806 | return rc; | ||
1807 | |||
1808 | err_remove_mii: | ||
1809 | sis190_mii_remove(dev); | ||
1810 | err_release_board: | ||
1811 | sis190_release_board(pdev); | ||
1812 | goto out; | ||
1813 | } | ||
1814 | |||
1815 | static void __devexit sis190_remove_one(struct pci_dev *pdev) | ||
1816 | { | ||
1817 | struct net_device *dev = pci_get_drvdata(pdev); | ||
1818 | |||
1819 | sis190_mii_remove(dev); | ||
1820 | unregister_netdev(dev); | ||
1821 | sis190_release_board(pdev); | ||
1822 | pci_set_drvdata(pdev, NULL); | ||
1823 | } | ||
1824 | |||
1825 | static struct pci_driver sis190_pci_driver = { | ||
1826 | .name = DRV_NAME, | ||
1827 | .id_table = sis190_pci_tbl, | ||
1828 | .probe = sis190_init_one, | ||
1829 | .remove = __devexit_p(sis190_remove_one), | ||
1830 | }; | ||
1831 | |||
1832 | static int __init sis190_init_module(void) | ||
1833 | { | ||
1834 | return pci_module_init(&sis190_pci_driver); | ||
1835 | } | ||
1836 | |||
1837 | static void __exit sis190_cleanup_module(void) | ||
1838 | { | ||
1839 | pci_unregister_driver(&sis190_pci_driver); | ||
1840 | } | ||
1841 | |||
1842 | module_init(sis190_init_module); | ||
1843 | module_exit(sis190_cleanup_module); | ||
diff --git a/drivers/net/tulip/Kconfig b/drivers/net/tulip/Kconfig index e2cdaf876201..8c9634a98c11 100644 --- a/drivers/net/tulip/Kconfig +++ b/drivers/net/tulip/Kconfig | |||
@@ -135,6 +135,18 @@ config DM9102 | |||
135 | <file:Documentation/networking/net-modules.txt>. The module will | 135 | <file:Documentation/networking/net-modules.txt>. The module will |
136 | be called dmfe. | 136 | be called dmfe. |
137 | 137 | ||
138 | config ULI526X | ||
139 | tristate "ULi M526x controller support" | ||
140 | depends on NET_TULIP && PCI | ||
141 | select CRC32 | ||
142 | ---help--- | ||
143 | This driver is for ULi M5261/M5263 10/100M Ethernet Controller | ||
144 | (<http://www.uli.com.tw/>). | ||
145 | |||
146 | To compile this driver as a module, choose M here and read | ||
147 | <file:Documentation/networking/net-modules.txt>. The module will | ||
148 | be called uli526x. | ||
149 | |||
138 | config PCMCIA_XIRCOM | 150 | config PCMCIA_XIRCOM |
139 | tristate "Xircom CardBus support (new driver)" | 151 | tristate "Xircom CardBus support (new driver)" |
140 | depends on NET_TULIP && CARDBUS | 152 | depends on NET_TULIP && CARDBUS |
diff --git a/drivers/net/tulip/Makefile b/drivers/net/tulip/Makefile index 8bb9b4683979..451090d6fcca 100644 --- a/drivers/net/tulip/Makefile +++ b/drivers/net/tulip/Makefile | |||
@@ -9,6 +9,7 @@ obj-$(CONFIG_WINBOND_840) += winbond-840.o | |||
9 | obj-$(CONFIG_DE2104X) += de2104x.o | 9 | obj-$(CONFIG_DE2104X) += de2104x.o |
10 | obj-$(CONFIG_TULIP) += tulip.o | 10 | obj-$(CONFIG_TULIP) += tulip.o |
11 | obj-$(CONFIG_DE4X5) += de4x5.o | 11 | obj-$(CONFIG_DE4X5) += de4x5.o |
12 | obj-$(CONFIG_ULI526X) += uli526x.o | ||
12 | 13 | ||
13 | # Declare multi-part drivers. | 14 | # Declare multi-part drivers. |
14 | 15 | ||
diff --git a/drivers/net/tulip/media.c b/drivers/net/tulip/media.c index e26c31f944bf..f53396fe79c9 100644 --- a/drivers/net/tulip/media.c +++ b/drivers/net/tulip/media.c | |||
@@ -81,25 +81,6 @@ int tulip_mdio_read(struct net_device *dev, int phy_id, int location) | |||
81 | return retval & 0xffff; | 81 | return retval & 0xffff; |
82 | } | 82 | } |
83 | 83 | ||
84 | if(tp->chip_id == ULI526X && tp->revision >= 0x40) { | ||
85 | int value; | ||
86 | int i = 1000; | ||
87 | |||
88 | value = ioread32(ioaddr + CSR9); | ||
89 | iowrite32(value & 0xFFEFFFFF, ioaddr + CSR9); | ||
90 | |||
91 | value = (phy_id << 21) | (location << 16) | 0x08000000; | ||
92 | iowrite32(value, ioaddr + CSR10); | ||
93 | |||
94 | while(--i > 0) { | ||
95 | mdio_delay(); | ||
96 | if(ioread32(ioaddr + CSR10) & 0x10000000) | ||
97 | break; | ||
98 | } | ||
99 | retval = ioread32(ioaddr + CSR10); | ||
100 | spin_unlock_irqrestore(&tp->mii_lock, flags); | ||
101 | return retval & 0xFFFF; | ||
102 | } | ||
103 | /* Establish sync by sending at least 32 logic ones. */ | 84 | /* Establish sync by sending at least 32 logic ones. */ |
104 | for (i = 32; i >= 0; i--) { | 85 | for (i = 32; i >= 0; i--) { |
105 | iowrite32(MDIO_ENB | MDIO_DATA_WRITE1, mdio_addr); | 86 | iowrite32(MDIO_ENB | MDIO_DATA_WRITE1, mdio_addr); |
@@ -159,23 +140,6 @@ void tulip_mdio_write(struct net_device *dev, int phy_id, int location, int val) | |||
159 | spin_unlock_irqrestore(&tp->mii_lock, flags); | 140 | spin_unlock_irqrestore(&tp->mii_lock, flags); |
160 | return; | 141 | return; |
161 | } | 142 | } |
162 | if (tp->chip_id == ULI526X && tp->revision >= 0x40) { | ||
163 | int value; | ||
164 | int i = 1000; | ||
165 | |||
166 | value = ioread32(ioaddr + CSR9); | ||
167 | iowrite32(value & 0xFFEFFFFF, ioaddr + CSR9); | ||
168 | |||
169 | value = (phy_id << 21) | (location << 16) | 0x04000000 | (val & 0xFFFF); | ||
170 | iowrite32(value, ioaddr + CSR10); | ||
171 | |||
172 | while(--i > 0) { | ||
173 | if (ioread32(ioaddr + CSR10) & 0x10000000) | ||
174 | break; | ||
175 | } | ||
176 | spin_unlock_irqrestore(&tp->mii_lock, flags); | ||
177 | return; | ||
178 | } | ||
179 | 143 | ||
180 | /* Establish sync by sending 32 logic ones. */ | 144 | /* Establish sync by sending 32 logic ones. */ |
181 | for (i = 32; i >= 0; i--) { | 145 | for (i = 32; i >= 0; i--) { |
diff --git a/drivers/net/tulip/timer.c b/drivers/net/tulip/timer.c index 691568283553..e058a9fbfe88 100644 --- a/drivers/net/tulip/timer.c +++ b/drivers/net/tulip/timer.c | |||
@@ -39,7 +39,6 @@ void tulip_timer(unsigned long data) | |||
39 | case MX98713: | 39 | case MX98713: |
40 | case COMPEX9881: | 40 | case COMPEX9881: |
41 | case DM910X: | 41 | case DM910X: |
42 | case ULI526X: | ||
43 | default: { | 42 | default: { |
44 | struct medialeaf *mleaf; | 43 | struct medialeaf *mleaf; |
45 | unsigned char *p; | 44 | unsigned char *p; |
diff --git a/drivers/net/tulip/tulip.h b/drivers/net/tulip/tulip.h index 20346d847d9e..05d2d96f7be2 100644 --- a/drivers/net/tulip/tulip.h +++ b/drivers/net/tulip/tulip.h | |||
@@ -88,7 +88,6 @@ enum chips { | |||
88 | I21145, | 88 | I21145, |
89 | DM910X, | 89 | DM910X, |
90 | CONEXANT, | 90 | CONEXANT, |
91 | ULI526X | ||
92 | }; | 91 | }; |
93 | 92 | ||
94 | 93 | ||
@@ -482,11 +481,8 @@ static inline void tulip_stop_rxtx(struct tulip_private *tp) | |||
482 | 481 | ||
483 | static inline void tulip_restart_rxtx(struct tulip_private *tp) | 482 | static inline void tulip_restart_rxtx(struct tulip_private *tp) |
484 | { | 483 | { |
485 | if(!(tp->chip_id == ULI526X && | 484 | tulip_stop_rxtx(tp); |
486 | (tp->revision == 0x40 || tp->revision == 0x50))) { | 485 | udelay(5); |
487 | tulip_stop_rxtx(tp); | ||
488 | udelay(5); | ||
489 | } | ||
490 | tulip_start_rxtx(tp); | 486 | tulip_start_rxtx(tp); |
491 | } | 487 | } |
492 | 488 | ||
diff --git a/drivers/net/tulip/tulip_core.c b/drivers/net/tulip/tulip_core.c index d45d8f56e5b4..05da5bea564c 100644 --- a/drivers/net/tulip/tulip_core.c +++ b/drivers/net/tulip/tulip_core.c | |||
@@ -199,9 +199,6 @@ struct tulip_chip_table tulip_tbl[] = { | |||
199 | { "Conexant LANfinity", 256, 0x0001ebef, | 199 | { "Conexant LANfinity", 256, 0x0001ebef, |
200 | HAS_MII | HAS_ACPI, tulip_timer }, | 200 | HAS_MII | HAS_ACPI, tulip_timer }, |
201 | 201 | ||
202 | /* ULi526X */ | ||
203 | { "ULi M5261/M5263", 128, 0x0001ebef, | ||
204 | HAS_MII | HAS_MEDIA_TABLE | CSR12_IN_SROM | HAS_ACPI, tulip_timer }, | ||
205 | }; | 202 | }; |
206 | 203 | ||
207 | 204 | ||
@@ -239,8 +236,6 @@ static struct pci_device_id tulip_pci_tbl[] = { | |||
239 | { 0x1737, 0xAB09, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, | 236 | { 0x1737, 0xAB09, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, |
240 | { 0x1737, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, | 237 | { 0x1737, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, |
241 | { 0x17B3, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, | 238 | { 0x17B3, 0xAB08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, |
242 | { 0x10b9, 0x5261, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ULI526X }, /* ALi 1563 integrated ethernet */ | ||
243 | { 0x10b9, 0x5263, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ULI526X }, /* ALi 1563 integrated ethernet */ | ||
244 | { 0x10b7, 0x9300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* 3Com 3CSOHO100B-TX */ | 239 | { 0x10b7, 0x9300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* 3Com 3CSOHO100B-TX */ |
245 | { 0x14ea, 0xab08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* Planex FNW-3602-TX */ | 240 | { 0x14ea, 0xab08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, /* Planex FNW-3602-TX */ |
246 | { } /* terminate list */ | 241 | { } /* terminate list */ |
@@ -522,7 +517,7 @@ static void tulip_tx_timeout(struct net_device *dev) | |||
522 | dev->name); | 517 | dev->name); |
523 | } else if (tp->chip_id == DC21140 || tp->chip_id == DC21142 | 518 | } else if (tp->chip_id == DC21140 || tp->chip_id == DC21142 |
524 | || tp->chip_id == MX98713 || tp->chip_id == COMPEX9881 | 519 | || tp->chip_id == MX98713 || tp->chip_id == COMPEX9881 |
525 | || tp->chip_id == DM910X || tp->chip_id == ULI526X) { | 520 | || tp->chip_id == DM910X) { |
526 | printk(KERN_WARNING "%s: 21140 transmit timed out, status %8.8x, " | 521 | printk(KERN_WARNING "%s: 21140 transmit timed out, status %8.8x, " |
527 | "SIA %8.8x %8.8x %8.8x %8.8x, resetting...\n", | 522 | "SIA %8.8x %8.8x %8.8x %8.8x, resetting...\n", |
528 | dev->name, ioread32(ioaddr + CSR5), ioread32(ioaddr + CSR12), | 523 | dev->name, ioread32(ioaddr + CSR5), ioread32(ioaddr + CSR12), |
@@ -1103,18 +1098,16 @@ static void set_rx_mode(struct net_device *dev) | |||
1103 | entry = tp->cur_tx++ % TX_RING_SIZE; | 1098 | entry = tp->cur_tx++ % TX_RING_SIZE; |
1104 | 1099 | ||
1105 | if (entry != 0) { | 1100 | if (entry != 0) { |
1106 | /* Avoid a chip errata by prefixing a dummy entry. Don't do | 1101 | /* Avoid a chip errata by prefixing a dummy entry. */ |
1107 | this on the ULI526X as it triggers a different problem */ | 1102 | tp->tx_buffers[entry].skb = NULL; |
1108 | if (!(tp->chip_id == ULI526X && (tp->revision == 0x40 || tp->revision == 0x50))) { | 1103 | tp->tx_buffers[entry].mapping = 0; |
1109 | tp->tx_buffers[entry].skb = NULL; | 1104 | tp->tx_ring[entry].length = |
1110 | tp->tx_buffers[entry].mapping = 0; | 1105 | (entry == TX_RING_SIZE-1) ? cpu_to_le32(DESC_RING_WRAP) : 0; |
1111 | tp->tx_ring[entry].length = | 1106 | tp->tx_ring[entry].buffer1 = 0; |
1112 | (entry == TX_RING_SIZE-1) ? cpu_to_le32(DESC_RING_WRAP) : 0; | 1107 | /* Must set DescOwned later to avoid race with chip */ |
1113 | tp->tx_ring[entry].buffer1 = 0; | 1108 | dummy = entry; |
1114 | /* Must set DescOwned later to avoid race with chip */ | 1109 | entry = tp->cur_tx++ % TX_RING_SIZE; |
1115 | dummy = entry; | 1110 | |
1116 | entry = tp->cur_tx++ % TX_RING_SIZE; | ||
1117 | } | ||
1118 | } | 1111 | } |
1119 | 1112 | ||
1120 | tp->tx_buffers[entry].skb = NULL; | 1113 | tp->tx_buffers[entry].skb = NULL; |
@@ -1235,10 +1228,6 @@ static int tulip_uli_dm_quirk(struct pci_dev *pdev) | |||
1235 | { | 1228 | { |
1236 | if (pdev->vendor == 0x1282 && pdev->device == 0x9102) | 1229 | if (pdev->vendor == 0x1282 && pdev->device == 0x9102) |
1237 | return 1; | 1230 | return 1; |
1238 | if (pdev->vendor == 0x10b9 && pdev->device == 0x5261) | ||
1239 | return 1; | ||
1240 | if (pdev->vendor == 0x10b9 && pdev->device == 0x5263) | ||
1241 | return 1; | ||
1242 | return 0; | 1231 | return 0; |
1243 | } | 1232 | } |
1244 | 1233 | ||
@@ -1680,7 +1669,6 @@ static int __devinit tulip_init_one (struct pci_dev *pdev, | |||
1680 | switch (chip_idx) { | 1669 | switch (chip_idx) { |
1681 | case DC21140: | 1670 | case DC21140: |
1682 | case DM910X: | 1671 | case DM910X: |
1683 | case ULI526X: | ||
1684 | default: | 1672 | default: |
1685 | if (tp->mtable) | 1673 | if (tp->mtable) |
1686 | iowrite32(tp->mtable->csr12dir | 0x100, ioaddr + CSR12); | 1674 | iowrite32(tp->mtable->csr12dir | 0x100, ioaddr + CSR12); |
diff --git a/drivers/net/tulip/uli526x.c b/drivers/net/tulip/uli526x.c new file mode 100644 index 000000000000..5ae22b7bc5ca --- /dev/null +++ b/drivers/net/tulip/uli526x.c | |||
@@ -0,0 +1,1749 @@ | |||
1 | /* | ||
2 | This program is free software; you can redistribute it and/or | ||
3 | modify it under the terms of the GNU General Public License | ||
4 | as published by the Free Software Foundation; either version 2 | ||
5 | of the License, or (at your option) any later version. | ||
6 | |||
7 | This program is distributed in the hope that it will be useful, | ||
8 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | GNU General Public License for more details. | ||
11 | |||
12 | |||
13 | */ | ||
14 | |||
15 | #define DRV_NAME "uli526x" | ||
16 | #define DRV_VERSION "0.9.3" | ||
17 | #define DRV_RELDATE "2005-7-29" | ||
18 | |||
19 | #include <linux/module.h> | ||
20 | |||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/string.h> | ||
23 | #include <linux/timer.h> | ||
24 | #include <linux/ptrace.h> | ||
25 | #include <linux/errno.h> | ||
26 | #include <linux/ioport.h> | ||
27 | #include <linux/slab.h> | ||
28 | #include <linux/interrupt.h> | ||
29 | #include <linux/pci.h> | ||
30 | #include <linux/init.h> | ||
31 | #include <linux/netdevice.h> | ||
32 | #include <linux/etherdevice.h> | ||
33 | #include <linux/ethtool.h> | ||
34 | #include <linux/skbuff.h> | ||
35 | #include <linux/delay.h> | ||
36 | #include <linux/spinlock.h> | ||
37 | |||
38 | #include <asm/processor.h> | ||
39 | #include <asm/bitops.h> | ||
40 | #include <asm/io.h> | ||
41 | #include <asm/dma.h> | ||
42 | #include <asm/uaccess.h> | ||
43 | |||
44 | |||
45 | /* Board/System/Debug information/definition ---------------- */ | ||
46 | #define PCI_ULI5261_ID 0x526110B9 /* ULi M5261 ID*/ | ||
47 | #define PCI_ULI5263_ID 0x526310B9 /* ULi M5263 ID*/ | ||
48 | |||
49 | #define ULI526X_IO_SIZE 0x100 | ||
50 | #define TX_DESC_CNT 0x20 /* Allocated Tx descriptors */ | ||
51 | #define RX_DESC_CNT 0x30 /* Allocated Rx descriptors */ | ||
52 | #define TX_FREE_DESC_CNT (TX_DESC_CNT - 2) /* Max TX packet count */ | ||
53 | #define TX_WAKE_DESC_CNT (TX_DESC_CNT - 3) /* TX wakeup count */ | ||
54 | #define DESC_ALL_CNT (TX_DESC_CNT + RX_DESC_CNT) | ||
55 | #define TX_BUF_ALLOC 0x600 | ||
56 | #define RX_ALLOC_SIZE 0x620 | ||
57 | #define ULI526X_RESET 1 | ||
58 | #define CR0_DEFAULT 0 | ||
59 | #define CR6_DEFAULT 0x22200000 | ||
60 | #define CR7_DEFAULT 0x180c1 | ||
61 | #define CR15_DEFAULT 0x06 /* TxJabber RxWatchdog */ | ||
62 | #define TDES0_ERR_MASK 0x4302 /* TXJT, LC, EC, FUE */ | ||
63 | #define MAX_PACKET_SIZE 1514 | ||
64 | #define ULI5261_MAX_MULTICAST 14 | ||
65 | #define RX_COPY_SIZE 100 | ||
66 | #define MAX_CHECK_PACKET 0x8000 | ||
67 | |||
68 | #define ULI526X_10MHF 0 | ||
69 | #define ULI526X_100MHF 1 | ||
70 | #define ULI526X_10MFD 4 | ||
71 | #define ULI526X_100MFD 5 | ||
72 | #define ULI526X_AUTO 8 | ||
73 | |||
74 | #define ULI526X_TXTH_72 0x400000 /* TX TH 72 byte */ | ||
75 | #define ULI526X_TXTH_96 0x404000 /* TX TH 96 byte */ | ||
76 | #define ULI526X_TXTH_128 0x0000 /* TX TH 128 byte */ | ||
77 | #define ULI526X_TXTH_256 0x4000 /* TX TH 256 byte */ | ||
78 | #define ULI526X_TXTH_512 0x8000 /* TX TH 512 byte */ | ||
79 | #define ULI526X_TXTH_1K 0xC000 /* TX TH 1K byte */ | ||
80 | |||
81 | #define ULI526X_TIMER_WUT (jiffies + HZ * 1)/* timer wakeup time : 1 second */ | ||
82 | #define ULI526X_TX_TIMEOUT ((16*HZ)/2) /* tx packet time-out time 8 s" */ | ||
83 | #define ULI526X_TX_KICK (4*HZ/2) /* tx packet Kick-out time 2 s" */ | ||
84 | |||
85 | #define ULI526X_DBUG(dbug_now, msg, value) if (uli526x_debug || (dbug_now)) printk(KERN_ERR DRV_NAME ": %s %lx\n", (msg), (long) (value)) | ||
86 | |||
87 | #define SHOW_MEDIA_TYPE(mode) printk(KERN_ERR DRV_NAME ": Change Speed to %sMhz %s duplex\n",mode & 1 ?"100":"10", mode & 4 ? "full":"half"); | ||
88 | |||
89 | |||
90 | /* CR9 definition: SROM/MII */ | ||
91 | #define CR9_SROM_READ 0x4800 | ||
92 | #define CR9_SRCS 0x1 | ||
93 | #define CR9_SRCLK 0x2 | ||
94 | #define CR9_CRDOUT 0x8 | ||
95 | #define SROM_DATA_0 0x0 | ||
96 | #define SROM_DATA_1 0x4 | ||
97 | #define PHY_DATA_1 0x20000 | ||
98 | #define PHY_DATA_0 0x00000 | ||
99 | #define MDCLKH 0x10000 | ||
100 | |||
101 | #define PHY_POWER_DOWN 0x800 | ||
102 | |||
103 | #define SROM_V41_CODE 0x14 | ||
104 | |||
105 | #define SROM_CLK_WRITE(data, ioaddr) \ | ||
106 | outl(data|CR9_SROM_READ|CR9_SRCS,ioaddr); \ | ||
107 | udelay(5); \ | ||
108 | outl(data|CR9_SROM_READ|CR9_SRCS|CR9_SRCLK,ioaddr); \ | ||
109 | udelay(5); \ | ||
110 | outl(data|CR9_SROM_READ|CR9_SRCS,ioaddr); \ | ||
111 | udelay(5); | ||
112 | |||
113 | /* Structure/enum declaration ------------------------------- */ | ||
114 | struct tx_desc { | ||
115 | u32 tdes0, tdes1, tdes2, tdes3; /* Data for the card */ | ||
116 | char *tx_buf_ptr; /* Data for us */ | ||
117 | struct tx_desc *next_tx_desc; | ||
118 | } __attribute__(( aligned(32) )); | ||
119 | |||
120 | struct rx_desc { | ||
121 | u32 rdes0, rdes1, rdes2, rdes3; /* Data for the card */ | ||
122 | struct sk_buff *rx_skb_ptr; /* Data for us */ | ||
123 | struct rx_desc *next_rx_desc; | ||
124 | } __attribute__(( aligned(32) )); | ||
125 | |||
126 | struct uli526x_board_info { | ||
127 | u32 chip_id; /* Chip vendor/Device ID */ | ||
128 | struct net_device *next_dev; /* next device */ | ||
129 | struct pci_dev *pdev; /* PCI device */ | ||
130 | spinlock_t lock; | ||
131 | |||
132 | long ioaddr; /* I/O base address */ | ||
133 | u32 cr0_data; | ||
134 | u32 cr5_data; | ||
135 | u32 cr6_data; | ||
136 | u32 cr7_data; | ||
137 | u32 cr15_data; | ||
138 | |||
139 | /* pointer for memory physical address */ | ||
140 | dma_addr_t buf_pool_dma_ptr; /* Tx buffer pool memory */ | ||
141 | dma_addr_t buf_pool_dma_start; /* Tx buffer pool align dword */ | ||
142 | dma_addr_t desc_pool_dma_ptr; /* descriptor pool memory */ | ||
143 | dma_addr_t first_tx_desc_dma; | ||
144 | dma_addr_t first_rx_desc_dma; | ||
145 | |||
146 | /* descriptor pointer */ | ||
147 | unsigned char *buf_pool_ptr; /* Tx buffer pool memory */ | ||
148 | unsigned char *buf_pool_start; /* Tx buffer pool align dword */ | ||
149 | unsigned char *desc_pool_ptr; /* descriptor pool memory */ | ||
150 | struct tx_desc *first_tx_desc; | ||
151 | struct tx_desc *tx_insert_ptr; | ||
152 | struct tx_desc *tx_remove_ptr; | ||
153 | struct rx_desc *first_rx_desc; | ||
154 | struct rx_desc *rx_insert_ptr; | ||
155 | struct rx_desc *rx_ready_ptr; /* packet come pointer */ | ||
156 | unsigned long tx_packet_cnt; /* transmitted packet count */ | ||
157 | unsigned long rx_avail_cnt; /* available rx descriptor count */ | ||
158 | unsigned long interval_rx_cnt; /* rx packet count a callback time */ | ||
159 | |||
160 | u16 dbug_cnt; | ||
161 | u16 NIC_capability; /* NIC media capability */ | ||
162 | u16 PHY_reg4; /* Saved Phyxcer register 4 value */ | ||
163 | |||
164 | u8 media_mode; /* user specify media mode */ | ||
165 | u8 op_mode; /* real work media mode */ | ||
166 | u8 phy_addr; | ||
167 | u8 link_failed; /* Ever link failed */ | ||
168 | u8 wait_reset; /* Hardware failed, need to reset */ | ||
169 | struct timer_list timer; | ||
170 | |||
171 | /* System defined statistic counter */ | ||
172 | struct net_device_stats stats; | ||
173 | |||
174 | /* Driver defined statistic counter */ | ||
175 | unsigned long tx_fifo_underrun; | ||
176 | unsigned long tx_loss_carrier; | ||
177 | unsigned long tx_no_carrier; | ||
178 | unsigned long tx_late_collision; | ||
179 | unsigned long tx_excessive_collision; | ||
180 | unsigned long tx_jabber_timeout; | ||
181 | unsigned long reset_count; | ||
182 | unsigned long reset_cr8; | ||
183 | unsigned long reset_fatal; | ||
184 | unsigned long reset_TXtimeout; | ||
185 | |||
186 | /* NIC SROM data */ | ||
187 | unsigned char srom[128]; | ||
188 | u8 init; | ||
189 | }; | ||
190 | |||
191 | enum uli526x_offsets { | ||
192 | DCR0 = 0x00, DCR1 = 0x08, DCR2 = 0x10, DCR3 = 0x18, DCR4 = 0x20, | ||
193 | DCR5 = 0x28, DCR6 = 0x30, DCR7 = 0x38, DCR8 = 0x40, DCR9 = 0x48, | ||
194 | DCR10 = 0x50, DCR11 = 0x58, DCR12 = 0x60, DCR13 = 0x68, DCR14 = 0x70, | ||
195 | DCR15 = 0x78 | ||
196 | }; | ||
197 | |||
198 | enum uli526x_CR6_bits { | ||
199 | CR6_RXSC = 0x2, CR6_PBF = 0x8, CR6_PM = 0x40, CR6_PAM = 0x80, | ||
200 | CR6_FDM = 0x200, CR6_TXSC = 0x2000, CR6_STI = 0x100000, | ||
201 | CR6_SFT = 0x200000, CR6_RXA = 0x40000000, CR6_NO_PURGE = 0x20000000 | ||
202 | }; | ||
203 | |||
204 | /* Global variable declaration ----------------------------- */ | ||
205 | static int __devinitdata printed_version; | ||
206 | static char version[] __devinitdata = | ||
207 | KERN_INFO DRV_NAME ": ULi M5261/M5263 net driver, version " | ||
208 | DRV_VERSION " (" DRV_RELDATE ")\n"; | ||
209 | |||
210 | static int uli526x_debug; | ||
211 | static unsigned char uli526x_media_mode = ULI526X_AUTO; | ||
212 | static u32 uli526x_cr6_user_set; | ||
213 | |||
214 | /* For module input parameter */ | ||
215 | static int debug; | ||
216 | static u32 cr6set; | ||
217 | static unsigned char mode = 8; | ||
218 | |||
219 | /* function declaration ------------------------------------- */ | ||
220 | static int uli526x_open(struct net_device *); | ||
221 | static int uli526x_start_xmit(struct sk_buff *, struct net_device *); | ||
222 | static int uli526x_stop(struct net_device *); | ||
223 | static struct net_device_stats * uli526x_get_stats(struct net_device *); | ||
224 | static void uli526x_set_filter_mode(struct net_device *); | ||
225 | static struct ethtool_ops netdev_ethtool_ops; | ||
226 | static u16 read_srom_word(long, int); | ||
227 | static irqreturn_t uli526x_interrupt(int, void *, struct pt_regs *); | ||
228 | static void uli526x_descriptor_init(struct uli526x_board_info *, unsigned long); | ||
229 | static void allocate_rx_buffer(struct uli526x_board_info *); | ||
230 | static void update_cr6(u32, unsigned long); | ||
231 | static void send_filter_frame(struct net_device *, int); | ||
232 | static u16 phy_read(unsigned long, u8, u8, u32); | ||
233 | static u16 phy_readby_cr10(unsigned long, u8, u8); | ||
234 | static void phy_write(unsigned long, u8, u8, u16, u32); | ||
235 | static void phy_writeby_cr10(unsigned long, u8, u8, u16); | ||
236 | static void phy_write_1bit(unsigned long, u32, u32); | ||
237 | static u16 phy_read_1bit(unsigned long, u32); | ||
238 | static u8 uli526x_sense_speed(struct uli526x_board_info *); | ||
239 | static void uli526x_process_mode(struct uli526x_board_info *); | ||
240 | static void uli526x_timer(unsigned long); | ||
241 | static void uli526x_rx_packet(struct net_device *, struct uli526x_board_info *); | ||
242 | static void uli526x_free_tx_pkt(struct net_device *, struct uli526x_board_info *); | ||
243 | static void uli526x_reuse_skb(struct uli526x_board_info *, struct sk_buff *); | ||
244 | static void uli526x_dynamic_reset(struct net_device *); | ||
245 | static void uli526x_free_rxbuffer(struct uli526x_board_info *); | ||
246 | static void uli526x_init(struct net_device *); | ||
247 | static void uli526x_set_phyxcer(struct uli526x_board_info *); | ||
248 | |||
249 | /* ULI526X network board routine ---------------------------- */ | ||
250 | |||
251 | /* | ||
252 | * Search ULI526X board, allocate space and register it | ||
253 | */ | ||
254 | |||
255 | static int __devinit uli526x_init_one (struct pci_dev *pdev, | ||
256 | const struct pci_device_id *ent) | ||
257 | { | ||
258 | struct uli526x_board_info *db; /* board information structure */ | ||
259 | struct net_device *dev; | ||
260 | int i, err; | ||
261 | |||
262 | ULI526X_DBUG(0, "uli526x_init_one()", 0); | ||
263 | |||
264 | if (!printed_version++) | ||
265 | printk(version); | ||
266 | |||
267 | /* Init network device */ | ||
268 | dev = alloc_etherdev(sizeof(*db)); | ||
269 | if (dev == NULL) | ||
270 | return -ENOMEM; | ||
271 | SET_MODULE_OWNER(dev); | ||
272 | SET_NETDEV_DEV(dev, &pdev->dev); | ||
273 | |||
274 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { | ||
275 | printk(KERN_WARNING DRV_NAME ": 32-bit PCI DMA not available.\n"); | ||
276 | err = -ENODEV; | ||
277 | goto err_out_free; | ||
278 | } | ||
279 | |||
280 | /* Enable Master/IO access, Disable memory access */ | ||
281 | err = pci_enable_device(pdev); | ||
282 | if (err) | ||
283 | goto err_out_free; | ||
284 | |||
285 | if (!pci_resource_start(pdev, 0)) { | ||
286 | printk(KERN_ERR DRV_NAME ": I/O base is zero\n"); | ||
287 | err = -ENODEV; | ||
288 | goto err_out_disable; | ||
289 | } | ||
290 | |||
291 | if (pci_resource_len(pdev, 0) < (ULI526X_IO_SIZE) ) { | ||
292 | printk(KERN_ERR DRV_NAME ": Allocated I/O size too small\n"); | ||
293 | err = -ENODEV; | ||
294 | goto err_out_disable; | ||
295 | } | ||
296 | |||
297 | if (pci_request_regions(pdev, DRV_NAME)) { | ||
298 | printk(KERN_ERR DRV_NAME ": Failed to request PCI regions\n"); | ||
299 | err = -ENODEV; | ||
300 | goto err_out_disable; | ||
301 | } | ||
302 | |||
303 | /* Init system & device */ | ||
304 | db = netdev_priv(dev); | ||
305 | |||
306 | /* Allocate Tx/Rx descriptor memory */ | ||
307 | db->desc_pool_ptr = pci_alloc_consistent(pdev, sizeof(struct tx_desc) * DESC_ALL_CNT + 0x20, &db->desc_pool_dma_ptr); | ||
308 | if(db->desc_pool_ptr == NULL) | ||
309 | { | ||
310 | err = -ENOMEM; | ||
311 | goto err_out_nomem; | ||
312 | } | ||
313 | db->buf_pool_ptr = pci_alloc_consistent(pdev, TX_BUF_ALLOC * TX_DESC_CNT + 4, &db->buf_pool_dma_ptr); | ||
314 | if(db->buf_pool_ptr == NULL) | ||
315 | { | ||
316 | err = -ENOMEM; | ||
317 | goto err_out_nomem; | ||
318 | } | ||
319 | |||
320 | db->first_tx_desc = (struct tx_desc *) db->desc_pool_ptr; | ||
321 | db->first_tx_desc_dma = db->desc_pool_dma_ptr; | ||
322 | db->buf_pool_start = db->buf_pool_ptr; | ||
323 | db->buf_pool_dma_start = db->buf_pool_dma_ptr; | ||
324 | |||
325 | db->chip_id = ent->driver_data; | ||
326 | db->ioaddr = pci_resource_start(pdev, 0); | ||
327 | |||
328 | db->pdev = pdev; | ||
329 | db->init = 1; | ||
330 | |||
331 | dev->base_addr = db->ioaddr; | ||
332 | dev->irq = pdev->irq; | ||
333 | pci_set_drvdata(pdev, dev); | ||
334 | |||
335 | /* Register some necessary functions */ | ||
336 | dev->open = &uli526x_open; | ||
337 | dev->hard_start_xmit = &uli526x_start_xmit; | ||
338 | dev->stop = &uli526x_stop; | ||
339 | dev->get_stats = &uli526x_get_stats; | ||
340 | dev->set_multicast_list = &uli526x_set_filter_mode; | ||
341 | dev->ethtool_ops = &netdev_ethtool_ops; | ||
342 | spin_lock_init(&db->lock); | ||
343 | |||
344 | |||
345 | /* read 64 word srom data */ | ||
346 | for (i = 0; i < 64; i++) | ||
347 | ((u16 *) db->srom)[i] = cpu_to_le16(read_srom_word(db->ioaddr, i)); | ||
348 | |||
349 | /* Set Node address */ | ||
350 | if(((u16 *) db->srom)[0] == 0xffff || ((u16 *) db->srom)[0] == 0) /* SROM absent, so read MAC address from ID Table */ | ||
351 | { | ||
352 | outl(0x10000, db->ioaddr + DCR0); //Diagnosis mode | ||
353 | outl(0x1c0, db->ioaddr + DCR13); //Reset dianostic pointer port | ||
354 | outl(0, db->ioaddr + DCR14); //Clear reset port | ||
355 | outl(0x10, db->ioaddr + DCR14); //Reset ID Table pointer | ||
356 | outl(0, db->ioaddr + DCR14); //Clear reset port | ||
357 | outl(0, db->ioaddr + DCR13); //Clear CR13 | ||
358 | outl(0x1b0, db->ioaddr + DCR13); //Select ID Table access port | ||
359 | //Read MAC address from CR14 | ||
360 | for (i = 0; i < 6; i++) | ||
361 | dev->dev_addr[i] = inl(db->ioaddr + DCR14); | ||
362 | //Read end | ||
363 | outl(0, db->ioaddr + DCR13); //Clear CR13 | ||
364 | outl(0, db->ioaddr + DCR0); //Clear CR0 | ||
365 | udelay(10); | ||
366 | } | ||
367 | else /*Exist SROM*/ | ||
368 | { | ||
369 | for (i = 0; i < 6; i++) | ||
370 | dev->dev_addr[i] = db->srom[20 + i]; | ||
371 | } | ||
372 | err = register_netdev (dev); | ||
373 | if (err) | ||
374 | goto err_out_res; | ||
375 | |||
376 | printk(KERN_INFO "%s: ULi M%04lx at pci%s,",dev->name,ent->driver_data >> 16,pci_name(pdev)); | ||
377 | |||
378 | for (i = 0; i < 6; i++) | ||
379 | printk("%c%02x", i ? ':' : ' ', dev->dev_addr[i]); | ||
380 | printk(", irq %d.\n", dev->irq); | ||
381 | |||
382 | pci_set_master(pdev); | ||
383 | |||
384 | return 0; | ||
385 | |||
386 | err_out_res: | ||
387 | pci_release_regions(pdev); | ||
388 | err_out_nomem: | ||
389 | if(db->desc_pool_ptr) | ||
390 | pci_free_consistent(pdev, sizeof(struct tx_desc) * DESC_ALL_CNT + 0x20, | ||
391 | db->desc_pool_ptr, db->desc_pool_dma_ptr); | ||
392 | |||
393 | if(db->buf_pool_ptr != NULL) | ||
394 | pci_free_consistent(pdev, TX_BUF_ALLOC * TX_DESC_CNT + 4, | ||
395 | db->buf_pool_ptr, db->buf_pool_dma_ptr); | ||
396 | err_out_disable: | ||
397 | pci_disable_device(pdev); | ||
398 | err_out_free: | ||
399 | pci_set_drvdata(pdev, NULL); | ||
400 | free_netdev(dev); | ||
401 | |||
402 | return err; | ||
403 | } | ||
404 | |||
405 | |||
406 | static void __devexit uli526x_remove_one (struct pci_dev *pdev) | ||
407 | { | ||
408 | struct net_device *dev = pci_get_drvdata(pdev); | ||
409 | struct uli526x_board_info *db = netdev_priv(dev); | ||
410 | |||
411 | ULI526X_DBUG(0, "uli526x_remove_one()", 0); | ||
412 | |||
413 | pci_free_consistent(db->pdev, sizeof(struct tx_desc) * | ||
414 | DESC_ALL_CNT + 0x20, db->desc_pool_ptr, | ||
415 | db->desc_pool_dma_ptr); | ||
416 | pci_free_consistent(db->pdev, TX_BUF_ALLOC * TX_DESC_CNT + 4, | ||
417 | db->buf_pool_ptr, db->buf_pool_dma_ptr); | ||
418 | unregister_netdev(dev); | ||
419 | pci_release_regions(pdev); | ||
420 | free_netdev(dev); /* free board information */ | ||
421 | pci_set_drvdata(pdev, NULL); | ||
422 | pci_disable_device(pdev); | ||
423 | ULI526X_DBUG(0, "uli526x_remove_one() exit", 0); | ||
424 | } | ||
425 | |||
426 | |||
427 | /* | ||
428 | * Open the interface. | ||
429 | * The interface is opened whenever "ifconfig" activates it. | ||
430 | */ | ||
431 | |||
432 | static int uli526x_open(struct net_device *dev) | ||
433 | { | ||
434 | int ret; | ||
435 | struct uli526x_board_info *db = netdev_priv(dev); | ||
436 | |||
437 | ULI526X_DBUG(0, "uli526x_open", 0); | ||
438 | |||
439 | ret = request_irq(dev->irq, &uli526x_interrupt, SA_SHIRQ, dev->name, dev); | ||
440 | if (ret) | ||
441 | return ret; | ||
442 | |||
443 | /* system variable init */ | ||
444 | db->cr6_data = CR6_DEFAULT | uli526x_cr6_user_set; | ||
445 | db->tx_packet_cnt = 0; | ||
446 | db->rx_avail_cnt = 0; | ||
447 | db->link_failed = 1; | ||
448 | netif_carrier_off(dev); | ||
449 | db->wait_reset = 0; | ||
450 | |||
451 | db->NIC_capability = 0xf; /* All capability*/ | ||
452 | db->PHY_reg4 = 0x1e0; | ||
453 | |||
454 | /* CR6 operation mode decision */ | ||
455 | db->cr6_data |= ULI526X_TXTH_256; | ||
456 | db->cr0_data = CR0_DEFAULT; | ||
457 | |||
458 | /* Initialize ULI526X board */ | ||
459 | uli526x_init(dev); | ||
460 | |||
461 | /* Active System Interface */ | ||
462 | netif_wake_queue(dev); | ||
463 | |||
464 | /* set and active a timer process */ | ||
465 | init_timer(&db->timer); | ||
466 | db->timer.expires = ULI526X_TIMER_WUT + HZ * 2; | ||
467 | db->timer.data = (unsigned long)dev; | ||
468 | db->timer.function = &uli526x_timer; | ||
469 | add_timer(&db->timer); | ||
470 | |||
471 | return 0; | ||
472 | } | ||
473 | |||
474 | |||
475 | /* Initialize ULI526X board | ||
476 | * Reset ULI526X board | ||
477 | * Initialize TX/Rx descriptor chain structure | ||
478 | * Send the set-up frame | ||
479 | * Enable Tx/Rx machine | ||
480 | */ | ||
481 | |||
482 | static void uli526x_init(struct net_device *dev) | ||
483 | { | ||
484 | struct uli526x_board_info *db = netdev_priv(dev); | ||
485 | unsigned long ioaddr = db->ioaddr; | ||
486 | u8 phy_tmp; | ||
487 | u16 phy_value; | ||
488 | u16 phy_reg_reset; | ||
489 | |||
490 | ULI526X_DBUG(0, "uli526x_init()", 0); | ||
491 | |||
492 | /* Reset M526x MAC controller */ | ||
493 | outl(ULI526X_RESET, ioaddr + DCR0); /* RESET MAC */ | ||
494 | udelay(100); | ||
495 | outl(db->cr0_data, ioaddr + DCR0); | ||
496 | udelay(5); | ||
497 | |||
498 | /* Phy addr : In some boards,M5261/M5263 phy address != 1 */ | ||
499 | db->phy_addr = 1; | ||
500 | for(phy_tmp=0;phy_tmp<32;phy_tmp++) | ||
501 | { | ||
502 | phy_value=phy_read(db->ioaddr,phy_tmp,3,db->chip_id);//peer add | ||
503 | if(phy_value != 0xffff&&phy_value!=0) | ||
504 | { | ||
505 | db->phy_addr = phy_tmp; | ||
506 | break; | ||
507 | } | ||
508 | } | ||
509 | if(phy_tmp == 32) | ||
510 | printk(KERN_WARNING "Can not find the phy address!!!"); | ||
511 | /* Parser SROM and media mode */ | ||
512 | db->media_mode = uli526x_media_mode; | ||
513 | |||
514 | /* Phyxcer capability setting */ | ||
515 | phy_reg_reset = phy_read(db->ioaddr, db->phy_addr, 0, db->chip_id); | ||
516 | phy_reg_reset = (phy_reg_reset | 0x8000); | ||
517 | phy_write(db->ioaddr, db->phy_addr, 0, phy_reg_reset, db->chip_id); | ||
518 | udelay(500); | ||
519 | |||
520 | /* Process Phyxcer Media Mode */ | ||
521 | uli526x_set_phyxcer(db); | ||
522 | |||
523 | /* Media Mode Process */ | ||
524 | if ( !(db->media_mode & ULI526X_AUTO) ) | ||
525 | db->op_mode = db->media_mode; /* Force Mode */ | ||
526 | |||
527 | /* Initialize Transmit/Receive decriptor and CR3/4 */ | ||
528 | uli526x_descriptor_init(db, ioaddr); | ||
529 | |||
530 | /* Init CR6 to program M526X operation */ | ||
531 | update_cr6(db->cr6_data, ioaddr); | ||
532 | |||
533 | /* Send setup frame */ | ||
534 | send_filter_frame(dev, dev->mc_count); /* M5261/M5263 */ | ||
535 | |||
536 | /* Init CR7, interrupt active bit */ | ||
537 | db->cr7_data = CR7_DEFAULT; | ||
538 | outl(db->cr7_data, ioaddr + DCR7); | ||
539 | |||
540 | /* Init CR15, Tx jabber and Rx watchdog timer */ | ||
541 | outl(db->cr15_data, ioaddr + DCR15); | ||
542 | |||
543 | /* Enable ULI526X Tx/Rx function */ | ||
544 | db->cr6_data |= CR6_RXSC | CR6_TXSC; | ||
545 | update_cr6(db->cr6_data, ioaddr); | ||
546 | } | ||
547 | |||
548 | |||
549 | /* | ||
550 | * Hardware start transmission. | ||
551 | * Send a packet to media from the upper layer. | ||
552 | */ | ||
553 | |||
554 | static int uli526x_start_xmit(struct sk_buff *skb, struct net_device *dev) | ||
555 | { | ||
556 | struct uli526x_board_info *db = netdev_priv(dev); | ||
557 | struct tx_desc *txptr; | ||
558 | unsigned long flags; | ||
559 | |||
560 | ULI526X_DBUG(0, "uli526x_start_xmit", 0); | ||
561 | |||
562 | /* Resource flag check */ | ||
563 | netif_stop_queue(dev); | ||
564 | |||
565 | /* Too large packet check */ | ||
566 | if (skb->len > MAX_PACKET_SIZE) { | ||
567 | printk(KERN_ERR DRV_NAME ": big packet = %d\n", (u16)skb->len); | ||
568 | dev_kfree_skb(skb); | ||
569 | return 0; | ||
570 | } | ||
571 | |||
572 | spin_lock_irqsave(&db->lock, flags); | ||
573 | |||
574 | /* No Tx resource check, it never happen nromally */ | ||
575 | if (db->tx_packet_cnt >= TX_FREE_DESC_CNT) { | ||
576 | spin_unlock_irqrestore(&db->lock, flags); | ||
577 | printk(KERN_ERR DRV_NAME ": No Tx resource %ld\n", db->tx_packet_cnt); | ||
578 | return 1; | ||
579 | } | ||
580 | |||
581 | /* Disable NIC interrupt */ | ||
582 | outl(0, dev->base_addr + DCR7); | ||
583 | |||
584 | /* transmit this packet */ | ||
585 | txptr = db->tx_insert_ptr; | ||
586 | memcpy(txptr->tx_buf_ptr, skb->data, skb->len); | ||
587 | txptr->tdes1 = cpu_to_le32(0xe1000000 | skb->len); | ||
588 | |||
589 | /* Point to next transmit free descriptor */ | ||
590 | db->tx_insert_ptr = txptr->next_tx_desc; | ||
591 | |||
592 | /* Transmit Packet Process */ | ||
593 | if ( (db->tx_packet_cnt < TX_DESC_CNT) ) { | ||
594 | txptr->tdes0 = cpu_to_le32(0x80000000); /* Set owner bit */ | ||
595 | db->tx_packet_cnt++; /* Ready to send */ | ||
596 | outl(0x1, dev->base_addr + DCR1); /* Issue Tx polling */ | ||
597 | dev->trans_start = jiffies; /* saved time stamp */ | ||
598 | } | ||
599 | |||
600 | /* Tx resource check */ | ||
601 | if ( db->tx_packet_cnt < TX_FREE_DESC_CNT ) | ||
602 | netif_wake_queue(dev); | ||
603 | |||
604 | /* Restore CR7 to enable interrupt */ | ||
605 | spin_unlock_irqrestore(&db->lock, flags); | ||
606 | outl(db->cr7_data, dev->base_addr + DCR7); | ||
607 | |||
608 | /* free this SKB */ | ||
609 | dev_kfree_skb(skb); | ||
610 | |||
611 | return 0; | ||
612 | } | ||
613 | |||
614 | |||
615 | /* | ||
616 | * Stop the interface. | ||
617 | * The interface is stopped when it is brought. | ||
618 | */ | ||
619 | |||
620 | static int uli526x_stop(struct net_device *dev) | ||
621 | { | ||
622 | struct uli526x_board_info *db = netdev_priv(dev); | ||
623 | unsigned long ioaddr = dev->base_addr; | ||
624 | |||
625 | ULI526X_DBUG(0, "uli526x_stop", 0); | ||
626 | |||
627 | /* disable system */ | ||
628 | netif_stop_queue(dev); | ||
629 | |||
630 | /* deleted timer */ | ||
631 | del_timer_sync(&db->timer); | ||
632 | |||
633 | /* Reset & stop ULI526X board */ | ||
634 | outl(ULI526X_RESET, ioaddr + DCR0); | ||
635 | udelay(5); | ||
636 | phy_write(db->ioaddr, db->phy_addr, 0, 0x8000, db->chip_id); | ||
637 | |||
638 | /* free interrupt */ | ||
639 | free_irq(dev->irq, dev); | ||
640 | |||
641 | /* free allocated rx buffer */ | ||
642 | uli526x_free_rxbuffer(db); | ||
643 | |||
644 | #if 0 | ||
645 | /* show statistic counter */ | ||
646 | printk(DRV_NAME ": FU:%lx EC:%lx LC:%lx NC:%lx LOC:%lx TXJT:%lx RESET:%lx RCR8:%lx FAL:%lx TT:%lx\n", | ||
647 | db->tx_fifo_underrun, db->tx_excessive_collision, | ||
648 | db->tx_late_collision, db->tx_no_carrier, db->tx_loss_carrier, | ||
649 | db->tx_jabber_timeout, db->reset_count, db->reset_cr8, | ||
650 | db->reset_fatal, db->reset_TXtimeout); | ||
651 | #endif | ||
652 | |||
653 | return 0; | ||
654 | } | ||
655 | |||
656 | |||
657 | /* | ||
658 | * M5261/M5263 insterrupt handler | ||
659 | * receive the packet to upper layer, free the transmitted packet | ||
660 | */ | ||
661 | |||
662 | static irqreturn_t uli526x_interrupt(int irq, void *dev_id, struct pt_regs *regs) | ||
663 | { | ||
664 | struct net_device *dev = dev_id; | ||
665 | struct uli526x_board_info *db = netdev_priv(dev); | ||
666 | unsigned long ioaddr = dev->base_addr; | ||
667 | unsigned long flags; | ||
668 | |||
669 | if (!dev) { | ||
670 | ULI526X_DBUG(1, "uli526x_interrupt() without DEVICE arg", 0); | ||
671 | return IRQ_NONE; | ||
672 | } | ||
673 | |||
674 | spin_lock_irqsave(&db->lock, flags); | ||
675 | outl(0, ioaddr + DCR7); | ||
676 | |||
677 | /* Got ULI526X status */ | ||
678 | db->cr5_data = inl(ioaddr + DCR5); | ||
679 | outl(db->cr5_data, ioaddr + DCR5); | ||
680 | if ( !(db->cr5_data & 0x180c1) ) { | ||
681 | spin_unlock_irqrestore(&db->lock, flags); | ||
682 | outl(db->cr7_data, ioaddr + DCR7); | ||
683 | return IRQ_HANDLED; | ||
684 | } | ||
685 | |||
686 | /* Check system status */ | ||
687 | if (db->cr5_data & 0x2000) { | ||
688 | /* system bus error happen */ | ||
689 | ULI526X_DBUG(1, "System bus error happen. CR5=", db->cr5_data); | ||
690 | db->reset_fatal++; | ||
691 | db->wait_reset = 1; /* Need to RESET */ | ||
692 | spin_unlock_irqrestore(&db->lock, flags); | ||
693 | return IRQ_HANDLED; | ||
694 | } | ||
695 | |||
696 | /* Received the coming packet */ | ||
697 | if ( (db->cr5_data & 0x40) && db->rx_avail_cnt ) | ||
698 | uli526x_rx_packet(dev, db); | ||
699 | |||
700 | /* reallocate rx descriptor buffer */ | ||
701 | if (db->rx_avail_cnt<RX_DESC_CNT) | ||
702 | allocate_rx_buffer(db); | ||
703 | |||
704 | /* Free the transmitted descriptor */ | ||
705 | if ( db->cr5_data & 0x01) | ||
706 | uli526x_free_tx_pkt(dev, db); | ||
707 | |||
708 | /* Restore CR7 to enable interrupt mask */ | ||
709 | outl(db->cr7_data, ioaddr + DCR7); | ||
710 | |||
711 | spin_unlock_irqrestore(&db->lock, flags); | ||
712 | return IRQ_HANDLED; | ||
713 | } | ||
714 | |||
715 | |||
716 | /* | ||
717 | * Free TX resource after TX complete | ||
718 | */ | ||
719 | |||
720 | static void uli526x_free_tx_pkt(struct net_device *dev, struct uli526x_board_info * db) | ||
721 | { | ||
722 | struct tx_desc *txptr; | ||
723 | u32 tdes0; | ||
724 | |||
725 | txptr = db->tx_remove_ptr; | ||
726 | while(db->tx_packet_cnt) { | ||
727 | tdes0 = le32_to_cpu(txptr->tdes0); | ||
728 | /* printk(DRV_NAME ": tdes0=%x\n", tdes0); */ | ||
729 | if (tdes0 & 0x80000000) | ||
730 | break; | ||
731 | |||
732 | /* A packet sent completed */ | ||
733 | db->tx_packet_cnt--; | ||
734 | db->stats.tx_packets++; | ||
735 | |||
736 | /* Transmit statistic counter */ | ||
737 | if ( tdes0 != 0x7fffffff ) { | ||
738 | /* printk(DRV_NAME ": tdes0=%x\n", tdes0); */ | ||
739 | db->stats.collisions += (tdes0 >> 3) & 0xf; | ||
740 | db->stats.tx_bytes += le32_to_cpu(txptr->tdes1) & 0x7ff; | ||
741 | if (tdes0 & TDES0_ERR_MASK) { | ||
742 | db->stats.tx_errors++; | ||
743 | if (tdes0 & 0x0002) { /* UnderRun */ | ||
744 | db->tx_fifo_underrun++; | ||
745 | if ( !(db->cr6_data & CR6_SFT) ) { | ||
746 | db->cr6_data = db->cr6_data | CR6_SFT; | ||
747 | update_cr6(db->cr6_data, db->ioaddr); | ||
748 | } | ||
749 | } | ||
750 | if (tdes0 & 0x0100) | ||
751 | db->tx_excessive_collision++; | ||
752 | if (tdes0 & 0x0200) | ||
753 | db->tx_late_collision++; | ||
754 | if (tdes0 & 0x0400) | ||
755 | db->tx_no_carrier++; | ||
756 | if (tdes0 & 0x0800) | ||
757 | db->tx_loss_carrier++; | ||
758 | if (tdes0 & 0x4000) | ||
759 | db->tx_jabber_timeout++; | ||
760 | } | ||
761 | } | ||
762 | |||
763 | txptr = txptr->next_tx_desc; | ||
764 | }/* End of while */ | ||
765 | |||
766 | /* Update TX remove pointer to next */ | ||
767 | db->tx_remove_ptr = txptr; | ||
768 | |||
769 | /* Resource available check */ | ||
770 | if ( db->tx_packet_cnt < TX_WAKE_DESC_CNT ) | ||
771 | netif_wake_queue(dev); /* Active upper layer, send again */ | ||
772 | } | ||
773 | |||
774 | |||
775 | /* | ||
776 | * Receive the come packet and pass to upper layer | ||
777 | */ | ||
778 | |||
779 | static void uli526x_rx_packet(struct net_device *dev, struct uli526x_board_info * db) | ||
780 | { | ||
781 | struct rx_desc *rxptr; | ||
782 | struct sk_buff *skb; | ||
783 | int rxlen; | ||
784 | u32 rdes0; | ||
785 | |||
786 | rxptr = db->rx_ready_ptr; | ||
787 | |||
788 | while(db->rx_avail_cnt) { | ||
789 | rdes0 = le32_to_cpu(rxptr->rdes0); | ||
790 | if (rdes0 & 0x80000000) /* packet owner check */ | ||
791 | { | ||
792 | break; | ||
793 | } | ||
794 | |||
795 | db->rx_avail_cnt--; | ||
796 | db->interval_rx_cnt++; | ||
797 | |||
798 | pci_unmap_single(db->pdev, le32_to_cpu(rxptr->rdes2), RX_ALLOC_SIZE, PCI_DMA_FROMDEVICE); | ||
799 | if ( (rdes0 & 0x300) != 0x300) { | ||
800 | /* A packet without First/Last flag */ | ||
801 | /* reuse this SKB */ | ||
802 | ULI526X_DBUG(0, "Reuse SK buffer, rdes0", rdes0); | ||
803 | uli526x_reuse_skb(db, rxptr->rx_skb_ptr); | ||
804 | } else { | ||
805 | /* A packet with First/Last flag */ | ||
806 | rxlen = ( (rdes0 >> 16) & 0x3fff) - 4; | ||
807 | |||
808 | /* error summary bit check */ | ||
809 | if (rdes0 & 0x8000) { | ||
810 | /* This is a error packet */ | ||
811 | //printk(DRV_NAME ": rdes0: %lx\n", rdes0); | ||
812 | db->stats.rx_errors++; | ||
813 | if (rdes0 & 1) | ||
814 | db->stats.rx_fifo_errors++; | ||
815 | if (rdes0 & 2) | ||
816 | db->stats.rx_crc_errors++; | ||
817 | if (rdes0 & 0x80) | ||
818 | db->stats.rx_length_errors++; | ||
819 | } | ||
820 | |||
821 | if ( !(rdes0 & 0x8000) || | ||
822 | ((db->cr6_data & CR6_PM) && (rxlen>6)) ) { | ||
823 | skb = rxptr->rx_skb_ptr; | ||
824 | |||
825 | /* Good packet, send to upper layer */ | ||
826 | /* Shorst packet used new SKB */ | ||
827 | if ( (rxlen < RX_COPY_SIZE) && | ||
828 | ( (skb = dev_alloc_skb(rxlen + 2) ) | ||
829 | != NULL) ) { | ||
830 | /* size less than COPY_SIZE, allocate a rxlen SKB */ | ||
831 | skb->dev = dev; | ||
832 | skb_reserve(skb, 2); /* 16byte align */ | ||
833 | memcpy(skb_put(skb, rxlen), rxptr->rx_skb_ptr->tail, rxlen); | ||
834 | uli526x_reuse_skb(db, rxptr->rx_skb_ptr); | ||
835 | } else { | ||
836 | skb->dev = dev; | ||
837 | skb_put(skb, rxlen); | ||
838 | } | ||
839 | skb->protocol = eth_type_trans(skb, dev); | ||
840 | netif_rx(skb); | ||
841 | dev->last_rx = jiffies; | ||
842 | db->stats.rx_packets++; | ||
843 | db->stats.rx_bytes += rxlen; | ||
844 | |||
845 | } else { | ||
846 | /* Reuse SKB buffer when the packet is error */ | ||
847 | ULI526X_DBUG(0, "Reuse SK buffer, rdes0", rdes0); | ||
848 | uli526x_reuse_skb(db, rxptr->rx_skb_ptr); | ||
849 | } | ||
850 | } | ||
851 | |||
852 | rxptr = rxptr->next_rx_desc; | ||
853 | } | ||
854 | |||
855 | db->rx_ready_ptr = rxptr; | ||
856 | } | ||
857 | |||
858 | |||
859 | /* | ||
860 | * Get statistics from driver. | ||
861 | */ | ||
862 | |||
863 | static struct net_device_stats * uli526x_get_stats(struct net_device *dev) | ||
864 | { | ||
865 | struct uli526x_board_info *db = netdev_priv(dev); | ||
866 | |||
867 | ULI526X_DBUG(0, "uli526x_get_stats", 0); | ||
868 | return &db->stats; | ||
869 | } | ||
870 | |||
871 | |||
872 | /* | ||
873 | * Set ULI526X multicast address | ||
874 | */ | ||
875 | |||
876 | static void uli526x_set_filter_mode(struct net_device * dev) | ||
877 | { | ||
878 | struct uli526x_board_info *db = dev->priv; | ||
879 | unsigned long flags; | ||
880 | |||
881 | ULI526X_DBUG(0, "uli526x_set_filter_mode()", 0); | ||
882 | spin_lock_irqsave(&db->lock, flags); | ||
883 | |||
884 | if (dev->flags & IFF_PROMISC) { | ||
885 | ULI526X_DBUG(0, "Enable PROM Mode", 0); | ||
886 | db->cr6_data |= CR6_PM | CR6_PBF; | ||
887 | update_cr6(db->cr6_data, db->ioaddr); | ||
888 | spin_unlock_irqrestore(&db->lock, flags); | ||
889 | return; | ||
890 | } | ||
891 | |||
892 | if (dev->flags & IFF_ALLMULTI || dev->mc_count > ULI5261_MAX_MULTICAST) { | ||
893 | ULI526X_DBUG(0, "Pass all multicast address", dev->mc_count); | ||
894 | db->cr6_data &= ~(CR6_PM | CR6_PBF); | ||
895 | db->cr6_data |= CR6_PAM; | ||
896 | spin_unlock_irqrestore(&db->lock, flags); | ||
897 | return; | ||
898 | } | ||
899 | |||
900 | ULI526X_DBUG(0, "Set multicast address", dev->mc_count); | ||
901 | send_filter_frame(dev, dev->mc_count); /* M5261/M5263 */ | ||
902 | spin_unlock_irqrestore(&db->lock, flags); | ||
903 | } | ||
904 | |||
905 | static void | ||
906 | ULi_ethtool_gset(struct uli526x_board_info *db, struct ethtool_cmd *ecmd) | ||
907 | { | ||
908 | ecmd->supported = (SUPPORTED_10baseT_Half | | ||
909 | SUPPORTED_10baseT_Full | | ||
910 | SUPPORTED_100baseT_Half | | ||
911 | SUPPORTED_100baseT_Full | | ||
912 | SUPPORTED_Autoneg | | ||
913 | SUPPORTED_MII); | ||
914 | |||
915 | ecmd->advertising = (ADVERTISED_10baseT_Half | | ||
916 | ADVERTISED_10baseT_Full | | ||
917 | ADVERTISED_100baseT_Half | | ||
918 | ADVERTISED_100baseT_Full | | ||
919 | ADVERTISED_Autoneg | | ||
920 | ADVERTISED_MII); | ||
921 | |||
922 | |||
923 | ecmd->port = PORT_MII; | ||
924 | ecmd->phy_address = db->phy_addr; | ||
925 | |||
926 | ecmd->transceiver = XCVR_EXTERNAL; | ||
927 | |||
928 | ecmd->speed = 10; | ||
929 | ecmd->duplex = DUPLEX_HALF; | ||
930 | |||
931 | if(db->op_mode==ULI526X_100MHF || db->op_mode==ULI526X_100MFD) | ||
932 | { | ||
933 | ecmd->speed = 100; | ||
934 | } | ||
935 | if(db->op_mode==ULI526X_10MFD || db->op_mode==ULI526X_100MFD) | ||
936 | { | ||
937 | ecmd->duplex = DUPLEX_FULL; | ||
938 | } | ||
939 | if(db->link_failed) | ||
940 | { | ||
941 | ecmd->speed = -1; | ||
942 | ecmd->duplex = -1; | ||
943 | } | ||
944 | |||
945 | if (db->media_mode & ULI526X_AUTO) | ||
946 | { | ||
947 | ecmd->autoneg = AUTONEG_ENABLE; | ||
948 | } | ||
949 | } | ||
950 | |||
951 | static void netdev_get_drvinfo(struct net_device *dev, | ||
952 | struct ethtool_drvinfo *info) | ||
953 | { | ||
954 | struct uli526x_board_info *np = netdev_priv(dev); | ||
955 | |||
956 | strcpy(info->driver, DRV_NAME); | ||
957 | strcpy(info->version, DRV_VERSION); | ||
958 | if (np->pdev) | ||
959 | strcpy(info->bus_info, pci_name(np->pdev)); | ||
960 | else | ||
961 | sprintf(info->bus_info, "EISA 0x%lx %d", | ||
962 | dev->base_addr, dev->irq); | ||
963 | } | ||
964 | |||
965 | static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) { | ||
966 | struct uli526x_board_info *np = netdev_priv(dev); | ||
967 | |||
968 | ULi_ethtool_gset(np, cmd); | ||
969 | |||
970 | return 0; | ||
971 | } | ||
972 | |||
973 | static u32 netdev_get_link(struct net_device *dev) { | ||
974 | struct uli526x_board_info *np = netdev_priv(dev); | ||
975 | |||
976 | if(np->link_failed) | ||
977 | return 0; | ||
978 | else | ||
979 | return 1; | ||
980 | } | ||
981 | |||
982 | static void uli526x_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) | ||
983 | { | ||
984 | wol->supported = WAKE_PHY | WAKE_MAGIC; | ||
985 | wol->wolopts = 0; | ||
986 | } | ||
987 | |||
988 | static struct ethtool_ops netdev_ethtool_ops = { | ||
989 | .get_drvinfo = netdev_get_drvinfo, | ||
990 | .get_settings = netdev_get_settings, | ||
991 | .get_link = netdev_get_link, | ||
992 | .get_wol = uli526x_get_wol, | ||
993 | }; | ||
994 | |||
995 | /* | ||
996 | * A periodic timer routine | ||
997 | * Dynamic media sense, allocate Rx buffer... | ||
998 | */ | ||
999 | |||
1000 | static void uli526x_timer(unsigned long data) | ||
1001 | { | ||
1002 | u32 tmp_cr8; | ||
1003 | unsigned char tmp_cr12=0; | ||
1004 | struct net_device *dev = (struct net_device *) data; | ||
1005 | struct uli526x_board_info *db = netdev_priv(dev); | ||
1006 | unsigned long flags; | ||
1007 | u8 TmpSpeed=10; | ||
1008 | |||
1009 | //ULI526X_DBUG(0, "uli526x_timer()", 0); | ||
1010 | spin_lock_irqsave(&db->lock, flags); | ||
1011 | |||
1012 | |||
1013 | /* Dynamic reset ULI526X : system error or transmit time-out */ | ||
1014 | tmp_cr8 = inl(db->ioaddr + DCR8); | ||
1015 | if ( (db->interval_rx_cnt==0) && (tmp_cr8) ) { | ||
1016 | db->reset_cr8++; | ||
1017 | db->wait_reset = 1; | ||
1018 | } | ||
1019 | db->interval_rx_cnt = 0; | ||
1020 | |||
1021 | /* TX polling kick monitor */ | ||
1022 | if ( db->tx_packet_cnt && | ||
1023 | time_after(jiffies, dev->trans_start + ULI526X_TX_KICK) ) { | ||
1024 | outl(0x1, dev->base_addr + DCR1); // Tx polling again | ||
1025 | |||
1026 | // TX Timeout | ||
1027 | if ( time_after(jiffies, dev->trans_start + ULI526X_TX_TIMEOUT) ) { | ||
1028 | db->reset_TXtimeout++; | ||
1029 | db->wait_reset = 1; | ||
1030 | printk( "%s: Tx timeout - resetting\n", | ||
1031 | dev->name); | ||
1032 | } | ||
1033 | } | ||
1034 | |||
1035 | if (db->wait_reset) { | ||
1036 | ULI526X_DBUG(0, "Dynamic Reset device", db->tx_packet_cnt); | ||
1037 | db->reset_count++; | ||
1038 | uli526x_dynamic_reset(dev); | ||
1039 | db->timer.expires = ULI526X_TIMER_WUT; | ||
1040 | add_timer(&db->timer); | ||
1041 | spin_unlock_irqrestore(&db->lock, flags); | ||
1042 | return; | ||
1043 | } | ||
1044 | |||
1045 | /* Link status check, Dynamic media type change */ | ||
1046 | if((phy_read(db->ioaddr, db->phy_addr, 5, db->chip_id) & 0x01e0)!=0) | ||
1047 | tmp_cr12 = 3; | ||
1048 | |||
1049 | if ( !(tmp_cr12 & 0x3) && !db->link_failed ) { | ||
1050 | /* Link Failed */ | ||
1051 | ULI526X_DBUG(0, "Link Failed", tmp_cr12); | ||
1052 | netif_carrier_off(dev); | ||
1053 | printk(KERN_INFO "uli526x: %s NIC Link is Down\n",dev->name); | ||
1054 | db->link_failed = 1; | ||
1055 | |||
1056 | /* For Force 10/100M Half/Full mode: Enable Auto-Nego mode */ | ||
1057 | /* AUTO don't need */ | ||
1058 | if ( !(db->media_mode & 0x8) ) | ||
1059 | phy_write(db->ioaddr, db->phy_addr, 0, 0x1000, db->chip_id); | ||
1060 | |||
1061 | /* AUTO mode, if INT phyxcer link failed, select EXT device */ | ||
1062 | if (db->media_mode & ULI526X_AUTO) { | ||
1063 | db->cr6_data&=~0x00000200; /* bit9=0, HD mode */ | ||
1064 | update_cr6(db->cr6_data, db->ioaddr); | ||
1065 | } | ||
1066 | } else | ||
1067 | if ((tmp_cr12 & 0x3) && db->link_failed) { | ||
1068 | ULI526X_DBUG(0, "Link link OK", tmp_cr12); | ||
1069 | db->link_failed = 0; | ||
1070 | |||
1071 | /* Auto Sense Speed */ | ||
1072 | if ( (db->media_mode & ULI526X_AUTO) && | ||
1073 | uli526x_sense_speed(db) ) | ||
1074 | db->link_failed = 1; | ||
1075 | uli526x_process_mode(db); | ||
1076 | |||
1077 | if(db->link_failed==0) | ||
1078 | { | ||
1079 | if(db->op_mode==ULI526X_100MHF || db->op_mode==ULI526X_100MFD) | ||
1080 | { | ||
1081 | TmpSpeed = 100; | ||
1082 | } | ||
1083 | if(db->op_mode==ULI526X_10MFD || db->op_mode==ULI526X_100MFD) | ||
1084 | { | ||
1085 | printk(KERN_INFO "uli526x: %s NIC Link is Up %d Mbps Full duplex\n",dev->name,TmpSpeed); | ||
1086 | } | ||
1087 | else | ||
1088 | { | ||
1089 | printk(KERN_INFO "uli526x: %s NIC Link is Up %d Mbps Half duplex\n",dev->name,TmpSpeed); | ||
1090 | } | ||
1091 | netif_carrier_on(dev); | ||
1092 | } | ||
1093 | /* SHOW_MEDIA_TYPE(db->op_mode); */ | ||
1094 | } | ||
1095 | else if(!(tmp_cr12 & 0x3) && db->link_failed) | ||
1096 | { | ||
1097 | if(db->init==1) | ||
1098 | { | ||
1099 | printk(KERN_INFO "uli526x: %s NIC Link is Down\n",dev->name); | ||
1100 | netif_carrier_off(dev); | ||
1101 | } | ||
1102 | } | ||
1103 | db->init=0; | ||
1104 | |||
1105 | /* Timer active again */ | ||
1106 | db->timer.expires = ULI526X_TIMER_WUT; | ||
1107 | add_timer(&db->timer); | ||
1108 | spin_unlock_irqrestore(&db->lock, flags); | ||
1109 | } | ||
1110 | |||
1111 | |||
1112 | /* | ||
1113 | * Dynamic reset the ULI526X board | ||
1114 | * Stop ULI526X board | ||
1115 | * Free Tx/Rx allocated memory | ||
1116 | * Reset ULI526X board | ||
1117 | * Re-initialize ULI526X board | ||
1118 | */ | ||
1119 | |||
1120 | static void uli526x_dynamic_reset(struct net_device *dev) | ||
1121 | { | ||
1122 | struct uli526x_board_info *db = netdev_priv(dev); | ||
1123 | |||
1124 | ULI526X_DBUG(0, "uli526x_dynamic_reset()", 0); | ||
1125 | |||
1126 | /* Sopt MAC controller */ | ||
1127 | db->cr6_data &= ~(CR6_RXSC | CR6_TXSC); /* Disable Tx/Rx */ | ||
1128 | update_cr6(db->cr6_data, dev->base_addr); | ||
1129 | outl(0, dev->base_addr + DCR7); /* Disable Interrupt */ | ||
1130 | outl(inl(dev->base_addr + DCR5), dev->base_addr + DCR5); | ||
1131 | |||
1132 | /* Disable upper layer interface */ | ||
1133 | netif_stop_queue(dev); | ||
1134 | |||
1135 | /* Free Rx Allocate buffer */ | ||
1136 | uli526x_free_rxbuffer(db); | ||
1137 | |||
1138 | /* system variable init */ | ||
1139 | db->tx_packet_cnt = 0; | ||
1140 | db->rx_avail_cnt = 0; | ||
1141 | db->link_failed = 1; | ||
1142 | db->init=1; | ||
1143 | db->wait_reset = 0; | ||
1144 | |||
1145 | /* Re-initialize ULI526X board */ | ||
1146 | uli526x_init(dev); | ||
1147 | |||
1148 | /* Restart upper layer interface */ | ||
1149 | netif_wake_queue(dev); | ||
1150 | } | ||
1151 | |||
1152 | |||
1153 | /* | ||
1154 | * free all allocated rx buffer | ||
1155 | */ | ||
1156 | |||
1157 | static void uli526x_free_rxbuffer(struct uli526x_board_info * db) | ||
1158 | { | ||
1159 | ULI526X_DBUG(0, "uli526x_free_rxbuffer()", 0); | ||
1160 | |||
1161 | /* free allocated rx buffer */ | ||
1162 | while (db->rx_avail_cnt) { | ||
1163 | dev_kfree_skb(db->rx_ready_ptr->rx_skb_ptr); | ||
1164 | db->rx_ready_ptr = db->rx_ready_ptr->next_rx_desc; | ||
1165 | db->rx_avail_cnt--; | ||
1166 | } | ||
1167 | } | ||
1168 | |||
1169 | |||
1170 | /* | ||
1171 | * Reuse the SK buffer | ||
1172 | */ | ||
1173 | |||
1174 | static void uli526x_reuse_skb(struct uli526x_board_info *db, struct sk_buff * skb) | ||
1175 | { | ||
1176 | struct rx_desc *rxptr = db->rx_insert_ptr; | ||
1177 | |||
1178 | if (!(rxptr->rdes0 & cpu_to_le32(0x80000000))) { | ||
1179 | rxptr->rx_skb_ptr = skb; | ||
1180 | rxptr->rdes2 = cpu_to_le32( pci_map_single(db->pdev, skb->tail, RX_ALLOC_SIZE, PCI_DMA_FROMDEVICE) ); | ||
1181 | wmb(); | ||
1182 | rxptr->rdes0 = cpu_to_le32(0x80000000); | ||
1183 | db->rx_avail_cnt++; | ||
1184 | db->rx_insert_ptr = rxptr->next_rx_desc; | ||
1185 | } else | ||
1186 | ULI526X_DBUG(0, "SK Buffer reuse method error", db->rx_avail_cnt); | ||
1187 | } | ||
1188 | |||
1189 | |||
1190 | /* | ||
1191 | * Initialize transmit/Receive descriptor | ||
1192 | * Using Chain structure, and allocate Tx/Rx buffer | ||
1193 | */ | ||
1194 | |||
1195 | static void uli526x_descriptor_init(struct uli526x_board_info *db, unsigned long ioaddr) | ||
1196 | { | ||
1197 | struct tx_desc *tmp_tx; | ||
1198 | struct rx_desc *tmp_rx; | ||
1199 | unsigned char *tmp_buf; | ||
1200 | dma_addr_t tmp_tx_dma, tmp_rx_dma; | ||
1201 | dma_addr_t tmp_buf_dma; | ||
1202 | int i; | ||
1203 | |||
1204 | ULI526X_DBUG(0, "uli526x_descriptor_init()", 0); | ||
1205 | |||
1206 | /* tx descriptor start pointer */ | ||
1207 | db->tx_insert_ptr = db->first_tx_desc; | ||
1208 | db->tx_remove_ptr = db->first_tx_desc; | ||
1209 | outl(db->first_tx_desc_dma, ioaddr + DCR4); /* TX DESC address */ | ||
1210 | |||
1211 | /* rx descriptor start pointer */ | ||
1212 | db->first_rx_desc = (void *)db->first_tx_desc + sizeof(struct tx_desc) * TX_DESC_CNT; | ||
1213 | db->first_rx_desc_dma = db->first_tx_desc_dma + sizeof(struct tx_desc) * TX_DESC_CNT; | ||
1214 | db->rx_insert_ptr = db->first_rx_desc; | ||
1215 | db->rx_ready_ptr = db->first_rx_desc; | ||
1216 | outl(db->first_rx_desc_dma, ioaddr + DCR3); /* RX DESC address */ | ||
1217 | |||
1218 | /* Init Transmit chain */ | ||
1219 | tmp_buf = db->buf_pool_start; | ||
1220 | tmp_buf_dma = db->buf_pool_dma_start; | ||
1221 | tmp_tx_dma = db->first_tx_desc_dma; | ||
1222 | for (tmp_tx = db->first_tx_desc, i = 0; i < TX_DESC_CNT; i++, tmp_tx++) { | ||
1223 | tmp_tx->tx_buf_ptr = tmp_buf; | ||
1224 | tmp_tx->tdes0 = cpu_to_le32(0); | ||
1225 | tmp_tx->tdes1 = cpu_to_le32(0x81000000); /* IC, chain */ | ||
1226 | tmp_tx->tdes2 = cpu_to_le32(tmp_buf_dma); | ||
1227 | tmp_tx_dma += sizeof(struct tx_desc); | ||
1228 | tmp_tx->tdes3 = cpu_to_le32(tmp_tx_dma); | ||
1229 | tmp_tx->next_tx_desc = tmp_tx + 1; | ||
1230 | tmp_buf = tmp_buf + TX_BUF_ALLOC; | ||
1231 | tmp_buf_dma = tmp_buf_dma + TX_BUF_ALLOC; | ||
1232 | } | ||
1233 | (--tmp_tx)->tdes3 = cpu_to_le32(db->first_tx_desc_dma); | ||
1234 | tmp_tx->next_tx_desc = db->first_tx_desc; | ||
1235 | |||
1236 | /* Init Receive descriptor chain */ | ||
1237 | tmp_rx_dma=db->first_rx_desc_dma; | ||
1238 | for (tmp_rx = db->first_rx_desc, i = 0; i < RX_DESC_CNT; i++, tmp_rx++) { | ||
1239 | tmp_rx->rdes0 = cpu_to_le32(0); | ||
1240 | tmp_rx->rdes1 = cpu_to_le32(0x01000600); | ||
1241 | tmp_rx_dma += sizeof(struct rx_desc); | ||
1242 | tmp_rx->rdes3 = cpu_to_le32(tmp_rx_dma); | ||
1243 | tmp_rx->next_rx_desc = tmp_rx + 1; | ||
1244 | } | ||
1245 | (--tmp_rx)->rdes3 = cpu_to_le32(db->first_rx_desc_dma); | ||
1246 | tmp_rx->next_rx_desc = db->first_rx_desc; | ||
1247 | |||
1248 | /* pre-allocate Rx buffer */ | ||
1249 | allocate_rx_buffer(db); | ||
1250 | } | ||
1251 | |||
1252 | |||
1253 | /* | ||
1254 | * Update CR6 value | ||
1255 | * Firstly stop ULI526X, then written value and start | ||
1256 | */ | ||
1257 | |||
1258 | static void update_cr6(u32 cr6_data, unsigned long ioaddr) | ||
1259 | { | ||
1260 | |||
1261 | outl(cr6_data, ioaddr + DCR6); | ||
1262 | udelay(5); | ||
1263 | } | ||
1264 | |||
1265 | |||
1266 | /* | ||
1267 | * Send a setup frame for M5261/M5263 | ||
1268 | * This setup frame initialize ULI526X address filter mode | ||
1269 | */ | ||
1270 | |||
1271 | static void send_filter_frame(struct net_device *dev, int mc_cnt) | ||
1272 | { | ||
1273 | struct uli526x_board_info *db = netdev_priv(dev); | ||
1274 | struct dev_mc_list *mcptr; | ||
1275 | struct tx_desc *txptr; | ||
1276 | u16 * addrptr; | ||
1277 | u32 * suptr; | ||
1278 | int i; | ||
1279 | |||
1280 | ULI526X_DBUG(0, "send_filter_frame()", 0); | ||
1281 | |||
1282 | txptr = db->tx_insert_ptr; | ||
1283 | suptr = (u32 *) txptr->tx_buf_ptr; | ||
1284 | |||
1285 | /* Node address */ | ||
1286 | addrptr = (u16 *) dev->dev_addr; | ||
1287 | *suptr++ = addrptr[0]; | ||
1288 | *suptr++ = addrptr[1]; | ||
1289 | *suptr++ = addrptr[2]; | ||
1290 | |||
1291 | /* broadcast address */ | ||
1292 | *suptr++ = 0xffff; | ||
1293 | *suptr++ = 0xffff; | ||
1294 | *suptr++ = 0xffff; | ||
1295 | |||
1296 | /* fit the multicast address */ | ||
1297 | for (mcptr = dev->mc_list, i = 0; i < mc_cnt; i++, mcptr = mcptr->next) { | ||
1298 | addrptr = (u16 *) mcptr->dmi_addr; | ||
1299 | *suptr++ = addrptr[0]; | ||
1300 | *suptr++ = addrptr[1]; | ||
1301 | *suptr++ = addrptr[2]; | ||
1302 | } | ||
1303 | |||
1304 | for (; i<14; i++) { | ||
1305 | *suptr++ = 0xffff; | ||
1306 | *suptr++ = 0xffff; | ||
1307 | *suptr++ = 0xffff; | ||
1308 | } | ||
1309 | |||
1310 | /* prepare the setup frame */ | ||
1311 | db->tx_insert_ptr = txptr->next_tx_desc; | ||
1312 | txptr->tdes1 = cpu_to_le32(0x890000c0); | ||
1313 | |||
1314 | /* Resource Check and Send the setup packet */ | ||
1315 | if (db->tx_packet_cnt < TX_DESC_CNT) { | ||
1316 | /* Resource Empty */ | ||
1317 | db->tx_packet_cnt++; | ||
1318 | txptr->tdes0 = cpu_to_le32(0x80000000); | ||
1319 | update_cr6(db->cr6_data | 0x2000, dev->base_addr); | ||
1320 | outl(0x1, dev->base_addr + DCR1); /* Issue Tx polling */ | ||
1321 | update_cr6(db->cr6_data, dev->base_addr); | ||
1322 | dev->trans_start = jiffies; | ||
1323 | } else | ||
1324 | printk(KERN_ERR DRV_NAME ": No Tx resource - Send_filter_frame!\n"); | ||
1325 | } | ||
1326 | |||
1327 | |||
1328 | /* | ||
1329 | * Allocate rx buffer, | ||
1330 | * As possible as allocate maxiumn Rx buffer | ||
1331 | */ | ||
1332 | |||
1333 | static void allocate_rx_buffer(struct uli526x_board_info *db) | ||
1334 | { | ||
1335 | struct rx_desc *rxptr; | ||
1336 | struct sk_buff *skb; | ||
1337 | |||
1338 | rxptr = db->rx_insert_ptr; | ||
1339 | |||
1340 | while(db->rx_avail_cnt < RX_DESC_CNT) { | ||
1341 | if ( ( skb = dev_alloc_skb(RX_ALLOC_SIZE) ) == NULL ) | ||
1342 | break; | ||
1343 | rxptr->rx_skb_ptr = skb; /* FIXME (?) */ | ||
1344 | rxptr->rdes2 = cpu_to_le32( pci_map_single(db->pdev, skb->tail, RX_ALLOC_SIZE, PCI_DMA_FROMDEVICE) ); | ||
1345 | wmb(); | ||
1346 | rxptr->rdes0 = cpu_to_le32(0x80000000); | ||
1347 | rxptr = rxptr->next_rx_desc; | ||
1348 | db->rx_avail_cnt++; | ||
1349 | } | ||
1350 | |||
1351 | db->rx_insert_ptr = rxptr; | ||
1352 | } | ||
1353 | |||
1354 | |||
1355 | /* | ||
1356 | * Read one word data from the serial ROM | ||
1357 | */ | ||
1358 | |||
1359 | static u16 read_srom_word(long ioaddr, int offset) | ||
1360 | { | ||
1361 | int i; | ||
1362 | u16 srom_data = 0; | ||
1363 | long cr9_ioaddr = ioaddr + DCR9; | ||
1364 | |||
1365 | outl(CR9_SROM_READ, cr9_ioaddr); | ||
1366 | outl(CR9_SROM_READ | CR9_SRCS, cr9_ioaddr); | ||
1367 | |||
1368 | /* Send the Read Command 110b */ | ||
1369 | SROM_CLK_WRITE(SROM_DATA_1, cr9_ioaddr); | ||
1370 | SROM_CLK_WRITE(SROM_DATA_1, cr9_ioaddr); | ||
1371 | SROM_CLK_WRITE(SROM_DATA_0, cr9_ioaddr); | ||
1372 | |||
1373 | /* Send the offset */ | ||
1374 | for (i = 5; i >= 0; i--) { | ||
1375 | srom_data = (offset & (1 << i)) ? SROM_DATA_1 : SROM_DATA_0; | ||
1376 | SROM_CLK_WRITE(srom_data, cr9_ioaddr); | ||
1377 | } | ||
1378 | |||
1379 | outl(CR9_SROM_READ | CR9_SRCS, cr9_ioaddr); | ||
1380 | |||
1381 | for (i = 16; i > 0; i--) { | ||
1382 | outl(CR9_SROM_READ | CR9_SRCS | CR9_SRCLK, cr9_ioaddr); | ||
1383 | udelay(5); | ||
1384 | srom_data = (srom_data << 1) | ((inl(cr9_ioaddr) & CR9_CRDOUT) ? 1 : 0); | ||
1385 | outl(CR9_SROM_READ | CR9_SRCS, cr9_ioaddr); | ||
1386 | udelay(5); | ||
1387 | } | ||
1388 | |||
1389 | outl(CR9_SROM_READ, cr9_ioaddr); | ||
1390 | return srom_data; | ||
1391 | } | ||
1392 | |||
1393 | |||
1394 | /* | ||
1395 | * Auto sense the media mode | ||
1396 | */ | ||
1397 | |||
1398 | static u8 uli526x_sense_speed(struct uli526x_board_info * db) | ||
1399 | { | ||
1400 | u8 ErrFlag = 0; | ||
1401 | u16 phy_mode; | ||
1402 | |||
1403 | phy_mode = phy_read(db->ioaddr, db->phy_addr, 1, db->chip_id); | ||
1404 | phy_mode = phy_read(db->ioaddr, db->phy_addr, 1, db->chip_id); | ||
1405 | |||
1406 | if ( (phy_mode & 0x24) == 0x24 ) { | ||
1407 | |||
1408 | phy_mode = ((phy_read(db->ioaddr, db->phy_addr, 5, db->chip_id) & 0x01e0)<<7); | ||
1409 | if(phy_mode&0x8000) | ||
1410 | phy_mode = 0x8000; | ||
1411 | else if(phy_mode&0x4000) | ||
1412 | phy_mode = 0x4000; | ||
1413 | else if(phy_mode&0x2000) | ||
1414 | phy_mode = 0x2000; | ||
1415 | else | ||
1416 | phy_mode = 0x1000; | ||
1417 | |||
1418 | /* printk(DRV_NAME ": Phy_mode %x ",phy_mode); */ | ||
1419 | switch (phy_mode) { | ||
1420 | case 0x1000: db->op_mode = ULI526X_10MHF; break; | ||
1421 | case 0x2000: db->op_mode = ULI526X_10MFD; break; | ||
1422 | case 0x4000: db->op_mode = ULI526X_100MHF; break; | ||
1423 | case 0x8000: db->op_mode = ULI526X_100MFD; break; | ||
1424 | default: db->op_mode = ULI526X_10MHF; ErrFlag = 1; break; | ||
1425 | } | ||
1426 | } else { | ||
1427 | db->op_mode = ULI526X_10MHF; | ||
1428 | ULI526X_DBUG(0, "Link Failed :", phy_mode); | ||
1429 | ErrFlag = 1; | ||
1430 | } | ||
1431 | |||
1432 | return ErrFlag; | ||
1433 | } | ||
1434 | |||
1435 | |||
1436 | /* | ||
1437 | * Set 10/100 phyxcer capability | ||
1438 | * AUTO mode : phyxcer register4 is NIC capability | ||
1439 | * Force mode: phyxcer register4 is the force media | ||
1440 | */ | ||
1441 | |||
1442 | static void uli526x_set_phyxcer(struct uli526x_board_info *db) | ||
1443 | { | ||
1444 | u16 phy_reg; | ||
1445 | |||
1446 | /* Phyxcer capability setting */ | ||
1447 | phy_reg = phy_read(db->ioaddr, db->phy_addr, 4, db->chip_id) & ~0x01e0; | ||
1448 | |||
1449 | if (db->media_mode & ULI526X_AUTO) { | ||
1450 | /* AUTO Mode */ | ||
1451 | phy_reg |= db->PHY_reg4; | ||
1452 | } else { | ||
1453 | /* Force Mode */ | ||
1454 | switch(db->media_mode) { | ||
1455 | case ULI526X_10MHF: phy_reg |= 0x20; break; | ||
1456 | case ULI526X_10MFD: phy_reg |= 0x40; break; | ||
1457 | case ULI526X_100MHF: phy_reg |= 0x80; break; | ||
1458 | case ULI526X_100MFD: phy_reg |= 0x100; break; | ||
1459 | } | ||
1460 | |||
1461 | } | ||
1462 | |||
1463 | /* Write new capability to Phyxcer Reg4 */ | ||
1464 | if ( !(phy_reg & 0x01e0)) { | ||
1465 | phy_reg|=db->PHY_reg4; | ||
1466 | db->media_mode|=ULI526X_AUTO; | ||
1467 | } | ||
1468 | phy_write(db->ioaddr, db->phy_addr, 4, phy_reg, db->chip_id); | ||
1469 | |||
1470 | /* Restart Auto-Negotiation */ | ||
1471 | phy_write(db->ioaddr, db->phy_addr, 0, 0x1200, db->chip_id); | ||
1472 | udelay(50); | ||
1473 | } | ||
1474 | |||
1475 | |||
1476 | /* | ||
1477 | * Process op-mode | ||
1478 | AUTO mode : PHY controller in Auto-negotiation Mode | ||
1479 | * Force mode: PHY controller in force mode with HUB | ||
1480 | * N-way force capability with SWITCH | ||
1481 | */ | ||
1482 | |||
1483 | static void uli526x_process_mode(struct uli526x_board_info *db) | ||
1484 | { | ||
1485 | u16 phy_reg; | ||
1486 | |||
1487 | /* Full Duplex Mode Check */ | ||
1488 | if (db->op_mode & 0x4) | ||
1489 | db->cr6_data |= CR6_FDM; /* Set Full Duplex Bit */ | ||
1490 | else | ||
1491 | db->cr6_data &= ~CR6_FDM; /* Clear Full Duplex Bit */ | ||
1492 | |||
1493 | update_cr6(db->cr6_data, db->ioaddr); | ||
1494 | |||
1495 | /* 10/100M phyxcer force mode need */ | ||
1496 | if ( !(db->media_mode & 0x8)) { | ||
1497 | /* Forece Mode */ | ||
1498 | phy_reg = phy_read(db->ioaddr, db->phy_addr, 6, db->chip_id); | ||
1499 | if ( !(phy_reg & 0x1) ) { | ||
1500 | /* parter without N-Way capability */ | ||
1501 | phy_reg = 0x0; | ||
1502 | switch(db->op_mode) { | ||
1503 | case ULI526X_10MHF: phy_reg = 0x0; break; | ||
1504 | case ULI526X_10MFD: phy_reg = 0x100; break; | ||
1505 | case ULI526X_100MHF: phy_reg = 0x2000; break; | ||
1506 | case ULI526X_100MFD: phy_reg = 0x2100; break; | ||
1507 | } | ||
1508 | phy_write(db->ioaddr, db->phy_addr, 0, phy_reg, db->chip_id); | ||
1509 | phy_write(db->ioaddr, db->phy_addr, 0, phy_reg, db->chip_id); | ||
1510 | } | ||
1511 | } | ||
1512 | } | ||
1513 | |||
1514 | |||
1515 | /* | ||
1516 | * Write a word to Phy register | ||
1517 | */ | ||
1518 | |||
1519 | static void phy_write(unsigned long iobase, u8 phy_addr, u8 offset, u16 phy_data, u32 chip_id) | ||
1520 | { | ||
1521 | u16 i; | ||
1522 | unsigned long ioaddr; | ||
1523 | |||
1524 | if(chip_id == PCI_ULI5263_ID) | ||
1525 | { | ||
1526 | phy_writeby_cr10(iobase, phy_addr, offset, phy_data); | ||
1527 | return; | ||
1528 | } | ||
1529 | /* M5261/M5263 Chip */ | ||
1530 | ioaddr = iobase + DCR9; | ||
1531 | |||
1532 | /* Send 33 synchronization clock to Phy controller */ | ||
1533 | for (i = 0; i < 35; i++) | ||
1534 | phy_write_1bit(ioaddr, PHY_DATA_1, chip_id); | ||
1535 | |||
1536 | /* Send start command(01) to Phy */ | ||
1537 | phy_write_1bit(ioaddr, PHY_DATA_0, chip_id); | ||
1538 | phy_write_1bit(ioaddr, PHY_DATA_1, chip_id); | ||
1539 | |||
1540 | /* Send write command(01) to Phy */ | ||
1541 | phy_write_1bit(ioaddr, PHY_DATA_0, chip_id); | ||
1542 | phy_write_1bit(ioaddr, PHY_DATA_1, chip_id); | ||
1543 | |||
1544 | /* Send Phy address */ | ||
1545 | for (i = 0x10; i > 0; i = i >> 1) | ||
1546 | phy_write_1bit(ioaddr, phy_addr & i ? PHY_DATA_1 : PHY_DATA_0, chip_id); | ||
1547 | |||
1548 | /* Send register address */ | ||
1549 | for (i = 0x10; i > 0; i = i >> 1) | ||
1550 | phy_write_1bit(ioaddr, offset & i ? PHY_DATA_1 : PHY_DATA_0, chip_id); | ||
1551 | |||
1552 | /* written trasnition */ | ||
1553 | phy_write_1bit(ioaddr, PHY_DATA_1, chip_id); | ||
1554 | phy_write_1bit(ioaddr, PHY_DATA_0, chip_id); | ||
1555 | |||
1556 | /* Write a word data to PHY controller */ | ||
1557 | for ( i = 0x8000; i > 0; i >>= 1) | ||
1558 | phy_write_1bit(ioaddr, phy_data & i ? PHY_DATA_1 : PHY_DATA_0, chip_id); | ||
1559 | |||
1560 | } | ||
1561 | |||
1562 | |||
1563 | /* | ||
1564 | * Read a word data from phy register | ||
1565 | */ | ||
1566 | |||
1567 | static u16 phy_read(unsigned long iobase, u8 phy_addr, u8 offset, u32 chip_id) | ||
1568 | { | ||
1569 | int i; | ||
1570 | u16 phy_data; | ||
1571 | unsigned long ioaddr; | ||
1572 | |||
1573 | if(chip_id == PCI_ULI5263_ID) | ||
1574 | return phy_readby_cr10(iobase, phy_addr, offset); | ||
1575 | /* M5261/M5263 Chip */ | ||
1576 | ioaddr = iobase + DCR9; | ||
1577 | |||
1578 | /* Send 33 synchronization clock to Phy controller */ | ||
1579 | for (i = 0; i < 35; i++) | ||
1580 | phy_write_1bit(ioaddr, PHY_DATA_1, chip_id); | ||
1581 | |||
1582 | /* Send start command(01) to Phy */ | ||
1583 | phy_write_1bit(ioaddr, PHY_DATA_0, chip_id); | ||
1584 | phy_write_1bit(ioaddr, PHY_DATA_1, chip_id); | ||
1585 | |||
1586 | /* Send read command(10) to Phy */ | ||
1587 | phy_write_1bit(ioaddr, PHY_DATA_1, chip_id); | ||
1588 | phy_write_1bit(ioaddr, PHY_DATA_0, chip_id); | ||
1589 | |||
1590 | /* Send Phy address */ | ||
1591 | for (i = 0x10; i > 0; i = i >> 1) | ||
1592 | phy_write_1bit(ioaddr, phy_addr & i ? PHY_DATA_1 : PHY_DATA_0, chip_id); | ||
1593 | |||
1594 | /* Send register address */ | ||
1595 | for (i = 0x10; i > 0; i = i >> 1) | ||
1596 | phy_write_1bit(ioaddr, offset & i ? PHY_DATA_1 : PHY_DATA_0, chip_id); | ||
1597 | |||
1598 | /* Skip transition state */ | ||
1599 | phy_read_1bit(ioaddr, chip_id); | ||
1600 | |||
1601 | /* read 16bit data */ | ||
1602 | for (phy_data = 0, i = 0; i < 16; i++) { | ||
1603 | phy_data <<= 1; | ||
1604 | phy_data |= phy_read_1bit(ioaddr, chip_id); | ||
1605 | } | ||
1606 | |||
1607 | return phy_data; | ||
1608 | } | ||
1609 | |||
1610 | static u16 phy_readby_cr10(unsigned long iobase, u8 phy_addr, u8 offset) | ||
1611 | { | ||
1612 | unsigned long ioaddr,cr10_value; | ||
1613 | |||
1614 | ioaddr = iobase + DCR10; | ||
1615 | cr10_value = phy_addr; | ||
1616 | cr10_value = (cr10_value<<5) + offset; | ||
1617 | cr10_value = (cr10_value<<16) + 0x08000000; | ||
1618 | outl(cr10_value,ioaddr); | ||
1619 | udelay(1); | ||
1620 | while(1) | ||
1621 | { | ||
1622 | cr10_value = inl(ioaddr); | ||
1623 | if(cr10_value&0x10000000) | ||
1624 | break; | ||
1625 | } | ||
1626 | return (cr10_value&0x0ffff); | ||
1627 | } | ||
1628 | |||
1629 | static void phy_writeby_cr10(unsigned long iobase, u8 phy_addr, u8 offset, u16 phy_data) | ||
1630 | { | ||
1631 | unsigned long ioaddr,cr10_value; | ||
1632 | |||
1633 | ioaddr = iobase + DCR10; | ||
1634 | cr10_value = phy_addr; | ||
1635 | cr10_value = (cr10_value<<5) + offset; | ||
1636 | cr10_value = (cr10_value<<16) + 0x04000000 + phy_data; | ||
1637 | outl(cr10_value,ioaddr); | ||
1638 | udelay(1); | ||
1639 | } | ||
1640 | /* | ||
1641 | * Write one bit data to Phy Controller | ||
1642 | */ | ||
1643 | |||
1644 | static void phy_write_1bit(unsigned long ioaddr, u32 phy_data, u32 chip_id) | ||
1645 | { | ||
1646 | outl(phy_data , ioaddr); /* MII Clock Low */ | ||
1647 | udelay(1); | ||
1648 | outl(phy_data | MDCLKH, ioaddr); /* MII Clock High */ | ||
1649 | udelay(1); | ||
1650 | outl(phy_data , ioaddr); /* MII Clock Low */ | ||
1651 | udelay(1); | ||
1652 | } | ||
1653 | |||
1654 | |||
1655 | /* | ||
1656 | * Read one bit phy data from PHY controller | ||
1657 | */ | ||
1658 | |||
1659 | static u16 phy_read_1bit(unsigned long ioaddr, u32 chip_id) | ||
1660 | { | ||
1661 | u16 phy_data; | ||
1662 | |||
1663 | outl(0x50000 , ioaddr); | ||
1664 | udelay(1); | ||
1665 | phy_data = ( inl(ioaddr) >> 19 ) & 0x1; | ||
1666 | outl(0x40000 , ioaddr); | ||
1667 | udelay(1); | ||
1668 | |||
1669 | return phy_data; | ||
1670 | } | ||
1671 | |||
1672 | |||
1673 | static struct pci_device_id uli526x_pci_tbl[] = { | ||
1674 | { 0x10B9, 0x5261, PCI_ANY_ID, PCI_ANY_ID, 0, 0, PCI_ULI5261_ID }, | ||
1675 | { 0x10B9, 0x5263, PCI_ANY_ID, PCI_ANY_ID, 0, 0, PCI_ULI5263_ID }, | ||
1676 | { 0, } | ||
1677 | }; | ||
1678 | MODULE_DEVICE_TABLE(pci, uli526x_pci_tbl); | ||
1679 | |||
1680 | |||
1681 | static struct pci_driver uli526x_driver = { | ||
1682 | .name = "uli526x", | ||
1683 | .id_table = uli526x_pci_tbl, | ||
1684 | .probe = uli526x_init_one, | ||
1685 | .remove = __devexit_p(uli526x_remove_one), | ||
1686 | }; | ||
1687 | |||
1688 | MODULE_AUTHOR("Peer Chen, peer.chen@uli.com.tw"); | ||
1689 | MODULE_DESCRIPTION("ULi M5261/M5263 fast ethernet driver"); | ||
1690 | MODULE_LICENSE("GPL"); | ||
1691 | |||
1692 | MODULE_PARM(debug, "i"); | ||
1693 | MODULE_PARM(mode, "i"); | ||
1694 | MODULE_PARM(cr6set, "i"); | ||
1695 | MODULE_PARM_DESC(debug, "ULi M5261/M5263 enable debugging (0-1)"); | ||
1696 | MODULE_PARM_DESC(mode, "ULi M5261/M5263: Bit 0: 10/100Mbps, bit 2: duplex, bit 8: HomePNA"); | ||
1697 | |||
1698 | /* Description: | ||
1699 | * when user used insmod to add module, system invoked init_module() | ||
1700 | * to register the services. | ||
1701 | */ | ||
1702 | |||
1703 | static int __init uli526x_init_module(void) | ||
1704 | { | ||
1705 | int rc; | ||
1706 | |||
1707 | printk(version); | ||
1708 | printed_version = 1; | ||
1709 | |||
1710 | ULI526X_DBUG(0, "init_module() ", debug); | ||
1711 | |||
1712 | if (debug) | ||
1713 | uli526x_debug = debug; /* set debug flag */ | ||
1714 | if (cr6set) | ||
1715 | uli526x_cr6_user_set = cr6set; | ||
1716 | |||
1717 | switch(mode) { | ||
1718 | case ULI526X_10MHF: | ||
1719 | case ULI526X_100MHF: | ||
1720 | case ULI526X_10MFD: | ||
1721 | case ULI526X_100MFD: | ||
1722 | uli526x_media_mode = mode; | ||
1723 | break; | ||
1724 | default:uli526x_media_mode = ULI526X_AUTO; | ||
1725 | break; | ||
1726 | } | ||
1727 | |||
1728 | rc = pci_module_init(&uli526x_driver); | ||
1729 | if (rc < 0) | ||
1730 | return rc; | ||
1731 | |||
1732 | return 0; | ||
1733 | } | ||
1734 | |||
1735 | |||
1736 | /* | ||
1737 | * Description: | ||
1738 | * when user used rmmod to delete module, system invoked clean_module() | ||
1739 | * to un-register all registered services. | ||
1740 | */ | ||
1741 | |||
1742 | static void __exit uli526x_cleanup_module(void) | ||
1743 | { | ||
1744 | ULI526X_DBUG(0, "uli526x_clean_module() ", debug); | ||
1745 | pci_unregister_driver(&uli526x_driver); | ||
1746 | } | ||
1747 | |||
1748 | module_init(uli526x_init_module); | ||
1749 | module_exit(uli526x_cleanup_module); | ||