site               33 arch/powerpc/include/asm/code-patching.h static inline unsigned long patch_site_addr(s32 *site)
site               35 arch/powerpc/include/asm/code-patching.h 	return (unsigned long)site + *site;
site               38 arch/powerpc/include/asm/code-patching.h static inline int patch_instruction_site(s32 *site, unsigned int instr)
site               40 arch/powerpc/include/asm/code-patching.h 	return patch_instruction((unsigned int *)patch_site_addr(site), instr);
site               43 arch/powerpc/include/asm/code-patching.h static inline int patch_branch_site(s32 *site, unsigned long target, int flags)
site               45 arch/powerpc/include/asm/code-patching.h 	return patch_branch((unsigned int *)patch_site_addr(site), target, flags);
site               54 arch/powerpc/include/asm/code-patching.h static inline int modify_instruction_site(s32 *site, unsigned int clr, unsigned int set)
site               56 arch/powerpc/include/asm/code-patching.h 	return modify_instruction((unsigned int *)patch_site_addr(site), clr, set);
site               92 arch/powerpc/mm/nohash/8xx.c static void mmu_patch_cmp_limit(s32 *site, unsigned long mapped)
site               94 arch/powerpc/mm/nohash/8xx.c 	modify_instruction_site(site, 0xffff, (unsigned long)__va(mapped) >> 16);
site               97 arch/powerpc/mm/nohash/8xx.c static void mmu_patch_addis(s32 *site, long simm)
site               99 arch/powerpc/mm/nohash/8xx.c 	unsigned int instr = *(unsigned int *)patch_site_addr(site);
site              103 arch/powerpc/mm/nohash/8xx.c 	patch_instruction_site(site, instr);
site               25 drivers/bus/vexpress-config.c void vexpress_config_set_master(u32 site)
site               27 drivers/bus/vexpress-config.c 	vexpress_config_site_master = site;
site               62 drivers/bus/vexpress-config.c int vexpress_config_get_topo(struct device_node *node, u32 *site,
site               65 drivers/bus/vexpress-config.c 	vexpress_config_find_prop(node, "arm,vexpress,site", site);
site               66 drivers/bus/vexpress-config.c 	if (*site == VEXPRESS_SITE_MASTER)
site               67 drivers/bus/vexpress-config.c 		*site = vexpress_config_site_master;
site              148 drivers/misc/vexpress-syscfg.c 	u32 site, position, dcc;
site              151 drivers/misc/vexpress-syscfg.c 	err = vexpress_config_get_topo(dev->of_node, &site,
site              192 drivers/misc/vexpress-syscfg.c 				func, site, position, dcc,
site              196 drivers/misc/vexpress-syscfg.c 		func->template[i] |= SYS_CFGCTRL_SITE(site);
site               52 drivers/thermal/qoriq_thermal.c 	struct qoriq_tmu_site_regs site[SITES_MAX];
site              103 drivers/thermal/qoriq_thermal.c 	val = tmu_read(qdata, &qdata->regs->site[qsensor->id].tritsr);
site               20 include/linux/vexpress.h void vexpress_config_set_master(u32 site);
site               26 include/linux/vexpress.h int vexpress_config_get_topo(struct device_node *node, u32 *site,