xistor 910619de4c fix missing semicolon | hace 1 año | |
---|---|---|
.. | ||
Makefile | hace 5 años | |
Makefile.clang | hace 2 años | |
Makefile.gcc | hace 2 años | |
OLVASSEL.md | hace 6 años | |
README.md | hace 6 años | |
delays.c | hace 1 año | |
delays.h | hace 6 años | |
gpio.h | hace 6 años | |
kernel8.img | hace 4 años | |
link.ld | hace 6 años | |
main.c | hace 6 años | |
mbox.c | hace 6 años | |
mbox.h | hace 6 años | |
power.c | hace 6 años | |
power.h | hace 6 años | |
start.S | hace 3 años | |
uart.c | hace 3 años | |
uart.h | hace 6 años |
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.