/drivers/irqchip/ |
D | irq-mtk-sysirq.c | 33 struct mtk_sysirq_chip_data *chip_data = data->chip_data; in mtk_sysirq_set_type() local 41 spin_lock_irqsave(&chip_data->lock, flags); in mtk_sysirq_set_type() 42 value = readl_relaxed(chip_data->intpol_base + reg_index * 4); in mtk_sysirq_set_type() 52 writel(value, chip_data->intpol_base + reg_index * 4); in mtk_sysirq_set_type() 56 spin_unlock_irqrestore(&chip_data->lock, flags); in mtk_sysirq_set_type() 126 struct mtk_sysirq_chip_data *chip_data; in mtk_sysirq_of_init() local 140 chip_data = kzalloc(sizeof(*chip_data), GFP_KERNEL); in mtk_sysirq_of_init() 141 if (!chip_data) in mtk_sysirq_of_init() 146 chip_data->intpol_base = ioremap(res.start, size); in mtk_sysirq_of_init() 147 if (!chip_data->intpol_base) { in mtk_sysirq_of_init() [all …]
|
D | irq-vf610-mscm-ir.c | 93 struct vf610_mscm_ir_chip_data *chip_data = data->chip_data; in vf610_mscm_ir_enable() local 96 irsprc = readw_relaxed(chip_data->mscm_ir_base + MSCM_IRSPRC(hwirq)); in vf610_mscm_ir_enable() 99 WARN_ON(irsprc & ~chip_data->cpu_mask); in vf610_mscm_ir_enable() 101 writew_relaxed(chip_data->cpu_mask, in vf610_mscm_ir_enable() 102 chip_data->mscm_ir_base + MSCM_IRSPRC(hwirq)); in vf610_mscm_ir_enable() 110 struct vf610_mscm_ir_chip_data *chip_data = data->chip_data; in vf610_mscm_ir_disable() local 112 writew_relaxed(0x0, chip_data->mscm_ir_base + MSCM_IRSPRC(hwirq)); in vf610_mscm_ir_disable()
|
D | exynos-combiner.c | 70 struct combiner_chip_data *chip_data = irq_desc_get_handler_data(desc); in combiner_handle_cascade_irq() local 78 status = __raw_readl(chip_data->base + COMBINER_INT_STATUS); in combiner_handle_cascade_irq() 80 status &= chip_data->irq_mask; in combiner_handle_cascade_irq() 85 combiner_irq = chip_data->hwirq_offset + __ffs(status); in combiner_handle_cascade_irq() 101 struct combiner_chip_data *chip_data = irq_data_get_irq_chip_data(d); in combiner_set_affinity() local 102 struct irq_chip *chip = irq_get_chip(chip_data->parent_irq); in combiner_set_affinity() 103 struct irq_data *data = irq_get_irq_data(chip_data->parent_irq); in combiner_set_affinity()
|
D | irq-imx-gpcv2.c | 87 struct gpcv2_irqchip_data *cd = d->chip_data; in imx_gpcv2_irq_set_wake() 111 struct gpcv2_irqchip_data *cd = d->chip_data; in imx_gpcv2_irq_unmask() 127 struct gpcv2_irqchip_data *cd = d->chip_data; in imx_gpcv2_irq_mask()
|
D | irq-gic.c | 368 struct gic_chip_data *chip_data = irq_desc_get_handler_data(desc); in gic_handle_cascade_irq() local 376 status = readl_relaxed(gic_data_cpu_base(chip_data) + GIC_CPU_INTACK); in gic_handle_cascade_irq() 383 cascade_irq = irq_find_mapping(chip_data->domain, gic_irq); in gic_handle_cascade_irq()
|
D | irq-tegra.c | 93 void __iomem *base = d->chip_data; in tegra_ictlr_write_mask()
|
/drivers/mfd/ |
D | htc-i2cpld.c | 230 struct htcpld_chip *chip_data = in htcpld_chip_set() local 234 client = chip_data->client; in htcpld_chip_set() 238 spin_lock_irqsave(&chip_data->lock, flags); in htcpld_chip_set() 240 chip_data->cache_out |= (1 << offset); in htcpld_chip_set() 242 chip_data->cache_out &= ~(1 << offset); in htcpld_chip_set() 243 spin_unlock_irqrestore(&chip_data->lock, flags); in htcpld_chip_set() 245 schedule_work(&(chip_data->set_val_work)); in htcpld_chip_set() 250 struct htcpld_chip *chip_data; in htcpld_chip_set_ni() local 253 chip_data = container_of(work, struct htcpld_chip, set_val_work); in htcpld_chip_set_ni() 254 client = chip_data->client; in htcpld_chip_set_ni() [all …]
|
/drivers/spi/ |
D | spi-pxa2xx.h | 65 struct chip_data *cur_chip; 85 struct chip_data { struct 171 extern int pxa2xx_spi_set_dma_burst_and_threshold(struct chip_data *chip, 191 static inline int pxa2xx_spi_set_dma_burst_and_threshold(struct chip_data *chip, in pxa2xx_spi_set_dma_burst_and_threshold()
|
D | spi-dw.c | 32 struct chip_data { struct 141 struct chip_data *chip = spi_get_ctldata(spi); in dw_spi_set_cs() 292 struct chip_data *chip = spi_get_ctldata(spi); in dw_spi_transfer_one() 412 struct chip_data *chip; in dw_spi_setup() 418 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL); in dw_spi_setup() 453 struct chip_data *chip = spi_get_ctldata(spi); in dw_spi_cleanup()
|
D | spi-pxa2xx-dma.c | 163 struct chip_data *chip = drv_data->cur_chip; in pxa2xx_spi_dma_prepare_one() 220 const struct chip_data *chip = drv_data->cur_chip; in pxa2xx_spi_map_dma_buffers() 347 int pxa2xx_spi_set_dma_burst_and_threshold(struct chip_data *chip, in pxa2xx_spi_set_dma_burst_and_threshold()
|
D | spi-pxa2xx.c | 327 struct chip_data *chip = drv_data->cur_chip; in cs_assert() 350 struct chip_data *chip = drv_data->cur_chip; in cs_deassert() 547 struct chip_data *chip = drv_data->cur_chip; in reset_sccr1() 875 struct chip_data *chip = drv_data->cur_chip; in pxa2xx_ssp_get_clk_div() 895 struct chip_data *chip = NULL; in pump_transfers() 1126 static int setup_cs(struct spi_device *spi, struct chip_data *chip, in setup_cs() 1167 struct chip_data *chip; in setup() 1197 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL); in setup() 1306 struct chip_data *chip = spi_get_ctldata(spi); in cleanup()
|
D | spi-fsl-dspi.c | 111 struct chip_data { struct 148 struct chip_data *cur_chip; 447 struct chip_data *chip; in dspi_setup() 464 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL); in dspi_setup() 507 struct chip_data *chip = spi_get_ctldata((struct spi_device *)spi); in dspi_cleanup()
|
D | spi-pl022.c | 391 struct chip_data *cur_chip; 432 struct chip_data { struct 575 struct chip_data *chip = pl022->cur_chip; in restore_state() 1500 struct chip_data *chip; in do_polling_transfer() 1839 struct chip_data *chip; in pl022_setup() 1854 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL); in pl022_setup() 2074 struct chip_data *chip = spi_get_ctldata(spi); in pl022_cleanup()
|
D | spi-tegra20-slink.c | 165 const struct tegra_slink_chip_data *chip_data; member 1047 tspi->chip_data = cdata; in tegra_slink_probe()
|
/drivers/dma/ |
D | tegra20-apb-dma.c | 220 const struct tegra_dma_chip_data *chip_data; member 402 if (tdma->chip_data->support_channel_pause) { in tegra_dma_pause() 416 if (tdma->chip_data->support_channel_pause) { in tegra_dma_resume() 456 if (tdc->tdma->chip_data->support_separate_wcount_reg) in tegra_dma_start() 497 if (tdc->tdma->chip_data->support_separate_wcount_reg) in tegra_dma_configure_for_next() 770 if (tdc->tdma->chip_data->support_separate_wcount_reg) in tegra_dma_terminate_all() 931 if (tdc->tdma->chip_data->support_separate_wcount_reg) in tegra_dma_prep_wcount() 999 (len > tdc->tdma->chip_data->max_dma_count)) { in tegra_dma_prep_slave_sg() 1098 (len > tdc->tdma->chip_data->max_dma_count)) { in tegra_dma_prep_dma_cyclic() 1334 tdma->chip_data = cdata; in tegra_dma_probe() [all …]
|
/drivers/input/touchscreen/ |
D | edt-ft5x06.c | 887 const struct edt_i2c_chip_data *chip_data; in edt_ft5x06_ts_probe() local 903 chip_data = of_device_get_match_data(&client->dev); in edt_ft5x06_ts_probe() 904 if (!chip_data) in edt_ft5x06_ts_probe() 905 chip_data = (const struct edt_i2c_chip_data *)id->driver_data; in edt_ft5x06_ts_probe() 906 if (!chip_data || !chip_data->max_support_points) { in edt_ft5x06_ts_probe() 911 tsdata->max_support_points = chip_data->max_support_points; in edt_ft5x06_ts_probe()
|
/drivers/iommu/ |
D | intel_irq_remapping.c | 1141 struct intel_ir_data *ir_data = data->chip_data; in intel_ir_set_affinity() 1175 struct intel_ir_data *ir_data = irq_data->chip_data; in intel_ir_compose_msi_msg() 1182 struct intel_ir_data *ir_data = data->chip_data; in intel_ir_set_vcpu_affinity() 1295 if (irq_data && irq_data->chip_data) { in intel_free_irq_resources() 1296 data = irq_data->chip_data; in intel_free_irq_resources() 1371 irq_data->chip_data = ird; in intel_irq_remapping_alloc() 1395 struct intel_ir_data *data = irq_data->chip_data; in intel_irq_remapping_activate() 1403 struct intel_ir_data *data = irq_data->chip_data; in intel_irq_remapping_deactivate()
|
D | amd_iommu.c | 3987 irq_data->chip_data = data; in irq_remapping_alloc() 3999 kfree(irq_data->chip_data); in irq_remapping_alloc() 4018 if (irq_data && irq_data->chip_data) { in irq_remapping_free() 4019 data = irq_data->chip_data; in irq_remapping_free() 4031 struct amd_ir_data *data = irq_data->chip_data; in irq_remapping_activate() 4040 struct amd_ir_data *data = irq_data->chip_data; in irq_remapping_deactivate() 4058 struct amd_ir_data *ir_data = data->chip_data; in amd_ir_set_affinity() 4088 struct amd_ir_data *ir_data = irq_data->chip_data; in ir_compose_msi_msg()
|
/drivers/pwm/ |
D | pwm-lpc18xx-sct.c | 412 pwm->chip_data = devm_kzalloc(lpc18xx_pwm->dev, in lpc18xx_pwm_probe() 415 if (!pwm->chip_data) { in lpc18xx_pwm_probe()
|
D | core.c | 211 pwm->chip_data = data; in pwm_set_chip_data() 225 return pwm ? pwm->chip_data : NULL; in pwm_get_chip_data()
|
/drivers/base/ |
D | platform-msi.c | 67 info->chip, info->chip_data); in platform_msi_init()
|
/drivers/power/ |
D | sbs-battery.c | 83 static const struct chip_data { struct
|