Home
last modified time | relevance | path

Searched refs:bitmask (Results 1 – 25 of 86) sorted by relevance

1234

/drivers/net/ethernet/brocade/bna/
Dbna.h122 #define is_xxx_enable(mode, bitmask, xxx) ((bitmask & xxx) && (mode & xxx)) argument
124 #define is_xxx_disable(mode, bitmask, xxx) ((bitmask & xxx) && !(mode & xxx)) argument
126 #define xxx_enable(mode, bitmask, xxx) \ argument
128 bitmask |= xxx; \
132 #define xxx_disable(mode, bitmask, xxx) \ argument
134 bitmask |= xxx; \
138 #define xxx_inactive(mode, bitmask, xxx) \ argument
140 bitmask &= ~xxx; \
144 #define is_promisc_enable(mode, bitmask) \ argument
145 is_xxx_enable(mode, bitmask, BNA_RXMODE_PROMISC)
[all …]
/drivers/hwmon/
Dasc7621.c850 PREAD(in0_alarm, 0, PRI_HIGH, 0x41, 0, 0x01, 0, bitmask),
851 PREAD(in1_alarm, 1, PRI_HIGH, 0x41, 0, 0x01, 1, bitmask),
852 PREAD(in2_alarm, 2, PRI_HIGH, 0x41, 0, 0x01, 2, bitmask),
853 PREAD(in3_alarm, 3, PRI_HIGH, 0x41, 0, 0x01, 3, bitmask),
854 PREAD(in4_alarm, 4, PRI_HIGH, 0x42, 0, 0x01, 0, bitmask),
866 PREAD(fan1_alarm, 0, PRI_HIGH, 0x42, 0, 0x01, 2, bitmask),
867 PREAD(fan2_alarm, 1, PRI_HIGH, 0x42, 0, 0x01, 3, bitmask),
868 PREAD(fan3_alarm, 2, PRI_HIGH, 0x42, 0, 0x01, 4, bitmask),
869 PREAD(fan4_alarm, 3, PRI_HIGH, 0x42, 0, 0x01, 5, bitmask),
890 PREAD(temp1_alarm, 0, PRI_HIGH, 0x41, 0, 0x01, 4, bitmask),
[all …]
/drivers/staging/rtl8192u/
Dr819xU_phy.c74 void rtl8192_setBBreg(struct net_device *dev, u32 reg_addr, u32 bitmask, in rtl8192_setBBreg() argument
80 if (bitmask != bMaskDWord) { in rtl8192_setBBreg()
82 bitshift = ffs(bitmask) - 1; in rtl8192_setBBreg()
83 reg &= ~bitmask; in rtl8192_setBBreg()
100 u32 rtl8192_QueryBBReg(struct net_device *dev, u32 reg_addr, u32 bitmask) in rtl8192_QueryBBReg() argument
105 bitshift = ffs(bitmask) - 1; in rtl8192_QueryBBReg()
107 return (reg & bitmask) >> bitshift; in rtl8192_QueryBBReg()
282 u32 reg_addr, u32 bitmask, u32 data) in rtl8192_phy_SetRFReg() argument
291 if (bitmask != bMask12Bits) { in rtl8192_phy_SetRFReg()
294 bitshift = ffs(bitmask) - 1; in rtl8192_phy_SetRFReg()
[all …]
Dr819xU_phy.h62 u32 bitmask, u32 data);
63 u32 rtl8192_QueryBBReg(struct net_device *dev, u32 reg_addr, u32 bitmask);
65 u32 reg_addr, u32 bitmask, u32 data);
67 u32 reg_addr, u32 bitmask);
/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
Dphy.h82 u32 rtl92c_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask);
83 void rtl92c_phy_set_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask,
86 u32 regaddr, u32 bitmask);
88 u32 regaddr, u32 bitmask, u32 data);
123 u32 _rtl92c_phy_calculate_bit_shift(u32 bitmask);
130 u32 regaddr, u32 bitmask, u32 data);
Dphy.c48 enum radio_path rfpath, u32 regaddr, u32 bitmask) in rtl92c_phy_query_rf_reg() argument
56 regaddr, rfpath, bitmask); in rtl92c_phy_query_rf_reg()
68 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92c_phy_query_rf_reg()
69 readback_value = (original_value & bitmask) >> bitshift; in rtl92c_phy_query_rf_reg()
75 regaddr, rfpath, bitmask, original_value); in rtl92c_phy_query_rf_reg()
122 u32 regaddr, u32 bitmask, u32 data) in rtl92ce_phy_set_rf_reg() argument
130 regaddr, bitmask, data, rfpath); in rtl92ce_phy_set_rf_reg()
135 if (bitmask != RFREG_OFFSET_MASK) { in rtl92ce_phy_set_rf_reg()
139 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92ce_phy_set_rf_reg()
141 ((original_value & (~bitmask)) | in rtl92ce_phy_set_rf_reg()
[all …]
/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/
Dphy.c45 enum radio_path rfpath, u32 regaddr, u32 bitmask) in rtl92cu_phy_query_rf_reg() argument
53 regaddr, rfpath, bitmask); in rtl92cu_phy_query_rf_reg()
61 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92cu_phy_query_rf_reg()
62 readback_value = (original_value & bitmask) >> bitshift; in rtl92cu_phy_query_rf_reg()
65 regaddr, rfpath, bitmask, original_value); in rtl92cu_phy_query_rf_reg()
71 u32 regaddr, u32 bitmask, u32 data) in rtl92cu_phy_set_rf_reg() argument
79 regaddr, bitmask, data, rfpath); in rtl92cu_phy_set_rf_reg()
81 if (bitmask != RFREG_OFFSET_MASK) { in rtl92cu_phy_set_rf_reg()
85 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92cu_phy_set_rf_reg()
87 ((original_value & (~bitmask)) | in rtl92cu_phy_set_rf_reg()
[all …]
Dsw.h46 u32 regaddr, u32 bitmask, u32 data);
50 enum radio_path rfpath, u32 regaddr, u32 bitmask);
Dphy.h38 enum radio_path rfpath, u32 regaddr, u32 bitmask);
41 u32 regaddr, u32 bitmask, u32 data);
/drivers/net/wireless/realtek/rtlwifi/rtl8723com/
Dphy_common.c34 u32 regaddr, u32 bitmask) in rtl8723_phy_query_bb_reg() argument
40 "regaddr(%#x), bitmask(%#x)\n", regaddr, bitmask); in rtl8723_phy_query_bb_reg()
42 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723_phy_query_bb_reg()
43 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl8723_phy_query_bb_reg()
46 "BBR MASK=0x%x Addr[0x%x]=0x%x\n", bitmask, in rtl8723_phy_query_bb_reg()
53 u32 bitmask, u32 data) in rtl8723_phy_set_bb_reg() argument
59 "regaddr(%#x), bitmask(%#x), data(%#x)\n", regaddr, bitmask, in rtl8723_phy_set_bb_reg()
62 if (bitmask != MASKDWORD) { in rtl8723_phy_set_bb_reg()
64 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723_phy_set_bb_reg()
65 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl8723_phy_set_bb_reg()
[all …]
Dphy_common.h49 u32 regaddr, u32 bitmask);
51 u32 bitmask, u32 data);
52 u32 rtl8723_phy_calculate_bit_shift(u32 bitmask);
/drivers/media/radio/
Dradio-zoltrix.c110 unsigned long long bitmask, f, m; in zoltrix_s_frequency() local
122 bitmask = 0xc480402c10080000ull; in zoltrix_s_frequency()
132 bitmask = (bitmask ^ ((f & 0xff) << 47) ^ ((f & 0xff00) << 30) ^ (stereo << 31)); in zoltrix_s_frequency()
134 if ((bitmask & 0x8000000000000000ull) != 0) { in zoltrix_s_frequency()
149 bitmask *= 2; in zoltrix_s_frequency()
/drivers/input/joystick/
Dtwidjoy.c69 int bitmask; member
111 for (bp = twidjoy_buttons; bp->bitmask; bp++) { in twidjoy_process_packet()
112 int value = (button_bits & (bp->bitmask << bp->bitshift)) >> bp->bitshift; in twidjoy_process_packet()
115 for (i = 0; i < bp->bitmask; i++) in twidjoy_process_packet()
209 for (bp = twidjoy_buttons; bp->bitmask; bp++) in twidjoy_connect()
210 for (i = 0; i < bp->bitmask; i++) in twidjoy_connect()
/drivers/staging/rtl8712/
Drtl871x_mp.c209 static u32 bitshift(u32 bitmask) in bitshift() argument
214 if (((bitmask >> i) & 0x1) == 1) in bitshift()
219 static u32 get_bb_reg(struct _adapter *pAdapter, u16 offset, u32 bitmask) in get_bb_reg() argument
224 bit_shift = bitshift(bitmask); in get_bb_reg()
225 return (org_value & bitmask) >> bit_shift; in get_bb_reg()
230 u32 bitmask, in set_bb_reg() argument
235 if (bitmask != bMaskDWord) { in set_bb_reg()
237 bit_shift = bitshift(bitmask); in set_bb_reg()
238 new_value = (org_value & (~bitmask)) | (value << bit_shift); in set_bb_reg()
246 u32 bitmask) in get_rf_reg() argument
[all …]
Drtl871x_mp.h262 u32 r8712_get_bb_reg(struct _adapter *Adapter, u16 offset, u32 bitmask);
264 u32 bitmask, u32 value);
266 u32 bitmask);
268 u32 bitmask, u32 value);
/drivers/net/wireless/realtek/rtlwifi/rtl8192se/
Dphy.h77 u32 rtl92s_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask);
78 void rtl92s_phy_set_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask,
82 u32 regaddr, u32 bitmask);
84 u32 regaddr, u32 bitmask, u32 data);
Dphy.c43 static u32 _rtl92s_phy_calculate_bit_shift(u32 bitmask) in _rtl92s_phy_calculate_bit_shift() argument
48 if (((bitmask >> i) & 0x1) == 1) in _rtl92s_phy_calculate_bit_shift()
55 u32 rtl92s_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask) in rtl92s_phy_query_bb_reg() argument
61 regaddr, bitmask); in rtl92s_phy_query_bb_reg()
64 bitshift = _rtl92s_phy_calculate_bit_shift(bitmask); in rtl92s_phy_query_bb_reg()
65 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92s_phy_query_bb_reg()
68 bitmask, regaddr, originalvalue); in rtl92s_phy_query_bb_reg()
74 void rtl92s_phy_set_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask, in rtl92s_phy_set_bb_reg() argument
82 regaddr, bitmask, data); in rtl92s_phy_set_bb_reg()
84 if (bitmask != MASKDWORD) { in rtl92s_phy_set_bb_reg()
[all …]
/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/
Dphy.h120 u32 regaddr, u32 bitmask);
122 u32 regaddr, u32 bitmask, u32 data);
125 u32 bitmask);
128 u32 bitmask, u32 data);
/drivers/net/wireless/realtek/rtlwifi/rtl8192de/
Dphy.h129 u32 regaddr, u32 bitmask);
131 u32 regaddr, u32 bitmask, u32 data);
134 u32 bitmask);
137 u32 bitmask, u32 data);
/drivers/net/wireless/realtek/rtlwifi/rtl8192c/
Dphy_common.h189 u32 regaddr, u32 bitmask);
191 u32 regaddr, u32 bitmask, u32 data);
194 u32 bitmask);
225 u32 _rtl92c_phy_calculate_bit_shift(u32 bitmask);
250 u32 regaddr, u32 bitmask,
/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/
Dphy.h201 u32 regaddr, u32 bitmask);
203 u32 regaddr, u32 bitmask, u32 data);
206 u32 bitmask);
209 u32 bitmask, u32 data);
Dphy.c41 static u32 _rtl88e_phy_calculate_bit_shift(u32 bitmask);
63 u32 rtl88e_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask) in rtl88e_phy_query_bb_reg() argument
69 "regaddr(%#x), bitmask(%#x)\n", regaddr, bitmask); in rtl88e_phy_query_bb_reg()
71 bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); in rtl88e_phy_query_bb_reg()
72 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl88e_phy_query_bb_reg()
75 "BBR MASK=0x%x Addr[0x%x]=0x%x\n", bitmask, in rtl88e_phy_query_bb_reg()
83 u32 regaddr, u32 bitmask, u32 data) in rtl88e_phy_set_bb_reg() argument
90 regaddr, bitmask, data); in rtl88e_phy_set_bb_reg()
92 if (bitmask != MASKDWORD) { in rtl88e_phy_set_bb_reg()
94 bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); in rtl88e_phy_set_bb_reg()
[all …]
/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/
Dphy.h209 u32 regaddr, u32 bitmask);
211 u32 regaddr, u32 bitmask, u32 data);
214 u32 bitmask);
217 u32 bitmask, u32 data);
/drivers/tty/serial/
Dsccnxp.c341 u8 bitmask; in sccnxp_set_bit() local
345 bitmask = 1 << MCTRL_OBIT(s->pdata.mctrl_cfg[port->line], sig); in sccnxp_set_bit()
347 sccnxp_write(port, SCCNXP_SOP_REG, bitmask); in sccnxp_set_bit()
349 sccnxp_write(port, SCCNXP_ROP_REG, bitmask); in sccnxp_set_bit()
554 u8 bitmask, ipr; in sccnxp_get_mctrl() local
567 bitmask = 1 << MCTRL_IBIT(s->pdata.mctrl_cfg[port->line], in sccnxp_get_mctrl()
570 mctrl |= (ipr & bitmask) ? TIOCM_DSR : 0; in sccnxp_get_mctrl()
573 bitmask = 1 << MCTRL_IBIT(s->pdata.mctrl_cfg[port->line], in sccnxp_get_mctrl()
576 mctrl |= (ipr & bitmask) ? TIOCM_CTS : 0; in sccnxp_get_mctrl()
579 bitmask = 1 << MCTRL_IBIT(s->pdata.mctrl_cfg[port->line], in sccnxp_get_mctrl()
[all …]
/drivers/video/fbdev/
Darcfb.c254 unsigned char bitmask, rightshift; in arcfb_lcd_update_page() local
267 bitmask=1; in arcfb_lcd_update_page()
273 val |= (*(src + (i*linesize)) & bitmask) in arcfb_lcd_update_page()
276 val |= (*(src + (i*linesize)) & bitmask) in arcfb_lcd_update_page()
282 if (bitmask == 0x80) { in arcfb_lcd_update_page()
283 bitmask = 1; in arcfb_lcd_update_page()
287 bitmask <<= 1; in arcfb_lcd_update_page()

1234