summaryrefslogtreecommitdiffstats
path: root/c/src/libchip/network (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps: Move libchip to bspsSebastian Huber2018-04-0423-21518/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move network define to source filesSebastian Huber2018-01-3110-0/+20
| | | | | Define __INSIDE_RTEMS_BSD_TCPIP_STACK__ in the network interface driver source files to avoid some build system magic.
* Remove make preinstallChris Johns2018-01-2510-3909/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
* bsps: Move wd80x3.h to libchip/wd80x3.hSebastian Huber2018-01-221-0/+139
| | | | | | This header is used also by the motorola_powerpc BSP. Update #3254.
* libchip: Use public include pathSebastian Huber2018-01-151-1/+1
| | | | Update #3254.
* libchip: Use public include pathChris Johns2018-01-044-4/+4
| | | | Update #3254.
* libchip: Fix format warningSebastian Huber2017-07-191-1/+1
|
* bsp: Fixes due to header file changesSebastian Huber2017-06-131-8/+19
| | | | Update #2833.
* if_fxp: Include missing <inttypes.h>Sebastian Huber2017-06-091-5/+6
| | | | Fix format warnings.
* Do not include <sys/ioctl.h> in kernel-spaceSebastian Huber2017-06-071-1/+0
| | | | Update #2833.
* network: Include missing <inttypes.h>Sebastian Huber2017-06-071-0/+1
| | | | Update #2833.
* elnk.c: Fix printf() format warningsJoel Sherrill2017-04-201-3/+9
|
* elnk.c: rtems_elnk_driver_attach() prototype addedJoel Sherrill2017-04-201-0/+3
|
* elnk.c: Make elnk_txDaemon() static to fix warningJoel Sherrill2017-04-201-1/+1
|
* if_fxp.c: Add prototype of rtems_fxp_attach()Joel Sherrill2017-04-201-0/+3
|
* if_fxp.c: Remove unused variableJoel Sherrill2017-04-201-1/+1
|
* dec21140.c: Add prototype of dec21140_txDaemon()Joel Sherrill2017-04-201-0/+2
|
* dec21140.c: Fix printk() warningsJoel Sherrill2017-04-201-3/+3
|
* dec21140.c: Include <libcpu/page.h> to eliminate warningsJoel Sherrill2017-04-201-0/+1
|
* dec21140.c: Fix PRIxx formatterJoel Sherrill2017-04-201-1/+1
|
* libchip/network/dec21140.c: Use inttypes.h to fix 1 warning.Cillian O'Donnell2017-04-141-1/+3
|
* libchip/network/if_fxp.c: do not use rtems_interrupt_disable.Pavel Pisa2016-10-171-7/+4
| | | | | | | | | | The single write to memory or ioport output are mostly atomic operations already. The proper memory synchronization barrier should be used around them to guarantee ordering (sync or eieio on PowerPC for example) but because I have not found settable portable primitive only compiler barrier is used. It should be enough on x86 because the externally visible order should be/is guaranteed to be preserved on x86 architecture.
* classic networking: adapt FXP driver to work with actual PCI and IRQ code.Pavel Pisa2016-09-212-106/+98
| | | | | | | | | | | Tested to work with QEMU provided Intel i82557b network controller emulation. qemu-system-x86_64 -enable-kvm -kernel $APP_BINARY \ -vga cirrus \ -append "--console=/dev/com1" \ -serial stdio \ -net nic,vlan=1,macaddr=be:be:be:10:00:01,model=i82557b \ -net tap,ifname=tap1,vlan=1,script=no,downscript=no
* classic networking: do not reference BSP_irq_enabled_at_i8259s which is no ↵Pavel Pisa2016-09-204-31/+4
| | | | | | | more available on i386. This change is required to build RTEMS with classic "--enable-networking" and link applications/tests which reference RTEMS_BSP_NETWORK_DRIVER_ATTACH.
* libchip: Remove dwmac network interface driverSebastian Huber2016-05-3114-6644/+0
| | | | | The network interface driver for this module is located in the new network stack (libbsd), see file "if_dwc.c".
* sonic.c: Fix warning on gcc 6Martin Galvan2016-05-061-13/+11
| | | | | | | | | | | | | GCC 6.0 previews give the following warning on sonic.c: ../../../../../rtems/c/src/libchip/network/sonic.c:837:11: warning: statement is indented as if it were guarded by... [-Wmisleading-indentation] This was discussed here: https://lists.rtems.org/pipermail/devel/2016-March/014004.html and we concluded it would be better to rewrite the entire snippet.
* pc386: Eliminate pcibios.h and begin removal obsolete PCI BIOS API usesJoel Sherrill2016-03-101-1/+42
| | | | | | | | | | | | | | | | | | | | This first step eliminates the following as public APIs for the pc386 BSP: + pcib_conf_read8 + pcib_conf_read16 + pcib_conf_read32 + pcib_conf_write8 + pcib_conf_write16 + pcib_conf_write32 The if_fxp.c driver uses these enough where I provided local macros to allow the code to be mostly unmodified. On other architectures these names have been used privately. It will take multiple patches to completely eliminate these symbols from the RTEMS source tree. The focus of the first effort is just to eliminate these as a public pc386 API so support can be added for systems without legacy PCI BIOS.
* libchip/network/if_fxp.c: Do not use rtems_clock_get()Joel Sherrill2015-03-171-1/+1
|
* libchip/dwmac: Use RTEMS_DEVOLATILE()Sebastian Huber2014-09-081-4/+11
|
* libchip/dwmac: Make PHY address user configurableChristian Mauderer2014-08-223-12/+30
| | | | | | This patch allows the user to configure the PHY address for the DWMAC driver by giving a pointer to a dwmac_user_cfg structure to network stack via rtems_bsdnet_ifconfig::drv_ctrl.
* GRETH: remove TCP/UDP HW checksum generationDaniel Hellstrom2014-06-051-2/+2
| | | | The GRETH doesn't support IP fragments.
* libchip: Add asserts to dwmac driverRalf Kirchner2014-04-301-0/+3
|
* libchip: Correct netstats message for dwmac driverRalf Kirchner2014-04-301-1/+1
|
* libchip: Correct error handling in dwmac driverRalf Kirchner2014-04-171-11/+4
| | | | By fault an rtems_status_code has been expected instead of an errno error number.
* libchip: Reduce tx interruptsRalf Kirchner2014-04-174-222/+262
| | | | | | | Reduce number of packet transmitted interrupts by using the interrupt mechanism only if we run out of DMA descriptors. Under normal conditions regaining DMA descriptors, mbufs and clusters is handled via a counter.
* libchip: CleanupRalf Kirchner2014-04-171-2/+2
|
* libchip: Improve handling of DMA suspendsRalf Kirchner2014-04-171-0/+1
| | | | Reset the corresponding DMA status bit
* libchip: Avoid __DEVOLATILE()Sebastian Huber2014-03-311-11/+9
|
* greth: Make local functions static, remove overflow and correct printf call.Daniel Cederman2014-03-211-6/+8
|
* smc91111: Move driver attach prototype to header file.Daniel Cederman2014-03-212-3/+8
| | | | Also signal to compiler that the start variable in lan91cxx_recv is only used when debugging.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-219-9/+9
|
* libchip: Relax buffer counts and add fatal errorRalf Kirchner2014-03-141-2/+13
|
* libchip: Include <bsp.h> BSP options definitionSebastian Huber2014-03-141-2/+2
|
* libchip: Check interrupt extension availabilitySebastian Huber2014-03-131-0/+13
|
* libchip: Avoid <bsp/utility.h>Sebastian Huber2014-03-132-578/+612
|
* libchip: Add dwmac 10/100/1000 network driverRalf Kirchner2014-03-1314-0/+6526
|
* score: Merge tod implementation into one fileSebastian Huber2013-07-262-5/+5
| | | | | Delete TOD_MICROSECONDS_PER_SECOND, TOD_MICROSECONDS_TO_TICKS() and TOD_MILLISECONDS_TO_TICKS().
* greth: do not advertise 1000M capability if MAC does not support it.Jiri Gaisler2013-06-191-0/+11
|
* greth: prefer full duplex if availableJiri Gaisler2013-06-191-3/+3
|
* libchip/network: Fixed warningAndreas Heinig2013-02-271-1/+2
|