fix(rpi3): use correct define for GPIO reg_clrChanged reg_clr to use the base address + RPI3_GPIO_GPCLR,this corrects the reg_clr address.Signed-off-by: Tushar Khandelwal <tushar.khandelwal@arm.
fix(rpi3): use correct define for GPIO reg_clrChanged reg_clr to use the base address + RPI3_GPIO_GPCLR,this corrects the reg_clr address.Signed-off-by: Tushar Khandelwal <tushar.khandelwal@arm.com>Signed-off-by: Abhi Singh <abhi.singh@arm.com>Change-Id: I9ca50905efd4c640f143783c5a00676b246a2e26
show more ...
refactor(libc): clean up dependencies in libc- Removing platform dependencies from libc modules.- Replacing panicking with actual error handling.- Debug macros are included indirectly from assert
refactor(libc): clean up dependencies in libc- Removing platform dependencies from libc modules.- Replacing panicking with actual error handling.- Debug macros are included indirectly from assert.h. Removing "platform_def.h" from assert.h and adding "common/debug.h" where the macros are used.- Removing hack for fixing PLAT_LOG_LEVEL_ASSERT to 40. Instead removing assert with expression, as this does not provide additional information.Signed-off-by: Claus Pedersen <claustbp@google.com>Change-Id: Icc201ea7b63c1277e423c1cfd13fd6816c2bc568
rpi3: gpio: Simplify GPIO setupThere is really no reason to use and pass around a struct when its onlymember is the (fixed) base address.Remove the struct and just use the base address on its ow
rpi3: gpio: Simplify GPIO setupThere is really no reason to use and pass around a struct when its onlymember is the (fixed) base address.Remove the struct and just use the base address on its own inside theGPIO driver. Then set the base address automatically.This simplifies GPIO setup for users, which now don't need to deal withzeroing a struct and setting the base address anymore.Change-Id: I3060f7859e3f8ef9a24cc8fb38307b5da943f127Signed-off-by: Andre Przywara <andre.przywara@arm.com>
rpi3: Add GPIO driverThis commit adds GPIO driver for RaspberryPi3. The GPIO driver for RPi3also provides the way to do pinmux selections.Signed-off-by: Ying-Chun Liu (PaulLiu) <paulliu@debian.o
rpi3: Add GPIO driverThis commit adds GPIO driver for RaspberryPi3. The GPIO driver for RPi3also provides the way to do pinmux selections.Signed-off-by: Ying-Chun Liu (PaulLiu) <paulliu@debian.org>