/linux-6.1.9/drivers/memory/tegra/ |
D | mc.c | 57 struct tegra_mc *mc = data; in tegra_mc_devm_action_put_device() local 59 put_device(mc->dev); in tegra_mc_devm_action_put_device() 75 struct tegra_mc *mc; in devm_tegra_memory_controller_get() local 87 mc = platform_get_drvdata(pdev); in devm_tegra_memory_controller_get() 88 if (!mc) { in devm_tegra_memory_controller_get() 93 err = devm_add_action_or_reset(dev, tegra_mc_devm_action_put_device, mc); in devm_tegra_memory_controller_get() 97 return mc; in devm_tegra_memory_controller_get() 101 int tegra_mc_probe_device(struct tegra_mc *mc, struct device *dev) in tegra_mc_probe_device() argument 103 if (mc->soc->ops && mc->soc->ops->probe_device) in tegra_mc_probe_device() 104 return mc->soc->ops->probe_device(mc, dev); in tegra_mc_probe_device() [all …]
|
D | tegra20.c | 74 const struct tegra_mc *mc; member 278 static int tegra20_mc_hotreset_assert(struct tegra_mc *mc, in tegra20_mc_hotreset_assert() argument 284 spin_lock_irqsave(&mc->lock, flags); in tegra20_mc_hotreset_assert() 286 value = mc_readl(mc, rst->reset); in tegra20_mc_hotreset_assert() 287 mc_writel(mc, value & ~BIT(rst->bit), rst->reset); in tegra20_mc_hotreset_assert() 289 spin_unlock_irqrestore(&mc->lock, flags); in tegra20_mc_hotreset_assert() 294 static int tegra20_mc_hotreset_deassert(struct tegra_mc *mc, in tegra20_mc_hotreset_deassert() argument 300 spin_lock_irqsave(&mc->lock, flags); in tegra20_mc_hotreset_deassert() 302 value = mc_readl(mc, rst->reset); in tegra20_mc_hotreset_deassert() 303 mc_writel(mc, value | BIT(rst->bit), rst->reset); in tegra20_mc_hotreset_deassert() [all …]
|
D | Makefile | 2 tegra-mc-y := mc.o 4 tegra-mc-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra20.o 5 tegra-mc-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra30.o 6 tegra-mc-$(CONFIG_ARCH_TEGRA_114_SOC) += tegra114.o 7 tegra-mc-$(CONFIG_ARCH_TEGRA_124_SOC) += tegra124.o 8 tegra-mc-$(CONFIG_ARCH_TEGRA_132_SOC) += tegra124.o 9 tegra-mc-$(CONFIG_ARCH_TEGRA_210_SOC) += tegra210.o 10 tegra-mc-$(CONFIG_ARCH_TEGRA_186_SOC) += tegra186.o 11 tegra-mc-$(CONFIG_ARCH_TEGRA_194_SOC) += tegra186.o tegra194.o 12 tegra-mc-$(CONFIG_ARCH_TEGRA_234_SOC) += tegra186.o tegra234.o [all …]
|
/linux-6.1.9/drivers/crypto/amlogic/ |
D | amlogic-gxl-core.c | 25 struct meson_dev *mc = (struct meson_dev *)data; in meson_irq_handler() local 30 if (mc->irqs[flow] == irq) { in meson_irq_handler() 31 p = readl(mc->base + ((0x04 + flow) << 2)); in meson_irq_handler() 33 writel_relaxed(0xF, mc->base + ((0x4 + flow) << 2)); in meson_irq_handler() 34 mc->chanlist[flow].status = 1; in meson_irq_handler() 35 complete(&mc->chanlist[flow].complete); in meson_irq_handler() 38 dev_err(mc->dev, "%s %d Got irq for flow %d but ctrl is empty\n", __func__, irq, flow); in meson_irq_handler() 42 dev_err(mc->dev, "%s %d from unknown irq\n", __func__, irq); in meson_irq_handler() 103 struct meson_dev *mc = seq->private; in meson_debugfs_show() local 107 seq_printf(seq, "Channel %d: nreq %lu\n", i, mc->chanlist[i].stat_req); in meson_debugfs_show() [all …]
|
D | amlogic-gxl-cipher.c | 20 static int get_engine_number(struct meson_dev *mc) in get_engine_number() argument 22 return atomic_inc_return(&mc->flow) % MAXFLOW; in get_engine_number() 89 struct meson_dev *mc = op->mc; in meson_cipher() local 106 dev_dbg(mc->dev, "%s %s %u %x IV(%u) key=%u flow=%d\n", __func__, in meson_cipher() 114 mc->chanlist[flow].stat_req++; in meson_cipher() 132 dev_err(mc->dev, "invalid ivsize=%d vs len=%d\n", ivsize, areq->cryptlen); in meson_cipher() 152 phykeyiv = dma_map_single(mc->dev, bkeyiv, keyivlen, in meson_cipher() 154 err = dma_mapping_error(mc->dev, phykeyiv); in meson_cipher() 156 dev_err(mc->dev, "Cannot DMA MAP KEY IV\n"); in meson_cipher() 164 desc = &mc->chanlist[flow].tl[tloffset]; in meson_cipher() [all …]
|
/linux-6.1.9/drivers/gpio/ |
D | gpio-mc33880.c | 43 static int mc33880_write_config(struct mc33880 *mc) in mc33880_write_config() argument 45 return spi_write(mc->spi, &mc->port_config, sizeof(mc->port_config)); in mc33880_write_config() 49 static int __mc33880_set(struct mc33880 *mc, unsigned offset, int value) in __mc33880_set() argument 52 mc->port_config |= 1 << offset; in __mc33880_set() 54 mc->port_config &= ~(1 << offset); in __mc33880_set() 56 return mc33880_write_config(mc); in __mc33880_set() 62 struct mc33880 *mc = gpiochip_get_data(chip); in mc33880_set() local 64 mutex_lock(&mc->lock); in mc33880_set() 66 __mc33880_set(mc, offset, value); in mc33880_set() 68 mutex_unlock(&mc->lock); in mc33880_set() [all …]
|
/linux-6.1.9/drivers/gpu/drm/nouveau/nvkm/subdev/mc/ |
D | base.c | 32 struct nvkm_mc *mc = device->mc; in nvkm_mc_unk260() local 33 if (likely(mc) && mc->func->unk260) in nvkm_mc_unk260() 34 mc->func->unk260(mc, data); in nvkm_mc_unk260() 40 struct nvkm_mc *mc = device->mc; in nvkm_mc_intr_mask() local 42 if (likely(mc) && mc->func->intr_mask) { in nvkm_mc_intr_mask() 44 for (map = mc->func->intr; !mask && map->stat; map++) { in nvkm_mc_intr_mask() 48 mc->func->intr_mask(mc, mask, en ? mask : 0); in nvkm_mc_intr_mask() 55 struct nvkm_mc *mc = device->mc; in nvkm_mc_intr_unarm() local 56 if (likely(mc)) in nvkm_mc_intr_unarm() 57 mc->func->intr_unarm(mc); in nvkm_mc_intr_unarm() [all …]
|
D | tu102.c | 33 tu102_mc_intr_update(struct tu102_mc *mc) in tu102_mc_intr_update() argument 35 struct nvkm_device *device = mc->base.subdev.device; in tu102_mc_intr_update() 36 u32 mask = mc->intr ? mc->mask : 0, i; in tu102_mc_intr_update() 52 struct tu102_mc *mc = tu102_mc(base); in tu102_mc_intr_unarm() local 55 spin_lock_irqsave(&mc->lock, flags); in tu102_mc_intr_unarm() 56 mc->intr = false; in tu102_mc_intr_unarm() 57 tu102_mc_intr_update(mc); in tu102_mc_intr_unarm() 58 spin_unlock_irqrestore(&mc->lock, flags); in tu102_mc_intr_unarm() 64 struct tu102_mc *mc = tu102_mc(base); in tu102_mc_intr_rearm() local 67 spin_lock_irqsave(&mc->lock, flags); in tu102_mc_intr_rearm() [all …]
|
D | gp100.c | 35 gp100_mc_intr_update(struct gp100_mc *mc) in gp100_mc_intr_update() argument 37 struct nvkm_device *device = mc->base.subdev.device; in gp100_mc_intr_update() 38 u32 mask = mc->intr ? mc->mask : 0, i; in gp100_mc_intr_update() 48 struct gp100_mc *mc = gp100_mc(base); in gp100_mc_intr_unarm() local 50 spin_lock_irqsave(&mc->lock, flags); in gp100_mc_intr_unarm() 51 mc->intr = false; in gp100_mc_intr_unarm() 52 gp100_mc_intr_update(mc); in gp100_mc_intr_unarm() 53 spin_unlock_irqrestore(&mc->lock, flags); in gp100_mc_intr_unarm() 59 struct gp100_mc *mc = gp100_mc(base); in gp100_mc_intr_rearm() local 61 spin_lock_irqsave(&mc->lock, flags); in gp100_mc_intr_rearm() [all …]
|
D | Kbuild | 2 nvkm-y += nvkm/subdev/mc/base.o 3 nvkm-y += nvkm/subdev/mc/nv04.o 4 nvkm-y += nvkm/subdev/mc/nv11.o 5 nvkm-y += nvkm/subdev/mc/nv17.o 6 nvkm-y += nvkm/subdev/mc/nv44.o 7 nvkm-y += nvkm/subdev/mc/nv50.o 8 nvkm-y += nvkm/subdev/mc/g84.o 9 nvkm-y += nvkm/subdev/mc/g98.o 10 nvkm-y += nvkm/subdev/mc/gt215.o 11 nvkm-y += nvkm/subdev/mc/gf100.o [all …]
|
D | ga100.c | 25 ga100_mc_intr_unarm(struct nvkm_mc *mc) in ga100_mc_intr_unarm() argument 27 nvkm_wr32(mc->subdev.device, 0xb81610, 0x00000004); in ga100_mc_intr_unarm() 31 ga100_mc_intr_rearm(struct nvkm_mc *mc) in ga100_mc_intr_rearm() argument 33 nvkm_wr32(mc->subdev.device, 0xb81608, 0x00000004); in ga100_mc_intr_rearm() 37 ga100_mc_intr_mask(struct nvkm_mc *mc, u32 mask, u32 intr) in ga100_mc_intr_mask() argument 39 nvkm_wr32(mc->subdev.device, 0xb81210, mask & intr ); in ga100_mc_intr_mask() 40 nvkm_wr32(mc->subdev.device, 0xb81410, mask & ~(mask & intr)); in ga100_mc_intr_mask() 44 ga100_mc_intr_stat(struct nvkm_mc *mc) in ga100_mc_intr_stat() argument 46 u32 intr_top = nvkm_rd32(mc->subdev.device, 0xb81600), intr = 0x00000000; in ga100_mc_intr_stat() 48 intr = nvkm_mask(mc->subdev.device, 0xb81010, 0x00000000, 0x00000000); in ga100_mc_intr_stat() [all …]
|
/linux-6.1.9/sound/soc/ |
D | soc-ops.c | 177 struct soc_mixer_control *mc = in snd_soc_info_volsw() local 182 max = uinfo->value.integer.max = mc->max - mc->min; in snd_soc_info_volsw() 183 if (mc->platform_max && mc->platform_max < max) in snd_soc_info_volsw() 184 max = mc->platform_max; in snd_soc_info_volsw() 197 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1; in snd_soc_info_volsw() 221 struct soc_mixer_control *mc = in snd_soc_info_volsw_sx() local 225 if (mc->platform_max) in snd_soc_info_volsw_sx() 226 max = mc->platform_max; in snd_soc_info_volsw_sx() 228 max = mc->max; in snd_soc_info_volsw_sx() 235 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1; in snd_soc_info_volsw_sx() [all …]
|
/linux-6.1.9/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_gmc.c | 201 void amdgpu_gmc_vram_location(struct amdgpu_device *adev, struct amdgpu_gmc *mc, in amdgpu_gmc_vram_location() argument 206 mc->vram_start = base; in amdgpu_gmc_vram_location() 207 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1; in amdgpu_gmc_vram_location() 208 if (limit && limit < mc->real_vram_size) in amdgpu_gmc_vram_location() 209 mc->real_vram_size = limit; in amdgpu_gmc_vram_location() 211 if (mc->xgmi.num_physical_nodes == 0) { in amdgpu_gmc_vram_location() 212 mc->fb_start = mc->vram_start; in amdgpu_gmc_vram_location() 213 mc->fb_end = mc->vram_end; in amdgpu_gmc_vram_location() 216 mc->mc_vram_size >> 20, mc->vram_start, in amdgpu_gmc_vram_location() 217 mc->vram_end, mc->real_vram_size >> 20); in amdgpu_gmc_vram_location() [all …]
|
/linux-6.1.9/drivers/net/can/usb/peak_usb/ |
D | pcan_usb.c | 404 static int pcan_usb_update_ts(struct pcan_usb_msg_context *mc) in pcan_usb_update_ts() argument 406 if ((mc->ptr + 2) > mc->end) in pcan_usb_update_ts() 409 mc->ts16 = get_unaligned_le16(mc->ptr); in pcan_usb_update_ts() 411 if (mc->rec_idx > 0) in pcan_usb_update_ts() 412 peak_usb_update_ts_now(&mc->pdev->time_ref, mc->ts16); in pcan_usb_update_ts() 414 peak_usb_set_ts_now(&mc->pdev->time_ref, mc->ts16); in pcan_usb_update_ts() 422 static int pcan_usb_decode_ts(struct pcan_usb_msg_context *mc, u8 first_packet) in pcan_usb_decode_ts() argument 426 if ((mc->ptr + 2) > mc->end) in pcan_usb_decode_ts() 429 mc->ts16 = get_unaligned_le16(mc->ptr); in pcan_usb_decode_ts() 430 mc->prev_ts8 = mc->ts16 & 0x00ff; in pcan_usb_decode_ts() [all …]
|
/linux-6.1.9/drivers/dma/ |
D | milbeaut-hdmac.c | 97 milbeaut_hdmac_next_desc(struct milbeaut_hdmac_chan *mc) in milbeaut_hdmac_next_desc() argument 101 vd = vchan_next_desc(&mc->vc); in milbeaut_hdmac_next_desc() 103 mc->md = NULL; in milbeaut_hdmac_next_desc() 109 mc->md = to_milbeaut_hdmac_desc(vd); in milbeaut_hdmac_next_desc() 111 return mc->md; in milbeaut_hdmac_next_desc() 115 static void milbeaut_chan_start(struct milbeaut_hdmac_chan *mc, in milbeaut_chan_start() argument 128 width = mc->cfg.dst_addr_width; in milbeaut_chan_start() 129 burst = mc->cfg.dst_maxburst; in milbeaut_chan_start() 131 dest_addr = mc->cfg.dst_addr; in milbeaut_chan_start() 134 width = mc->cfg.src_addr_width; in milbeaut_chan_start() [all …]
|
D | uniphier-mdmac.c | 88 uniphier_mdmac_next_desc(struct uniphier_mdmac_chan *mc) in uniphier_mdmac_next_desc() argument 92 vd = vchan_next_desc(&mc->vc); in uniphier_mdmac_next_desc() 94 mc->md = NULL; in uniphier_mdmac_next_desc() 100 mc->md = to_uniphier_mdmac_desc(vd); in uniphier_mdmac_next_desc() 102 return mc->md; in uniphier_mdmac_next_desc() 106 static void uniphier_mdmac_handle(struct uniphier_mdmac_chan *mc, in uniphier_mdmac_handle() argument 109 struct uniphier_mdmac_device *mdev = mc->mdev; in uniphier_mdmac_handle() 130 writel(src_mode, mc->reg_ch_base + UNIPHIER_MDMAC_CH_SRC_MODE); in uniphier_mdmac_handle() 131 writel(dest_mode, mc->reg_ch_base + UNIPHIER_MDMAC_CH_DEST_MODE); in uniphier_mdmac_handle() 132 writel(src_addr, mc->reg_ch_base + UNIPHIER_MDMAC_CH_SRC_ADDR); in uniphier_mdmac_handle() [all …]
|
D | milbeaut-xdmac.c | 94 milbeaut_xdmac_next_desc(struct milbeaut_xdmac_chan *mc) in milbeaut_xdmac_next_desc() argument 98 vd = vchan_next_desc(&mc->vc); in milbeaut_xdmac_next_desc() 100 mc->md = NULL; in milbeaut_xdmac_next_desc() 106 mc->md = to_milbeaut_xdmac_desc(vd); in milbeaut_xdmac_next_desc() 108 return mc->md; in milbeaut_xdmac_next_desc() 112 static void milbeaut_chan_start(struct milbeaut_xdmac_chan *mc, in milbeaut_chan_start() argument 119 writel_relaxed(val, mc->reg_ch_base + M10V_XDTBC); in milbeaut_chan_start() 122 writel_relaxed(val, mc->reg_ch_base + M10V_XDSSA); in milbeaut_chan_start() 125 writel_relaxed(val, mc->reg_ch_base + M10V_XDDSA); in milbeaut_chan_start() 127 val = readl_relaxed(mc->reg_ch_base + M10V_XDSAC); in milbeaut_chan_start() [all …]
|
/linux-6.1.9/arch/x86/kernel/cpu/microcode/ |
D | intel.c | 51 static int find_matching_signature(void *mc, unsigned int csig, int cpf) in find_matching_signature() argument 53 struct microcode_header_intel *mc_hdr = mc; in find_matching_signature() 65 ext_hdr = mc + get_datasize(mc_hdr) + MC_HEADER_SIZE; in find_matching_signature() 79 static int has_newer_microcode(void *mc, unsigned int csig, int cpf, int new_rev) in has_newer_microcode() argument 81 struct microcode_header_intel *mc_hdr = mc; in has_newer_microcode() 86 return find_matching_signature(mc, csig, cpf); in has_newer_microcode() 166 static int microcode_sanity_check(void *mc, int print_err) in microcode_sanity_check() argument 169 struct microcode_header_intel *mc_header = mc; in microcode_sanity_check() 201 ext_header = mc + MC_HEADER_SIZE + data_size; in microcode_sanity_check() 235 orig_sum += ((u32 *)mc)[i]; in microcode_sanity_check() [all …]
|
/linux-6.1.9/include/soc/tegra/ |
D | mc.h | 101 struct tegra_mc *mc); 106 struct tegra_mc *mc) in tegra_smmu_probe() argument 117 struct gart_device *tegra_gart_probe(struct device *dev, struct tegra_mc *mc); 122 tegra_gart_probe(struct device *dev, struct tegra_mc *mc) in tegra_gart_probe() argument 148 int (*hotreset_assert)(struct tegra_mc *mc, 150 int (*hotreset_deassert)(struct tegra_mc *mc, 152 int (*block_dma)(struct tegra_mc *mc, 154 bool (*dma_idling)(struct tegra_mc *mc, 156 int (*unblock_dma)(struct tegra_mc *mc, 158 int (*reset_status)(struct tegra_mc *mc, [all …]
|
/linux-6.1.9/arch/powerpc/platforms/powernv/ |
D | opal-msglog.c | 34 ssize_t memcons_copy(struct memcons *mc, char *to, loff_t pos, size_t count) in memcons_copy() argument 41 if (!mc) in memcons_copy() 44 out_pos = be32_to_cpu(READ_ONCE(mc->out_pos)); in memcons_copy() 50 conbuf = phys_to_virt(be64_to_cpu(mc->obuf_phys)); in memcons_copy() 58 avail = be32_to_cpu(mc->obuf_size) - out_pos; in memcons_copy() 76 if (out_pos > be32_to_cpu(mc->obuf_size)) { in memcons_copy() 111 struct memcons *mc; in memcons_init() local 119 mc = phys_to_virt(mcaddr); in memcons_init() 120 if (!mc) { in memcons_init() 125 if (be64_to_cpu(mc->magic) != MEMCONS_MAGIC) { in memcons_init() [all …]
|
/linux-6.1.9/drivers/media/mc/ |
D | Makefile | 3 mc-objs := mc-device.o mc-devnode.o mc-entity.o \ 4 mc-request.o 7 mc-objs += mc-dev-allocator.o 10 obj-$(CONFIG_MEDIA_SUPPORT) += mc.o
|
/linux-6.1.9/drivers/gpu/drm/radeon/ |
D | r520.c | 97 rdev->mc.vram_width = 128; in r520_vram_get_type() 98 rdev->mc.vram_is_ddr = true; in r520_vram_get_type() 102 rdev->mc.vram_width = 32; in r520_vram_get_type() 105 rdev->mc.vram_width = 64; in r520_vram_get_type() 108 rdev->mc.vram_width = 128; in r520_vram_get_type() 111 rdev->mc.vram_width = 256; in r520_vram_get_type() 114 rdev->mc.vram_width = 128; in r520_vram_get_type() 118 rdev->mc.vram_width *= 2; in r520_vram_get_type() 126 radeon_vram_location(rdev, &rdev->mc, 0); in r520_mc_init() 127 rdev->mc.gtt_base_align = 0; in r520_mc_init() [all …]
|
/linux-6.1.9/drivers/clk/mediatek/ |
D | clk-mtk.c | 200 static struct clk_hw *mtk_clk_register_composite(const struct mtk_composite *mc, in mtk_clk_register_composite() argument 214 if (mc->mux_shift >= 0) { in mtk_clk_register_composite() 219 mux->reg = base + mc->mux_reg; in mtk_clk_register_composite() 220 mux->mask = BIT(mc->mux_width) - 1; in mtk_clk_register_composite() 221 mux->shift = mc->mux_shift; in mtk_clk_register_composite() 223 mux->flags = mc->mux_flags; in mtk_clk_register_composite() 227 parent_names = mc->parent_names; in mtk_clk_register_composite() 228 num_parents = mc->num_parents; in mtk_clk_register_composite() 230 parent = mc->parent; in mtk_clk_register_composite() 235 if (mc->gate_shift >= 0) { in mtk_clk_register_composite() [all …]
|
/linux-6.1.9/arch/x86/um/shared/sysdep/ |
D | mcontext.h | 13 #define GET_FAULTINFO_FROM_MC(fi, mc) \ argument 15 (fi).cr2 = (mc)->cr2; \ 16 (fi).error_code = (mc)->gregs[REG_ERR]; \ 17 (fi).trap_no = (mc)->gregs[REG_TRAPNO]; \ 22 #define GET_FAULTINFO_FROM_MC(fi, mc) \ argument 24 (fi).cr2 = (mc)->gregs[REG_CR2]; \ 25 (fi).error_code = (mc)->gregs[REG_ERR]; \ 26 (fi).trap_no = (mc)->gregs[REG_TRAPNO]; \
|
/linux-6.1.9/drivers/slimbus/ |
D | slimbus.h | 130 u8 mc; member 140 #define DEFINE_SLIM_LDEST_TXN(name, mc, rl, la, msg) \ argument 141 struct slim_msg_txn name = { rl, 0, mc, SLIM_MSG_DEST_LOGICALADDR, 0,\ 144 #define DEFINE_SLIM_BCAST_TXN(name, mc, rl, la, msg) \ argument 145 struct slim_msg_txn name = { rl, 0, mc, SLIM_MSG_DEST_BROADCAST, 0,\ 148 #define DEFINE_SLIM_EDEST_TXN(name, mc, rl, la, msg) \ argument 149 struct slim_msg_txn name = { rl, 0, mc, SLIM_MSG_DEST_ENUMADDR, 0,\ 436 static inline bool slim_tid_txn(u8 mt, u8 mc) in slim_tid_txn() argument 439 (mc == SLIM_MSG_MC_REQUEST_INFORMATION || in slim_tid_txn() 440 mc == SLIM_MSG_MC_REQUEST_CLEAR_INFORMATION || in slim_tid_txn() [all …]
|