blob: 2e45f4f0b7ea1ce0ae6ef8fead62cf19a49abda9 (
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
|
/*
* Registers for the SGS-Thomson M48T35 Timekeeper RAM chip
*/
#ifndef __PPC_M48T35_H
#define __PPC_M48T35_H
/* RTC offsets */
#define M48T35_RTC_CONTROL 0
#define M48T35_RTC_SECONDS 1
#define M48T35_RTC_MINUTES 2
#define M48T35_RTC_HOURS 3
#define M48T35_RTC_DAY 4
#define M48T35_RTC_DOM 5
#define M48T35_RTC_MONTH 6
#define M48T35_RTC_YEAR 7
#define M48T35_RTC_SET 0x80
#define M48T35_RTC_STOPPED 0x80
#define M48T35_RTC_READ 0x40
#ifndef BCD_TO_BIN
#define BCD_TO_BIN(x) ((x)=((x)&15) + ((x)>>4)*10)
#endif
#ifndef BIN_TO_BCD
#define BIN_TO_BCD(x) ((x)=(((x)/10)<<4) + (x)%10)
#endif
#endif
|