Berkus Decker
40782ea7cc
chore(debug): ♻️ Upgrade gdb version and update run scripts
2022-02-10 02:14:07 +02:00
Berkus Decker
4cdeeb8556
refactor: 📦 Split kernel into machine and nucleus
...
Move openocd task to upper level and remove kernel
build dependency - the qemu runner doesn't really
depend on it.
2022-02-10 02:14:07 +02:00
Berkus Decker
b26d61cb67
build: 🛠 Improve Justfile help output
...
Enter `just` to see a list of available commands
with explanations.
Added `just ci` step.
Added `just fmt-check`.
Removed unnecessary kernel file removals.
Moved sdeject task and added `just device-eject`.
2022-01-23 16:03:03 +02:00
Berkus Decker
af3dc82c76
docs(readme): 📚 Fix kernel type terminology
...
While Vesper strives to be as thin as possible
it's not exactly an exokernel, but it's a very
thin microkernel, dubbed nanokernel here.
2022-01-23 16:03:03 +02:00
Berkus Decker
ca263b33a1
fix: Add missing #[must_use] attributes
...
Clippy was very unhappy.
2021-12-20 21:46:09 +02:00
Berkus Decker
90389705a7
feat: Stabilise asm/global_asm
...
Requires rust 1.59.0 or later.
2021-12-20 21:46:09 +02:00
Berkus Decker
5e1bbf9758
build: Bump Rust edition to 2021
2021-12-20 21:03:55 +02:00
Berkus Decker
503f43d983
build(tools): Enable target board selection
2021-12-20 17:52:14 +02:00
Berkus Decker
5a304557a7
build(tools): Add RasPi4 target configuration for OpenOCD
...
Update and move rpi3 jtag configs.
Add rpi bringup doc - lists romtables for configuring.
2021-12-20 17:51:20 +02:00
Berkus Decker
f6da27062f
build(tools): Update OpenOCD version
...
RTT patch has been merged, so use the latest 0.11.0-rc2+dev-01576-g0d9e8bd52-dirty
2021-12-20 17:51:08 +02:00
Berkus Decker
e6ddbb76e7
feat: Add zellij qemu runner with serial emulation
2021-11-17 17:19:39 +02:00
Berkus Decker
d706b2edac
chore: Bump dependencies
2021-11-17 17:16:58 +02:00
Berkus Decker
36b2d92515
Import interfaces only when used
...
Fixes clippy noserial check deny(unused_imports).
2021-07-11 20:27:41 +03:00
Berkus Decker
7af16897ec
Relax several clippy checks
2021-07-11 19:58:57 +03:00
Berkus Decker
155ae413b4
Replace wildcard imports with specific ones
2021-07-11 17:00:00 +03:00
Berkus Decker
e4b12e2c45
Update to latest versions of dependencies
2021-07-10 03:27:47 +03:00
Berkus Decker
1644f299fe
Make long hex constants readable in align tests
2021-01-27 20:10:32 +02:00
Berkus Decker
82d44a9c62
Add ASID type
2021-01-27 20:10:32 +02:00
Berkus Decker
856c4a9e68
Fix PhysAddr test
2021-01-27 19:55:52 +02:00
Berkus Decker
6281204062
Split addr module
2021-01-27 19:55:52 +02:00
Berkus Decker
d3f561d214
Implement shifts for PhysAddr
2021-01-27 19:55:52 +02:00
Berkus Decker
50e955c6a7
Print test names in test_runner
...
Based on os.phil-opp.com Testing chapter.
2021-01-27 19:22:48 +02:00
Berkus Decker
601cf7a784
Add documentation target
...
Type `just doc` to see documentation in browser.
Improve doc comments in code to support
rustdoc links format.
2021-01-27 19:22:48 +02:00
dependabot-preview[bot]
e6cea882dd
Bump cortex-a from 5.0.0 to 5.1.0
...
Bumps [cortex-a](https://github.com/rust-embedded/cortex-a ) from 5.0.0 to 5.1.0.
- [Release notes](https://github.com/rust-embedded/cortex-a/releases )
- [Commits](https://github.com/rust-embedded/cortex-a/commits/v5.1.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-29 18:36:54 +02:00
Berkus Decker
20363a7e25
Fix wasteful empty loop
...
Thanks, clippy!
2020-12-29 18:12:38 +02:00
Berkus Decker
a53ede11af
Rename nightly allocator API fns
2020-12-29 18:01:07 +02:00
Berkus Decker
74303ac7c1
Bump cortex-a and register-rs dependencies
2020-11-24 22:28:40 +02:00
Berkus Decker
f3103126ab
Add simple serial menu for playing with kernel
2020-11-20 04:35:06 +02:00
Berkus Decker
b4205f5ce6
Revert “Adjust for nightly rustfmt bug”
...
367ad5bbb2
https://github.com/rust-lang/rustfmt/issues/4528
is now fixed.
2020-11-20 03:09:43 +02:00
Berkus Decker
d85d824bfd
Switch on MMU immediately to avoid unaligned access
...
Since enabling armv6 unaligned access bit U in CP15 C1
requires AArch32 assembly and I don't want to introduce
yet another boot stub, I'll just initialize MMU right away
- this causes CPU to treat SCTLR_EL1.A differently and not
cause any alignment faults.
In the future, a small AArch32 boot stub that uses
now commented out fn enable_armv6_unaligned_access()
should be used to set U=1 and A=0 for full unaligned
access even when MMU is off. See ARM documentation
linked from that fn.
2020-11-20 03:09:43 +02:00
Berkus Decker
1de52fa109
Disable stack align checks
...
As with data align checks lets not fault on this yet.
2020-11-20 03:09:00 +02:00
Berkus Decker
696307f30c
Improve traps printing
2020-11-20 03:08:40 +02:00
Berkus Decker
4cb6f29e0d
Clean up boot-order
...
Extract shared code, fix comments.
2020-11-20 03:08:40 +02:00
Berkus Decker
43d5e4ea21
Suppress clippy warning
...
For now, no api change.
2020-11-19 14:50:52 +02:00
Berkus Decker
3147e5327a
Add display demo in main
2020-11-19 04:05:52 +02:00
Berkus Decker
e72fac01b0
Add Display output
2020-11-19 04:05:52 +02:00
Berkus Decker
2ac804793b
Add minimal RPi power management
...
* Turn the board off
* Reboot the board
2020-11-18 02:29:09 +02:00
Berkus Decker
367ad5bbb2
Adjust for nightly rustfmt bug
...
See https://github.com/rust-lang/rustfmt/issues/4528
for the bug description, namely rustfmt removes
this comment completely if it's left in the
extern block.
2020-11-17 22:56:56 +02:00
Berkus Decker
5dffa9eb8e
Add PL011 UART
2020-11-14 22:15:52 +02:00
Berkus Decker
d124b02e7c
Add set_clock_rate mailbox command
2020-11-14 22:15:52 +02:00
Berkus Decker
e8da38e04f
Add qemu-gdb target
...
Refactor QEMU runners.
2020-11-14 17:59:50 +02:00
Berkus Decker
7604f7c166
Add cargo expand task
2020-11-14 17:33:43 +02:00
Berkus Decker
09003a7da2
Traps: print more detailed exception report
2020-11-14 17:33:43 +02:00
Berkus Decker
373f4753dc
Disable alignment checks right on boot
...
Specifically, before we print any numbers - rust
core fmt_u64 uses a little optimisation that
ldrh/strh to unaligned addresses.
2020-11-14 17:33:43 +02:00
Berkus Decker
482c62d341
Change mmu detail printer formatting
...
Print mmu features before and after init.
2020-11-14 17:33:43 +02:00
Berkus Decker
df0510266e
Fix formatting
2020-11-14 17:33:43 +02:00
Berkus Decker
dc2a73f6c6
Provide memory intrinsics via compiler builtins
...
Use unstable feature to remove rlibc crate dependency.
2020-11-14 17:33:43 +02:00
Berkus Decker
bfba78118f
Move build-std flags to cargo config
2020-11-14 17:33:43 +02:00
Berkus Decker
aac05a8776
Increase stack print buffer size to print test panics
...
Tests may write pretty long messages in panic output.
2020-11-14 17:33:43 +02:00
Berkus Decker
50d9caa5f6
Set stack pointer immediately upon boot
2020-11-14 17:33:43 +02:00
Berkus Decker
20c7c8bd7e
Refactor non-DRY boot code
2020-11-14 17:33:43 +02:00
Berkus Decker
79028dba96
Add nm helper target
2020-11-04 22:24:39 +02:00
Berkus Decker
6da44a69ac
Improve gdb runner
2020-11-04 22:24:34 +02:00
Berkus Decker
d38661b63f
Add openocd/gdb targets to makefile
...
Refactor build system scripts a bit.
2020-11-03 19:29:43 +02:00
Berkus Decker
3415ccd68c
Add JTAG helpers
2020-11-03 14:03:22 +02:00
Berkus Decker
c378250aba
Init serial before the rest
...
So we could see output from all modules.
2020-11-02 20:55:18 +02:00
Berkus Decker
d342031331
Add kernel global CONSOLE
...
Init it with mini_uart - nothing else is implemented yet.
2020-10-28 21:38:53 +02:00
Berkus Decker
ab696eca8e
Implement Error type for traps module
...
Recommended by the clippy lint
https://rust-lang.github.io/rust-clippy/master/index.html#result_unit_err
Using snafu because it already has a no_std feature
unlike thiserror.
2020-10-28 21:38:53 +02:00
Berkus Decker
fef66a0191
Bump cortex-a dependency to released version
2020-10-28 21:38:53 +02:00
Berkus Decker
cecddea41e
Add mini_uart implementation
2020-10-27 19:33:23 +02:00
Berkus Decker
7a46d7d993
Add a dummy Console device
2020-10-27 19:32:54 +02:00
Berkus Decker
9f06e2f1a5
Add clippy features matrix
...
Run clippy on all available feature combos.
2020-10-27 13:09:21 +02:00
Berkus Decker
201cf1e4af
Add noserial feature flag
2020-10-27 11:34:56 +02:00
Berkus Decker
ea75413df0
Add looping/delay helpers
2020-10-27 11:34:36 +02:00
Berkus Decker
41eed8e412
Add GPIO support
2020-10-25 22:57:38 +02:00
Berkus Decker
0def5a4687
Split test failure printing in two parts
...
Due to static buffer size the panic info might not fit. We still
want to print [failed] message in this case though.
2020-10-25 22:21:42 +02:00
Berkus Decker
79baa20eb6
Adjust indentation in debug output
2020-10-25 22:21:40 +02:00
Berkus Decker
e19177da52
Add FrameBuffer configuration
2020-10-25 04:11:27 +03:00
Berkus Decker
c3d8424a46
Update cortex-a dependency
...
While we wait for merge of master repository PRs.
2020-10-24 18:08:20 +03:00
Berkus Decker
6ae59124a6
Add MailboxOps trait
2020-10-21 16:28:08 +03:00
Berkus Decker
e6d4bf6095
Improve test runner
2020-10-21 14:25:31 +03:00
Berkus Decker
d572b2c297
Move panics to separate module
...
Add special panic code for QEMU tests.
2020-10-21 14:25:31 +03:00
Berkus Decker
6c5d7a13fc
Add more information to READMEs
...
https://scarfolk.blogspot.com/
2020-10-21 05:52:08 +03:00
Berkus Decker
fb7f86abf0
Add DMA_ALLOCATOR
2020-10-21 05:52:08 +03:00
Berkus Decker
e48316cc4b
Add mailbox module
2020-10-21 05:52:08 +03:00
Berkus Decker
97e2c09871
Add bump_allocator for obtaining memory without freeing it
2020-10-21 05:51:10 +03:00
Berkus Decker
4672ddace6
Add mm module and move memory alignment functions there
2020-10-20 05:40:26 +03:00
Berkus Decker
4083e955d4
Add dummy synchronisation primitive
...
It is used yet on single-core single-thread system.
Once more threads and more cores are active, better
synchronisation primitives will be introduced.
2020-10-20 05:40:25 +03:00
Berkus Decker
88b0af44cb
Add Board Support for RPi3
2020-10-20 05:39:50 +03:00
Berkus Decker
c823b42447
Update license identification
2020-10-17 22:32:16 +03:00
Berkus Decker
0692c324af
Add trap handling and test
2020-10-15 23:42:01 +03:00
Berkus Decker
504dcd1f65
Update copyrights
2020-10-15 23:04:01 +03:00
Berkus Decker
458aba6652
Gate QEMU functions behind testing features
...
At least for now, it's not used anywhere else.
2020-10-15 22:49:31 +03:00
Berkus Decker
408857fcb6
Add documentation
2020-10-15 22:49:31 +03:00
Berkus Decker
4898ad3139
Move global options to main.rs
2020-10-15 22:36:52 +03:00
Berkus Decker
2f663f61de
Move stack start constant to linker script
2020-10-15 22:36:52 +03:00
Berkus Decker
ded53c16a7
Add MMU init code
...
Switch to cortex-a git version temporarily
(waiting for PR to be merged) with support
for all necessary registers.
2020-10-15 22:36:52 +03:00
Berkus Decker
2ef8999daf
Remove not necessary inline attributes
...
Now with the bug fixed we can optimise this code for size.
2020-10-13 22:16:19 +03:00
Berkus Decker
44ef31ff77
Add missed clobbered registers in asm block
...
Fixes mis-compilation described in rust-lang/rust#68812 .
2020-10-13 22:14:32 +03:00
Berkus Decker
44037398d4
Add hopper make target
...
hopper is useful for inspecting kernel disassembly.
2020-10-07 21:23:23 +03:00
Berkus Decker
d453d60e19
Bump qemu-exit to version 1.0
2020-10-07 13:00:30 +03:00
Berkus Decker
041c4add0d
Bump r0 to version 1.0
2020-10-07 13:00:28 +03:00
Berkus Decker
4cc5305dc8
Prepare scripts for windows CI runner
2020-10-06 19:27:50 +03:00
Berkus Decker
af1cc83530
Add testing framework
...
Based on os.phil-opp.com ideas it includes running test framework in
qemu semihosting mode so that tests can indicate pass or fail to calling
process.
GitHub Actions are configured to run these tests and validate acceptance.
Add test-runner target to perform tests in qemu.
Add -nographic for qemu running tests.
Drop serial for qemu tests as well.
2020-10-06 19:27:50 +03:00
Berkus Decker
9fd9612b77
Fix entry point to always start a binary
...
Keep vectors table.
Do not keep boot data if not referenced.
2020-09-21 04:01:21 +03:00
Berkus Decker
cd16b733e9
Add non-allocating formatted write implementation
2020-09-21 04:01:18 +03:00
Berkus Decker
f485629fb6
Add boot code for RPi and QEMU
2020-09-21 04:01:17 +03:00
Berkus Decker
668296b8e0
Fix clippy warning
2020-08-10 00:34:49 +03:00
Berkus Decker
a4a3289712
Add GH Actions build workflow
2020-08-10 00:34:49 +03:00
Berkus Decker
57e4b81e1c
Implement power-efficient sleep after boot-up
...
* arch-based crates, inspired by Redox
* Do not burn cpu uselessly.
* Start using cortex-a registers.
* Important: initialise stack pointer!
2020-08-09 22:00:36 +03:00