Home
last modified time | relevance | path

Searched refs:basep (Results 1 – 10 of 10) sorted by relevance

/linux-4.1.27/drivers/char/tpm/
Dtpm_of.c27 const __be64 *basep; in read_log() local
50 basep = of_get_property(np, "linux,sml-base", NULL); in read_log()
51 if (basep == NULL) { in read_log()
66 memcpy(log->bios_event_log, __va(be64_to_cpup(basep)), *sizep); in read_log()
/linux-4.1.27/arch/powerpc/kernel/
Dcrash_dump.c129 const __be32 *basep, *sizep; in crash_free_reserved_phys_range() local
132 basep = of_get_property(rtas.dev, "linux,rtas-base", NULL); in crash_free_reserved_phys_range()
135 if (basep && sizep) { in crash_free_reserved_phys_range()
136 rtas_start = be32_to_cpup(basep); in crash_free_reserved_phys_range()
Drtas.c1135 const __be32 *basep, *entryp, *sizep; in rtas_initialize() local
1137 basep = of_get_property(rtas.dev, "linux,rtas-base", NULL); in rtas_initialize()
1139 if (basep != NULL && sizep != NULL) { in rtas_initialize()
1140 rtas.base = __be32_to_cpu(*basep); in rtas_initialize()
1173 const u32 *basep, *entryp, *sizep; in early_init_dt_scan_rtas() local
1178 basep = of_get_flat_dt_prop(node, "linux,rtas-base", NULL); in early_init_dt_scan_rtas()
1182 if (basep && entryp && sizep) { in early_init_dt_scan_rtas()
1183 rtas.base = *basep; in early_init_dt_scan_rtas()
1189 basep = of_get_flat_dt_prop(node, "put-term-char", NULL); in early_init_dt_scan_rtas()
1190 if (basep) in early_init_dt_scan_rtas()
[all …]
Dmachine_kexec_64.c39 const unsigned long *basep; in default_machine_kexec_prepare() local
79 basep = of_get_property(node, "linux,tce-base", NULL); in default_machine_kexec_prepare()
81 if (basep == NULL || sizep == NULL) in default_machine_kexec_prepare()
84 low = *basep; in default_machine_kexec_prepare()
/linux-4.1.27/drivers/media/platform/vivid/
Dvivid-kthread-cap.c425 u8 *basep[TPG_MAX_PLANES][2]; in vivid_fillbuff() local
480 tpg_calc_text_basep(tpg, basep, p, vbuf); in vivid_fillbuff()
501 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
506 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
516 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
521 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
527 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
533 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
538 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
543 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
[all …]
Dvivid-tpg.c1398 void tpg_gen_text(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_gen_text()
1408 if (font8x16 == NULL || basep == NULL) in tpg_gen_text()
1441 PIXTYPE *pos = (PIXTYPE *)(basep[p][(line / vdiv) & 1] + \ in tpg_gen_text()
1643 u8 *basep[TPG_MAX_PLANES][2], unsigned p, u8 *vbuf) in tpg_calc_text_basep()
1650 basep[p][0] = vbuf; in tpg_calc_text_basep()
1651 basep[p][1] = vbuf; in tpg_calc_text_basep()
1654 basep[p][1] += h * stride / 2; in tpg_calc_text_basep()
1656 basep[p][0] += h * stride / 2; in tpg_calc_text_basep()
1658 tpg_calc_text_basep(tpg, basep, 1, vbuf); in tpg_calc_text_basep()
Dvivid-tpg.h198 u8 *basep[TPG_MAX_PLANES][2], int y, int x, char *text);
200 u8 *basep[TPG_MAX_PLANES][2], unsigned p, u8 *vbuf);
/linux-4.1.27/arch/powerpc/platforms/powernv/
Dopal.c83 const void *basep, *entryp, *sizep; in early_init_dt_scan_opal() local
89 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz); in early_init_dt_scan_opal()
93 if (!basep || !entryp || !sizep) in early_init_dt_scan_opal()
96 opal.base = of_read_number(basep, basesz/4); in early_init_dt_scan_opal()
101 opal.base, basep, basesz); in early_init_dt_scan_opal()
/linux-4.1.27/arch/alpha/kernel/
Dosf_sys.c101 long __user *basep; member
124 if (buf->basep) { in osf_filldir()
125 if (put_user(offset, buf->basep)) in osf_filldir()
127 buf->basep = NULL; in osf_filldir()
147 long __user *, basep) in SYSCALL_DEFINE4() argument
154 .basep = basep, in SYSCALL_DEFINE4()
/linux-4.1.27/arch/powerpc/platforms/pseries/
Diommu.c470 const unsigned long *basep, *sw_inval; in iommu_table_setparms() local
475 basep = of_get_property(node, "linux,tce-base", NULL); in iommu_table_setparms()
477 if (basep == NULL || sizep == NULL) { in iommu_table_setparms()
483 tbl->it_base = (unsigned long)__va(*basep); in iommu_table_setparms()