Home
last modified time | relevance | path

Searched full:lt (Results 1 – 25 of 244) sorted by relevance

12345678910

/linux/drivers/gpu/drm/bridge/
H A Dlontium-lt8912b.c52 static int lt8912_write_init_config(struct lt8912 *lt) in lt8912_write_init_config() argument
89 return regmap_multi_reg_write(lt->regmap[I2C_MAIN], seq, ARRAY_SIZE(seq)); in lt8912_write_init_config()
92 static int lt8912_write_mipi_basic_config(struct lt8912 *lt) in lt8912_write_mipi_basic_config() argument
102 return regmap_multi_reg_write(lt->regmap[I2C_CEC_DSI], seq, ARRAY_SIZE(seq)); in lt8912_write_mipi_basic_config()
105 static int lt8912_write_dds_config(struct lt8912 *lt) in lt8912_write_dds_config() argument
155 return regmap_multi_reg_write(lt->regmap[I2C_CEC_DSI], seq, ARRAY_SIZE(seq)); in lt8912_write_dds_config()
158 static int lt8912_write_rxlogicres_config(struct lt8912 *lt) in lt8912_write_rxlogicres_config() argument
162 ret = regmap_write(lt->regmap[I2C_MAIN], 0x03, 0x7f); in lt8912_write_rxlogicres_config()
164 ret |= regmap_write(lt->regmap[I2C_MAIN], 0x03, 0xff); in lt8912_write_rxlogicres_config()
170 static int lt8912_write_lvds_config(struct lt8912 *lt) in lt8912_write_lvds_config() argument
[all …]
/linux/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Ddp.c92 nvkm_dp_train_sense(struct lt_state *lt, bool pc, u32 delay) in nvkm_dp_train_sense() argument
94 struct nvkm_outp *outp = lt->outp; in nvkm_dp_train_sense()
100 if (lt->repeater) in nvkm_dp_train_sense()
101 addr = DPCD_LTTPR_LANE0_1_STATUS(lt->repeater); in nvkm_dp_train_sense()
105 ret = nvkm_rdaux(outp->dp.aux, addr, &lt->stat[0], 3); in nvkm_dp_train_sense()
109 if (lt->repeater) in nvkm_dp_train_sense()
110 addr = DPCD_LTTPR_LANE0_1_ADJUST(lt->repeater); in nvkm_dp_train_sense()
114 ret = nvkm_rdaux(outp->dp.aux, addr, &lt->stat[4], 2); in nvkm_dp_train_sense()
119 ret = nvkm_rdaux(outp->dp.aux, DPCD_LS0C, &lt->pc2stat, 1); in nvkm_dp_train_sense()
121 lt->pc2stat = 0x00; in nvkm_dp_train_sense()
[all …]
/linux/net/netfilter/
H A Dnft_set_pipapo_avx2.c45 #define NFT_PIPAPO_AVX2_BUCKET_LOAD4(reg, lt, group, v, bsize) \ argument
47 lt[((group) * NFT_PIPAPO_BUCKETS(4) + \
49 #define NFT_PIPAPO_AVX2_BUCKET_LOAD8(reg, lt, group, v, bsize) \ argument
51 lt[((group) * NFT_PIPAPO_BUCKETS(8) + \
221 unsigned long *lt = f->lt, bsize = f->bsize; in nft_pipapo_avx2_lookup_4b_2() local
223 lt += offset * NFT_PIPAPO_LONGS_PER_M256; in nft_pipapo_avx2_lookup_4b_2()
224 for (i = offset; i < m256_size; i++, lt += NFT_PIPAPO_LONGS_PER_M256) { in nft_pipapo_avx2_lookup_4b_2()
228 NFT_PIPAPO_AVX2_BUCKET_LOAD4(0, lt, 0, pg[0], bsize); in nft_pipapo_avx2_lookup_4b_2()
229 NFT_PIPAPO_AVX2_BUCKET_LOAD4(1, lt, 1, pg[1], bsize); in nft_pipapo_avx2_lookup_4b_2()
232 NFT_PIPAPO_AVX2_BUCKET_LOAD4(0, lt, 0, pg[0], bsize); in nft_pipapo_avx2_lookup_4b_2()
[all …]
/linux/arch/parisc/include/asm/
H A Delf.h74 #define R_PARISC_LTOFF21L 34 /* LT-relative, left 21 bits. */
75 #define R_PARISC_LTOFF14R 38 /* LT-relative, right 14 bits. */
81 #define R_PARISC_LTOFF_FPTR32 57 /* 32 bits LT-rel. function pointer. */
82 #define R_PARISC_LTOFF_FPTR21L 58 /* LT-rel. fct ptr, left 21 bits. */
83 #define R_PARISC_LTOFF_FPTR14R 62 /* LT-rel. fct ptr, right 14 bits. */
105 #define R_PARISC_LTOFF64 96 /* 64 bits LT-rel. address. */
106 #define R_PARISC_LTOFF14WR 99 /* LT-rel. address, right 14 bits. */
107 #define R_PARISC_LTOFF14DR 100 /* LT-rel. address, right 14 bits. */
108 #define R_PARISC_LTOFF16F 101 /* 16 bits LT-rel. address. */
109 #define R_PARISC_LTOFF16WF 102 /* 16 bits LT-rel. address. */
[all …]
/linux/drivers/mtd/nand/raw/
H A Dmarvell_nand.c1043 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; in marvell_nfc_hw_ecc_hmg_do_read_page()
1053 unsigned int oob_bytes = lt->spare_bytes + (raw ? lt->ecc_bytes : 0); in marvell_nfc_hw_ecc_hmg_do_read_page()
1078 lt->data_bytes + oob_bytes); in marvell_nfc_hw_ecc_hmg_do_read_page()
1079 memcpy(data_buf, nfc->dma_buf, lt->data_bytes); in marvell_nfc_hw_ecc_hmg_do_read_page()
1080 memcpy(oob_buf, nfc->dma_buf + lt->data_bytes, oob_bytes); in marvell_nfc_hw_ecc_hmg_do_read_page()
1082 marvell_nfc_xfer_data_in_pio(nfc, data_buf, lt->data_bytes); in marvell_nfc_hw_ecc_hmg_do_read_page()
1101 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; in marvell_nfc_hw_ecc_hmg_read_page()
1102 unsigned int full_sz = lt->data_bytes + lt in marvell_nfc_hw_ecc_hmg_read_page()
1040 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nfc_hw_ecc_hmg_do_read_page() local
1098 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nfc_hw_ecc_hmg_read_page() local
1154 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nfc_hw_ecc_hmg_do_write_page() local
1260 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nfc_hw_ecc_bch_read_page_raw() local
1310 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nfc_hw_ecc_bch_read_chunk() local
1375 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nfc_hw_ecc_bch_read_page() local
1515 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nfc_hw_ecc_bch_write_page_raw() local
1572 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nfc_hw_ecc_bch_write_chunk() local
1633 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nfc_hw_ecc_bch_write_page() local
2203 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nand_ooblayout_ecc() local
2219 const struct marvell_hw_ecc_layout *lt = to_marvell_nand(chip)->layout; marvell_nand_ooblayout_free() local
[all...]
/linux/Documentation/scsi/
H A DFlashPoint.rst78 BusLogic FlashPoint LT/BT-948 Upgrade Program
85 Ever since its introduction last October, the BusLogic FlashPoint LT has
90 system like Linux, the FlashPoint LT has been touted by computer system
106 ended up with a FlashPoint LT, believing it was supported, and were unable
133 unable to run Linux because they have a Flashpoint LT. Therefore, BusLogic
135 to trade in their FlashPoint LT for the new BT-948 MultiMaster PCI Ultra
137 and has all the best features of both the BT-946C and FlashPoint LT,
145 As of 14 June 1996, the original BusLogic FlashPoint LT to BT-948 upgrade
169 from the unsupported FlashPoint LT (BT-930) to the supported BT-948 for US
/linux/tools/testing/selftests/filesystems/epoll/
H A Depoll_wakeup_test.c160 * | (lt)
222 * (lt) / \ (lt)
298 * | (lt)
376 * (lt) / \ (lt)
469 * | (lt)
555 * (lt) / \ (lt)
653 * | (lt)
739 * (lt) / \ (lt)
837 * | (lt)
839 * | (lt)
[all …]
/linux/scripts/
H A Dunifdef.c831 Linetype lt; in eval_unary() local
837 lt = eval_unary(ops, valp, &cp); in eval_unary()
838 if (lt == LT_ERROR) in eval_unary()
840 if (lt != LT_IF) { in eval_unary()
842 lt = *valp ? LT_TRUE : LT_FALSE; in eval_unary()
847 lt = eval_table(eval_ops, valp, &cp); in eval_unary()
848 if (lt == LT_ERROR) in eval_unary()
858 lt = *valp ? LT_TRUE : LT_FALSE; in eval_unary()
871 lt = LT_IF; in eval_unary()
874 lt = *valp ? LT_TRUE : LT_FALSE; in eval_unary()
[all …]
/linux/tools/testing/selftests/net/netfilter/
H A Dconntrack_resize.sh61 while [ $i -lt $count ] ;do
94 while [ $now -lt $end ]; do
122 while [ $now -lt $end ]; do
139 while [ $now -lt $end ]; do
167 while [ $now -lt $end ]; do
189 while [ $now -lt $end ]; do
220 while [ $now -lt $end ]; do
244 while [ $now -lt $end ]; do
H A Dnft_zones_many.sh57 if [ "$i" -lt "$max_zones" ]; then
72 while [ "$i" -lt "$max_zones" ]; do
118 while [ "$i" -lt "$max_zones" ]; do
/linux/drivers/media/v4l2-core/
H A Dv4l2-h264.c263 u8 lt, i = 0, j = 0, k = 0; in reorder_field_reflist() local
267 for (lt = 0; lt <= 1; lt++) { in reorder_field_reflist()
269 for (; i < b->num_valid && b->refs[tmplist[i].index].longterm == lt; i++) { in reorder_field_reflist()
276 for (; j < b->num_valid && b->refs[tmplist[j].index].longterm == lt; j++) { in reorder_field_reflist()
282 } while ((i < b->num_valid && b->refs[tmplist[i].index].longterm == lt) || in reorder_field_reflist()
283 (j < b->num_valid && b->refs[tmplist[j].index].longterm == lt)); in reorder_field_reflist()
/linux/tools/testing/selftests/rseq/
H A Drun_param_test.sh40 while [ "$i" -lt "${#TEST_LIST[@]}" ]; do
77 while [ "$i" -lt "${#INJECT_LIST[@]}" ]; do
98 while [ "$i" -lt "${#INJECT_LIST[@]}" ]; do
/linux/tools/testing/selftests/memory-hotplug/
H A Dmem-on-off-test.sh166 if [ "$ratio" -gt 100 ] || [ "$ratio" -lt 0 ]; then
174 if ! [ "$error" -ge -4095 -a "$error" -lt 0 ]; then
271 if [ $((RANDOM % 100)) -lt $ratio ]; then
297 if [ $((RANDOM % 100)) -lt $ratio ]; then
/linux/kernel/locking/
H A Dlockdep_proc.c451 static void seq_lock_time(struct seq_file *m, struct lock_time *lt) in seq_lock_time() argument
453 seq_printf(m, "%14lu", lt->nr); in seq_lock_time()
454 seq_time(m, lt->min); in seq_lock_time()
455 seq_time(m, lt->max); in seq_lock_time()
456 seq_time(m, lt->total); in seq_lock_time()
457 seq_time(m, lt->nr ? div64_u64(lt->total, lt->nr) : 0); in seq_lock_time()
/linux/tools/testing/selftests/ftrace/test.d/event/
H A Dsubsystem-enable.tc46 if [ $count -lt 3 ]; then
57 if [ $count -lt 3 ]; then
/linux/Documentation/devicetree/bindings/pinctrl/
H A Dmediatek,mt6893-pinctrl.yaml27 - description: lt group IO
39 - const: lt
169 "lt", "tm", "eint";
H A Dmediatek,mt6878-pinctrl.yaml29 - description: lt group IO
46 - const: lt
186 "lm", "lt", "rm", "rt", "eint-e", "eint-s",
H A Dmediatek,mt8196-pinctrl.yaml30 - description: lt group IO
54 - const: lt
219 "bm2", "bm3", "lt", "lm1", "lm2", "lb1",
/linux/sound/pci/ice1712/
H A Daureon.h17 "{AudioTrak,Prodigy 7.1 LT},"\
24 #define VT1724_SUBDEVICE_PRODIGY71LT 0x32315441 /* PRODIGY 7.1 LT */
/linux/tools/testing/selftests/memfd/
H A Drun_hugetlbfs_test.sh25 if [ -n "$freepgs" ] && [ $freepgs -lt $hpages_test ]; then
47 if [ $freepgs -lt $hpages_test ]; then
/linux/arch/mips/include/asm/
H A Dcpu-features.h63 #define __isa_range(ge, lt) \ argument
64 ((MIPS_ISA_REV >= (ge)) && (MIPS_ISA_REV < (lt)))
65 #define __isa_range_or_flag(ge, lt, flag) \ argument
66 (__isa_range(ge, lt) || ((MIPS_ISA_REV < (lt)) && __isa(flag)))
67 #define __isa_range_and_ase(ge, lt, ase) \ argument
68 (__isa_range(ge, lt) && __ase(ase))
/linux/arch/arm/kernel/
H A Dopcodes.c15 * index into the table is test code: EQ, NE, ... LT, GT, AL, NV
31 0x55AA, /* LT == (N!=V) */
/linux/drivers/net/ethernet/marvell/octeontx2/af/
H A Drvu_npc_fs.c159 u64 cfg, u8 lid, u8 lt, u8 intf) in npc_set_layer_mdata() argument
169 input->layer_mdata.ltype = lt; in npc_set_layer_mdata()
204 u8 nr_bits, lid, lt, ld; in npc_check_overlap() local
216 for (lt = 0; lt < NPC_MAX_LT; lt++) { in npc_check_overlap()
220 (intf, lid, lt, ld)); in npc_check_overlap()
225 lid, lt, intf); in npc_check_overlap()
460 u8 lt, u64 cfg, u8 intf) in npc_scan_ldata() argument
488 if (lid == (hlid) && lt == (hlt)) { \ in npc_scan_ldata()
492 npc_set_layer_mdata(mcam, (name), cfg, lid, lt, intf); \ in npc_scan_ldata()
512 if (mkex_hash->lid_lt_ld_hash_en[intf][lid][lt][0]) in npc_scan_ldata()
[all …]
/linux/arch/mips/pci/
H A Dfixup-cobalt.c71 unsigned char lt; in qube_raq_via_bmIDE_fixup() local
82 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lt); in qube_raq_via_bmIDE_fixup()
83 if (lt < 64) in qube_raq_via_bmIDE_fixup()
/linux/drivers/accessibility/speakup/
H A DKconfig19 Dectalk express, Doubletalk, Doubletalk LT or
157 tristate "DoubleTalk LT/LiteTalk synthesizer support"
161 LT synthesizer. You can say y to build it into the

12345678910