/openbmc/linux/arch/ia64/kernel/ |
H A D | gate.S | 72 # define base0 r2 macro 120 adds base0=SIGHANDLER_OFF,sp 124 ld8 r17=[base0],(ARG0_OFF-SIGHANDLER_OFF) // get pointer to signal handler's plabel 134 ld8 out0=[base0],16 // load arg0 (signum) 140 ld8 out2=[base0] // load arg2 (sigcontextp) 142 adds base0=(BSP_OFF+SIGCONTEXT_OFF),sp 145 st8 [base0]=r9 // save sc_ar_bsp 146 adds base0=(FR6_OFF+SIGCONTEXT_OFF),sp 149 stf.spill [base0]=f6,32 152 stf.spill [base0]=f8,32 [all …]
|
/openbmc/u-boot/post/lib_powerpc/ |
H A D | load.c | 170 ulong base0 = (ulong) (data + 8); in cpu_post_test_load() local 171 ulong base = base0; in cpu_post_test_load() 198 ret = base == base0 + test->offset ? 0 : -1; in cpu_post_test_load() 200 ret = base == base0 ? 0 : -1; in cpu_post_test_load() 208 ret = *(uchar *)(base0 + test->offset) == value ? in cpu_post_test_load() 212 ret = *(ushort *)(base0 + test->offset) == value ? in cpu_post_test_load() 216 ret = *(short *)(base0 + test->offset) == value ? in cpu_post_test_load() 220 ret = *(ulong *)(base0 + test->offset) == value ? in cpu_post_test_load()
|
H A D | store.c | 155 ulong base0 = (ulong) (data + 8); in cpu_post_test_store() local 156 ulong base = base0; in cpu_post_test_store() 182 ret = base == base0 + test->offset ? 0 : -1; in cpu_post_test_store() 184 ret = base == base0 ? 0 : -1; in cpu_post_test_store() 192 ret = *(uchar *)(base0 + test->offset) == test->value ? in cpu_post_test_store() 196 ret = *(ushort *)(base0 + test->offset) == test->value ? in cpu_post_test_store() 200 ret = *(ulong *)(base0 + test->offset) == test->value ? in cpu_post_test_store()
|
/openbmc/linux/drivers/mfd/ |
H A D | mcp-sa11x0.c | 28 void __iomem *base0; member 35 #define MCCR0(m) ((m)->base0 + 0x00) 36 #define MCDR0(m) ((m)->base0 + 0x08) 37 #define MCDR1(m) ((m)->base0 + 0x0c) 38 #define MCDR2(m) ((m)->base0 + 0x10) 39 #define MCSR(m) ((m)->base0 + 0x18) 195 m->base0 = ioremap(mem0->start, resource_size(mem0)); in mcp_sa11x0_probe() 197 if (!m->base0 || !m->base1) { in mcp_sa11x0_probe() 225 iounmap(m->base0); in mcp_sa11x0_probe() 250 iounmap(m->base0); in mcp_sa11x0_remove()
|
/openbmc/linux/drivers/pinctrl/bcm/ |
H A D | pinctrl-nsp-mux.c | 111 void __iomem *base0; member 425 base_address = pinctrl->base0; in nsp_pinmux_set() 484 val = readl(pinctrl->base0); in nsp_gpio_request_enable() 488 writel(val, pinctrl->base0); in nsp_gpio_request_enable() 505 val = readl(pinctrl->base0); in nsp_gpio_disable_free() 510 writel(val, pinctrl->base0); in nsp_gpio_disable_free() 568 pinctrl->base0 = devm_platform_ioremap_resource(pdev, 0); in nsp_pinmux_probe() 569 if (IS_ERR(pinctrl->base0)) in nsp_pinmux_probe() 570 return PTR_ERR(pinctrl->base0); in nsp_pinmux_probe()
|
H A D | pinctrl-cygnus-mux.c | 103 void __iomem *base0; member 813 val = readl(pinctrl->base0 + grp->mux.offset); in cygnus_pinmux_set() 816 writel(val, pinctrl->base0 + grp->mux.offset); in cygnus_pinmux_set() 948 pinctrl->base0 = devm_platform_ioremap_resource(pdev, 0); in cygnus_pinmux_probe() 949 if (IS_ERR(pinctrl->base0)) { in cygnus_pinmux_probe() 951 return PTR_ERR(pinctrl->base0); in cygnus_pinmux_probe()
|
H A D | pinctrl-ns2-mux.c | 117 void __iomem *base0; member 609 base_address = pinctrl->base0; in ns2_pinmux_set() 1039 pinctrl->base0 = devm_platform_ioremap_resource(pdev, 0); in ns2_pinmux_probe() 1040 if (IS_ERR(pinctrl->base0)) in ns2_pinmux_probe() 1041 return PTR_ERR(pinctrl->base0); in ns2_pinmux_probe()
|
/openbmc/linux/drivers/perf/arm_cspmu/ |
H A D | arm_cspmu.c | 405 readl(cspmu->base0 + PMIIDR); in arm_cspmu_init_impl_ops() 515 writel(pmcr, cspmu->base0 + PMCR); in arm_cspmu_reset_counters() 520 writel(PMCR_E, cspmu->base0 + PMCR); in arm_cspmu_start_counters() 525 writel(0, cspmu->base0 + PMCR); in arm_cspmu_stop_counters() 754 writel(BIT(reg_bit), cspmu->base0 + inten_off); in arm_cspmu_enable_counter() 755 writel(BIT(reg_bit), cspmu->base0 + cnten_off); in arm_cspmu_enable_counter() 768 writel(BIT(reg_bit), cspmu->base0 + cnten_off); in arm_cspmu_disable_counter() 769 writel(BIT(reg_bit), cspmu->base0 + inten_off); in arm_cspmu_disable_counter() 792 writel(hwc->config, cspmu->base0 + offset); in arm_cspmu_set_event() 801 writel(filter, cspmu->base0 + offset); in arm_cspmu_set_ev_filter() [all …]
|
H A D | arm_cspmu.h | 122 void __iomem *base0; member
|
/openbmc/linux/arch/x86/include/asm/ |
H A D | desc_defs.h | 18 u16 base0; member 27 .base0 = (u16) (base), \ 56 u16 base0; member
|
H A D | desc.h | 20 desc->base0 = (info->base_addr & 0x0000ffff); in fill_ldt() 169 desc->base0 = (u16) addr; in set_tssldt_descriptor() 384 return (unsigned)(desc->base0 | ((desc->base1) << 16) | ((desc->base2) << 24)); in get_desc_base() 389 desc->base0 = base & 0xffff; in set_desc_base()
|
/openbmc/linux/drivers/gpio/ |
H A D | gpio-em.c | 24 void __iomem *base0; member 61 return ioread32(p->base0 + offs); in em_gio_read() 70 iowrite32(value, p->base0 + offs); in em_gio_write() 295 p->base0 = devm_platform_ioremap_resource(pdev, 0); in em_gio_probe() 296 if (IS_ERR(p->base0)) in em_gio_probe() 297 return PTR_ERR(p->base0); in em_gio_probe()
|
/openbmc/linux/arch/arm/kernel/ |
H A D | bios32.c | 206 u32 base0, base1; in pci_fixup_cy82c693() local 209 base0 = 0x1f0; in pci_fixup_cy82c693() 212 base0 = 0x170; in pci_fixup_cy82c693() 217 base0 | PCI_BASE_ADDRESS_SPACE_IO); in pci_fixup_cy82c693()
|
/openbmc/qemu/target/i386/hvf/ |
H A D | x86.h | 124 uint64_t base0:16; member 140 return (uint32_t)((desc->base2 << 24) | (desc->base1 << 16) | desc->base0); in x86_segment_base() 148 desc->base0 = base & 0xffff; in x86_set_segment_base()
|
/openbmc/linux/drivers/pinctrl/ |
H A D | pinctrl-keembay.c | 116 void __iomem *base0; member 1188 return keembay_read_pin(kpc->base0 + offset, pin); in keembay_gpio_get() 1196 reg_val = keembay_read_gpio_reg(kpc->base0 + KEEMBAY_GPIO_DATA_OUT, pin); in keembay_gpio_set() 1199 kpc->base0 + KEEMBAY_GPIO_DATA_HIGH, pin); in keembay_gpio_set() 1202 kpc->base0 + KEEMBAY_GPIO_DATA_LOW, pin); in keembay_gpio_set() 1270 val = keembay_read_pin(kpc->base0 + KEEMBAY_GPIO_DATA_IN, pin); in keembay_gpio_irq_handler() 1672 kpc->base0 = devm_platform_ioremap_resource(pdev, 0); in keembay_pinctrl_probe() 1673 if (IS_ERR(kpc->base0)) in keembay_pinctrl_probe() 1674 return PTR_ERR(kpc->base0); in keembay_pinctrl_probe()
|
/openbmc/linux/arch/x86/math-emu/ |
H A D | fpu_system.h | 48 return base | ((unsigned long)d->base1 << 16) | d->base0; in seg_get_base()
|
/openbmc/linux/drivers/bluetooth/ |
H A D | btmrvl_sdio.c | 563 u8 base0, base1; in btmrvl_sdio_download_fw_w_helper() local 611 base0 = sdio_readb(card->func, in btmrvl_sdio_download_fw_w_helper() 617 base0, base0); in btmrvl_sdio_download_fw_w_helper() 632 len = (((u16) base1) << 8) | base0; in btmrvl_sdio_download_fw_w_helper()
|
/openbmc/linux/arch/x86/hyperv/ |
H A D | hv_vtl.c | 54 (desc->base1 << 16) | desc->base0; in hv_vtl_system_desc_base()
|
/openbmc/u-boot/arch/arm/include/asm/arch-ep93xx/ |
H A D | ep93xx.h | 43 uint32_t base0; member
|
/openbmc/linux/drivers/net/wireless/marvell/mwifiex/ |
H A D | sdio.c | 1440 u8 base0, base1; in mwifiex_prog_fw_w_helper() local 1482 &base0); in mwifiex_prog_fw_w_helper() 1487 base0, base0); in mwifiex_prog_fw_w_helper() 1499 len = (u16) (((base1 & 0xff) << 8) | (base0 & 0xff)); in mwifiex_prog_fw_w_helper()
|
/openbmc/linux/tools/testing/selftests/kvm/include/x86_64/ |
H A D | processor.h | 365 uint16_t base0; member 395 (desc->base0 | ((desc->base1) << 16) | ((desc->base2) << 24)); in get_desc64_base()
|
/openbmc/linux/arch/x86/mm/ |
H A D | fault.c | 499 addr = desc.base0 | (desc.base1 << 16) | ((unsigned long)desc.base2 << 24); in show_ldttss()
|
/openbmc/u-boot/arch/arm/dts/ |
H A D | sun5i.dtsi | 477 nand_pins_a: nand-base0@0 {
|
/openbmc/linux/drivers/edac/ |
H A D | amd64_edac.c | 1775 u32 *base0 = &pvt->csels[0].csbases[cs]; in dct_read_base_mask() local 1778 if (!amd64_read_dct_pci_cfg(pvt, 0, reg0, base0)) in dct_read_base_mask() 1780 cs, *base0, reg0); in dct_read_base_mask()
|
/openbmc/linux/tools/testing/selftests/kvm/lib/x86_64/ |
H A D | processor.c | 407 desc->base0 = segp->base & 0xFFFF; in kvm_seg_fill_gdt_64bit()
|