Commit Graph

42 Commits

Author SHA1 Message Date
Andre Richter
840f6d6f42
Add Cargo.toml to dependencies 2022-06-27 11:06:06 +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
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
821979be41
Fix wrong variable in Makefile 2022-05-09 09:05:50 +02:00
Andre Richter
fa3d640b11
Rename PageAllocator module 2022-05-06 22:26:37 +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
8513ccfd8d
Various minor fixes 2022-04-27 22:08:55 +02:00
Andre Richter
8d87d2c847
minor cosmetics 2022-04-25 23:22:50 +02:00
Andre Richter
1323c8245b
Remove RA helper target from Makefile 2022-04-22 22:30:16 +02:00
Andre Richter
b836655d66
More link.ld -> kernel.ld renaming 2022-04-19 22:54:42 +02:00
Andre Richter
8c661977b8
Use a virtual manifest starting tutorial 12
This is finally possible since the new feature resolver.

For reference:
https://github.com/rust-lang/rust-analyzer/issues/6197#issuecomment-827564835
2022-04-19 22:44:01 +02:00
Andre Richter
70f1ced57b
Fix various clippy warnings 2022-04-19 09:11:12 +02:00
Andre Richter
353d92b1df
Revert "Move test-features activation to Cargo.toml"
This reverts commit 0b449706f3.

Also moves the feature addition before the if/else
2022-04-19 09:10:06 +02:00
Andre Richter
e9a3c4b489
Rename main LD script to kernel.ld 2022-04-19 09:09:09 +02:00
Andre Richter
7ca7f6728f
TT Tool: Check arch through kernel ELF 2022-04-12 21:57:55 +02:00
Andre Richter
b7cecafa1e
Non-phony kernel targets
Saves time on various targets that depend on the kernel ELF because calling
cargo can be completely skipped if nothing changed.
2022-04-12 21:54:53 +02:00
Andre Richter
cb4ae40ac2
Linker: Provide LD script folder via cmdline
This enables shorter relative paths for ld-internal INCLUDE, which adds more
flexibility wrt to directory structure.
2022-04-11 22:24:18 +02:00
Andre Richter
7d374adad2
Tests: Exception restore sanity 2022-04-05 23:08:19 +02:00
Andre Richter
722e8b7232
Print a timestamp on panic 2022-03-31 22:19:13 +02:00
Andre Richter
d901ae6cfe
Update copyright 2022-01-15 21:50:11 +01:00
Andre Richter
7d02537515
Bump toolchain 2021-12-20 00:01:38 +01:00
Andre Richter
ea8ef5a7f1
More Readme fixes 2021-12-02 23:36:52 +01:00
Andre Richter
b8227b7e5d
Typos 2021-12-02 23:10:18 +01:00
Andre Richter
02c01c821b
Refactor memory subsystem code
This patch refactors big chunks of the memory subsystem code.

Most of all, it does away with the the design being based around the raw pointer
type "*const Page". While raw pointers to an actual page seemed like a
compelling idea, in practice it turned out difficult. Rust feels a bit
inconsistent with respect to raw pointers. While it is safe to create them out
of nowhere (only dereferencing is unsafe), it gets weird when multi-threading
comes into picture.

For example, wrapping them into synchronization primitives caused issues because
they don't implement Send. For this reason, we switch to the PageAddress type
which is based on usize, which makes things a lot easier.

Other changes/benefits include:

- Gets rid of unsafe code in the removed PageSlice type.

- Decouple the translation table code and MMIO VA allocation.

- For the translation table tool, make better use of what the ELF format already
  provides with respect to memory segmentation and translation. For example, the
  tool now queries the ELF file for VA->PA translations and other segment
  attributes. This has also the added benefit of reduced BSP code and more
  generic code in the tool.

- Packs rbelftools in the Docker image now (used by translation table tool).

- In tutorials 14/15/16, rearrange the PA and VA layout.
2021-12-02 20:44:12 +01:00
Andre Richter
dee575bb18
Bump QEMU to 6.1; Tag Docker images from now on 2021-11-13 13:12:10 +01:00
Andre Richter
431b18d17b
Improve some func/var naming 2021-11-13 12:24:52 +01:00
Andre Richter
57c6f72936
Make address translation a feature of the tables 2021-11-13 12:07:47 +01:00
Andre Richter
920af57ab4
Refactor parts of exception handling 2021-10-27 20:40:38 +02:00
Andre Richter
fb4a30f64c
Upgrade to Rust 2021 edition 2021-10-13 08:19:06 +02:00
Andre Richter
909b05b23f
Bump compiler version 2021-10-13 08:17:25 +02:00
Andre Richter
de3ba3e871 Refactor Tests and Makefile
- Carve out common files for tests
- Add boot tests starting tutorial 3
- Overhaul the Makefile for more structure
2021-07-12 22:27:32 +02:00
Andre Richter
b23c4318f2 Switch to tock-registers: Documentation and misc updates 2021-07-06 23:22:56 +02:00
Andre Richter
8c2cec00be
Assembly: Use local label syntax for named labels
This prevents that they show up in the symbol table.
2021-07-04 15:50:46 +02:00
Andre Richter
7f666000ce
Init DRAM in assembly instead of Rust
See https://github.com/rust-embedded/cortex-m-rt/issues/300
2021-07-02 23:14:35 +02:00
Andre Richter
ee76b2226e
typo 2021-04-04 22:56:03 +02:00
Andre Richter
d296ad4aa4
Minor fixes 2021-04-04 22:41:55 +02:00
Andre Richter
9f1920c2c6
Give the project a name
🦩
2021-04-04 22:30:40 +02:00
Andre Richter
37cb58a944
rubocop: Fix some errors 2021-03-31 22:45:17 +02:00
Andre Richter
d6e4a03189
Add missing cfg for test 2021-03-30 23:14:09 +02:00
Andre Richter
7fee5f7114
fix typo 2021-03-30 22:55:06 +02:00
Andre Richter
035dd5421c
Add tutorial 15 2021-03-30 22:46:06 +02:00