Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/char/tpm/eventlog/
Dof.c29 const u64 *basep; in tpm_read_log_of() local
44 basep = of_get_property(np, "linux,sml-base", NULL); in tpm_read_log_of()
45 if (sizep == NULL && basep == NULL) in tpm_read_log_of()
47 if (sizep == NULL || basep == NULL) in tpm_read_log_of()
61 base = be64_to_cpup((__force __be64 *)basep); in tpm_read_log_of()
64 base = *basep; in tpm_read_log_of()
/Linux-v4.19/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()
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.c1191 const u32 *basep, *entryp, *sizep; in early_init_dt_scan_rtas() local
1196 basep = of_get_flat_dt_prop(node, "linux,rtas-base", NULL); in early_init_dt_scan_rtas()
1200 if (basep && entryp && sizep) { in early_init_dt_scan_rtas()
1201 rtas.base = *basep; in early_init_dt_scan_rtas()
1207 basep = of_get_flat_dt_prop(node, "put-term-char", NULL); in early_init_dt_scan_rtas()
1208 if (basep) in early_init_dt_scan_rtas()
1209 rtas_putchar_token = *basep; in early_init_dt_scan_rtas()
1211 basep = of_get_flat_dt_prop(node, "get-term-char", NULL); in early_init_dt_scan_rtas()
1212 if (basep) in early_init_dt_scan_rtas()
1213 rtas_getchar_token = *basep; in early_init_dt_scan_rtas()
/Linux-v4.19/drivers/media/platform/vivid/
Dvivid-kthread-cap.c414 u8 *basep[TPG_MAX_PLANES][2]; in vivid_fillbuff() local
471 tpg_calc_text_basep(tpg, basep, p, vbuf); in vivid_fillbuff()
495 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
500 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
510 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()
527 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
532 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
537 tpg_gen_text(tpg, basep, line++ * line_height, 16, str); in vivid_fillbuff()
[all …]
/Linux-v4.19/arch/powerpc/platforms/powernv/
Dopal.c104 const void *basep, *entryp, *sizep; in early_init_dt_scan_opal() local
110 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz); in early_init_dt_scan_opal()
114 if (!basep || !entryp || !sizep) in early_init_dt_scan_opal()
117 opal.base = of_read_number(basep, basesz/4); in early_init_dt_scan_opal()
122 opal.base, basep, basesz); in early_init_dt_scan_opal()
/Linux-v4.19/drivers/media/common/v4l2-tpg/
Dv4l2-tpg-core.c1735 PIXTYPE *pos = (PIXTYPE *)(basep[p][(line / vdiv) & 1] + \
1778 static noinline void tpg_print_str_2(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_print_str_2()
1785 static noinline void tpg_print_str_4(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_print_str_4()
1792 static noinline void tpg_print_str_6(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_print_str_6()
1799 static noinline void tpg_print_str_8(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_print_str_8()
1806 void tpg_gen_text(const struct tpg_data *tpg, u8 *basep[TPG_MAX_PLANES][2], in tpg_gen_text()
1815 if (font8x16 == NULL || basep == NULL) in tpg_gen_text()
1839 tpg_print_str_2(tpg, basep, p, first, div, step, y, x, in tpg_gen_text()
1843 tpg_print_str_4(tpg, basep, p, first, div, step, y, x, in tpg_gen_text()
1847 tpg_print_str_6(tpg, basep, p, first, div, step, y, x, in tpg_gen_text()
[all …]
/Linux-v4.19/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-v4.19/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-v4.19/arch/powerpc/platforms/pseries/
Diommu.c505 const unsigned long *basep; in iommu_table_setparms() local
510 basep = of_get_property(node, "linux,tce-base", NULL); in iommu_table_setparms()
512 if (basep == NULL || sizep == NULL) { in iommu_table_setparms()
518 tbl->it_base = (unsigned long)__va(*basep); in iommu_table_setparms()