/linux-4.4.14/drivers/clk/mmp/ |
D | clk-frac.c | 37 (factor->ftbl[i].num * factor->masks->factor)) * 10000; in clk_factor_round_rate() 55 struct mmp_clk_factor_masks *masks = factor->masks; in clk_factor_recalc_rate() local 61 num = (val >> masks->num_shift) & masks->num_mask; in clk_factor_recalc_rate() 64 den = (val >> masks->den_shift) & masks->den_mask; in clk_factor_recalc_rate() 70 (num * factor->masks->factor)) * 10000; in clk_factor_recalc_rate() 78 struct mmp_clk_factor_masks *masks = factor->masks; in clk_factor_set_rate() local 87 (factor->ftbl[i].num * factor->masks->factor)) * 10000; in clk_factor_set_rate() 99 val &= ~(masks->num_mask << masks->num_shift); in clk_factor_set_rate() 100 val |= (factor->ftbl[i].num & masks->num_mask) << masks->num_shift; in clk_factor_set_rate() 102 val &= ~(masks->den_mask << masks->den_shift); in clk_factor_set_rate() [all …]
|
D | clk.h | 28 struct mmp_clk_factor_masks *masks; member 36 void __iomem *base, struct mmp_clk_factor_masks *masks,
|
/linux-4.4.14/drivers/clk/spear/ |
D | clk-aux-synth.c | 80 eqn = (val >> aux->masks->eq_sel_shift) & aux->masks->eq_sel_mask; in clk_aux_recalc_rate() 81 if (eqn == aux->masks->eq1_mask) in clk_aux_recalc_rate() 85 num = (val >> aux->masks->xscale_sel_shift) & in clk_aux_recalc_rate() 86 aux->masks->xscale_sel_mask; in clk_aux_recalc_rate() 89 den *= (val >> aux->masks->yscale_sel_shift) & in clk_aux_recalc_rate() 90 aux->masks->yscale_sel_mask; in clk_aux_recalc_rate() 114 ~(aux->masks->eq_sel_mask << aux->masks->eq_sel_shift); in clk_aux_set_rate() 115 val |= (rtbl[i].eq & aux->masks->eq_sel_mask) << in clk_aux_set_rate() 116 aux->masks->eq_sel_shift; in clk_aux_set_rate() 117 val &= ~(aux->masks->xscale_sel_mask << aux->masks->xscale_sel_shift); in clk_aux_set_rate() [all …]
|
D | clk.h | 52 struct aux_clk_masks *masks; member 115 struct aux_clk_masks *masks, struct aux_rate_tbl *rtbl,
|
/linux-4.4.14/arch/s390/kernel/ |
D | sclp.c | 74 unsigned int *masks; in _sclp_setup() local 78 masks = (unsigned int *)(_sclp_work_area + 12); in _sclp_setup() 80 memset(masks, 0, 16); in _sclp_setup() 85 if ((masks[0] & masks[3]) != masks[0] || in _sclp_setup() 86 (masks[1] & masks[2]) != masks[1]) in _sclp_setup()
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | tdm-slot.txt | 20 tx and rx masks. 22 For snd_soc_of_xlate_tdm_slot_mask(), the tx and rx masks will use a 1 bit 24 the masks. 26 The explicit masks are given as array of integers, where the first
|
D | wm8994.txt | 32 The second cell is the flags, encoded as the trigger masks from
|
/linux-4.4.14/drivers/gpu/drm/via/ |
D | via_irq.c | 216 maskarray_t *masks; in via_driver_irq_wait() local 239 masks = dev_priv->irq_masks; in via_driver_irq_wait() 242 if (masks[real_irq][2] && !force_sequence) { in via_driver_irq_wait() 244 ((VIA_READ(masks[irq][2]) & masks[irq][3]) == in via_driver_irq_wait() 245 masks[irq][4])); in via_driver_irq_wait()
|
/linux-4.4.14/arch/blackfin/kernel/cplb-mpu/ |
D | cplbmgr.c | 341 void set_mask_dcplbs(unsigned long *masks, unsigned int cpu) in set_mask_dcplbs() argument 344 unsigned long addr = (unsigned long)masks; in set_mask_dcplbs() 348 if (!masks) { in set_mask_dcplbs() 349 current_rwx_mask[cpu] = masks; in set_mask_dcplbs() 354 current_rwx_mask[cpu] = masks; in set_mask_dcplbs()
|
/linux-4.4.14/drivers/char/agp/ |
D | intel-agp.c | 461 .masks = intel_generic_masks, 488 .masks = intel_generic_masks, 515 .masks = intel_generic_masks, 542 .masks = intel_generic_masks, 569 .masks = intel_generic_masks, 596 .masks = intel_generic_masks, 623 .masks = intel_generic_masks, 650 .masks = intel_generic_masks, 677 .masks = intel_generic_masks,
|
D | ali-agp.c | 213 .masks = NULL, 237 .masks = NULL,
|
D | via-agp.c | 183 .masks = NULL, 210 .masks = NULL,
|
D | alpha-agp.c | 130 .masks = NULL,
|
D | i460-agp.c | 552 return bridge->driver->masks[0].mask in i460_mask_memory() 566 .masks = i460_masks,
|
D | uninorth-agp.c | 518 .masks = NULL, 546 .masks = NULL,
|
D | agp.h | 104 const struct gatt_mask *masks; member
|
D | sis-agp.c | 133 .masks = NULL,
|
D | efficeon-agp.c | 324 .masks = efficeon_generic_masks,
|
D | parisc-agp.c | 224 .masks = parisc_agp_masks,
|
D | nvidia-agp.c | 320 .masks = nvidia_generic_masks,
|
D | generic.c | 1327 if (bridge->driver->masks) in agp_generic_mask_memory() 1328 return addr | bridge->driver->masks[0].mask; in agp_generic_mask_memory()
|
D | hp-agp.c | 428 .masks = hp_zx1_masks,
|
D | amd-k7-agp.c | 373 .masks = amd_irongate_masks,
|
D | sworks-agp.c | 432 .masks = serverworks_masks,
|
D | ati-agp.c | 430 .masks = ati_generic_masks,
|
D | amd64-agp.c | 226 .masks = NULL,
|
/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm_symbol.c | 472 symlist_t masks; in symtable_dump() local 489 SLIST_INIT(&masks); in symtable_dump() 509 symlist_add(&masks, cursym, SYMLIST_SORT); in symtable_dump() 580 while (SLIST_FIRST(&masks) != NULL) { in symtable_dump() 583 curnode = SLIST_FIRST(&masks); in symtable_dump() 584 SLIST_REMOVE_HEAD(&masks, links); in symtable_dump()
|
/linux-4.4.14/Documentation/filesystems/ |
D | adfs.txt | 44 Hence, with the default masks, if a file is owner read/write, and 49 However, if the masks were ownmask=0770,othmask=0007, then this would 53 There is no restriction on what you can do with these masks. You may
|
D | afs.txt | 54 the masks in the following files:
|
D | spufs.txt | 332 on the SPU. The bit masks for the status codes are:
|
/linux-4.4.14/arch/arm/plat-samsung/include/plat/ |
D | wakeup-mask.h | 41 struct samsung_wakeup_mask *masks,
|
/linux-4.4.14/arch/powerpc/platforms/ps3/ |
D | spu.c | 101 u64 masks[3]; member 498 spu_pdata(spu)->cache.masks[class] = mask; in int_mask_set() 500 spu_pdata(spu)->cache.masks[class]); in int_mask_set() 505 return spu_pdata(spu)->cache.masks[class]; in int_mask_get()
|
/linux-4.4.14/drivers/staging/speakup/ |
D | keyhelp.c | 31 static u_short masks[] = { 32, 16, 8, 4, 2, 1 }; variable 119 if (state & masks[i]) in say_key()
|
/linux-4.4.14/arch/mips/kernel/ |
D | vpe.c | 185 static unsigned long const masks[][2] = { in layout_sections() local 199 for (m = 0; m < ARRAY_SIZE(masks); ++m) { in layout_sections() 203 if ((s->sh_flags & masks[m][0]) != masks[m][0] in layout_sections() 204 || (s->sh_flags & masks[m][1]) in layout_sections()
|
/linux-4.4.14/net/core/ |
D | filter.c | 624 u16 *masks, memvalid = 0; /* One bit per cell, 16 cells */ in check_load_and_stores() local 629 masks = kmalloc_array(flen, sizeof(*masks), GFP_KERNEL); in check_load_and_stores() 630 if (!masks) in check_load_and_stores() 633 memset(masks, 0xff, flen * sizeof(*masks)); in check_load_and_stores() 636 memvalid &= masks[pc]; in check_load_and_stores() 652 masks[pc + 1 + filter[pc].k] &= memvalid; in check_load_and_stores() 664 masks[pc + 1 + filter[pc].jt] &= memvalid; in check_load_and_stores() 665 masks[pc + 1 + filter[pc].jf] &= memvalid; in check_load_and_stores() 671 kfree(masks); in check_load_and_stores()
|
/linux-4.4.14/drivers/irqchip/ |
D | irq-metag-ext.c | 603 u32 masks[4]; member 661 context->masks[bank] = metag_in32(mask_addr); in meta_intc_suspend() 725 tmp = (tmp & ~mask) | (context->masks[bank] & mask); in meta_intc_resume()
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | palmas.txt | 26 The second cell is the flags, encoded as the trigger masks from
|
D | arizona.txt | 26 The second cell is the flags, encoded as the trigger masks from
|
D | tps65910.txt | 13 The second cell is the flags, encoded as the trigger masks from
|
D | as3722.txt | 13 The second cell is the flags, encoded as the trigger masks from binding document
|
/linux-4.4.14/arch/powerpc/oprofile/ |
D | op_model_cell.c | 86 unsigned long masks; member 486 pmc_cntrl[next_hdw_thread][i].masks); in cell_virtual_cntr() 780 pmc_cntrl[0][i].masks = ctr[i].unit_mask; in cell_reg_setup_ppu() 802 pmc_cntrl[1][i].masks = ctr[i].unit_mask; in cell_reg_setup_ppu() 824 pmc_cntrl[0][i].masks); in cell_reg_setup_ppu()
|
/linux-4.4.14/Documentation/networking/ |
D | alias.txt | 5 IP-aliases are an obsolete way to manage multiple IP-addresses/masks
|
D | can.txt | 889 rcvlist_err - list for error message frames masks
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | fw-memory.txt | 64 0x54 - always 0xffffffff (0x4c, 0x50, 0x54 seem like interrupt masks, are 66 interrupt masks???).
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | st,spear3xx-shirq.txt | 10 bit masks. Also in some cases the group may not have enable or other
|
/linux-4.4.14/include/sound/ |
D | pcm.h | 235 struct snd_mask masks[SNDRV_PCM_HW_PARAM_LAST_MASK - member 247 return &constrs->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; in constrs_mask() 886 return ¶ms->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; in hw_param_mask() 898 return ¶ms->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; in hw_param_mask_c()
|
/linux-4.4.14/security/smack/ |
D | smackfs.c | 1170 unsigned int masks; in smk_write_net4addr() local 1208 &host[0], &host[1], &host[2], &host[3], &masks, smack); in smk_write_net4addr() 1217 masks = 32; in smk_write_net4addr() 1219 if (masks > BEBITS) { in smk_write_net4addr() 1243 for (m = masks, temp_mask = 0; m > 0; m--) { in smk_write_net4addr() 1260 if (snp->smk_host.s_addr == nsa && snp->smk_masks == masks) { in smk_write_net4addr() 1276 snp->smk_masks = masks; in smk_write_net4addr()
|
/linux-4.4.14/drivers/iio/adc/ |
D | max1363.c | 1452 unsigned long *masks; in max1363_alloc_scan_masks() local 1455 masks = devm_kzalloc(&indio_dev->dev, in max1363_alloc_scan_masks() 1458 if (!masks) in max1363_alloc_scan_masks() 1462 bitmap_copy(masks + BITS_TO_LONGS(MAX1363_MAX_CHANNELS)*i, in max1363_alloc_scan_masks() 1466 indio_dev->available_scan_masks = masks; in max1363_alloc_scan_masks()
|
/linux-4.4.14/Documentation/frv/ |
D | clock.txt | 30 The current state and the available masks can be found in /proc/cpuinfo. For
|
/linux-4.4.14/kernel/ |
D | module.c | 2229 static unsigned long const masks[][2] = { in layout_sections() local 2244 for (m = 0; m < ARRAY_SIZE(masks); ++m) { in layout_sections() 2249 if ((s->sh_flags & masks[m][0]) != masks[m][0] in layout_sections() 2250 || (s->sh_flags & masks[m][1]) in layout_sections() 2273 for (m = 0; m < ARRAY_SIZE(masks); ++m) { in layout_sections() 2278 if ((s->sh_flags & masks[m][0]) != masks[m][0] in layout_sections() 2279 || (s->sh_flags & masks[m][1]) in layout_sections()
|
/linux-4.4.14/drivers/crypto/ |
D | hifn_795x.c | 473 volatile __le16 masks; member 496 volatile __le16 masks; member 527 volatile __le16 masks; member 556 volatile __le16 masks; member 1107 base_cmd->masks = __cpu_to_le16(mask); in hifn_setup_base_command() 1135 cry_cmd->masks = __cpu_to_le16(mode | in hifn_setup_crypto_command()
|
/linux-4.4.14/drivers/media/usb/cpia2/ |
D | cpia2.h | 254 struct cpia2_reg_mask masks[16]; member
|
/linux-4.4.14/sound/core/ |
D | pcm_native.c | 45 unsigned int masks[SNDRV_PCM_HW_PARAM_SUBFORMAT - member 3557 for (i = 0; i < ARRAY_SIZE(oparams->masks); i++) in snd_pcm_hw_convert_from_old_params() 3558 params->masks[i].bits[0] = oparams->masks[i]; in snd_pcm_hw_convert_from_old_params() 3576 for (i = 0; i < ARRAY_SIZE(oparams->masks); i++) in snd_pcm_hw_convert_to_old_params() 3577 oparams->masks[i] = params->masks[i].bits[0]; in snd_pcm_hw_convert_to_old_params()
|
D | pcm_compat.c | 79 …struct snd_mask masks[SNDRV_PCM_HW_PARAM_LAST_MASK - SNDRV_PCM_HW_PARAM_FIRST_MASK + 1]; /* this m… member
|
/linux-4.4.14/arch/arc/mm/ |
D | tlbex.S | 222 ; (1) x = addr >> PAGE_SHIFT -> masks page-off bits from @fault-addr
|
/linux-4.4.14/net/netlink/ |
D | af_netlink.c | 75 unsigned long masks[0]; member 1100 listeners->masks[i] = mask; in netlink_update_listeners() 1963 res = test_bit(group - 1, listeners->masks); in netlink_has_listeners() 2716 memcpy(new->masks, old->masks, NLGRPSZ(tbl->groups)); in __netlink_change_ngroups()
|
/linux-4.4.14/arch/alpha/lib/ |
D | stxncpy.S | 313 lda t2, -1 # e0 : for creating masks later
|
D | ev6-stxncpy.S | 360 lda t2, -1 # E : for creating masks later
|
/linux-4.4.14/Documentation/ABI/stable/ |
D | sysfs-driver-ib_srp | 60 the IRQ affinity masks of these interrupts have been
|
/linux-4.4.14/include/uapi/sound/ |
D | asound.h | 378 struct snd_mask masks[SNDRV_PCM_HW_PARAM_LAST_MASK - member
|
/linux-4.4.14/Documentation/ |
D | padata.txt | 61 Changing the CPU masks are expensive operations, though, so it should not be
|
D | vfio.txt | 61 bridge masks the devices behind it, making transaction appear as if
|
D | kernel-parameters.txt | 2759 when the system masks IRQs.
|
/linux-4.4.14/drivers/media/pci/bt8xx/ |
D | bttv-cards.c | 3193 static const int masks[] = {0x30, 0x01, 0x12, 0x23}; in gvc1100_muxsel() local 3194 gpio_write(masks[input%4]); in gvc1100_muxsel() 4579 static const int masks[] = { in xguard_muxsel() local 4585 gpio_write(masks[input%16]); in xguard_muxsel()
|
/linux-4.4.14/Documentation/hwmon/ |
D | asc7621 | 204 Only the following combination of zones (and their corresponding masks)
|
/linux-4.4.14/Documentation/video4linux/ |
D | omap3isp.txt | 145 The update and flag bit masks accept the following values. Each separate
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | fpsp.h | 244 | FPSR individual bit masks
|
/linux-4.4.14/Documentation/s390/ |
D | driver-model.txt | 57 pimpampom: The path installed, path available and path operational masks.
|
/linux-4.4.14/Documentation/sound/alsa/soc/ |
D | DPCM.txt | 248 snd_mask_set(¶ms->masks[SNDRV_PCM_HW_PARAM_FORMAT -
|
/linux-4.4.14/lib/ |
D | Kconfig | 399 bool "Force CPU masks off stack" if DEBUG_PER_CPU_MAPS
|
/linux-4.4.14/Documentation/x86/x86_64/ |
D | boot-options.txt | 235 forcesac Force single-address cycle (SAC) mode for masks <40bits
|
/linux-4.4.14/Documentation/PCI/ |
D | pci.txt | 348 Once the DMA masks are set, the driver can allocate "consistent" (a.k.a. shared) 441 it decides the IRQ isn't going to get handled and masks the IRQ (100,000
|
/linux-4.4.14/drivers/platform/x86/ |
D | Kconfig | 790 IMRs are a set of registers that define read and write access masks 795 by hardware agents inside the SoC. Read and write masks can be
|
/linux-4.4.14/Documentation/cgroups/ |
D | unified-hierarchy.txt | 504 - Tasks are kept in empty cpusets after hotplug and take on the masks 508 masks of the nearest non-empty ancestor.
|
/linux-4.4.14/net/sched/ |
D | Kconfig | 486 a configurable combination of packet keys and masks.
|
/linux-4.4.14/Documentation/laptops/ |
D | thinkpad-acpi.txt | 235 maintain maximum bug-to-bug compatibility, it does not report any masks, 237 does not support masks at all, even if NVRAM polling is in use.
|
/linux-4.4.14/net/netfilter/ |
D | Kconfig | 1449 AND them with specified masks, shift them by specified amounts and
|
/linux-4.4.14/arch/arm/crypto/ |
D | aesbs-core.S_shipped | 1006 vmov.i8 q8, #0x01 @ bit masks
|
/linux-4.4.14/Documentation/scsi/ |
D | ChangeLog.lpfc | 1672 * Cleanup casting around DMA masks.
|
/linux-4.4.14/arch/m68k/ifpsp060/src/ |
D | fplsp.S | 440 # FPSR individual bit masks #
|