a microkernel written in rust
play

A microkernel written in Rust Porting the UNIX-like Redox OS to Arm - PowerPoint PPT Presentation

Objectives Introduction Rust Redox A microkernel written in Rust Porting the UNIX-like Redox OS to Arm v8.0 Robin Randhawa Arm February 2019 Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust Objectives Introduction Rust


  1. Objectives Introduction Rust Redox A microkernel written in Rust Porting the UNIX-like Redox OS to Arm v8.0 Robin Randhawa Arm February 2019 Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  2. Objectives Introduction Rust Redox I want to talk about on Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  3. Objectives Introduction Rust Redox Redox is written in Rust - a fairly new programming language Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  4. Objectives Introduction Rust Redox So it is important to discuss Rust too Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  5. Objectives Introduction Rust Redox My goals with this presentation are ● Lightweight intro to the Rust language ● Unique features that make it shine To primarily ● Explain why Rust is interesting for arm talk about ● Rust’s support for arm designs these ● Introduce Redox’s history, design, community ● Status, plans … and some relevant anecdotes from the industry Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  6. Objectives Introduction Rust Redox Open Source Software Division System Software Architecture Team Safety Track Track Charter Firmware Kernel Middleware Platform “Promote the uptake of Arm IP in safety critical domains using open source software as a medium” Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  7. Objectives Introduction Rust Redox My areas of Interest Systems programming languages Operating Arm system architecture design extensions Arm based Open source system communities design Software Standards for Arm systems Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  8. Objectives Introduction Rust Redox Primary focus area Systems programming languages Operating Arm system architecture design extensions Safe data fusion and perception Arm based Open source system communities design Software Standards for Arm systems Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  9. Objectives Introduction Rust Redox Data fusion and perception pipeline Sensor block Inference block Camera array General purpose compute cluster IO concentrator Pre-trained NNs LIDAR array Data format General purpose Lane/Sign/Pedestrian standardisation compute cluster detection Radar array Goal solving algorithms SONAR array Mechatronic Interfaces Power train control Fuel Injection control Actuators Steering control Brake control Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  10. Objectives Introduction Rust Redox My explorations needed something at this intersection Microkernel based system software composition ? Safety themed systems programming Arm architecture and language system design Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  11. Objectives Introduction Rust Redox I started writing my own microkernel in Rust…. then chanced upon Redox OS Microkernel based system software composition Safety themed systems programming Arm architecture and language system design Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  12. Objectives Introduction Rust Redox I see a worrying paradox in the making... Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  13. Objectives Introduction Rust Redox The compute requirement for automotive autonomous functions is insanely high Notional peak single-thread compute Autonomous Control In vehicle infotainment Brake control Power train Fuel injection Time Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  14. Objectives Introduction Rust Redox The compute requirement for automotive autonomous functions is insanely high “Traditional” partition Notional peak single-thread compute Autonomous ● Advent in the late ‘80s Control ● Initially microcontroller class cores (similar to Cortex-M) ● Later augmented with specialised cores to support deterministic operation (Cortex-R) ● In order cores with simple pipelines ● Redundant Execution often used In vehicle infotainment Brake control Power train Fuel injection Time Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  15. Objectives Introduction Rust Redox The compute requirement for automotive autonomous functions is insanely high IVI partition ● Advent in the mid ‘90s Notional peak single-thread compute Autonomous ● High performance Cortex-A cores Control ● Multi-issue instructions ● Out of order execution ● Sophisticated branch prediction In vehicle infotainment Brake control Power train Fuel injection Time Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  16. Objectives Introduction Rust Redox The compute requirement for automotive autonomous functions is insanely high Autonomous control partition ● Advent in the mid 2000s Notional peak single-thread compute Autonomous ● High performance Cortex-A cores Control ● High performance accelerators (ML et al) ● Insanely high compute requirement ● Orthogonal demands on determinism In vehicle infotainment Brake control Power train Fuel injection Time Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  17. Objectives Introduction Rust Redox Autonomous control has very high criticality requirements High criticality Notional degree of criticality Brake control Autonomous Fuel injection control Power train control In vehicle infotainment Low criticality Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  18. Objectives Introduction Rust Redox In general, the sensitivity to deterministic execution and the degree of criticality are linearly related Highly Deterministic Notional sensitivity to determinism Determinism : the requirement to respect a worst case execution time that is known apriori Low Determinism Low High Degree of criticality Criticality Criticality Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  19. Objectives Introduction Rust Redox In general, a processor’s performance and it’s “reaction time” are linearly related High time quantums Processor reaction time to asynchronous events Reaction time : the worst case duration of time between the activation of an asynchronous event and it’s acknowledgement by the processor core Low time quantums Low High Core performance performance performance Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  20. Objectives Introduction Rust Redox In summary... ● Autonomous control has very high criticality requirements ● Autonomous control has very high performance requirements ● High criticality requires very deterministic execution ● The higher the processor’s performance the slower it’s reaction time ● Paradox: For autonomous functions, the required higher performance seemingly cannot be had deterministically and with low reaction times Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  21. Objectives Introduction Microkernels Rust Redox What Name Aims History Stack Schemes Kernel Relibc Arm Roadmap Community Demo There is a thin line between safety and security Complexity is on the rise... Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  22. Objectives Introduction Rust Redox Insanity Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  23. Objectives Introduction Rust Redox So... Autonomous functions are becoming increasingly pervasive Hardware engineers are working hard to make the hardware sensibly safe Despite their best attempts, it is very likely that software for such systems will be exceedingly complex Any and every attempt to make complex software safe is welcome Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  24. Objectives Introduction Rust Redox Traditional approaches to the problem Mixed criticality hardware and software designs Traditional quality management of hardware and software Reliance on “safe dialects” of C (MISRA et al) Formal verification of hardware and software How about: A language designed for safety that provides guarantees without compromising performance ? Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  25. Objectives Introduction Rust Redox We can’t let this... Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  26. Objectives Introduction Rust Redox Into this... Ohai Bro! How about some Kovfeefe ? Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  27. Objectives Introduction Rust Redox https://www.rust-lang.org/ fn main() { println!("Hello, world!" ); } Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

  28. Objectives Introduction Rust Redox “Rust is like doing parkour while suspended on strings & wearing protective gear. Yes, it will sometimes look a little ridiculous, but you'll be able to do all sorts of cool moves without hurting yourself.” - Snippet from Reddit conversation about Rust Robin Randhawa (arm) FOSDEM 2019 A microkernel written in Rust

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend