summaryrefslogtreecommitdiffstats
path: root/bsps/x86_64 (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-11-29bsp_specs: Delete last remnants of these.Joel Sherrill1-0/+0
Updates #3937.
2021-09-21build: Remove old build systemSebastian Huber2-19/+0
Close #3250. Close #4081.
2021-07-27bsps/irq: bsp_interrupt_facility_initialize()Sebastian Huber1-3/+1
Do not return a status code in bsp_interrupt_facility_initialize() since this leads to unreachable code in bsp_interrupt_initialize(). Use RTEMS_DEBUG assertions in bsp_interrupt_facility_initialize() if necessary.
2021-07-26bsps/irq: bsp_interrupt_vector_disable()Sebastian Huber1-1/+2
Return a status code for bsp_interrupt_vector_disable(). Update #3269.
2021-07-26bsps/irq: bsp_interrupt_vector_enable()Sebastian Huber1-1/+2
Return a status code for bsp_interrupt_vector_enable(). Update #3269.
2021-07-26bsps/irq: Add rtems_interrupt_is_pending()Sebastian Huber1-0/+11
Add a default implementation which just returns RTEMS_UNSATISFIED. Update #3269.
2021-07-26bsps/irq: Add rtems_interrupt_get_attributes()Sebastian Huber1-0/+9
Add a default implementation which clears the attributes to zero and just returns RTEMS_SUCCESSFUL for valid parameters. Update #3269.
2021-07-26bsps/irq: Add rtems_interrupt_raise()Sebastian Huber1-0/+12
Add rtems_interrupt_raise_on() and rtems_interrupt_clear(). Add a default implementation which just returns RTEMS_UNSATISFIED for valid parameters. Update #3269.
2021-07-26bsps/irq: Add rtems_interrupt_vector_is_enabled()Sebastian Huber1-0/+11
Add a default implementation which just returns RTEMS_UNSATISFIED for valid parameters. Update #3269.
2021-06-24bsps/irq: Remove BSP_INTERRUPT_VECTOR_MAXSebastian Huber1-1/+0
This define is no longer used. Update #3269.
2021-06-24bsps/irq: Add BSP_INTERRUPT_VECTOR_COUNTSebastian Huber1-0/+1
Assert BSP_INTERRUPT_VECTOR_MAX + 1 == BSP_INTERRUPT_VECTOR_COUNT. After building all BSPs with this patch, BSP_INTERRUPT_VECTOR_MAX can be removed and replaced by BSP_INTERRUPT_VECTOR_COUNT. The BSP_INTERRUPT_VECTOR_COUNT allows a default implementation which supports no interrupt vector at all. Using COUNT instead of MAX may avoid some interpretation issues, for example is the maximum value a valid vector number or not. Update #3269.
2021-06-24bsps/irq: Remove BSP_INTERRUPT_VECTOR_MINSebastian Huber1-1/+0
Remove BSP_INTERRUPT_VECTOR_MIN and unconditionally let interrupt vector numbers start with zero. The BSP_INTERRUPT_VECTOR_MIN == 0 invariant was tested by the previous commit and building all BSPs. Update #3269.
2021-05-02bsps: Support RTEMS_NOINIT in linkcmdsSebastian Huber1-0/+5
Update #3866.
2021-01-28bsps: Replace bsp_specs with an empty fileSebastian Huber1-9/+0
This fixes an issue with the latest tool chain which adds the default linker script in the endfile specification. Update #3250.
2020-02-04bsps: Add RamEnd to linker command filesSebastian Huber1-0/+1
Update #3838.
2019-03-08bsps: Adjust bsp.h Doxygen groupsSebastian Huber2-1/+17
Update #3706.
2019-03-04bsps: Adjust architecture Doxygen groupsSebastian Huber1-0/+7
- Use CamelCase as it is not used in our C code. Enables simple search and replace. - Prefix with "RTEMS" to aid deployment and integration. It aids searching and sorting. Update #3706.
2018-11-22Changed slightly awkward sentence structurezehata1-5/+4
2018-11-19bsps/x86_64: Use interrupt stack for init stackSebastian Huber3-36/+42
Update #3459.
2018-08-13bsps/x86_64: Add APIC timer based clock driverAmaan Cheval6-0/+614
The APIC timer is calibrated by running the i8254 PIT for a fraction of a second (determined by PIT_CALIBRATE_DIVIDER) and counting how many times the APIC counter has ticked. The calibration can be run multiple times (determined by APIC_TIMER_NUM_CALIBRATIONS) and averaged out. Updates #2898.
2018-08-13bsps/x86_64: Add support for RTEMS interruptsAmaan Cheval5-0/+394
Updates #2898.
2018-08-13bsps/x86_64: Add paging support with 1GiB super pagesAmaan Cheval4-0/+247
Updates #2898.
2018-08-13bsps/x86_64: Reduce default RamSize to 1GiBAmaan Cheval1-3/+3
Simulators may not always be able to allocate 4GiB easily, and using an artificially lower RAM may cause a broken heap. Updates #2898.
2018-08-13bsps/x86_64: Reorganize header files and compile-optionsAmaan Cheval1-0/+3
Updates #2898.
2018-07-11x86_64/console: Add NS16550 polled console driverAmaan Cheval1-93/+30
This addition allows us to successfully run the sample hello.exe test. Updates #2898.
2018-07-11bsp/x86_64: Minimal bootable BSPAmaan Cheval10-0/+612
Current state: - Basic context initialization and switching code. - Stubbed console (empty functions). - Mostly functional linker script (may need tweaks if we ever want to move away from the large code model (see: CPU_CFLAGS). - Fully functional boot, by using FreeBSD's bootloader to load RTEMS's ELF for UEFI-awareness. In short, the current state with this commit lets us boot, go through the system initialization functions, and then call user application's Init task too. Updates #2898.