From a9f34b79757de68cdd3f951077be0dd65da6354c Mon Sep 17 00:00:00 2001 From: cvs2git Date: Sun, 7 Mar 2010 17:11:24 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'R_20100307_p0'. Sprout from base 2009-04-22 22:06:58 UTC Till Straumann ' - importing updated version from SLAC as of 20090422' Cherrypick from master 2010-03-07 17:11:23 UTC Till Straumann '2010-03-07 Till Straumann ': bsd_eth_drivers/.cvsignore bsd_eth_drivers/ChangeLog bsd_eth_drivers/Makefile.am bsd_eth_drivers/if_bge/.cvsignore bsd_eth_drivers/if_bge/Makefile.am bsd_eth_drivers/if_bge/if_bge.c bsd_eth_drivers/if_bge/if_bgereg.h bsd_eth_drivers/if_em/.cvsignore bsd_eth_drivers/if_em/Makefile.am bsd_eth_drivers/if_em/e1000_manage.c bsd_eth_drivers/if_em/e1000_manage.h bsd_eth_drivers/if_em/e1000_osdep.h bsd_eth_drivers/if_em/if_em.c bsd_eth_drivers/if_fxp/.cvsignore bsd_eth_drivers/if_fxp/Makefile.am bsd_eth_drivers/if_fxp/if_fxp.c bsd_eth_drivers/if_fxp/if_fxpvar.h bsd_eth_drivers/if_le/.cvsignore bsd_eth_drivers/if_pcn/.cvsignore bsd_eth_drivers/if_pcn/if_pcn.c bsd_eth_drivers/if_re/.cvsignore bsd_eth_drivers/if_re/Makefile.am bsd_eth_drivers/if_re/if_re.c bsd_eth_drivers/if_re/if_rl.c bsd_eth_drivers/if_re/if_rlreg.h bsd_eth_drivers/libbsdport/.cvsignore bsd_eth_drivers/libbsdport/Makefile.am bsd_eth_drivers/libbsdport/alldrv.c bsd_eth_drivers/libbsdport/bus.h bsd_eth_drivers/libbsdport/callout.h bsd_eth_drivers/libbsdport/devicet.c bsd_eth_drivers/libbsdport/ifmedia.c bsd_eth_drivers/libbsdport/libbsdport.h bsd_eth_drivers/libbsdport/libbsdport_api.h bsd_eth_drivers/libbsdport/libbsdport_post.h bsd_eth_drivers/libbsdport/miistuff.c bsd_eth_drivers/libbsdport/misc.c bsd_eth_drivers/libbsdport/mutex.h bsd_eth_drivers/libbsdport/rtems_callout.c bsd_eth_drivers/libbsdport/sysbus.c bsd_eth_drivers/libbsdport/taskqueue.h bsd_eth_drivers/links.am Cherrypick from freebsd_orig 2009-04-23 04:52:05 UTC Till Straumann ' - importing original 'releng_7_1' version of FXP driver from FreeBSD.': bsd_eth_drivers/if_fxp/if_fxpreg.h bsd_eth_drivers/if_fxp/rcvbundl.h Delete: INSTALL Makefile.am bootstrap config.h.in configure.ac m4/acinclude.m4 m4/config-if-present.m4 m4/cvstag.m4 m4/multilib-fix.m4 m4/multilib-installdir.m4 m4/rtems-bsp-postlink.m4 m4/rtems-bsplist.m4 m4/rtems-check-libargs.m4 m4/rtems-checkprog.m4 m4/rtems-checktool.m4 m4/rtems-checktop.m4 m4/rtems-fixup-prefix.m4 m4/rtems-isml.m4 m4/rtems-ismultibsp.m4 m4/rtems-isrtems.m4 m4/rtems-makevars.m4 m4/rtems-multilib.m4 m4/rtems-options.m4 m4/rtems-setup-recurse.m4 m4/rtems-tools.m4 m4/rtems-trim-builddir.m4 m4/rtems-verscheck.m4 makefile.top.am makefile.top.in rtems-pre.am rtems.am ssrlApps.components.in --- bsd_eth_drivers/ChangeLog | 113 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) (limited to 'bsd_eth_drivers/ChangeLog') diff --git a/bsd_eth_drivers/ChangeLog b/bsd_eth_drivers/ChangeLog index 33cb584..3870355 100644 --- a/bsd_eth_drivers/ChangeLog +++ b/bsd_eth_drivers/ChangeLog @@ -1,3 +1,116 @@ +2010-03-07 Till Straumann + + * links.am: POSIXified sed commands for sake of portability. + +2010-02-12 Till Straumann + + * libbsdport/Makefile.am: Removed obsolete (and commented) + stuff. + +2009-10-20 Till Straumann + + * libbsdport/libbsdport.h, if_em/e1000_osdep.h: + We need __BSD_VISIBLE defined. Some things in the rtems headers + changed with 4.10 (can't pinpoint the details). We now + #define __INSIDE_RTEMS_BSD_TCPIP_STACK__ before explicitly + including and this seemed to fix + things for 4.10. + +2009-10-20 Till Straumann + + * libbsdport/libbsdport_post.h: added missing declaration + of m_defrag() (Chris replaced the dummy #define a while + ago and provided an implementation instead [thanks!] but + we also need a declaration). + +2009-10-20 Till Straumann + + * libbsdport/ifmedia.c: fixed 'unused variable' warning + by removing unused var. + +2009-10-20 Till Straumann + + * if_re/if_re.c: fixed 'unused variable' warning by + commenting via #ifndef __rtems__ (since code which uses + the 'msi_disable' var is commented the same way). + +2009-10-20 Till Straumann + + * if_pcn/if_pcn.c: fixed 'type-punned pointer' warning. + Use 'memcpy' to copy 2 bytes to a short. This requires + another #ifdef __rtems__, however. + +2009-10-20 Till Straumann + + * if_bge/if_bge.c: bge_intr must be passed as a 'handler' + to bus_setup_intr(). However, the irq_check_dis and irq_enable + methods seem to still be skeletons so this driver won't work... + (I have no hardware or emulation available to test). + +2009-10-20 Joel Sherrill + + * libbsdport/alldrv.c: Revert. + +2009-10-20 Joel Sherrill + + * if_bge/if_bge.c, libbsdport/alldrv.c: Add local changes (untested). + +2009-09-12 Chris Johns + + * links.am: Fixed the links so they work with absolute paths. + +2009-08-15 Till Straumann + + * if_re/Makefile.am: added 'if_rlreg.h' to SOURCES so + that it is 'distributed'. + +2009-08-15 Till Straumann + + * if_em/31000_osdep.h: added missing 'void' return + type of __out_le32() inline function. + +2009-08-06 Till Straumann + + * libbsdport/rtems_callout.c: fixed possible race + condition. callout_stop() must check again from + critical/protected section of code if callout is still on + the list/active. Otherwise, the callout-task could + have executed and removed the callout between + callout_stop() checking the p_prev pointer and + entering the critical section. + +2009-08-05 Till Straumann + + * if_em/Makefile.am, if_em/e1000_osdep.h, if_em/if_em.c: + Changed 'e1000_osdep.h' to provide stdalone I/O methods for + select architectures (x86 and PPC -- others fall back on + libbsdport/bus.h). This lets the low-level driver (everything + except for 'if_em.c/if_em.h') API be independent of + BSD networking and libbsdport which is desirable since + certain applications may wish to just use the low-level + API for implementing dedicated 'raw-ethernet' drivers + for BSD-independent, proprietary GigE communication. + +2009-08-05 Till Straumann + + * libbsdport/alldrv.c: reactivate weak aliases for all + known/supported drivers. This magic allows the user to + just link the desired (sub-)set of drivers. + +2009-08-05 Till Straumann + + * libbsdport/libbsdport.h: define _KERNEL only if not defined already + (e.g., from Makefile). + +2009-06-04 Joel Sherrill + + * libbsdport/alldrv.c, libbsdport/libbsdport_api.h: Add include + for FILE *. + + 2009/05/12 (TS) + - bugfix: bus_write_2() must map to bus_space_write_2 (not 4) + 2009/04/22 (TS) + - imported SLAC version into OAR repository; added FXP driver. 2008/03/22 (TS) - silence more compiler warnings: * make DMA address void* instead of caddr_t to avoid strict-aliasing violation -- cgit v1.2.3