Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/char/tpm/eventlog/
Dof.c24 const u64 *basep; in tpm_read_log_of() local
39 basep = of_get_property(np, "linux,sml-base", NULL); in tpm_read_log_of()
40 if (sizep == NULL && basep == NULL) in tpm_read_log_of()
42 if (sizep == NULL || basep == NULL) in tpm_read_log_of()
56 base = be64_to_cpup((__force __be64 *)basep); in tpm_read_log_of()
59 base = *basep; in tpm_read_log_of()
/Linux-v5.4/arch/powerpc/kernel/
Dcrash_dump.c127 const __be32 *basep, *sizep; in crash_free_reserved_phys_range() local
130 basep = of_get_property(rtas.dev, "linux,rtas-base", NULL); in crash_free_reserved_phys_range()
133 if (basep && sizep) { in crash_free_reserved_phys_range()
134 rtas_start = be32_to_cpup(basep); in crash_free_reserved_phys_range()
Dmachine_kexec_64.c41 const unsigned long *basep; in default_machine_kexec_prepare() local
55 basep = of_get_property(node, "linux,tce-base", NULL); in default_machine_kexec_prepare()
57 if (basep == NULL || sizep == NULL) in default_machine_kexec_prepare()
60 low = *basep; in default_machine_kexec_prepare()
Drtas.c1203 const u32 *basep, *entryp, *sizep; in early_init_dt_scan_rtas() local
1208 basep = of_get_flat_dt_prop(node, "linux,rtas-base", NULL); in early_init_dt_scan_rtas()
1212 if (basep && entryp && sizep) { in early_init_dt_scan_rtas()
1213 rtas.base = *basep; in early_init_dt_scan_rtas()
1219 basep = of_get_flat_dt_prop(node, "put-term-char", NULL); in early_init_dt_scan_rtas()
1220 if (basep) in early_init_dt_scan_rtas()
1221 rtas_putchar_token = *basep; in early_init_dt_scan_rtas()
1223 basep = of_get_flat_dt_prop(node, "get-term-char", NULL); in early_init_dt_scan_rtas()
1224 if (basep) in early_init_dt_scan_rtas()
1225 rtas_getchar_token = *basep; in early_init_dt_scan_rtas()
/Linux-v5.4/drivers/media/platform/vivid/
Dvivid-kthread-cap.c414 u8 *basep[TPG_MAX_PLANES][2]; in vivid_fillbuff() local
465 tpg_calc_text_basep(tpg, basep, p, vbuf); in vivid_fillbuff()
489 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
494 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
504 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
509 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
515 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()
526 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
531 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
[all …]
/Linux-v5.4/arch/powerpc/platforms/powernv/
Dopal.c101 const void *basep, *entryp, *sizep; in early_init_dt_scan_opal() local
107 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz); in early_init_dt_scan_opal()
111 if (!basep || !entryp || !sizep) in early_init_dt_scan_opal()
114 opal.base = of_read_number(basep, basesz/4); in early_init_dt_scan_opal()
119 opal.base, basep, basesz); in early_init_dt_scan_opal()
/Linux-v5.4/drivers/media/common/v4l2-tpg/
Dv4l2-tpg-core.c1885 PIXTYPE *pos = (PIXTYPE *)(basep[p][(line / vdiv) & 1] + \
1928 static noinline void tpg_print_str_2(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_print_str_2()
1935 static noinline void tpg_print_str_4(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_print_str_4()
1942 static noinline void tpg_print_str_6(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_print_str_6()
1949 static noinline void tpg_print_str_8(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_print_str_8()
1956 void tpg_gen_text(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_gen_text()
1965 if (font8x16 == NULL || basep == NULL) in tpg_gen_text()
1989 tpg_print_str_2(tpg, basep, p, first, div, step, y, x, in tpg_gen_text()
1993 tpg_print_str_4(tpg, basep, p, first, div, step, y, x, in tpg_gen_text()
1997 tpg_print_str_6(tpg, basep, p, first, div, step, y, x, in tpg_gen_text()
[all …]
/Linux-v5.4/arch/alpha/kernel/
Dosf_sys.c105 long __user *basep; member
128 if (buf->basep) { in osf_filldir()
129 if (put_user(offset, buf->basep)) in osf_filldir()
131 buf->basep = NULL; in osf_filldir()
151 long __user *, basep) in SYSCALL_DEFINE4() argument
158 .basep = basep, in SYSCALL_DEFINE4()
/Linux-v5.4/include/media/tpg/
Dv4l2-tpg.h244 u8 *basep[TPG_MAX_PLANES][2], int y, int x, char *text);
246 u8 *basep[TPG_MAX_PLANES][2], unsigned p, u8 *vbuf);
/Linux-v5.4/arch/powerpc/platforms/pseries/
Diommu.c471 const unsigned long *basep; in iommu_table_setparms() local
476 basep = of_get_property(node, "linux,tce-base", NULL); in iommu_table_setparms()
478 if (basep == NULL || sizep == NULL) { in iommu_table_setparms()
484 tbl->it_base = (unsigned long)__va(*basep); in iommu_table_setparms()