summaryrefslogtreecommitdiff
path: root/sys/dev/fdt/bcm2711_tmon.c
blob: 8863342cf4c3d92892ee48cb240fe490145057bf (plain)
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
117
118
119
120
121
122
123
124
125
126
127
/*
 * Copyright (c) 2020 Alastair Poole <netstar@gmail.com>
 *
 * 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.
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/sensors.h>

#include <machine/bus.h>
#include <machine/fdt.h>

#include <dev/ofw/openfirm.h>
#include <dev/ofw/fdt.h>

/* Registers */
#define  BCMTMON_TSENSSTAT		0x200
#define  BCMTMON_TSENSSTAT_VALID	(1 << 10)
#define  BCMTMON_TSENSSTAT_DATA(x)	((x) & 0x3ff)

#define HREAD4(sc, reg)	\
	(bus_space_read_4((sc)->sc_iot, (sc)->sc_ioh, (reg)))

struct bcmtmon_softc {
	struct device		sc_dev;
	bus_space_tag_t		sc_iot;
	bus_space_handle_t	sc_ioh;
	bus_size_t		sc_tsensstat;

	int32_t			sc_slope;
	int32_t			sc_offset;

	struct ksensor		sc_sensor;
	struct ksensordev	sc_sensordev;
};

int	bcmtmon_match(struct device *, void *, void *);
void	bcmtmon_attach(struct device *, struct device *, void *);

const struct cfattach bcmtmon_ca = {
	sizeof (struct bcmtmon_softc), bcmtmon_match, bcmtmon_attach
};

struct cfdriver bcmtmon_cd = {
	NULL, "bcmtmon", DV_DULL
};

void	bcmtmon_refresh_sensors(void *);

int
bcmtmon_match(struct device *parent, void *match, void *aux)
{
	struct fdt_attach_args *faa = aux;

	if (OF_is_compatible(faa->fa_node, "brcm,bcm2711-avs-monitor") ||
	    OF_is_compatible(faa->fa_node, "brcm,avs-tmon-bcm2711") ||
	    OF_is_compatible(faa->fa_node, "brcm,avs-tmon-bcm2838"))
		return 10;	/* Must beat syscon(4). */

	return 0;
}

void
bcmtmon_attach(struct device *parent, struct device *self, void *aux)
{
	struct bcmtmon_softc *sc = (struct bcmtmon_softc *)self;
	struct fdt_attach_args *faa = aux;
	
	if (faa->fa_nreg < 1) {
		printf(": no registers\n");
		return;
	}

	sc->sc_iot = faa->fa_iot;

	if (bus_space_map(sc->sc_iot, faa->fa_reg[0].addr,
	    faa->fa_reg[0].size, 0, &sc->sc_ioh)) {
		printf(": can't map registers\n");
		return;
	}

	printf("\n");

	if (OF_is_compatible(faa->fa_node, "brcm,bcm2711-avs-monitor"))
		sc->sc_tsensstat = BCMTMON_TSENSSTAT;

	sc->sc_slope = -487;
	sc->sc_offset = 410040;

	/* Register sensors. */
	strlcpy(sc->sc_sensordev.xname, sc->sc_dev.dv_xname,
	    sizeof(sc->sc_sensordev.xname));
	sc->sc_sensor.type = SENSOR_TEMP;
	sc->sc_sensor.flags = SENSOR_FINVALID;
	sensor_attach(&sc->sc_sensordev, &sc->sc_sensor);
	sensordev_install(&sc->sc_sensordev);
	sensor_task_register(sc, bcmtmon_refresh_sensors, 5);
}

void
bcmtmon_refresh_sensors(void *arg)
{
	struct bcmtmon_softc *sc = arg;
	int32_t code, temp;

	code = HREAD4(sc, sc->sc_tsensstat);
	temp = sc->sc_slope * BCMTMON_TSENSSTAT_DATA(code) + sc->sc_offset;

	sc->sc_sensor.value = 273150000 + 1000 * temp;

	if (code & BCMTMON_TSENSSTAT_VALID)
		sc->sc_sensor.flags &= ~SENSOR_FINVALID;
	else
		sc->sc_sensor.flags |= SENSOR_FINVALID;
}