summaryrefslogtreecommitdiffstats
path: root/c/src/libchip (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps: Move shmdr to bspsSebastian Huber2018-04-0916-807/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move libchip to bspsSebastian Huber2018-04-0478-35113/+1
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* build: Remove EXTRA_DISTSebastian Huber2018-04-041-9/+0
| | | | | A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
* mpci: Avoid use of RTEMS_RELLDFLAGSSebastian Huber2018-03-221-4/+3
|
* bsps: Move network define to source filesSebastian Huber2018-01-3111-1/+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-2539-7248/+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-223-1/+144
| | | | | | 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-048-11/+10
| | | | Update #3254.
* dev/serial: Lazy update of NS16550 settingsSebastian Huber2017-10-182-3/+13
| | | | | | | | Updates of the line control and baud divisor while transfers are in progress may lead to unpredictable behaviour on some chips. Perform the updates only if necessary. Close #3198.
* bsps: Fix integer to/from pointer warningsSebastian Huber2017-09-281-3/+3
| | | | Update #3082.
* libchip,greth: disable driver if SMP kernelDaniel Hellstrom2017-08-292-2/+5
| | | | Update #2355
* libchip/serial: Fix integer typesSebastian Huber2017-08-221-3/+3
| | | | Update #3082.
* libchip/ata: Fix integer to/from pointerSebastian Huber2017-08-221-2/+2
| | | | Update #3082.
* 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.
* Move RTEMS-specific Termios API contentSebastian Huber2017-06-071-0/+2
| | | | | | | Remove obsolete support for OFILL, OFDEL, NLDLY, CRDLY, BSDLY, VTDLY, and FFDLY which is not present on FreeBSD and not implemented in Linux. Update #2833.
* network: Include missing <inttypes.h>Sebastian Huber2017-06-071-0/+1
| | | | Update #2833.
* missing a couple register names + a #ifndef_ASM__ around serial.h inclusionPhong Pham2017-05-131-0/+4
| | | | Closes #3016.
* 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
|
* bsps: Fix baud settingsSebastian Huber2017-04-032-2/+2
| | | | Update #2897.
* termios: Synchronize with latest FreeBSD headersKevin Kirspel2017-03-223-6/+26
| | | | | | | | | | | Adding modified FreeBSD headers to synchronize RTEMS termios with FreeBSD. Modify termios to support dedicated input and output baud for termios structure. Updated BSPs to use dedicated input and output baud in termios structure. Updated tools to use dedicated input and output baud in termios structure. Updated termios testsuites to use dedicated input and output baud in termios structure. Close #2897.
* libchip/serial/mc68681.c: Add error checkJoel Sherrill2017-03-141-0/+2
| | | | This was spotted by Coverity Scan.
* Use <sys/endian.h>Sebastian Huber2017-01-241-11/+5
| | | | Update #2803.
* libchip: Really fix high capacity detectionSebastian Huber2017-01-201-1/+1
| | | | Update #2239.
* Rename is_internal to always_set_to_falseSebastian Huber2016-12-121-1/+1
| | | | Update #2825.
* 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.
* Make rtems/print.h independent of rtems/bspIo.hSebastian Huber2016-06-221-0/+1
|
* bsps: Fix printk() format warningSebastian Huber2016-06-171-1/+1
|
* bsps: Fix MPCI_Fatal() prototypeSebastian Huber2016-06-172-4/+4
| | | | Close #2742.
* libchip/shmdr/send.c: Fix warning and clean upJoel Sherrill2016-06-161-15/+21
|
* libchip/shmdr/poll.c: Fix warning and clean upJoel Sherrill2016-06-161-5/+8
|
* libchip: Remove dwmac network interface driverSebastian Huber2016-05-3116-6658/+1
| | | | | The network interface driver for this module is located in the new network stack (libbsd), see file "if_dwc.c".
* score: Rename _ISR_Disable() and _ISR_Enable()Sebastian Huber2016-05-201-4/+4
| | | | | | | | | Rename _ISR_Disable() into _ISR_Local_disable(). Rename _ISR_Enable() into _ISR_Local_enable(). Remove _Debug_Is_owner_of_giant(). This is a preparation to remove the Giant lock. Update #2555.
* ibchip/ns16550: Minor optimisation.Chris Johns2016-05-111-13/+14
|
* 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.