Lines Matching refs:pupd
172 u32 pupd, mask = get_mask(offset); in stmfx_pinconf_get_pupd() local
175 ret = regmap_read(pctl->stmfx->map, reg, &pupd); in stmfx_pinconf_get_pupd()
179 return !!(pupd & mask); in stmfx_pinconf_get_pupd()
183 unsigned int offset, u32 pupd) in stmfx_pinconf_set_pupd() argument
188 return regmap_write_bits(pctl->stmfx->map, reg, mask, pupd ? mask : 0); in stmfx_pinconf_set_pupd()
221 int ret, dir, type, pupd; in stmfx_pinconf_get() local
240 pupd = stmfx_pinconf_get_pupd(pctl, pin); in stmfx_pinconf_get()
241 if (pupd < 0) in stmfx_pinconf_get()
242 return pupd; in stmfx_pinconf_get()
246 if ((!dir && (!type || !pupd)) || (dir && !type)) in stmfx_pinconf_get()
250 if (dir && type && !pupd) in stmfx_pinconf_get()
254 if (type && pupd) in stmfx_pinconf_get()
351 int dir, type, pupd, val; in stmfx_pinconf_dbg_show() local
363 pupd = stmfx_pinconf_get_pupd(pctl, offset); in stmfx_pinconf_dbg_show()
364 if (pupd < 0) in stmfx_pinconf_dbg_show()
374 pupd ? "with" : "without"); in stmfx_pinconf_dbg_show()
381 pupd ? "up" : "down"); in stmfx_pinconf_dbg_show()
383 seq_printf(s, "%s ", pupd ? "floating" : "analog"); in stmfx_pinconf_dbg_show()