| /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);
|
| /linux/drivers/gpu/drm/i915/display/ |
| H A D | intel_dp_mst.c | 115 return intel_dp->mst.active_streams; in intel_dp_mst_active_streams() 123 intel_dp->mst.active_streams, intel_dp->mst.active_streams - 1); in intel_dp_mst_dec_active_streams() 125 if (drm_WARN_ON(display->drm, intel_dp->mst.active_streams == 0)) in intel_dp_mst_dec_active_streams() 128 return --intel_dp->mst.active_streams == 0; in intel_dp_mst_dec_active_streams() 136 intel_dp->mst.active_streams, intel_dp->mst.active_streams + 1); in intel_dp_mst_inc_active_streams() 138 return intel_dp->mst.active_streams++ == 0; in intel_dp_mst_inc_active_streams() 276 mst_state = drm_atomic_get_mst_topology_state(state, &intel_dp->mst.mgr); in intel_dp_mtp_tu_compute_config() 396 slots = drm_dp_atomic_find_time_slots(state, &intel_dp->mst.mgr, in intel_dp_mtp_tu_compute_config() 397 connector->mst.port, in intel_dp_mtp_tu_compute_config() 497 bool is_uhbr_sink = connector->mst.dp && in hblank_expansion_quirk_needs_dsc() [all …]
|
| H A D | intel_connector.c | 148 if (intel_connector->mst.port) in intel_connector_destroy() 149 drm_dp_mst_put_port_malloc(intel_connector->mst.port); in intel_connector_destroy()
|
| /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 …]
|
| /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); 336 outp->dp.lt.mst, in nouveau_dp_train_link() 405 nouveau_dp_train(struct nouveau_encoder *outp, bool mst, u32 khz, u8 bpc) in nouveau_dp_train() argument 413 if (mst) in nouveau_dp_train() 419 outp->base.base.name, mst, min_rate); in nouveau_dp_train() 436 outp->dp.lt.mst = mst; in nouveau_dp_train()
|
| H A D | nouveau_encoder.h | 94 bool mst; member 159 bool nouveau_dp_train(struct nouveau_encoder *, bool mst, u32 khz, u8 bpc);
|
| /linux/drivers/i2c/busses/ |
| H A D | i2c-mlxbf.c | 415 struct mlxbf_i2c_resource *mst; 533 readl_poll_timeout_atomic(priv->mst->io + MLXBF_I2C_SMBUS_MASTER_GW, in mlxbf_i2c_smbus_check_status() 546 master_status_bits = readl(priv->mst->io + in mlxbf_i2c_smbus_check_status() 590 iowrite32be(data32, priv->mst->io + addr + offset); in mlxbf_i2c_smbus_write_data() 615 data32 = ioread32be(priv->mst->io + addr + offset); in mlxbf_i2c_smbus_read_data() 625 data32 = ioread32be(priv->mst->io + addr + offset); in mlxbf_i2c_smbus_read_data() 656 writel(0x0, priv->mst->io + MLXBF_I2C_SMBUS_MASTER_STATUS); in mlxbf_i2c_smbus_enable() 660 writel(0x0, priv->mst->io + MLXBF_I2C_SMBUS_MASTER_PEC); in mlxbf_i2c_smbus_enable() 662 writel(0x0, priv->mst->io + priv->chip->smbus_master_rs_bytes_off); in mlxbf_i2c_smbus_enable() 665 writel(command, priv->mst in mlxbf_i2c_smbus_enable() 422 struct mlxbf_i2c_resource *mst; global() member [all...] |
| /linux/drivers/gpu/drm/nouveau/nvif/ |
| H A D | outp.c | 114 u8 link_nr, u32 link_bw, bool mst, bool post_lt_adj, bool retrain) in nvif_outp_dp_train() argument 121 args.mst = mst; in nvif_outp_dp_train() 131 args.retrain, args.mst, args.lttprs, args.post_lt_adj, args.link_nr, in nvif_outp_dp_train() 539 outp->info.dp.mst = args.dp.mst; in nvif_outp_ctor()
|
| /linux/tools/perf/ui/ |
| H A D | hist.c | 157 struct hist_entry *he, enum mem_stat_type mst, in hpp__fmt_mem_stat() argument 168 if (hists->mem_stat_types[i] == mst) { in hpp__fmt_mem_stat() 419 enum mem_stat_type mst = hpp__mem_stat_type(fmt); in hpp__header_mem_stat_fn() local 423 if (hists->mem_stat_types[i] == mst) { in hpp__header_mem_stat_fn() 466 mem_stat_name(mst, i)); in hpp__header_mem_stat_fn() 1240 enum mem_stat_type mst[16]; in perf_hpp__alloc_mem_stats() local 1247 assert(nr_mem_stats < ARRAY_SIZE(mst)); in perf_hpp__alloc_mem_stats() 1248 mst[nr_mem_stats++] = hpp__mem_stat_type(fmt); in perf_hpp__alloc_mem_stats() 1269 memcpy(hists->mem_stat_types, mst, nr_mem_stats * sizeof(*mst)); in perf_hpp__alloc_mem_stats()
|
| /linux/drivers/gpu/drm/nouveau/include/nvif/ |
| H A D | outp.h | 44 bool mst; member 108 u8 lttprs, u8 link_nr, u32 link_bw, bool mst, bool post_lt_adj,
|
| H A D | if0012.h | 35 __u8 mst; member 238 __u8 mst; member
|
| /linux/tools/perf/util/ |
| H A D | mem-events.h | 146 int mem_stat_index(const enum mem_stat_type mst, const u64 data_src); 147 const char *mem_stat_name(const enum mem_stat_type mst, const int idx);
|
| /linux/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
| H A D | outp.h | 38 bool mst; member 60 bool mst; member
|
| /linux/drivers/net/dsa/mv88e6xxx/ |
| H A D | chip.c | 1948 struct mv88e6xxx_mst *mst; in mv88e6xxx_sid_get() local 1952 list_for_each_entry(mst, &chip->msts, node) in mv88e6xxx_sid_get() 1953 __set_bit(mst->stu.sid, busy); in mv88e6xxx_sid_get() 1962 struct mv88e6xxx_mst *mst, *tmp; in mv88e6xxx_mst_put() local 1977 list_for_each_entry_safe(mst, tmp, &chip->msts, node) { in mv88e6xxx_mst_put() 1978 if (mst->stu.sid != sid) in mv88e6xxx_mst_put() 1981 if (!refcount_dec_and_test(&mst->refcnt)) in mv88e6xxx_mst_put() 1984 mst->stu.valid = false; in mv88e6xxx_mst_put() 1985 err = mv88e6xxx_stu_loadpurge(chip, &mst->stu); in mv88e6xxx_mst_put() 1987 refcount_set(&mst->refcnt, 1); in mv88e6xxx_mst_put() [all …]
|
| /linux/Documentation/sound/hd-audio/ |
| H A D | index.rst | 10 dp-mst
|
| /linux/drivers/w1/ |
| H A D | w1_int.c | 149 msg.id.mst.id = dev->id; in w1_add_master_device() 208 msg.id.mst.id = dev->id; in __w1_remove_master_device()
|
| H A D | w1_netlink.h | 74 } mst; member
|
| /linux/arch/arm/boot/dts/sigmastar/ |
| H A D | mstar-v7.dtsi | 130 compatible = "mstar,mst-intc"; 139 compatible = "mstar,mst-intc";
|
| /linux/drivers/gpu/drm/ci/xfails/ |
| H A D | mediatek-mt8173-skips.txt | 23 kms_display_modes@mst-extended-mode-negative
|
| H A D | mediatek-mt8183-skips.txt | 23 kms_display_modes@mst-extended-mode-negative
|
| H A D | rockchip-rk3399-skips.txt | 26 kms_display_modes@mst-extended-mode-negative
|
| H A D | virtio_gpu-none-skips.txt | 31 kms_display_modes@mst-extended-mode-negative
|