nrf52840dk_test_kernel/
main.rs

1// Licensed under the Apache License, Version 2.0 or the MIT License.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3// Copyright Tock Contributors 2022.
4
5//! Tock kernel for the Nordic Semiconductor nRF52840 development kit (DK).
6
7#![no_std]
8// Disable this attribute when documenting, as a workaround for
9// https://github.com/rust-lang/rust/issues/62184.
10#![cfg_attr(not(doc), no_main)]
11#![deny(missing_docs)]
12
13use capsules_core::test::capsule_test::{CapsuleTestClient, CapsuleTestError};
14use core::cell::Cell;
15use core::ptr::addr_of;
16use kernel::component::Component;
17use kernel::hil::time::Counter;
18use kernel::platform::{KernelResources, SyscallDriverLookup};
19use kernel::scheduler::round_robin::RoundRobinSched;
20use kernel::utilities::cells::NumericCellExt;
21use kernel::{capabilities, create_capability, static_init};
22use nrf52840::chip::Nrf52DefaultPeripherals;
23use nrf52840::gpio::Pin;
24use nrf52840::interrupt_service::Nrf52840DefaultPeripherals;
25use nrf52_components::{UartChannel, UartPins};
26
27mod test;
28
29const BUTTON_RST_PIN: Pin = Pin::P0_18;
30
31const UART_RTS: Option<Pin> = Some(Pin::P0_05);
32const UART_TXD: Pin = Pin::P0_06;
33const UART_CTS: Option<Pin> = Some(Pin::P0_07);
34const UART_RXD: Pin = Pin::P0_08;
35
36/// Debug Writer
37pub mod io;
38
39// Number of concurrent processes this platform supports.
40const NUM_PROCS: usize = 0;
41
42static mut PROCESSES: [Option<&'static dyn kernel::process::Process>; NUM_PROCS] =
43    [None; NUM_PROCS];
44
45static mut CHIP: Option<&'static nrf52840::chip::NRF52<Nrf52840DefaultPeripherals>> = None;
46static mut PROCESS_PRINTER: Option<&'static capsules_system::process_printer::ProcessPrinterText> =
47    None;
48
49/// Dummy buffer that causes the linker to reserve enough space for the stack.
50#[no_mangle]
51#[link_section = ".stack_buffer"]
52pub static mut STACK_MEMORY: [u8; 0x2000] = [0; 0x2000];
53
54//------------------------------------------------------------------------------
55// SYSCALL DRIVER TYPE DEFINITIONS
56//------------------------------------------------------------------------------
57
58/// Supported drivers by the platform
59pub struct Platform {
60    scheduler: &'static RoundRobinSched<'static>,
61    systick: cortexm4::systick::SysTick,
62}
63
64impl SyscallDriverLookup for Platform {
65    fn with_driver<F, R>(&self, _driver_num: usize, f: F) -> R
66    where
67        F: FnOnce(Option<&dyn kernel::syscall::SyscallDriver>) -> R,
68    {
69        f(None)
70    }
71}
72
73//------------------------------------------------------------------------------
74// TEST LAUNCHER FOR RUNNING TESTS
75//------------------------------------------------------------------------------
76
77struct TestLauncher {
78    test_index: Cell<usize>,
79    peripherals: &'static Nrf52DefaultPeripherals<'static>,
80}
81impl TestLauncher {
82    fn new(peripherals: &'static Nrf52DefaultPeripherals<'static>) -> Self {
83        Self {
84            test_index: Cell::new(0),
85            peripherals,
86        }
87    }
88
89    fn next(&'static self) {
90        let index = self.test_index.get();
91        self.test_index.increment();
92        match index {
93            0 => unsafe { test::sha256_test::run_sha256(self) },
94            1 => unsafe { test::hmac_sha256_test::run_hmacsha256(self) },
95            2 => unsafe { test::siphash24_test::run_siphash24(self) },
96            3 => unsafe { test::aes_test::run_aes128_ctr(&self.peripherals.ecb, self) },
97            4 => unsafe { test::aes_test::run_aes128_cbc(&self.peripherals.ecb, self) },
98            5 => unsafe { test::aes_test::run_aes128_ecb(&self.peripherals.ecb, self) },
99            _ => kernel::debug!("All tests finished."),
100        }
101    }
102}
103impl CapsuleTestClient for TestLauncher {
104    fn done(&'static self, _result: Result<(), CapsuleTestError>) {
105        self.next();
106    }
107}
108
109/// This is in a separate, inline(never) function so that its stack frame is
110/// removed when this function returns. Otherwise, the stack space used for
111/// these static_inits is wasted.
112#[inline(never)]
113unsafe fn create_peripherals() -> &'static mut Nrf52840DefaultPeripherals<'static> {
114    let ieee802154_ack_buf = static_init!(
115        [u8; nrf52840::ieee802154_radio::ACK_BUF_SIZE],
116        [0; nrf52840::ieee802154_radio::ACK_BUF_SIZE]
117    );
118    // Initialize chip peripheral drivers
119    let nrf52840_peripherals = static_init!(
120        Nrf52840DefaultPeripherals,
121        Nrf52840DefaultPeripherals::new(ieee802154_ack_buf)
122    );
123
124    nrf52840_peripherals
125}
126
127impl KernelResources<nrf52840::chip::NRF52<'static, Nrf52840DefaultPeripherals<'static>>>
128    for Platform
129{
130    type SyscallDriverLookup = Self;
131    type SyscallFilter = ();
132    type ProcessFault = ();
133    type Scheduler = RoundRobinSched<'static>;
134    type SchedulerTimer = cortexm4::systick::SysTick;
135    type WatchDog = ();
136    type ContextSwitchCallback = ();
137
138    fn syscall_driver_lookup(&self) -> &Self::SyscallDriverLookup {
139        self
140    }
141    fn syscall_filter(&self) -> &Self::SyscallFilter {
142        &()
143    }
144    fn process_fault(&self) -> &Self::ProcessFault {
145        &()
146    }
147    fn scheduler(&self) -> &Self::Scheduler {
148        self.scheduler
149    }
150    fn scheduler_timer(&self) -> &Self::SchedulerTimer {
151        &self.systick
152    }
153    fn watchdog(&self) -> &Self::WatchDog {
154        &()
155    }
156    fn context_switch_callback(&self) -> &Self::ContextSwitchCallback {
157        &()
158    }
159}
160
161/// Main function called after RAM initialized.
162#[no_mangle]
163pub unsafe fn main() {
164    //--------------------------------------------------------------------------
165    // INITIAL SETUP
166    //--------------------------------------------------------------------------
167
168    // Apply errata fixes and enable interrupts.
169    nrf52840::init();
170
171    // Set up peripheral drivers. Called in separate function to reduce stack
172    // usage.
173    let nrf52840_peripherals = create_peripherals();
174
175    // Set up circular peripheral dependencies.
176    nrf52840_peripherals.init();
177    let base_peripherals = &nrf52840_peripherals.nrf52;
178
179    // Setup space to store the core kernel data structure.
180    let board_kernel = static_init!(kernel::Kernel, kernel::Kernel::new(&*addr_of!(PROCESSES)));
181
182    // Create (and save for panic debugging) a chip object to setup low-level
183    // resources (e.g. MPU, systick).
184    let chip = static_init!(
185        nrf52840::chip::NRF52<Nrf52840DefaultPeripherals>,
186        nrf52840::chip::NRF52::new(nrf52840_peripherals)
187    );
188    CHIP = Some(chip);
189
190    // Do nRF configuration and setup. This is shared code with other nRF-based
191    // platforms.
192    nrf52_components::startup::NrfStartupComponent::new(
193        false,
194        BUTTON_RST_PIN,
195        nrf52840::uicr::Regulator0Output::DEFAULT,
196        &base_peripherals.nvmc,
197    )
198    .finalize(());
199
200    //--------------------------------------------------------------------------
201    // CAPABILITIES
202    //--------------------------------------------------------------------------
203
204    // Create capabilities that the board needs to call certain protected kernel
205    // functions.
206    let main_loop_capability = create_capability!(capabilities::MainLoopCapability);
207
208    //--------------------------------------------------------------------------
209    // TIMER
210    //--------------------------------------------------------------------------
211
212    let rtc = &base_peripherals.rtc;
213    let _ = rtc.start();
214    let mux_alarm = components::alarm::AlarmMuxComponent::new(rtc)
215        .finalize(components::alarm_mux_component_static!(nrf52840::rtc::Rtc));
216
217    //--------------------------------------------------------------------------
218    // UART & CONSOLE & DEBUG
219    //--------------------------------------------------------------------------
220
221    let uart_channel = nrf52_components::UartChannelComponent::new(
222        UartChannel::Pins(UartPins::new(UART_RTS, UART_TXD, UART_CTS, UART_RXD)),
223        mux_alarm,
224        &base_peripherals.uarte0,
225    )
226    .finalize(nrf52_components::uart_channel_component_static!(
227        nrf52840::rtc::Rtc
228    ));
229
230    // Virtualize the UART channel for the console and for kernel debug.
231    let uart_mux = components::console::UartMuxComponent::new(uart_channel, 115200)
232        .finalize(components::uart_mux_component_static!());
233
234    // Create the debugger object that handles calls to `debug!()`.
235    components::debug_writer::DebugWriterComponent::new(uart_mux)
236        .finalize(components::debug_writer_component_static!());
237
238    //--------------------------------------------------------------------------
239    // NRF CLOCK SETUP
240    //--------------------------------------------------------------------------
241
242    nrf52_components::NrfClockComponent::new(&base_peripherals.clock).finalize(());
243
244    //--------------------------------------------------------------------------
245    // PLATFORM AND SCHEDULER
246    //--------------------------------------------------------------------------
247
248    let scheduler = components::sched::round_robin::RoundRobinComponent::new(&*addr_of!(PROCESSES))
249        .finalize(components::round_robin_component_static!(NUM_PROCS));
250
251    let platform = Platform {
252        scheduler,
253        systick: cortexm4::systick::SysTick::new_with_calibration(64000000),
254    };
255
256    let test_launcher = static_init!(TestLauncher, TestLauncher::new(base_peripherals));
257
258    //--------------------------------------------------------------------------
259    // TESTS
260    //--------------------------------------------------------------------------
261
262    test_launcher.next();
263
264    //--------------------------------------------------------------------------
265    // KERNEL LOOP
266    //--------------------------------------------------------------------------
267
268    board_kernel.kernel_loop(
269        &platform,
270        chip,
271        None::<&kernel::ipc::IPC<0>>,
272        &main_loop_capability,
273    );
274}