xistor 910619de4c fix missing semicolon 1 سال پیش
..
Makefile 426205e2a3 Added makefiles for LLVM Clang 5 سال پیش
Makefile.clang 9c5c2813a0 Update QEMU command in all README and Makefile 2 سال پیش
Makefile.gcc 9c5c2813a0 Update QEMU command in all README and Makefile 2 سال پیش
OLVASSEL.md 7ace64ba9f Initial commit 6 سال پیش
README.md 158e9ea522 Fixed typos 6 سال پیش
delays.c 910619de4c fix missing semicolon 1 سال پیش
delays.h 7ace64ba9f Initial commit 6 سال پیش
gpio.h 7ace64ba9f Initial commit 6 سال پیش
kernel8.img 8ce0f75b47 Recompiled with latest gcc 4 سال پیش
link.ld 7ace64ba9f Initial commit 6 سال پیش
main.c 7ace64ba9f Initial commit 6 سال پیش
mbox.c 214885df63 compute the mailbox cmd only once 6 سال پیش
mbox.h 7ace64ba9f Initial commit 6 سال پیش
power.c 7ace64ba9f Initial commit 6 سال پیش
power.h 7ace64ba9f Initial commit 6 سال پیش
start.S ea4691947c Improve comments wrt stack setup 3 سال پیش
uart.c c59ad439f4 Enable UART0 FIFOs 3 سال پیش
uart.h 7ace64ba9f Initial commit 6 سال پیش

README.md

Tutorial 08 - Power management

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).

Power.h, power.c

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.

Main

We display a simple menu, and wait for user input. Depending on the input, we reboot the system or power it off.