/Linux-v5.15/drivers/mfd/ |
D | si476x-i2c.c | 3 * drivers/mfd/si476x-i2c.c -- Core device driver for si476x MFD 21 #include <linux/mfd/si476x-core.h> 29 * @core: Core device structure 36 static int si476x_core_config_pinmux(struct si476x_core *core) in si476x_core_config_pinmux() argument 39 dev_dbg(&core->client->dev, "Configuring pinmux\n"); in si476x_core_config_pinmux() 40 err = si476x_core_cmd_dig_audio_pin_cfg(core, in si476x_core_config_pinmux() 41 core->pinmux.dclk, in si476x_core_config_pinmux() 42 core->pinmux.dfs, in si476x_core_config_pinmux() 43 core->pinmux.dout, in si476x_core_config_pinmux() 44 core->pinmux.xout); in si476x_core_config_pinmux() [all …]
|
D | wl1273-core.c | 9 #include <linux/mfd/wl1273-core.h> 13 #define DRIVER_DESC "WL1273 FM Radio Core" 21 static int wl1273_fm_read_reg(struct wl1273_core *core, u8 reg, u16 *value) in wl1273_fm_read_reg() argument 23 struct i2c_client *client = core->client; in wl1273_fm_read_reg() 38 static int wl1273_fm_write_cmd(struct wl1273_core *core, u8 cmd, u16 param) in wl1273_fm_write_cmd() argument 40 struct i2c_client *client = core->client; in wl1273_fm_write_cmd() 53 static int wl1273_fm_write_data(struct wl1273_core *core, u8 *data, u16 len) in wl1273_fm_write_data() argument 55 struct i2c_client *client = core->client; in wl1273_fm_write_data() 75 * @core: A pointer to the device struct. 80 static int wl1273_fm_set_audio(struct wl1273_core *core, unsigned int new_mode) in wl1273_fm_set_audio() argument [all …]
|
/Linux-v5.15/drivers/net/wireless/broadcom/b43/ |
D | radio_2055.h | 11 #define B2055_C1_SP_RSSI 0x03 /* SP RSSI Core 1 */ 12 #define B2055_C1_SP_PDMISC 0x04 /* SP PD MISC Core 1 */ 13 #define B2055_C2_SP_RSSI 0x05 /* SP RSSI Core 2 */ 14 #define B2055_C2_SP_PDMISC 0x06 /* SP PD MISC Core 2 */ 15 #define B2055_C1_SP_RXGC1 0x07 /* SP RX GC1 Core 1 */ 16 #define B2055_C1_SP_RXGC2 0x08 /* SP RX GC2 Core 1 */ 17 #define B2055_C2_SP_RXGC1 0x09 /* SP RX GC1 Core 2 */ 18 #define B2055_C2_SP_RXGC2 0x0A /* SP RX GC2 Core 2 */ 19 #define B2055_C1_SP_LPFBWSEL 0x0B /* SP LPF BW select Core 1 */ 20 #define B2055_C2_SP_LPFBWSEL 0x0C /* SP LPF BW select Core 2 */ [all …]
|
/Linux-v5.15/drivers/bcma/ |
D | main.c | 35 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in manuf_show() local 36 return sprintf(buf, "0x%03X\n", core->id.manuf); in manuf_show() 42 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in id_show() local 43 return sprintf(buf, "0x%03X\n", core->id.id); in id_show() 49 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in rev_show() local 50 return sprintf(buf, "0x%02X\n", core->id.rev); in rev_show() 56 struct bcma_device *core = container_of(dev, struct bcma_device, dev); in class_show() local 57 return sprintf(buf, "0x%X\n", core->id.class); in class_show() 89 struct bcma_device *core; in bcma_find_core_unit() local 91 list_for_each_entry(core, &bus->cores, list) { in bcma_find_core_unit() [all …]
|
D | core.c | 3 * Core ops 12 static bool bcma_core_wait_value(struct bcma_device *core, u16 reg, u32 mask, in bcma_core_wait_value() argument 19 val = bcma_aread32(core, reg); in bcma_core_wait_value() 26 bcma_warn(core->bus, "Timeout waiting for register 0x%04X!\n", reg); in bcma_core_wait_value() 31 bool bcma_core_is_enabled(struct bcma_device *core) in bcma_core_is_enabled() argument 33 if ((bcma_aread32(core, BCMA_IOCTL) & (BCMA_IOCTL_CLK | BCMA_IOCTL_FGC)) in bcma_core_is_enabled() 36 if (bcma_aread32(core, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET) in bcma_core_is_enabled() 42 void bcma_core_disable(struct bcma_device *core, u32 flags) in bcma_core_disable() argument 44 if (bcma_aread32(core, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET) in bcma_core_disable() 47 bcma_core_wait_value(core, BCMA_RESET_ST, ~0, 0, 300); in bcma_core_disable() [all …]
|
D | host_pci.c | 14 static void bcma_host_pci_switch_core(struct bcma_device *core) in bcma_host_pci_switch_core() argument 16 int win2 = core->bus->host_is_pcie2 ? in bcma_host_pci_switch_core() 19 pci_write_config_dword(core->bus->host_pci, BCMA_PCI_BAR0_WIN, in bcma_host_pci_switch_core() 20 core->addr); in bcma_host_pci_switch_core() 21 pci_write_config_dword(core->bus->host_pci, win2, core->wrap); in bcma_host_pci_switch_core() 22 core->bus->mapped_core = core; in bcma_host_pci_switch_core() 23 bcma_debug(core->bus, "Switched to core: 0x%X\n", core->id.id); in bcma_host_pci_switch_core() 26 /* Provides access to the requested core. Returns base offset that has to be 28 static u16 bcma_host_pci_provide_access_to_core(struct bcma_device *core) in bcma_host_pci_provide_access_to_core() argument 30 switch (core->id.id) { in bcma_host_pci_provide_access_to_core() [all …]
|
/Linux-v5.15/drivers/media/platform/qcom/venus/ |
D | pm_helpers.c | 18 #include "core.h" 26 static int core_clks_get(struct venus_core *core) in core_clks_get() argument 28 const struct venus_resources *res = core->res; in core_clks_get() 29 struct device *dev = core->dev; in core_clks_get() 33 core->clks[i] = devm_clk_get(dev, res->clks[i]); in core_clks_get() 34 if (IS_ERR(core->clks[i])) in core_clks_get() 35 return PTR_ERR(core->clks[i]); in core_clks_get() 41 static int core_clks_enable(struct venus_core *core) in core_clks_enable() argument 43 const struct venus_resources *res = core->res; in core_clks_enable() 44 const struct freq_tbl *freq_tbl = core->res->freq_tbl; in core_clks_enable() [all …]
|
D | core.c | 23 #include "core.h" 28 static void venus_coredump(struct venus_core *core) in venus_coredump() argument 36 dev = core->dev; in venus_coredump() 37 mem_phys = core->fw.mem_phys; in venus_coredump() 38 mem_size = core->fw.mem_size; in venus_coredump() 55 static void venus_event_notify(struct venus_core *core, u32 event) in venus_event_notify() argument 67 mutex_lock(&core->lock); in venus_event_notify() 68 core->sys_error = true; in venus_event_notify() 69 list_for_each_entry(inst, &core->instances, list) in venus_event_notify() 71 mutex_unlock(&core->lock); in venus_event_notify() [all …]
|
D | hfi.c | 13 #include "core.h" 50 int hfi_core_init(struct venus_core *core) in hfi_core_init() argument 54 mutex_lock(&core->lock); in hfi_core_init() 56 if (core->state >= CORE_INIT) in hfi_core_init() 59 reinit_completion(&core->done); in hfi_core_init() 61 ret = core->ops->core_init(core); in hfi_core_init() 65 ret = wait_for_completion_timeout(&core->done, TIMEOUT); in hfi_core_init() 73 if (core->error != HFI_ERR_NONE) { in hfi_core_init() 78 core->state = CORE_INIT; in hfi_core_init() 80 mutex_unlock(&core->lock); in hfi_core_init() [all …]
|
D | firmware.c | 19 #include "core.h" 27 static void venus_reset_cpu(struct venus_core *core) in venus_reset_cpu() argument 29 u32 fw_size = core->fw.mapped_mem_size; in venus_reset_cpu() 30 void __iomem *wrapper_base = core->wrapper_base; in venus_reset_cpu() 45 int venus_set_hw_state(struct venus_core *core, bool resume) in venus_set_hw_state() argument 49 if (core->use_tz) { in venus_set_hw_state() 57 venus_reset_cpu(core); in venus_set_hw_state() 59 if (!IS_V6(core)) in venus_set_hw_state() 60 writel(1, core->wrapper_base + WRAPPER_A9SS_SW_RESET); in venus_set_hw_state() 66 static int venus_load_fw(struct venus_core *core, const char *fwname, in venus_load_fw() argument [all …]
|
D | hfi_parser.c | 10 #include "core.h" 17 static void init_codecs(struct venus_core *core) in init_codecs() argument 19 struct hfi_plat_caps *caps = core->caps, *cap; in init_codecs() 22 for_each_set_bit(bit, &core->dec_codecs, MAX_CODEC_NUM) { in init_codecs() 23 cap = &caps[core->codecs_count++]; in init_codecs() 29 for_each_set_bit(bit, &core->enc_codecs, MAX_CODEC_NUM) { in init_codecs() 30 cap = &caps[core->codecs_count++]; in init_codecs() 63 parse_alloc_mode(struct venus_core *core, u32 codecs, u32 domain, void *data) in parse_alloc_mode() argument 77 for_each_codec(core->caps, ARRAY_SIZE(core->caps), in parse_alloc_mode() 94 parse_profile_level(struct venus_core *core, u32 codecs, u32 domain, void *data) in parse_profile_level() argument [all …]
|
/Linux-v5.15/tools/perf/tests/ |
D | parse-events.c | 53 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->core.nr_entries); in test__checkevent_tracepoint() 54 TEST_ASSERT_VAL("wrong number of groups", 0 == evlist->core.nr_groups); in test__checkevent_tracepoint() 55 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT == evsel->core.attr.type); in test__checkevent_tracepoint() 57 PERF_TP_SAMPLE_TYPE == evsel->core.attr.sample_type); in test__checkevent_tracepoint() 58 TEST_ASSERT_VAL("wrong sample_period", 1 == evsel->core.attr.sample_period); in test__checkevent_tracepoint() 66 TEST_ASSERT_VAL("wrong number of entries", evlist->core.nr_entries > 1); in test__checkevent_tracepoint_multi() 67 TEST_ASSERT_VAL("wrong number of groups", 0 == evlist->core.nr_groups); in test__checkevent_tracepoint_multi() 71 PERF_TYPE_TRACEPOINT == evsel->core.attr.type); in test__checkevent_tracepoint_multi() 73 PERF_TP_SAMPLE_TYPE == evsel->core.attr.sample_type); in test__checkevent_tracepoint_multi() 75 1 == evsel->core.attr.sample_period); in test__checkevent_tracepoint_multi() [all …]
|
/Linux-v5.15/tools/perf/pmu-events/arch/x86/ |
D | mapfile.csv | 2 GenuineIntel-6-56,v5,broadwellde,core 3 GenuineIntel-6-3D,v17,broadwell,core 4 GenuineIntel-6-47,v17,broadwell,core 5 GenuineIntel-6-4F,v10,broadwellx,core 6 GenuineIntel-6-1C,v4,bonnell,core 7 GenuineIntel-6-26,v4,bonnell,core 8 GenuineIntel-6-27,v4,bonnell,core 9 GenuineIntel-6-36,v4,bonnell,core 10 GenuineIntel-6-35,v4,bonnell,core 11 GenuineIntel-6-5C,v8,goldmont,core [all …]
|
/Linux-v5.15/include/trace/events/ |
D | clk.h | 17 TP_PROTO(struct clk_core *core), 19 TP_ARGS(core), 22 __string( name, core->name ) 26 __assign_str(name, core->name); 34 TP_PROTO(struct clk_core *core), 36 TP_ARGS(core) 41 TP_PROTO(struct clk_core *core), 43 TP_ARGS(core) 48 TP_PROTO(struct clk_core *core), 50 TP_ARGS(core) [all …]
|
/Linux-v5.15/drivers/staging/media/meson/vdec/ |
D | vdec_1.c | 29 struct amvdec_core *core = sess->core; in vdec_1_load_firmware() local 30 struct device *dev = core->dev_dec; in vdec_1_load_firmware() 48 mc_addr = dma_alloc_coherent(core->dev, MC_SIZE, in vdec_1_load_firmware() 57 amvdec_write_dos(core, MPSR, 0); in vdec_1_load_firmware() 58 amvdec_write_dos(core, CPSR, 0); in vdec_1_load_firmware() 60 amvdec_clear_dos_bits(core, MDEC_PIC_DC_CTRL, BIT(31)); in vdec_1_load_firmware() 62 amvdec_write_dos(core, IMEM_DMA_ADR, mc_addr_map); in vdec_1_load_firmware() 63 amvdec_write_dos(core, IMEM_DMA_COUNT, MC_SIZE / 4); in vdec_1_load_firmware() 64 amvdec_write_dos(core, IMEM_DMA_CTRL, (0x8000 | (7 << 16))); in vdec_1_load_firmware() 66 while (--i && amvdec_read_dos(core, IMEM_DMA_CTRL) & 0x8000); in vdec_1_load_firmware() [all …]
|
D | vdec_hevc.c | 29 struct amvdec_core *core = sess->core; in vdec_hevc_load_firmware() local 30 struct device *dev = core->dev_dec; in vdec_hevc_load_firmware() 50 mc_addr = dma_alloc_coherent(core->dev, MC_SIZE, &mc_addr_map, in vdec_hevc_load_firmware() 59 amvdec_write_dos(core, HEVC_MPSR, 0); in vdec_hevc_load_firmware() 60 amvdec_write_dos(core, HEVC_CPSR, 0); in vdec_hevc_load_firmware() 62 amvdec_write_dos(core, HEVC_IMEM_DMA_ADR, mc_addr_map); in vdec_hevc_load_firmware() 63 amvdec_write_dos(core, HEVC_IMEM_DMA_COUNT, MC_SIZE / 4); in vdec_hevc_load_firmware() 64 amvdec_write_dos(core, HEVC_IMEM_DMA_CTRL, (0x8000 | (7 << 16))); in vdec_hevc_load_firmware() 66 while (i && (readl(core->dos_base + HEVC_IMEM_DMA_CTRL) & 0x8000)) in vdec_hevc_load_firmware() 74 dma_free_coherent(core->dev, MC_SIZE, mc_addr, mc_addr_map); in vdec_hevc_load_firmware() [all …]
|
D | codec_mpeg12.c | 53 static int codec_mpeg12_can_recycle(struct amvdec_core *core) in codec_mpeg12_can_recycle() argument 55 return !amvdec_read_dos(core, MREG_BUFFERIN); in codec_mpeg12_can_recycle() 58 static void codec_mpeg12_recycle(struct amvdec_core *core, u32 buf_idx) in codec_mpeg12_recycle() argument 60 amvdec_write_dos(core, MREG_BUFFERIN, buf_idx + 1); in codec_mpeg12_recycle() 65 struct amvdec_core *core = sess->core; in codec_mpeg12_start() local 74 mpeg12->workspace_vaddr = dma_alloc_coherent(core->dev, SIZE_WORKSPACE, in codec_mpeg12_start() 78 dev_err(core->dev, "Failed to request MPEG 1/2 Workspace\n"); in codec_mpeg12_start() 88 amvdec_write_dos(core, POWER_CTL_VLD, BIT(4)); in codec_mpeg12_start() 89 amvdec_write_dos(core, MREG_CO_MV_START, in codec_mpeg12_start() 92 amvdec_write_dos(core, MPEG1_2_REG, 0); in codec_mpeg12_start() [all …]
|
/Linux-v5.15/drivers/clk/at91/ |
D | clk-sam9x60-pll.c | 40 struct sam9x60_pll_core core; member 46 struct sam9x60_pll_core core; member 51 #define to_sam9x60_frac(core) container_of(core, struct sam9x60_frac, core) argument 52 #define to_sam9x60_div(core) container_of(core, struct sam9x60_div, core) argument 71 struct sam9x60_pll_core *core = to_sam9x60_pll_core(hw); in sam9x60_frac_pll_recalc_rate() local 72 struct sam9x60_frac *frac = to_sam9x60_frac(core); in sam9x60_frac_pll_recalc_rate() 80 struct sam9x60_pll_core *core = to_sam9x60_pll_core(hw); in sam9x60_frac_pll_prepare() local 81 struct sam9x60_frac *frac = to_sam9x60_frac(core); in sam9x60_frac_pll_prepare() 82 struct regmap *regmap = core->regmap; in sam9x60_frac_pll_prepare() 86 spin_lock_irqsave(core->lock, flags); in sam9x60_frac_pll_prepare() [all …]
|
/Linux-v5.15/drivers/clk/ |
D | clk.c | 50 struct clk_core *core; member 98 struct clk_core *core; member 109 static int clk_pm_runtime_get(struct clk_core *core) in clk_pm_runtime_get() argument 113 if (!core->rpm_enabled) in clk_pm_runtime_get() 116 ret = pm_runtime_get_sync(core->dev); in clk_pm_runtime_get() 118 pm_runtime_put_noidle(core->dev); in clk_pm_runtime_get() 124 static void clk_pm_runtime_put(struct clk_core *core) in clk_pm_runtime_put() argument 126 if (!core->rpm_enabled) in clk_pm_runtime_put() 129 pm_runtime_put_sync(core->dev); in clk_pm_runtime_put() 201 static bool clk_core_rate_is_protected(struct clk_core *core) in clk_core_rate_is_protected() argument [all …]
|
/Linux-v5.15/drivers/media/radio/ |
D | radio-wl1273.c | 12 #include <linux/mfd/wl1273-core.h> 77 struct wl1273_core *core; member 95 static int wl1273_fm_write_fw(struct wl1273_core *core, in wl1273_fm_write_fw() argument 98 struct i2c_client *client = core->client; in wl1273_fm_write_fw() 133 struct wl1273_core *core = radio->core; in wl1273_fm_rds() local 134 struct i2c_client *client = core->client; in wl1273_fm_rds() 154 if (core->mode != WL1273_MODE_RX) in wl1273_fm_rds() 157 r = core->read(core, WL1273_RDS_SYNC_GET, &val); in wl1273_fm_rds() 221 struct wl1273_core *core = radio->core; in wl1273_fm_irq_thread_handler() local 225 r = core->read(core, WL1273_FLAG_GET, &flags); in wl1273_fm_irq_thread_handler() [all …]
|
/Linux-v5.15/drivers/gpu/drm/omapdrm/dss/ |
D | hdmi4_cec.c | 68 static void hdmi_cec_received_msg(struct hdmi_core_data *core) in hdmi_cec_received_msg() argument 70 u32 cnt = hdmi_read_reg(core->base, HDMI_CEC_RX_COUNT) & 0xff; in hdmi_cec_received_msg() 83 msg.msg[0] = hdmi_read_reg(core->base, in hdmi_cec_received_msg() 85 msg.msg[1] = hdmi_read_reg(core->base, in hdmi_cec_received_msg() 91 hdmi_read_reg(core->base, reg); in hdmi_cec_received_msg() 94 cec_received_msg(core->adap, &msg); in hdmi_cec_received_msg() 97 hdmi_write_reg(core->base, HDMI_CEC_RX_CONTROL, 1); in hdmi_cec_received_msg() 99 while (hdmi_read_reg(core->base, HDMI_CEC_RX_CONTROL) & 1) in hdmi_cec_received_msg() 105 cnt = hdmi_read_reg(core->base, HDMI_CEC_RX_COUNT) & 0xff; in hdmi_cec_received_msg() 109 void hdmi4_cec_irq(struct hdmi_core_data *core) in hdmi4_cec_irq() argument [all …]
|
/Linux-v5.15/drivers/remoteproc/ |
D | ti_k3_r5_remoteproc.c | 111 * struct k3_r5_core - K3 R5 core structure 114 * @rproc: rproc handle representing this core 151 * @core: cached pointer to r5 core structure being used 161 struct k3_r5_core *core; member 174 * and we let remoteproc core handle it. 230 static int k3_r5_split_reset(struct k3_r5_core *core) in k3_r5_split_reset() argument 234 ret = reset_control_assert(core->reset); in k3_r5_split_reset() 236 dev_err(core->dev, "local-reset assert failed, ret = %d\n", in k3_r5_split_reset() 241 ret = core->ti_sci->ops.dev_ops.put_device(core->ti_sci, in k3_r5_split_reset() 242 core->ti_sci_id); in k3_r5_split_reset() [all …]
|
/Linux-v5.15/arch/parisc/kernel/ |
D | hardware.c | 320 {HPHW_A_DMA, 0x005, 0x00039, 0x80, "KittyHawk CSY Core SCSI"}, 326 {HPHW_A_DMA, 0x005, 0x0003B, 0x80, "KittyHawk CSY Core FW-SCSI"}, 347 {HPHW_A_DMA, 0x015, 0x00089, 0x80, "KittyHawk GSY Core FW-SCSI"}, 351 {HPHW_A_DMA, 0x032, 0x00089, 0x80, "Raven T' Core FW-SCSI"}, 352 {HPHW_A_DMA, 0x03B, 0x00089, 0x80, "Raven U/L2 Core FW-SCSI"}, 353 {HPHW_A_DMA, 0x03C, 0x00089, 0x80, "Merlin 132 Core FW-SCSI"}, 354 {HPHW_A_DMA, 0x03D, 0x00089, 0x80, "Merlin 160 Core FW-SCSI"}, 355 {HPHW_A_DMA, 0x044, 0x00089, 0x80, "Mohawk Core FW-SCSI"}, 380 {HPHW_BA, 0x004, 0x00070, 0x0, "Cobra Core BA"}, 381 {HPHW_BA, 0x005, 0x00070, 0x0, "Coral Core BA"}, [all …]
|
/Linux-v5.15/sound/soc/qcom/qdsp6/ |
D | q6core.c | 72 struct q6core *core = dev_get_drvdata(&adev->dev); in q6core_callback() local 83 core->get_version_supported = false; in q6core_callback() 84 core->resp_received = true; in q6core_callback() 88 core->fwk_version_supported = false; in q6core_callback() 89 core->resp_received = true; in q6core_callback() 93 core->get_state_supported = false; in q6core_callback() 94 core->resp_received = true; in q6core_callback() 104 core->fwk_version = kmemdup(data->payload, in q6core_callback() 108 if (!core->fwk_version) in q6core_callback() 111 core->fwk_version_supported = true; in q6core_callback() [all …]
|
/Linux-v5.15/drivers/media/pci/cx88/ |
D | cx88-video.c | 282 int cx88_video_mux(struct cx88_core *core, unsigned int input) in cx88_video_mux() argument 284 /* struct cx88_core *core = dev->core; */ in cx88_video_mux() 290 core->input = input; in cx88_video_mux() 322 if (core->sd_wm8775) { in cx88_video_mux() 323 call_all(core, audio, s_routing, in cx88_video_mux() 334 core->tvaudio = WW_I2SADC; in cx88_video_mux() 335 cx88_set_tvaudio(core); in cx88_video_mux() 353 struct cx88_core *core = dev->core; in start_video_dma() local 356 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH21], in start_video_dma() 358 cx88_set_scale(core, core->width, core->height, core->field); in start_video_dma() [all …]
|