Home
last modified time | relevance | path

Searched full:ks (Results 1 – 25 of 71) sorted by relevance

123

/Linux-v5.10/drivers/net/ethernet/micrel/
Dks8851_common.c32 * @ks: The chip state
37 static void ks8851_lock(struct ks8851_net *ks, unsigned long *flags) in ks8851_lock() argument
39 ks->lock(ks, flags); in ks8851_lock()
44 * @ks: The chip state
49 static void ks8851_unlock(struct ks8851_net *ks, unsigned long *flags) in ks8851_unlock() argument
51 ks->unlock(ks, flags); in ks8851_unlock()
56 * @ks: The chip state
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()
70 * @ks: The chip information
[all …]
Dks8851_spi.c60 #define to_ks8851_spi(ks) container_of((ks), struct ks8851_net_spi, ks8851) argument
77 * @ks: The chip state
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()
91 * @ks: The chip state
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()
112 * @ks: The chip state
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()
[all …]
Dks8851_par.c55 #define to_ks8851_par(ks) container_of((ks), struct ks8851_net_par, ks8851) argument
59 * @ks: The chip state
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()
73 * @ks: The chip state
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()
87 * @ks : The chip information
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()
[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);
437 * @ks: The device state
440 static void __maybe_unused ks8851_done_tx(struct ks8851_net *ks, in ks8851_done_tx() argument
[all …]
/Linux-v5.10/drivers/net/phy/
Dspi_ks8995.c181 * @ks: pointer to switch instance
191 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
[all …]
/Linux-v5.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 …]
/Linux-v5.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.c519 static int kgdb_reenter_check(struct kgdb_state *ks) in kgdb_reenter_check() argument
528 addr = kgdb_arch_pc(ks->ex_vector, ks->linux_regs); in kgdb_reenter_check()
539 kgdb_skipexception(ks->ex_vector, ks->linux_regs); in kgdb_reenter_check()
547 kgdb_skipexception(ks->ex_vector, ks->linux_regs); in kgdb_reenter_check()
575 static int kgdb_cpu_enter(struct kgdb_state *ks, struct pt_regs *regs, in kgdb_cpu_enter() argument
586 kgdb_info[ks->cpu].enter_kgdb++; in kgdb_cpu_enter()
587 kgdb_info[ks->cpu].exception_state |= exception_state; in kgdb_cpu_enter()
605 cpu = ks->cpu; in kgdb_cpu_enter()
690 if (kgdb_skipexception(ks->ex_vector, ks->linux_regs)) in kgdb_cpu_enter()
708 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
/Linux-v5.10/drivers/net/ethernet/intel/i40e/
Di40e_ethtool.c470 * @ks: ethtool link ksettings struct to fill out
474 struct ethtool_link_ksettings *ks) in i40e_phy_type_to_ethtool() argument
479 ethtool_link_ksettings_zero_link_mode(ks, supported); in i40e_phy_type_to_ethtool()
480 ethtool_link_ksettings_zero_link_mode(ks, advertising); in i40e_phy_type_to_ethtool()
483 ethtool_link_ksettings_add_link_mode(ks, supported, in i40e_phy_type_to_ethtool()
486 ethtool_link_ksettings_add_link_mode(ks, advertising, in i40e_phy_type_to_ethtool()
489 ethtool_link_ksettings_add_link_mode(ks, supported, in i40e_phy_type_to_ethtool()
491 ethtool_link_ksettings_add_link_mode(ks, advertising, in i40e_phy_type_to_ethtool()
500 ethtool_link_ksettings_add_link_mode(ks, supported, in i40e_phy_type_to_ethtool()
503 ethtool_link_ksettings_add_link_mode(ks, advertising, in i40e_phy_type_to_ethtool()
[all …]
/Linux-v5.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 …]
/Linux-v5.10/drivers/net/ethernet/intel/ice/
Dice_ethtool.c1473 ethtool_link_ksettings_add_link_mode(ks, advertising,\
1480 * @ks: ethtool link ksettings struct to fill out
1484 struct ethtool_link_ksettings *ks) in ice_phy_type_to_ethtool() argument
1544 ethtool_link_ksettings_zero_link_mode(ks, supported); in ice_phy_type_to_ethtool()
1545 ethtool_link_ksettings_zero_link_mode(ks, advertising); in ice_phy_type_to_ethtool()
1550 ethtool_link_ksettings_add_link_mode(ks, supported, in ice_phy_type_to_ethtool()
1560 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()
1577 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()
[all …]
/Linux-v5.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()
/Linux-v5.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 …]
/Linux-v5.10/arch/powerpc/include/asm/book3s/32/
Dkup.h61 oris \gpr1, \gpr1, SR_KS@h /* set Ks */
72 rlwinm \gpr1, \gpr1, 0, ~SR_KS /* Clear Ks */
125 kuap_update_sr(mfsrin(addr) & ~SR_KS, addr, end); /* Clear Ks */
154 kuap_update_sr(mfsrin(addr) | SR_KS, addr, end); /* set Ks */
/Linux-v5.10/sound/soc/codecs/
Dtlv320aic23-spi.c5 * Author: Arun KS, <arunks@mistralsolutions.com>
44 MODULE_AUTHOR("Arun KS <arunks@mistralsolutions.com>");
Dtlv320aic23-i2c.c5 * Author: Arun KS, <arunks@mistralsolutions.com>
56 MODULE_AUTHOR("Arun KS <arunks@mistralsolutions.com>");
/Linux-v5.10/Documentation/devicetree/bindings/
Dtrivial-devices.yaml111 # 10-bit 8 channels 300ks/s SPI ADC with temperature sensor
113 # 10-bit 12 channels 300ks/s SPI ADC with temperature sensor
115 # 10-bit 16 channels 300ks/s SPI ADC with temperature sensor
117 # 12-bit 8 channels 300ks/s SPI ADC with temperature sensor
119 # 12-bit 12 channels 300ks/s SPI ADC with temperature sensor
121 # 12-bit 16 channels 300ks/s SPI ADC with temperature sensor
/Linux-v5.10/arch/powerpc/include/asm/nohash/32/
Dmmu-8xx.h23 /* These are the Ks and Kp from the PowerPC books. For proper operation,
24 * Ks = 0, Kp = 1.
101 /* These are the Ks and Kp from the PowerPC books. For proper operation,
102 * Ks = 0, Kp = 1.
/Linux-v5.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()
/Linux-v5.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()
/Linux-v5.10/sound/soc/ti/
Dosk5912.c7 * Contact: Arun KS <arunks@mistralsolutions.com>
174 MODULE_AUTHOR("Arun KS <arunks@mistralsolutions.com>");
/Linux-v5.10/arch/microblaze/include/asm/
Dmmu.h38 /* Values for PP (assumes Ks=0, Kp=1) */
47 unsigned long ks:1; /* Supervisor 'key' (normally 0) */ member
/Linux-v5.10/mm/
Dslab_common.c1071 size_t ks; in __do_krealloc() local
1073 ks = ksize(p); in __do_krealloc()
1075 if (ks >= new_size) { in __do_krealloc()
1082 memcpy(ret, p, ks); in __do_krealloc()
1130 size_t ks; in kfree_sensitive() local
1133 ks = ksize(mem); in kfree_sensitive()
1134 if (ks) in kfree_sensitive()
1135 memzero_explicit(mem, ks); in kfree_sensitive()

123