#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/module.h>
#include <sys/ioccom.h>
#include <sys/conf.h>
#include <sys/proc.h>
#include <arm/broadcom/bcm2835/bcm2835_mbox_prop.h>
MALLOC_DECLARE(M_VCIO);
MALLOC_DEFINE(M_VCIO, "vcio", "VCIO temporary buffers");
static struct cdev *sdev;
static d_ioctl_t vcio_ioctl;
static struct cdevsw vcio_devsw = {
.d_version = D_VERSION,
.d_ioctl = vcio_ioctl,
};
#define VCIO_IOC_MAGIC 100
#define IOCTL_MBOX_PROPERTY _IOWR(VCIO_IOC_MAGIC, 0, char *)
int
vcio_ioctl(struct cdev *dev, u_long cmd, caddr_t arg, int mode,
struct thread *td)
{
int error;
void *ptr;
uint32_t size;
uint8_t *property;
error = 0;
switch(cmd) {
case IOCTL_MBOX_PROPERTY:
memcpy (&ptr, arg, sizeof(ptr));
error = copyin(ptr, &size, sizeof(size));
if (error != 0)
break;
property = malloc(size, M_VCIO, M_WAITOK);
error = copyin(ptr, property, size);
if (error) {
free(property, M_VCIO);
break;
}
error = bcm2835_mbox_property(property, size);
if (error) {
free(property, M_VCIO);
break;
}
error = copyout(property, ptr, size);
free(property, M_VCIO);
break;
default:
error = EINVAL;
break;
}
return (error);
}
static int
vcio_load(module_t mod, int cmd, void *arg)
{
int err = 0;
switch (cmd) {
case MOD_LOAD:
sdev = make_dev(&vcio_devsw, 0, UID_ROOT, GID_WHEEL, 0600, "vcio");
break;
case MOD_UNLOAD:
destroy_dev(sdev);
break;
default:
err = EOPNOTSUPP;
break;
}
return(err);
}
DEV_MODULE(vcio, vcio_load, NULL);
MODULE_DEPEND(vcio, mbox, 1, 1, 1);