Home
last modified time | relevance | path

Searched refs:wx (Results 1 - 25 of 44) sorted by relevance

12

/kernel/linux/linux-6.6/drivers/net/ethernet/wangxun/ngbe/
H A Dngbe_main.c48 * @wx: pointer to hardware structure
50 static void ngbe_init_type_code(struct wx *wx) in ngbe_init_type_code() argument
55 wx->mac.type = wx_mac_em; in ngbe_init_type_code()
56 type_mask = (u16)(wx->subsystem_device_id & NGBE_OEM_MASK); in ngbe_init_type_code()
57 ncsi_mask = wx->subsystem_device_id & NGBE_NCSI_MASK; in ngbe_init_type_code()
58 wol_mask = wx->subsystem_device_id & NGBE_WOL_MASK; in ngbe_init_type_code()
60 val = rd32(wx, WX_CFG_PORT_ST); in ngbe_init_type_code()
61 wx->mac_type = (val & BIT(7)) >> 7 ? in ngbe_init_type_code()
65 wx in ngbe_init_type_code()
88 ngbe_init_rss_key(struct wx *wx) ngbe_init_rss_key() argument
108 ngbe_sw_init(struct wx *wx) ngbe_sw_init() argument
160 ngbe_irq_enable(struct wx *wx, bool queues) ngbe_irq_enable() argument
189 struct wx *wx = data; ngbe_intr() local
221 struct wx *wx = data; ngbe_msix_other() local
237 ngbe_request_msix_irqs(struct wx *wx) ngbe_request_msix_irqs() argument
289 ngbe_request_irq(struct wx *wx) ngbe_request_irq() argument
310 ngbe_disable_device(struct wx *wx) ngbe_disable_device() argument
335 ngbe_down(struct wx *wx) ngbe_down() argument
343 ngbe_up(struct wx *wx) ngbe_up() argument
374 struct wx *wx = netdev_priv(netdev); ngbe_open() local
426 struct wx *wx = netdev_priv(netdev); ngbe_close() local
439 struct wx *wx = pci_get_drvdata(pdev); ngbe_dev_shutdown() local
468 struct wx *wx = pci_get_drvdata(pdev); ngbe_shutdown() local
511 struct wx *wx = NULL; ngbe_probe() local
710 struct wx *wx = pci_get_drvdata(pdev); ngbe_remove() local
737 struct wx *wx; ngbe_resume() local
[all...]
H A Dngbe_mdio.c16 struct wx *wx = bus->priv; in ngbe_phy_read_reg_internal() local
20 return (u16)rd32(wx, NGBE_PHY_CONFIG(regnum)); in ngbe_phy_read_reg_internal()
25 struct wx *wx = bus->priv; in ngbe_phy_write_reg_internal() local
28 wr32(wx, NGBE_PHY_CONFIG(regnum), value); in ngbe_phy_write_reg_internal()
35 struct wx *wx = bus->priv; in ngbe_phy_read_reg_mdi_c22() local
38 wr32(wx, NGBE_MDIO_CLAUSE_SELECT, 0xF); in ngbe_phy_read_reg_mdi_c22()
43 wr32(wx, WX_MSC in ngbe_phy_read_reg_mdi_c22()
63 struct wx *wx = bus->priv; ngbe_phy_write_reg_mdi_c22() local
89 struct wx *wx = bus->priv; ngbe_phy_read_reg_mdi_c45() local
118 struct wx *wx = bus->priv; ngbe_phy_write_reg_mdi_c45() local
145 struct wx *wx = bus->priv; ngbe_phy_read_reg_c22() local
159 struct wx *wx = bus->priv; ngbe_phy_write_reg_c22() local
172 struct wx *wx = netdev_priv(dev); ngbe_handle_link_change() local
214 ngbe_phy_connect(struct wx *wx) ngbe_phy_connect() argument
230 ngbe_phy_fixup(struct wx *wx) ngbe_phy_fixup() argument
247 ngbe_mdio_init(struct wx *wx) ngbe_mdio_init() argument
[all...]
H A Dngbe_hw.c13 int ngbe_eeprom_chksum_hostif(struct wx *wx) in ngbe_eeprom_chksum_hostif() argument
28 status = wx_host_interface_command(wx, (u32 *)&buffer, sizeof(buffer), in ngbe_eeprom_chksum_hostif()
33 tmp = rd32a(wx, WX_MNG_MBOX, 1); in ngbe_eeprom_chksum_hostif()
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()
44 wr32(wx, NGBE_GPIO_DDR, 0x1); in ngbe_reset_misc()
45 ngbe_sfp_modules_txrx_powerctl(wx, fals in ngbe_reset_misc()
50 ngbe_sfp_modules_txrx_powerctl(struct wx *wx, bool swi) ngbe_sfp_modules_txrx_powerctl() argument
64 ngbe_reset_hw(struct wx *wx) ngbe_reset_hw() argument
[all...]
H A Dngbe_ethtool.c15 struct wx *wx = netdev_priv(netdev); in ngbe_get_wol() local
17 if (!wx->wol_hw_supported) in ngbe_get_wol()
21 if (wx->wol & WX_PSR_WKUP_CTL_MAG) in ngbe_get_wol()
28 struct wx *wx = netdev_priv(netdev); in ngbe_set_wol() local
29 struct pci_dev *pdev = wx->pdev; in ngbe_set_wol()
31 if (!wx->wol_hw_supported) in ngbe_set_wol()
34 wx->wol = 0; in ngbe_set_wol()
36 wx in ngbe_set_wol()
[all...]
H 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);
H A Dngbe_mdio.h10 int ngbe_phy_connect(struct wx *wx);
11 int ngbe_mdio_init(struct wx *wx);
/kernel/linux/linux-6.6/drivers/net/ethernet/wangxun/txgbe/
H A Dtxgbe_main.c41 static void txgbe_check_minimum_link(struct wx *wx) in txgbe_check_minimum_link() argument
45 pdev = wx->pdev; in txgbe_check_minimum_link()
51 * @wx: wx structure
58 static int txgbe_enumerate_functions(struct wx *wx) in txgbe_enumerate_functions() argument
60 struct pci_dev *entry, *pdev = wx->pdev; in txgbe_enumerate_functions()
81 * @wx: pointer to private structure
84 static void txgbe_irq_enable(struct wx *w argument
102 struct wx *wx = data; txgbe_intr() local
141 txgbe_request_msix_irqs(struct wx *wx) txgbe_request_msix_irqs() argument
185 txgbe_request_irq(struct wx *wx) txgbe_request_irq() argument
206 txgbe_up_complete(struct wx *wx) txgbe_up_complete() argument
231 txgbe_reset(struct wx *wx) txgbe_reset() argument
248 txgbe_disable_device(struct wx *wx) txgbe_disable_device() argument
291 txgbe_down(struct wx *wx) txgbe_down() argument
307 txgbe_init_type_code(struct wx *wx) txgbe_init_type_code() argument
350 txgbe_sw_init(struct wx *wx) txgbe_sw_init() argument
403 struct wx *wx = netdev_priv(netdev); txgbe_open() local
446 txgbe_close_suspend(struct wx *wx) txgbe_close_suspend() argument
465 struct wx *wx = netdev_priv(netdev); txgbe_close() local
477 struct wx *wx = pci_get_drvdata(pdev); txgbe_dev_shutdown() local
533 struct wx *wx = NULL; txgbe_probe() local
772 struct wx *wx = pci_get_drvdata(pdev); txgbe_remove() local
[all...]
H A Dtxgbe_hw.c18 * @wx: pointer to hardware structure
23 int txgbe_disable_sec_tx_path(struct wx *wx) in txgbe_disable_sec_tx_path() argument
27 wr32m(wx, WX_TSC_CTL, WX_TSC_CTL_TX_DIS, WX_TSC_CTL_TX_DIS); in txgbe_disable_sec_tx_path()
29 1000, 20000, false, wx, WX_TSC_ST); in txgbe_disable_sec_tx_path()
34 * @wx: pointer to hardware structure
38 void txgbe_enable_sec_tx_path(struct wx *wx) in txgbe_enable_sec_tx_path() argument
40 wr32m(wx, WX_TSC_CTL, WX_TSC_CTL_TX_DIS, 0); in txgbe_enable_sec_tx_path()
41 WX_WRITE_FLUSH(wx); in txgbe_enable_sec_tx_path()
51 txgbe_init_thermal_sensor_thresh(struct wx *wx) txgbe_init_thermal_sensor_thresh() argument
81 txgbe_read_pba_string(struct wx *wx, u8 *pba_num, u32 pba_num_size) txgbe_read_pba_string() argument
188 txgbe_calc_eeprom_checksum(struct wx *wx, u16 *checksum) txgbe_calc_eeprom_checksum() argument
230 txgbe_validate_eeprom_checksum(struct wx *wx, u16 *checksum_val) txgbe_validate_eeprom_checksum() argument
271 txgbe_reset_misc(struct wx *wx) txgbe_reset_misc() argument
285 txgbe_reset_hw(struct wx *wx) txgbe_reset_hw() argument
[all...]
H A Dtxgbe_phy.c26 struct pci_dev *pdev = txgbe->wx->pdev; in txgbe_swnodes_register()
56 nodes->i2c_props[1] = PROPERTY_ENTRY_BOOL("wx,i2c-snps-model"); in txgbe_swnodes_register()
86 struct wx *wx = bus->priv; in txgbe_pcs_read() local
95 wr32(wx, TXGBE_XPCS_IDA_ADDR, offset); in txgbe_pcs_read()
98 val = rd32(wx, TXGBE_XPCS_IDA_DATA); in txgbe_pcs_read()
105 struct wx *wx = bus->priv; in txgbe_pcs_write() local
114 wr32(wx, TXGBE_XPCS_IDA_ADDR, offset); in txgbe_pcs_write()
117 wr32(wx, TXGBE_XPCS_IDA_DAT in txgbe_pcs_write()
127 struct wx *wx; txgbe_mdio_pcs_init() local
178 struct wx *wx = netdev_priv(to_net_dev(config->dev)); txgbe_mac_link_down() local
189 struct wx *wx = netdev_priv(to_net_dev(config->dev)); txgbe_mac_link_up() local
220 struct wx *wx = netdev_priv(to_net_dev(config->dev)); txgbe_mac_prepare() local
231 struct wx *wx = netdev_priv(to_net_dev(config->dev)); txgbe_mac_finish() local
252 struct wx *wx = txgbe->wx; txgbe_phylink_init() local
297 struct wx *wx = gpiochip_get_data(chip); txgbe_gpio_get() local
307 struct wx *wx = gpiochip_get_data(chip); txgbe_gpio_get_direction() local
319 struct wx *wx = gpiochip_get_data(chip); txgbe_gpio_direction_in() local
332 struct wx *wx = gpiochip_get_data(chip); txgbe_gpio_direction_out() local
350 struct wx *wx = gpiochip_get_data(gc); txgbe_gpio_irq_ack() local
362 struct wx *wx = gpiochip_get_data(gc); txgbe_gpio_irq_mask() local
376 struct wx *wx = gpiochip_get_data(gc); txgbe_gpio_irq_unmask() local
388 struct wx *wx = gpiochip_get_data(gc); txgbe_toggle_trigger() local
406 struct wx *wx = gpiochip_get_data(gc); txgbe_gpio_set_type() local
452 struct wx *wx = irq_desc_get_handler_data(desc); txgbe_irq_handler() local
498 struct wx *wx; txgbe_gpio_init() local
575 struct wx *wx = context; txgbe_i2c_read() local
584 struct wx *wx = context; txgbe_i2c_write() local
605 struct wx *wx; txgbe_i2c_register() local
653 struct wx *wx = bus->priv; txgbe_phy_read() local
680 struct wx *wx = bus->priv; txgbe_phy_write() local
707 struct wx *wx; txgbe_ext_phy_init() local
[all...]
H A Dtxgbe_hw.h7 int txgbe_disable_sec_tx_path(struct wx *wx);
8 void txgbe_enable_sec_tx_path(struct wx *wx);
9 int txgbe_read_pba_string(struct wx *wx, u8 *pba_num, u32 pba_num_size);
10 int txgbe_validate_eeprom_checksum(struct wx *wx, u16 *checksum_val);
11 int txgbe_reset_hw(struct wx *wx);
[all...]
H A Dtxgbe_type.h140 struct wx *wx = netdev_priv(netdev); in netdev_to_txgbe() local
142 return wx->priv; in netdev_to_txgbe()
181 struct wx *wx; member
/kernel/linux/linux-6.6/drivers/net/ethernet/wangxun/libwx/
H A Dwx_hw.c15 static void wx_intr_disable(struct wx *wx, u64 qmask) in wx_intr_disable() argument
21 wr32(wx, WX_PX_IMS(0), mask); in wx_intr_disable()
23 if (wx->mac.type == wx_mac_sp) { in wx_intr_disable()
26 wr32(wx, WX_PX_IMS(1), mask); in wx_intr_disable()
30 void wx_intr_enable(struct wx *wx, u64 qmask) in wx_intr_enable() argument
36 wr32(wx, WX_PX_IMC(0), mask); in wx_intr_enable()
37 if (wx->mac.type == wx_mac_sp) { in wx_intr_enable()
40 wr32(wx, WX_PX_IM in wx_intr_enable()
49 wx_irq_disable(struct wx *wx) wx_irq_disable() argument
73 wx_fmgr_cmd_op(struct wx *wx, u32 cmd, u32 cmd_addr) wx_fmgr_cmd_op() argument
86 wx_flash_read_dword(struct wx *wx, u32 addr, u32 *data) wx_flash_read_dword() argument
118 wx_control_hw(struct wx *wx, bool drv) wx_control_hw() argument
132 wx_mng_present(struct wx *wx) wx_mng_present() argument
155 wx_release_sw_sync(struct wx *wx, u32 mask) wx_release_sw_sync() argument
170 wx_acquire_sw_sync(struct wx *wx, u32 mask) wx_acquire_sw_sync() argument
203 wx_host_interface_command(struct wx *wx, u32 *buffer, u32 length, u32 timeout, bool return_data) wx_host_interface_command() argument
315 wx_read_ee_hostif_data(struct wx *wx, u16 offset, u16 *data) wx_read_ee_hostif_data() argument
349 wx_read_ee_hostif(struct wx *wx, u16 offset, u16 *data) wx_read_ee_hostif() argument
372 wx_read_ee_hostif_buffer(struct wx *wx, u16 offset, u16 words, u16 *data) wx_read_ee_hostif_buffer() argument
441 wx_init_eeprom_params(struct wx *wx) wx_init_eeprom_params() argument
484 wx_get_mac_addr(struct wx *wx, u8 *mac_addr) wx_get_mac_addr() argument
512 wx_set_rar(struct wx *wx, u32 index, u8 *addr, u64 pools, u32 enable_addr) wx_set_rar() argument
565 wx_clear_rar(struct wx *wx, u32 index) wx_clear_rar() argument
600 wx_clear_vmdq(struct wx *wx, u32 rar, u32 __maybe_unused vmdq) wx_clear_vmdq() argument
629 wx_init_uta_tables(struct wx *wx) wx_init_uta_tables() argument
647 wx_init_rx_addrs(struct wx *wx) wx_init_rx_addrs() argument
696 wx_sync_mac_table(struct wx *wx) wx_sync_mac_table() argument
716 wx_mac_set_default_filter(struct wx *wx, u8 *addr) wx_mac_set_default_filter() argument
727 wx_flush_sw_mac_table(struct wx *wx) wx_flush_sw_mac_table() argument
744 wx_add_mac_filter(struct wx *wx, u8 *addr, u16 pool) wx_add_mac_filter() argument
775 wx_del_mac_filter(struct wx *wx, u8 *addr, u16 pool) wx_del_mac_filter() argument
799 wx_available_rars(struct wx *wx) wx_available_rars() argument
823 struct wx *wx = netdev_priv(netdev); wx_write_uc_addr_list() local
854 wx_mta_vector(struct wx *wx, u8 *mc_addr) wx_mta_vector() argument
888 wx_set_mta(struct wx *wx, u8 *mc_addr) wx_set_mta() argument
920 wx_update_mc_addr_list(struct wx *wx, struct net_device *netdev) wx_update_mc_addr_list() argument
967 struct wx *wx = netdev_priv(netdev); wx_write_mc_addr_list() local
986 struct wx *wx = netdev_priv(netdev); wx_set_mac() local
1004 wx_disable_rx(struct wx *wx) wx_disable_rx() argument
1032 wx_enable_rx(struct wx *wx) wx_enable_rx() argument
1055 wx_set_rxpba(struct wx *wx) wx_set_rxpba() argument
1069 wx_configure_port(struct wx *wx) wx_configure_port() argument
1097 wx_disable_sec_rx_path(struct wx *wx) wx_disable_sec_rx_path() argument
1114 wx_enable_sec_rx_path(struct wx *wx) wx_enable_sec_rx_path() argument
1120 wx_vlan_strip_control(struct wx *wx, bool enable) wx_vlan_strip_control() argument
1135 struct wx *wx = netdev_priv(netdev); wx_set_rx_mode() local
1218 wx_set_rx_buffer_len(struct wx *wx) wx_set_rx_buffer_len() argument
1242 struct wx *wx = netdev_priv(netdev); wx_change_mtu() local
1252 wx_disable_rx_queue(struct wx *wx, struct wx_ring *ring) wx_disable_rx_queue() argument
1275 wx_enable_rx_queue(struct wx *wx, struct wx_ring *ring) wx_enable_rx_queue() argument
1292 wx_configure_srrctl(struct wx *wx, struct wx_ring *rx_ring) wx_configure_srrctl() argument
1311 wx_configure_tx_ring(struct wx *wx, struct wx_ring *ring) wx_configure_tx_ring() argument
1349 wx_configure_rx_ring(struct wx *wx, struct wx_ring *ring) wx_configure_rx_ring() argument
1401 wx_configure_tx(struct wx *wx) wx_configure_tx() argument
1423 wx_restore_vlan(struct wx *wx) wx_restore_vlan() argument
1439 wx_configure_rx(struct wx *wx) wx_configure_rx() argument
1484 wx_configure_isb(struct wx *wx) wx_configure_isb() argument
1492 wx_configure(struct wx *wx) wx_configure() argument
1514 wx_disable_pcie_master(struct wx *wx) wx_disable_pcie_master() argument
1545 wx_stop_adapter(struct wx *wx) wx_stop_adapter() argument
1587 wx_reset_misc(struct wx *wx) wx_reset_misc() argument
1635 wx_get_pcie_msix_counts(struct wx *wx, u16 *msix_count, u16 max_msix_count) wx_get_pcie_msix_counts() argument
1661 wx_sw_init(struct wx *wx) wx_sw_init() argument
1708 wx_find_vlvf_slot(struct wx *wx, u32 vlan) wx_find_vlvf_slot() argument
1750 wx_set_vlvf(struct wx *wx, u32 vlan, u32 vind, bool vlan_on, bool *vfta_changed) wx_set_vlvf() argument
1818 wx_set_vfta(struct wx *wx, u32 vlan, u32 vind, bool vlan_on) wx_set_vfta() argument
1871 wx_clear_vfta(struct wx *wx) wx_clear_vfta() argument
1891 struct wx *wx = netdev_priv(netdev); wx_vlan_rx_add_vid() local
1903 struct wx *wx = netdev_priv(netdev); wx_vlan_rx_kill_vid() local
1922 wx_start_hw(struct wx *wx) wx_start_hw() argument
[all...]
H A Dwx_hw.h7 void wx_intr_enable(struct wx *wx, u64 qmask);
8 void wx_irq_disable(struct wx *wx);
9 int wx_check_flash_load(struct wx *wx, u32 check_bit);
10 void wx_control_hw(struct wx *wx, bool drv);
11 int wx_mng_present(struct wx *wx);
[all...]
H A Dwx_lib.h14 void wx_napi_enable_all(struct wx *wx);
15 void wx_napi_disable_all(struct wx *wx);
16 void wx_reset_interrupt_capability(struct wx *wx);
17 void wx_clear_interrupt_scheme(struct wx *wx);
18 int wx_init_interrupt_scheme(struct wx *wx);
[all...]
H A Dwx_lib.c581 ethertype = ring->q_vector->wx->tpid[idx]; in wx_rx_vlan()
706 unsigned int budget = q_vector->wx->tx_work_limit; in wx_clean_tx_irq()
831 struct wx *wx = q_vector->wx; in wx_poll() local
866 if (netif_running(wx->netdev)) in wx_poll()
867 wx_intr_enable(wx, WX_INTR_Q(q_vector->v_idx)); in wx_poll()
1508 struct wx *wx = netdev_priv(netdev); in wx_xmit_frame() local
1522 if (r_idx >= wx in wx_xmit_frame()
1530 wx_napi_enable_all(struct wx *wx) wx_napi_enable_all() argument
1542 wx_napi_disable_all(struct wx *wx) wx_napi_disable_all() argument
1562 wx_set_rss_queues(struct wx *wx) wx_set_rss_queues() argument
1568 wx_set_num_queues(struct wx *wx) wx_set_num_queues() argument
1586 wx_acquire_msix_vectors(struct wx *wx) wx_acquire_msix_vectors() argument
1631 wx_set_interrupt_capability(struct wx *wx) wx_set_interrupt_capability() argument
1671 wx_cache_ring_rss(struct wx *wx) wx_cache_ring_rss() argument
1701 wx_alloc_q_vector(struct wx *wx, unsigned int v_count, unsigned int v_idx, unsigned int txr_count, unsigned int txr_idx, unsigned int rxr_count, unsigned int rxr_idx) wx_alloc_q_vector() argument
1811 wx_free_q_vector(struct wx *wx, int v_idx) wx_free_q_vector() argument
1834 wx_alloc_q_vectors(struct wx *wx) wx_alloc_q_vectors() argument
1881 wx_free_q_vectors(struct wx *wx) wx_free_q_vectors() argument
1893 wx_reset_interrupt_capability(struct wx *wx) wx_reset_interrupt_capability() argument
1915 wx_clear_interrupt_scheme(struct wx *wx) wx_clear_interrupt_scheme() argument
1922 wx_init_interrupt_scheme(struct wx *wx) wx_init_interrupt_scheme() argument
1962 wx_free_irq(struct wx *wx) wx_free_irq() argument
1994 wx_setup_isb_resources(struct wx *wx) wx_setup_isb_resources() argument
2017 wx_free_isb_resources(struct wx *wx) wx_free_isb_resources() argument
2027 wx_misc_isb(struct wx *wx, enum wx_isb_idx idx) wx_misc_isb() argument
2046 wx_set_ivar(struct wx *wx, s8 direction, u16 queue, u16 msix_vector) wx_set_ivar() argument
2080 struct wx *wx = q_vector->wx; wx_write_eitr() local
2101 wx_configure_vectors(struct wx *wx) wx_configure_vectors() argument
2194 wx_clean_all_rx_rings(struct wx *wx) wx_clean_all_rx_rings() argument
2236 wx_free_all_rx_resources(struct wx *wx) wx_free_all_rx_resources() argument
2310 wx_clean_all_tx_rings(struct wx *wx) wx_clean_all_tx_rings() argument
2346 wx_free_all_tx_resources(struct wx *wx) wx_free_all_tx_resources() argument
2354 wx_free_resources(struct wx *wx) wx_free_resources() argument
2456 wx_setup_all_rx_resources(struct wx *wx) wx_setup_all_rx_resources() argument
2539 wx_setup_all_tx_resources(struct wx *wx) wx_setup_all_tx_resources() argument
2560 wx_setup_resources(struct wx *wx) wx_setup_resources() argument
2597 struct wx *wx = netdev_priv(netdev); wx_get_stats64() local
2641 struct wx *wx = netdev_priv(netdev); wx_set_features() local
[all...]
H 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()
H A Dwx_type.h820 struct wx *wx; member
846 struct wx { struct
935 rd32m(struct wx *wx, u32 reg, u32 mask) in rd32m() argument
939 val = rd32(wx, reg); in rd32m()
944 wr32m(struct wx *wx, u32 reg, u32 mask, u32 field) in wr32m() argument
948 val = rd32(wx, reg); in wr32m()
951 wr32(wx, re in wr32m()
[all...]
/kernel/linux/linux-5.10/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DSchedGui.py12 import wx namespace
17 class RootFrame(wx.Frame):
24 wx.Frame.__init__(self, parent, id, title)
26 (self.screen_width, self.screen_height) = wx.GetDisplaySize()
39 self.panel = wx.Panel(self, size=(self.screen_width, self.screen_height))
42 self.scroll = wx.ScrolledWindow(self.panel)
48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2))
49 self.scroll_panel.Bind(wx.EVT_PAINT, self.on_paint)
50 self.scroll_panel.Bind(wx.EVT_KEY_DOWN, self.on_key_press)
51 self.scroll_panel.Bind(wx
[all...]
/kernel/linux/linux-6.6/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DSchedGui.py12 import wx namespace
17 class RootFrame(wx.Frame):
24 wx.Frame.__init__(self, parent, id, title)
26 (self.screen_width, self.screen_height) = wx.GetDisplaySize()
39 self.panel = wx.Panel(self, size=(self.screen_width, self.screen_height))
42 self.scroll = wx.ScrolledWindow(self.panel)
48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2))
49 self.scroll_panel.Bind(wx.EVT_PAINT, self.on_paint)
50 self.scroll_panel.Bind(wx.EVT_KEY_DOWN, self.on_key_press)
51 self.scroll_panel.Bind(wx
[all...]
/kernel/linux/linux-5.10/drivers/input/rmi4/
H 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()
H A Drmi_2d_sensor.h24 u8 wx; member
/kernel/linux/linux-6.6/drivers/input/rmi4/
H 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()
H A Drmi_2d_sensor.h24 u8 wx; member
/kernel/linux/linux-5.10/drivers/input/touchscreen/
H A Draydium_i2c_ts.c839 u8 wx, wy; in raydium_mt_event() local
854 wx = contact[RM_CONTACT_WIDTH_X_POS]; in raydium_mt_event()
857 input_report_abs(ts->input, ABS_MT_TOUCH_MAJOR, max(wx, wy)); in raydium_mt_event()
858 input_report_abs(ts->input, ABS_MT_TOUCH_MINOR, min(wx, wy)); in raydium_mt_event()
/kernel/linux/linux-6.6/drivers/input/touchscreen/
H 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()

Completed in 16 milliseconds

12