Lines Matching refs:tunables

602 	} tunables;  member
882 apple_tunable_apply(atcphy->regs.core, atcphy->tunables.common[0]); in atcphy_apply_tunables()
883 apple_tunable_apply(atcphy->regs.axi2af, atcphy->tunables.axi2af); in atcphy_apply_tunables()
884 apple_tunable_apply(atcphy->regs.core, atcphy->tunables.common[1]); in atcphy_apply_tunables()
894 apple_tunable_apply(atcphy->regs.core, atcphy->tunables.lane_usb3[lane0]); in atcphy_apply_tunables()
895 apple_tunable_apply(atcphy->regs.core, atcphy->tunables.lane_dp[lane1]); in atcphy_apply_tunables()
899 apple_tunable_apply(atcphy->regs.core, atcphy->tunables.lane_dp[lane0]); in atcphy_apply_tunables()
900 apple_tunable_apply(atcphy->regs.core, atcphy->tunables.lane_dp[lane1]); in atcphy_apply_tunables()
910 apple_tunable_apply(atcphy->regs.core, atcphy->tunables.lane_usb4[lane0]); in atcphy_apply_tunables()
911 apple_tunable_apply(atcphy->regs.core, atcphy->tunables.lane_usb4[lane1]); in atcphy_apply_tunables()
2183 } tunables[] = { in atcphy_load_tunables() local
2184 { "apple,tunable-axi2af", &atcphy->tunables.axi2af, atcphy->res.axi2af }, in atcphy_load_tunables()
2185 { "apple,tunable-common-a", &atcphy->tunables.common[0], atcphy->res.core }, in atcphy_load_tunables()
2186 { "apple,tunable-common-b", &atcphy->tunables.common[1], atcphy->res.core }, in atcphy_load_tunables()
2187 { "apple,tunable-lane0-usb", &atcphy->tunables.lane_usb3[0], atcphy->res.core }, in atcphy_load_tunables()
2188 { "apple,tunable-lane1-usb", &atcphy->tunables.lane_usb3[1], atcphy->res.core }, in atcphy_load_tunables()
2189 { "apple,tunable-lane0-cio", &atcphy->tunables.lane_usb4[0], atcphy->res.core }, in atcphy_load_tunables()
2190 { "apple,tunable-lane1-cio", &atcphy->tunables.lane_usb4[1], atcphy->res.core }, in atcphy_load_tunables()
2191 { "apple,tunable-lane0-dp", &atcphy->tunables.lane_dp[0], atcphy->res.core }, in atcphy_load_tunables()
2192 { "apple,tunable-lane1-dp", &atcphy->tunables.lane_dp[1], atcphy->res.core }, in atcphy_load_tunables()
2195 for (int i = 0; i < ARRAY_SIZE(tunables); i++) { in atcphy_load_tunables()
2196 *tunables[i].tunable = devm_apple_tunable_parse( in atcphy_load_tunables()
2197 atcphy->dev, atcphy->np, tunables[i].dt_name, tunables[i].res); in atcphy_load_tunables()
2198 if (IS_ERR(*tunables[i].tunable)) { in atcphy_load_tunables()
2200 tunables[i].dt_name, PTR_ERR(*tunables[i].tunable)); in atcphy_load_tunables()
2201 return PTR_ERR(*tunables[i].tunable); in atcphy_load_tunables()