summaryrefslogtreecommitdiffstats
path: root/cpukit/include/pci/irq.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-06-16pci: Do not use BSP-specific interrupt APISebastian Huber1-13/+4
Update #3269.
2022-11-14cpukit: Change license to BSD-2 for files with Gaisler copyrightDaniel Cederman1-3/+22
This patch changes the license to BSD-2 for all source files where the copyright is held by Aeroflex Gaisler, Cobham Gaisler, or Gaisler Research. Some files also includes copyright right statements from OAR and/or embedded Brains in addition to Gaisler. Updates #3053.
2022-09-19Do not use RTEMS_INLINE_ROUTINESebastian Huber1-5/+5
Directly use "static inline" which is available in C99 and later. This brings the RTEMS implementation closer to standard C. Close #3935.
2022-04-02cpukit/include; Remove SPDX from Gaisler files NOT changed to BSD-2Joel Sherrill1-2/+0
2022-03-25cpukit/include/pci: Manual header file clean upJoel Sherrill1-1/+8
2018-01-25Remove make preinstallChris Johns1-0/+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.
2018-01-02sparc: Remove BSP specifics from <pci/irq.h>Sebastian Huber1-6/+16
Update #3254. Update #3260. Update #3269.
2015-04-17LIBPCI: updated license to rtems.orgDaniel Hellstrom1-1/+1
2015-04-17LIBPCI: use RTEMS_INLINE_ROUTINEDaniel Hellstrom1-9/+13
2015-04-17LIBPCI: moved copyright into a single lineDaniel Hellstrom1-2/+1
2015-04-17LIBPCI: added PCI layer to cpukit/libpciDaniel Hellstrom1-0/+105