/openbmc/linux/drivers/media/dvb-frontends/ |
H A D | dibx000_common.c | 20 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 D | dibx000_common.h | 40 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);
|
/openbmc/u-boot/fs/ubifs/ |
H A D | sb.c | 73 struct ubifs_mst_node *mst; in create_default_filesystem() local 202 mst = kzalloc(c->mst_node_alsz, GFP_KERNEL); in create_default_filesystem() 203 if (!mst) in create_default_filesystem() 206 mst->ch.node_type = UBIFS_MST_NODE; in create_default_filesystem() 207 mst->log_lnum = cpu_to_le32(UBIFS_LOG_LNUM); in create_default_filesystem() 208 mst->highest_inum = cpu_to_le64(UBIFS_FIRST_INO); in create_default_filesystem() 209 mst->cmt_no = 0; in create_default_filesystem() 210 mst->root_lnum = cpu_to_le32(main_first + DEFAULT_IDX_LEB); in create_default_filesystem() 211 mst->root_offs = 0; in create_default_filesystem() 213 mst->root_len = cpu_to_le32(tmp); in create_default_filesystem() [all …]
|
H A D | recovery.c | 102 struct ubifs_mst_node **mst, void **cor) in get_master_node() argument 157 *mst = buf; in get_master_node() 184 *mst = NULL; in get_master_node() 197 struct ubifs_mst_node *mst) in write_rcvrd_mst_node() argument 204 save_flags = mst->flags; in write_rcvrd_mst_node() 205 mst->flags |= cpu_to_le32(UBIFS_MST_RCVRY); in write_rcvrd_mst_node() 207 ubifs_prepare_node(c, mst, UBIFS_MST_NODE_SZ, 1); in write_rcvrd_mst_node() 208 err = ubifs_leb_change(c, lnum, mst, sz); in write_rcvrd_mst_node() 211 err = ubifs_leb_change(c, lnum + 1, mst, sz); in write_rcvrd_mst_node() 215 mst->flags = save_flags; in write_rcvrd_mst_node() [all …]
|
H A D | debug.c | 367 const struct ubifs_mst_node *mst = node; in ubifs_dump_node() local 370 (unsigned long long)le64_to_cpu(mst->highest_inum)); in ubifs_dump_node() 372 (unsigned long long)le64_to_cpu(mst->cmt_no)); in ubifs_dump_node() 373 pr_err("\tflags %#x\n", le32_to_cpu(mst->flags)); in ubifs_dump_node() 374 pr_err("\tlog_lnum %u\n", le32_to_cpu(mst->log_lnum)); in ubifs_dump_node() 375 pr_err("\troot_lnum %u\n", le32_to_cpu(mst->root_lnum)); in ubifs_dump_node() 376 pr_err("\troot_offs %u\n", le32_to_cpu(mst->root_offs)); in ubifs_dump_node() 377 pr_err("\troot_len %u\n", le32_to_cpu(mst->root_len)); in ubifs_dump_node() 378 pr_err("\tgc_lnum %u\n", le32_to_cpu(mst->gc_lnum)); in ubifs_dump_node() 379 pr_err("\tihead_lnum %u\n", le32_to_cpu(mst->ihead_lnum)); in ubifs_dump_node() [all …]
|
/openbmc/linux/fs/ubifs/ |
H A D | sb.c | 78 struct ubifs_mst_node *mst; in create_default_filesystem() local 164 mst = kzalloc(c->mst_node_alsz, GFP_KERNEL); in create_default_filesystem() 170 if (!sup || !mst || !idx || !ino || !cs) { in create_default_filesystem() 227 mst->ch.node_type = UBIFS_MST_NODE; in create_default_filesystem() 228 mst->log_lnum = cpu_to_le32(UBIFS_LOG_LNUM); in create_default_filesystem() 229 mst->highest_inum = cpu_to_le64(UBIFS_FIRST_INO); in create_default_filesystem() 230 mst->cmt_no = 0; in create_default_filesystem() 231 mst->root_lnum = cpu_to_le32(main_first + DEFAULT_IDX_LEB); in create_default_filesystem() 232 mst->root_offs = 0; in create_default_filesystem() 234 mst->root_len = cpu_to_le32(tmp); in create_default_filesystem() [all …]
|
H A D | recovery.c | 98 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 D | debug.c | 389 const struct ubifs_mst_node *mst = node; in ubifs_dump_node() local 392 (unsigned long long)le64_to_cpu(mst->highest_inum)); in ubifs_dump_node() 394 (unsigned long long)le64_to_cpu(mst->cmt_no)); in ubifs_dump_node() 395 pr_err("\tflags %#x\n", le32_to_cpu(mst->flags)); in ubifs_dump_node() 396 pr_err("\tlog_lnum %u\n", le32_to_cpu(mst->log_lnum)); in ubifs_dump_node() 397 pr_err("\troot_lnum %u\n", le32_to_cpu(mst->root_lnum)); in ubifs_dump_node() 398 pr_err("\troot_offs %u\n", le32_to_cpu(mst->root_offs)); in ubifs_dump_node() 399 pr_err("\troot_len %u\n", le32_to_cpu(mst->root_len)); in ubifs_dump_node() 400 pr_err("\tgc_lnum %u\n", le32_to_cpu(mst->gc_lnum)); in ubifs_dump_node() 401 pr_err("\tihead_lnum %u\n", le32_to_cpu(mst->ihead_lnum)); in ubifs_dump_node() [all …]
|
/openbmc/openbmc/poky/meta/recipes-connectivity/iproute2/iproute2/ |
H A D | 0002-bridge-mst-fix-a-musl-build-issue.patch | 4 Subject: [PATCH] bridge: mst: fix a musl build issue 21 from mst.c:10: 26 from mst.c:7: 59 bridge/mst.c | 1 + 62 diff --git a/bridge/mst.c b/bridge/mst.c 64 --- a/bridge/mst.c 65 +++ b/bridge/mst.c
|
H A D | 0003-bridge-mst-fix-a-further-musl-build-issue.patch | 4 Subject: [PATCH] bridge: mst: fix a further musl build issue 8 In file included from mst.c:11: 42 bridge/mst.c | 1 + 45 diff --git a/bridge/mst.c b/bridge/mst.c 47 --- a/bridge/mst.c 48 +++ b/bridge/mst.c
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvif/ |
H A D | outp.c | 131 int link_nr, int link_bw, bool hda, bool mst) in nvif_outp_acquire_dp() argument 139 args.dp.mst = mst; in nvif_outp_acquire_dp() 145 args.dp.link_nr, args.dp.link_bw, args.dp.hda, args.dp.mst, args.or, args.link); in nvif_outp_acquire_dp()
|
/openbmc/linux/drivers/i2c/busses/ |
H A D | i2c-mlxbf.c | 418 struct mlxbf_i2c_resource *mst; member 532 if (mlxbf_i2c_poll(priv->mst->io, addr, mask, true, timeout)) in mlxbf_i2c_smbus_master_wait_for_idle() 543 if (mlxbf_i2c_poll(priv->mst->io, MLXBF_I2C_SMBUS_MASTER_GW, in mlxbf_i2c_smbus_master_lock() 554 writel(0, priv->mst->io + MLXBF_I2C_SMBUS_MASTER_GW); in mlxbf_i2c_smbus_master_unlock() 594 mlxbf_i2c_poll(priv->mst->io, MLXBF_I2C_SMBUS_MASTER_GW, in mlxbf_i2c_smbus_check_status() 607 master_status_bits = readl(priv->mst->io + in mlxbf_i2c_smbus_check_status() 651 iowrite32be(data32, priv->mst->io + addr + offset); in mlxbf_i2c_smbus_write_data() 676 data32 = ioread32be(priv->mst->io + addr + offset); in mlxbf_i2c_smbus_read_data() 686 data32 = ioread32be(priv->mst->io + addr + offset); in mlxbf_i2c_smbus_read_data() 714 writel(0x0, priv->mst->io + MLXBF_I2C_SMBUS_MASTER_STATUS); in mlxbf_i2c_smbus_enable() [all …]
|
/openbmc/linux/Documentation/sound/hd-audio/ |
H A D | index.rst | 10 dp-mst
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
H A D | uoutp.c | 150 u8 link_nr, u8 link_bw, bool hda, bool mst) in nvkm_uoutp_mthd_acquire_dp() argument 161 outp->dp.lt.mst = mst; in nvkm_uoutp_mthd_acquire_dp() 240 args->v0.dp.mst != 0); in nvkm_uoutp_mthd_acquire()
|
H A D | dp.c | 475 ior->dp.mst = outp->dp.lt.mst; in nvkm_dp_train() 562 dataKBps, linkKBps, ior->dp.mst, outp->dp.lt.mst); in nvkm_dp_acquire() 563 if (linkKBps < dataKBps || ior->dp.mst != outp->dp.lt.mst) { in nvkm_dp_acquire()
|
H A D | outp.h | 60 bool mst; member
|
/openbmc/linux/drivers/net/dsa/mv88e6xxx/ |
H A D | chip.c | 1863 struct mv88e6xxx_mst *mst; in mv88e6xxx_sid_get() local 1867 list_for_each_entry(mst, &chip->msts, node) in mv88e6xxx_sid_get() 1868 __set_bit(mst->stu.sid, busy); in mv88e6xxx_sid_get() 1877 struct mv88e6xxx_mst *mst, *tmp; in mv88e6xxx_mst_put() local 1883 list_for_each_entry_safe(mst, tmp, &chip->msts, node) { in mv88e6xxx_mst_put() 1884 if (mst->stu.sid != sid) in mv88e6xxx_mst_put() 1887 if (!refcount_dec_and_test(&mst->refcnt)) in mv88e6xxx_mst_put() 1890 mst->stu.valid = false; in mv88e6xxx_mst_put() 1891 err = mv88e6xxx_stu_loadpurge(chip, &mst->stu); in mv88e6xxx_mst_put() 1893 refcount_set(&mst->refcnt, 1); in mv88e6xxx_mst_put() [all …]
|
/openbmc/linux/fs/ntfs/ |
H A D | Makefile | 7 index.o inode.o mft.o mst.o namei.o runlist.o super.o sysctl.o \
|
/openbmc/linux/drivers/w1/ |
H A D | w1_int.c | 153 msg.id.mst.id = dev->id; in w1_add_master_device() 212 msg.id.mst.id = dev->id; in __w1_remove_master_device()
|
H A D | w1_netlink.h | 74 } mst; member
|
/openbmc/linux/arch/arm/boot/dts/sigmastar/ |
H A D | mstar-v7.dtsi | 130 compatible = "mstar,mst-intc"; 139 compatible = "mstar,mst-intc";
|
/openbmc/linux/drivers/gpu/drm/nouveau/include/nvif/ |
H A D | outp.h | 26 int link_nr, int link_bw, bool hda, bool mst);
|
H A D | if0012.h | 66 __u8 mst; member
|
/openbmc/openbmc/poky/meta/recipes-connectivity/iproute2/ |
H A D | iproute2_6.11.0.bb | 19 file://0002-bridge-mst-fix-a-musl-build-issue.patch \ 20 file://0003-bridge-mst-fix-a-further-musl-build-issue.patch \
|
/openbmc/linux/drivers/gpu/drm/nouveau/ |
H A D | nouveau_dp.c | 34 MODULE_PARM_DESC(mst, "Enable DisplayPort multi-stream (default: enabled)"); 36 module_param_named(mst, nouveau_mst, int, 0400);
|