summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/virtex5/include/bsp/irq.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2022-07-12bsps/powerpc/virtex5: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2022-03-10bsps/powerpc: Manual file header clean upChristian Mauderer1-18/+14
Updates #4625.
2022-03-10bsps/powerpc/: Scripted embedded brains header file clean upJoel Sherrill1-2/+2
Updates #4625.
2019-05-16bsps: Always build generic interrupt supportSebastian Huber1-0/+1
This makes it possible to write tests for the generic interrupt controller support. Update #3269.
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.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2013-01-26Fixed virtex4,5 BSP compile time warningsRic Claus1-0/+2
2013-01-14bsp/virtex5: Fix define locationSebastian Huber1-3/+2
2012-12-01Virtex5 BSP: Various updates and improvements.Ric Claus1-0/+4
This BSP now uses the MPC6xx clock driver instead of a modified PPC403 clock driver. Support for the MMU has been added, but is not enabled by default.
2012-03-30Add Virtex4 and Virtex5 BSPsRic Claus1-30/+14
This commit covers at least PR2020, 2022, and 2023. This patch adds all of the code for both BSPs, modifications to libcpu/powerpc for the ppc440, and some updates to the BSPs from follow up review and testing. These BSPs should be good baselines for future development. The configurations used by Ric are custom and have a non-standard NIC. They also do not have a UART. Thus the current console driver just prints to a RAM buffer. The NIC and UART support are left for future work. When the UART support is added, moving the existing "to RAM" console driver to a shared location is likely desirable because boards with no debug UART port are commonly deployed. This would let printk() go to RAM.
2009-11-30Whitespace removal.Ralf Corsepius1-3/+3
2007-11-302007-11-30 Till Straumann <strauman@slac.stanford.edu>Till Straumann1-7/+1
* irq/irq.h, irq/irq_init.c: Removed the definition of ASM_IRQ_VECTOR_BASE; this symbol was only use to initialize the irqBase member of the rtems_irq_global_settings struct. However, irqBase is an rtems_irq_symbolic_name, so using BSP_LOWEST_OFFSET is more appropriate.
2007-07-04added virtex BSP support and some missing files for common PPCThomas Doerfler1-0/+99
exception handling