Lines Matching defs:conf
45 void __iomem *conf;
62 u32 conf;
64 if (priv->conf) {
65 conf = readl_relaxed(priv->conf);
67 conf |= BIT(lane->port);
69 conf &= ~BIT(lane->port);
70 writel(conf, priv->conf);
210 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "conf");
212 priv->conf = devm_ioremap_resource(&pdev->dev, res);
213 if (IS_ERR(priv->conf))
214 return PTR_ERR(priv->conf);