summaryrefslogtreecommitdiff
path: root/sys/dev/pci/viapm.c
blob: 0e4a3ee262f0c5b0e463c5f547dd62e63c4beff9 (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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*	$NetBSD: viapm.c,v 1.9 2003/01/01 00:10:23 thorpej Exp $	*/

/*
 * Copyright (c) 2000 Johan Danielsson
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * 3. Neither the name of author nor the names of any contributors may
 *    be used to endorse or promote products derived from this
 *    software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

/*
 * frontend for the power management device in the VIA VT82C686a South
 * Bridge. It (the chip) has three functions, power management, hardware
 * monitoring, and an SMBus controller. A driver for the hardware monitoring
 * is provided by the viaenv driver
 */

#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: viapm.c,v 1.9 2003/01/01 00:10:23 thorpej Exp $");

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

#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcidevs.h>

#include <dev/pci/viapmvar.h>

struct viapm_softc {
	struct device sc_dev;

	pci_chipset_tag_t sc_pc;
	pcitag_t sc_tag;
	bus_space_tag_t sc_iot;
};

static int
viapm_match(struct device * parent, struct cfdata * match, void *aux)
{
	struct pci_attach_args *pa = aux;

	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_VIATECH &&
	    PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_VIATECH_VT82C686A_SMB)
		return 1;
	return 0;
}

static const char *
viapm_device_name(enum vapm_devtype type)
{

	switch (type) {
	case VIAPM_POWER:
		return "power management";
	case VIAPM_HWMON:
		return "hardware monitor";
	case VIAPM_SMBUS:
		return "SMBus controller";
	default:
		panic("viapm_device_name: unknown type");
	}
}

static int
viapm_print(void *aux, const char *pnp)
{
	struct viapm_attach_args *vaa = aux;

	if (pnp)
		aprint_normal("%s at %s", viapm_device_name(vaa->va_type), pnp);
	return UNCONF;
}

static int
viapm_submatch(struct device * parent, struct cfdata * cf, void *aux)
{

	return config_match(parent, cf, aux);
}

static void
viapm_attach(struct device * parent, struct device * self, void *aux)
{
	struct viapm_softc *sc = (struct viapm_softc *) self;
	struct pci_attach_args *pa = aux;
	struct viapm_attach_args vaa;

	printf("\n");

	sc->sc_pc = pa->pa_pc;
	sc->sc_tag = pa->pa_tag;
	sc->sc_iot = pa->pa_iot;

	vaa.va_pc = sc->sc_pc;
	vaa.va_tag = sc->sc_tag;
	vaa.va_iot = sc->sc_iot;

#if 0
	/*
	 * no point in confusing people with these until there are drivers for
	 * them
	 */
	vaa.va_type = VIAPM_POWER;
	vaa.va_offset = 0x40;
	config_found_sm(self, &vaa, viapm_print, viapm_submatch);
#endif

	vaa.va_type = VIAPM_HWMON;
	vaa.va_offset = 0x70;
	config_found_sm(self, &vaa, viapm_print, viapm_submatch);

#if 0
	vaa.va_type = VIAPM_SMBUS;
	vaa.va_offset = 0x93;
	config_found_sm(self, &vaa, viapm_print, viapm_submatch);
#endif
}

CFATTACH_DECL(viapm, sizeof(struct viapm_softc),
    viapm_match, viapm_attach, NULL, NULL);