Home
last modified time | relevance | path

Searched refs:wx (Results 1 – 25 of 31) sorted by relevance

12

/linux-6.3-rc2/drivers/net/ethernet/wangxun/libwx/
A Dwx_hw.c29 void wx_intr_enable(struct wx *wx, u64 qmask) in wx_intr_enable() argument
48 void wx_irq_disable(struct wx *wx) in wx_irq_disable() argument
131 int wx_mng_present(struct wx *wx) in wx_mng_present() argument
461 int wx_reset_hostif(struct wx *wx) in wx_reset_hostif() argument
711 void wx_init_rx_addrs(struct wx *wx) in wx_init_rx_addrs() argument
723 wx_get_mac_addr(wx, wx->mac.addr); in wx_init_rx_addrs()
1068 void wx_disable_rx(struct wx *wx) in wx_disable_rx() argument
1505 void wx_configure(struct wx *wx) in wx_configure() argument
1558 int wx_stop_adapter(struct wx *wx) in wx_stop_adapter() argument
1600 void wx_reset_misc(struct wx *wx) in wx_reset_misc() argument
[all …]
A Dwx_hw.h7 void wx_intr_enable(struct wx *wx, u64 qmask);
8 void wx_irq_disable(struct wx *wx);
10 void wx_control_hw(struct wx *wx, bool drv);
11 int wx_mng_present(struct wx *wx);
17 int wx_reset_hostif(struct wx *wx);
20 void wx_init_rx_addrs(struct wx *wx);
24 void wx_disable_rx(struct wx *wx);
27 void wx_configure(struct wx *wx);
29 int wx_stop_adapter(struct wx *wx);
30 void wx_reset_misc(struct wx *wx);
[all …]
A Dwx_lib.h14 void wx_napi_enable_all(struct wx *wx);
15 void wx_napi_disable_all(struct wx *wx);
18 int wx_init_interrupt_scheme(struct wx *wx);
20 void wx_free_irq(struct wx *wx);
21 int wx_setup_isb_resources(struct wx *wx);
22 void wx_free_isb_resources(struct wx *wx);
24 void wx_configure_vectors(struct wx *wx);
25 void wx_clean_all_rx_rings(struct wx *wx);
26 void wx_clean_all_tx_rings(struct wx *wx);
27 void wx_free_resources(struct wx *wx);
[all …]
A Dwx_lib.c646 struct wx *wx = q_vector->wx; in wx_poll() local
876 struct wx *wx = netdev_priv(netdev); in wx_xmit_frame() local
898 void wx_napi_enable_all(struct wx *wx) in wx_napi_enable_all() argument
910 void wx_napi_disable_all(struct wx *wx) in wx_napi_disable_all() argument
1092 q_vector->wx = wx; in wx_alloc_q_vector()
1330 void wx_free_irq(struct wx *wx) in wx_free_irq() argument
1389 wx->isb_mem, wx->isb_dma); in wx_free_isb_resources()
1447 struct wx *wx = q_vector->wx; in wx_write_eitr() local
1723 void wx_free_resources(struct wx *wx) in wx_free_resources() argument
1926 int wx_setup_resources(struct wx *wx) in wx_setup_resources() argument
[all …]
A Dwx_ethtool.c12 struct wx *wx = netdev_priv(netdev); in wx_get_drvinfo() local
14 strscpy(info->driver, wx->driver_name, sizeof(info->driver)); in wx_get_drvinfo()
15 strscpy(info->fw_version, wx->eeprom_id, sizeof(info->fw_version)); in wx_get_drvinfo()
16 strscpy(info->bus_info, pci_name(wx->pdev), sizeof(info->bus_info)); in wx_get_drvinfo()
A Dwx_type.h589 struct wx *wx; member
615 struct wx { struct
699 rd32m(struct wx *wx, u32 reg, u32 mask) in rd32m() argument
703 val = rd32(wx, reg); in rd32m()
708 wr32m(struct wx *wx, u32 reg, u32 mask, u32 field) in wr32m() argument
712 val = rd32(wx, reg); in wr32m()
715 wr32(wx, reg, val); in wr32m()
723 #define wx_err(wx, fmt, arg...) \ argument
724 dev_err(&(wx)->pdev->dev, fmt, ##arg)
726 #define wx_dbg(wx, fmt, arg...) \ argument
[all …]
/linux-6.3-rc2/drivers/net/ethernet/wangxun/ngbe/
A Dngbe_main.c108 static int ngbe_sw_init(struct wx *wx) in ngbe_sw_init() argument
179 wx_intr_enable(wx, NGBE_INTR_MISC(wx)); in ngbe_irq_enable()
190 struct wx *wx = data; in ngbe_intr() local
222 struct wx *wx = data; in ngbe_msix_other() local
336 static void ngbe_down(struct wx *wx) in ngbe_down() argument
344 static void ngbe_up(struct wx *wx) in ngbe_up() argument
375 struct wx *wx = netdev_priv(netdev); in ngbe_open() local
427 struct wx *wx = netdev_priv(netdev); in ngbe_close() local
496 struct wx *wx = NULL; in ngbe_probe() local
616 wx->wol_enabled = !!(wx->wol); in ngbe_probe()
[all …]
A Dngbe_mdio.c16 struct wx *wx = bus->priv; in ngbe_phy_read_reg_internal() local
25 struct wx *wx = bus->priv; in ngbe_phy_write_reg_internal() local
35 struct wx *wx = bus->priv; in ngbe_phy_read_reg_mdi_c22() local
63 struct wx *wx = bus->priv; in ngbe_phy_write_reg_mdi_c22() local
89 struct wx *wx = bus->priv; in ngbe_phy_read_reg_mdi_c45() local
118 struct wx *wx = bus->priv; in ngbe_phy_write_reg_mdi_c45() local
145 struct wx *wx = bus->priv; in ngbe_phy_read_reg_c22() local
159 struct wx *wx = bus->priv; in ngbe_phy_write_reg_c22() local
172 struct wx *wx = netdev_priv(dev); in ngbe_handle_link_change() local
214 int ngbe_phy_connect(struct wx *wx) in ngbe_phy_connect() argument
[all …]
A Dngbe_hw.c13 int ngbe_eeprom_chksum_hostif(struct wx *wx) in ngbe_eeprom_chksum_hostif() argument
39 static int ngbe_reset_misc(struct wx *wx) in ngbe_reset_misc() argument
41 wx_reset_misc(wx); in ngbe_reset_misc()
42 if (wx->gpio_ctrl) { in ngbe_reset_misc()
50 void ngbe_sfp_modules_txrx_powerctl(struct wx *wx, bool swi) in ngbe_sfp_modules_txrx_powerctl() argument
64 int ngbe_reset_hw(struct wx *wx) in ngbe_reset_hw() argument
76 wr32(wx, WX_MIS_RST, val | rd32(wx, WX_MIS_RST)); in ngbe_reset_hw()
86 ngbe_reset_misc(wx); in ngbe_reset_hw()
89 wx_get_mac_addr(wx, wx->mac.perm_addr); in ngbe_reset_hw()
93 wx_init_rx_addrs(wx); in ngbe_reset_hw()
[all …]
A Dngbe_hw.h10 int ngbe_eeprom_chksum_hostif(struct wx *wx);
11 void ngbe_sfp_modules_txrx_powerctl(struct wx *wx, bool swi);
12 int ngbe_reset_hw(struct wx *wx);
A Dngbe_mdio.h10 int ngbe_phy_connect(struct wx *wx);
11 int ngbe_mdio_init(struct wx *wx);
/linux-6.3-rc2/drivers/net/ethernet/wangxun/txgbe/
A Dtxgbe_main.c85 wx_intr_enable(wx, TXGBE_INTR_MISC(wx)); in txgbe_irq_enable()
87 wx_intr_enable(wx, TXGBE_INTR_QALL(wx)); in txgbe_irq_enable()
98 struct wx *wx = data; in txgbe_intr() local
133 struct wx *wx = data; in txgbe_msix_other() local
250 static void txgbe_reset(struct wx *wx) in txgbe_reset() argument
310 static void txgbe_down(struct wx *wx) in txgbe_down() argument
323 static int txgbe_sw_init(struct wx *wx) in txgbe_sw_init() argument
385 struct wx *wx = netdev_priv(netdev); in txgbe_open() local
447 struct wx *wx = netdev_priv(netdev); in txgbe_close() local
459 struct wx *wx = pci_get_drvdata(pdev); in txgbe_dev_shutdown() local
[all …]
A Dtxgbe_hw.c23 static void txgbe_init_thermal_sensor_thresh(struct wx *wx) in txgbe_init_thermal_sensor_thresh() argument
30 if (wx->bus.func) in txgbe_init_thermal_sensor_thresh()
35 wr32(wx, WX_TS_INT_EN, in txgbe_init_thermal_sensor_thresh()
53 int txgbe_read_pba_string(struct wx *wx, u8 *pba_num, u32 pba_num_size) in txgbe_read_pba_string() argument
160 static int txgbe_calc_eeprom_checksum(struct wx *wx, u16 *checksum) in txgbe_calc_eeprom_checksum() argument
215 int txgbe_validate_eeprom_checksum(struct wx *wx, u16 *checksum_val) in txgbe_validate_eeprom_checksum() argument
236 status = wx_read_ee_hostif(wx, wx->eeprom.sw_region_offset + in txgbe_validate_eeprom_checksum()
256 static void txgbe_reset_misc(struct wx *wx) in txgbe_reset_misc() argument
258 wx_reset_misc(wx); in txgbe_reset_misc()
270 int txgbe_reset_hw(struct wx *wx) in txgbe_reset_hw() argument
[all …]
A Dtxgbe_hw.h7 int txgbe_read_pba_string(struct wx *wx, u8 *pba_num, u32 pba_num_size);
8 int txgbe_validate_eeprom_checksum(struct wx *wx, u16 *checksum_val);
9 int txgbe_reset_hw(struct wx *wx);
/linux-6.3-rc2/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
A DSchedGui.py12 import wx
17 class RootFrame(wx.Frame):
90 top_color = wx.Colour(r, g, b)
91 brush = wx.Brush(top_color, wx.SOLID)
98 color = wx.Colour(r, g, b)
99 brush = wx.Brush(color, wx.SOLID)
109 dc = wx.PaintDC(self.scroll_panel)
177 if key == wx.WXK_RIGHT:
179 elif key == wx.WXK_LEFT:
181 elif key == wx.WXK_DOWN:
[all …]
/linux-6.3-rc2/drivers/input/rmi4/
A Drmi_2d_sensor.c87 swap(obj->wx, obj->wy); in rmi_2d_sensor_abs_report()
89 wide = (obj->wx > obj->wy); in rmi_2d_sensor_abs_report()
90 major = max(obj->wx, obj->wy); in rmi_2d_sensor_abs_report()
91 minor = min(obj->wx, obj->wy); in rmi_2d_sensor_abs_report()
108 obj->wx, obj->wy); in rmi_2d_sensor_abs_report()
A Drmi_2d_sensor.h24 u8 wx; member
A Drmi_f12.c179 obj->wx = data1[6]; in rmi_f12_process_objects()
A Drmi_f11.c582 obj->wx = pos_data[3] & 0x0f; in rmi_f11_abs_pos_process()
/linux-6.3-rc2/drivers/input/touchscreen/
A Draydium_i2c_ts.c874 u8 wx, wy; in raydium_mt_event() local
889 wx = contact[RM_CONTACT_WIDTH_X_POS]; in raydium_mt_event()
892 input_report_abs(ts->input, ABS_MT_TOUCH_MAJOR, max(wx, wy)); in raydium_mt_event()
893 input_report_abs(ts->input, ABS_MT_TOUCH_MINOR, min(wx, wy)); in raydium_mt_event()
/linux-6.3-rc2/Documentation/security/
A Dsak.rst58 l-wx------ 1 root root 64 Mar 18 00:46 /proc/579/fd/0 -> /dev/console
/linux-6.3-rc2/tools/perf/scripts/python/
A Dsched-migration.py367 app = wx.App(False)
/linux-6.3-rc2/arch/arm64/include/asm/
A Dassembler.h34 wx\n .req w\n
/linux-6.3-rc2/drivers/gpu/drm/amd/display/dc/dml/dcn32/
A Ddisplay_mode_vba_util_32.c53 unsigned int pixelsPerClock, lstall, D, initalXmitDelay, w, s, ix, wx, p, l0, a, ax, L, in dml32_dscceComputeDelay() local
86 wx = (w + 2) / 3; in dml32_dscceComputeDelay()
87 p = 3 * wx - w; in dml32_dscceComputeDelay()
91 L = (ax + wx - 1) / wx; in dml32_dscceComputeDelay()
96 Delay = L * wx * (numSlices - 1) + ax + s + lstall + 22; in dml32_dscceComputeDelay()
/linux-6.3-rc2/drivers/gpu/drm/amd/display/dc/dml/dcn20/
A Ddisplay_mode_vba_20.c319 unsigned int pixelsPerClock, lstall, D, initalXmitDelay, w, s, ix, wx, p, l0, a, ax, l, in dscceComputeDelay() local
350 wx = (w + 2) / 3; in dscceComputeDelay()
351 p = 3 * wx - w; in dscceComputeDelay()
355 l = (ax + wx - 1) / wx; in dscceComputeDelay()
360 Delay = l * wx * (numSlices - 1) + ax + s + lstall + 22; in dscceComputeDelay()

Completed in 71 milliseconds

12