Lines Matching defs:syscon
11 #include <linux/mfd/syscon.h>
61 struct regmap *syscon;
217 ret = regmap_read(opp_data->syscon, opp_data->soc_data->efuse_offset,
220 /* not a syscon register! */
231 "Failed to read the efuse value from syscon: %d\n",
258 ret = regmap_read(opp_data->syscon, opp_data->soc_data->rev_offset,
261 /* not a syscon register! */
272 "Failed to read the revision number from syscon: %d\n",
287 opp_data->syscon = syscon_regmap_lookup_by_phandle(np,
288 "syscon");
289 if (IS_ERR(opp_data->syscon)) {
291 "\"syscon\" is missing, cannot use OPPv2 table.\n");
292 return PTR_ERR(opp_data->syscon);