xistor 910619de4c fix missing semicolon | 1 year ago | |
---|---|---|
.. | ||
Makefile | 5 years ago | |
Makefile.clang | 2 years ago | |
Makefile.gcc | 2 years ago | |
OLVASSEL.md | 6 years ago | |
README.md | 6 years ago | |
delays.c | 1 year ago | |
delays.h | 6 years ago | |
gpio.h | 6 years ago | |
kernel8.img | 4 years ago | |
link.ld | 6 years ago | |
main.c | 6 years ago | |
mbox.c | 6 years ago | |
mbox.h | 6 years ago | |
power.c | 6 years ago | |
power.h | 6 years ago | |
start.S | 3 years ago | |
uart.c | 3 years ago | |
uart.h | 6 years ago |
For embedded systems, power consumption is critical. The Raspberry Pi 3 has a very sophisticated PM interface. You can turn each device on and off idependently. There's a catch though, the GPIO VCC pins are hardwired, there's no way to turn them off programatically. This means if you connect some devices to them, you'll have to implement a way to turn those devices off (with a transistor connected to a data GPIO pin for example).
The power management controller is one of the peripherals that are not emulated properly by qemu. Works on real hardware though.
power_off()
shutdowns the board to a almost zero power consumption state.
reset()
reboots the machine. Also handled by the PMC, and since the Raspberry Pi does not have
a hardware reset button, it's very useful.
We display a simple menu, and wait for user input. Depending on the input, we reboot the system or power it off.