/openbmc/linux/drivers/clk/ux500/ |
H A D | u8500_of_clk.c | 131 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() 303 clk = clk_reg_prcc_pclk("p1_pclk0", "per1clk", bases[CLKRST1_INDEX], in u8500_clk_init() 307 clk = clk_reg_prcc_pclk("p1_pclk1", "per1clk", bases[CLKRST1_INDEX], in u8500_clk_init() 311 clk = clk_reg_prcc_pclk("p1_pclk2", "per1clk", bases[CLKRST1_INDEX], in u8500_clk_init() 315 clk = clk_reg_prcc_pclk("p1_pclk3", "per1clk", bases[CLKRST1_INDEX], in u8500_clk_init() 319 clk = clk_reg_prcc_pclk("p1_pclk4", "per1clk", bases[CLKRST1_INDEX], in u8500_clk_init() 323 clk = clk_reg_prcc_pclk("p1_pclk5", "per1clk", bases[CLKRST1_INDEX], in u8500_clk_init() 327 clk = clk_reg_prcc_pclk("p1_pclk6", "per1clk", bases[CLKRST1_INDEX], in u8500_clk_init() [all …]
|
/openbmc/openbmc/poky/meta/recipes-support/libpcre/libpcre/ |
H A D | Makefile | 57 bases='$(TEST_LOGS)'; \ 58 bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ 59 bases=`echo $$bases` 75 redo_bases=`for i in $$bases; do \ 89 results=`for b in $$bases; do echo $$b.trs; done`; \ 139 for b in $$bases; do echo $$b; done; \ 162 log_list=`for i in $$bases; do echo $$i.log; done`; \
|
/openbmc/linux/drivers/gpu/host1x/ |
H A D | syncpt.c | 26 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()
|
/openbmc/linux/include/linux/ |
H A D | posix-timers.h | 133 struct posix_cputimer_base bases[CPUCLOCK_MAX]; member 153 pct->bases[0].nextevt = U64_MAX; in posix_cputimers_init() 154 pct->bases[1].nextevt = U64_MAX; in posix_cputimers_init() 155 pct->bases[2].nextevt = U64_MAX; in posix_cputimers_init() 163 pct->bases[CPUCLOCK_SCHED].nextevt = runtime; in posix_cputimers_rt_watchdog() 179 .bases = INIT_CPU_TIMERBASES(s.posix_cputimers.bases), \
|
/openbmc/linux/drivers/gpu/drm/nouveau/dispnv50/ |
H A D | base.c | 33 } 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()
|
/openbmc/linux/drivers/iommu/ |
H A D | rockchip-iommu.c | 107 void __iomem **bases; member 350 writel(command, iommu->bases[i] + RK_MMU_COMMAND); in rk_iommu_command() 370 rk_iommu_write(iommu->bases[i], RK_MMU_ZAP_ONE_LINE, iova); in rk_iommu_zap_lines() 380 active &= !!(rk_iommu_read(iommu->bases[i], RK_MMU_STATUS) & in rk_iommu_is_stall_active() 392 enable &= !!(rk_iommu_read(iommu->bases[i], RK_MMU_STATUS) & in rk_iommu_is_paging_enabled() 404 done &= rk_iommu_read(iommu->bases[i], RK_MMU_DTE_ADDR) == 0; in rk_iommu_is_reset_done() 429 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS)); in rk_iommu_enable_stall() 450 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS)); in rk_iommu_disable_stall() 471 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS)); in rk_iommu_enable_paging() 492 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS)); in rk_iommu_disable_paging() [all …]
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | classutils.py | 9 def __init__(cls, name, bases, attrs): argument 11 type.__init__(cls, name, bases, attrs) 27 def __init__(cls, name, bases, attrs): argument 28 super(ClassRegistry, cls).__init__(name, bases, attrs)
|
H A D | spdx.py | 145 def __new__(mcls, name, bases, attrs): argument 154 return super().__new__(mcls, name, bases, attrs)
|
H A D | terminal.py | 25 def __init__(cls, name, bases, attrs): argument 26 super(Registry, cls).__init__(name.lower(), bases, attrs)
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | namedtuple_with_abc.py | 49 def __new__(mcls, name, bases, namespace): argument 51 for base in bases: 57 bases = (basetuple,) + bases 61 return ABCMeta.__new__(mcls, name, bases, namespace)
|
/openbmc/linux/drivers/iommu/arm/arm-smmu/ |
H A D | arm-smmu-nvidia.c | 36 void __iomem *bases[MAX_SMMU_INSTANCES]; member 52 return nvidia_smmu->bases[inst] + (page << smmu->pgshift); in nvidia_smmu_page() 324 nvidia_smmu->bases[0] = smmu->base; in nvidia_smmu_impl_init() 332 nvidia_smmu->bases[i] = devm_ioremap_resource(dev, res); in nvidia_smmu_impl_init() 333 if (IS_ERR(nvidia_smmu->bases[i])) in nvidia_smmu_impl_init() 334 return ERR_CAST(nvidia_smmu->bases[i]); in nvidia_smmu_impl_init()
|
/openbmc/linux/kernel/time/ |
H A D | posix-cpu-timers.c | 28 pct->bases[CPUCLOCK_PROF].nextevt = cpu_limit * NSEC_PER_SEC; in posix_cputimers_group_init() 154 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() 533 cleanup_timerqueue(&pct->bases[CPUCLOCK_PROF].tqhead); in cleanup_timers() 534 cleanup_timerqueue(&pct->bases[CPUCLOCK_VIRT].tqhead); in cleanup_timers() 535 cleanup_timerqueue(&pct->bases[CPUCLOCK_SCHED].tqhead); in cleanup_timers() 861 struct posix_cputimer_base *base = pct->bases; in collect_posix_cputimers() [all …]
|
H A D | tick-internal.h | 176 void clock_was_set(unsigned int bases);
|
/openbmc/linux/arch/x86/boot/ |
H A D | early_serial_console.c | 77 static const int bases[] = { 0x3f8, 0x2f8 }; in parse_earlyprintk() local 86 port = bases[idx]; in parse_earlyprintk()
|
/openbmc/openbmc/poky/scripts/lib/wic/ |
H A D | pluginbase.py | 66 def __new__(cls, name, bases, attrs): argument 67 class_type = type.__new__(cls, name, bases, attrs)
|
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/migrations/ |
H A D | 0003_customimagepackage.py | 22 bases=('orm.package',),
|
H A D | 0002_customimagerecipe.py | 22 bases=('orm.recipe',),
|
/openbmc/linux/drivers/gpu/drm/exynos/ |
H A D | exynos_drm_scaler.c | 155 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()
|
/openbmc/linux/arch/x86/kernel/ |
H A D | early_printk.c | 162 static const int __initconst bases[] = { 0x3f8, 0x2f8 }; in early_serial_init() local 169 early_serial_base = bases[port]; in early_serial_init()
|
/openbmc/qemu/hw/xen/ |
H A D | xen_pt.c | 275 (s->bases[index].bar_flag == XEN_PT_BAR_FLAG_UNUSED)) { in xen_pt_pci_write_config() 471 s->bases[i].access.u = r->base_addr; in xen_pt_register_regions() 509 s->bases[PCI_ROM_SLOT].access.maddr = d->rom.base_addr; in xen_pt_register_regions() 629 uint32_t machine_port = s->bases[bar].access.pio_base; in xen_pt_region_update() 640 pcibus_t machine_addr = s->bases[bar].access.maddr in xen_pt_region_update()
|
H A D | xen_pt_config_init.c | 377 region = &s->bases[index - 1]; in xen_pt_bar_reg_parse() 425 s->bases[index].bar_flag = xen_pt_bar_reg_parse(s, index); in xen_pt_bar_reg_init() 426 if (s->bases[index].bar_flag == XEN_PT_BAR_FLAG_UNUSED) { in xen_pt_bar_reg_init() 452 switch (s->bases[index].bar_flag) { in xen_pt_bar_reg_read() 494 base = &s->bases[index]; in xen_pt_bar_reg_write() 498 switch (s->bases[index].bar_flag) { in xen_pt_bar_reg_write() 527 switch (s->bases[index].bar_flag) { in xen_pt_bar_reg_write() 560 base = &s->bases[PCI_ROM_SLOT]; in xen_pt_exp_rom_bar_reg_write()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/ltrace/ltrace/ |
H A D | 0001-mips-Use-hardcodes-values-for-ABI-syscall-bases.patch | 4 Subject: [PATCH] mips: Use hardcodes values for ABI syscall bases
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/ltrace/ |
H A D | ltrace_git.bb | 28 file://0001-mips-Use-hardcodes-values-for-ABI-syscall-bases.patch \
|
/openbmc/linux/Documentation/devicetree/bindings/interrupt-controller/ |
H A D | mediatek,sysirq.txt | 32 mapped region. Could be multiple bases here. Ex: mt6797 needs 2 reg, others
|
/openbmc/linux/drivers/net/wireless/broadcom/b43/ |
H A D | pio.c | 82 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()
|