1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/* $OpenBSD: owid.c,v 1.10 2014/09/14 14:17:25 jsg Exp $ */
/*
* Copyright (c) 2006 Alexander Yurchenko <grange@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* 1-Wire ID family type device driver.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/kernel.h>
#include <sys/sensors.h>
#include <dev/onewire/onewiredevs.h>
#include <dev/onewire/onewirereg.h>
#include <dev/onewire/onewirevar.h>
struct owid_softc {
struct device sc_dev;
void * sc_onewire;
u_int64_t sc_rom;
struct ksensor sc_sensor;
struct ksensordev sc_sensordev;
int sc_dying;
};
int owid_match(struct device *, void *, void *);
void owid_attach(struct device *, struct device *, void *);
int owid_detach(struct device *, int);
int owid_activate(struct device *, int);
struct cfattach owid_ca = {
sizeof(struct owid_softc),
owid_match,
owid_attach,
owid_detach,
owid_activate
};
struct cfdriver owid_cd = {
NULL, "owid", DV_DULL
};
static const struct onewire_matchfam owid_fams[] = {
{ ONEWIRE_FAMILY_DS1990 }
};
int
owid_match(struct device *parent, void *match, void *aux)
{
return (onewire_matchbyfam(aux, owid_fams, nitems(owid_fams)));
}
void
owid_attach(struct device *parent, struct device *self, void *aux)
{
struct owid_softc *sc = (struct owid_softc *)self;
struct onewire_attach_args *oa = aux;
sc->sc_onewire = oa->oa_onewire;
sc->sc_rom = oa->oa_rom;
/* Initialize sensor */
strlcpy(sc->sc_sensordev.xname, sc->sc_dev.dv_xname,
sizeof(sc->sc_sensordev.xname));
sc->sc_sensor.type = SENSOR_INTEGER;
sc->sc_sensor.value = ONEWIRE_ROM_SN(sc->sc_rom);
snprintf(sc->sc_sensor.desc, sizeof(sc->sc_sensor.desc), "sn %012llx",
ONEWIRE_ROM_SN(oa->oa_rom));
sensor_attach(&sc->sc_sensordev, &sc->sc_sensor);
sensordev_install(&sc->sc_sensordev);
printf("\n");
}
int
owid_detach(struct device *self, int flags)
{
struct owid_softc *sc = (struct owid_softc *)self;
sensordev_deinstall(&sc->sc_sensordev);
return (0);
}
int
owid_activate(struct device *self, int act)
{
struct owid_softc *sc = (struct owid_softc *)self;
switch (act) {
case DVACT_DEACTIVATE:
sc->sc_dying = 1;
break;
}
return (0);
}
|