Link Search Menu Expand Document

Finalising the patches (August 19 2020 Week 12 [last week])

This week was spent on modifying the previously ported patches to use the newly implemented RTEMS OFW API. The RTEMS OFW was decided to be implemented under bsps/shared instead of cpukit. And since code under cpukit can’t reference code under bsps I had to move the previous patches to bsps/shared.

I also added a simple driver initialization code in bspstart.c that basically loops over all the nodes in the device tree and handles them to the drivers. This way we get a simple and neat method to initialize the drivers. Any new driver that is added will have to add itself to this function. And have required code to check if it can handle the node.

This pinmux driver patch can be found here.

This clock driver patch can be found here.