2005-01-06 01:43:34 +00:00
|
|
|
/*-
|
2004-11-17 16:37:25 +00:00
|
|
|
* Copyright (c) 2003 Izumi Tsutsui. 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
|
|
*
|
2009-12-25 22:58:43 +00:00
|
|
|
* $NetBSD: mc146818var.h,v 1.7 2008/05/14 13:29:29 tsutsui Exp $
|
2004-11-17 16:37:25 +00:00
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct mc146818_softc {
|
|
|
|
bus_space_tag_t sc_bst; /* bus space tag */
|
|
|
|
bus_space_handle_t sc_bsh; /* bus space handle */
|
|
|
|
|
2005-05-19 21:20:42 +00:00
|
|
|
struct mtx sc_mtx; /* hardware mutex */
|
|
|
|
|
2004-11-17 16:37:25 +00:00
|
|
|
u_char sc_rega; /* register A */
|
|
|
|
u_char sc_regb; /* register B */
|
|
|
|
|
|
|
|
u_int sc_year0; /* year counter offset */
|
2009-12-25 22:53:46 +00:00
|
|
|
|
2004-11-17 16:37:25 +00:00
|
|
|
u_int sc_flag; /* MD flags */
|
2009-12-25 22:53:46 +00:00
|
|
|
#define MC146818_NO_CENT_ADJUST 0x0001 /* don't adjust century */
|
|
|
|
#define MC146818_BCD 0x0002 /* use BCD mode */
|
|
|
|
#define MC146818_12HR 0x0004 /* use AM/PM mode */
|
2004-11-17 16:37:25 +00:00
|
|
|
|
|
|
|
/* MD chip register read/write functions */
|
2009-12-25 22:53:46 +00:00
|
|
|
u_int (*sc_mcread)(device_t dev, u_int reg);
|
|
|
|
void (*sc_mcwrite)(device_t dev, u_int reg, u_int val);
|
2004-11-17 16:37:25 +00:00
|
|
|
/* MD century get/set functions */
|
2009-12-25 22:53:46 +00:00
|
|
|
u_int (*sc_getcent)(device_t dev);
|
|
|
|
void (*sc_setcent)(device_t dev, u_int cent);
|
2004-11-17 16:37:25 +00:00
|
|
|
};
|
|
|
|
|
2007-06-16 23:10:00 +00:00
|
|
|
/* Default read/write functions */
|
2009-12-25 22:53:46 +00:00
|
|
|
u_int mc146818_def_read(device_t dev, u_int reg);
|
|
|
|
void mc146818_def_write(device_t dev, u_int reg, u_int val);
|
2007-06-16 23:10:00 +00:00
|
|
|
|
2004-11-17 16:37:25 +00:00
|
|
|
/* Chip attach function */
|
|
|
|
int mc146818_attach(device_t);
|
|
|
|
|
|
|
|
/* Methods for the clock interface */
|
|
|
|
#ifdef notyet
|
2009-12-25 22:53:46 +00:00
|
|
|
int mc146818_getsecs(device_t dev, int *secp);
|
2004-11-17 16:37:25 +00:00
|
|
|
#endif
|
2009-12-25 22:53:46 +00:00
|
|
|
int mc146818_gettime(device_t dev, struct timespec *ts);
|
|
|
|
int mc146818_settime(device_t dev, struct timespec *ts);
|