amdpcib_hpet.c revision 1.5 1 1.5 jruoho /* $NetBSD: amdpcib_hpet.c,v 1.5 2011/06/15 04:20:47 jruoho Exp $ */
2 1.1 xtraeme
3 1.1 xtraeme /*
4 1.1 xtraeme * Copyright (c) 2006 Nicolas Joly
5 1.1 xtraeme * All rights reserved.
6 1.1 xtraeme *
7 1.1 xtraeme * Redistribution and use in source and binary forms, with or without
8 1.1 xtraeme * modification, are permitted provided that the following conditions
9 1.1 xtraeme * are met:
10 1.1 xtraeme * 1. Redistributions of source code must retain the above copyright
11 1.1 xtraeme * notice, this list of conditions and the following disclaimer.
12 1.1 xtraeme * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 xtraeme * notice, this list of conditions and the following disclaimer in the
14 1.1 xtraeme * documentation and/or other materials provided with the distribution.
15 1.1 xtraeme * 3. The name of the author may not be used to endorse or promote products
16 1.1 xtraeme * derived from this software without specific prior written permission.
17 1.1 xtraeme *
18 1.1 xtraeme * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS
19 1.1 xtraeme * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 1.1 xtraeme * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 1.1 xtraeme * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 1.1 xtraeme * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 1.1 xtraeme * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 1.1 xtraeme * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 1.1 xtraeme * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 1.1 xtraeme * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 1.1 xtraeme * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 1.1 xtraeme * POSSIBILITY OF SUCH DAMAGE.
29 1.1 xtraeme */
30 1.1 xtraeme
31 1.1 xtraeme #include <sys/cdefs.h>
32 1.5 jruoho __KERNEL_RCSID(0, "$NetBSD: amdpcib_hpet.c,v 1.5 2011/06/15 04:20:47 jruoho Exp $");
33 1.1 xtraeme
34 1.1 xtraeme #include <sys/systm.h>
35 1.1 xtraeme #include <sys/device.h>
36 1.1 xtraeme
37 1.1 xtraeme #include <sys/time.h>
38 1.1 xtraeme #include <sys/timetc.h>
39 1.1 xtraeme
40 1.1 xtraeme #include <machine/bus.h>
41 1.1 xtraeme
42 1.1 xtraeme #include <dev/pci/pcivar.h>
43 1.1 xtraeme #include <dev/pci/pcireg.h>
44 1.1 xtraeme #include <dev/pci/pcidevs.h>
45 1.1 xtraeme
46 1.1 xtraeme #include <dev/ic/hpetvar.h>
47 1.1 xtraeme
48 1.3 xtraeme static int amdpcib_hpet_match(device_t , cfdata_t , void *);
49 1.3 xtraeme static void amdpcib_hpet_attach(device_t, device_t, void *);
50 1.5 jruoho static int amdpcib_hpet_detach(device_t, int);
51 1.1 xtraeme
52 1.5 jruoho CFATTACH_DECL_NEW(amdpcib_hpet, sizeof(struct hpet_softc),
53 1.5 jruoho amdpcib_hpet_match, amdpcib_hpet_attach, amdpcib_hpet_detach, NULL);
54 1.1 xtraeme
55 1.1 xtraeme static int
56 1.3 xtraeme amdpcib_hpet_match(device_t parent, cfdata_t match, void *aux)
57 1.1 xtraeme {
58 1.1 xtraeme return 1;
59 1.1 xtraeme }
60 1.1 xtraeme
61 1.1 xtraeme static void
62 1.3 xtraeme amdpcib_hpet_attach(device_t parent, device_t self, void *aux)
63 1.1 xtraeme {
64 1.3 xtraeme struct hpet_softc *sc = device_private(self);
65 1.3 xtraeme struct pci_attach_args *pa = aux;
66 1.1 xtraeme pcireg_t conf, addr;
67 1.1 xtraeme
68 1.1 xtraeme aprint_naive("\n");
69 1.1 xtraeme aprint_normal(": HPET timer\n");
70 1.1 xtraeme
71 1.5 jruoho sc->sc_mapped = false;
72 1.1 xtraeme conf = pci_conf_read(pa->pa_pc, pa->pa_tag, 0xa0);
73 1.5 jruoho
74 1.1 xtraeme if ((conf & 1) == 0) {
75 1.3 xtraeme aprint_normal_dev(self, "HPET timer is disabled\n");
76 1.1 xtraeme return;
77 1.1 xtraeme }
78 1.1 xtraeme
79 1.5 jruoho sc->sc_mems = 1024;
80 1.1 xtraeme sc->sc_memt = pa->pa_memt;
81 1.1 xtraeme
82 1.1 xtraeme addr = conf & 0xfffffc00;
83 1.5 jruoho
84 1.5 jruoho if (bus_space_map(sc->sc_memt, addr, sc->sc_mems, 0, &sc->sc_memh)) {
85 1.5 jruoho aprint_error_dev(self, "failed to map mem space\n");
86 1.1 xtraeme return;
87 1.1 xtraeme }
88 1.1 xtraeme
89 1.5 jruoho sc->sc_mapped = true;
90 1.4 xtraeme hpet_attach_subr(self);
91 1.1 xtraeme }
92 1.5 jruoho
93 1.5 jruoho static int
94 1.5 jruoho amdpcib_hpet_detach(device_t self, int flags)
95 1.5 jruoho {
96 1.5 jruoho struct hpet_softc *sc = device_private(self);
97 1.5 jruoho int rv;
98 1.5 jruoho
99 1.5 jruoho if (sc->sc_mapped != true)
100 1.5 jruoho return 0;
101 1.5 jruoho
102 1.5 jruoho rv = hpet_detach(self, flags);
103 1.5 jruoho
104 1.5 jruoho if (rv != 0)
105 1.5 jruoho return rv;
106 1.5 jruoho
107 1.5 jruoho bus_space_unmap(sc->sc_memt, sc->sc_memh, sc->sc_mems);
108 1.5 jruoho
109 1.5 jruoho return 0;
110 1.5 jruoho }
111