summaryrefslogtreecommitdiffstats
path: root/cpukit/libpci (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cpukit/libpci: Change license to BSD-2Joel Sherrill2022-03-2222-66/+484
| | | | Updates #3053.
* cpukit/libpci: fix potential buffer overflow in pci_cfg_print_code.cHarrison Edward Gerber2021-05-261-2/+2
| | | | | | See also CID 1399721 Closes #4442
* pci_cfg_read.c: Fix Missing break in switch (CID #1399723)Ryan Long2021-03-051-0/+1
| | | | | | CID 1399723: Missing break in switch in pci_read_addressable(). Closes #4279
* Fix format warningsSebastian Huber2019-01-073-18/+24
|
* build: Merge libpci/Makefile.amSebastian Huber2018-10-101-35/+0
|
* build: Remove EXTRA_DISTSebastian Huber2018-04-041-1/+0
| | | | | A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
* Remove make preinstallChris Johns2018-01-2514-2895/+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.
* sparc: Remove BSP specifics from <pci/irq.h>Sebastian Huber2018-01-021-6/+16
| | | | | | Update #3254. Update #3260. Update #3269.
* sparc: Remove BSP specifics from <pci/access.h>Sebastian Huber2018-01-021-93/+0
| | | | | Update #3254. Update #3260.
* libpci: fix pci device allocationDaniel Hellstrom2017-09-295-37/+32
| | | | | | | | | | The refactoring of pci_dev_create() was incorrect since the code relied on different defines before including pci/cfg.h. This reverts back to the original code having two pci_dev_create() one in auto and one in read library. confdefs.h selectes between the two libraries so both there is no link conflict. Updates #3029
* libpci: Use calloc()Sebastian Huber2017-08-251-2/+1
| | | | Update #2133.
* Include missing <string.h>Sebastian Huber2017-08-251-0/+1
| | | | Update #2133.
* leon, GR-CPCI-GR740: Added peripheral PCI driverJavier Jalle2017-05-022-0/+2
|
* libpci: code cleanupDaniel Hellstrom2017-03-061-3/+1
|
* DRVMGR: renamed RES_EMPTY to DRVMGR_RES_EMPTYDaniel Hellstrom2015-04-171-1/+1
|
* DRVMGR: renamed info_dev to get_info_devDaniel Hellstrom2015-04-171-1/+1
|
* DRVMGR: change name of freq_get to get_freqDaniel Hellstrom2015-04-171-3/+3
|
* LIBPCI: updated license to rtems.orgDaniel Hellstrom2015-04-1732-32/+32
|
* LIBPCI: new implementation private header fileDaniel Hellstrom2015-04-177-45/+56
| | | | | | | | - new implementation private header file - moved double implementation of pci_dev_create used by read & auto cfg libraries to common pci_dev_create.c - moved declaration of pci_bus_cnt to private header file so avoid extern in .c files
* LIBPCI: various comment/unsed clean-upsDaniel Hellstrom2015-04-171-14/+9
|
* LIBPCI: use enum with pci_system_typeDaniel Hellstrom2015-04-172-3/+3
|
* LIBPCI: use RTEMS_INLINE_ROUTINEDaniel Hellstrom2015-04-172-35/+40
|
* LIBPCI: moved comment out of license headerDaniel Hellstrom2015-04-171-4/+9
|
* PCI BUS: moved comment out of license headerDaniel Hellstrom2015-04-172-24/+22
|
* LIBPCI: added license and auto-gen comment to pci/ids.hDaniel Hellstrom2015-04-171-1/+26
| | | | To be Merged.
* LIBPCI: clean-up pci_for_each_child() search argDaniel Hellstrom2015-04-171-1/+4
|
* LIBPCI: remove $Id in makefile.amDaniel Hellstrom2015-04-171-4/+0
|
* LIBPCI: converted to BSD headerDaniel Hellstrom2015-04-1714-1158/+1833
|
* DRVMGR: PCI BUS converted to BSD headerDaniel Hellstrom2015-04-171-8/+8
|
* LIBPCI: moved pci_bus copyright into a single lineDaniel Hellstrom2015-04-172-4/+2
|
* LIBPCI: moved copyright into a single lineDaniel Hellstrom2015-04-1727-54/+27
|
* LIBPCI: removed unused changes fileDaniel Hellstrom2015-04-171-46/+0
|
* LIBPCI: fixed RES2DEV in pci/cfg.hDaniel Hellstrom2015-04-171-2/+5
|
* NGMP PCI: added support for NGMP prototype boardsDaniel Hellstrom2015-04-171-0/+1
|
* GR-CPCI-LEON4-N2X: added PCI peripheral driver for PCI deviceDaniel Hellstrom2015-04-172-0/+2
| | | | Interrupts have not been test yet
* LIBPCI: added DRVMGR model for PCI busDaniel Hellstrom2015-04-174-0/+740
|
* LIBPCI: added PCI layer to cpukit/libpciDaniel Hellstrom2015-04-1734-0/+4786