Home
last modified time | relevance | path

Searched refs:tc (Results 1 – 25 of 579) sorted by relevance

12345678910>>...24

/linux-6.6.21/drivers/gpu/drm/i915/display/
Dintel_tc.c37 enum intel_display_power_domain (*cold_off_domain)(struct intel_tc_port *tc);
38 u32 (*hpd_live_status)(struct intel_tc_port *tc);
39 bool (*is_ready)(struct intel_tc_port *tc);
40 bool (*is_owned)(struct intel_tc_port *tc);
41 void (*get_hw_state)(struct intel_tc_port *tc);
42 bool (*connect)(struct intel_tc_port *tc, int required_lanes);
43 void (*disconnect)(struct intel_tc_port *tc);
44 void (*init)(struct intel_tc_port *tc);
70 static u32 tc_phy_hpd_live_status(struct intel_tc_port *tc);
71 static bool tc_phy_is_ready(struct intel_tc_port *tc);
[all …]
Dicl_dsi_regs.h12 #define _MMIO_DSI(tc, dsi0, dsi1) _MMIO_TRANS((tc) - TRANSCODER_DSI_0, \ argument
195 #define DSI_TRANS_FUNC_CONF(tc) _MMIO_DSI(tc, \ argument
241 #define DSI_CMD_RXCTL(tc) _MMIO_DSI(tc, \ argument
256 #define DSI_CMD_TXCTL(tc) _MMIO_DSI(tc, \ argument
269 #define DSI_CMD_TXHDR(tc) _MMIO_DSI(tc, \ argument
285 #define DSI_CMD_TXPYLD(tc) _MMIO_DSI(tc, \ argument
291 #define DSI_LP_MSG(tc) _MMIO_DSI(tc, \ argument
302 #define DSI_HSTX_TO(tc) _MMIO_DSI(tc, \ argument
312 #define DSI_LPRX_HOST_TO(tc) _MMIO_DSI(tc, \ argument
322 #define DSI_PWAIT_TO(tc) _MMIO_DSI(tc, \ argument
[all …]
/linux-6.6.21/drivers/gpu/drm/bridge/
Dtc358767.c331 static inline int tc_poll_timeout(struct tc_data *tc, unsigned int addr, in tc_poll_timeout() argument
338 return regmap_read_poll_timeout(tc->regmap, addr, val, in tc_poll_timeout()
343 static int tc_aux_wait_busy(struct tc_data *tc) in tc_aux_wait_busy() argument
345 return tc_poll_timeout(tc, DP0_AUXSTATUS, AUX_BUSY, 0, 100, 100000); in tc_aux_wait_busy()
348 static int tc_aux_write_data(struct tc_data *tc, const void *data, in tc_aux_write_data() argument
356 ret = regmap_raw_write(tc->regmap, DP0_AUXWDATA(0), auxwdata, count); in tc_aux_write_data()
363 static int tc_aux_read_data(struct tc_data *tc, void *data, size_t size) in tc_aux_read_data() argument
368 ret = regmap_raw_read(tc->regmap, DP0_AUXRDATA(0), auxrdata, count); in tc_aux_read_data()
392 struct tc_data *tc = aux_to_tc(aux); in tc_aux_transfer() local
398 ret = tc_aux_wait_busy(tc); in tc_aux_transfer()
[all …]
Dtc358775.c283 struct tc_data *tc = bridge_to_tc(bridge); in tc_bridge_pre_enable() local
284 struct device *dev = &tc->dsi->dev; in tc_bridge_pre_enable()
287 ret = regulator_enable(tc->vddio); in tc_bridge_pre_enable()
292 ret = regulator_enable(tc->vdd); in tc_bridge_pre_enable()
297 gpiod_set_value(tc->stby_gpio, 0); in tc_bridge_pre_enable()
300 gpiod_set_value(tc->reset_gpio, 0); in tc_bridge_pre_enable()
306 struct tc_data *tc = bridge_to_tc(bridge); in tc_bridge_post_disable() local
307 struct device *dev = &tc->dsi->dev; in tc_bridge_post_disable()
310 gpiod_set_value(tc->reset_gpio, 1); in tc_bridge_post_disable()
313 gpiod_set_value(tc->stby_gpio, 1); in tc_bridge_post_disable()
[all …]
/linux-6.6.21/drivers/ntb/test/
Dntb_tool.c208 struct tool_ctx *tc; member
233 struct tool_ctx *tc; member
239 struct tool_ctx *tc; member
244 struct tool_ctx *tc; member
291 struct tool_ctx *tc = ctx; in tool_link_event() local
296 up = ntb_link_is_up(tc->ntb, &speed, &width); in tool_link_event()
298 dev_dbg(&tc->ntb->dev, "link is %s speed %d width %d\n", in tool_link_event()
301 wake_up(&tc->link_wq); in tool_link_event()
306 struct tool_ctx *tc = ctx; in tool_db_event() local
309 db_mask = ntb_db_vector_mask(tc->ntb, vec); in tool_db_event()
[all …]
/linux-6.6.21/tools/perf/util/
Dtsc.c18 u64 perf_time_to_tsc(u64 ns, struct perf_tsc_conversion *tc) in perf_time_to_tsc() argument
22 t = ns - tc->time_zero; in perf_time_to_tsc()
23 quot = t / tc->time_mult; in perf_time_to_tsc()
24 rem = t % tc->time_mult; in perf_time_to_tsc()
25 return (quot << tc->time_shift) + in perf_time_to_tsc()
26 (rem << tc->time_shift) / tc->time_mult; in perf_time_to_tsc()
29 u64 tsc_to_perf_time(u64 cyc, struct perf_tsc_conversion *tc) in tsc_to_perf_time() argument
33 if (tc->cap_user_time_short) in tsc_to_perf_time()
34 cyc = tc->time_cycles + in tsc_to_perf_time()
35 ((cyc - tc->time_cycles) & tc->time_mask); in tsc_to_perf_time()
[all …]
/linux-6.6.21/kernel/time/
Dtimecounter.c8 void timecounter_init(struct timecounter *tc, in timecounter_init() argument
12 tc->cc = cc; in timecounter_init()
13 tc->cycle_last = cc->read(cc); in timecounter_init()
14 tc->nsec = start_tstamp; in timecounter_init()
15 tc->mask = (1ULL << cc->shift) - 1; in timecounter_init()
16 tc->frac = 0; in timecounter_init()
31 static u64 timecounter_read_delta(struct timecounter *tc) in timecounter_read_delta() argument
37 cycle_now = tc->cc->read(tc->cc); in timecounter_read_delta()
40 cycle_delta = (cycle_now - tc->cycle_last) & tc->cc->mask; in timecounter_read_delta()
43 ns_offset = cyclecounter_cyc2ns(tc->cc, cycle_delta, in timecounter_read_delta()
[all …]
/linux-6.6.21/net/rds/
Dtcp.c92 u32 rds_tcp_write_seq(struct rds_tcp_connection *tc) in rds_tcp_write_seq() argument
95 return tcp_sk(tc->t_sock->sk)->write_seq; in rds_tcp_write_seq()
98 u32 rds_tcp_snd_una(struct rds_tcp_connection *tc) in rds_tcp_snd_una() argument
100 return tcp_sk(tc->t_sock->sk)->snd_una; in rds_tcp_snd_una()
104 struct rds_tcp_connection *tc) in rds_tcp_restore_callbacks() argument
106 rdsdebug("restoring sock %p callbacks from tc %p\n", sock, tc); in rds_tcp_restore_callbacks()
111 list_del_init(&tc->t_list_item); in rds_tcp_restore_callbacks()
115 if (!tc->t_cpath->cp_conn->c_isv6) in rds_tcp_restore_callbacks()
119 tc->t_sock = NULL; in rds_tcp_restore_callbacks()
121 sock->sk->sk_write_space = tc->t_orig_write_space; in rds_tcp_restore_callbacks()
[all …]
Dtcp_recv.c160 struct rds_tcp_connection *tc = cp->cp_transport_data; in rds_tcp_data_recv() local
161 struct rds_tcp_incoming *tinc = tc->t_tinc; in rds_tcp_data_recv()
165 rdsdebug("tcp data tc %p skb %p offset %u len %zu\n", tc, skb, offset, in rds_tcp_data_recv()
180 tc->t_tinc = tinc; in rds_tcp_data_recv()
194 if (left && tc->t_tinc_hdr_rem) { in rds_tcp_data_recv()
195 to_copy = min(tc->t_tinc_hdr_rem, left); in rds_tcp_data_recv()
201 tc->t_tinc_hdr_rem, in rds_tcp_data_recv()
203 tc->t_tinc_hdr_rem -= to_copy; in rds_tcp_data_recv()
207 if (tc->t_tinc_hdr_rem == 0) { in rds_tcp_data_recv()
209 tc->t_tinc_data_rem = in rds_tcp_data_recv()
[all …]
Dtcp_send.c43 struct rds_tcp_connection *tc = cp->cp_transport_data; in rds_tcp_xmit_path_prepare() local
45 tcp_sock_set_cork(tc->t_sock->sk, true); in rds_tcp_xmit_path_prepare()
50 struct rds_tcp_connection *tc = cp->cp_transport_data; in rds_tcp_xmit_path_complete() local
52 tcp_sock_set_cork(tc->t_sock->sk, false); in rds_tcp_xmit_path_complete()
74 struct rds_tcp_connection *tc = cp->cp_transport_data; in rds_tcp_xmit() local
85 tc->t_last_sent_nxt = rds_tcp_write_seq(tc); in rds_tcp_xmit()
86 rm->m_ack_seq = tc->t_last_sent_nxt + in rds_tcp_xmit()
91 tc->t_last_expected_una = rm->m_ack_seq + 1; in rds_tcp_xmit()
97 rm, rds_tcp_write_seq(tc), in rds_tcp_xmit()
103 set_bit(SOCK_NOSPACE, &tc->t_sock->sk->sk_socket->flags); in rds_tcp_xmit()
[all …]
/linux-6.6.21/tools/testing/selftests/drivers/net/mlxsw/
Dtc_restrictions.sh44 tc qdisc add dev $swp1 ingress_block 22 clsact
47 tc filter add block 22 protocol ip pref 1 handle 101 flower \
51 tc qdisc add dev $swp2 ingress_block 22 clsact
54 tc qdisc del dev $swp2 clsact
56 tc qdisc add dev $swp2 egress_block 22 clsact
59 tc filter del block 22 protocol ip pref 1 handle 101 flower
61 tc qdisc add dev $swp2 egress_block 22 clsact
64 tc filter add block 22 protocol ip pref 1 handle 101 flower \
68 tc qdisc del dev $swp1 clsact
70 tc qdisc add dev $swp1 egress_block 22 clsact
[all …]
Dtc_sample.sh133 tc qdisc add dev $rp1 clsact
137 tc qdisc add dev $rp2 clsact
142 tc qdisc add dev $rp3 clsact
148 tc qdisc add dev $rp4 clsact
155 tc qdisc del dev $rp4 clsact
161 tc qdisc del dev $rp3 clsact
166 tc qdisc del dev $rp2 clsact
170 tc qdisc del dev $rp1 clsact
232 tc filter add dev $rp1 ingress protocol all pref 1 handle 101 matchall \
250 tc filter del dev $rp1 ingress protocol all pref 1 handle 101 matchall
[all …]
/linux-6.6.21/drivers/md/
Ddm-thin.c226 typedef void (*process_bio_fn)(struct thin_c *tc, struct bio *bio);
227 typedef void (*process_cell_fn)(struct thin_c *tc, struct dm_bio_prison_cell *cell);
382 struct thin_c *tc; member
388 static void begin_discard(struct discard_op *op, struct thin_c *tc, struct bio *parent) in begin_discard() argument
392 op->tc = tc; in begin_discard()
400 struct thin_c *tc = op->tc; in issue_discard() local
401 sector_t s = block_to_sectors(tc->pool, data_b); in issue_discard()
402 sector_t len = block_to_sectors(tc->pool, data_e - data_b); in issue_discard()
404 return __blkdev_issue_discard(tc->pool_dev->bdev, s, len, GFP_NOIO, &op->bio); in issue_discard()
586 struct thin_c *tc; member
[all …]
/linux-6.6.21/arch/mips/kernel/
Dsmp-mt.c46 static unsigned int __init smvp_vpe_init(unsigned int tc, unsigned int mvpconf0, in smvp_vpe_init() argument
49 if (tc >= smp_max_threads || in smvp_vpe_init()
50 (tc > ((mvpconf0 & MVPCONF0_PVPE) >> MVPCONF0_PVPE_SHIFT))) in smvp_vpe_init()
54 if (tc != 0) { in smvp_vpe_init()
64 set_cpu_possible(tc, true); in smvp_vpe_init()
65 set_cpu_present(tc, true); in smvp_vpe_init()
66 __cpu_number_map[tc] = ++ncpu; in smvp_vpe_init()
67 __cpu_logical_map[ncpu] = tc; in smvp_vpe_init()
73 if (tc != 0) in smvp_vpe_init()
76 cpu_set_vpe_id(&cpu_data[ncpu], tc); in smvp_vpe_init()
[all …]
Dvpe-mt.c31 struct tc *t; in vpe_run()
46 if (list_empty(&v->tc)) { in vpe_run()
57 t = list_first_entry(&v->tc, struct tc, tc); in vpe_run()
146 void cleanup_tc(struct tc *tc) in cleanup_tc() argument
158 settc(tc->index); in cleanup_tc()
208 struct tc *t; in vpe_stop()
213 t = list_entry(v->tc.next, struct tc, tc); in vpe_stop()
229 struct tc *t; in vpe_free()
232 t = list_entry(v->tc.next, struct tc, tc); in vpe_free()
330 struct tc *t; in vpe_module_init()
[all …]
/linux-6.6.21/drivers/net/ethernet/intel/ixgbe/
Dixgbe_dcb.c165 int tc; in ixgbe_dcb_unpack_pfc() local
167 for (*pfc_en = 0, tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) { in ixgbe_dcb_unpack_pfc()
168 if (tc_config[tc].dcb_pfc != pfc_disabled) in ixgbe_dcb_unpack_pfc()
169 *pfc_en |= BIT(tc); in ixgbe_dcb_unpack_pfc()
177 int tc; in ixgbe_dcb_unpack_refill() local
179 for (tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) in ixgbe_dcb_unpack_refill()
180 refill[tc] = tc_config[tc].path[direction].data_credits_refill; in ixgbe_dcb_unpack_refill()
186 int tc; in ixgbe_dcb_unpack_max() local
188 for (tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) in ixgbe_dcb_unpack_max()
189 max[tc] = tc_config[tc].desc_credits_max; in ixgbe_dcb_unpack_max()
[all …]
/linux-6.6.21/tools/testing/selftests/net/forwarding/
Dtc_flower.sh29 tc qdisc add dev $h2 clsact
34 tc qdisc del dev $h2 clsact
44 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \
46 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \
58 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower
59 tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower
70 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \
72 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \
84 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower
85 tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower
[all …]
Dtc_chains.sh25 tc qdisc add dev $h2 clsact
30 tc qdisc del dev $h2 clsact
38 tc filter add dev $h2 ingress chain 1 protocol ip pref 1 handle 1101 \
47 tc filter del dev $h2 ingress chain 1 protocol ip pref 1 handle 1101 \
57 tc filter add dev $h2 ingress chain 1 protocol ip pref 1 handle 1101 \
59 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \
61 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \
76 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower
77 tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower
78 tc filter del dev $h2 ingress chain 1 protocol ip pref 1 handle 1101 \
[all …]
Dtc_actions.sh19 tc qdisc add dev $h1 clsact
24 tc qdisc del dev $h1 clsact
31 tc qdisc add dev $h2 clsact
36 tc qdisc del dev $h2 clsact
43 tc qdisc add dev $swp1 clsact
52 tc qdisc del dev $swp1 clsact
65 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \
74 tc filter add dev $swp1 ingress protocol $protocol pref 1 handle 101 \
84 tc filter del dev $swp1 ingress protocol $protocol pref 1 handle 101 \
86 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower
[all …]
/linux-6.6.21/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/
Dtc_flower.sh35 tc qdisc add dev $h2 clsact
40 tc qdisc del dev $h2 clsact
101 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \
110 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \
125 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower
133 tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower
147 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \
149 tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \
158 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower
166 tc filter add dev $h2 ingress protocol ip pref 3 handle 103 flower \
[all …]
/linux-6.6.21/lib/
Dstrscpy_kunit.c25 static void tc(struct kunit *test, char *src, int count, int expected, in tc() function
96 tc(test, "a", 0, -E2BIG, 0, 0, 0); in strscpy_test()
97 tc(test, "", 0, -E2BIG, 0, 0, 0); in strscpy_test()
99 tc(test, "a", 1, -E2BIG, 0, 1, 0); in strscpy_test()
100 tc(test, "", 1, 0, 0, 1, 0); in strscpy_test()
102 tc(test, "ab", 2, -E2BIG, 1, 1, 0); in strscpy_test()
103 tc(test, "a", 2, 1, 1, 1, 0); in strscpy_test()
104 tc(test, "", 2, 0, 0, 1, 1); in strscpy_test()
106 tc(test, "abc", 3, -E2BIG, 2, 1, 0); in strscpy_test()
107 tc(test, "ab", 3, 2, 2, 1, 0); in strscpy_test()
[all …]
/linux-6.6.21/drivers/clocksource/
Dtimer-atmel-tcb.c256 static int __init setup_clkevents(struct atmel_tc *tc, int divisor_idx) in setup_clkevents() argument
259 struct clk *t2_clk = tc->clk[2]; in setup_clkevents()
260 int irq = tc->irq[2]; in setup_clkevents()
261 int bits = tc->tcb_config->counter_width; in setup_clkevents()
268 clkevt.regs = tc->regs; in setup_clkevents()
275 ret = clk_prepare_enable(tc->slow_clk); in setup_clkevents()
281 clkevt.rate = clk_get_rate(tc->slow_clk); in setup_clkevents()
293 clk_disable_unprepare(tc->slow_clk); in setup_clkevents()
304 static int __init setup_clkevents(struct atmel_tc *tc, int divisor_idx) in setup_clkevents() argument
312 static void __init tcb_setup_dual_chan(struct atmel_tc *tc, int mck_divisor_idx) in tcb_setup_dual_chan() argument
[all …]
/linux-6.6.21/drivers/net/ethernet/sfc/
Dtc.c133 old = rhashtable_lookup_get_insert_fast(&efx->tc->mac_ht, in efx_tc_flower_get_mac()
157 rhashtable_remove_fast(&efx->tc->mac_ht, &ped->linkage, in efx_tc_flower_get_mac()
168 rhashtable_remove_fast(&efx->tc->mac_ht, &ped->linkage, in efx_tc_flower_put_mac()
486 rhashtable_remove_fast(&efx->tc->encap_match_ht, &encap->linkage, in efx_tc_flower_release_encap_match()
599 old = rhashtable_lookup_get_insert_fast(&efx->tc->encap_match_ht, in efx_tc_flower_record_encap_match()
676 rhashtable_remove_fast(&efx->tc->encap_match_ht, &encap->linkage, in efx_tc_flower_record_encap_match()
701 old = rhashtable_lookup_get_insert_fast(&efx->tc->recirc_ht, in efx_tc_get_recirc_id()
714 rc = ida_alloc_range(&efx->tc->recirc_ida, 1, U8_MAX, GFP_USER); in efx_tc_get_recirc_id()
716 rhashtable_remove_fast(&efx->tc->recirc_ht, in efx_tc_get_recirc_id()
732 rhashtable_remove_fast(&efx->tc->recirc_ht, &rid->linkage, in efx_tc_put_recirc_id()
[all …]
/linux-6.6.21/tools/testing/selftests/drivers/net/dsa/
Dtc_actions.sh19 tc qdisc add dev $h1 clsact
24 tc qdisc del dev $h1 clsact
31 tc qdisc add dev $h2 clsact
36 tc qdisc del dev $h2 clsact
43 tc qdisc add dev $swp1 clsact
52 tc qdisc del dev $swp1 clsact
65 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \
74 tc filter add dev $swp1 ingress protocol $protocol pref 1 handle 101 \
84 tc filter del dev $swp1 ingress protocol $protocol pref 1 handle 101 \
86 tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower
[all …]
/linux-6.6.21/drivers/hwtracing/coresight/
Dcoresight-cti-core.c250 struct cti_trig_con *tc, in cti_add_connection_entry() argument
256 tc->con_dev = csdev; in cti_add_connection_entry()
262 tc->con_dev_name = dev_name(&csdev->dev); in cti_add_connection_entry()
264 tc->con_dev_name = devm_kstrdup(dev, in cti_add_connection_entry()
266 if (!tc->con_dev_name) in cti_add_connection_entry()
269 list_add_tail(&tc->node, &cti_dev->trig_cons); in cti_add_connection_entry()
273 drvdata->config.trig_in_use |= tc->con_in->used_mask; in cti_add_connection_entry()
274 drvdata->config.trig_out_use |= tc->con_out->used_mask; in cti_add_connection_entry()
283 struct cti_trig_con *tc = NULL; in cti_allocate_trig_con() local
286 tc = devm_kzalloc(dev, sizeof(struct cti_trig_con), GFP_KERNEL); in cti_allocate_trig_con()
[all …]

12345678910>>...24