summaryrefslogtreecommitdiffstats
path: root/bsps/x86_64/amd64/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps/amd64: add a new EFI-based variant of AMD64 BSPKarel Gardas2023-04-294-0/+536
| | | | | | | | | | The new amd64efi BSP supports: - multiboot2 boot format. Runs well with GRUB. - console based on either EFI simple text output or GOP-based framebuffer - clock based on EFI event/timer API - early console using either hard-wired PC-AT serial or just memory buffer - with EFI support disabled the BSP is more or less equivalent to amd64 BSP with multiboot2 support
* bsps: Adjust bsp.h Doxygen groupsSebastian Huber2019-03-081-0/+16
| | | | Update #3706.
* bsps/x86_64: Add APIC timer based clock driverAmaan Cheval2018-08-133-0/+236
| | | | | | | | | 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.
* bsp/x86_64: Minimal bootable BSPAmaan Cheval2018-07-113-0/+99
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.