Home
last modified time | relevance | path

Searched refs:ks (Results 1 – 25 of 34) sorted by relevance

12

/kernel/linux/linux-5.10/drivers/net/ethernet/micrel/
Dks8851_common.c37 static void ks8851_lock(struct ks8851_net *ks, unsigned long *flags) in ks8851_lock() argument
39 ks->lock(ks, flags); in ks8851_lock()
49 static void ks8851_unlock(struct ks8851_net *ks, unsigned long *flags) in ks8851_unlock() argument
51 ks->unlock(ks, flags); in ks8851_unlock()
62 static void ks8851_wrreg16(struct ks8851_net *ks, unsigned int reg, in ks8851_wrreg16() argument
65 ks->wrreg16(ks, reg, val); in ks8851_wrreg16()
75 static unsigned int ks8851_rdreg16(struct ks8851_net *ks, in ks8851_rdreg16() argument
78 return ks->rdreg16(ks, reg); in ks8851_rdreg16()
94 static void ks8851_soft_reset(struct ks8851_net *ks, unsigned op) in ks8851_soft_reset() argument
96 ks8851_wrreg16(ks, KS_GRR, op); in ks8851_soft_reset()
[all …]
Dks8851_spi.c60 #define to_ks8851_spi(ks) container_of((ks), struct ks8851_net_spi, ks8851) argument
82 static void ks8851_lock_spi(struct ks8851_net *ks, unsigned long *flags) in ks8851_lock_spi() argument
84 struct ks8851_net_spi *kss = to_ks8851_spi(ks); in ks8851_lock_spi()
96 static void ks8851_unlock_spi(struct ks8851_net *ks, unsigned long *flags) in ks8851_unlock_spi() argument
98 struct ks8851_net_spi *kss = to_ks8851_spi(ks); in ks8851_unlock_spi()
118 static void ks8851_wrreg16_spi(struct ks8851_net *ks, unsigned int reg, in ks8851_wrreg16_spi() argument
121 struct ks8851_net_spi *kss = to_ks8851_spi(ks); in ks8851_wrreg16_spi()
136 netdev_err(ks->netdev, "spi_sync() failed\n"); in ks8851_wrreg16_spi()
149 static void ks8851_rdreg(struct ks8851_net *ks, unsigned int op, in ks8851_rdreg() argument
152 struct ks8851_net_spi *kss = to_ks8851_spi(ks); in ks8851_rdreg()
[all …]
Dks8851_par.c55 #define to_ks8851_par(ks) container_of((ks), struct ks8851_net_par, ks8851) argument
64 static void ks8851_lock_par(struct ks8851_net *ks, unsigned long *flags) in ks8851_lock_par() argument
66 struct ks8851_net_par *ksp = to_ks8851_par(ks); in ks8851_lock_par()
78 static void ks8851_unlock_par(struct ks8851_net *ks, unsigned long *flags) in ks8851_unlock_par() argument
80 struct ks8851_net_par *ksp = to_ks8851_par(ks); in ks8851_unlock_par()
93 static int ks_check_endian(struct ks8851_net *ks) in ks_check_endian() argument
95 struct ks8851_net_par *ksp = to_ks8851_par(ks); in ks_check_endian()
124 netdev_err(ks->netdev, "incorrect EESK endian strap setting\n"); in ks_check_endian()
137 static void ks8851_wrreg16_par(struct ks8851_net *ks, unsigned int reg, in ks8851_wrreg16_par() argument
140 struct ks8851_net_par *ksp = to_ks8851_par(ks); in ks8851_wrreg16_par()
[all …]
Dks8851.h407 void (*lock)(struct ks8851_net *ks,
409 void (*unlock)(struct ks8851_net *ks,
411 unsigned int (*rdreg16)(struct ks8851_net *ks,
413 void (*wrreg16)(struct ks8851_net *ks,
415 void (*rdfifo)(struct ks8851_net *ks, u8 *buff,
417 void (*wrfifo)(struct ks8851_net *ks,
421 void (*rx_skb)(struct ks8851_net *ks,
423 void (*flush_tx_work)(struct ks8851_net *ks);
440 static void __maybe_unused ks8851_done_tx(struct ks8851_net *ks, in ks8851_done_tx() argument
443 struct net_device *dev = ks->netdev; in ks8851_done_tx()
/kernel/linux/linux-5.10/drivers/net/phy/
Dspi_ks8995.c191 static inline __be16 create_spi_cmd(struct ks8995_switch *ks, int cmd, in create_spi_cmd() argument
197 result <<= ks->chip->addr_width + ks->chip->addr_shift; in create_spi_cmd()
199 result |= address << ks->chip->addr_shift; in create_spi_cmd()
204 static int ks8995_read(struct ks8995_switch *ks, char *buf, in ks8995_read() argument
212 cmd = create_spi_cmd(ks, KS8995_CMD_READ, offset); in ks8995_read()
225 mutex_lock(&ks->lock); in ks8995_read()
226 err = spi_sync(ks->spi, &m); in ks8995_read()
227 mutex_unlock(&ks->lock); in ks8995_read()
232 static int ks8995_write(struct ks8995_switch *ks, char *buf, in ks8995_write() argument
240 cmd = create_spi_cmd(ks, KS8995_CMD_WRITE, offset); in ks8995_write()
[all …]
/kernel/linux/linux-5.10/kernel/debug/kdb/
Dkdb_debugger.c37 int kdb_common_init_state(struct kgdb_state *ks) in kdb_common_init_state() argument
40 kdb_current_task = kgdb_info[ks->cpu].task; in kdb_common_init_state()
41 kdb_current_regs = kgdb_info[ks->cpu].debuggerinfo; in kdb_common_init_state()
53 int kdb_stub(struct kgdb_state *ks) in kdb_stub() argument
57 unsigned long addr = kgdb_arch_pc(ks->ex_vector, ks->linux_regs); in kdb_stub()
62 kdb_ks = ks; in kdb_stub()
66 addr = instruction_pointer(ks->linux_regs); in kdb_stub()
68 ks->pass_exception = 0; in kdb_stub()
72 if (ks->err_code == KDB_REASON_SYSTEM_NMI && ks->signo == SIGTRAP) in kdb_stub()
82 if (addr != instruction_pointer(ks->linux_regs)) in kdb_stub()
[all …]
/kernel/linux/linux-5.10/kernel/debug/
Dgdbstub.c480 static void gdb_cmd_status(struct kgdb_state *ks) in gdb_cmd_status() argument
491 hex_byte_pack(&remcom_out_buffer[1], ks->signo); in gdb_cmd_status()
494 static void gdb_get_regs_helper(struct kgdb_state *ks) in gdb_get_regs_helper() argument
502 thread = kgdb_info[ks->cpu].task; in gdb_get_regs_helper()
503 local_debuggerinfo = kgdb_info[ks->cpu].debuggerinfo; in gdb_get_regs_helper()
538 static void gdb_cmd_getregs(struct kgdb_state *ks) in gdb_cmd_getregs() argument
540 gdb_get_regs_helper(ks); in gdb_cmd_getregs()
545 static void gdb_cmd_setregs(struct kgdb_state *ks) in gdb_cmd_setregs() argument
552 gdb_regs_to_pt_regs(gdb_regs, ks->linux_regs); in gdb_cmd_setregs()
558 static void gdb_cmd_memread(struct kgdb_state *ks) in gdb_cmd_memread() argument
[all …]
Ddebug_core.c531 static int kgdb_reenter_check(struct kgdb_state *ks) in kgdb_reenter_check() argument
540 addr = kgdb_arch_pc(ks->ex_vector, ks->linux_regs); in kgdb_reenter_check()
551 kgdb_skipexception(ks->ex_vector, ks->linux_regs); in kgdb_reenter_check()
559 kgdb_skipexception(ks->ex_vector, ks->linux_regs); in kgdb_reenter_check()
587 static int kgdb_cpu_enter(struct kgdb_state *ks, struct pt_regs *regs, in kgdb_cpu_enter() argument
598 kgdb_info[ks->cpu].enter_kgdb++; in kgdb_cpu_enter()
599 kgdb_info[ks->cpu].exception_state |= exception_state; in kgdb_cpu_enter()
617 cpu = ks->cpu; in kgdb_cpu_enter()
702 if (kgdb_skipexception(ks->ex_vector, ks->linux_regs)) in kgdb_cpu_enter()
720 if (ks->send_ready) in kgdb_cpu_enter()
[all …]
Ddebug_core.h67 extern int gdb_serial_stub(struct kgdb_state *ks);
71 extern int gdbstub_state(struct kgdb_state *ks, char *cmd);
75 extern int kdb_stub(struct kgdb_state *ks);
77 extern int kdb_common_init_state(struct kgdb_state *ks);
81 static inline int kdb_stub(struct kgdb_state *ks) in kdb_stub() argument
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/i40e/
Di40e_ethtool.c483 struct ethtool_link_ksettings *ks) in i40e_phy_type_to_ethtool() argument
488 ethtool_link_ksettings_zero_link_mode(ks, supported); in i40e_phy_type_to_ethtool()
489 ethtool_link_ksettings_zero_link_mode(ks, advertising); in i40e_phy_type_to_ethtool()
492 ethtool_link_ksettings_add_link_mode(ks, supported, in i40e_phy_type_to_ethtool()
495 ethtool_link_ksettings_add_link_mode(ks, advertising, in i40e_phy_type_to_ethtool()
498 ethtool_link_ksettings_add_link_mode(ks, supported, in i40e_phy_type_to_ethtool()
500 ethtool_link_ksettings_add_link_mode(ks, advertising, in i40e_phy_type_to_ethtool()
509 ethtool_link_ksettings_add_link_mode(ks, supported, in i40e_phy_type_to_ethtool()
512 ethtool_link_ksettings_add_link_mode(ks, advertising, in i40e_phy_type_to_ethtool()
516 ethtool_link_ksettings_add_link_mode(ks, supported, in i40e_phy_type_to_ethtool()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/pensando/ionic/
Dionic_ethtool.c121 struct ethtool_link_ksettings *ks) in ionic_get_link_ksettings() argument
127 ethtool_link_ksettings_zero_link_mode(ks, supported); in ionic_get_link_ksettings()
142 ethtool_link_ksettings_add_link_mode(ks, supported, in ionic_get_link_ksettings()
147 ethtool_link_ksettings_add_link_mode(ks, supported, in ionic_get_link_ksettings()
154 ethtool_link_ksettings_add_link_mode(ks, supported, in ionic_get_link_ksettings()
160 ethtool_link_ksettings_add_link_mode(ks, supported, in ionic_get_link_ksettings()
168 ethtool_link_ksettings_add_link_mode(ks, supported, in ionic_get_link_ksettings()
174 ethtool_link_ksettings_add_link_mode(ks, supported, in ionic_get_link_ksettings()
178 ethtool_link_ksettings_add_link_mode(ks, supported, in ionic_get_link_ksettings()
183 ethtool_link_ksettings_add_link_mode(ks, supported, in ionic_get_link_ksettings()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/
Dice_ethtool.c1481 ethtool_link_ksettings_add_link_mode(ks, advertising,\
1492 struct ethtool_link_ksettings *ks) in ice_phy_type_to_ethtool() argument
1552 ethtool_link_ksettings_zero_link_mode(ks, supported); in ice_phy_type_to_ethtool()
1553 ethtool_link_ksettings_zero_link_mode(ks, advertising); in ice_phy_type_to_ethtool()
1558 ethtool_link_ksettings_add_link_mode(ks, supported, in ice_phy_type_to_ethtool()
1568 ethtool_link_ksettings_add_link_mode(ks, supported, in ice_phy_type_to_ethtool()
1576 ethtool_link_ksettings_add_link_mode(ks, supported, in ice_phy_type_to_ethtool()
1585 ethtool_link_ksettings_add_link_mode(ks, supported, in ice_phy_type_to_ethtool()
1593 ethtool_link_ksettings_add_link_mode(ks, supported, in ice_phy_type_to_ethtool()
1602 ethtool_link_ksettings_add_link_mode(ks, supported, in ice_phy_type_to_ethtool()
[all …]
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/
Dget_stack_raw_tp.c30 struct ksym *ks; in get_stack_print_output() local
48 ks = ksym_search(raw_data[i]); in get_stack_print_output()
49 if (ks && (strcmp(ks->name, nonjit_func) == 0)) { in get_stack_print_output()
65 ks = ksym_search(e->kern_stack[i]); in get_stack_print_output()
66 if (ks && (strcmp(ks->name, nonjit_func) == 0)) { in get_stack_print_output()
/kernel/linux/linux-5.10/drivers/media/i2c/
Dks0127.c332 struct ks0127 *ks = to_ks0127(sd); in ks0127_write() local
338 ks->regs[reg] = val; in ks0127_write()
345 struct ks0127 *ks = to_ks0127(sd); in ks0127_and_or() local
347 u8 val = ks->regs[reg]; in ks0127_and_or()
404 struct ks0127 *ks = to_ks0127(sd); in ks0127_s_routing() local
480 if (ks->norm & V4L2_STD_525_60) in ks0127_s_routing()
536 struct ks0127 *ks = to_ks0127(sd); in ks0127_s_std() local
541 ks->norm = std; in ks0127_s_std()
655 struct ks0127 *ks; in ks0127_probe() local
662 ks = devm_kzalloc(&client->dev, sizeof(*ks), GFP_KERNEL); in ks0127_probe()
[all …]
/kernel/linux/linux-5.10/crypto/
Dxcbc.c14 static u_int32_t ks[12] = {0x01010101, 0x01010101, 0x01010101, 0x01010101, variable
63 crypto_cipher_encrypt_one(ctx->child, consts, (u8 *)ks + bs); in crypto_xcbc_digest_setkey()
64 crypto_cipher_encrypt_one(ctx->child, consts + bs, (u8 *)ks + bs * 2); in crypto_xcbc_digest_setkey()
65 crypto_cipher_encrypt_one(ctx->child, key1, (u8 *)ks); in crypto_xcbc_digest_setkey()
Dseed.c312 t0 = X3 ^ ks[rbase]; \
313 t1 = X4 ^ ks[rbase+1]; \
370 const u32 *ks = ctx->keysched; in seed_encrypt() local
408 const u32 *ks = ctx->keysched; in seed_decrypt() local
/kernel/linux/linux-5.10/mm/
Dslab_common.c1070 size_t ks; in __do_krealloc() local
1072 ks = ksize(p); in __do_krealloc()
1074 if (ks >= new_size) { in __do_krealloc()
1081 memcpy(ret, p, ks); in __do_krealloc()
1129 size_t ks; in kfree_sensitive() local
1132 ks = ksize(mem); in kfree_sensitive()
1133 if (ks) in kfree_sensitive()
1134 memzero_explicit(mem, ks); in kfree_sensitive()
/kernel/linux/linux-5.10/tools/perf/util/
Dcall-path.c79 struct symbol *sym, u64 ip, u64 ks) in call_path__findnew() argument
84 bool in_kernel = ip >= ks; in call_path__findnew()
Dthread-stack.c913 u64 ks = ts->kernel_start; in thread_stack__no_call_return() local
919 if (ip >= ks && addr < ks) { in thread_stack__no_call_return()
927 cp = call_path__findnew(cpr, root, tsym, addr, ks); in thread_stack__no_call_return()
931 } else if (thread_stack__in_kernel(ts) && ip < ks) { in thread_stack__no_call_return()
957 cp = call_path__findnew(cpr, root, tsym, addr, ks); in thread_stack__no_call_return()
967 cp = call_path__findnew(cpr, parent, tsym, addr, ks); in thread_stack__no_call_return()
981 cp = call_path__findnew(cpr, parent, tsym, addr, ks); in thread_stack__no_call_return()
987 cp = call_path__findnew(cpr, cp, fsym, ip, ks); in thread_stack__no_call_return()
Dcall-path.h66 struct symbol *sym, u64 ip, u64 ks);
/kernel/linux/linux-5.10/fs/hmdfs/
Dhmdfs_server.c1702 struct kstat *ks, in update_getattr_response() argument
1712 resp->fsid = cpu_to_le64(ks->dev); in update_getattr_response()
1713 resp->nlink = cpu_to_le32(ks->nlink); in update_getattr_response()
1714 resp->uid = cpu_to_le32(ks->uid.val); in update_getattr_response()
1715 resp->gid = cpu_to_le32(ks->gid.val); in update_getattr_response()
1716 resp->size = cpu_to_le64(ks->size); in update_getattr_response()
1717 resp->blocks = cpu_to_le64(ks->blocks); in update_getattr_response()
1718 resp->blksize = cpu_to_le32(ks->blksize); in update_getattr_response()
1719 resp->atime = cpu_to_le64(ks->atime.tv_sec); in update_getattr_response()
1720 resp->atime_nsec = cpu_to_le32(ks->atime.tv_nsec); in update_getattr_response()
[all …]
/kernel/linux/linux-5.10/arch/microblaze/include/asm/
Dmmu.h47 unsigned long ks:1; /* Supervisor 'key' (normally 0) */ member
/kernel/linux/linux-5.10/drivers/char/hw_random/
DMakefile44 obj-$(CONFIG_HW_RANDOM_KEYSTONE) += ks-sa-rng.o
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/modules/color/
Dcolor_gamma.c858 struct fixed31_32 ks; in hermite_spline_eetf() local
883 ks = dc_fixpt_sub(dc_fixpt_mul(a, max_lum_pq), b); // a * max_lum_pq - b in hermite_spline_eetf()
885 if (dc_fixpt_lt(E1, ks)) in hermite_spline_eetf()
887 else if (dc_fixpt_le(ks, E1) && dc_fixpt_le(E1, dc_fixpt_one)) { in hermite_spline_eetf()
888 if (dc_fixpt_lt(epsilon, dc_fixpt_sub(dc_fixpt_one, ks))) in hermite_spline_eetf()
890 t = dc_fixpt_div(dc_fixpt_sub(E1, ks), in hermite_spline_eetf()
891 dc_fixpt_sub(dc_fixpt_one, ks)); in hermite_spline_eetf()
904 E2 = dc_fixpt_mul(ks, dc_fixpt_add(dc_fixpt_one, in hermite_spline_eetf()
912 temp2 = dc_fixpt_sub(dc_fixpt_one, ks); in hermite_spline_eetf()
/kernel/linux/linux-5.10/drivers/s390/cio/
Dchsc.h95 u32 ks:4; member

12