blob: 496f406412adc1df3b94efe3d98cdf29ad5d8688 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef SUN3X_TIME_H
3#define SUN3X_TIME_H
4
5extern int sun3x_hwclk(int set, struct rtc_time *t);
Stephen Warrenc8d5ba12012-11-08 11:34:55 -07006u32 sun3x_gettimeoffset(void);
David Howells40220c12006-10-09 12:19:47 +01007void sun3x_sched_init(irq_handler_t vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9struct mostek_dt {
10 volatile unsigned char csr;
11 volatile unsigned char sec;
12 volatile unsigned char min;
13 volatile unsigned char hour;
14 volatile unsigned char wday;
15 volatile unsigned char mday;
16 volatile unsigned char month;
17 volatile unsigned char year;
18};
19
20#endif