Commit Graph

11 Commits

Author SHA1 Message Date
James Zow
52b7ac9b2f
fix ci/cd error (#195)
* fix ci/cd error

* update copyright year

* Modify remaining years

* solve ci report settings.json code style

* update .prettierrc.json

* prettierrc fix code style

* fix rb file i.to_s and code style

* fix error Line is too long. [101/100]

* Modify the Ruby file format and restore other file formats

* update makefile and readme file space
2023-09-15 14:22:15 +02:00
Andre Richter
9785300ab4
Fix newest rubocop complaints 2022-04-22 23:23:19 +02:00
Andre Richter
819f62d51b
Refactor tests for more synergy 2022-03-14 21:57:58 +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
37cb58a944
rubocop: Fix some errors 2021-03-31 22:45:17 +02:00
Andre Richter
b4e3ebc606
Add tutorial 16 2021-03-30 23:04:37 +02:00
Andre Richter
035dd5421c
Add tutorial 15 2021-03-30 22:46:06 +02:00
Andre Richter
0207c6b63f
rubocop: Enable new cops 2020-07-12 15:09:32 +02:00
Andre Richter
bb78c779ca
Introducing Minipush, a raspbootcom replacement.
Gets rid of compiled C++, uses Ruby 💎
2020-01-14 20:45:41 +01:00
Andre Richter
7f29ee84bd
Refactor utils 2020-01-09 22:11:56 +01:00
Andre Richter
29d992615d
Adapt tooling settings 2019-10-27 23:12:19 +01:00