Searched defs:basep (Results 1 - 8 of 8) sorted by relevance

/arch/powerpc/kernel/
H A Dcrash_dump.c137 const u32 *basep, *sizep; local
140 basep = of_get_property(rtas.dev, "linux,rtas-base", NULL);
143 if (basep && sizep) {
144 rtas_start = *basep;
145 rtas_end = *basep + *sizep;
H A Dmachine_kexec_64.c38 const unsigned long *basep; local
78 basep = of_get_property(node, "linux,tce-base", NULL);
80 if (basep == NULL || sizep == NULL)
83 low = *basep;
H A Drtas.c988 const u32 *basep, *entryp, *sizep; local
990 basep = of_get_property(rtas.dev, "linux,rtas-base", NULL);
992 if (basep != NULL && sizep != NULL) {
993 rtas.base = *basep;
1026 u32 *basep, *entryp, *sizep; local
1031 basep = of_get_flat_dt_prop(node, "linux,rtas-base", NULL);
1035 if (basep && entryp && sizep) {
1036 rtas.base = *basep;
1042 basep = of_get_flat_dt_prop(node, "put-term-char", NULL);
1043 if (basep)
[all...]
/arch/powerpc/platforms/powernv/
H A Dopal.c35 const void *basep, *entryp; local
42 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz);
45 if (!basep || !entryp)
48 opal.base = of_read_number(basep, basesz/4);
51 pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%ld)\n",
52 opal.base, basep, basesz);
H A Dpci.c467 const __be64 *basep, *swinvp; local
470 basep = of_get_property(hose->dn, "linux,tce-base", NULL);
472 if (basep == NULL || sizep == NULL) {
480 pnv_pci_setup_iommu_table(tbl, __va(be64_to_cpup(basep)),
/arch/powerpc/platforms/pseries/
H A Diommu.c463 const unsigned long *basep, *sw_inval; local
468 basep = of_get_property(node, "linux,tce-base", NULL);
470 if (basep == NULL || sizep == NULL) {
476 tbl->it_base = (unsigned long)__va(*basep);
/arch/alpha/kernel/
H A Dosf_sys.c85 * The "getdents()" interface is much more sane: the "basep" stuff is
100 long __user *basep; member in struct:osf_dirent_callback
122 if (buf->basep) {
123 if (put_user(offset, buf->basep))
125 buf->basep = NULL;
145 long __user *, basep)
157 buf.basep = basep;
/arch/arm/mach-bcmring/include/mach/csp/
H A DintcHw_reg.h235 static inline void intcHw_irq_disable(void *basep, uint32_t mask) argument
237 __REG32(basep + INTCHW_INTENCLEAR) = mask;
241 static inline void intcHw_irq_enable(void *basep, uint32_t mask) argument
243 __REG32(basep + INTCHW_INTENABLE) = mask;

Completed in 1363 milliseconds