NetBSD/sys/arch/prep/isa/mkclock_isa.c

312 lines
8.6 KiB
C

/* $NetBSD: mkclock_isa.c,v 1.5 2002/10/02 15:52:29 thorpej Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Klaus J. Klein.
*
* 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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.
*/
/*
* Mostek MK48T18 time-of-day chip attachment to ISA bus, using two
* 8-bit ports for address selection and one 8-bit port for data.
*/
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: mkclock_isa.c,v 1.5 2002/10/02 15:52:29 thorpej Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <prep/prep/clockvar.h>
#include <machine/bus.h>
#include <machine/residual.h>
#include <dev/clock_subr.h>
#include <dev/ic/mk48txxreg.h>
#include <dev/isa/isavar.h>
/* Offsets of registers into ISA I/O space */
#define MKCLOCK_STB0 0 /* Address low */
#define MKCLOCK_STB1 1 /* Address high */
#define MKCLOCK_DATA 3 /* Data port */
#define MKCLOCK_NPORTS (MKCLOCK_DATA - MKCLOCK_STB0 + 1)
struct mkclock_isa_softc {
struct device sc_dev; /* Base device */
bus_space_tag_t sc_iot; /* I/O space access */
bus_space_handle_t sc_ioh;
todr_chip_handle_t sc_todr; /* MI todr interface handle */
};
/* Autoconfiguration interface */
int mkclock_isa_match(struct device *, struct cfdata *, void *);
void mkclock_isa_attach(struct device *, struct device *, void *);
CFATTACH_DECL(mkclock_isa, sizeof (struct mkclock_isa_softc),
mkclock_isa_match, mkclock_isa_attach, NULL, NULL);
/* mk48txx interface */
uint8_t mkclock_isa_nvrd(bus_space_tag_t, bus_space_handle_t, int);
void mkclock_isa_nvwr(bus_space_tag_t, bus_space_handle_t, int, uint8_t);
/* MI todr/PReP clock handling shim */
void mkclock_isa_init(struct device *);
void mkclock_isa_get(struct device *, time_t, struct clocktime *);
void mkclock_isa_set(struct device *, struct clocktime *);
struct clockfns mkclock_isa_clockfns = {
mkclock_isa_init, /* cf_init */
mkclock_isa_get, /* cf_get */
mkclock_isa_set /* cf_set */
};
int
mkclock_isa_match(struct device *parent, struct cfdata *match, void *aux)
{
struct isa_attach_args *ia = aux;
bus_space_handle_t ioh;
uint8_t csr, ocsr;
unsigned int t1, t2;
int found;
found = 0;
if (ia->ia_nio < 1 ||
(ia->ia_io[0].ir_addr != ISACF_PORT_DEFAULT &&
ia->ia_io[0].ir_addr != 0x74))
return (0);
if (ia->ia_niomem > 0 &&
(ia->ia_iomem[0].ir_addr != ISACF_IOMEM_DEFAULT))
return (0);
if (ia->ia_nirq > 0 &&
(ia->ia_irq[0].ir_irq != ISACF_IRQ_DEFAULT))
return (0);
if (ia->ia_ndrq > 0 &&
(ia->ia_drq[0].ir_drq != ISACF_DRQ_DEFAULT))
return (0);
if (res->VitalProductData.NvramSize != MK48T18_CLKSZ)
return (0);
/*
* Map I/O space, then try to determine if it's really there.
*/
if (bus_space_map(ia->ia_iot, 0x74, MKCLOCK_NPORTS, 0, &ioh))
return (0);
/* Supposedly no control bits are set after POST; check for this. */
ocsr = mkclock_isa_nvrd(ia->ia_iot, ioh, MK48T18_CLKOFF + MK48TXX_ICSR);
if (ocsr != 0)
goto unmap;
/* Set clock data to read mode, prohibiting updates from clock. */
csr = ocsr | MK48TXX_CSR_READ;
mkclock_isa_nvwr(ia->ia_iot, ioh, MK48T18_CLKOFF + MK48TXX_ICSR, csr);
/* Compare. */
if (mkclock_isa_nvrd(ia->ia_iot, ioh, MK48T18_CLKOFF + MK48TXX_ICSR)
!= csr)
goto restore;
/* Read from the seconds counter. */
t1 = FROMBCD(mkclock_isa_nvrd(ia->ia_iot, ioh,
MK48T18_CLKOFF + MK48TXX_ISEC));
if (t1 > 59)
goto restore;
/* Make it tick again, wait, then look again. */
mkclock_isa_nvwr(ia->ia_iot, ioh, MK48T18_CLKOFF + MK48TXX_ICSR, ocsr);
DELAY(1100000);
mkclock_isa_nvwr(ia->ia_iot, ioh, MK48T18_CLKOFF + MK48TXX_ICSR, csr);
t2 = FROMBCD(mkclock_isa_nvrd(ia->ia_iot, ioh,
MK48T18_CLKOFF + MK48TXX_ISEC));
if (t2 > 59)
goto restore;
#ifdef DEBUG
printf("mkclock_isa_match: t1 %02d, t2 %02d\n", t1, t2);
#endif
/* If [1,2) seconds have passed since, call it a clock. */
if ((t1 + 1) % 60 == t2 || (t1 + 2) % 60 == t2)
found = 1;
restore:
mkclock_isa_nvwr(ia->ia_iot, ioh, MK48T18_CLKOFF + MK48TXX_ICSR, ocsr);
unmap:
bus_space_unmap(ia->ia_iot, ioh, MKCLOCK_NPORTS);
if (found) {
ia->ia_nio = 1;
ia->ia_io[0].ir_addr = 0x74;
ia->ia_io[0].ir_size = MKCLOCK_NPORTS;
ia->ia_niomem = 0;
ia->ia_nirq = 0;
ia->ia_ndrq = 0;
}
return (found);
}
void
mkclock_isa_attach(struct device *parent, struct device *self, void *aux)
{
struct isa_attach_args *ia = aux;
struct mkclock_isa_softc *sc = (struct mkclock_isa_softc *)self;
/* Map I/O space. */
sc->sc_iot = ia->ia_iot;
if (bus_space_map(sc->sc_iot, ia->ia_io[0].ir_addr,
ia->ia_io[0].ir_size, 0, &sc->sc_ioh))
panic("mkclock_isa_attach: couldn't map clock I/O space");
/* Attach to MI mk48txx driver. */
sc->sc_todr = mk48txx_attach(sc->sc_iot, sc->sc_ioh, "mk48t18", 1900,
mkclock_isa_nvrd, mkclock_isa_nvwr);
if (sc->sc_todr == NULL)
panic("\nmkclock_isa_attach: mk48txx attach failed");
clockattach(self, &mkclock_isa_clockfns);
}
/*
* Shim to interface mk48txx's MI TODR handling with current PReP structure.
*/
void
mkclock_isa_init(struct device *self)
{
/* Nothing to be done. */
}
void
mkclock_isa_get(struct device *self, time_t base, struct clocktime *ct)
{
struct mkclock_isa_softc *sc = (struct mkclock_isa_softc *)self;
struct clock_ymdhms dt;
struct timeval tv;
todr_gettime(sc->sc_todr, &tv);
/* Note: we ignore `tv_usec'. */
clock_secs_to_ymdhms(tv.tv_sec, &dt);
ct->year = dt.dt_year - 1900;
ct->mon = dt.dt_mon;
ct->day = dt.dt_day;
ct->hour = dt.dt_hour;
ct->min = dt.dt_min;
ct->sec = dt.dt_sec;
ct->dow = dt.dt_wday;
}
void
mkclock_isa_set(struct device *self, struct clocktime *ct)
{
struct mkclock_isa_softc *sc = (struct mkclock_isa_softc *)self;
struct clock_ymdhms dt;
struct timeval tv;
dt.dt_year = ct->year + 1900;
if (dt.dt_year < 1970)
dt.dt_year += 100;
dt.dt_mon = ct->mon;
dt.dt_day = ct->day;
dt.dt_wday = ct->dow;
dt.dt_hour = ct->hour;
dt.dt_min = ct->min;
dt.dt_sec = ct->sec;
tv.tv_sec = clock_ymdhms_to_secs(&dt);
tv.tv_usec = 0;
todr_settime(sc->sc_todr, &tv);
}
/*
* Bus access methods for MI mk48txx driver.
*/
uint8_t
mkclock_isa_nvrd(bus_space_tag_t iot, bus_space_handle_t ioh, int off)
{
uint8_t datum;
int s;
#ifdef DEBUG
printf("mkclock_isa_nvrd(%d)", off);
#endif
s = splclock();
bus_space_write_1(iot, ioh, MKCLOCK_STB0, off & 0xff);
bus_space_write_1(iot, ioh, MKCLOCK_STB1, off >> 8);
datum = bus_space_read_1(iot, ioh, MKCLOCK_DATA);
splx(s);
#ifdef DEBUG
printf(" -> %02x\n", datum);
#endif
return (datum);
}
void
mkclock_isa_nvwr(bus_space_tag_t iot, bus_space_handle_t ioh, int off,
uint8_t datum)
{
int s;
#ifdef DEBUG
printf("mkclock_isa_nvwr(%d, %02x)\n", off, datum);
#endif
s = splclock();
bus_space_write_1(iot, ioh, MKCLOCK_STB0, off & 0xff);
bus_space_write_1(iot, ioh, MKCLOCK_STB1, off >> 8);
bus_space_write_1(iot, ioh, MKCLOCK_DATA, datum);
splx(s);
}