]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
gpio: spear_gpio: Fix gpio_set_value() implementation
authorAxel Lin <axel.lin@ingics.com>
Sun, 25 May 2014 02:31:18 +0000 (10:31 +0800)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Fri, 4 Jul 2014 19:37:29 +0000 (21:37 +0200)
commitc0c374024dbd38b1045784cb2880ba21db552c54
tree9eeec42e98b04eaa4c8b6d5620f5fcd46ab0eb1c
parentfcfddfd50472d7ce84ef4e2853242bbeb7b37325
gpio: spear_gpio: Fix gpio_set_value() implementation

In current gpio_set_value() implementation, it always sets the gpio control bit
no matter the value argument is 0 or 1. Thus the GPIOs never set to low.
This patch fixes this bug.

The address bus is used as a mask on read/write operations, so that independent
software drivers can set their GPIO bits without affecting any other pins in a
single write operation. Thus we don't need a read-modify-write to update the
register.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Stefan Roese <sr@denx.de>
Reviewed-by: Vipin Kumar <vipin.kumar@st.com>
Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com>
drivers/gpio/spear_gpio.c