summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/x86_64 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps/x86_64: Use interrupt stack for init stackSebastian Huber2018-11-191-2/+5
| | | | Update #3459.
* build: Remove local.amSebastian Huber2018-10-102-2/+0
|
* bsps/x86_64: Add APIC timer based clock driverAmaan Cheval2018-08-131-1/+3
| | | | | | | | | 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.
* bsps/x86_64: Add support for RTEMS interruptsAmaan Cheval2018-08-131-0/+4
| | | | Updates #2898.
* bsps/x86_64: Add paging support with 1GiB super pagesAmaan Cheval2018-08-131-0/+1
| | | | Updates #2898.
* x86_64/console: Add NS16550 polled console driverAmaan Cheval2018-07-111-0/+2
| | | | | | This addition allows us to successfully run the sample hello.exe test. Updates #2898.
* bsp/x86_64: Minimal bootable BSPAmaan Cheval2018-07-115-0/+96
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.