Searched refs:config_word (Results 1 - 4 of 4) sorted by relevance

/linux-4.4.14/drivers/net/ethernet/qlogic/netxen/
H A Dnetxen_nic_hw.h57 #define netxen_gb_tx_flowctl(config_word) \
58 ((config_word) |= 1 << 4)
59 #define netxen_gb_rx_flowctl(config_word) \
60 ((config_word) |= 1 << 5)
61 #define netxen_gb_tx_reset_pb(config_word) \
62 ((config_word) |= 1 << 16)
63 #define netxen_gb_rx_reset_pb(config_word) \
64 ((config_word) |= 1 << 17)
65 #define netxen_gb_tx_reset_mac(config_word) \
66 ((config_word) |= 1 << 18)
67 #define netxen_gb_rx_reset_mac(config_word) \
68 ((config_word) |= 1 << 19)
70 #define netxen_gb_unset_tx_flowctl(config_word) \
71 ((config_word) &= ~(1 << 4))
72 #define netxen_gb_unset_rx_flowctl(config_word) \
73 ((config_word) &= ~(1 << 5))
75 #define netxen_gb_get_tx_synced(config_word) \
76 _netxen_crb_get_bit((config_word), 1)
77 #define netxen_gb_get_rx_synced(config_word) \
78 _netxen_crb_get_bit((config_word), 3)
79 #define netxen_gb_get_tx_flowctl(config_word) \
80 _netxen_crb_get_bit((config_word), 4)
81 #define netxen_gb_get_rx_flowctl(config_word) \
82 _netxen_crb_get_bit((config_word), 5)
83 #define netxen_gb_get_soft_reset(config_word) \
84 _netxen_crb_get_bit((config_word), 31)
86 #define netxen_gb_get_stationaddress_low(config_word) ((config_word) >> 16)
88 #define netxen_gb_set_mii_mgmt_clockselect(config_word, val) \
89 ((config_word) |= ((val) & 0x07))
90 #define netxen_gb_mii_mgmt_reset(config_word) \
91 ((config_word) |= 1 << 31)
92 #define netxen_gb_mii_mgmt_unset(config_word) \
93 ((config_word) &= ~(1 << 31))
101 #define netxen_gb_mii_mgmt_set_read_cycle(config_word) \
102 ((config_word) |= 1 << 0)
103 #define netxen_gb_mii_mgmt_reg_addr(config_word, val) \
104 ((config_word) |= ((val) & 0x1F))
105 #define netxen_gb_mii_mgmt_phy_addr(config_word, val) \
106 ((config_word) |= (((val) & 0x1F) << 8))
115 #define netxen_get_gb_mii_mgmt_busy(config_word) \
116 _netxen_crb_get_bit(config_word, 0)
117 #define netxen_get_gb_mii_mgmt_scanning(config_word) \
118 _netxen_crb_get_bit(config_word, 1)
119 #define netxen_get_gb_mii_mgmt_notvalid(config_word) \
120 _netxen_crb_get_bit(config_word, 2)
132 #define netxen_xg_set_xg0_mask(config_word) \
133 ((config_word) |= 1 << 0)
134 #define netxen_xg_set_xg1_mask(config_word) \
135 ((config_word) |= 1 << 3)
137 #define netxen_xg_get_xg0_mask(config_word) \
138 _netxen_crb_get_bit((config_word), 0)
139 #define netxen_xg_get_xg1_mask(config_word) \
140 _netxen_crb_get_bit((config_word), 3)
142 #define netxen_xg_unset_xg0_mask(config_word) \
143 ((config_word) &= ~(1 << 0))
144 #define netxen_xg_unset_xg1_mask(config_word) \
145 ((config_word) &= ~(1 << 3))
157 #define netxen_gb_set_gb0_mask(config_word) \
158 ((config_word) |= 1 << 0)
159 #define netxen_gb_set_gb1_mask(config_word) \
160 ((config_word) |= 1 << 2)
161 #define netxen_gb_set_gb2_mask(config_word) \
162 ((config_word) |= 1 << 4)
163 #define netxen_gb_set_gb3_mask(config_word) \
164 ((config_word) |= 1 << 6)
166 #define netxen_gb_get_gb0_mask(config_word) \
167 _netxen_crb_get_bit((config_word), 0)
168 #define netxen_gb_get_gb1_mask(config_word) \
169 _netxen_crb_get_bit((config_word), 2)
170 #define netxen_gb_get_gb2_mask(config_word) \
171 _netxen_crb_get_bit((config_word), 4)
172 #define netxen_gb_get_gb3_mask(config_word) \
173 _netxen_crb_get_bit((config_word), 6)
175 #define netxen_gb_unset_gb0_mask(config_word) \
176 ((config_word) &= ~(1 << 0))
177 #define netxen_gb_unset_gb1_mask(config_word) \
178 ((config_word) &= ~(1 << 2))
179 #define netxen_gb_unset_gb2_mask(config_word) \
180 ((config_word) &= ~(1 << 4))
181 #define netxen_gb_unset_gb3_mask(config_word) \
182 ((config_word) &= ~(1 << 6))
230 #define netxen_get_phy_speed(config_word) (((config_word) >> 14) & 0x03)
232 #define netxen_set_phy_speed(config_word, val) \
233 ((config_word) |= ((val & 0x03) << 14))
234 #define netxen_set_phy_duplex(config_word) \
235 ((config_word) |= 1 << 13)
236 #define netxen_clear_phy_duplex(config_word) \
237 ((config_word) &= ~(1 << 13))
239 #define netxen_get_phy_link(config_word) \
240 _netxen_crb_get_bit(config_word, 10)
241 #define netxen_get_phy_duplex(config_word) \
242 _netxen_crb_get_bit(config_word, 13)
251 #define netxen_get_niu_enable_ge(config_word) \
252 _netxen_crb_get_bit(config_word, 1)
271 #define netxen_xg_soft_reset(config_word) \
272 ((config_word) |= 1 << 4)
H A Dnetxen_nic.h246 #define netxen_set_msg_peg_id(config_word, val) \
247 ((config_word) &= ~3, (config_word) |= val & 3)
248 #define netxen_set_msg_privid(config_word) \
249 ((config_word) |= 1 << 2)
250 #define netxen_set_msg_count(config_word, val) \
251 ((config_word) &= ~(0x7fff<<3), (config_word) |= (val & 0x7fff) << 3)
252 #define netxen_set_msg_ctxid(config_word, val) \
253 ((config_word) &= ~(0x3ff<<18), (config_word) |= (val & 0x3ff) << 18)
254 #define netxen_set_msg_opcode(config_word, val) \
255 ((config_word) &= ~(0xf<<28), (config_word) |= (val & 0xf) << 28)
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_hdr.h818 #define qlcnic_gb_rx_flowctl(config_word) \
819 ((config_word) |= 1 << 5)
820 #define qlcnic_gb_get_rx_flowctl(config_word) \
821 _qlcnic_crb_get_bit((config_word), 5)
822 #define qlcnic_gb_unset_rx_flowctl(config_word) \
823 ((config_word) &= ~(1 << 5))
829 #define qlcnic_gb_set_gb0_mask(config_word) \
830 ((config_word) |= 1 << 0)
831 #define qlcnic_gb_set_gb1_mask(config_word) \
832 ((config_word) |= 1 << 2)
833 #define qlcnic_gb_set_gb2_mask(config_word) \
834 ((config_word) |= 1 << 4)
835 #define qlcnic_gb_set_gb3_mask(config_word) \
836 ((config_word) |= 1 << 6)
838 #define qlcnic_gb_get_gb0_mask(config_word) \
839 _qlcnic_crb_get_bit((config_word), 0)
840 #define qlcnic_gb_get_gb1_mask(config_word) \
841 _qlcnic_crb_get_bit((config_word), 2)
842 #define qlcnic_gb_get_gb2_mask(config_word) \
843 _qlcnic_crb_get_bit((config_word), 4)
844 #define qlcnic_gb_get_gb3_mask(config_word) \
845 _qlcnic_crb_get_bit((config_word), 6)
847 #define qlcnic_gb_unset_gb0_mask(config_word) \
848 ((config_word) &= ~(1 << 0))
849 #define qlcnic_gb_unset_gb1_mask(config_word) \
850 ((config_word) &= ~(1 << 2))
851 #define qlcnic_gb_unset_gb2_mask(config_word) \
852 ((config_word) &= ~(1 << 4))
853 #define qlcnic_gb_unset_gb3_mask(config_word) \
854 ((config_word) &= ~(1 << 6))
867 #define qlcnic_xg_set_xg0_mask(config_word) \
868 ((config_word) |= 1 << 0)
869 #define qlcnic_xg_set_xg1_mask(config_word) \
870 ((config_word) |= 1 << 3)
872 #define qlcnic_xg_get_xg0_mask(config_word) \
873 _qlcnic_crb_get_bit((config_word), 0)
874 #define qlcnic_xg_get_xg1_mask(config_word) \
875 _qlcnic_crb_get_bit((config_word), 3)
877 #define qlcnic_xg_unset_xg0_mask(config_word) \
878 ((config_word) &= ~(1 << 0))
879 #define qlcnic_xg_unset_xg1_mask(config_word) \
880 ((config_word) &= ~(1 << 3))
918 #define qlcnic_get_phy_speed(config_word) (((config_word) >> 14) & 0x03)
920 #define qlcnic_set_phy_speed(config_word, val) \
921 ((config_word) |= ((val & 0x03) << 14))
922 #define qlcnic_set_phy_duplex(config_word) \
923 ((config_word) |= 1 << 13)
924 #define qlcnic_clear_phy_duplex(config_word) \
925 ((config_word) &= ~(1 << 13))
927 #define qlcnic_get_phy_link(config_word) \
928 _qlcnic_crb_get_bit(config_word, 10)
929 #define qlcnic_get_phy_duplex(config_word) \
930 _qlcnic_crb_get_bit(config_word, 13)
/linux-4.4.14/arch/arm/mach-ep93xx/
H A Dclock.c486 static unsigned long calc_pll_rate(u32 config_word) calc_pll_rate() argument
492 rate *= ((config_word >> 11) & 0x1f) + 1; /* X1FBD */ calc_pll_rate()
493 rate *= ((config_word >> 5) & 0x3f) + 1; /* X2FBD */ calc_pll_rate()
494 do_div(rate, (config_word & 0x1f) + 1); /* X2IPD */ calc_pll_rate()
495 for (i = 0; i < ((config_word >> 16) & 3); i++) /* PS */ calc_pll_rate()

Completed in 210 milliseconds