ssb: add ssb_chipco_gpio_pull{up,down}
Add functions to access the GPIO registers for pullup and pulldown. These are needed for handling gpio registration. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Patchwork: http://patchwork.linux-mips.org/patch/4589 Acked-by: Florian Fainelli <florian@openwrt.org>
This commit is contained in:

zatwierdzone przez
John Crispin

rodzic
cf0936b06d
commit
da22f22e91
@@ -442,6 +442,22 @@ u32 ssb_chipco_gpio_polarity(struct ssb_chipcommon *cc, u32 mask, u32 value)
|
||||
return chipco_write32_masked(cc, SSB_CHIPCO_GPIOPOL, mask, value);
|
||||
}
|
||||
|
||||
u32 ssb_chipco_gpio_pullup(struct ssb_chipcommon *cc, u32 mask, u32 value)
|
||||
{
|
||||
if (cc->dev->id.revision < 20)
|
||||
return 0xffffffff;
|
||||
|
||||
return chipco_write32_masked(cc, SSB_CHIPCO_GPIOPULLUP, mask, value);
|
||||
}
|
||||
|
||||
u32 ssb_chipco_gpio_pulldown(struct ssb_chipcommon *cc, u32 mask, u32 value)
|
||||
{
|
||||
if (cc->dev->id.revision < 20)
|
||||
return 0xffffffff;
|
||||
|
||||
return chipco_write32_masked(cc, SSB_CHIPCO_GPIOPULLDOWN, mask, value);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_SSB_SERIAL
|
||||
int ssb_chipco_serial_init(struct ssb_chipcommon *cc,
|
||||
struct ssb_serial_port *ports)
|
||||
|
Reference in New Issue
Block a user