i'm going to point out various minor style nits below, as well as
a few questions, and a few problems.
if you have a chance, can you compare the original psycho with these,
to see if at least they're compatible enough for the same functions/
bits to be used, or if these functions should be called eg,
psycho_usIIe_set_cpufreq().
thanks for working on this!
void
+schizo_set_cpufreq(void *aux, void *freq)
+{
+ uint32_t f;
+
+ uint64_t cmd;
+ uint64_t esctrl;
+
+ struct schizo_softc *sc;
+
+ f = (*((uint32_t *) freq));
+ sc = curcpu()->sc;
+
+ if (sc == NULL)
+ return;
this seems like a problems. what we really want to happen here
is for every actual schizo (which i think means, say, every time
we have a PCI-A leaf), we need to find the matching CPU for this
schizo and hook them together.
ie, given a normal booted system that has no special cf_units:
schizo0 -> cpu0
schizo1 -> nothing
schizo2 -> cpu1
schizo3 -> nothing