]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/wallclock/mips/ref4955/v2_0/src/wallclock_ref4955.cxx
Initial revision
[karo-tx-redboot.git] / packages / devs / wallclock / mips / ref4955 / v2_0 / src / wallclock_ref4955.cxx
1 //==========================================================================
2 //
3 //      devs/wallclock/mips/ref4955/ref4955.cxx
4 //
5 //      Wallclock implementation
6 //
7 //==========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //==========================================================================
41 //#####DESCRIPTIONBEGIN####
42 //
43 // Author(s):     jskov
44 // Contributors:  jskov
45 // Date:          2000-05-25
46 // Purpose:       Wallclock driver for REF4955
47 //
48 //####DESCRIPTIONEND####
49 //
50 //==========================================================================
51
52 #include <pkgconf/wallclock.h>          // Wallclock device config
53
54 #include <cyg/hal/hal_io.h>             // IO macros
55 #include <cyg/infra/cyg_type.h>         // Common type definitions and support
56
57 #include <cyg/io/wallclock.hxx>         // The WallClock API
58 #include <cyg/io/wallclock/wallclock.inl> // Helpers
59
60 #include <cyg/infra/diag.h>             // For debugging
61
62 // REF4955 has a Dallas 1742W part.
63 #define DS_BASE 0xb5000000
64 #include <cyg/io/wallclock/ds1742.inl>
65
66 //-----------------------------------------------------------------------------
67 // Functions required for the hardware-driver API.
68
69 // Returns the number of seconds elapsed since 1970-01-01 00:00:00.
70 cyg_uint32 
71 Cyg_WallClock::get_hw_seconds(void)
72 {
73     cyg_uint32 year, month, mday, hour, minute, second;
74
75     get_ds_hwclock(&year, &month, &mday, &hour, &minute, &second);
76
77 #if 0
78     // This will cause the test to eventually fail due to these printouts
79     // causing timer interrupts to be lost...
80     diag_printf("year %02d\n", year);
81     diag_printf("month %02d\n", month);
82     diag_printf("mday %02d\n", mday);
83     diag_printf("hour %02d\n", hour);
84     diag_printf("minute %02d\n", minute);
85     diag_printf("second %02d\n", second);
86 #endif
87
88     cyg_uint32 now = _simple_mktime(year, month, mday, hour, minute, second);
89     return now;
90 }
91
92 #ifdef CYGSEM_WALLCLOCK_SET_GET_MODE
93
94 // Sets the clock. Argument is seconds elapsed since 1970-01-01 00:00:00.
95 void
96 Cyg_WallClock::set_hw_seconds( cyg_uint32 secs )
97 {
98     cyg_uint32 year, month, mday, hour, minute, second;
99
100     _simple_mkdate(secs, &year, &month, &mday, &hour, &minute, &second);
101
102     set_ds_hwclock(year, month, mday, hour, minute, second);
103 }
104
105 #endif
106
107 void
108 Cyg_WallClock::init_hw_seconds(void)
109 {
110 #ifdef CYGSEM_WALLCLOCK_SET_GET_MODE
111     init_ds_hwclock();
112 #else
113     // This is our base: 1970-01-01 00:00:00
114     // Set the HW clock - if for nothing else, just to be sure it's in a
115     // legal range. Any arbitrary base could be used.
116     // After this the hardware clock is only read.
117     set_ds_hwclock(1970,1,1,0,0,0);
118 #endif
119 }
120
121 //-----------------------------------------------------------------------------
122 // End of devs/wallclock/mips/ref4955/wallclock_ref4955.cxx