#include <sys/param.h>
#include <sys/systm.h>
#include <sys/module.h>
#include <sys/bus.h>
#include <sys/conf.h>
#include <sys/cpu.h>
#include <sys/eventhandler.h>
#include <sys/kernel.h>
#include <sys/sysctl.h>
#include <dev/ofw/ofw_bus.h>
#include <dev/ofw/openfirm.h>
#include <powerpc/powermac/macgpiovar.h>
static int vcoregpio_probe(device_t);
static int vcoregpio_attach(device_t);
static void vcoregpio_pre_change(device_t, const struct cf_level *level);
static void vcoregpio_post_change(device_t, const struct cf_level *level);
static device_method_t vcoregpio_methods[] = {
DEVMETHOD(device_probe, vcoregpio_probe),
DEVMETHOD(device_attach, vcoregpio_attach),
{ 0, 0 },
};
static driver_t vcoregpio_driver = {
"vcoregpio",
vcoregpio_methods,
0
};
DRIVER_MODULE(vcoregpio, macgpio, vcoregpio_driver, 0, 0);
static int
vcoregpio_probe(device_t dev)
{
const char *name = ofw_bus_get_name(dev);
if (strcmp(name, "cpu-vcore-select") != 0)
return (ENXIO);
device_set_desc(dev, "CPU Core Voltage Control");
return (0);
}
static int
vcoregpio_attach(device_t dev)
{
EVENTHANDLER_REGISTER(cpufreq_pre_change, vcoregpio_pre_change, dev,
EVENTHANDLER_PRI_ANY);
EVENTHANDLER_REGISTER(cpufreq_post_change, vcoregpio_post_change, dev,
EVENTHANDLER_PRI_ANY);
return (0);
}
static void
vcoregpio_pre_change(device_t dev, const struct cf_level *level)
{
if (level->rel_set[0].freq == 10000 ) {
macgpio_write(dev, GPIO_DDR_OUTPUT | 1);
DELAY(1000);
}
}
static void
vcoregpio_post_change(device_t dev, const struct cf_level *level)
{
if (level->rel_set[0].freq < 10000 ) {
DELAY(1000);
macgpio_write(dev, GPIO_DDR_OUTPUT | 0);
}
}