Commit Graph

11 Commits

Author SHA1 Message Date
Andre Richter
5e3af39bdc
Change to aarch64-cpu crate 2022-11-06 22:03:32 +01:00
Andre Richter
ec842133d9
Improve macOS support
macOS support is still not great, but this patch at least
fixes some import Makefile subtargets.
2022-10-24 22:16:02 +02:00
Andre Richter
2e72a8408f
Rework driver subsystem
This update significantly decouples the generic kernel code
from the BSP code.
Prior to this patch, the BSP had way too much business logic
that should have always been the generic kernel's concern.
2022-10-23 17:40:04 +02:00
Andre Richter
b7b2d31c24
Rewrite timer subsystem 2022-09-23 22:38:10 +02:00
Andre Richter
e6c3790cac
Remove .got section again
It seems that whatever bug or config mistake gave us .got entries back then has
since been resolved. Also add a sanity check to recognize should this happen
again.
2022-05-23 22:33:32 +02:00
Andre Richter
96ba61ace9
Update README.md 2022-05-17 00:32:05 +02:00
Andre Richter
7aa99d52c0
Misc fixes/streamlining 2022-05-16 22:14:02 +02:00
Andre Richter
fec4f9b6f2
Rework driver subsystem
- Remove the panic version of the GPIO and UART driver. While they were a neat
  idea, it proved tedious to drag them along different tutorials where the
  virtual memory situation kept on changing. Actually, not much is lost, since
  the benefit was only of theoretical nature until now, since everything is
  still single-threaded with NullLocks. It is still possible to re-introduce
  them later.

- Refactor driver bringup starting with tutorial 14. Instantiating the drivers
  only when we are already capable of using the remapped MMIO address makes the
  kernel a lot more robust, and the drivers need not care whether their MMIO
  addresses are good to use already or not.

- Use console and irq_manager references from the generic kernel code. This
  improves decoupling from the BSP, and is needed as a basis for tutorial 14.
2022-05-16 21:55:17 +02:00
Andre Richter
f6190f85b7
ASM: Remove use of .equ
The LLVM assembler apparently causes the .equ directive to create symbols
instead of just a local and temporary variable.

Work around this by using const operands with global_asm!.
2022-05-03 23:53:45 +02:00
Andre Richter
f0b7f819af
Update README.md 2022-05-03 00:18:19 +02:00
Andre Richter
8ff358a50b
Add tutorial 18 2022-05-02 23:56:16 +02:00