Skip to content
Snippets Groups Projects
Commit 9868b142 authored by Axel Lin's avatar Axel Lin Committed by Sonic Zhang
Browse files

blackfin: gpio: Use proper mask for comparing function


The function return from P_FUNCT2MUX(per) takes 2 bits, however
for BF537_FAMILY with offset != 1 the function is 1 bit.

Also has small refactor for better readability.
In portmux_setup(), it looks odd having "muxreg &= ~(3 << 1);"
while in current code we do muxreg |= (function << offset);.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
parent 2ced773a
No related branches found
No related tags found
No related merge requests found
...@@ -247,7 +247,7 @@ static struct { ...@@ -247,7 +247,7 @@ static struct {
static void portmux_setup(unsigned short per) static void portmux_setup(unsigned short per)
{ {
u16 y, offset, muxreg; u16 y, offset, muxreg, mask;
u16 function = P_FUNCT2MUX(per); u16 function = P_FUNCT2MUX(per);
for (y = 0; y < ARRAY_SIZE(port_mux_lut); y++) { for (y = 0; y < ARRAY_SIZE(port_mux_lut); y++) {
...@@ -258,12 +258,13 @@ static void portmux_setup(unsigned short per) ...@@ -258,12 +258,13 @@ static void portmux_setup(unsigned short per)
offset = port_mux_lut[y].offset; offset = port_mux_lut[y].offset;
muxreg = bfin_read_PORT_MUX(); muxreg = bfin_read_PORT_MUX();
if (offset != 1) if (offset == 1)
muxreg &= ~(1 << offset); mask = 3;
else else
muxreg &= ~(3 << 1); mask = 1;
muxreg |= (function << offset); muxreg &= ~(mask << offset);
muxreg |= ((function & mask) << offset);
bfin_write_PORT_MUX(muxreg); bfin_write_PORT_MUX(muxreg);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment