Lines Matching +full:valid +full:- +full:mask
1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2015-2016 Marvell International Ltd.
15 * is valid for specific lane. If the type is not valid,
23 int lane, opt, valid; in comphy_mux_check_config() local
30 if (comphy_map_data->type == PHY_TYPE_IGNORE) in comphy_mux_check_config()
33 mux_opt = mux_data->mux_values; in comphy_mux_check_config()
34 for (opt = 0, valid = 0; opt < mux_data->max_lane_values; in comphy_mux_check_config()
36 if (mux_opt->type == comphy_map_data->type) { in comphy_mux_check_config()
37 valid = 1; in comphy_mux_check_config()
41 if (valid == 0) { in comphy_mux_check_config()
43 lane, comphy_map_data->type); in comphy_mux_check_config()
46 comphy_map_data->type = PHY_TYPE_UNCONNECTED; in comphy_mux_check_config()
49 lane, comphy_map_data->type); in comphy_mux_check_config()
65 mux_opt = mux_data->mux_values; in comphy_mux_get_mux_value()
66 for (opt = 0 ; opt < mux_data->max_lane_values; opt++, mux_opt++) { in comphy_mux_get_mux_value()
67 if (mux_opt->type == type) { in comphy_mux_get_mux_value()
68 value = mux_opt->mux_value; in comphy_mux_get_mux_value()
84 u32 lane, value, offset, mask; in comphy_mux_reg_write() local
90 if (comphy_map_data->type == PHY_TYPE_IGNORE) in comphy_mux_reg_write()
102 mask = (((1 << bitcount) - 1) << offset); in comphy_mux_reg_write()
104 comphy_map_data->type, in comphy_mux_reg_write()
106 reg_set(selector_base, value, mask); in comphy_mux_reg_write()
123 comphy_max_lanes = chip_cfg->comphy_lanes_count; in comphy_mux_init()
124 mux_data = chip_cfg->mux_data; in comphy_mux_init()
125 mux_lane_order = chip_cfg->comphy_mux_lane_order; in comphy_mux_init()
126 mux_bitcount = chip_cfg->comphy_mux_bitcount; in comphy_mux_init()
128 /* check if the configuration is valid */ in comphy_mux_init()