Lines Matching defs:conf
44 void __iomem *conf;
61 u32 conf;
63 if (priv->conf) {
64 conf = readl_relaxed(priv->conf);
66 conf |= BIT(lane->port);
68 conf &= ~BIT(lane->port);
69 writel(conf, priv->conf);
209 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "conf");
211 priv->conf = devm_ioremap_resource(&pdev->dev, res);
212 if (IS_ERR(priv->conf))
213 return PTR_ERR(priv->conf);