Home
last modified time | relevance | path

Searched refs:bases (Results 1 – 25 of 29) sorted by relevance

12

/linux-6.15/drivers/clk/ux500/
H A Du8500_of_clk.c131 u32 bases[CLKRST_MAX]; in u8500_clk_init() local
144 for (i = 0; i < ARRAY_SIZE(bases); i++) { in u8500_clk_init()
151 bases[i] = r.start; in u8500_clk_init()
489 bases[CLKRST1_INDEX], BIT(0), CLK_SET_RATE_GATE); in u8500_clk_init()
493 bases[CLKRST1_INDEX], BIT(1), CLK_SET_RATE_GATE); in u8500_clk_init()
497 bases[CLKRST1_INDEX], BIT(2), CLK_SET_RATE_GATE); in u8500_clk_init()
501 bases[CLKRST1_INDEX], BIT(3), CLK_SET_RATE_GATE); in u8500_clk_init()
505 bases[CLKRST1_INDEX], BIT(4), CLK_SET_RATE_GATE); in u8500_clk_init()
509 bases[CLKRST1_INDEX], BIT(5), CLK_SET_RATE_GATE); in u8500_clk_init()
551 bases[CLKRST2_INDEX], BIT(6), in u8500_clk_init()
[all …]
/linux-6.15/drivers/gpu/host1x/
H A Dsyncpt.c26 struct host1x_syncpt_base *bases = host->bases; in host1x_syncpt_base_request() local
30 if (!bases[i].requested) in host1x_syncpt_base_request()
36 bases[i].requested = true; in host1x_syncpt_base_request()
37 return &bases[i]; in host1x_syncpt_base_request()
282 struct host1x_syncpt_base *bases; in host1x_syncpt_init() local
291 bases = devm_kcalloc(host->dev, host->info->nb_bases, sizeof(*bases), in host1x_syncpt_init()
293 if (!bases) in host1x_syncpt_init()
302 bases[i].id = i; in host1x_syncpt_init()
306 host->bases = bases; in host1x_syncpt_init()
H A Ddev.h138 struct host1x_syncpt_base *bases; member
/linux-6.15/drivers/gpu/drm/nouveau/dispnv50/
H A Dbase.c33 } bases[] = { in nv50_base_new() local
46 cid = nvif_mclass(&disp->disp->object, bases); in nv50_base_new()
52 return bases[cid].new(drm, head, bases[cid].oclass, pwndw); in nv50_base_new()
/linux-6.15/drivers/iommu/
H A Drockchip-iommu.c111 void __iomem **bases; member
431 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS)); in rk_iommu_enable_stall()
452 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS)); in rk_iommu_disable_stall()
473 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS)); in rk_iommu_enable_paging()
494 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS)); in rk_iommu_disable_paging()
537 void __iomem *base = iommu->bases[index]; in log_iova()
946 rk_iommu_write(iommu->bases[i], RK_MMU_DTE_ADDR, in rk_iommu_enable()
1211 iommu->bases = devm_kcalloc(dev, num_res, sizeof(*iommu->bases), in rk_iommu_probe()
1213 if (!iommu->bases) in rk_iommu_probe()
1221 if (IS_ERR(iommu->bases[i])) in rk_iommu_probe()
[all …]
/linux-6.15/include/linux/
H A Dposix-timers.h99 pct->bases[0].nextevt = U64_MAX; in posix_cputimers_init()
100 pct->bases[1].nextevt = U64_MAX; in posix_cputimers_init()
101 pct->bases[2].nextevt = U64_MAX; in posix_cputimers_init()
109 pct->bases[CPUCLOCK_SCHED].nextevt = runtime; in posix_cputimers_rt_watchdog()
132 .bases = INIT_CPU_TIMERBASES(s.posix_cputimers.bases), \
H A Dposix-timers_types.h57 struct posix_cputimer_base bases[CPUCLOCK_MAX]; member
/linux-6.15/drivers/iommu/arm/arm-smmu/
H A Darm-smmu-nvidia.c36 void __iomem *bases[MAX_SMMU_INSTANCES]; member
52 return nvidia_smmu->bases[inst] + (page << smmu->pgshift); in nvidia_smmu_page()
322 nvidia_smmu->bases[0] = smmu->base; in nvidia_smmu_impl_init()
330 nvidia_smmu->bases[i] = devm_ioremap_resource(dev, res); in nvidia_smmu_impl_init()
331 if (IS_ERR(nvidia_smmu->bases[i])) in nvidia_smmu_impl_init()
332 return ERR_CAST(nvidia_smmu->bases[i]); in nvidia_smmu_impl_init()
/linux-6.15/kernel/time/
H A Dposix-cpu-timers.c154 return !(~pct->bases[CPUCLOCK_PROF].nextevt | in expiry_cache_is_inactive()
155 ~pct->bases[CPUCLOCK_VIRT].nextevt | in expiry_cache_is_inactive()
156 ~pct->bases[CPUCLOCK_SCHED].nextevt); in expiry_cache_is_inactive()
422 return tsk->posix_cputimers.bases + clkidx; in timer_base()
424 return tsk->signal->posix_cputimers.bases + clkidx; in timer_base()
829 struct posix_cputimer_base *base = pct->bases; in collect_posix_cputimers()
975 &pct->bases[CPUCLOCK_PROF].nextevt, in check_process_timers()
978 &pct->bases[CPUCLOCK_VIRT].nextevt, in check_process_timers()
1001 if (softns < pct->bases[CPUCLOCK_PROF].nextevt) in check_process_timers()
1002 pct->bases[CPUCLOCK_PROF].nextevt = softns; in check_process_timers()
[all …]
H A Dtick-internal.h190 void clock_was_set(unsigned int bases);
H A Dhrtimer.c947 void clock_was_set(unsigned int bases) in clock_was_set() argument
969 if (update_needs_ipi(cpu_base, bases)) in clock_was_set()
/linux-6.15/arch/x86/boot/
H A Dearly_serial_console.c77 static const int bases[] = { 0x3f8, 0x2f8 }; in parse_earlyprintk() local
86 port = bases[idx]; in parse_earlyprintk()
/linux-6.15/drivers/gpu/drm/exynos/
H A Dexynos_drm_scaler.c155 static unsigned int bases[] = { in scaler_set_src_base() local
163 scaler_write(src_buf->dma_addr[i], bases[i]); in scaler_set_src_base()
218 static unsigned int bases[] = { in scaler_set_dst_base() local
226 scaler_write(dst_buf->dma_addr[i], bases[i]); in scaler_set_dst_base()
/linux-6.15/arch/x86/kernel/
H A Dearly_printk.c165 static const int __initconst bases[] = { 0x3f8, 0x2f8 }; in early_serial_init() local
172 early_serial_base = bases[port]; in early_serial_init()
/linux-6.15/Documentation/devicetree/bindings/cpufreq/
H A Dcpufreq-mediatek-hw.yaml25 Addresses and sizes for the memory of the HW bases in
/linux-6.15/drivers/net/wireless/broadcom/b43/
H A Dpio.c82 static const u16 bases[] = { in index_to_pioqueue_base() local
105 B43_WARN_ON(index >= ARRAY_SIZE(bases)); in index_to_pioqueue_base()
106 return bases[index]; in index_to_pioqueue_base()
/linux-6.15/Documentation/devicetree/bindings/thermal/
H A Dqcom-tsens.yaml112 bases and two cells per each sensor
117 bases and two cells per each sensor, main and backup copies, plus use_backup cell
/linux-6.15/drivers/platform/mellanox/
H A DKconfig46 are defined per system type bases and include the registers related
/linux-6.15/drivers/gpu/drm/msm/
H A DNOTES58 register interface is same, just different bases.)
/linux-6.15/sound/pci/hda/
H A Dhda_proc.c249 static const char * const bases[7] = { in get_jack_location() local
266 return bases[cfg & 0x0f]; in get_jack_location()
/linux-6.15/drivers/gpu/drm/i915/gt/
H A Dintel_engine_cs.c344 const struct engine_mmio_base *bases) in __engine_mmio_base() argument
349 if (GRAPHICS_VER(i915) >= bases[i].graphics_ver) in __engine_mmio_base()
353 GEM_BUG_ON(!bases[i].base); in __engine_mmio_base()
355 return bases[i].base; in __engine_mmio_base()
/linux-6.15/Documentation/timers/
H A Dhighres.rst169 decision is made per timer base and synchronized across per-cpu timer bases in
171 clock event devices for the per-CPU timer bases, but currently only one
/linux-6.15/Documentation/driver-api/thermal/
H A Dcpu-idle-cooling.rst89 The implementation of the cooling device bases the number of states on
/linux-6.15/Documentation/arch/x86/
H A Dintel_txt.rst68 static root of trust must be used. This bases trust in BIOS
/linux-6.15/Documentation/filesystems/
H A Dvfat.rst204 **nostale_ro**: This option bases the *inode* number and filehandle

12