Home
last modified time | relevance | path

Searched refs:mst (Results 1 – 25 of 46) sorted by relevance

12

/OK3568_Linux_fs/kernel/drivers/media/dvb-frontends/
H A Ddibx000_common.c20 static int dibx000_write_word(struct dibx000_i2c_master *mst, u16 reg, u16 val) in dibx000_write_word() argument
24 if (mutex_lock_interruptible(&mst->i2c_buffer_lock) < 0) { in dibx000_write_word()
29 mst->i2c_write_buffer[0] = (reg >> 8) & 0xff; in dibx000_write_word()
30 mst->i2c_write_buffer[1] = reg & 0xff; in dibx000_write_word()
31 mst->i2c_write_buffer[2] = (val >> 8) & 0xff; in dibx000_write_word()
32 mst->i2c_write_buffer[3] = val & 0xff; in dibx000_write_word()
34 memset(mst->msg, 0, sizeof(struct i2c_msg)); in dibx000_write_word()
35 mst->msg[0].addr = mst->i2c_addr; in dibx000_write_word()
36 mst->msg[0].flags = 0; in dibx000_write_word()
37 mst->msg[0].buf = mst->i2c_write_buffer; in dibx000_write_word()
[all …]
H A Ddibx000_common.h40 extern int dibx000_init_i2c_master(struct dibx000_i2c_master *mst,
44 *mst,
47 extern void dibx000_exit_i2c_master(struct dibx000_i2c_master *mst);
48 extern void dibx000_reset_i2c_master(struct dibx000_i2c_master *mst);
/OK3568_Linux_fs/u-boot/fs/ubifs/
H A Dsb.c74 struct ubifs_mst_node *mst; in create_default_filesystem() local
203 mst = kzalloc(c->mst_node_alsz, GFP_KERNEL); in create_default_filesystem()
204 if (!mst) in create_default_filesystem()
207 mst->ch.node_type = UBIFS_MST_NODE; in create_default_filesystem()
208 mst->log_lnum = cpu_to_le32(UBIFS_LOG_LNUM); in create_default_filesystem()
209 mst->highest_inum = cpu_to_le64(UBIFS_FIRST_INO); in create_default_filesystem()
210 mst->cmt_no = 0; in create_default_filesystem()
211 mst->root_lnum = cpu_to_le32(main_first + DEFAULT_IDX_LEB); in create_default_filesystem()
212 mst->root_offs = 0; in create_default_filesystem()
214 mst->root_len = cpu_to_le32(tmp); in create_default_filesystem()
[all …]
H A Drecovery.c103 struct ubifs_mst_node **mst, void **cor) in get_master_node() argument
158 *mst = buf; in get_master_node()
185 *mst = NULL; in get_master_node()
198 struct ubifs_mst_node *mst) in write_rcvrd_mst_node() argument
205 save_flags = mst->flags; in write_rcvrd_mst_node()
206 mst->flags |= cpu_to_le32(UBIFS_MST_RCVRY); in write_rcvrd_mst_node()
208 ubifs_prepare_node(c, mst, UBIFS_MST_NODE_SZ, 1); in write_rcvrd_mst_node()
209 err = ubifs_leb_change(c, lnum, mst, sz); in write_rcvrd_mst_node()
212 err = ubifs_leb_change(c, lnum + 1, mst, sz); in write_rcvrd_mst_node()
216 mst->flags = save_flags; in write_rcvrd_mst_node()
[all …]
H A Ddebug.c368 const struct ubifs_mst_node *mst = node; in ubifs_dump_node() local
371 (unsigned long long)le64_to_cpu(mst->highest_inum)); in ubifs_dump_node()
373 (unsigned long long)le64_to_cpu(mst->cmt_no)); in ubifs_dump_node()
374 pr_err("\tflags %#x\n", le32_to_cpu(mst->flags)); in ubifs_dump_node()
375 pr_err("\tlog_lnum %u\n", le32_to_cpu(mst->log_lnum)); in ubifs_dump_node()
376 pr_err("\troot_lnum %u\n", le32_to_cpu(mst->root_lnum)); in ubifs_dump_node()
377 pr_err("\troot_offs %u\n", le32_to_cpu(mst->root_offs)); in ubifs_dump_node()
378 pr_err("\troot_len %u\n", le32_to_cpu(mst->root_len)); in ubifs_dump_node()
379 pr_err("\tgc_lnum %u\n", le32_to_cpu(mst->gc_lnum)); in ubifs_dump_node()
380 pr_err("\tihead_lnum %u\n", le32_to_cpu(mst->ihead_lnum)); in ubifs_dump_node()
[all …]
/OK3568_Linux_fs/kernel/fs/ubifs/
H A Dsb.c75 struct ubifs_mst_node *mst; in create_default_filesystem() local
161 mst = kzalloc(c->mst_node_alsz, GFP_KERNEL); in create_default_filesystem()
167 if (!sup || !mst || !idx || !ino || !cs) { in create_default_filesystem()
224 mst->ch.node_type = UBIFS_MST_NODE; in create_default_filesystem()
225 mst->log_lnum = cpu_to_le32(UBIFS_LOG_LNUM); in create_default_filesystem()
226 mst->highest_inum = cpu_to_le64(UBIFS_FIRST_INO); in create_default_filesystem()
227 mst->cmt_no = 0; in create_default_filesystem()
228 mst->root_lnum = cpu_to_le32(main_first + DEFAULT_IDX_LEB); in create_default_filesystem()
229 mst->root_offs = 0; in create_default_filesystem()
231 mst->root_len = cpu_to_le32(tmp); in create_default_filesystem()
[all …]
H A Drecovery.c98 struct ubifs_mst_node **mst, void **cor) in get_master_node() argument
153 *mst = buf; in get_master_node()
180 *mst = NULL; in get_master_node()
193 struct ubifs_mst_node *mst) in write_rcvrd_mst_node() argument
200 save_flags = mst->flags; in write_rcvrd_mst_node()
201 mst->flags |= cpu_to_le32(UBIFS_MST_RCVRY); in write_rcvrd_mst_node()
203 err = ubifs_prepare_node_hmac(c, mst, UBIFS_MST_NODE_SZ, in write_rcvrd_mst_node()
207 err = ubifs_leb_change(c, lnum, mst, sz); in write_rcvrd_mst_node()
210 err = ubifs_leb_change(c, lnum + 1, mst, sz); in write_rcvrd_mst_node()
214 mst->flags = save_flags; in write_rcvrd_mst_node()
[all …]
H A Ddebug.c359 const struct ubifs_mst_node *mst = node; in ubifs_dump_node() local
362 (unsigned long long)le64_to_cpu(mst->highest_inum)); in ubifs_dump_node()
364 (unsigned long long)le64_to_cpu(mst->cmt_no)); in ubifs_dump_node()
365 pr_err("\tflags %#x\n", le32_to_cpu(mst->flags)); in ubifs_dump_node()
366 pr_err("\tlog_lnum %u\n", le32_to_cpu(mst->log_lnum)); in ubifs_dump_node()
367 pr_err("\troot_lnum %u\n", le32_to_cpu(mst->root_lnum)); in ubifs_dump_node()
368 pr_err("\troot_offs %u\n", le32_to_cpu(mst->root_offs)); in ubifs_dump_node()
369 pr_err("\troot_len %u\n", le32_to_cpu(mst->root_len)); in ubifs_dump_node()
370 pr_err("\tgc_lnum %u\n", le32_to_cpu(mst->gc_lnum)); in ubifs_dump_node()
371 pr_err("\tihead_lnum %u\n", le32_to_cpu(mst->ihead_lnum)); in ubifs_dump_node()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/qemu/qemu/
H A D0001-acpi-tpm-Add-missing-device-identification-objects.patch15 Cc: Michael S. Tsirkin <mst@redhat.com>
24 Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
25 Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
H A DCVE-2021-4158.patch2 From: "Michael S. Tsirkin" <mst@redhat.com>
18 Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
H A D0001-vhost-vsock-detach-the-virqueue-element-in-case-of-e.patch21 Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
22 Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
H A D0001-Define-MAP_SYNC-and-MAP_SHARED_VALIDATE-on-needed-li.patch15 Cc: Michael S. Tsirkin <mst@redhat.com>
H A D0002-virtio-net-fix-map-leaking-on-error-during-receive.patch23 Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Ddp.c405 ior->dp.mst = dp->lt.mst; in nvkm_dp_train()
471 dataKBps, linkKBps, ior->dp.mst, dp->lt.mst); in nvkm_dp_acquire()
472 if (linkKBps < dataKBps || ior->dp.mst != dp->lt.mst) { in nvkm_dp_acquire()
H A Ddp.h29 bool mst; member
H A Dsortu102.c48 if (sor->dp.mst) in tu102_sor_dp_links()
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dmstar-v7.dtsi89 compatible = "mstar,mst-intc";
98 compatible = "mstar,mst-intc";
/OK3568_Linux_fs/kernel/Documentation/sound/hd-audio/
H A Dindex.rst10 dp-mst
/OK3568_Linux_fs/kernel/drivers/w1/
H A Dw1_int.c154 msg.id.mst.id = dev->id; in w1_add_master_device()
213 msg.id.mst.id = dev->id; in __w1_remove_master_device()
H A Dw1_netlink.h74 } mst; member
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/
H A Dnouveau_dp.c35 MODULE_PARM_DESC(mst, "Enable DisplayPort multi-stream (default: enabled)");
37 module_param_named(mst, nouveau_mst, int, 0400);
/OK3568_Linux_fs/kernel/fs/ntfs/
H A DMakefile7 index.o inode.o mft.o mst.o namei.o runlist.o super.o sysctl.o \
/OK3568_Linux_fs/buildroot/package/xen/
H A D0002-Fix-build-with-64-bits-time_t.patch25 Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
26 Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
/OK3568_Linux_fs/kernel/arch/mips/include/asm/txx9/
H A Dtx4939.h497 #define TX4939_SCLK0(mst) \ argument
498 ((((mst) + 245/2) / 245UL * 429 * 16 + 19) / 19 / 2)
/OK3568_Linux_fs/kernel/drivers/gpu/drm/radeon/
H A Dradeon_dp_mst.c164 static int radeon_dp_mst_set_vcp_size(struct radeon_encoder *mst, s64 avg_time_slots_per_mtp) in radeon_dp_mst_set_vcp_size() argument
166 struct drm_device *dev = mst->base.dev; in radeon_dp_mst_set_vcp_size()
168 struct radeon_encoder_mst *mst_enc = mst->enc_priv; in radeon_dp_mst_set_vcp_size()

12