NetBSD/sys/arch/walnut/dev/ds1743reg.h
simonb 18b2f7e6a1 Add a port to IBM's PPC405GP Reference Board (the "walnut")
by Eduardo Horvath and Simon Burge of Wasabi Systems.

IBM 4xx series CPU features:
 - New pmap and revised trap handler.
 - Support on-chip timers, PCI controller, UARTs
 - Framework for on-chip ethernet and watchdog timer.
General PowerPC features:
 - Add in-kernel PPC floating point emulation
 - New in{,4}_cksum that is between 1.5 and 5 times faster than the
   old version depending on CPU type.
General changes:
 - Kernel support for generic dbsym-style symbols.
2001-06-13 06:01:44 +00:00

30 lines
741 B
C

#ifndef __DS1501_H__
#define __DS1501_H__
/* Dallas Semiconductor DS1501/DS1511 Watchdog RTC */
#define DS_SECONDS 0x1ff9
#define DS_MINUTES 0x1ffa
#define DS_HOURS 0x1ffb
#define DS_DAY 0x1ffc
#define DS_DATE 0x1ffd
#define DS_MONTH 0x1ffe
#define DS_YEAR 0x1fff
#define DS_CENTURY 0x1ff8
#define DS_CTL_R 0x40 /* R bit in the century register */
#define DS_CTL_W 0x80 /* W bit in the century register */
#define DS_CTL_RW (DS_CTL_R|DS_CTL_W)
#define DS_CTL_OSC 0x80 /* ~OSC BIT in the seconds register */
#define DS_CTL_BF 0x80 /* BF(battery failure) bit in the day register */
#define DS_CTL_FT 0x40 /* FT(frequency test) bit in the day register */
#define DS_RAM_SIZE 0x1ff8
#define DS_SIZE 0x2000
#endif /* __DS1501_H__ */