PR 429/bsps
PR 432/bsps
* network/elnk.c: Due to a bug in the driver, if multiple packets
are queued onto an elnk board, the ISR will deadlock the device with
a tx complete interrupt. Lighter tx loads are not affected as they
end up submitting single packets to the device.
PR 405/bsps
PR 393/networking
* network/dec21140.c: Fix leak also known as PR393.
* network/elnk.c, network/if_media.h, network/mii.h: New files.
* network/Makefile.am: Reflect new files.
PR 405/bsps
PR 393/networking
* network/dec21140.c: Fix leak also known as PR393.
* network/elnk.c, network/if_media.h, network/mii.h: New files.
* network/Makefile.am: Reflect new files.
* ide/Makefile.am: ATA code depends upon libchip/ide which is not
allowed in the cpukit source code since it must be buildable
independent of any BSP. These files were moved to libchip/ide.
* ide/ata.c, ide/ata.h, ide/ata_internal.h: New files.
PR 354/networkign
* network/if_fxp.c (Intel eepro network driver): re-enabled the chip
against a table of supported chips. The untested
ones are still commented out, however.
* serial/Makefile.am: Don't include @RTEMS_BSP@.cfg.
Don't use LIBC_DEFINES.
* rtc/Makefile.am: Don't include @RTEMS_BSP@.cfg.
Don't use LIBC_DEFINES.
* network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
Don't use LIBC_DEFINES.
* network/Makefile.am, network/README.cs8900, network/cs8900.c,
network/cs8900.h: Significant update which corrects the problem
where the cs8900.c file was actually the BSP glue. Joel did
some hacking so this file will compile. Previously it required
providing a target.h file to compile.
* network/cs8900.c.bsp: New file.
* network/Makefile.am: Use .$(OBJEXT) instead of .o.
* rtc/Makefile.am: Use .$(OBJEXT) instead of .o.
* serial/Makefile.am: Use .$(OBJEXT) instead of .o.
* New driver for the Intel EtherExpressPro (82559ER) chip.
* network/if_fxp.c, network/if_fxpreg.h, network/if_fxpvar.h,
network/pci.h: New file.
* network/Makefile.am: Modified to reflect above.
* bootloader/Makefile.am, console/Makefile.am, pci/Makefile.am:
Per PR215 address the following issues:
- _IO_BASE, _ISA_MEM_BASE and PCI_DRAM_OFFSET
are no longer defined by libcpu (powerpc/shared/include/io.h)
but by the BSP (who is the only one to know the values)
- the affected BSP (shared/motorola) headers have been fixed
in a separate "libbsp/powerpc/shared" patch.
- the DEC 21140 driver (libchip/network/dec21140.c) has been
fixed to use PCI_DRAM_OFFSET instead of PREP_PCI_DRAM_OFFSET.
and PCI_MEM_BASE instead of PREP_ISA_MEM_BASE. PCI_MEM_BASE
is to be defined by the BSP who is using this driver.
- the DEC driver also has been fixed to use the newer
rtems_bsp_delay_in_bus_cycles() instead of the obsolete
delay_in_bus_cycles().
* bootloader/Makefile.am, console/Makefile.am, pci/Makefile.am:
Per PR215 address the following issues:
- _IO_BASE, _ISA_MEM_BASE and PCI_DRAM_OFFSET
are no longer defined by libcpu (powerpc/shared/include/io.h)
but by the BSP (who is the only one to know the values)
- the affected BSP (shared/motorola) headers have been fixed
in a separate "libbsp/powerpc/shared" patch.
- the DEC 21140 driver (libchip/network/dec21140.c) has been
fixed to use PCI_DRAM_OFFSET instead of PREP_PCI_DRAM_OFFSET.
and PCI_MEM_BASE instead of PREP_ISA_MEM_BASE. PCI_MEM_BASE
is to be defined by the BSP who is using this driver.
- the DEC driver also has been fixed to use the newer
rtems_bsp_delay_in_bus_cycles() instead of the obsolete
delay_in_bus_cycles().
* c/src/libchip/network/i82586.c: Per PR210, adjust the mbuf
lengths to remove the ethernet header as the FreeBSD (RTEMS)
stack requires it to be stripped.
* network/rtems_bsdnet.h: To address PR59, added the drv_ctrl driver
control block field to the ifconfig network driver structure. This
field is needed by the i82586 driver which was ported from NetBSD
as it had better hardware abstraction.
* network/Makefile.am: Fixed typo on file name.
* network/i82586.c: Commented out line 318 which is referencing
a member of a structure that is not currently there. This
needs to be worked out with Chris Johns <ccj@acm.org>.
Switched C++ style comments to C style.
* serial/Makefile.am, serial/mc68681.c, serial/ns16550.c,
serial/serprobe.c, serial/z85c30.c: Now install sersupp.h
to <libchip/sersupp.h> so libchip style serial drivers can
be written in libcpu or libbsp.