2021-03-20 09:47:39 +00:00
|
|
|
# Tutorial 05 - Drivers: GPIO and UART
|
2019-10-08 20:13:25 +00:00
|
|
|
|
|
|
|
## tl;dr
|
|
|
|
|
2020-10-04 20:27:28 +00:00
|
|
|
- Now that we enabled safe globals in the previous tutorial, the infrastructure is laid for adding
|
|
|
|
the first real device drivers.
|
|
|
|
- We throw out the magic QEMU console and use a real `UART` now. Like serious embedded hackers do!
|
2020-03-28 12:26:38 +00:00
|
|
|
|
|
|
|
## Notable additions
|
2019-10-08 20:13:25 +00:00
|
|
|
|
2019-10-21 20:08:43 +00:00
|
|
|
- For the first time, we will be able to run the code on the real hardware.
|
|
|
|
- Therefore, building is now differentiated between the **RPi 3** and the **RPi4**.
|
|
|
|
- By default, all `Makefile` targets will build for the **RPi 3**.
|
|
|
|
- In order to build for the the **RPi4**, prepend `BSP=rpi4` to each target. For example:
|
|
|
|
- `BSP=rpi4 make`
|
|
|
|
- `BSP=rpi4 make doc`
|
|
|
|
- Unfortunately, QEMU does not yet support the **RPi4**, so `BSP=rpi4 make qemu` won't work.
|
2020-03-28 12:26:38 +00:00
|
|
|
- A `driver::interface::DeviceDriver` trait is added for abstracting `BSP` driver implementations
|
2019-10-08 20:13:25 +00:00
|
|
|
from kernel code.
|
2020-03-28 12:26:38 +00:00
|
|
|
- Drivers are stored in `src/bsp/device_driver`, and can be reused between `BSP`s.
|
2021-03-20 08:41:43 +00:00
|
|
|
- We introduce the `GPIO` driver, which pinmuxes (that is, routing signals from inside the `SoC`
|
|
|
|
to actual HW pins) the RPi's PL011 UART.
|
2021-01-23 21:43:59 +00:00
|
|
|
- Note how this driver differentiates between **RPi 3** and **RPi4**. Their HW is different,
|
|
|
|
so we have to account for it in SW.
|
2020-03-28 12:26:38 +00:00
|
|
|
- Most importantly, the `PL011Uart` driver: It implements the `console::interface::*` traits and
|
|
|
|
is from now on used as the main system console output.
|
2021-01-23 21:43:59 +00:00
|
|
|
- `BSP`s now contain a memory map in `src/bsp/raspberrypi/memory.rs`. In the specific case, they
|
|
|
|
contain the Raspberry's `MMIO` addresses which are used to instantiate the respective device
|
|
|
|
drivers.
|
2019-11-06 21:45:29 +00:00
|
|
|
- We also modify the `panic!` handler, so that it does not anymore rely on `println!`, which uses
|
|
|
|
the globally-shared instance of the `UART` that might be locked when an error is encountered (for
|
2021-01-23 21:43:59 +00:00
|
|
|
now, this can't happen due to the `NullLock`, but with a real lock it becomes an issue).
|
2019-11-06 21:45:29 +00:00
|
|
|
- Instead, it creates a new UART driver instance, re-initializes the device and uses that one to
|
|
|
|
print. This increases the chances that the system is able to print a final important message
|
|
|
|
before it suspends itself.
|
2019-10-08 20:13:25 +00:00
|
|
|
|
2019-10-11 21:04:19 +00:00
|
|
|
## Boot it from SD card
|
|
|
|
|
2019-10-21 20:08:43 +00:00
|
|
|
Some steps for preparing the SD card differ between RPi3 and RPi4, so be careful.
|
|
|
|
|
|
|
|
### Common for both
|
|
|
|
|
2019-10-11 21:04:19 +00:00
|
|
|
1. Make a single `FAT32` partition named `boot`.
|
2019-10-21 20:08:43 +00:00
|
|
|
2. On the card, generate a file named `config.txt` with the following contents:
|
|
|
|
|
|
|
|
```txt
|
2020-09-17 20:10:43 +00:00
|
|
|
arm_64bit=1
|
2019-10-21 20:08:43 +00:00
|
|
|
init_uart_clock=48000000
|
|
|
|
```
|
|
|
|
### Pi 3
|
|
|
|
|
2020-03-28 12:26:38 +00:00
|
|
|
3. Copy the following files from the [Raspberry Pi firmware repo](https://github.com/raspberrypi/firmware/tree/master/boot) onto the SD card:
|
2019-10-21 20:08:43 +00:00
|
|
|
- [bootcode.bin](https://github.com/raspberrypi/firmware/raw/master/boot/bootcode.bin)
|
|
|
|
- [fixup.dat](https://github.com/raspberrypi/firmware/raw/master/boot/fixup.dat)
|
2019-11-06 21:45:29 +00:00
|
|
|
- [start.elf](https://github.com/raspberrypi/firmware/raw/master/boot/start.elf)
|
2020-12-26 22:59:16 +00:00
|
|
|
4. Run `make`.
|
2019-10-21 20:08:43 +00:00
|
|
|
|
|
|
|
### Pi 4
|
|
|
|
|
2020-03-28 12:26:38 +00:00
|
|
|
3. Copy the following files from the [Raspberry Pi firmware repo](https://github.com/raspberrypi/firmware/tree/master/boot) onto the SD card:
|
2019-10-21 20:08:43 +00:00
|
|
|
- [fixup4.dat](https://github.com/raspberrypi/firmware/raw/master/boot/fixup4.dat)
|
2020-02-23 15:21:41 +00:00
|
|
|
- [start4.elf](https://github.com/raspberrypi/firmware/raw/master/boot/start4.elf)
|
2019-10-21 20:08:43 +00:00
|
|
|
- [bcm2711-rpi-4-b.dtb](https://github.com/raspberrypi/firmware/raw/master/boot/bcm2711-rpi-4-b.dtb)
|
2020-12-26 22:59:16 +00:00
|
|
|
4. Run `BSP=rpi4 make`.
|
|
|
|
|
2019-10-21 20:08:43 +00:00
|
|
|
|
2020-03-28 12:26:38 +00:00
|
|
|
_**Note**: Should it not work on your RPi4, try renaming `start4.elf` to `start.elf` (without the 4)
|
|
|
|
on the SD card._
|
2020-02-23 15:21:41 +00:00
|
|
|
|
2019-10-21 20:08:43 +00:00
|
|
|
### Common again
|
|
|
|
|
2020-12-26 22:59:16 +00:00
|
|
|
5. Copy the `kernel8.img` onto the SD card and insert it back into the RPi.
|
2020-11-08 22:37:17 +00:00
|
|
|
6. Run the `miniterm` target, which opens the UART device on the host:
|
2019-10-11 21:04:19 +00:00
|
|
|
|
|
|
|
```console
|
2020-11-08 22:37:17 +00:00
|
|
|
$ make miniterm
|
2019-10-11 21:04:19 +00:00
|
|
|
```
|
|
|
|
|
2020-11-08 22:37:17 +00:00
|
|
|
> ❗ **NOTE**: `Miniterm` assumes a default serial device name of `/dev/ttyUSB0`. Depending on your
|
|
|
|
> host operating system, the device name might differ. For example, on `macOS`, it might be
|
|
|
|
> something like `/dev/tty.usbserial-0001`. In this case, please give the name explicitly:
|
2020-04-11 20:07:59 +00:00
|
|
|
|
2019-10-21 20:08:43 +00:00
|
|
|
|
|
|
|
```console
|
2020-11-08 22:37:17 +00:00
|
|
|
$ DEV_SERIAL=/dev/tty.usbserial-0001 make miniterm
|
|
|
|
```
|
|
|
|
|
2020-12-26 22:59:16 +00:00
|
|
|
7. Connect the USB serial to your host PC.
|
|
|
|
- Wiring diagram at [top-level README](../README.md#-usb-serial-output).
|
|
|
|
- Make sure that you **DID NOT** connect the power pin of the USB serial. Only RX/TX and GND.
|
|
|
|
8. Connect the RPi to the (USB) power cable and observe the output:
|
2020-11-08 22:37:17 +00:00
|
|
|
|
|
|
|
```console
|
|
|
|
Miniterm 1.0
|
|
|
|
|
2020-12-26 22:59:16 +00:00
|
|
|
[MT] ⏳ Waiting for /dev/ttyUSB0
|
|
|
|
[MT] ✅ Serial connected
|
2021-04-04 20:30:40 +00:00
|
|
|
[0] mingo version 0.5.0
|
|
|
|
[1] Booting on: Raspberry Pi 3
|
|
|
|
[2] Drivers loaded:
|
2020-03-28 12:26:38 +00:00
|
|
|
1. BCM GPIO
|
|
|
|
2. BCM PL011 UART
|
2021-04-04 20:30:40 +00:00
|
|
|
[3] Chars written: 117
|
|
|
|
[4] Echoing input now
|
2019-10-21 20:08:43 +00:00
|
|
|
```
|
|
|
|
|
2020-11-08 22:37:17 +00:00
|
|
|
8. Exit by pressing <kbd>ctrl-c</kbd>.
|
2019-10-11 21:04:19 +00:00
|
|
|
|
2019-10-08 20:13:25 +00:00
|
|
|
## Diff to previous
|
2020-03-28 14:42:42 +00:00
|
|
|
```diff
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/Cargo.toml 05_drivers_gpio_uart/Cargo.toml
|
|
|
|
--- 04_safe_globals/Cargo.toml
|
|
|
|
+++ 05_drivers_gpio_uart/Cargo.toml
|
2021-04-04 20:30:40 +00:00
|
|
|
@@ -1,6 +1,6 @@
|
|
|
|
[package]
|
|
|
|
name = "mingo"
|
|
|
|
-version = "0.4.0"
|
|
|
|
+version = "0.5.0"
|
|
|
|
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
|
2021-10-11 13:46:01 +00:00
|
|
|
edition = "2021"
|
2021-04-04 20:30:40 +00:00
|
|
|
|
2021-03-12 22:44:10 +00:00
|
|
|
@@ -9,8 +9,8 @@
|
|
|
|
|
2020-03-28 14:42:42 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
2020-10-28 10:45:28 +00:00
|
|
|
-bsp_rpi3 = []
|
|
|
|
-bsp_rpi4 = []
|
2021-07-06 21:02:20 +00:00
|
|
|
+bsp_rpi3 = ["tock-registers"]
|
|
|
|
+bsp_rpi4 = ["tock-registers"]
|
2020-10-28 10:45:28 +00:00
|
|
|
|
2021-04-04 20:30:40 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "kernel"
|
|
|
|
@@ -22,6 +22,9 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
2020-10-28 10:45:28 +00:00
|
|
|
+# Optional dependencies
|
2021-07-06 21:02:20 +00:00
|
|
|
+tock-registers = { version = "0.7.x", default-features = false, features = ["register_types"], optional = true }
|
2020-10-28 10:45:28 +00:00
|
|
|
+
|
|
|
|
# Platform specific dependencies
|
|
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
2021-12-19 23:01:38 +00:00
|
|
|
cortex-a = { version = "7.x.x" }
|
2020-03-28 14:42:42 +00:00
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/Makefile 05_drivers_gpio_uart/Makefile
|
|
|
|
--- 04_safe_globals/Makefile
|
|
|
|
+++ 05_drivers_gpio_uart/Makefile
|
2021-11-13 12:12:10 +00:00
|
|
|
@@ -12,6 +12,9 @@
|
2021-07-12 20:08:22 +00:00
|
|
|
# Default to the RPi3.
|
2020-11-08 22:37:17 +00:00
|
|
|
BSP ?= rpi3
|
|
|
|
|
|
|
|
+# Default to a serial device name that is common in Linux.
|
|
|
|
+DEV_SERIAL ?= /dev/ttyUSB0
|
|
|
|
+
|
2021-07-12 20:08:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
2021-11-13 12:12:10 +00:00
|
|
|
@@ -73,6 +76,7 @@
|
2021-07-12 20:08:22 +00:00
|
|
|
|
|
|
|
EXEC_QEMU = $(QEMU_BINARY) -M $(QEMU_MACHINE_TYPE)
|
|
|
|
EXEC_TEST_DISPATCH = ruby ../common/tests/dispatch.rb
|
|
|
|
+EXEC_MINITERM = ruby ../common/serial/miniterm.rb
|
|
|
|
|
|
|
|
##------------------------------------------------------------------------------
|
|
|
|
## Dockerization
|
2021-11-13 12:12:10 +00:00
|
|
|
@@ -80,18 +84,26 @@
|
2021-07-12 20:08:22 +00:00
|
|
|
DOCKER_CMD = docker run -t --rm -v $(shell pwd):/work/tutorial -w /work/tutorial
|
|
|
|
DOCKER_CMD_INTERACT = $(DOCKER_CMD) -i
|
|
|
|
DOCKER_ARG_DIR_COMMON = -v $(shell pwd)/../common:/work/common
|
|
|
|
+DOCKER_ARG_DEV = --privileged -v /dev:/dev
|
2020-11-08 22:37:17 +00:00
|
|
|
|
2021-11-13 12:12:10 +00:00
|
|
|
# DOCKER_IMAGE defined in include file (see top of this file).
|
2021-03-12 22:44:10 +00:00
|
|
|
DOCKER_QEMU = $(DOCKER_CMD_INTERACT) $(DOCKER_IMAGE)
|
|
|
|
DOCKER_TOOLS = $(DOCKER_CMD) $(DOCKER_IMAGE)
|
2021-07-12 20:08:22 +00:00
|
|
|
DOCKER_TEST = $(DOCKER_CMD) $(DOCKER_ARG_DIR_COMMON) $(DOCKER_IMAGE)
|
2020-11-08 22:37:17 +00:00
|
|
|
|
2021-07-12 20:08:22 +00:00
|
|
|
+# Dockerize commands, which require USB device passthrough, only on Linux.
|
|
|
|
+ifeq ($(shell uname -s),Linux)
|
2020-11-08 22:37:17 +00:00
|
|
|
+ DOCKER_CMD_DEV = $(DOCKER_CMD_INTERACT) $(DOCKER_ARG_DEV)
|
|
|
|
+
|
2021-07-12 20:08:22 +00:00
|
|
|
+ DOCKER_MINITERM = $(DOCKER_CMD_DEV) $(DOCKER_ARG_DIR_COMMON) $(DOCKER_IMAGE)
|
2020-11-08 22:37:17 +00:00
|
|
|
+endif
|
|
|
|
+
|
|
|
|
|
2021-07-12 20:08:22 +00:00
|
|
|
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
|
|
|
## Targets
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
2020-11-08 22:37:17 +00:00
|
|
|
-.PHONY: all $(KERNEL_ELF) $(KERNEL_BIN) doc qemu clippy clean readelf objdump nm check
|
2020-11-08 22:43:56 +00:00
|
|
|
+.PHONY: all $(KERNEL_ELF) $(KERNEL_BIN) doc qemu miniterm clippy clean readelf objdump nm check
|
2020-11-08 22:37:17 +00:00
|
|
|
|
|
|
|
all: $(KERNEL_BIN)
|
|
|
|
|
2021-11-13 12:12:10 +00:00
|
|
|
@@ -131,6 +143,12 @@
|
2020-11-08 22:37:17 +00:00
|
|
|
endif
|
|
|
|
|
2021-07-12 20:08:22 +00:00
|
|
|
##------------------------------------------------------------------------------
|
|
|
|
+## Connect to the target's serial
|
|
|
|
+##------------------------------------------------------------------------------
|
2020-11-08 22:37:17 +00:00
|
|
|
+miniterm:
|
|
|
|
+ @$(DOCKER_MINITERM) $(EXEC_MINITERM) $(DEV_SERIAL)
|
|
|
|
+
|
2021-07-12 20:08:22 +00:00
|
|
|
+##------------------------------------------------------------------------------
|
|
|
|
## Run clippy
|
|
|
|
##------------------------------------------------------------------------------
|
2020-11-08 22:37:17 +00:00
|
|
|
clippy:
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/_arch/aarch64/cpu.rs 05_drivers_gpio_uart/src/_arch/aarch64/cpu.rs
|
|
|
|
--- 04_safe_globals/src/_arch/aarch64/cpu.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/_arch/aarch64/cpu.rs
|
2021-01-28 22:25:57 +00:00
|
|
|
@@ -17,6 +17,17 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
// Public Code
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
+pub use asm::nop;
|
|
|
|
+
|
|
|
|
+/// Spin for `n` cycles.
|
2021-01-28 22:25:57 +00:00
|
|
|
+#[cfg(feature = "bsp_rpi3")]
|
2020-03-28 14:42:42 +00:00
|
|
|
+#[inline(always)]
|
|
|
|
+pub fn spin_for_cycles(n: usize) {
|
|
|
|
+ for _ in 0..n {
|
|
|
|
+ asm::nop();
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
/// Pause execution on the core.
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn wait_forever() -> ! {
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/bsp/device_driver/bcm/bcm2xxx_gpio.rs 05_drivers_gpio_uart/src/bsp/device_driver/bcm/bcm2xxx_gpio.rs
|
|
|
|
--- 04_safe_globals/src/bsp/device_driver/bcm/bcm2xxx_gpio.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/bsp/device_driver/bcm/bcm2xxx_gpio.rs
|
2021-07-06 21:02:20 +00:00
|
|
|
@@ -0,0 +1,225 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
+// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
+//
|
2022-01-15 20:50:11 +00:00
|
|
|
+// Copyright (c) 2018-2022 Andre Richter <andre.o.richter@gmail.com>
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//! GPIO Driver.
|
|
|
|
+
|
2020-07-12 10:44:03 +00:00
|
|
|
+use crate::{
|
2020-11-14 08:57:31 +00:00
|
|
|
+ bsp::device_driver::common::MMIODerefWrapper, driver, synchronization,
|
2020-07-12 10:44:03 +00:00
|
|
|
+ synchronization::NullLock,
|
|
|
|
+};
|
2021-07-06 21:02:20 +00:00
|
|
|
+use tock_registers::{
|
|
|
|
+ interfaces::{ReadWriteable, Writeable},
|
|
|
|
+ register_bitfields, register_structs,
|
|
|
|
+ registers::ReadWrite,
|
|
|
|
+};
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Private Definitions
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
|
|
|
+// GPIO registers.
|
|
|
|
+//
|
|
|
|
+// Descriptions taken from
|
2020-11-14 08:57:31 +00:00
|
|
|
+// - https://github.com/raspberrypi/documentation/files/1888662/BCM2837-ARM-Peripherals.-.Revised.-.V2-1.pdf
|
|
|
|
+// - https://datasheets.raspberrypi.org/bcm2711/bcm2711-peripherals.pdf
|
2020-03-28 14:42:42 +00:00
|
|
|
+register_bitfields! {
|
|
|
|
+ u32,
|
|
|
|
+
|
|
|
|
+ /// GPIO Function Select 1
|
|
|
|
+ GPFSEL1 [
|
|
|
|
+ /// Pin 15
|
|
|
|
+ FSEL15 OFFSET(15) NUMBITS(3) [
|
|
|
|
+ Input = 0b000,
|
|
|
|
+ Output = 0b001,
|
|
|
|
+ AltFunc0 = 0b100 // PL011 UART RX
|
|
|
|
+
|
|
|
|
+ ],
|
|
|
|
+
|
|
|
|
+ /// Pin 14
|
|
|
|
+ FSEL14 OFFSET(12) NUMBITS(3) [
|
|
|
|
+ Input = 0b000,
|
|
|
|
+ Output = 0b001,
|
|
|
|
+ AltFunc0 = 0b100 // PL011 UART TX
|
|
|
|
+ ]
|
|
|
|
+ ],
|
|
|
|
+
|
2020-11-14 08:57:31 +00:00
|
|
|
+ /// GPIO Pull-up/down Register
|
|
|
|
+ ///
|
|
|
|
+ /// BCM2837 only.
|
|
|
|
+ GPPUD [
|
|
|
|
+ /// Controls the actuation of the internal pull-up/down control line to ALL the GPIO pins.
|
|
|
|
+ PUD OFFSET(0) NUMBITS(2) [
|
|
|
|
+ Off = 0b00,
|
|
|
|
+ PullDown = 0b01,
|
|
|
|
+ PullUp = 0b10
|
|
|
|
+ ]
|
|
|
|
+ ],
|
|
|
|
+
|
2020-03-28 14:42:42 +00:00
|
|
|
+ /// GPIO Pull-up/down Clock Register 0
|
2020-11-14 08:57:31 +00:00
|
|
|
+ ///
|
|
|
|
+ /// BCM2837 only.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ GPPUDCLK0 [
|
|
|
|
+ /// Pin 15
|
|
|
|
+ PUDCLK15 OFFSET(15) NUMBITS(1) [
|
|
|
|
+ NoEffect = 0,
|
|
|
|
+ AssertClock = 1
|
|
|
|
+ ],
|
|
|
|
+
|
|
|
|
+ /// Pin 14
|
|
|
|
+ PUDCLK14 OFFSET(14) NUMBITS(1) [
|
|
|
|
+ NoEffect = 0,
|
|
|
|
+ AssertClock = 1
|
|
|
|
+ ]
|
2020-11-14 08:57:31 +00:00
|
|
|
+ ],
|
|
|
|
+
|
|
|
|
+ /// GPIO Pull-up / Pull-down Register 0
|
|
|
|
+ ///
|
|
|
|
+ /// BCM2711 only.
|
|
|
|
+ GPIO_PUP_PDN_CNTRL_REG0 [
|
|
|
|
+ /// Pin 15
|
|
|
|
+ GPIO_PUP_PDN_CNTRL15 OFFSET(30) NUMBITS(2) [
|
|
|
|
+ NoResistor = 0b00,
|
|
|
|
+ PullUp = 0b01
|
|
|
|
+ ],
|
|
|
|
+
|
|
|
|
+ /// Pin 14
|
|
|
|
+ GPIO_PUP_PDN_CNTRL14 OFFSET(28) NUMBITS(2) [
|
|
|
|
+ NoResistor = 0b00,
|
|
|
|
+ PullUp = 0b01
|
|
|
|
+ ]
|
2020-03-28 14:42:42 +00:00
|
|
|
+ ]
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+register_structs! {
|
|
|
|
+ #[allow(non_snake_case)]
|
|
|
|
+ RegisterBlock {
|
2020-11-14 08:57:31 +00:00
|
|
|
+ (0x00 => _reserved1),
|
2020-03-28 14:42:42 +00:00
|
|
|
+ (0x04 => GPFSEL1: ReadWrite<u32, GPFSEL1::Register>),
|
2020-11-14 08:57:31 +00:00
|
|
|
+ (0x08 => _reserved2),
|
|
|
|
+ (0x94 => GPPUD: ReadWrite<u32, GPPUD::Register>),
|
2020-03-28 14:42:42 +00:00
|
|
|
+ (0x98 => GPPUDCLK0: ReadWrite<u32, GPPUDCLK0::Register>),
|
2020-11-14 08:57:31 +00:00
|
|
|
+ (0x9C => _reserved3),
|
|
|
|
+ (0xE4 => GPIO_PUP_PDN_CNTRL_REG0: ReadWrite<u32, GPIO_PUP_PDN_CNTRL_REG0::Register>),
|
|
|
|
+ (0xE8 => @END),
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
2020-07-12 10:44:03 +00:00
|
|
|
+/// Abstraction for the associated MMIO registers.
|
|
|
|
+type Registers = MMIODerefWrapper<RegisterBlock>;
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Public Definitions
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
2020-09-30 19:51:31 +00:00
|
|
|
+pub struct GPIOInner {
|
|
|
|
+ registers: Registers,
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Export the inner struct so that BSPs can use it for the panic handler.
|
|
|
|
+pub use GPIOInner as PanicGPIO;
|
|
|
|
+
|
2020-03-28 14:42:42 +00:00
|
|
|
+/// Representation of the GPIO HW.
|
|
|
|
+pub struct GPIO {
|
2020-09-30 19:51:31 +00:00
|
|
|
+ inner: NullLock<GPIOInner>,
|
2020-03-28 14:42:42 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Public Code
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
2020-09-30 19:51:31 +00:00
|
|
|
+impl GPIOInner {
|
2020-03-28 14:42:42 +00:00
|
|
|
+ /// Create an instance.
|
|
|
|
+ ///
|
|
|
|
+ /// # Safety
|
|
|
|
+ ///
|
2020-09-30 19:51:31 +00:00
|
|
|
+ /// - The user must ensure to provide a correct MMIO start address.
|
|
|
|
+ pub const unsafe fn new(mmio_start_addr: usize) -> Self {
|
2020-03-28 14:42:42 +00:00
|
|
|
+ Self {
|
2020-09-30 19:51:31 +00:00
|
|
|
+ registers: Registers::new(mmio_start_addr),
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
2020-11-14 08:57:31 +00:00
|
|
|
+ /// Disable pull-up/down on pins 14 and 15.
|
|
|
|
+ #[cfg(feature = "bsp_rpi3")]
|
|
|
|
+ fn disable_pud_14_15_bcm2837(&mut self) {
|
|
|
|
+ use crate::cpu;
|
|
|
|
+
|
|
|
|
+ // Make an educated guess for a good delay value (Sequence described in the BCM2837
|
|
|
|
+ // peripherals PDF).
|
|
|
|
+ //
|
|
|
|
+ // - According to Wikipedia, the fastest Pi3 clocks around 1.4 GHz.
|
|
|
|
+ // - The Linux 2837 GPIO driver waits 1 µs between the steps.
|
|
|
|
+ //
|
|
|
|
+ // So lets try to be on the safe side and default to 2000 cycles, which would equal 1 µs
|
|
|
|
+ // would the CPU be clocked at 2 GHz.
|
|
|
|
+ const DELAY: usize = 2000;
|
|
|
|
+
|
|
|
|
+ self.registers.GPPUD.write(GPPUD::PUD::Off);
|
|
|
|
+ cpu::spin_for_cycles(DELAY);
|
|
|
|
+
|
|
|
|
+ self.registers
|
|
|
|
+ .GPPUDCLK0
|
|
|
|
+ .write(GPPUDCLK0::PUDCLK15::AssertClock + GPPUDCLK0::PUDCLK14::AssertClock);
|
|
|
|
+ cpu::spin_for_cycles(DELAY);
|
|
|
|
+
|
|
|
|
+ self.registers.GPPUD.write(GPPUD::PUD::Off);
|
|
|
|
+ self.registers.GPPUDCLK0.set(0);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Disable pull-up/down on pins 14 and 15.
|
|
|
|
+ #[cfg(feature = "bsp_rpi4")]
|
|
|
|
+ fn disable_pud_14_15_bcm2711(&mut self) {
|
|
|
|
+ self.registers.GPIO_PUP_PDN_CNTRL_REG0.write(
|
|
|
|
+ GPIO_PUP_PDN_CNTRL_REG0::GPIO_PUP_PDN_CNTRL15::PullUp
|
|
|
|
+ + GPIO_PUP_PDN_CNTRL_REG0::GPIO_PUP_PDN_CNTRL14::PullUp,
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+
|
2020-03-28 14:42:42 +00:00
|
|
|
+ /// Map PL011 UART as standard output.
|
|
|
|
+ ///
|
|
|
|
+ /// TX to pin 14
|
|
|
|
+ /// RX to pin 15
|
2020-09-30 19:51:31 +00:00
|
|
|
+ pub fn map_pl011_uart(&mut self) {
|
2020-11-14 08:57:31 +00:00
|
|
|
+ // Select the UART on pins 14 and 15.
|
2020-09-30 19:51:31 +00:00
|
|
|
+ self.registers
|
|
|
|
+ .GPFSEL1
|
2020-11-14 08:57:31 +00:00
|
|
|
+ .modify(GPFSEL1::FSEL15::AltFunc0 + GPFSEL1::FSEL14::AltFunc0);
|
2020-09-30 19:51:31 +00:00
|
|
|
+
|
2020-11-14 08:57:31 +00:00
|
|
|
+ // Disable pull-up/down on pins 14 and 15.
|
|
|
|
+ #[cfg(feature = "bsp_rpi3")]
|
|
|
|
+ self.disable_pud_14_15_bcm2837();
|
2020-09-30 19:51:31 +00:00
|
|
|
+
|
2020-11-14 08:57:31 +00:00
|
|
|
+ #[cfg(feature = "bsp_rpi4")]
|
|
|
|
+ self.disable_pud_14_15_bcm2711();
|
2020-09-30 19:51:31 +00:00
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl GPIO {
|
|
|
|
+ /// Create an instance.
|
|
|
|
+ ///
|
|
|
|
+ /// # Safety
|
|
|
|
+ ///
|
|
|
|
+ /// - The user must ensure to provide a correct MMIO start address.
|
|
|
|
+ pub const unsafe fn new(mmio_start_addr: usize) -> Self {
|
|
|
|
+ Self {
|
|
|
|
+ inner: NullLock::new(GPIOInner::new(mmio_start_addr)),
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Concurrency safe version of `GPIOInner.map_pl011_uart()`
|
2020-03-28 14:42:42 +00:00
|
|
|
+ pub fn map_pl011_uart(&self) {
|
2020-11-20 21:05:14 +00:00
|
|
|
+ self.inner.lock(|inner| inner.map_pl011_uart())
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//------------------------------------------------------------------------------
|
|
|
|
+// OS Interface Code
|
|
|
|
+//------------------------------------------------------------------------------
|
|
|
|
+use synchronization::interface::Mutex;
|
|
|
|
+
|
|
|
|
+impl driver::interface::DeviceDriver for GPIO {
|
2020-09-29 19:43:31 +00:00
|
|
|
+ fn compatible(&self) -> &'static str {
|
2020-03-28 14:42:42 +00:00
|
|
|
+ "BCM GPIO"
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs 05_drivers_gpio_uart/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs
|
|
|
|
--- 04_safe_globals/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs
|
2021-11-08 08:01:37 +00:00
|
|
|
@@ -0,0 +1,402 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
+// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
+//
|
2022-01-15 20:50:11 +00:00
|
|
|
+// Copyright (c) 2018-2022 Andre Richter <andre.o.richter@gmail.com>
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//! PL011 UART driver.
|
2021-01-28 22:25:57 +00:00
|
|
|
+//!
|
|
|
|
+//! # Resources
|
|
|
|
+//!
|
2021-01-29 21:30:02 +00:00
|
|
|
+//! - <https://github.com/raspberrypi/documentation/files/1888662/BCM2837-ARM-Peripherals.-.Revised.-.V2-1.pdf>
|
|
|
|
+//! - <https://developer.arm.com/documentation/ddi0183/latest>
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
2020-07-12 10:44:03 +00:00
|
|
|
+use crate::{
|
|
|
|
+ bsp::device_driver::common::MMIODerefWrapper, console, cpu, driver, synchronization,
|
|
|
|
+ synchronization::NullLock,
|
|
|
|
+};
|
|
|
|
+use core::fmt;
|
2021-07-06 21:02:20 +00:00
|
|
|
+use tock_registers::{
|
|
|
|
+ interfaces::{Readable, Writeable},
|
|
|
|
+ register_bitfields, register_structs,
|
|
|
|
+ registers::{ReadOnly, ReadWrite, WriteOnly},
|
|
|
|
+};
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Private Definitions
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
|
|
|
+// PL011 UART registers.
|
|
|
|
+//
|
2021-01-28 22:25:57 +00:00
|
|
|
+// Descriptions taken from "PrimeCell UART (PL011) Technical Reference Manual" r1p5.
|
2020-03-28 14:42:42 +00:00
|
|
|
+register_bitfields! {
|
|
|
|
+ u32,
|
|
|
|
+
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// Flag Register.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ FR [
|
|
|
|
+ /// Transmit FIFO empty. The meaning of this bit depends on the state of the FEN bit in the
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// Line Control Register, LCR_H.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ ///
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// - If the FIFO is disabled, this bit is set when the transmit holding register is empty.
|
|
|
|
+ /// - If the FIFO is enabled, the TXFE bit is set when the transmit FIFO is empty.
|
|
|
|
+ /// - This bit does not indicate if there is data in the transmit shift register.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ TXFE OFFSET(7) NUMBITS(1) [],
|
|
|
|
+
|
|
|
|
+ /// Transmit FIFO full. The meaning of this bit depends on the state of the FEN bit in the
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// LCR_H Register.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ ///
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// - If the FIFO is disabled, this bit is set when the transmit holding register is full.
|
|
|
|
+ /// - If the FIFO is enabled, the TXFF bit is set when the transmit FIFO is full.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ TXFF OFFSET(5) NUMBITS(1) [],
|
|
|
|
+
|
|
|
|
+ /// Receive FIFO empty. The meaning of this bit depends on the state of the FEN bit in the
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// LCR_H Register.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ ///
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// - If the FIFO is disabled, this bit is set when the receive holding register is empty.
|
|
|
|
+ /// - If the FIFO is enabled, the RXFE bit is set when the receive FIFO is empty.
|
|
|
|
+ RXFE OFFSET(4) NUMBITS(1) [],
|
|
|
|
+
|
|
|
|
+ /// UART busy. If this bit is set to 1, the UART is busy transmitting data. This bit remains
|
|
|
|
+ /// set until the complete byte, including all the stop bits, has been sent from the shift
|
|
|
|
+ /// register.
|
|
|
|
+ ///
|
|
|
|
+ /// This bit is set as soon as the transmit FIFO becomes non-empty, regardless of whether
|
|
|
|
+ /// the UART is enabled or not.
|
|
|
|
+ BUSY OFFSET(3) NUMBITS(1) []
|
2020-03-28 14:42:42 +00:00
|
|
|
+ ],
|
|
|
|
+
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// Integer Baud Rate Divisor.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ IBRD [
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// The integer baud rate divisor.
|
|
|
|
+ BAUD_DIVINT OFFSET(0) NUMBITS(16) []
|
2020-03-28 14:42:42 +00:00
|
|
|
+ ],
|
|
|
|
+
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// Fractional Baud Rate Divisor.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ FBRD [
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// The fractional baud rate divisor.
|
|
|
|
+ BAUD_DIVFRAC OFFSET(0) NUMBITS(6) []
|
2020-03-28 14:42:42 +00:00
|
|
|
+ ],
|
|
|
|
+
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// Line Control Register.
|
|
|
|
+ LCR_H [
|
2020-03-28 14:42:42 +00:00
|
|
|
+ /// Word length. These bits indicate the number of data bits transmitted or received in a
|
|
|
|
+ /// frame.
|
2021-07-06 21:02:20 +00:00
|
|
|
+ #[allow(clippy::enum_variant_names)]
|
2020-03-28 14:42:42 +00:00
|
|
|
+ WLEN OFFSET(5) NUMBITS(2) [
|
|
|
|
+ FiveBit = 0b00,
|
|
|
|
+ SixBit = 0b01,
|
|
|
|
+ SevenBit = 0b10,
|
|
|
|
+ EightBit = 0b11
|
|
|
|
+ ],
|
|
|
|
+
|
|
|
|
+ /// Enable FIFOs:
|
|
|
|
+ ///
|
|
|
|
+ /// 0 = FIFOs are disabled (character mode) that is, the FIFOs become 1-byte-deep holding
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// registers.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ ///
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// 1 = Transmit and receive FIFO buffers are enabled (FIFO mode).
|
2020-03-28 14:42:42 +00:00
|
|
|
+ FEN OFFSET(4) NUMBITS(1) [
|
|
|
|
+ FifosDisabled = 0,
|
|
|
|
+ FifosEnabled = 1
|
|
|
|
+ ]
|
|
|
|
+ ],
|
|
|
|
+
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// Control Register.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ CR [
|
|
|
|
+ /// Receive enable. If this bit is set to 1, the receive section of the UART is enabled.
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// Data reception occurs for either UART signals or SIR signals depending on the setting of
|
|
|
|
+ /// the SIREN bit. When the UART is disabled in the middle of reception, it completes the
|
|
|
|
+ /// current character before stopping.
|
|
|
|
+ RXE OFFSET(9) NUMBITS(1) [
|
2020-03-28 14:42:42 +00:00
|
|
|
+ Disabled = 0,
|
|
|
|
+ Enabled = 1
|
|
|
|
+ ],
|
|
|
|
+
|
|
|
|
+ /// Transmit enable. If this bit is set to 1, the transmit section of the UART is enabled.
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// Data transmission occurs for either UART signals, or SIR signals depending on the
|
|
|
|
+ /// setting of the SIREN bit. When the UART is disabled in the middle of transmission, it
|
|
|
|
+ /// completes the current character before stopping.
|
|
|
|
+ TXE OFFSET(8) NUMBITS(1) [
|
2020-03-28 14:42:42 +00:00
|
|
|
+ Disabled = 0,
|
|
|
|
+ Enabled = 1
|
|
|
|
+ ],
|
|
|
|
+
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// UART enable:
|
|
|
|
+ ///
|
|
|
|
+ /// 0 = UART is disabled. If the UART is disabled in the middle of transmission or
|
|
|
|
+ /// reception, it completes the current character before stopping.
|
|
|
|
+ ///
|
|
|
|
+ /// 1 = The UART is enabled. Data transmission and reception occurs for either UART signals
|
|
|
|
+ /// or SIR signals depending on the setting of the SIREN bit
|
2020-03-28 14:42:42 +00:00
|
|
|
+ UARTEN OFFSET(0) NUMBITS(1) [
|
|
|
|
+ /// If the UART is disabled in the middle of transmission or reception, it completes the
|
|
|
|
+ /// current character before stopping.
|
|
|
|
+ Disabled = 0,
|
|
|
|
+ Enabled = 1
|
|
|
|
+ ]
|
|
|
|
+ ],
|
|
|
|
+
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// Interrupt Clear Register.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ ICR [
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// Meta field for all pending interrupts.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ ALL OFFSET(0) NUMBITS(11) []
|
|
|
|
+ ]
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+register_structs! {
|
|
|
|
+ #[allow(non_snake_case)]
|
|
|
|
+ pub RegisterBlock {
|
|
|
|
+ (0x00 => DR: ReadWrite<u32>),
|
|
|
|
+ (0x04 => _reserved1),
|
|
|
|
+ (0x18 => FR: ReadOnly<u32, FR::Register>),
|
|
|
|
+ (0x1c => _reserved2),
|
|
|
|
+ (0x24 => IBRD: WriteOnly<u32, IBRD::Register>),
|
|
|
|
+ (0x28 => FBRD: WriteOnly<u32, FBRD::Register>),
|
2021-01-28 22:25:57 +00:00
|
|
|
+ (0x2c => LCR_H: WriteOnly<u32, LCR_H::Register>),
|
2020-03-28 14:42:42 +00:00
|
|
|
+ (0x30 => CR: WriteOnly<u32, CR::Register>),
|
|
|
|
+ (0x34 => _reserved3),
|
|
|
|
+ (0x44 => ICR: WriteOnly<u32, ICR::Register>),
|
|
|
|
+ (0x48 => @END),
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
2020-07-12 10:44:03 +00:00
|
|
|
+/// Abstraction for the associated MMIO registers.
|
|
|
|
+type Registers = MMIODerefWrapper<RegisterBlock>;
|
|
|
|
+
|
2021-01-04 13:37:17 +00:00
|
|
|
+#[derive(PartialEq)]
|
|
|
|
+enum BlockingMode {
|
|
|
|
+ Blocking,
|
|
|
|
+ NonBlocking,
|
|
|
|
+}
|
|
|
|
+
|
2020-07-12 10:44:03 +00:00
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Public Definitions
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
2020-03-28 14:42:42 +00:00
|
|
|
+pub struct PL011UartInner {
|
2020-07-12 10:44:03 +00:00
|
|
|
+ registers: Registers,
|
2020-03-28 14:42:42 +00:00
|
|
|
+ chars_written: usize,
|
|
|
|
+ chars_read: usize,
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Export the inner struct so that BSPs can use it for the panic handler.
|
|
|
|
+pub use PL011UartInner as PanicUart;
|
|
|
|
+
|
|
|
|
+/// Representation of the UART.
|
|
|
|
+pub struct PL011Uart {
|
|
|
|
+ inner: NullLock<PL011UartInner>,
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Public Code
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
|
|
|
+impl PL011UartInner {
|
|
|
|
+ /// Create an instance.
|
|
|
|
+ ///
|
|
|
|
+ /// # Safety
|
|
|
|
+ ///
|
2020-09-30 19:51:31 +00:00
|
|
|
+ /// - The user must ensure to provide a correct MMIO start address.
|
|
|
|
+ pub const unsafe fn new(mmio_start_addr: usize) -> Self {
|
2020-03-28 14:42:42 +00:00
|
|
|
+ Self {
|
2020-09-30 19:51:31 +00:00
|
|
|
+ registers: Registers::new(mmio_start_addr),
|
2020-03-28 14:42:42 +00:00
|
|
|
+ chars_written: 0,
|
|
|
|
+ chars_read: 0,
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Set up baud rate and characteristics.
|
|
|
|
+ ///
|
2021-01-04 13:37:17 +00:00
|
|
|
+ /// This results in 8N1 and 921_600 baud.
|
2020-07-21 15:48:07 +00:00
|
|
|
+ ///
|
2021-01-04 13:37:17 +00:00
|
|
|
+ /// The calculation for the BRD is (we set the clock to 48 MHz in config.txt):
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// `(48_000_000 / 16) / 921_600 = 3.2552083`.
|
|
|
|
+ ///
|
|
|
|
+ /// This means the integer part is `3` and goes into the `IBRD`.
|
|
|
|
+ /// The fractional part is `0.2552083`.
|
2021-01-01 22:12:42 +00:00
|
|
|
+ ///
|
2021-01-28 22:25:57 +00:00
|
|
|
+ /// `FBRD` calculation according to the PL011 Technical Reference Manual:
|
|
|
|
+ /// `INTEGER((0.2552083 * 64) + 0.5) = 16`.
|
|
|
|
+ ///
|
|
|
|
+ /// Therefore, the generated baud rate divider is: `3 + 16/64 = 3.25`. Which results in a
|
|
|
|
+ /// genrated baud rate of `48_000_000 / (16 * 3.25) = 923_077`.
|
|
|
|
+ ///
|
|
|
|
+ /// Error = `((923_077 - 921_600) / 921_600) * 100 = 0.16modulo`.
|
2020-03-28 14:42:42 +00:00
|
|
|
+ pub fn init(&mut self) {
|
2021-01-04 13:37:17 +00:00
|
|
|
+ // Execution can arrive here while there are still characters queued in the TX FIFO and
|
|
|
|
+ // actively being sent out by the UART hardware. If the UART is turned off in this case,
|
|
|
|
+ // those queued characters would be lost.
|
|
|
|
+ //
|
|
|
|
+ // For example, this can happen during runtime on a call to panic!(), because panic!()
|
|
|
|
+ // initializes its own UART instance and calls init().
|
|
|
|
+ //
|
|
|
|
+ // Hence, flush first to ensure all pending characters are transmitted.
|
|
|
|
+ self.flush();
|
|
|
|
+
|
|
|
|
+ // Turn the UART off temporarily.
|
2020-07-12 10:44:03 +00:00
|
|
|
+ self.registers.CR.set(0);
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
2021-01-04 13:37:17 +00:00
|
|
|
+ // Clear all pending interrupts.
|
2020-07-12 10:44:03 +00:00
|
|
|
+ self.registers.ICR.write(ICR::ALL::CLEAR);
|
2021-01-04 13:37:17 +00:00
|
|
|
+
|
2021-01-28 22:25:57 +00:00
|
|
|
+ // From the PL011 Technical Reference Manual:
|
|
|
|
+ //
|
|
|
|
+ // The LCR_H, IBRD, and FBRD registers form the single 30-bit wide LCR Register that is
|
|
|
|
+ // updated on a single write strobe generated by a LCR_H write. So, to internally update the
|
|
|
|
+ // contents of IBRD or FBRD, a LCR_H write must always be performed at the end.
|
|
|
|
+ //
|
|
|
|
+ // Set the baud rate, 8N1 and FIFO enabled.
|
|
|
|
+ self.registers.IBRD.write(IBRD::BAUD_DIVINT.val(3));
|
|
|
|
+ self.registers.FBRD.write(FBRD::BAUD_DIVFRAC.val(16));
|
2020-07-12 10:44:03 +00:00
|
|
|
+ self.registers
|
2021-01-28 22:25:57 +00:00
|
|
|
+ .LCR_H
|
|
|
|
+ .write(LCR_H::WLEN::EightBit + LCR_H::FEN::FifosEnabled);
|
2021-01-04 13:37:17 +00:00
|
|
|
+
|
|
|
|
+ // Turn the UART on.
|
2020-07-12 10:44:03 +00:00
|
|
|
+ self.registers
|
|
|
|
+ .CR
|
2020-03-28 14:42:42 +00:00
|
|
|
+ .write(CR::UARTEN::Enabled + CR::TXE::Enabled + CR::RXE::Enabled);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Send a character.
|
|
|
|
+ fn write_char(&mut self, c: char) {
|
|
|
|
+ // Spin while TX FIFO full is set, waiting for an empty slot.
|
2020-07-12 10:44:03 +00:00
|
|
|
+ while self.registers.FR.matches_all(FR::TXFF::SET) {
|
2020-03-28 14:42:42 +00:00
|
|
|
+ cpu::nop();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Write the character to the buffer.
|
2020-07-12 10:44:03 +00:00
|
|
|
+ self.registers.DR.set(c as u32);
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+ self.chars_written += 1;
|
|
|
|
+ }
|
2021-01-04 13:37:17 +00:00
|
|
|
+
|
|
|
|
+ /// Block execution until the last buffered character has been physically put on the TX wire.
|
|
|
|
+ fn flush(&self) {
|
2021-01-28 22:25:57 +00:00
|
|
|
+ // Spin until the busy bit is cleared.
|
|
|
|
+ while self.registers.FR.matches_all(FR::BUSY::SET) {
|
2021-01-04 13:37:17 +00:00
|
|
|
+ cpu::nop();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Retrieve a character.
|
|
|
|
+ fn read_char_converting(&mut self, blocking_mode: BlockingMode) -> Option<char> {
|
|
|
|
+ // If RX FIFO is empty,
|
|
|
|
+ if self.registers.FR.matches_all(FR::RXFE::SET) {
|
|
|
|
+ // immediately return in non-blocking mode.
|
|
|
|
+ if blocking_mode == BlockingMode::NonBlocking {
|
|
|
|
+ return None;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Otherwise, wait until a char was received.
|
|
|
|
+ while self.registers.FR.matches_all(FR::RXFE::SET) {
|
|
|
|
+ cpu::nop();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Read one character.
|
|
|
|
+ let mut ret = self.registers.DR.get() as u8 as char;
|
|
|
|
+
|
|
|
|
+ // Convert carrige return to newline.
|
|
|
|
+ if ret == '\r' {
|
|
|
|
+ ret = '\n'
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Update statistics.
|
|
|
|
+ self.chars_read += 1;
|
|
|
|
+
|
|
|
|
+ Some(ret)
|
|
|
|
+ }
|
2020-03-28 14:42:42 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/// Implementing `core::fmt::Write` enables usage of the `format_args!` macros, which in turn are
|
|
|
|
+/// used to implement the `kernel`'s `print!` and `println!` macros. By implementing `write_str()`,
|
|
|
|
+/// we get `write_fmt()` automatically.
|
|
|
|
+///
|
|
|
|
+/// The function takes an `&mut self`, so it must be implemented for the inner struct.
|
|
|
|
+///
|
|
|
|
+/// See [`src/print.rs`].
|
|
|
|
+///
|
|
|
|
+/// [`src/print.rs`]: ../../print/index.html
|
|
|
|
+impl fmt::Write for PL011UartInner {
|
|
|
|
+ fn write_str(&mut self, s: &str) -> fmt::Result {
|
|
|
|
+ for c in s.chars() {
|
|
|
|
+ self.write_char(c);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Ok(())
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl PL011Uart {
|
2021-01-04 13:37:17 +00:00
|
|
|
+ /// Create an instance.
|
|
|
|
+ ///
|
2020-03-28 14:42:42 +00:00
|
|
|
+ /// # Safety
|
|
|
|
+ ///
|
2020-09-30 19:51:31 +00:00
|
|
|
+ /// - The user must ensure to provide a correct MMIO start address.
|
|
|
|
+ pub const unsafe fn new(mmio_start_addr: usize) -> Self {
|
2020-03-28 14:42:42 +00:00
|
|
|
+ Self {
|
2020-09-30 19:51:31 +00:00
|
|
|
+ inner: NullLock::new(PL011UartInner::new(mmio_start_addr)),
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//------------------------------------------------------------------------------
|
|
|
|
+// OS Interface Code
|
|
|
|
+//------------------------------------------------------------------------------
|
|
|
|
+use synchronization::interface::Mutex;
|
|
|
|
+
|
|
|
|
+impl driver::interface::DeviceDriver for PL011Uart {
|
2020-09-29 19:43:31 +00:00
|
|
|
+ fn compatible(&self) -> &'static str {
|
2020-03-28 14:42:42 +00:00
|
|
|
+ "BCM PL011 UART"
|
|
|
|
+ }
|
|
|
|
+
|
2020-09-29 19:43:31 +00:00
|
|
|
+ unsafe fn init(&self) -> Result<(), &'static str> {
|
2020-11-20 21:05:14 +00:00
|
|
|
+ self.inner.lock(|inner| inner.init());
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+ Ok(())
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl console::interface::Write for PL011Uart {
|
|
|
|
+ /// Passthrough of `args` to the `core::fmt::Write` implementation, but guarded by a Mutex to
|
|
|
|
+ /// serialize access.
|
|
|
|
+ fn write_char(&self, c: char) {
|
2020-11-20 21:05:14 +00:00
|
|
|
+ self.inner.lock(|inner| inner.write_char(c));
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
|
|
|
|
+ // Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
|
|
|
|
+ // readability.
|
2020-11-20 21:05:14 +00:00
|
|
|
+ self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
2021-01-04 13:37:17 +00:00
|
|
|
+
|
|
|
|
+ fn flush(&self) {
|
|
|
|
+ // Spin until TX FIFO empty is set.
|
|
|
|
+ self.inner.lock(|inner| inner.flush());
|
|
|
|
+ }
|
2020-03-28 14:42:42 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl console::interface::Read for PL011Uart {
|
|
|
|
+ fn read_char(&self) -> char {
|
2021-01-04 13:37:17 +00:00
|
|
|
+ self.inner
|
|
|
|
+ .lock(|inner| inner.read_char_converting(BlockingMode::Blocking).unwrap())
|
|
|
|
+ }
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
2021-01-04 13:37:17 +00:00
|
|
|
+ fn clear_rx(&self) {
|
|
|
|
+ // Read from the RX FIFO until it is indicating empty.
|
|
|
|
+ while self
|
|
|
|
+ .inner
|
|
|
|
+ .lock(|inner| inner.read_char_converting(BlockingMode::NonBlocking))
|
|
|
|
+ .is_some()
|
|
|
|
+ {}
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl console::interface::Statistics for PL011Uart {
|
|
|
|
+ fn chars_written(&self) -> usize {
|
2020-11-20 21:05:14 +00:00
|
|
|
+ self.inner.lock(|inner| inner.chars_written)
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn chars_read(&self) -> usize {
|
2020-11-20 21:05:14 +00:00
|
|
|
+ self.inner.lock(|inner| inner.chars_read)
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/bsp/device_driver/bcm.rs 05_drivers_gpio_uart/src/bsp/device_driver/bcm.rs
|
|
|
|
--- 04_safe_globals/src/bsp/device_driver/bcm.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/bsp/device_driver/bcm.rs
|
2020-03-28 14:42:42 +00:00
|
|
|
@@ -0,0 +1,11 @@
|
|
|
|
+// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
+//
|
2022-01-15 20:50:11 +00:00
|
|
|
+// Copyright (c) 2018-2022 Andre Richter <andre.o.richter@gmail.com>
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//! BCM driver top level.
|
|
|
|
+
|
|
|
|
+mod bcm2xxx_gpio;
|
|
|
|
+mod bcm2xxx_pl011_uart;
|
|
|
|
+
|
|
|
|
+pub use bcm2xxx_gpio::*;
|
|
|
|
+pub use bcm2xxx_pl011_uart::*;
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/bsp/device_driver/common.rs 05_drivers_gpio_uart/src/bsp/device_driver/common.rs
|
|
|
|
--- 04_safe_globals/src/bsp/device_driver/common.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/bsp/device_driver/common.rs
|
2020-09-29 19:43:31 +00:00
|
|
|
@@ -0,0 +1,38 @@
|
2020-07-12 10:44:03 +00:00
|
|
|
+// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
+//
|
2022-01-15 20:50:11 +00:00
|
|
|
+// Copyright (c) 2020-2022 Andre Richter <andre.o.richter@gmail.com>
|
2020-07-12 10:44:03 +00:00
|
|
|
+
|
|
|
|
+//! Common device driver code.
|
|
|
|
+
|
|
|
|
+use core::{marker::PhantomData, ops};
|
|
|
|
+
|
2020-09-29 19:43:31 +00:00
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Public Definitions
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
2020-07-12 10:44:03 +00:00
|
|
|
+pub struct MMIODerefWrapper<T> {
|
2020-09-29 19:43:31 +00:00
|
|
|
+ start_addr: usize,
|
2020-11-19 21:53:43 +00:00
|
|
|
+ phantom: PhantomData<fn() -> T>,
|
2020-07-12 10:44:03 +00:00
|
|
|
+}
|
|
|
|
+
|
2020-09-29 19:43:31 +00:00
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Public Code
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
2020-07-12 10:44:03 +00:00
|
|
|
+impl<T> MMIODerefWrapper<T> {
|
|
|
|
+ /// Create an instance.
|
2020-09-29 19:43:31 +00:00
|
|
|
+ pub const unsafe fn new(start_addr: usize) -> Self {
|
2020-07-12 10:44:03 +00:00
|
|
|
+ Self {
|
2020-09-29 19:43:31 +00:00
|
|
|
+ start_addr,
|
2020-07-12 10:44:03 +00:00
|
|
|
+ phantom: PhantomData,
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl<T> ops::Deref for MMIODerefWrapper<T> {
|
|
|
|
+ type Target = T;
|
|
|
|
+
|
|
|
|
+ fn deref(&self) -> &Self::Target {
|
2020-09-29 19:43:31 +00:00
|
|
|
+ unsafe { &*(self.start_addr as *const _) }
|
2020-07-12 10:44:03 +00:00
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/bsp/device_driver.rs 05_drivers_gpio_uart/src/bsp/device_driver.rs
|
|
|
|
--- 04_safe_globals/src/bsp/device_driver.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/bsp/device_driver.rs
|
2020-07-12 10:44:03 +00:00
|
|
|
@@ -0,0 +1,12 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
+// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
+//
|
2022-01-15 20:50:11 +00:00
|
|
|
+// Copyright (c) 2018-2022 Andre Richter <andre.o.richter@gmail.com>
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//! Device driver.
|
|
|
|
+
|
|
|
|
+#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4"))]
|
|
|
|
+mod bcm;
|
2020-07-12 10:44:03 +00:00
|
|
|
+mod common;
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4"))]
|
|
|
|
+pub use bcm::*;
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/bsp/raspberrypi/console.rs 05_drivers_gpio_uart/src/bsp/raspberrypi/console.rs
|
|
|
|
--- 04_safe_globals/src/bsp/raspberrypi/console.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/bsp/raspberrypi/console.rs
|
2020-11-20 21:05:14 +00:00
|
|
|
@@ -4,113 +4,34 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
|
|
|
|
//! BSP console facilities.
|
|
|
|
|
|
|
|
-use crate::{console, synchronization, synchronization::NullLock};
|
2020-03-31 21:45:17 +00:00
|
|
|
+use super::memory;
|
|
|
|
+use crate::{bsp::device_driver, console};
|
2020-03-28 14:42:42 +00:00
|
|
|
use core::fmt;
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
-// Private Definitions
|
2020-09-30 19:51:31 +00:00
|
|
|
+// Public Code
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
|
2020-03-28 14:42:42 +00:00
|
|
|
-/// A mystical, magical device for generating QEMU output out of the void.
|
2020-09-30 19:51:31 +00:00
|
|
|
+/// In case of a panic, the panic handler uses this function to take a last shot at printing
|
|
|
|
+/// something before the system is halted.
|
|
|
|
///
|
2020-03-28 14:42:42 +00:00
|
|
|
-/// The mutex protected part.
|
|
|
|
-struct QEMUOutputInner {
|
|
|
|
- chars_written: usize,
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-//--------------------------------------------------------------------------------------------------
|
|
|
|
-// Public Definitions
|
|
|
|
-//--------------------------------------------------------------------------------------------------
|
|
|
|
-
|
|
|
|
-/// The main struct.
|
|
|
|
-pub struct QEMUOutput {
|
|
|
|
- inner: NullLock<QEMUOutputInner>,
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-//--------------------------------------------------------------------------------------------------
|
|
|
|
-// Global instances
|
|
|
|
-//--------------------------------------------------------------------------------------------------
|
|
|
|
-
|
|
|
|
-static QEMU_OUTPUT: QEMUOutput = QEMUOutput::new();
|
|
|
|
-
|
|
|
|
-//--------------------------------------------------------------------------------------------------
|
|
|
|
-// Private Code
|
2020-09-30 19:51:31 +00:00
|
|
|
-//--------------------------------------------------------------------------------------------------
|
|
|
|
-
|
2020-03-28 14:42:42 +00:00
|
|
|
-impl QEMUOutputInner {
|
|
|
|
- const fn new() -> QEMUOutputInner {
|
|
|
|
- QEMUOutputInner { chars_written: 0 }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /// Send a character.
|
|
|
|
- fn write_char(&mut self, c: char) {
|
|
|
|
- unsafe {
|
|
|
|
- core::ptr::write_volatile(0x3F20_1000 as *mut u8, c as u8);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- self.chars_written += 1;
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/// Implementing `core::fmt::Write` enables usage of the `format_args!` macros, which in turn are
|
|
|
|
-/// used to implement the `kernel`'s `print!` and `println!` macros. By implementing `write_str()`,
|
|
|
|
-/// we get `write_fmt()` automatically.
|
2020-09-30 19:51:31 +00:00
|
|
|
+/// We try to init panic-versions of the GPIO and the UART. The panic versions are not protected
|
|
|
|
+/// with synchronization primitives, which increases chances that we get to print something, even
|
|
|
|
+/// when the kernel's default GPIO or UART instances happen to be locked at the time of the panic.
|
2020-03-28 14:42:42 +00:00
|
|
|
///
|
|
|
|
-/// The function takes an `&mut self`, so it must be implemented for the inner struct.
|
|
|
|
+/// # Safety
|
|
|
|
///
|
|
|
|
-/// See [`src/print.rs`].
|
|
|
|
-///
|
|
|
|
-/// [`src/print.rs`]: ../../print/index.html
|
|
|
|
-impl fmt::Write for QEMUOutputInner {
|
|
|
|
- fn write_str(&mut self, s: &str) -> fmt::Result {
|
|
|
|
- for c in s.chars() {
|
|
|
|
- // Convert newline to carrige return + newline.
|
|
|
|
- if c == '\n' {
|
|
|
|
- self.write_char('\r')
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- self.write_char(c);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- Ok(())
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-//--------------------------------------------------------------------------------------------------
|
|
|
|
-// Public Code
|
|
|
|
-//--------------------------------------------------------------------------------------------------
|
|
|
|
-
|
|
|
|
-impl QEMUOutput {
|
|
|
|
- /// Create a new instance.
|
|
|
|
- pub const fn new() -> QEMUOutput {
|
|
|
|
- QEMUOutput {
|
|
|
|
- inner: NullLock::new(QEMUOutputInner::new()),
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
+/// - Use only for printing during a panic.
|
|
|
|
+pub unsafe fn panic_console_out() -> impl fmt::Write {
|
2020-09-30 19:51:31 +00:00
|
|
|
+ let mut panic_gpio = device_driver::PanicGPIO::new(memory::map::mmio::GPIO_START);
|
|
|
|
+ let mut panic_uart = device_driver::PanicUart::new(memory::map::mmio::PL011_UART_START);
|
|
|
|
+
|
|
|
|
+ panic_gpio.map_pl011_uart();
|
|
|
|
+ panic_uart.init();
|
|
|
|
+ panic_uart
|
2020-03-28 14:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Return a reference to the console.
|
|
|
|
pub fn console() -> &'static impl console::interface::All {
|
|
|
|
- &QEMU_OUTPUT
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-//------------------------------------------------------------------------------
|
|
|
|
-// OS Interface Code
|
|
|
|
-//------------------------------------------------------------------------------
|
|
|
|
-use synchronization::interface::Mutex;
|
|
|
|
-
|
|
|
|
-/// Passthrough of `args` to the `core::fmt::Write` implementation, but guarded by a Mutex to
|
|
|
|
-/// serialize access.
|
|
|
|
-impl console::interface::Write for QEMUOutput {
|
|
|
|
- fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
|
|
|
|
- // Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
|
|
|
|
- // readability.
|
2020-11-20 21:05:14 +00:00
|
|
|
- self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
|
2020-03-28 14:42:42 +00:00
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl console::interface::Statistics for QEMUOutput {
|
|
|
|
- fn chars_written(&self) -> usize {
|
2020-11-20 21:05:14 +00:00
|
|
|
- self.inner.lock(|inner| inner.chars_written)
|
2020-03-28 14:42:42 +00:00
|
|
|
- }
|
|
|
|
+ &super::PL011_UART
|
|
|
|
}
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/bsp/raspberrypi/driver.rs 05_drivers_gpio_uart/src/bsp/raspberrypi/driver.rs
|
|
|
|
--- 04_safe_globals/src/bsp/raspberrypi/driver.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/bsp/raspberrypi/driver.rs
|
2020-03-28 14:42:42 +00:00
|
|
|
@@ -0,0 +1,49 @@
|
|
|
|
+// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
+//
|
2022-01-15 20:50:11 +00:00
|
|
|
+// Copyright (c) 2018-2022 Andre Richter <andre.o.richter@gmail.com>
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//! BSP driver support.
|
|
|
|
+
|
|
|
|
+use crate::driver;
|
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
2020-09-29 19:43:31 +00:00
|
|
|
+// Private Definitions
|
2020-03-28 14:42:42 +00:00
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
|
|
|
+/// Device Driver Manager type.
|
2020-09-29 19:43:31 +00:00
|
|
|
+struct BSPDriverManager {
|
2020-03-28 14:42:42 +00:00
|
|
|
+ device_drivers: [&'static (dyn DeviceDriver + Sync); 2],
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Global instances
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
|
|
|
+static BSP_DRIVER_MANAGER: BSPDriverManager = BSPDriverManager {
|
|
|
|
+ device_drivers: [&super::GPIO, &super::PL011_UART],
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Public Code
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
|
|
|
+/// Return a reference to the driver manager.
|
|
|
|
+pub fn driver_manager() -> &'static impl driver::interface::DriverManager {
|
|
|
|
+ &BSP_DRIVER_MANAGER
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//------------------------------------------------------------------------------
|
|
|
|
+// OS Interface Code
|
|
|
|
+//------------------------------------------------------------------------------
|
|
|
|
+use driver::interface::DeviceDriver;
|
|
|
|
+
|
|
|
|
+impl driver::interface::DriverManager for BSPDriverManager {
|
|
|
|
+ fn all_device_drivers(&self) -> &[&'static (dyn DeviceDriver + Sync)] {
|
|
|
|
+ &self.device_drivers[..]
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn post_device_driver_init(&self) {
|
|
|
|
+ // Configure PL011Uart's output pins.
|
|
|
|
+ super::GPIO.map_pl011_uart();
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/bsp/raspberrypi/memory.rs 05_drivers_gpio_uart/src/bsp/raspberrypi/memory.rs
|
|
|
|
--- 04_safe_globals/src/bsp/raspberrypi/memory.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/bsp/raspberrypi/memory.rs
|
2021-07-02 21:04:18 +00:00
|
|
|
@@ -0,0 +1,37 @@
|
|
|
|
+// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
+//
|
2022-01-15 20:50:11 +00:00
|
|
|
+// Copyright (c) 2018-2022 Andre Richter <andre.o.richter@gmail.com>
|
2021-07-02 21:04:18 +00:00
|
|
|
+
|
|
|
|
+//! BSP Memory Management.
|
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
2021-03-16 21:36:06 +00:00
|
|
|
+// Public Definitions
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
|
|
|
+/// The board's physical memory map.
|
|
|
|
+#[rustfmt::skip]
|
|
|
|
+pub(super) mod map {
|
2020-09-29 19:43:31 +00:00
|
|
|
+
|
2020-09-30 19:51:31 +00:00
|
|
|
+ pub const GPIO_OFFSET: usize = 0x0020_0000;
|
|
|
|
+ pub const UART_OFFSET: usize = 0x0020_1000;
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+ /// Physical devices.
|
|
|
|
+ #[cfg(feature = "bsp_rpi3")]
|
|
|
|
+ pub mod mmio {
|
|
|
|
+ use super::*;
|
|
|
|
+
|
2020-09-30 19:51:31 +00:00
|
|
|
+ pub const START: usize = 0x3F00_0000;
|
|
|
|
+ pub const GPIO_START: usize = START + GPIO_OFFSET;
|
|
|
|
+ pub const PL011_UART_START: usize = START + UART_OFFSET;
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Physical devices.
|
|
|
|
+ #[cfg(feature = "bsp_rpi4")]
|
|
|
|
+ pub mod mmio {
|
|
|
|
+ use super::*;
|
|
|
|
+
|
2020-09-30 19:51:31 +00:00
|
|
|
+ pub const START: usize = 0xFE00_0000;
|
|
|
|
+ pub const GPIO_START: usize = START + GPIO_OFFSET;
|
|
|
|
+ pub const PL011_UART_START: usize = START + UART_OFFSET;
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
2021-03-16 21:36:06 +00:00
|
|
|
+}
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/bsp/raspberrypi.rs 05_drivers_gpio_uart/src/bsp/raspberrypi.rs
|
|
|
|
--- 04_safe_globals/src/bsp/raspberrypi.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/bsp/raspberrypi.rs
|
2021-07-02 21:04:18 +00:00
|
|
|
@@ -6,3 +6,33 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
|
|
|
|
pub mod console;
|
|
|
|
pub mod cpu;
|
|
|
|
+pub mod driver;
|
2021-07-02 21:04:18 +00:00
|
|
|
+pub mod memory;
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Global instances
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+use super::device_driver;
|
|
|
|
+
|
|
|
|
+static GPIO: device_driver::GPIO =
|
2020-09-30 19:51:31 +00:00
|
|
|
+ unsafe { device_driver::GPIO::new(memory::map::mmio::GPIO_START) };
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+static PL011_UART: device_driver::PL011Uart =
|
2020-09-30 19:51:31 +00:00
|
|
|
+ unsafe { device_driver::PL011Uart::new(memory::map::mmio::PL011_UART_START) };
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Public Code
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
|
|
|
+/// Board identification.
|
|
|
|
+pub fn board_name() -> &'static str {
|
|
|
|
+ #[cfg(feature = "bsp_rpi3")]
|
|
|
|
+ {
|
|
|
|
+ "Raspberry Pi 3"
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ #[cfg(feature = "bsp_rpi4")]
|
|
|
|
+ {
|
|
|
|
+ "Raspberry Pi 4"
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/bsp.rs 05_drivers_gpio_uart/src/bsp.rs
|
|
|
|
--- 04_safe_globals/src/bsp.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/bsp.rs
|
2020-03-28 14:42:42 +00:00
|
|
|
@@ -4,6 +4,8 @@
|
|
|
|
|
2021-01-23 21:43:59 +00:00
|
|
|
//! Conditional reexporting of Board Support Packages.
|
2020-03-28 14:42:42 +00:00
|
|
|
|
|
|
|
+mod device_driver;
|
|
|
|
+
|
|
|
|
#[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4"))]
|
|
|
|
mod raspberrypi;
|
|
|
|
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/console.rs 05_drivers_gpio_uart/src/console.rs
|
|
|
|
--- 04_safe_globals/src/console.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/console.rs
|
2021-01-23 21:43:59 +00:00
|
|
|
@@ -14,8 +14,25 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
|
|
|
|
/// Console write functions.
|
|
|
|
pub trait Write {
|
|
|
|
+ /// Write a single character.
|
|
|
|
+ fn write_char(&self, c: char);
|
|
|
|
+
|
|
|
|
/// Write a Rust format string.
|
|
|
|
fn write_fmt(&self, args: fmt::Arguments) -> fmt::Result;
|
2021-01-04 13:37:17 +00:00
|
|
|
+
|
2021-01-23 21:43:59 +00:00
|
|
|
+ /// Block until the last buffered character has been physically put on the TX wire.
|
2021-01-04 13:37:17 +00:00
|
|
|
+ fn flush(&self);
|
|
|
|
+ }
|
|
|
|
+
|
2020-03-28 14:42:42 +00:00
|
|
|
+ /// Console read functions.
|
|
|
|
+ pub trait Read {
|
|
|
|
+ /// Read a single character.
|
|
|
|
+ fn read_char(&self) -> char {
|
|
|
|
+ ' '
|
|
|
|
+ }
|
|
|
|
+
|
2021-01-04 13:37:17 +00:00
|
|
|
+ /// Clear RX buffers, if any.
|
|
|
|
+ fn clear_rx(&self);
|
|
|
|
}
|
|
|
|
|
2020-03-28 14:42:42 +00:00
|
|
|
/// Console statistics.
|
2021-01-23 21:43:59 +00:00
|
|
|
@@ -24,8 +41,13 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
fn chars_written(&self) -> usize {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ /// Return the number of characters read.
|
|
|
|
+ fn chars_read(&self) -> usize {
|
|
|
|
+ 0
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Trait alias for a full-fledged console.
|
|
|
|
- pub trait All = Write + Statistics;
|
|
|
|
+ pub trait All = Write + Read + Statistics;
|
|
|
|
}
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/cpu.rs 05_drivers_gpio_uart/src/cpu.rs
|
|
|
|
--- 04_safe_globals/src/cpu.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/cpu.rs
|
2021-03-20 08:41:43 +00:00
|
|
|
@@ -13,4 +13,7 @@
|
2021-01-23 21:43:59 +00:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
// Architectural Public Reexports
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
-pub use arch_cpu::wait_forever;
|
2021-01-28 22:25:57 +00:00
|
|
|
+pub use arch_cpu::{nop, wait_forever};
|
|
|
|
+
|
|
|
|
+#[cfg(feature = "bsp_rpi3")]
|
|
|
|
+pub use arch_cpu::spin_for_cycles;
|
2021-01-23 21:43:59 +00:00
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/driver.rs 05_drivers_gpio_uart/src/driver.rs
|
|
|
|
--- 04_safe_globals/src/driver.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/driver.rs
|
2020-09-29 19:43:31 +00:00
|
|
|
@@ -0,0 +1,44 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
+// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
+//
|
2022-01-15 20:50:11 +00:00
|
|
|
+// Copyright (c) 2018-2022 Andre Richter <andre.o.richter@gmail.com>
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+//! Driver support.
|
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Public Definitions
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
|
|
|
+/// Driver interfaces.
|
|
|
|
+pub mod interface {
|
|
|
|
+ /// Device Driver functions.
|
|
|
|
+ pub trait DeviceDriver {
|
|
|
|
+ /// Return a compatibility string for identifying the driver.
|
2020-09-29 19:43:31 +00:00
|
|
|
+ fn compatible(&self) -> &'static str;
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
|
|
|
+ /// Called by the kernel to bring up the device.
|
2020-09-29 19:43:31 +00:00
|
|
|
+ ///
|
|
|
|
+ /// # Safety
|
|
|
|
+ ///
|
|
|
|
+ /// - During init, drivers might do stuff with system-wide impact.
|
|
|
|
+ unsafe fn init(&self) -> Result<(), &'static str> {
|
2020-03-28 14:42:42 +00:00
|
|
|
+ Ok(())
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Device driver management functions.
|
|
|
|
+ ///
|
|
|
|
+ /// The `BSP` is supposed to supply one global instance.
|
|
|
|
+ pub trait DriverManager {
|
|
|
|
+ /// Return a slice of references to all `BSP`-instantiated drivers.
|
|
|
|
+ ///
|
|
|
|
+ /// # Safety
|
|
|
|
+ ///
|
|
|
|
+ /// - The order of devices is the order in which `DeviceDriver::init()` is called.
|
|
|
|
+ fn all_device_drivers(&self) -> &[&'static (dyn DeviceDriver + Sync)];
|
|
|
|
+
|
|
|
|
+ /// Initialization code that runs after driver init.
|
|
|
|
+ ///
|
|
|
|
+ /// For example, device driver code that depends on other drivers already being online.
|
|
|
|
+ fn post_device_driver_init(&self);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/main.rs 05_drivers_gpio_uart/src/main.rs
|
|
|
|
--- 04_safe_globals/src/main.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/main.rs
|
2021-07-02 21:04:18 +00:00
|
|
|
@@ -104,6 +104,8 @@
|
|
|
|
//! - It is implemented in `src/_arch/__arch_name__/cpu/boot.s`.
|
|
|
|
//! 2. Once finished with architectural setup, the arch code calls `kernel_init()`.
|
2020-11-19 21:53:43 +00:00
|
|
|
|
2021-04-29 21:08:49 +00:00
|
|
|
+#![allow(clippy::upper_case_acronyms)]
|
2020-11-19 21:53:43 +00:00
|
|
|
+#![feature(const_fn_fn_ptr_basics)]
|
|
|
|
#![feature(format_args_nl)]
|
|
|
|
#![feature(panic_info_message)]
|
2021-12-19 23:01:38 +00:00
|
|
|
#![feature(trait_alias)]
|
|
|
|
@@ -113,6 +115,7 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
mod bsp;
|
|
|
|
mod console;
|
|
|
|
mod cpu;
|
|
|
|
+mod driver;
|
|
|
|
mod panic_wait;
|
|
|
|
mod print;
|
2021-07-02 21:04:18 +00:00
|
|
|
mod synchronization;
|
2021-12-19 23:01:38 +00:00
|
|
|
@@ -122,16 +125,54 @@
|
2020-03-28 14:42:42 +00:00
|
|
|
/// # Safety
|
|
|
|
///
|
|
|
|
/// - Only a single core must be active and running this function.
|
|
|
|
+/// - The init calls in this function must appear in the correct order.
|
|
|
|
unsafe fn kernel_init() -> ! {
|
|
|
|
- use console::interface::Statistics;
|
|
|
|
+ use driver::interface::DriverManager;
|
2021-01-23 21:43:59 +00:00
|
|
|
|
2021-04-04 20:30:40 +00:00
|
|
|
- println!("[0] Hello from Rust!");
|
2020-03-28 14:42:42 +00:00
|
|
|
+ for i in bsp::driver::driver_manager().all_device_drivers().iter() {
|
2020-09-29 19:43:31 +00:00
|
|
|
+ if let Err(x) = i.init() {
|
|
|
|
+ panic!("Error loading driver: {}: {}", i.compatible(), x);
|
2020-03-28 14:42:42 +00:00
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ bsp::driver::driver_manager().post_device_driver_init();
|
|
|
|
+ // println! is usable from here on.
|
|
|
|
+
|
|
|
|
+ // Transition from unsafe to safe.
|
|
|
|
+ kernel_main()
|
|
|
|
+}
|
2021-01-23 21:43:59 +00:00
|
|
|
+
|
2020-03-28 14:42:42 +00:00
|
|
|
+/// The main function running after the early init.
|
|
|
|
+fn kernel_main() -> ! {
|
2021-01-04 13:37:17 +00:00
|
|
|
+ use bsp::console::console;
|
2020-03-28 14:42:42 +00:00
|
|
|
+ use console::interface::All;
|
|
|
|
+ use driver::interface::DriverManager;
|
|
|
|
+
|
2021-04-04 20:30:40 +00:00
|
|
|
+ println!(
|
|
|
|
+ "[0] {} version {}",
|
|
|
|
+ env!("CARGO_PKG_NAME"),
|
|
|
|
+ env!("CARGO_PKG_VERSION")
|
|
|
|
+ );
|
|
|
|
+ println!("[1] Booting on: {}", bsp::board_name());
|
2020-03-28 14:42:42 +00:00
|
|
|
+
|
2021-04-04 20:30:40 +00:00
|
|
|
+ println!("[2] Drivers loaded:");
|
2020-03-28 14:42:42 +00:00
|
|
|
+ for (i, driver) in bsp::driver::driver_manager()
|
|
|
|
+ .all_device_drivers()
|
|
|
|
+ .iter()
|
|
|
|
+ .enumerate()
|
|
|
|
+ {
|
|
|
|
+ println!(" {}. {}", i + 1, driver.compatible());
|
|
|
|
+ }
|
|
|
|
|
|
|
|
println!(
|
|
|
|
- "[1] Chars written: {}",
|
2021-04-04 20:30:40 +00:00
|
|
|
+ "[3] Chars written: {}",
|
2020-03-28 14:42:42 +00:00
|
|
|
bsp::console::console().chars_written()
|
|
|
|
);
|
2021-04-04 20:30:40 +00:00
|
|
|
+ println!("[4] Echoing input now");
|
2020-03-28 14:42:42 +00:00
|
|
|
|
|
|
|
- println!("[2] Stopping here.");
|
|
|
|
- cpu::wait_forever()
|
2021-01-04 13:37:17 +00:00
|
|
|
+ // Discard any spurious received characters before going into echo mode.
|
|
|
|
+ console().clear_rx();
|
2020-03-28 14:42:42 +00:00
|
|
|
+ loop {
|
|
|
|
+ let c = bsp::console::console().read_char();
|
|
|
|
+ bsp::console::console().write_char(c);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
2021-03-20 09:47:39 +00:00
|
|
|
diff -uNr 04_safe_globals/src/panic_wait.rs 05_drivers_gpio_uart/src/panic_wait.rs
|
|
|
|
--- 04_safe_globals/src/panic_wait.rs
|
|
|
|
+++ 05_drivers_gpio_uart/src/panic_wait.rs
|
2020-03-28 14:42:42 +00:00
|
|
|
@@ -4,15 +4,35 @@
|
|
|
|
|
|
|
|
//! A panic handler that infinitely waits.
|
|
|
|
|
|
|
|
-use crate::{cpu, println};
|
|
|
|
-use core::panic::PanicInfo;
|
|
|
|
+use crate::{bsp, cpu};
|
|
|
|
+use core::{fmt, panic::PanicInfo};
|
|
|
|
+
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+// Private Code
|
|
|
|
+//--------------------------------------------------------------------------------------------------
|
|
|
|
+
|
|
|
|
+fn _panic_print(args: fmt::Arguments) {
|
|
|
|
+ use fmt::Write;
|
|
|
|
+
|
|
|
|
+ unsafe { bsp::console::panic_console_out().write_fmt(args).unwrap() };
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/// Prints with a newline - only use from the panic handler.
|
|
|
|
+///
|
2021-01-29 21:30:02 +00:00
|
|
|
+/// Carbon copy from <https://doc.rust-lang.org/src/std/macros.rs.html>
|
2020-03-28 14:42:42 +00:00
|
|
|
+#[macro_export]
|
|
|
|
+macro_rules! panic_println {
|
|
|
|
+ ($($arg:tt)*) => ({
|
|
|
|
+ _panic_print(format_args_nl!($($arg)*));
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
|
|
|
|
#[panic_handler]
|
|
|
|
fn panic(info: &PanicInfo) -> ! {
|
|
|
|
if let Some(args) = info.message() {
|
|
|
|
- println!("\nKernel panic: {}", args);
|
|
|
|
+ panic_println!("\nKernel panic: {}", args);
|
|
|
|
} else {
|
|
|
|
- println!("\nKernel panic!");
|
|
|
|
+ panic_println!("\nKernel panic!");
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu::wait_forever()
|
|
|
|
|
2021-07-12 20:08:22 +00:00
|
|
|
diff -uNr 04_safe_globals/tests/boot_test_string.rb 05_drivers_gpio_uart/tests/boot_test_string.rb
|
|
|
|
--- 04_safe_globals/tests/boot_test_string.rb
|
|
|
|
+++ 05_drivers_gpio_uart/tests/boot_test_string.rb
|
|
|
|
@@ -1,3 +1,3 @@
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
-EXPECTED_PRINT = 'Stopping here'
|
|
|
|
+EXPECTED_PRINT = 'Echoing input now'
|
|
|
|
|
2020-03-28 14:42:42 +00:00
|
|
|
```
|