ChangeLog
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:18k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. 2002-02-07  Uwe Bonnes  <bon@elektron.ikp.physik.tu-darmstadt.de>
  2. * tulip_core (tulip_pci_tbl[]):
  3. Add PCI id for comet tulip clone.
  4. 2001-12-19  John Zielinski
  5. * tulip_core.c (tulip_up, tulip_init_one):
  6. More places to revert PHY autoconfiguration bit removal.
  7. 2001-12-16  Andrew Lambeth  <wal@vmware.com>
  8. * tulip_core.c (tulip_start_xmit): Use the more-portable
  9. spin_lock_irqsave.
  10. 2001-11-13  David S. Miller  <davem@redhat.com>
  11. * tulip_core.c (tulip_mwi_config): Kill unused label early_out.
  12. 2001-11-06  Richard Mortimer  <richm@oldelvet.netscapeonline.co.uk>
  13. * tulip_core.c:  Correct set of values to mask out of csr0,
  14. for DM9102A chips.  Limit burst/alignment of DM9102A chips
  15. on Sparcs.
  16. 2001-11-06  Jun Sun  <jsun@mvista.com>
  17. * tulip_core.c:  Support finding MAC address on
  18. two MIPS boards, DDB5476 and DDB5477.
  19. 2001-11-06  Kevin B. Hendricks  <khendricks@ivey.uwo.ca>
  20. * Makefile, tulip.h, tulip_core.c, pnic2.c, 21142.c:
  21. Fixes for PNIC II support.
  22. 2001-11-06  David S. Miller  <davem@redhat.com>
  23. * tulip_core.c: Support reading MAC address from
  24. Sparc OBP property local-mac-address.
  25. 2001-07-17  Erik A. Hendriks  <hendriks@lanl.gov>
  26. * 21142.c: Merge fix from tulip.c 0.92w which prevents the
  27. overwriting of csr6 bits we want to preserve.
  28. 2001-07-10  Jeff Golds  <jgolds@resilience.com>
  29. * tulip_core.c: Fix two comments
  30. 2001-07-06  Stephen Degler  <sdegler@degler.net>
  31. * media.c:
  32. The media selection process at the end of NWAY is busted
  33. because for the case of MII/SYM it needs to be:
  34.         csr13 <- 0
  35.         csr14 <- 0
  36.         csr6 <-  the value calculated is okay.
  37. In the other media cases csr14 is computed by
  38. t21142_csr14val[dev->if_port], which seems ok.  The value of
  39. zero as opposed to 3FFFFF comes straight from appendix D of the
  40. 21143 data book, and it makes logical sense because you're
  41. bypassing all the SIA interface when you usa MII or SYM (see
  42. figure 1-1 in the data book if your're visually oriented)
  43. 2001-07-03  Jeff Golds  <jgolds@resilience.com>
  44. * tulip_core.c (tulip_clean_tx_ring):
  45. Clear status for in-progress Tx's, and count
  46. Tx errors for all packets being released.
  47. 2001-06-16  Jeff Garzik  <jgarzik@mandrakesoft.com>
  48. * tulip.h, tulip_core.c:
  49. Integrate MMIO support from devel branch, but default
  50. it to off for stable kernel and driver series.
  51. 2001-06-16  Jeff Garzik  <jgarzik@mandrakesoft.com>
  52. * tulip_core.c (tulip_init_one):
  53. Free descriptor rings on error.
  54. 2001-06-16  Jeff Garzik  <jgarzik@mandrakesoft.com>
  55. * tulip_core.c (tulip_mwi_config, tulip_init_one):
  56. Large update to csr0 bus configuration code.  This is not stable
  57. yet, so it is only conditionally enabled, via CONFIG_TULIP_MWI.
  58. 2001-06-16  Jeff Garzik  <jgarzik@mandrakesoft.com>
  59. * tulip_core.c:
  60. Initialize timer in tulip_init_one and tulip_down,
  61. not in tulip_up.
  62. 2001-06-14  Jeff Garzik  <jgarzik@mandrakesoft.com>
  63. * tulip_core.c:
  64. - Update tulip_suspend, tulip_resume for new PCI PM API.
  65. - Surround suspend/resume code with CONFIG_PM.
  66. 2001-06-12  Jeff Golds  <jgolds@resilience.com>
  67. * tulip_core.c:
  68. - Reset sw ring ptrs in tulip_up.  Fixes PM resume case.
  69. - Clean rx and tx rings on device down.
  70. 2001-06-05  David Miller  <davem@redhat.com>
  71. * tulip_core (set_rx_mode):  Do not use set_bit
  72. on an integer variable.  Also fix endianness issue.
  73. 2001-06-04  Jeff Garzik  <jgarzik@mandrakesoft.com>
  74. * interrupt.c:
  75. Simplify rx processing when CONFIG_NET_HW_FLOWCONTROL is
  76. active, and in the process fix a bug where flow control
  77. and low load caused rx not to be acknowledged properly.
  78. 2001-06-01  Jeff Garzik  <jgarzik@mandrakesoft.com>
  79. * tulip.h:
  80. - Remove tulip_outl_csr helper, redundant.
  81. - Add tulip_start_rxtx inline helper.
  82. - tulip_stop_rxtx helper: Add synchronization. Always use current
  83.   csr6 value, instead of tp->csr6 value or value passed as arg.
  84. - tulip_restart_rxtx helper: Add synchronization. Always
  85.   use tp->csr6 for desired mode, not value passed as arg.
  86. - New RxOn, TxOn, RxTx constants for csr6 modes.
  87. - Remove now-redundant constants csr6_st, csr6_sr.
  88. * 21142.c, interrupt.c, media.c, pnic.c, tulip_core.c:
  89. Update for above rxtx helper changes.
  90. * interrupt.c:
  91. - whitespace cleanup around #ifdef CONFIG_NET_HW_FLOWCONTROL,
  92.   convert tabs to spaces.
  93. - Move tp->stats.rx_missed_errors update outside the ifdef.
  94. 2001-05-18  Jeff Garzik  <jgarzik@mandrakesoft.com>
  95. * tulip_core.c: Added ethtool support.
  96.   ETHTOOL_GDRVINFO ioctl only, for now.
  97. 2001-05-14  Robert Olsson <Robert.Olsson@data.slu.se>
  98. * Restored HW_FLOWCONTROL from Linux 2.1 series tulip (ANK)
  99.   plus Jamal's NETIF_RX_* feedback control.
  100. 2001-05-14  Robert Olsson <Robert.Olsson@data.slu.se>
  101. * Added support for 21143's Interrupt Mitigation.
  102.   Jamal original instigator.
  103. 2001-05-14  Robert Olsson <Robert.Olsson@data.slu.se>
  104. * tulip_refill_rx prototype added to tulip.h
  105. 2001-05-13  Jeff Garzik  <jgarzik@mandrakesoft.com>
  106. * tulip_core.c: Remove HAS_PCI_MWI flag from Comet, untested.
  107. 2001-05-12  Jeff Garzik  <jgarzik@mandrakesoft.com>
  108. * tulip_core.c, tulip.h: Remove Conexant PCI id, no chip
  109. docs are available to fix problems with support.
  110. 2001-05-12  Jeff Garzik  <jgarzik@mandrakesoft.com>
  111. * tulip_core.c (tulip_init_one): Do not call
  112. unregister_netdev in error cleanup.  Remnant of old
  113. usage of init_etherdev.
  114. 2001-05-12  Jeff Garzik  <jgarzik@mandrakesoft.com>
  115. * media.c (tulip_find_mii): Simple write the updated BMCR
  116. twice, as it seems the best thing to do for both broken and
  117. sane chips.
  118. If the mii_advert value, as read from MII_ADVERTISE, is zero,
  119. then generate a value we should advertise from the capability
  120. bits in BMSR.
  121. Fill in tp->advertising for all cases.
  122. Just to be safe, clear all unwanted bits.
  123. 2001-05-12  Jeff Garzik  <jgarzik@mandrakesoft.com>
  124. * tulip_core.c (private_ioctl):  Fill in tp->advertising
  125. when advertising value is changed by the user.
  126. 2001-05-12  Jeff Garzik  <jgarzik@mandrakesoft.com>
  127. * tulip_core.c: Mark Comet chips as needed the updated MWI
  128. csr0 configuration.
  129. 2001-05-12  Jeff Garzik  <jgarzik@mandrakesoft.com>
  130. * media.c, tulip_core.c:  Move MII scan into
  131. from inlined inside tulip_init_one to new function
  132. tulip_find_mii in media.c.
  133. 2001-05-12  Jeff Garzik  <jgarzik@mandrakesoft.com>
  134. * media.c (tulip_check_duplex):
  135. Only restart Rx/Tx engines if they are active
  136. (and csr6 changes)
  137. 2001-05-12  Jeff Garzik  <jgarzik@mandrakesoft.com>
  138. * tulip_core.c (tulip_mwi_config):
  139. Clamp values read from PCI cache line size register to
  140. values acceptable to tulip chip.  Done for safety and
  141. -almost- certainly unneeded.
  142. 2001-05-11  Jeff Garzik  <jgarzik@mandrakesoft.com>
  143. * tulip_core.c (tulip_init_one):
  144. Instead of unconditionally enabling autonegotiation, disable
  145. autonegotiation if not using the default port.  Further,
  146. flip the nway bit immediately, and then update the
  147. speed/duplex in a separate MII transaction.  We do this
  148. because some boards require that nway be disabled separately,
  149. before media selection is forced.
  150. TODO: Investigate if we can simply write the same value
  151. to BMCR twice, to avoid setting unnecessarily changing
  152. phy settings.
  153. 2001-05-11  Jeff Garzik  <jgarzik@mandrakesoft.com>
  154. * tulip.h, tulip_core.c:  If HAS_PCI_MWI is set for a
  155. given chip, adjust the csr0 values not according to
  156. provided values but according to system cache line size.
  157. Currently cache alignment is matched as closely to cache
  158. line size as possible.  Currently programmable burst limit
  159. is set (ie. never unlimited), and always equal to cache
  160. alignment and system cache size.  Currently MWI bit is set
  161. only if the MWI bit is present in the PCI command register.
  162. 2001-05-11  Jeff Garzik  <jgarzik@mandrakesoft.com>
  163. * media.c (tulip_select_media):
  164. For media types 1 and 3, only use the provided eeprom
  165. advertising value if it is non-zero.
  166. (tulip_check_duplex):
  167. Do not exit ASAP if full_duplex_lock is set.  This
  168. ensures that the csr6 value is written if an update
  169. is needed.
  170. 2001-05-10  Jeff Garzik  <jgarzik@mandrakesoft.com>
  171. Merge PNIC-II-specific stuff from Becker's tulip.c:
  172. * tulip.h, 21142.c (pnic2_lnk_change): new function
  173. * tulip_core.c (tulip_init_one): use it
  174. * tulip_core.c (tulip_tx_timeout): Add specific
  175. debugging for PNIC2.
  176. 2001-05-10  Jeff Garzik  <jgarzik@mandrakesoft.com>
  177. * tulip_core.c (tulip_init_one): Print out
  178. tulip%d instead of PCI device number, for
  179. consistency.
  180. 2001-05-10  Jeff Garzik  <jgarzik@mandrakesoft.com>
  181. * Merge changes from Becker's tulip.c:
  182. Fix bugs in ioctl.
  183. Fix several bugs by distinguishing between MII
  184. and SYM advertising values.
  185. Set CSR14 autonegotiation bit for media types 2 and 4,
  186. where the SIA CSR setup values are not provided.
  187. 2001-05-10  Jeff Garzik  <jgarzik@mandrakesoft.com>
  188. * media.c (tulip_select_media): Only update MII
  189. advertising value if startup arg < 2.
  190. * tulip.h: Do not enable CSR13/14/15 autoconfiguration
  191. for 21041.
  192. * tulip_core.c:
  193. 21041: add specific code for reset, and do not set CAC bit
  194. When resetting media, for media table type 11 media, pass
  195. value 2 as 'startup' arg to select_media, to avoid updating
  196. MII advertising value.
  197. 2001-05-10  Jeff Garzik  <jgarzik@mandrakesoft.com>
  198. * pnic.c (pnic_check_duplex): remove
  199. pnic.c (pnic_lnk_change, pnic_timer): use
  200. tulip_check_duplex not pnic_check_duplex.
  201. * media.c (tulip_check_duplex):
  202. Clean up to use symbolic names instead of numeric constants.
  203. Set TxThreshold mode as necessary as well as clearing it.
  204. Update csr6 if csr6 changes, not simply if duplex changes.
  205. (found by Manfred Spraul)
  206. 2001-05-10  Jeff Garzik  <jgarzik@mandrakesoft.com>
  207. * 21142.c, eeprom.c, tulip.h, tulip_core.c:
  208. Remove DPRINTK as another, better method of
  209. debug message printing is available.
  210. 2001-05-09  Jeff Garzik  <jgarzik@mandrakesoft.com>
  211. * 21142.c (t21142_lnk_change): Pass arg startup==1
  212. to tulip_select_media, in order to force csr13 to be
  213. zeroed out prior to going to full duplex mode.  Fixes
  214. autonegotiation on a quad-port Znyx card.
  215. (from Stephen Dengler)
  216. 2001-05-09  Russell King  <rmk@arm.linux.org.uk>
  217. * interrupt.c: Better PCI bus error reporting.
  218. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  219. * tulip_core.c: Now that dev->name is only available late
  220.   in the probe, insert a hack to replace a not-evaluated
  221.   "eth%d" string with an evaluated "tulip%d" string.
  222.   Also, remove obvious comment and an indentation cleanup.
  223. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  224. * tulip_core.c: If we are a module, always print out the
  225.   version string.  If we are built into the kernel, only print
  226.   the version string if at least one tulip is detected.
  227. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  228. Merged from Becker's tulip.c 0.92t:
  229. * tulip_core.c: Add support for Conexant LANfinity.
  230. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  231. * tulip_core.c: Only suspend/resume if the interface
  232.   is up and running.  Use alloc_etherdev and pci_request_regions.
  233.   Spelling fix.
  234. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  235. * tulip_core.c: Remove code that existed when one or more of
  236.   the following defines existed.  These defines were never used
  237.   by normal users in practice: TULIP_FULL_DUPLEX,
  238.   TULIP_DEFAULT_MEDIA, and TULIP_NO_MEDIA_SWITCH.
  239. * tulip.h, eeprom.c: Move EE_* constants from tulip.h to eeprom.c.
  240. * tulip.h, media.c: Move MDIO_* constants from tulip.h to media.c.
  241. * media.c: Add barrier() to mdio_read/write's PNIC status check
  242.   loops.
  243. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  244. Merged from Becker's tulip.c 0.92t:
  245. * tulip.h: Add MEDIA_MASK constant for bounding medianame[]
  246.   array lookups.
  247. * eeprom.c, media.c, timer.c, tulip_core.c: Use it.
  248. * media.c, tulip_core.c: mdio_{read,write} cleanup.  Since this
  249.   is called [pretty much] directly from ioctl, we mask
  250.   read/write arguments to limit the values passed.
  251.   Added mii_lock.  Added comet_miireg2offset and better
  252.   Comet-specific mdio_read/write code. Pay closer attention
  253.   to the bits we set in ioctl. Remove spinlocks from ioctl,
  254.   they are in mdio_read/write now.  Use mask to limit
  255.   phy number in tulip_init_one's MII scan.
  256. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  257. Merged from Becker's tulip.c 0.92t:
  258. * 21142.c, tulip_core.c: PNIC2 MAC address and NWay fixes.
  259. * tulip.h: Add FullDuplex constant, used in above change.
  260. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  261. * timer.c: Do not call netif_carrier_{on,off}, it is not used in
  262.   the main tree.  Leave code in, disabled, as markers for future
  263.   carrier notification.
  264. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  265. Merged from Becker's tulip.c 0.92t, except for the tulip.h
  266. whitespace cleanup:
  267. * interrupt.c: If Rx stops, make sure to update the
  268.   multicast filter before restarting.
  269. * tulip.h: Add COMET_MAC_ADDR feature flag, clean up flags.
  270.   Add Accept* Rx mode bit constants.
  271.   Add mc_filter[] to driver private struct.
  272. * tulip_core.c: Add new Comet PCI id 0x1113:0x9511.
  273.   Add COMET_MAC_ADDR feature flag to comet entry in board info array.
  274.   Prefer to test COMET_MAC_ADDR flag to testing chip_id for COMET,
  275.   when dealing with the Comet's MAC address.
  276.   Enable Tx underrun recovery for Comet chips.
  277.   Use new Accept* constants in set_rx_mode.
  278.   Prefer COMET_MAC_ADDR flag test to chip_id test in set_rx_mode.
  279.   Store built mc_filter for later use in intr handler by Comets.
  280. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  281. * tulip_core.c: Use tp->cur_tx when building the
  282.   setup frame, instead of assuming that the setup
  283.   frame is always built in slot zero.  This case is
  284.   hit during PM resume.
  285. 2001-04-03  Jeff Garzik  <jgarzik@mandrakesoft.com>
  286. * *.c: Update file headers (copyright, urls, etc.)
  287. * Makefile: re-order to that chip-specific modules on own line
  288. * eeprom.c: BSS/zero-init cleanup (Andrey Panin)
  289. * tulip_core.c: merge medianame[] update from tulip.c.
  290.   Additional arch-specific rx_copybreak, csr0 values. (various)
  291. 2001-02-20  Jeff Garzik  <jgarzik@mandrakesoft.com>
  292. * media.c (tulip_select_media): No need to initialize
  293. new_csr6, all cases initialize it properly.
  294. 2001-02-18  Manfred Spraul  <manfred@colorfullife.com>
  295. * interrupt.c (tulip_refill_rx): Make public.
  296. If PNIC chip stops due to lack of Rx buffers, restart it.
  297. (tulip_interrupt): PNIC doesn't have a h/w timer, emulate
  298. with software timers.
  299. * pnic.c (pnic_check_duplex): New function, PNIC-specific
  300. version of tulip_check_duplex.
  301. (pnic_lnk_change): Call pnic_check_duplex.  If we use an
  302. external MII, then we mustn't use the internal negotiation.
  303. (pnic_timer): Support Rx refilling on work overflow in
  304. interrupt handler, as PNIC doesn't support a h/w timer.
  305. * tulip_core.c (tulip_tbl[]): Modify default csr6
  306. 2001-02-11  Jeff Garzik  <jgarzik@mandrakesoft.com>
  307. * tulip_core.c (tulip_init_one): Call pci_enable_device
  308. to ensure wakeup/resource assignment before checking those
  309. values.
  310. (tulip_init_one): Replace PCI ids with constants from pci_id.h.
  311. (tulip_suspend, tulip_resume, tulip_remove_one): Call
  312. pci_power_on/off (commented out for now).
  313. 2001-02-10  Jeff Garzik  <jgarzik@mandrakesoft.com>
  314. * tulip.h: Add CFDD_xxx bits for Tulip power management
  315. * tulip_core.c (tulip_set_power_state): New function,
  316. manipulating Tulip chip power state where supported.
  317. (tulip_up, tulip_down, tulip_init_one): Use it.
  318. 2001-02-10  Jeff Garzik  <jgarzik@mandrakesoft.com>
  319. * tulip_core.c (tulip_tx_timeout): Call netif_wake_queue
  320. to ensure the next Tx is always sent to us.
  321. 2001-01-27  Jeff Garzik  <jgarzik@mandrakesoft.com>
  322. * tulip_core.c (tulip_remove_one): Fix mem leak by freeing
  323. tp->media_tbl.  Add check for !dev, reformat code appropriately.
  324. 2001-01-27  Jeff Garzik  <jgarzik@mandrakesoft.com>
  325. * tulip_tbl[]: Comment all entries to make order and chip_id
  326. relationship more clear.
  327. * tulip_pci_tbl[]: Add new Accton PCI id (COMET chipset).
  328. 2001-01-16  Jeff Garzik  <jgarzik@mandrakesoft.com>
  329. * tulip_core.c: static vars no longer explicitly
  330. initialized to zero.
  331. * eeprom.c (tulip_read_eeprom): Make sure to delay between
  332. EE_ENB and EE_ENB|EE_SHIFT_CLK.  Merged from becker tulip.c.
  333. 2001-01-05  Peter De Schrijver  <p2@mind.be>
  334. * eeprom.c (tulip_parse_eeprom): Interpret a bit more of 21142
  335. extended format type 3 info blocks in a tulip SROM.
  336. 2001-01-03  Matti Aarnio  <matti.aarnio@zmailer.org>
  337. * media.c (tulip_select_media): Support media types 5 and 6
  338. 2001-??-??  ??
  339. * tulip_core.c: Add comment about LanMedia needing
  340. a different driver.
  341. Enable workarounds for early PCI chipsets.
  342. Add IA64 csr0 support, update HPPA csr0 support.
  343. 2000-12-17  Alan Cox  <alan@redhat.com>
  344.         * eeprom.c, timer.c, tulip.h, tulip_core.c: Merge support
  345. for the Davicom's quirks into the main tulip.
  346. Patch by Tobias Ringstrom
  347. 2000-11-08  Jim Studt  <jim@federated.com>
  348. * eeprom.c (tulip_parse_eeprom):  Check array bounds for
  349. medianame[] and block_name[] arrays to avoid oops due
  350. to bad values returned from hardware.
  351. 2000-11-02  Jeff Garzik  <jgarzik@mandrakesoft.com>
  352. * tulip_core.c (set_rx_mode): This is synchronized via
  353. dev->xmit_lock, so only the queueing of the setup frame needs to
  354. be locked, against tulip_interrupt.
  355. 2000-11-02  Alexey Kuznetov  <kuznet@ms2.inr.ac.ru>
  356. * timer.c (tulip_timer): Call netif_carrier_{on,off} to report
  357. link state to the rest of the kernel, and userspace.
  358. * interrupt.c (tulip_interrupt): Remove tx_full.
  359. * tulip.h: Likewise.
  360. * tulip_core.c (tulip_init_ring, tulip_start_xmit, set_rx_mode):
  361. Likewise.
  362. 2000-10-18  Jeff Garzik  <jgarzik@mandrakesoft.com>
  363. * tulip_core.c: (tulip_init_one) Print out ethernet interface
  364. on error.  Print out a message when pci_enable_device fails.
  365. Handle DMA alloc failure.
  366. 2000-10-18  Jeff Garzik  <jgarzik@mandrakesoft.com>
  367. * Makefile: New file.
  368. * tulip_core.c (tulip_init_one): Correct error messages
  369. on PIO/MMIO region reserve failure.
  370. (tulip_init_one) Add new check to ensure that PIO region is
  371. sufficient for our needs.