/linux-4.1.27/drivers/net/ethernet/sun/ |
D | sungem.c | 118 static u16 __sungem_phy_read(struct gem *gp, int phy_addr, int reg) in __sungem_phy_read() argument 128 writel(cmd, gp->regs + MIF_FRAME); in __sungem_phy_read() 131 cmd = readl(gp->regs + MIF_FRAME); in __sungem_phy_read() 146 struct gem *gp = netdev_priv(dev); in _sungem_phy_read() local 147 return __sungem_phy_read(gp, mii_id, reg); in _sungem_phy_read() 150 static inline u16 sungem_phy_read(struct gem *gp, int reg) in sungem_phy_read() argument 152 return __sungem_phy_read(gp, gp->mii_phy_addr, reg); in sungem_phy_read() 155 static void __sungem_phy_write(struct gem *gp, int phy_addr, int reg, u16 val) in __sungem_phy_write() argument 166 writel(cmd, gp->regs + MIF_FRAME); in __sungem_phy_write() 169 cmd = readl(gp->regs + MIF_FRAME); in __sungem_phy_write() [all …]
|
D | sungem.h | 878 #define RXDCTRL_FRESH(gp) \ argument 879 ((((RX_BUF_ALLOC_SIZE(gp) - RX_OFFSET) << 16) & RXDCTRL_BUFSZ) | \ 938 #define RX_BUF_ALLOC_SIZE(gp) ((gp)->rx_buf_sz + 28 + RX_OFFSET + 64) argument 1024 #define found_mii_phy(gp) ((gp->phy_type == phy_mii_mdio0 || gp->phy_type == phy_mii_mdio1) && \ argument 1025 gp->phy_mii.def && gp->phy_mii.def->ops)
|
/linux-4.1.27/drivers/video/fbdev/ |
D | sunxvr1000.c | 28 static int gfb_get_props(struct gfb_info *gp) in gfb_get_props() argument 30 gp->width = of_getintprop_default(gp->of_node, "width", 0); in gfb_get_props() 31 gp->height = of_getintprop_default(gp->of_node, "height", 0); in gfb_get_props() 32 gp->depth = of_getintprop_default(gp->of_node, "depth", 32); in gfb_get_props() 34 if (!gp->width || !gp->height) { in gfb_get_props() 36 gp->of_node->full_name); in gfb_get_props() 69 static int gfb_set_fbinfo(struct gfb_info *gp) in gfb_set_fbinfo() argument 71 struct fb_info *info = gp->info; in gfb_set_fbinfo() 76 info->screen_base = gp->fb_base; in gfb_set_fbinfo() 77 info->screen_size = gp->fb_size; in gfb_set_fbinfo() [all …]
|
/linux-4.1.27/net/phonet/ |
D | pep-gprs.c | 64 static void gprs_writeable(struct gprs_dev *gp) in gprs_writeable() argument 66 struct net_device *dev = gp->dev; in gprs_writeable() 68 if (pep_writeable(gp->sk)) in gprs_writeable() 78 struct gprs_dev *gp = sk->sk_user_data; in gprs_state_change() local 81 struct net_device *dev = gp->dev; in gprs_state_change() 88 static int gprs_recv(struct gprs_dev *gp, struct sk_buff *skb) in gprs_recv() argument 90 struct net_device *dev = gp->dev; in gprs_recv() 151 struct gprs_dev *gp = sk->sk_user_data; in gprs_data_ready() local 156 gprs_recv(gp, skb); in gprs_data_ready() 162 struct gprs_dev *gp = sk->sk_user_data; in gprs_write_space() local [all …]
|
/linux-4.1.27/arch/x86/um/asm/ |
D | elf.h | 151 (pr_reg)[0] = (_regs)->regs.gp[0]; \ 152 (pr_reg)[1] = (_regs)->regs.gp[1]; \ 153 (pr_reg)[2] = (_regs)->regs.gp[2]; \ 154 (pr_reg)[3] = (_regs)->regs.gp[3]; \ 155 (pr_reg)[4] = (_regs)->regs.gp[4]; \ 156 (pr_reg)[5] = (_regs)->regs.gp[5]; \ 157 (pr_reg)[6] = (_regs)->regs.gp[6]; \ 158 (pr_reg)[7] = (_regs)->regs.gp[7]; \ 159 (pr_reg)[8] = (_regs)->regs.gp[8]; \ 160 (pr_reg)[9] = (_regs)->regs.gp[9]; \ [all …]
|
/linux-4.1.27/arch/x86/um/shared/sysdep/ |
D | ptrace.h | 25 #define UPT_IP(r) REGS_IP((r)->gp) 26 #define UPT_SP(r) REGS_SP((r)->gp) 27 #define UPT_EFLAGS(r) REGS_EFLAGS((r)->gp) 28 #define UPT_AX(r) REGS_AX((r)->gp) 29 #define UPT_BX(r) REGS_BX((r)->gp) 30 #define UPT_CX(r) REGS_CX((r)->gp) 31 #define UPT_DX(r) REGS_DX((r)->gp) 32 #define UPT_SI(r) REGS_SI((r)->gp) 33 #define UPT_DI(r) REGS_DI((r)->gp) 34 #define UPT_BP(r) REGS_BP((r)->gp) [all …]
|
D | ptrace_64.h | 44 #define UPT_R8(r) REGS_R8((r)->gp) 45 #define UPT_R9(r) REGS_R9((r)->gp) 46 #define UPT_R10(r) REGS_R10((r)->gp) 47 #define UPT_R11(r) REGS_R11((r)->gp) 48 #define UPT_R12(r) REGS_R12((r)->gp) 49 #define UPT_R13(r) REGS_R13((r)->gp) 50 #define UPT_R14(r) REGS_R14((r)->gp) 51 #define UPT_R15(r) REGS_R15((r)->gp)
|
/linux-4.1.27/sound/pci/au88x0/ |
D | au88x0_game.c | 97 struct gameport *gp; in vortex_gameport_register() local 99 vortex->gameport = gp = gameport_allocate_port(); in vortex_gameport_register() 100 if (!gp) { in vortex_gameport_register() 106 gameport_set_name(gp, "AU88x0 Gameport"); in vortex_gameport_register() 107 gameport_set_phys(gp, "pci%s/gameport0", pci_name(vortex->pci_dev)); in vortex_gameport_register() 108 gameport_set_dev_parent(gp, &vortex->pci_dev->dev); in vortex_gameport_register() 110 gp->read = vortex_game_read; in vortex_gameport_register() 111 gp->trigger = vortex_game_trigger; in vortex_gameport_register() 112 gp->cooked_read = vortex_game_cooked_read; in vortex_gameport_register() 113 gp->open = vortex_game_open; in vortex_gameport_register() [all …]
|
/linux-4.1.27/drivers/gpio/ |
D | gpio-amd8111.c | 162 static struct amd_gpio gp = { variable 202 err = pci_read_config_dword(pdev, 0x58, &gp.pmbase); in amd_gpio_init() 206 gp.pmbase &= 0x0000FF00; in amd_gpio_init() 207 if (gp.pmbase == 0) in amd_gpio_init() 209 if (!request_region(gp.pmbase + PMBASE_OFFSET, PMBASE_SIZE, "AMD GPIO")) { in amd_gpio_init() 211 gp.pmbase + PMBASE_OFFSET); in amd_gpio_init() 215 gp.pm = ioport_map(gp.pmbase + PMBASE_OFFSET, PMBASE_SIZE); in amd_gpio_init() 216 if (!gp.pm) { in amd_gpio_init() 218 release_region(gp.pmbase + PMBASE_OFFSET, PMBASE_SIZE); in amd_gpio_init() 222 gp.pdev = pdev; in amd_gpio_init() [all …]
|
D | gpio-da9055.c | 35 struct gpio_chip gp; member 40 return container_of(chip, struct da9055_gpio, gp); in to_da9055_gpio() 155 gpio->gp = reference_gp; in da9055_gpio_probe() 157 gpio->gp.base = pdata->gpio_base; in da9055_gpio_probe() 159 ret = gpiochip_add(&gpio->gp); in da9055_gpio_probe() 177 gpiochip_remove(&gpio->gp); in da9055_gpio_remove()
|
D | gpio-da9052.c | 51 struct gpio_chip gp; member 56 return container_of(chip, struct da9052_gpio, gp); in to_da9052_gpio() 221 gpio->gp = reference_gp; in da9052_gpio_probe() 223 gpio->gp.base = pdata->gpio_base; in da9052_gpio_probe() 225 ret = gpiochip_add(&gpio->gp); in da9052_gpio_probe() 240 gpiochip_remove(&gpio->gp); in da9052_gpio_remove()
|
/linux-4.1.27/drivers/input/gameport/ |
D | fm801-gp.c | 82 struct fm801_gp *gp; in fm801_gp_probe() local 86 gp = kzalloc(sizeof(struct fm801_gp), GFP_KERNEL); in fm801_gp_probe() 88 if (!gp || !port) { in fm801_gp_probe() 107 gp->gameport = port; in fm801_gp_probe() 108 gp->res_port = request_region(port->io, 0x10, "FM801 GP"); in fm801_gp_probe() 109 if (!gp->res_port) { in fm801_gp_probe() 116 pci_set_drvdata(pci, gp); in fm801_gp_probe() 127 kfree(gp); in fm801_gp_probe() 133 struct fm801_gp *gp = pci_get_drvdata(pci); in fm801_gp_remove() local 135 gameport_unregister_port(gp->gameport); in fm801_gp_remove() [all …]
|
D | Makefile | 8 obj-$(CONFIG_GAMEPORT_EMU10K1) += emu10k1-gp.o 9 obj-$(CONFIG_GAMEPORT_FM801) += fm801-gp.o
|
D | Kconfig | 50 module will be called emu10k1-gp. 61 module will be called fm801-gp.
|
/linux-4.1.27/drivers/net/wireless/ti/wl12xx/ |
D | cmd.c | 66 struct wl1271_ini_general_params *gp = in wl1271_cmd_general_parms() local 75 if (gp->tx_bip_fem_manufacturer >= WL1271_INI_FEM_MODULE_COUNT) { in wl1271_cmd_general_parms() 86 memcpy(&gen_parms->general_params, gp, sizeof(*gp)); in wl1271_cmd_general_parms() 104 gp->tx_bip_fem_manufacturer = in wl1271_cmd_general_parms() 107 if (gp->tx_bip_fem_manufacturer >= WL1271_INI_FEM_MODULE_COUNT) { in wl1271_cmd_general_parms() 115 wl->fem_manuf = gp->tx_bip_fem_manufacturer; in wl1271_cmd_general_parms() 123 gp->tx_bip_fem_manufacturer); in wl1271_cmd_general_parms() 133 struct wl128x_ini_general_params *gp = in wl128x_cmd_general_parms() local 142 if (gp->tx_bip_fem_manufacturer >= WL1271_INI_FEM_MODULE_COUNT) { in wl128x_cmd_general_parms() 153 memcpy(&gen_parms->general_params, gp, sizeof(*gp)); in wl128x_cmd_general_parms() [all …]
|
/linux-4.1.27/arch/x86/um/os-Linux/ |
D | mcontext.c | 9 #define COPY2(X,Y) regs->gp[X] = mc->gregs[REG_##Y] in get_regs_from_mc() 10 #define COPY(X) regs->gp[X] = mc->gregs[REG_##X] in get_regs_from_mc() 11 #define COPY_SEG(X) regs->gp[X] = mc->gregs[REG_##X] & 0xffff; in get_regs_from_mc() 12 #define COPY_SEG_CPL3(X) regs->gp[X] = (mc->gregs[REG_##X] & 0xffff) | 3; in get_regs_from_mc() 19 #define COPY2(X,Y) regs->gp[X/sizeof(unsigned long)] = mc->gregs[REG_##Y] in get_regs_from_mc() 20 #define COPY(X) regs->gp[X/sizeof(unsigned long)] = mc->gregs[REG_##X] in get_regs_from_mc() 28 regs->gp[CS / sizeof(unsigned long)] &= 0xffff; in get_regs_from_mc() 29 regs->gp[CS / sizeof(unsigned long)] |= 3; in get_regs_from_mc()
|
/linux-4.1.27/sound/mips/ |
D | ad1843.c | 296 const struct ad1843_gain *gp = ad1843_gain[id]; in ad1843_get_gain_max() local 299 ret = (1 << gp->lfield->nbits); in ad1843_get_gain_max() 300 if (!gp->lmute) in ad1843_get_gain_max() 313 const struct ad1843_gain *gp = ad1843_gain[id]; in ad1843_get_gain() local 314 unsigned short mask = (1 << gp->lfield->nbits) - 1; in ad1843_get_gain() 316 ad1843_read_multi(ad1843, 2, gp->lfield, &lg, gp->rfield, &rg); in ad1843_get_gain() 317 if (gp->negative) { in ad1843_get_gain() 321 if (gp->lmute) { in ad1843_get_gain() 322 ad1843_read_multi(ad1843, 2, gp->lmute, &lm, gp->rmute, &rm); in ad1843_get_gain() 339 const struct ad1843_gain *gp = ad1843_gain[id]; in ad1843_set_gain() local [all …]
|
/linux-4.1.27/sound/ppc/ |
D | tumbler.c | 172 #define do_gpio_write(gp, val) \ argument 173 pmac_call_feature(PMAC_FTR_WRITE_GPIO, NULL, (gp)->addr, val) 174 #define do_gpio_read(gp) \ argument 175 pmac_call_feature(PMAC_FTR_READ_GPIO, NULL, (gp)->addr, 0) 176 #define tumbler_gpio_free(gp) /* NOP */ argument 178 static void write_audio_gpio(struct pmac_gpio *gp, int active) in write_audio_gpio() argument 180 if (! gp->addr) in write_audio_gpio() 182 active = active ? gp->active_val : gp->inactive_val; in write_audio_gpio() 183 do_gpio_write(gp, active); in write_audio_gpio() 184 DBG("(I) gpio %x write %d\n", gp->addr, active); in write_audio_gpio() [all …]
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | ebony.dts | 55 compatible = "ibm,uic-440gp", "ibm,uic"; 66 compatible = "ibm,uic-440gp", "ibm,uic"; 78 compatible = "ibm,cpc-440gp"; 84 compatible = "ibm,plb-440gp", "ibm,plb4"; 91 compatible = "ibm,sdram-440gp"; 97 compatible = "ibm,sram-440gp"; 103 compatible = "ibm,dma-440gp"; 108 compatible = "ibm,mcmal-440gp", "ibm,mcmal"; 126 compatible = "ibm,opb-440gp", "ibm,opb"; 139 compatible = "ibm,ebc-440gp", "ibm,ebc"; [all …]
|
D | sam440ep.dts | 90 compatible = "ibm,plb-440ep", "ibm,plb-440gp", "ibm,plb4"; 97 compatible = "ibm,sdram-440ep", "ibm,sdram-405gp"; 102 compatible = "ibm,dma-440ep", "ibm,dma-440gp"; 107 compatible = "ibm,mcmal-440ep", "ibm,mcmal-440gp", "ibm,mcmal"; 124 compatible = "ibm,opb-440ep", "ibm,opb-440gp", "ibm,opb"; 137 compatible = "ibm,ebc-440ep", "ibm,ebc-440gp", "ibm,ebc"; 193 compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; 205 compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; 213 compatible = "ibm,zmii-440ep", "ibm,zmii-440gp", "ibm,zmii"; 220 compatible = "ibm,emac-440ep", "ibm,emac-440gp", "ibm,emac"; [all …]
|
D | bamboo.dts | 89 compatible = "ibm,plb-440ep", "ibm,plb-440gp", "ibm,plb4"; 96 compatible = "ibm,sdram-440ep", "ibm,sdram-405gp"; 101 compatible = "ibm,dma-440ep", "ibm,dma-440gp"; 106 compatible = "ibm,mcmal-440ep", "ibm,mcmal-440gp", "ibm,mcmal"; 123 compatible = "ibm,opb-440ep", "ibm,opb-440gp", "ibm,opb"; 136 compatible = "ibm,ebc-440ep", "ibm,ebc-440gp", "ibm,ebc"; 190 compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; 197 compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; 204 compatible = "ibm,zmii-440ep", "ibm,zmii-440gp", "ibm,zmii"; 210 compatible = "ibm,emac-440ep", "ibm,emac-440gp", "ibm,emac"; [all …]
|
D | warp.dts | 83 compatible = "ibm,plb-440ep", "ibm,plb-440gp", "ibm,plb4"; 90 compatible = "ibm,sdram-440ep", "ibm,sdram-405gp"; 95 compatible = "ibm,dma-440ep", "ibm,dma-440gp"; 100 compatible = "ibm,mcmal-440ep", "ibm,mcmal-440gp", "ibm,mcmal"; 117 compatible = "ibm,opb-440ep", "ibm,opb-440gp", "ibm,opb"; 127 compatible = "ibm,ebc-440ep", "ibm,ebc-440gp", "ibm,ebc"; 225 compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; 273 compatible = "ibm,zmii-440ep", "ibm,zmii-440gp", "ibm,zmii"; 279 compatible = "ibm,emac-440ep", "ibm,emac-440gp", "ibm,emac";
|
D | yosemite.dts | 87 compatible = "ibm,plb-440ep", "ibm,plb-440gp", "ibm,plb4"; 94 compatible = "ibm,sdram-440ep", "ibm,sdram-405gp"; 99 compatible = "ibm,dma-440ep", "ibm,dma-440gp"; 104 compatible = "ibm,mcmal-440ep", "ibm,mcmal-440gp", "ibm,mcmal"; 121 compatible = "ibm,opb-440ep", "ibm,opb-440gp", "ibm,opb"; 134 compatible = "ibm,ebc-440ep", "ibm,ebc-440gp", "ibm,ebc"; 226 compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; 233 compatible = "ibm,iic-440ep", "ibm,iic-440gp", "ibm,iic"; 247 compatible = "ibm,zmii-440ep", "ibm,zmii-440gp", "ibm,zmii"; 253 compatible = "ibm,emac-440ep", "ibm,emac-440gp", "ibm,emac"; [all …]
|
D | ep405.dts | 69 compatible = "ibm,sdram-405gp"; 74 compatible = "ibm,mcmal-405gp", "ibm,mcmal"; 88 compatible = "ibm,opb-405gp", "ibm,opb"; 118 compatible = "ibm,iic-405gp", "ibm,iic"; 125 compatible = "ibm,gpio-405gp"; 132 compatible = "ibm,emac-405gp", "ibm,emac"; 153 compatible = "ibm,ebc-405gp", "ibm,ebc";
|
D | walnut.dts | 69 compatible = "ibm,sdram-405gp"; 74 compatible = "ibm,mcmal-405gp", "ibm,mcmal"; 88 compatible = "ibm,opb-405gp", "ibm,opb"; 118 compatible = "ibm,iic-405gp", "ibm,iic"; 125 compatible = "ibm,gpio-405gp"; 131 compatible = "ibm,emac-405gp", "ibm,emac"; 152 compatible = "ibm,ebc-405gp", "ibm,ebc";
|
D | taishan.dts | 104 compatible = "ibm,cpc-440gp"; 127 compatible = "ibm,sdram-440gp"; 133 compatible = "ibm,sram-440gp"; 139 compatible = "ibm,dma-440gp"; 245 compatible = "ibm,iic-440gp", "ibm,iic"; 252 compatible = "ibm,iic-440gp", "ibm,iic"; 260 compatible = "ibm,gpio-440gp";
|
D | icon.dts | 114 compatible = "ibm,plb-440spe", "ibm,plb-440gp", "ibm,plb4"; 131 compatible = "ibm,sdram-440spe", "ibm,sdram-405gp"; 153 compatible = "ibm,opb-440spe", "ibm,opb-440gp", "ibm,opb"; 160 compatible = "ibm,ebc-440spe", "ibm,ebc-440gp", "ibm,ebc"; 244 compatible = "ibm,iic-440spe", "ibm,iic-440gp", "ibm,iic"; 251 compatible = "ibm,iic-440spe", "ibm,iic-440gp", "ibm,iic";
|
D | katmai.dts | 118 compatible = "ibm,plb-440spe", "ibm,plb-440gp", "ibm,plb4"; 135 compatible = "ibm,sdram-440spe", "ibm,sdram-405gp"; 157 compatible = "ibm,opb-440spe", "ibm,opb-440gp", "ibm,opb"; 164 compatible = "ibm,ebc-440spe", "ibm,ebc-440gp", "ibm,ebc"; 241 compatible = "ibm,iic-440spe", "ibm,iic-440gp", "ibm,iic"; 248 compatible = "ibm,iic-440spe", "ibm,iic-440gp", "ibm,iic";
|
D | arches.dts | 146 compatible = "ibm,sdram-460gt", "ibm,sdram-405gp";
|
D | eiger.dts | 117 compatible = "ibm,sdram-460sx", "ibm,sdram-405gp";
|
D | redwood.dts | 113 compatible = "ibm,sdram-460sx", "ibm,sdram-405gp";
|
D | glacier.dts | 128 compatible = "ibm,sdram-460gt", "ibm,sdram-405gp";
|
D | canyonlands.dts | 135 compatible = "ibm,sdram-460ex", "ibm,sdram-405gp";
|
/linux-4.1.27/arch/sparc/kernel/ |
D | process_64.c | 232 static void __global_reg_poll(struct global_reg_snapshot *gp) in __global_reg_poll() argument 236 while (!gp->thread && ++limit < 100) { in __global_reg_poll() 264 struct global_reg_snapshot *gp; in arch_trigger_all_cpu_backtrace() local 269 gp = &global_cpu_snapshot[cpu].reg; in arch_trigger_all_cpu_backtrace() 271 __global_reg_poll(gp); in arch_trigger_all_cpu_backtrace() 273 tp = gp->thread; in arch_trigger_all_cpu_backtrace() 276 gp->tstate, gp->tpc, gp->tnpc, in arch_trigger_all_cpu_backtrace() 280 if (gp->tstate & TSTATE_PRIV) { in arch_trigger_all_cpu_backtrace() 282 (void *) gp->tpc, in arch_trigger_all_cpu_backtrace() 283 (void *) gp->o7, in arch_trigger_all_cpu_backtrace() [all …]
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/ |
D | iwl-eeprom-read.c | 131 u32 gp = iwl_read32(trans, CSR_EEPROM_GP) & CSR_EEPROM_GP_VALID_MSK; in iwl_eeprom_verify_signature() local 133 IWL_DEBUG_EEPROM(trans->dev, "EEPROM signature=0x%08x\n", gp); in iwl_eeprom_verify_signature() 135 switch (gp) { in iwl_eeprom_verify_signature() 139 gp); in iwl_eeprom_verify_signature() 146 IWL_ERR(trans, "OTP with bad signature: 0x%08x\n", gp); in iwl_eeprom_verify_signature() 154 nvm_is_otp ? "OTP" : "EEPROM", gp); in iwl_eeprom_verify_signature() 361 u32 gp = iwl_read32(trans, CSR_EEPROM_GP); in iwl_read_eeprom() local 385 IWL_ERR(trans, "EEPROM not found, EEPROM_GP=0x%08x\n", gp); in iwl_read_eeprom()
|
/linux-4.1.27/arch/mips/kernel/ |
D | smp-cmp.c | 83 struct thread_info *gp = task_thread_info(idle); in cmp_boot_secondary() local 93 flush_icache_range((unsigned long)gp, in cmp_boot_secondary() 94 (unsigned long)(gp + sizeof(struct thread_info))); in cmp_boot_secondary() 97 amon_cpu_start(cpu, pc, sp, (unsigned long)gp, a0); in cmp_boot_secondary()
|
D | smp-mt.c | 197 struct thread_info *gp = task_thread_info(idle); in vsmp_boot_secondary() local 218 write_tc_gpr_gp((unsigned long)gp); in vsmp_boot_secondary() 220 flush_icache_range((unsigned long)gp, in vsmp_boot_secondary() 221 (unsigned long)(gp + sizeof(struct thread_info))); in vsmp_boot_secondary()
|
D | cps-vec.S | 182 lw gp, VPEBOOTCFG_GP(v0) 400 mttgpr t1, gp 467 lw $1, TI_CPU(gp)
|
D | bmips_vec.S | 198 lw gp, 0(k0)
|
D | pm-cps.c | 85 t8, t9, k0, k1, gp, sp, fp, ra, enumerator 159 vpe_cfg->gp = (unsigned long)current_thread_info(); in cps_pm_enter_state()
|
D | smp-cps.c | 239 vpe_cfg->gp = (unsigned long)task_thread_info(idle); in cps_boot_secondary()
|
D | asm-offsets.c | 465 OFFSET(VPEBOOTCFG_GP, vpe_boot_config, gp); in output_cps_defines()
|
/linux-4.1.27/arch/ia64/kernel/ |
D | esi.c | 39 u64 gp; member 45 void *gp; member 122 pdesc.gp = __va(esi->gp); in ia64_esi_call() 174 pdesc.gp = (void *)esi->gp; in ia64_esi_call_phys()
|
D | machine_kexec.c | 90 u64 fp, gp; in ia64_machine_kexec() local 101 gp = ia64_tpa(ia64_getreg(_IA64_REG_GP)); in ia64_machine_kexec() 102 ia64_sal_set_vectors(SAL_VECTOR_OS_INIT, fp, gp, 0, fp, gp, 0); in ia64_machine_kexec()
|
D | module.c | 534 return (uint64_t) e - mod->arch.gp; in get_ltoff() 540 return value - mod->arch.gp + MAX_LTOFF/2 < MAX_LTOFF; in gp_addressable() 620 fdesc->gp = mod->arch.gp; in get_fdesc() 640 case RV_GPREL: val -= mod->arch.gp; break; in do_reloc() 724 val -= mod->arch.gp; in do_reloc() 815 if (!mod->arch.gp) { in apply_relocate_add() 820 uint64_t gp; in apply_relocate_add() local 826 gp = mod->core_size - MAX_LTOFF / 2; in apply_relocate_add() 828 gp = mod->core_size / 2; in apply_relocate_add() 829 gp = (uint64_t) mod->module_core + ((gp + 7) & -8); in apply_relocate_add() [all …]
|
D | esi_stub.S | 69 mov loc2=gp // save global pointer 73 ld8 gp=[in0] // load ESI function's global pointer 94 mov gp=loc2
|
D | efi_stub.S | 52 mov loc2=gp // save global pointer 56 ld8 gp=[in0] // load EFI function's global pointer 84 mov gp=loc2
|
D | paravirt.c | 409 __DEFINE_GET_REG(GP, gp) 495 __DEFINE_SET_REG(GP, gp) 692 IA64_NATIVE_PATCH_DEFINE_REG(gp, gp); 804 IA64_NATIVE_PATCH_BUNDLE_ELEM_REG(gp, GP),
|
D | unwind_i.h | 51 unsigned long gp; /* global pointer for this load-module */ member
|
D | smpboot.c | 780 unsigned long gp; in init_smp_config() member 787 ia64_tpa(ap_startup->fp), ia64_tpa(ap_startup->gp), 0, 0, 0, 0); in init_smp_config()
|
D | entry.S | 591 mov loc2=gp 596 ld8 gp = [r4] // fn.gp 599 .ret12: mov gp=loc2 1343 mov loc2=gp // save gp across indirect function call 1345 ld8 gp=[in0] 1348 1: mov gp=loc2 // restore gp 1380 movl gp=__gp
|
D | sal.c | 126 ia64_sal_handler_init(__va(ep->sal_proc), __va(ep->gp)); in sal_desc_entry_point()
|
D | gate.S | 140 ld8 gp=[r17] // get signal handler's global pointer
|
D | unwind.c | 2082 unsigned long gp, const void *table_start, const void *table_end) in init_unwind_table() argument 2088 table->gp = gp; in init_unwind_table() 2096 unw_add_unwind_table (const char *name, unsigned long segment_base, unsigned long gp, in unw_add_unwind_table() argument 2113 init_unwind_table(table, name, segment_base, gp, table_start, table_end); in unw_add_unwind_table()
|
D | mca_drv.c | 547 pmsa->pmsa_gr[1-1] = mca_hdlr_bh->gp; in recover_from_read_error()
|
D | mca.c | 2014 ia64_tpa(mca_hldlr_ptr->gp), in ia64_mca_init() 2024 ia64_mc_info.imi_mca_handler, ia64_tpa(mca_hldlr_ptr->gp)); in ia64_mca_init()
|
D | kprobes.c | 1074 regs->r1 = ((struct fnptr *)(jp->entry))->gp; in setjmp_pre_handler()
|
D | head.S | 287 movl gp=__gp 446 .ret2: addl r3=@ltoff(halt_msg),gp
|
/linux-4.1.27/arch/alpha/kernel/ |
D | module.c | 153 unsigned long got, gp; in apply_relocate_add() local 163 gp = (u64)me->module_core + me->core_size - 0x8000; in apply_relocate_add() 190 value -= gp; in apply_relocate_add() 197 lo = hi - gp; in apply_relocate_add() 206 value = gp - (u64)location; in apply_relocate_add() 249 value = (long)(value - gp + 0x8000) >> 16; in apply_relocate_add() 255 value -= gp; in apply_relocate_add() 259 value -= gp; in apply_relocate_add()
|
D | core_wildfire.c | 185 wildfire_gp *gp; in wildfire_hardware_probe() local 226 gp = WILDFIRE_gp(soft_qbb); in wildfire_hardware_probe() 229 temp |= gp->gpa_qbb_map[i].csr << (i * 8); in wildfire_hardware_probe() 232 i, gp, temp); in wildfire_hardware_probe() 601 wildfire_gp *gp = WILDFIRE_gp(qbbno); in wildfire_dump_gp_regs() local 604 printk(KERN_ERR "GP registers for QBB %d (%p)\n", qbbno, gp); in wildfire_dump_gp_regs() 607 i, gp->gpa_qbb_map[i].csr); in wildfire_dump_gp_regs() 610 gp->gpa_mem_pop_map.csr); in wildfire_dump_gp_regs() 611 printk(KERN_ERR " GPA_SCRATCH: 0x%16lx\n", gp->gpa_scratch.csr); in wildfire_dump_gp_regs() 612 printk(KERN_ERR " GPA_DIAG: 0x%16lx\n", gp->gpa_diag.csr); in wildfire_dump_gp_regs() [all …]
|
D | entry.S | 30 .cfi_rel_offset $gp, 16 288 stq $gp, 232($sp) 346 ldq $gp, 232($sp) 451 .cfi_rel_offset $gp, 16 476 ldgp $gp, 0($26) 596 ldgp $gp, 0($26)
|
D | traps.c | 93 printk("gp = %016lx sp = %p\n", regs->gp, regs+1); in dik_show_regs() 447 unsigned long ps, pc, gp, a0, a1, a2; member 678 printk("gp = %016lx sp = %p\n", regs->gp, regs+1); in do_entUna() 768 R(r27), R(r28), R(gp),
|
D | process.c | 326 dest[29] = pt->gp; in dump_elf_thread()
|
D | signal.c | 186 err |= __get_user(regs->gp, sc->sc_regs+29); in restore_sigcontext() 321 err |= __put_user(regs->gp , sc->sc_regs+29); in setup_sigcontext()
|
D | ptrace.c | 89 PT_REG( r28), PT_REG( gp), -1, -1,
|
/linux-4.1.27/arch/powerpc/platforms/powermac/ |
D | pfunc_base.c | 97 struct device_node *gparent, *gp; in macio_gpio_init_one() local 117 for (gp = NULL; (gp = of_get_next_child(gparent, gp)) != NULL;) { in macio_gpio_init_one() 118 const u32 *reg = of_get_property(gp, "reg", NULL); in macio_gpio_init_one() 129 pmf_register_driver(gp, &macio_gpio_handlers, (void *)offset); in macio_gpio_init_one() 136 for (gp = NULL; (gp = of_get_next_child(gparent, gp)) != NULL;) in macio_gpio_init_one() 137 pmf_do_functions(gp, NULL, 0, PMF_FLAGS_ON_INIT, NULL); in macio_gpio_init_one()
|
/linux-4.1.27/drivers/macintosh/ |
D | windfarm_pm121.c | 364 s32 gp, itarget; member 374 .gp = 0x002A6666, 380 .gp = 0x0010CCCC, 389 .gp = 0x002D70A3, 395 .gp = 0x002170A3, 404 .gp = 0x003BD70A, 410 .gp = 0x0030F5C2, 419 .gp = 0x001FAE14, 425 .gp = 0x001FAE14, 553 pid_param.gp = param->gp; in pm121_create_sys_fans() [all …]
|
D | windfarm_pm81.c | 166 s32 gd, gp, gr; member 199 .gp = 0x00200000, 211 .gp = 0x00566666, 223 .gp = 0x00233333, 301 pid_param.gp = param->gp; in wf_smu_create_sys_fans() 440 pid_param.gp = piddata->gp; in wf_smu_create_cpu_fans()
|
D | windfarm_pid.h | 30 s32 gd, gp, gr; /* PID gains */ member 63 s32 gd, gp, gr; /* PID gains */ member
|
D | windfarm_pm112.c | 167 pid.gp = piddata->gp; in create_cpu_loop() 345 .gp = 5 << 20, 395 .gp = 5 << 20, 446 .gp = 0,
|
D | windfarm_pm91.c | 185 pid_param.gp = piddata->gp; in wf_smu_create_cpu_fans() 296 .gp = 0x00500000, in wf_smu_create_drive_fans() 377 .gp = 0x00000000, in wf_smu_create_slots_fans()
|
D | windfarm_pid.c | 69 error * (s64)st->param.gp) >> 36); in wf_pid_run() 133 prop *= st->param.gp; in wf_cpu_pid_run()
|
D | windfarm_rm31.c | 326 pid.gp = mpu->pid_gp; in cpu_setup_pid() 345 .gp = 0x0004cccc, 358 .gp = 0, 445 .gp = 0,
|
D | windfarm_pm72.c | 425 pid.gp = mpu->pid_gp; in cpu_setup_pid() 444 .gp = 5 << 20, 456 .gp = 5 << 20, 536 .gp = 5 << 20,
|
/linux-4.1.27/sound/pci/ymfpci/ |
D | ymfpci.c | 85 struct gameport *gp; in snd_ymfpci_create_gameport() local 132 chip->gameport = gp = gameport_allocate_port(); in snd_ymfpci_create_gameport() 133 if (!gp) { in snd_ymfpci_create_gameport() 141 gameport_set_name(gp, "Yamaha YMF Gameport"); in snd_ymfpci_create_gameport() 142 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci)); in snd_ymfpci_create_gameport() 143 gameport_set_dev_parent(gp, &chip->pci->dev); in snd_ymfpci_create_gameport() 144 gp->io = io_port; in snd_ymfpci_create_gameport() 145 gameport_set_port_data(gp, r); in snd_ymfpci_create_gameport()
|
/linux-4.1.27/arch/mips/mti-malta/ |
D | malta-amon.c | 43 unsigned long gp, unsigned long a0) in amon_cpu_start() argument 59 launch->gp = gp; in amon_cpu_start()
|
/linux-4.1.27/drivers/usb/renesas_usbhs/ |
D | mod_gadget.c | 98 #define usbhsg_gpriv_to_dev(gp) usbhs_priv_to_dev((gp)->mod.priv) argument 99 #define usbhsg_gpriv_to_priv(gp) ((gp)->mod.priv) argument 100 #define usbhsg_gpriv_to_dcp(gp) ((gp)->uep) argument 101 #define usbhsg_gpriv_to_nth_uep(gp, i) ((gp)->uep + i) argument 111 #define usbhsg_is_not_connected(gp) ((gp)->gadget.speed == USB_SPEED_UNKNOWN) argument 114 #define usbhsg_status_init(gp) do {(gp)->status = 0; } while (0) argument 115 #define usbhsg_status_set(gp, b) (gp->status |= b) argument 116 #define usbhsg_status_clr(gp, b) (gp->status &= ~b) argument 117 #define usbhsg_status_has(gp, b) (gp->status & b) argument
|
/linux-4.1.27/arch/ia64/hp/common/ |
D | aml_nfw.c | 41 void *gp; member 52 u64 gp; member 70 virt_entry.gp = virt_map(c->gp); in aml_nfw_execute()
|
/linux-4.1.27/arch/parisc/kernel/ |
D | unwind.c | 95 unsigned long base_addr, unsigned long gp, in unwind_table_init() argument 104 table->gp = gp; in unwind_table_init() 138 unsigned long gp, in unwind_table_add() argument 151 unwind_table_init(table, name, base_addr, gp, start, end); in unwind_table_add() 174 register unsigned long gp __asm__ ("r27"); in unwind_init() 186 gp, in unwind_init()
|
D | module.c | 430 fdesc->gp = (Elf_Addr)me->module_core + me->arch.got_offset; in get_fdesc() 835 unsigned long gp; in register_unwind_table() local 842 gp = (Elf_Addr)me->module_core + me->arch.got_offset; in register_unwind_table() 845 me->arch.unwind_section, table, end, gp); in register_unwind_table() 846 me->arch.unwind = unwind_table_add(me->name, 0, gp, table, end); in register_unwind_table() 871 entry->gp, entry->addr); in module_finalize()
|
D | signal.c | 331 regs->gr[19] = fdesc.gp; in setup_rt_frame() 344 regs->gr[19] = fdesc.gp; in setup_rt_frame()
|
/linux-4.1.27/arch/hexagon/kernel/ |
D | ptrace.c | 88 ONEXT(®s->gp, gp); in genregs_get() 137 INEXT(®s->gp, gp); in genregs_set()
|
D | signal.c | 63 err |= __put_user(regs->gp, &sc->sc_regs.gp); in setup_sigcontext() 93 err |= __get_user(regs->gp, &sc->sc_regs.gp); in restore_sigcontext()
|
D | vm_events.c | 46 regs->gp, regs->ugp, regs->usr); in show_regs()
|
D | vm_entry.S | 56 R30 = gp ; } \ 169 gp = R30; }
|
D | kgdb.c | 73 { " gp", GDB_SIZEOF_REG, offsetof(struct pt_regs, gp)},
|
/linux-4.1.27/drivers/char/agp/ |
D | uninorth-agp.c | 153 u32 *gp; in uninorth_insert_memory() local 174 gp = (u32 *) &agp_bridge->gatt_table[pg_start]; in uninorth_insert_memory() 176 if (gp[i] != scratch_value) { in uninorth_insert_memory() 179 i, gp[i]); in uninorth_insert_memory() 186 gp[i] = (page_to_phys(mem->pages[i]) >> PAGE_SHIFT) | 0x80000000UL; in uninorth_insert_memory() 188 gp[i] = cpu_to_le32((page_to_phys(mem->pages[i]) & 0xFFFFF000UL) | in uninorth_insert_memory() 202 u32 *gp; in uninorth_remove_memory() local 217 gp = (u32 *) &agp_bridge->gatt_table[pg_start]; in uninorth_remove_memory() 219 gp[i] = scratch_value; in uninorth_remove_memory()
|
/linux-4.1.27/arch/um/os-Linux/ |
D | registers.c | 18 err = ptrace(PTRACE_GETREGS, pid, 0, regs->gp); in save_registers() 28 err = ptrace(PTRACE_SETREGS, pid, 0, regs->gp); in restore_registers()
|
/linux-4.1.27/arch/arm/mach-imx/ |
D | iomux-imx31.c | 161 void mxc_iomux_set_gpr(enum iomux_gp_func gp, bool en) in mxc_iomux_set_gpr() argument 168 l |= gp; in mxc_iomux_set_gpr() 170 l &= ~gp; in mxc_iomux_set_gpr()
|
/linux-4.1.27/arch/nios2/include/asm/ |
D | entry.h | 58 stw gp, PT_GP(sp) 82 ldw gp, PT_GP(sp) 100 stw gp, SW_GP(sp) 114 ldw gp, SW_GP(sp)
|
D | ptrace.h | 42 unsigned long gp; /* Global pointer */ member 62 unsigned long gp; member
|
D | elf.h | 70 pr_reg[19] = regs->gp; \ 85 pr_reg[32] = sw->gp; \
|
/linux-4.1.27/sound/isa/ |
D | cmi8328.c | 382 struct gameport *gp = cmi->gameport = gameport_allocate_port(); in snd_cmi8328_probe() local 386 gameport_set_name(gp, "CMI8328 Gameport"); in snd_cmi8328_probe() 387 gameport_set_phys(gp, "%s/gameport0", dev_name(pdev)); in snd_cmi8328_probe() 388 gameport_set_dev_parent(gp, pdev); in snd_cmi8328_probe() 389 gp->io = 0x200; in snd_cmi8328_probe() 390 gameport_set_port_data(gp, res); in snd_cmi8328_probe() 394 gameport_register_port(gp); in snd_cmi8328_probe()
|
/linux-4.1.27/arch/arc/include/asm/ |
D | entry.h | 427 PUSH gp 461 POP gp 486 PUSH gp 511 PUSH gp 544 POP gp 563 POP gp
|
/linux-4.1.27/include/sound/ |
D | core.h | 401 #define gameport_set_dev_parent(gp,xdev) ((gp)->dev.parent = (xdev)) argument 402 #define gameport_set_port_data(gp,r) ((gp)->port_data = (r)) argument 403 #define gameport_get_port_data(gp) (gp)->port_data argument
|
/linux-4.1.27/arch/mips/include/asm/ |
D | regdef.h | 55 #define gp $28 /* global pointer */ macro 98 #define gp $28 /* global pointer - caller saved for PIC */ macro
|
D | pmon.h | 41 #define pmon_cpustart(n, f, sp, gp) debug_vectors->_s.cpustart(n, f, sp, gp) argument
|
D | amon.h | 12 unsigned long gp, unsigned long a0);
|
D | smp-cps.h | 19 unsigned long gp; member
|
/linux-4.1.27/arch/parisc/include/asm/ |
D | unwind.h | 46 unsigned long gp; member 66 unsigned long gp, void *start, void *end);
|
D | elf.h | 160 __u32 gp; member 168 __u64 gp; member
|
D | asmregs.h | 41 gp: .reg r27
|
D | assembly.h | 87 gp = 27
|
/linux-4.1.27/drivers/video/fbdev/geode/ |
D | suspend_gx.c | 36 memcpy(par->gp, par->gp_regs, sizeof(par->gp)); in gx_save_regs() 74 for (i = 0; i < ARRAY_SIZE(par->gp); i++) { in gx_restore_gfx_proc() 83 write_gp(par, i, par->gp[i]); in gx_restore_gfx_proc()
|
D | lxfb_ops.c | 608 memcpy(par->gp, par->gp_regs, sizeof(par->gp)); in lx_save_regs() 647 write_gp(par, GP_RASTER_MODE, par->gp[GP_RASTER_MODE]); in lx_restore_gfx_proc() 649 for (i = 0; i < ARRAY_SIZE(par->gp); i++) { in lx_restore_gfx_proc() 663 write_gp(par, i, par->gp[i]); in lx_restore_gfx_proc()
|
D | gxfb.h | 37 uint32_t gp[GP_REG_COUNT]; member
|
D | lxfb.h | 47 uint32_t gp[GP_REG_COUNT]; member
|
/linux-4.1.27/net/802/ |
D | garp.c | 212 struct garp_pdu_hdr *gp; in garp_pdu_init() local 224 gp = (struct garp_pdu_hdr *)__skb_put(skb, sizeof(*gp)); in garp_pdu_init() 225 put_unaligned(htons(GARP_PROTOCOL_ID), &gp->protocol); in garp_pdu_init() 507 const struct garp_pdu_hdr *gp; in garp_pdu_rcv() local 516 if (!pskb_may_pull(skb, sizeof(*gp))) in garp_pdu_rcv() 518 gp = (struct garp_pdu_hdr *)skb->data; in garp_pdu_rcv() 519 if (get_unaligned(&gp->protocol) != htons(GARP_PROTOCOL_ID)) in garp_pdu_rcv() 521 skb_pull(skb, sizeof(*gp)); in garp_pdu_rcv()
|
/linux-4.1.27/drivers/atm/ |
D | idt77252.c | 352 u32 gp; in idt77252_read_gp() local 354 gp = readl(SAR_REG_GP); in idt77252_read_gp() 356 printk("RD: %s\n", gp & SAR_GP_EEDI ? "1" : "0"); in idt77252_read_gp() 358 return gp; in idt77252_read_gp() 382 u32 gp; in idt77252_eeprom_read_status() local 385 gp = idt77252_read_gp(card) & ~(SAR_GP_EESCLK|SAR_GP_EECS|SAR_GP_EEDO); in idt77252_eeprom_read_status() 388 idt77252_write_gp(card, gp | rdsrtab[i]); in idt77252_eeprom_read_status() 391 idt77252_write_gp(card, gp | SAR_GP_EECS); in idt77252_eeprom_read_status() 398 idt77252_write_gp(card, gp | clktab[j++]); in idt77252_eeprom_read_status() 403 idt77252_write_gp(card, gp | clktab[j++]); in idt77252_eeprom_read_status() [all …]
|
/linux-4.1.27/arch/mips/power/ |
D | hibernate_asm.S | 20 PTR_S gp, PT_R28(t0) 50 PTR_L gp, PT_R28(t0)
|
/linux-4.1.27/drivers/media/usb/pvrusb2/ |
D | pvrusb2-std.c | 190 const struct std_name *ip,*gp; in pvr2_std_id_to_str() local 196 gp = std_groups + idx1; in pvr2_std_id_to_str() 200 if (!(gp->id & ip->id & id)) continue; in pvr2_std_id_to_str() 210 "%s-",gp->name); in pvr2_std_id_to_str()
|
/linux-4.1.27/arch/x86/um/ |
D | ptrace_64.c | 102 child->thread.regs.regs.gp[HOST_EFLAGS] |= value; in putreg() 109 child->thread.regs.regs.gp[reg_offsets[regno >> 3]] = value; in putreg() 173 return mask & child->thread.regs.regs.gp[reg_offsets[regno >> 3]]; in getreg()
|
D | ptrace_32.c | 108 child->thread.regs.regs.gp[HOST_EFLAGS] |= value; in putreg() 116 child->thread.regs.regs.gp[reg_offsets[regno]] = value; in putreg() 169 return mask & child->thread.regs.regs.gp[reg_offsets[regno]]; in getreg()
|
D | tls_64.c | 14 t->thread.arch.fs = t->thread.regs.regs.gp[R8 / sizeof(long)]; in arch_copy_tls()
|
D | signal.c | 166 #define GETREG(regno, regname) regs->regs.gp[HOST_##regno] = sc.regname in copy_sc_from_user() 255 #define PUTREG(regno, regname) sc.regname = regs->regs.gp[HOST_##regno] in copy_sc_to_user()
|
/linux-4.1.27/arch/nios2/kernel/ |
D | asm-offsets.c | 61 OFFSET(PT_GP, pt_regs, gp); in main() 76 OFFSET(SW_GP, switch_stack, gp); in main()
|
D | ptrace.c | 50 REG_O_ONE(®s->gp, PTR_GP); in genregs_get() 96 REG_IN_ONE(®s->gp, PTR_GP); in genregs_set()
|
D | insnemu.S | 50 ldw gp, PT_GP(sp) 155 stw gp, 104(sp) 583 ldw gp, 104(sp)
|
D | signal.c | 78 err |= __get_user(sw->gp, &gregs[25]); /* Verify, should this be in rt_restore_ucontext() 159 err |= __put_user(sw->gp, &gregs[25]); in rt_setup_ucontext()
|
D | kgdb.c | 59 { "gp", GDB_SIZEOF_REG, offsetof(struct pt_regs, gp) },
|
D | process.c | 89 regs->ra, regs->fp, regs->sp, regs->gp); in show_regs()
|
/linux-4.1.27/sound/pci/ |
D | als4000.c | 775 struct gameport *gp; in snd_als4000_create_gameport() local 798 acard->gameport = gp = gameport_allocate_port(); in snd_als4000_create_gameport() 799 if (!gp) { in snd_als4000_create_gameport() 805 gameport_set_name(gp, "ALS4000 Gameport"); in snd_als4000_create_gameport() 806 gameport_set_phys(gp, "pci%s/gameport0", pci_name(acard->pci)); in snd_als4000_create_gameport() 807 gameport_set_dev_parent(gp, &acard->pci->dev); in snd_als4000_create_gameport() 808 gp->io = io_port; in snd_als4000_create_gameport() 809 gameport_set_port_data(gp, r); in snd_als4000_create_gameport()
|
D | cs4281.c | 1263 struct gameport *gp; in snd_cs4281_create_gameport() local 1265 chip->gameport = gp = gameport_allocate_port(); in snd_cs4281_create_gameport() 1266 if (!gp) { in snd_cs4281_create_gameport() 1272 gameport_set_name(gp, "CS4281 Gameport"); in snd_cs4281_create_gameport() 1273 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci)); in snd_cs4281_create_gameport() 1274 gameport_set_dev_parent(gp, &chip->pci->dev); in snd_cs4281_create_gameport() 1275 gp->open = snd_cs4281_gameport_open; in snd_cs4281_create_gameport() 1276 gp->read = snd_cs4281_gameport_read; in snd_cs4281_create_gameport() 1277 gp->trigger = snd_cs4281_gameport_trigger; in snd_cs4281_create_gameport() 1278 gp->cooked_read = snd_cs4281_gameport_cooked_read; in snd_cs4281_create_gameport() [all …]
|
D | azt3328.c | 1825 struct gameport *gp; in snd_azf3328_gameport() local 1827 chip->gameport = gp = gameport_allocate_port(); in snd_azf3328_gameport() 1828 if (!gp) { in snd_azf3328_gameport() 1833 gameport_set_name(gp, "AZF3328 Gameport"); in snd_azf3328_gameport() 1834 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci)); in snd_azf3328_gameport() 1835 gameport_set_dev_parent(gp, &chip->pci->dev); in snd_azf3328_gameport() 1836 gp->io = chip->game_io; in snd_azf3328_gameport() 1837 gameport_set_port_data(gp, chip); in snd_azf3328_gameport() 1839 gp->open = snd_azf3328_gameport_open; in snd_azf3328_gameport() 1840 gp->close = snd_azf3328_gameport_close; in snd_azf3328_gameport() [all …]
|
D | sonicvibes.c | 1190 struct gameport *gp; in snd_sonicvibes_create_gameport() local 1192 sonic->gameport = gp = gameport_allocate_port(); in snd_sonicvibes_create_gameport() 1193 if (!gp) { in snd_sonicvibes_create_gameport() 1199 gameport_set_name(gp, "SonicVibes Gameport"); in snd_sonicvibes_create_gameport() 1200 gameport_set_phys(gp, "pci%s/gameport0", pci_name(sonic->pci)); in snd_sonicvibes_create_gameport() 1201 gameport_set_dev_parent(gp, &sonic->pci->dev); in snd_sonicvibes_create_gameport() 1202 gp->io = sonic->game_port; in snd_sonicvibes_create_gameport() 1204 gameport_register_port(gp); in snd_sonicvibes_create_gameport()
|
D | es1938.c | 1513 struct gameport *gp; in snd_es1938_create_gameport() local 1515 chip->gameport = gp = gameport_allocate_port(); in snd_es1938_create_gameport() 1516 if (!gp) { in snd_es1938_create_gameport() 1522 gameport_set_name(gp, "ES1938"); in snd_es1938_create_gameport() 1523 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci)); in snd_es1938_create_gameport() 1524 gameport_set_dev_parent(gp, &chip->pci->dev); in snd_es1938_create_gameport() 1525 gp->io = chip->game_port; in snd_es1938_create_gameport() 1527 gameport_register_port(gp); in snd_es1938_create_gameport()
|
D | es1968.c | 2453 struct gameport *gp; in snd_es1968_create_gameport() local 2464 chip->gameport = gp = gameport_allocate_port(); in snd_es1968_create_gameport() 2465 if (!gp) { in snd_es1968_create_gameport() 2475 gameport_set_name(gp, "ES1968 Gameport"); in snd_es1968_create_gameport() 2476 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci)); in snd_es1968_create_gameport() 2477 gameport_set_dev_parent(gp, &chip->pci->dev); in snd_es1968_create_gameport() 2478 gp->io = JOYSTICK_ADDR; in snd_es1968_create_gameport() 2479 gameport_set_port_data(gp, r); in snd_es1968_create_gameport() 2481 gameport_register_port(gp); in snd_es1968_create_gameport()
|
D | via82xx.c | 1935 struct gameport *gp; in snd_via686_create_gameport() local 1948 chip->gameport = gp = gameport_allocate_port(); in snd_via686_create_gameport() 1949 if (!gp) { in snd_via686_create_gameport() 1956 gameport_set_name(gp, "VIA686 Gameport"); in snd_via686_create_gameport() 1957 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci)); in snd_via686_create_gameport() 1958 gameport_set_dev_parent(gp, &chip->pci->dev); in snd_via686_create_gameport() 1959 gp->io = JOYSTICK_ADDR; in snd_via686_create_gameport() 1960 gameport_set_port_data(gp, r); in snd_via686_create_gameport()
|
D | ens1370.c | 1809 struct gameport *gp; in snd_ensoniq_create_gameport() local 1839 ensoniq->gameport = gp = gameport_allocate_port(); in snd_ensoniq_create_gameport() 1840 if (!gp) { in snd_ensoniq_create_gameport() 1847 gameport_set_name(gp, "ES137x"); in snd_ensoniq_create_gameport() 1848 gameport_set_phys(gp, "pci%s/gameport0", pci_name(ensoniq->pci)); in snd_ensoniq_create_gameport() 1849 gameport_set_dev_parent(gp, &ensoniq->pci->dev); in snd_ensoniq_create_gameport() 1850 gp->io = io_port; in snd_ensoniq_create_gameport()
|
D | cmipci.c | 2872 struct gameport *gp; in snd_cmipci_create_gameport() local 2896 cm->gameport = gp = gameport_allocate_port(); in snd_cmipci_create_gameport() 2897 if (!gp) { in snd_cmipci_create_gameport() 2902 gameport_set_name(gp, "C-Media Gameport"); in snd_cmipci_create_gameport() 2903 gameport_set_phys(gp, "pci%s/gameport0", pci_name(cm->pci)); in snd_cmipci_create_gameport() 2904 gameport_set_dev_parent(gp, &cm->pci->dev); in snd_cmipci_create_gameport() 2905 gp->io = io_port; in snd_cmipci_create_gameport() 2906 gameport_set_port_data(gp, r); in snd_cmipci_create_gameport()
|
/linux-4.1.27/arch/ia64/include/asm/ |
D | types.h | 27 unsigned long gp; member
|
D | mca_asm.h | 129 DATA_VA_TO_PA(gp); \ 203 movl gp = __gp \
|
D | module.h | 27 unsigned long gp; /* global-pointer for module */ member
|
D | mca.h | 28 unsigned long gp; member
|
D | elf.h | 231 uint64_t gp; member
|
D | unwind.h | 107 extern void *unw_add_unwind_table (const char *name, unsigned long segment_base, unsigned long gp,
|
D | sal.h | 171 u64 gp; member
|
/linux-4.1.27/arch/mips/fw/lib/ |
D | call_o32.S | 52 REG_S gp,O32_FRAMESZ-3*SZREG(sp) 102 REG_L gp,O32_FRAMESZ-3*SZREG(sp)
|
/linux-4.1.27/Documentation/RCU/ |
D | rcu_dereference.txt | 118 p = rcu_dereference(gp); 126 p = rcu_dereference(gp); 337 static struct foo *gp = &variable1; 342 rcu_assign_pointer(gp, &variable2); 344 * The above is the only store to gp in this translation unit, 345 * and the address of gp is not exported in any way. 353 p = gp; 361 Because the compiler can see all stores to "gp", it knows that the only 362 possible values of "gp" are "variable1" on the one hand and "variable2" 365 compiler to make the return values independent of the load from "gp",
|
/linux-4.1.27/arch/mips/include/asm/mips-boards/ |
D | launch.h | 9 unsigned long gp; member
|
/linux-4.1.27/arch/alpha/include/uapi/asm/ |
D | regdef.h | 40 #define gp $29 /* global pointer */ macro
|
D | ptrace.h | 47 unsigned long gp; member
|
/linux-4.1.27/arch/hexagon/include/asm/ |
D | elf.h | 159 DEST.gp = REGS->gp; \
|
/linux-4.1.27/arch/mips/sgi-ip27/ |
D | ip27-smp.c | 196 unsigned long gp = (unsigned long)task_thread_info(idle); in ip27_boot_secondary() local 201 0, (void *) sp, (void *) gp); in ip27_boot_secondary()
|
/linux-4.1.27/arch/arc/include/uapi/asm/ |
D | ptrace.h | 38 long status32, ret, blink, fp, gp; member
|
/linux-4.1.27/arch/um/os-Linux/skas/ |
D | process.c | 141 UPT_SYSCALL_NR(regs) = PT_SYSCALL_NR(regs->gp); in handle_trap() 343 if (ptrace(PTRACE_SETREGS, pid, 0, regs->gp)) in userspace() 369 if (ptrace(PTRACE_GETREGS, pid, 0, regs->gp)) { in userspace() 436 PT_SYSCALL_NR(regs->gp) = -1; in userspace()
|
/linux-4.1.27/arch/hexagon/include/uapi/asm/ |
D | user.h | 53 unsigned long gp; member
|
D | registers.h | 59 unsigned long gp; member
|
/linux-4.1.27/arch/ia64/ |
D | Makefile | 26 KBUILD_AFLAGS_KERNEL := -mconstant-gp 31 KBUILD_CFLAGS_KERNEL := -mconstant-gp
|
/linux-4.1.27/arch/um/kernel/ |
D | exec.c | 35 get_safe_registers(current_pt_regs()->regs.gp, in flush_thread()
|
D | process.c | 166 REGS_SP(p->thread.regs.regs.gp) = sp; in copy_thread() 172 get_safe_registers(p->thread.regs.regs.gp, p->thread.regs.regs.fp); in copy_thread()
|
/linux-4.1.27/arch/mips/include/asm/mach-paravirt/ |
D | kernel-entry-init.h | 47 PTR_L gp, 0(t1)
|
/linux-4.1.27/drivers/mtd/nand/ |
D | nandsim.c | 952 struct grave_page *gp; in parse_gravepages() local 971 gp = kzalloc(sizeof(*gp), GFP_KERNEL); in parse_gravepages() 972 if (!gp) { in parse_gravepages() 976 gp->page_no = page_no; in parse_gravepages() 977 gp->max_reads = max_reads; in parse_gravepages() 978 list_add(&gp->list, &grave_pages); in parse_gravepages() 985 struct grave_page *gp; in read_error() local 987 list_for_each_entry(gp, &grave_pages, list) in read_error() 988 if (gp->page_no == page_no) { in read_error() 989 if (gp->reads_done >= gp->max_reads) in read_error() [all …]
|
/linux-4.1.27/arch/frv/kernel/ |
D | vmlinux.lds.S | 107 PROVIDE (gp = _gp); symbol
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | Joystick.txt | 68 emu10k1 emu10k1-gp 69 fm801 fm801-gp
|
/linux-4.1.27/arch/mips/include/asm/fw/cfe/ |
D | cfe_api.h | 98 int cfe_cpu_start(int cpu, void (*fn) (void), long sp, long gp, long a1);
|
/linux-4.1.27/drivers/input/joystick/ |
D | grip_mp.c | 133 static inline int poll_until(u8 onbits, u8 offbits, int u_sec, struct gameport* gp, u8 *data) in poll_until() argument 137 nloops = gameport_time(gp, u_sec); in poll_until() 139 *data = gameport_read(gp); in poll_until()
|
/linux-4.1.27/arch/mips/netlogic/common/ |
D | smpboot.S | 86 PTR_L gp, 0(t1)
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/omap/ |
D | omap.txt | 38 compatible = "ti,gp" 146 compatible = "ti,am437x-gp-evm", "ti,am4372", "ti,am43"
|
/linux-4.1.27/arch/alpha/include/asm/ |
D | a.out-core.h | 72 dump->regs[EF_GP] = pt->gp; in aout_dump_thread()
|
/linux-4.1.27/arch/arc/ |
D | Makefile | 53 cflags-$(disable_small_data) += -mno-sdata -fcall-used-gp
|
/linux-4.1.27/drivers/scsi/megaraid/ |
D | mega_common.h | 71 unsigned long gp; member
|
D | megaraid_mbox.c | 1081 scb->gp = 0; in megaraid_alloc_cmd_packets() 2281 kioc = (uioc_t *)scb->gp; in megaraid_mbox_dpc() 2613 kioc = (uioc_t *)scb->gp; in megaraid_reset_handler() 3512 scb->gp = 0; in megaraid_cmm_register() 3666 scb->gp = (unsigned long)kioc; in megaraid_mbox_mm_command() 3760 kioc = (uioc_t *)scb->gp; in megaraid_mbox_mm_done()
|
/linux-4.1.27/arch/alpha/lib/ |
D | callback_srm.S | 17 ldq $0,hwrpb # gp is set up by CALLBACK macro.
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | smu.h | 632 __s32 gp,gr,gd; member
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/st/ |
D | st,flexgen.txt | 107 "clk-st231-gp-1",
|
/linux-4.1.27/sound/pci/cs46xx/ |
D | cs46xx_lib.c | 2780 struct gameport *gp; in snd_cs46xx_gameport() local 2782 chip->gameport = gp = gameport_allocate_port(); in snd_cs46xx_gameport() 2783 if (!gp) { in snd_cs46xx_gameport() 2789 gameport_set_name(gp, "CS46xx Gameport"); in snd_cs46xx_gameport() 2790 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci)); in snd_cs46xx_gameport() 2791 gameport_set_dev_parent(gp, &chip->pci->dev); in snd_cs46xx_gameport() 2792 gameport_set_port_data(gp, chip); in snd_cs46xx_gameport() 2794 gp->open = snd_cs46xx_gameport_open; in snd_cs46xx_gameport() 2795 gp->read = snd_cs46xx_gameport_read; in snd_cs46xx_gameport() 2796 gp->trigger = snd_cs46xx_gameport_trigger; in snd_cs46xx_gameport() [all …]
|
/linux-4.1.27/sound/pci/trident/ |
D | trident_main.c | 3183 struct gameport *gp; in snd_trident_create_gameport() local 3185 chip->gameport = gp = gameport_allocate_port(); in snd_trident_create_gameport() 3186 if (!gp) { in snd_trident_create_gameport() 3192 gameport_set_name(gp, "Trident 4DWave"); in snd_trident_create_gameport() 3193 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci)); in snd_trident_create_gameport() 3194 gameport_set_dev_parent(gp, &chip->pci->dev); in snd_trident_create_gameport() 3196 gameport_set_port_data(gp, chip); in snd_trident_create_gameport() 3197 gp->fuzz = 64; in snd_trident_create_gameport() 3198 gp->read = snd_trident_gameport_read; in snd_trident_create_gameport() 3199 gp->trigger = snd_trident_gameport_trigger; in snd_trident_create_gameport() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/4xx/ |
D | emac.txt | 17 405gp, Axon) and second is either "ibm,emac" or 89 compatible = "ibm,emac-440gp", "ibm,emac";
|
/linux-4.1.27/arch/mips/fw/cfe/ |
D | cfe_api.c | 81 int cfe_cpu_start(int cpu, void (*fn) (void), long sp, long gp, long a1) in cfe_cpu_start() argument 92 xiocb.plist.xiocb_cpuctl.gp_val = gp; in cfe_cpu_start()
|
/linux-4.1.27/arch/ia64/hp/sim/boot/ |
D | boot_head.S | 25 movl gp = __gp
|
D | fw-emu.c | 328 sal_ed->gp = __pa(sal_desc[1]); in sys_fw_init()
|
/linux-4.1.27/arch/mips/kvm/ |
D | locore.S | 137 LONG_S gp, VCPU_HOST_GP(k1) 405 LONG_L gp, VCPU_HOST_GP(k1)
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | stih415-clock.dtsi | 222 "clk-m-st231-gp-0"; 234 clock-output-names = "clk-m-st231-gp-1",
|
D | Makefile | 431 am437x-gp-evm.dtb 637 armada-388-gp.dtb \ 644 armada-xp-gp.dtb \
|
D | armada-xp-gp.dts | 65 …compatible = "marvell,axp-gp", "marvell,armadaxp-mv78460", "marvell,armadaxp", "marvell,armada-370…
|
D | stih407-clock.dtsi | 185 "clk-st231-gp-1",
|
D | stih410-clock.dtsi | 188 "clk-st231-gp-1",
|
D | stih418-clock.dtsi | 188 "clk-st231-gp-1",
|
D | stih416-clock.dtsi | 224 "clk-m-st231-gp-0"; 236 clock-output-names = "clk-m-st231-gp-1",
|
D | armada-388-gp.dts | 48 compatible = "marvell,a385-gp", "marvell,armada388", "marvell,armada380";
|
D | am437x-gp-evm.dts | 20 compatible = "ti,am437x-gp-evm","ti,am4372","ti,am43";
|
/linux-4.1.27/block/ |
D | genhd.c | 1149 struct gendisk *gp = v; in diskstats_show() local 1163 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0); in diskstats_show() 1171 disk_name(gp, hd->partno, buf), in diskstats_show()
|
/linux-4.1.27/fs/ |
D | binfmt_aout.c | 331 regs->gp = ex.a_gpvalue; in load_aout_binary()
|
/linux-4.1.27/arch/ia64/sn/kernel/ |
D | setup.c | 183 __va(ep->gp)); in early_sn_setup()
|
/linux-4.1.27/Documentation/devicetree/bindings/soc/ti/ |
D | keystone-navigator-qmss.txt | 173 gp-0 {
|
/linux-4.1.27/include/linux/ |
D | genhd.h | 420 extern void del_gendisk(struct gendisk *gp);
|
/linux-4.1.27/drivers/net/wireless/iwlegacy/ |
D | common.c | 673 u32 gp = _il_rd(il, CSR_EEPROM_GP) & CSR_EEPROM_GP_VALID_MSK; in il_eeprom_verify_signature() local 676 D_EEPROM("EEPROM signature=0x%08x\n", gp); in il_eeprom_verify_signature() 677 switch (gp) { in il_eeprom_verify_signature() 682 IL_ERR("bad EEPROM signature," "EEPROM_GP=0x%08x\n", gp); in il_eeprom_verify_signature() 717 u32 gp = _il_rd(il, CSR_EEPROM_GP); in il_eeprom_init() local 736 IL_ERR("EEPROM not found, EEPROM_GP=0x%08x\n", gp); in il_eeprom_init()
|
/linux-4.1.27/Documentation/input/ |
D | joystick.txt | 406 emu10k1-gp.c module for it instead of the normal ns558.c one.
|