nrf52840dk_test_kernel/
main.rs
1#![no_std]
8#![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
36pub mod io;
38
39const 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#[no_mangle]
51#[link_section = ".stack_buffer"]
52pub static mut STACK_MEMORY: [u8; 0x2000] = [0; 0x2000];
53
54pub 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
73struct 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#[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 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#[no_mangle]
163pub unsafe fn main() {
164 nrf52840::init();
170
171 let nrf52840_peripherals = create_peripherals();
174
175 nrf52840_peripherals.init();
177 let base_peripherals = &nrf52840_peripherals.nrf52;
178
179 let board_kernel = static_init!(kernel::Kernel, kernel::Kernel::new(&*addr_of!(PROCESSES)));
181
182 let chip = static_init!(
185 nrf52840::chip::NRF52<Nrf52840DefaultPeripherals>,
186 nrf52840::chip::NRF52::new(nrf52840_peripherals)
187 );
188 CHIP = Some(chip);
189
190 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 let main_loop_capability = create_capability!(capabilities::MainLoopCapability);
207
208 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 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 let uart_mux = components::console::UartMuxComponent::new(uart_channel, 115200)
232 .finalize(components::uart_mux_component_static!());
233
234 components::debug_writer::DebugWriterComponent::new(uart_mux)
236 .finalize(components::debug_writer_component_static!());
237
238 nrf52_components::NrfClockComponent::new(&base_peripherals.clock).finalize(());
243
244 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 test_launcher.next();
263
264 board_kernel.kernel_loop(
269 &platform,
270 chip,
271 None::<&kernel::ipc::IPC<0>>,
272 &main_loop_capability,
273 );
274}