Commit Graph

90 Commits

Author SHA1 Message Date
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
840f6d6f42
Add Cargo.toml to dependencies 2022-06-27 11:06:06 +02:00
Andre Richter
dc4e69155e
Fix rust-analyzer targets 2022-05-09 09:13:02 +02:00
Andre Richter
821979be41
Fix wrong variable in Makefile 2022-05-09 09:05:50 +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
Bryan Lee
f4f02da28e chore: replace git.io link with the original URL 2022-04-26 20:07:56 +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
Andrew Cherry
6e3051e6fd Updated to reflect rename of link.ld to kernel.ld 2022-04-19 22:49:06 +02:00
Andre Richter
e9a3c4b489
Rename main LD script to kernel.ld 2022-04-19 09:09:09 +02:00
Andre Richter
d3e5834e30
Linker: Use absolute library path 2022-04-12 21:58:40 +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
68b81aa6a0
Panic: Guard against infinite panic loops 2022-04-08 22:24:12 +02:00
°~zanez
a6be5b34ad
README.ES.md -> 01 & 02 (#150)
* README.ES.md

I added a spanish translation for the README.md file, and modified the README.md to add my github profile and to add the link to README.ES.md file

* Slightly reorganize translation overview

* README.ES.md These changes are in response to PR comments

* Update README.ES.md

* README.ES.md -> 00_before_we_start

* Updating README.ES.md

I corrected a few mistakes in both README.ES.md files.

* README.ES.md for 00 These changes are in response to PR comments

* README.ES.md -> 01_wait_forever

* README.ES.md -> 02_runtime_init

* README.md for 01 & 02 with corrections/improvements

* Update 01_wait_forever/README.ES.md

* Update 02_runtime_init/README.ES.md

Co-authored-by: zanez <zanez@protonmail.com>
Co-authored-by: Andre Richter <andre-richter@users.noreply.github.com>
Co-authored-by: Diego Barrios Romero <eldruin@gmail.com>
2022-04-01 09:14:44 +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
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
fb4a30f64c
Upgrade to Rust 2021 edition 2021-10-13 08:19:06 +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
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
5d6b68d710
rust-analyzer: Fix error with recent version 2021-07-04 15:27:34 +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
2432c0d283
Revert to assembly boot code
It is too risky to rely on the compiler to not insert any operations using the
stack.

Having a stack-setting call in Rust using the cortex-a crate as the first action
in a Rust-only _start() function does not work if you're subsequently using the
stack, because the compiler often inserts the operations to make room on the
stack to prepare a function call BEFORE the call to set the stack, which crashes
the boot process.

Hence, keep on using a small piece of assembly boot code throughout.
2021-03-20 09:41:43 +01:00
Andre Richter
223989adb9
Overhaul linker script 2021-03-16 22:36:06 +01:00
Andre Richter
eb2bee6bb1
newline 2021-03-13 00:25:14 +01:00
Andre Richter
2f90304149
Add color and verbosity to Makefile 2021-03-12 23:44:10 +01:00
Andre Richter
a5884321a7
Fix rustdoc warnings 2021-01-29 22:30:02 +01:00
Andre Richter
e7cb61b389
Refactoring
- Don't wildcard-import from arch modules. Make it explicit.
- Put translation table code into its own module.
- Put boot code in boot.rs instead of cpu.rs
- Other minor changes, most memory subsystem.
2021-01-23 22:43:59 +01:00
Andre Richter
44bb3f8942
Update copyright year 2021-01-01 11:28:32 +01:00
Andre Richter
4618858f45
Update panic_wait.rs 2020-12-27 22:58:10 +01:00
Andre Richter
4caf880e0c
Update README 2020-12-27 00:35:47 +01:00
Andre Richter
53c1163c51
01: Remove LTO to fix linking bug.
For some reason, LTO caused "_start" to start at 0x00080020
instead of 0x00080000.
2020-12-27 00:20:24 +01:00
Andre Richter
e8d30392d0
Add LTO 2020-11-23 22:44:31 +01:00
Andre Richter
bd16dfe4b3
Demangle++: Pipe through rustfilt 2020-11-20 22:27:21 +01:00
Andre Richter
b30bc518c4
Switch to GCC objdump and nm
The GCC versions of `objdump` and `nm` seem to have better out-of-the-box
support (for AArch64). Demangling works better, and instructions in objdump are
presented as 4 bytes instead of 4 * 1 bytes, which helps a lot.

Hence, switch to the GCC versions for now until LLVM has caught up.
2020-11-01 15:58:05 +01:00
Andre Richter
9e6ef76aeb
Make cortex-a platform specific dep 2020-10-28 11:45:28 +01:00
Andre Richter
8fc250fc08
Streamline READMEs 2020-10-04 22:30:07 +02:00
Andre Richter
677b274a1f
Add a panic version of the GPIO to panic!() 2020-09-30 21:51:31 +02:00
Andre Richter
1d46dd40b6
Run of prettier over whole repo 2020-09-25 21:24:56 +02:00
Andre Richter
224ac8d944
Use --headers for readelf 2020-07-21 17:47:43 +02:00
Andre Richter
325599c8b7
Fix arch and target for VS Code 2020-07-12 13:48:14 +02:00
Andre Richter
cfc3bfc996
Switch to new Rust inline asm! syntax 2020-06-29 22:27:31 +02:00
Andre Richter
82f97c000b
Switch to llvm_asm! to avoid future breakage 2020-04-22 21:38:34 +02:00
Andre Richter
98d5d79acf
Don't check in binaries anymore 2020-04-16 22:47:19 +02:00
Andre Richter
5a0d8de96b
Demangle in objdump 2020-04-15 23:38:44 +02:00
Andre Richter
bf8e6c36c7
Analyzer: Invoke cargo check through Makefile 2020-04-15 23:00:21 +02:00