Lines Matching defs:psci_init
101 psci_initfn_t psci_init;
106 .psci_init = psci_v0_2_init
111 .psci_init = psci_v0_2_init
116 .psci_init = psci_v0_1_init
137 psci_init(void *dummy)
150 SYSINIT(psci_start, SI_SUB_CPU, SI_ORDER_FIRST, psci_init, NULL);
229 return (psci_attach(dev, psci_init_def->psci_init,
334 psci_attach(device_t dev, psci_initfn_t psci_init, int default_version)
341 KASSERT(psci_init != NULL, ("PSCI init function cannot be NULL"));
342 if (psci_init(dev, default_version))