Home | History | Annotate | Line # | Download | only in dev
clockctl.c revision 1.15.6.1
      1  1.15.6.1    simonb /*      $NetBSD: clockctl.c,v 1.15.6.1 2006/04/22 11:38:45 simonb Exp $ */
      2       1.1      manu 
      3       1.1      manu /*-
      4       1.1      manu  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5       1.1      manu  * All rights reserved.
      6       1.1      manu  *
      7       1.1      manu  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1      manu  * by Emmanuel Dreyfus.
      9       1.1      manu  *
     10       1.1      manu  * Redistribution and use in source and binary forms, with or without
     11       1.1      manu  * modification, are permitted provided that the following conditions
     12       1.1      manu  * are met:
     13       1.1      manu  * 1. Redistributions of source code must retain the above copyright
     14       1.1      manu  *    notice, this list of conditions and the following disclaimer.
     15       1.1      manu  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1      manu  *    notice, this list of conditions and the following disclaimer in the
     17       1.1      manu  *    documentation and/or other materials provided with the distribution.
     18       1.1      manu  * 3. The name of the author may not be used to endorse or promote products
     19       1.1      manu  *    derived from this software without specific prior written permission.
     20       1.1      manu  *
     21       1.1      manu  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.1      manu  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.1      manu  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.1      manu  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.1      manu  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.1      manu  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.1      manu  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.1      manu  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.1      manu  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.1      manu  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31       1.1      manu  */
     32       1.2     lukem 
     33       1.2     lukem #include <sys/cdefs.h>
     34  1.15.6.1    simonb __KERNEL_RCSID(0, "$NetBSD: clockctl.c,v 1.15.6.1 2006/04/22 11:38:45 simonb Exp $");
     35       1.5      manu 
     36       1.5      manu #include "opt_ntp.h"
     37       1.1      manu 
     38       1.1      manu #include <sys/param.h>
     39       1.1      manu #include <sys/systm.h>
     40       1.1      manu #include <sys/proc.h>
     41       1.1      manu #include <sys/errno.h>
     42       1.1      manu #include <sys/ioctl.h>
     43       1.1      manu #include <sys/device.h>
     44       1.1      manu #include <sys/time.h>
     45       1.7   gehenna #include <sys/conf.h>
     46       1.1      manu #ifdef NTP
     47       1.1      manu #include <sys/timex.h>
     48       1.1      manu #endif /* NTP */
     49       1.1      manu 
     50       1.1      manu #include <sys/clockctl.h>
     51       1.1      manu 
     52       1.1      manu struct clockctl_softc {
     53       1.1      manu 	struct device   clockctl_dev;
     54       1.1      manu };
     55       1.1      manu 
     56       1.7   gehenna dev_type_ioctl(clockctlioctl);
     57       1.7   gehenna 
     58       1.7   gehenna const struct cdevsw clockctl_cdevsw = {
     59       1.7   gehenna 	nullopen, nullclose, noread, nowrite, clockctlioctl,
     60       1.9  jdolecek 	nostop, notty, nopoll, nommap, nokqfilter,
     61       1.7   gehenna };
     62       1.1      manu 
     63      1.10     perry /*ARGSUSED*/
     64       1.1      manu void
     65      1.10     perry clockctlattach(int num)
     66       1.1      manu {
     67       1.1      manu 	/* Nothing to set up before open is called */
     68       1.1      manu 	return;
     69       1.1      manu }
     70       1.1      manu 
     71       1.1      manu int
     72      1.15  christos clockctlioctl(dev, cmd, data, flags, l)
     73       1.1      manu 	dev_t dev;
     74       1.1      manu 	u_long cmd;
     75       1.1      manu 	caddr_t data;
     76       1.1      manu 	int flags;
     77      1.15  christos 	struct lwp *l;
     78       1.1      manu {
     79       1.1      manu 	int error = 0;
     80      1.13     perry 
     81       1.1      manu 	switch (cmd) {
     82       1.1      manu 		case CLOCKCTL_SETTIMEOFDAY: {
     83  1.15.6.1    simonb 			struct clockctl_settimeofday *args =
     84  1.15.6.1    simonb 			    (struct clockctl_settimeofday *)data;
     85       1.1      manu 
     86  1.15.6.1    simonb 			error = settimeofday1(args->tv, args->tzp, l->l_proc);
     87       1.1      manu 			if (error)
     88       1.1      manu 				return (error);
     89       1.1      manu 			break;
     90       1.1      manu 		}
     91       1.1      manu 		case CLOCKCTL_ADJTIME: {
     92  1.15.6.1    simonb 			struct clockctl_adjtime *args =
     93  1.15.6.1    simonb 			    (struct clockctl_adjtime *)data;
     94       1.1      manu 
     95  1.15.6.1    simonb 			error = adjtime1(args->delta, args->olddelta,
     96  1.15.6.1    simonb 			    l->l_proc);
     97       1.1      manu 			if (error)
     98      1.13     perry 				return (error);
     99       1.1      manu 			break;
    100       1.1      manu 		}
    101       1.1      manu 		case CLOCKCTL_CLOCK_SETTIME: {
    102  1.15.6.1    simonb 			struct clockctl_clock_settime *args =
    103  1.15.6.1    simonb 			    (struct clockctl_clock_settime *)data;
    104       1.1      manu 
    105  1.15.6.1    simonb 			error = clock_settime1(l->l_proc, args->clock_id,
    106  1.15.6.1    simonb 			    args->tp);
    107       1.1      manu 			if (error)
    108      1.13     perry 				return (error);
    109       1.1      manu 			break;
    110       1.1      manu 		}
    111       1.1      manu #ifdef NTP
    112       1.1      manu 		case CLOCKCTL_NTP_ADJTIME: {
    113  1.15.6.1    simonb 			struct clockctl_ntp_adjtime *args =
    114  1.15.6.1    simonb 			    (struct clockctl_ntp_adjtime *)data;
    115       1.6      manu 			struct timex ntv;
    116  1.15.6.1    simonb 			register_t retval;
    117       1.1      manu 
    118  1.15.6.1    simonb 			error = copyin(args->tp, &ntv, sizeof(ntv));
    119       1.6      manu 			if (error)
    120       1.6      manu 				return (error);
    121       1.6      manu 
    122  1.15.6.1    simonb 			error = ntp_adjtime1(&ntv, args, &retval);
    123  1.15.6.1    simonb 			(void)copyout(&retval, &args->retval, sizeof(retval));
    124       1.6      manu 			return (error);
    125       1.1      manu 		}
    126       1.1      manu #endif /* NTP */
    127       1.1      manu 		default:
    128       1.1      manu 			error = EINVAL;
    129       1.1      manu 	}
    130       1.1      manu 
    131       1.1      manu 	return (error);
    132       1.1      manu }
    133       1.1      manu 
    134       1.1      manu 
    135