]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/wallclock/powerpc/moab/v2_0/include/devices_wallclock_moab.inl
Merge branch 'master' of git+ssh://git.kernelconcepts.de/karo-tx-redboot
[karo-tx-redboot.git] / packages / devs / wallclock / powerpc / moab / v2_0 / include / devices_wallclock_moab.inl
1 //==========================================================================
2 //
3 //      devs/wallclock/powerpc/moab/include/devs_wallclock_moab.inl
4 //
5 //      TAMS MOAB RTC IO definitions
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 // Copyright (C) 2003 Gary Thomas
13 //
14 // eCos is free software; you can redistribute it and/or modify it under
15 // the terms of the GNU General Public License as published by the Free
16 // Software Foundation; either version 2 or (at your option) any later version.
17 //
18 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
19 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
21 // for more details.
22 //
23 // You should have received a copy of the GNU General Public License along
24 // with eCos; if not, write to the Free Software Foundation, Inc.,
25 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26 //
27 // As a special exception, if other files instantiate templates or use macros
28 // or inline functions from this file, or you compile this file and link it
29 // with other works to produce a work based on this file, this file does not
30 // by itself cause the resulting work to be covered by the GNU General Public
31 // License. However the source code for this file must still be made available
32 // in accordance with section (3) of the GNU General Public License.
33 //
34 // This exception does not invalidate any other reasons why a work based on
35 // this file might be covered by the GNU General Public License.
36 //
37 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
38 // at http://sources.redhat.com/ecos/ecos-license/
39 // -------------------------------------------
40 //####ECOSGPLCOPYRIGHTEND####
41 //==========================================================================
42 //#####DESCRIPTIONBEGIN####
43 //
44 // Author(s):   rajt
45 // Contributors:rajt
46 // Date:        2001-07-19
47 // Purpose:     MOAB RTC definitions for using DS1307
48 //####DESCRIPTIONEND####
49 //==========================================================================
50
51 #include CYGDAT_DEVS_WALLCLOCK_MOAB_CFG
52
53 static __inline__ void
54 DS_GET(cyg_uint8 *regs)
55 {
56     cyg_uint8 addr, page;
57
58     // Read RTC 
59     addr = 0x00;
60     page = 0xD1;
61     if (!hal_ppc405_i2c_put_bytes(page, &addr, 1)) {
62         diag_printf("%s - Can't select page %x\n", __FUNCTION__, page);
63         return;
64     }
65     if (!hal_ppc405_i2c_get_bytes(page, regs, DS_REGS_SIZE)) {
66         diag_printf("%s - Can't read RTC\n", __FUNCTION__);
67         return;
68     }
69 #if 0
70     diag_printf("RTC data - read\n");
71     diag_dump_buf(regs, DS_REGS_SIZE);
72 #endif
73
74 #ifdef RTC_TEST
75     addr = 0x10;
76     page = 0xD1;
77     if (!hal_ppc405_i2c_put_bytes(page, &addr, 1)) {
78         diag_printf("%s - Can't select page %x\n", __FUNCTION__, page);
79         return;
80     }
81     if (!hal_ppc405_i2c_get_bytes(page, regs, DS_REGS_SIZE)) {
82         diag_printf("%s - Can't read RTC\n", __FUNCTION__);
83         return;
84     }
85     diag_printf("RTC data - test\n");
86     diag_dump_buf(regs, DS_REGS_SIZE);
87 #endif
88 }
89
90 static __inline__ void
91 DS_PUT(cyg_uint8 *regs)
92 {
93     cyg_uint8 addr_data[DS_REGS_SIZE+1], page;
94     int i;
95
96 #if 0
97     diag_printf("RTC data - write\n");
98     diag_dump_buf(regs, DS_REGS_SIZE);
99 #endif
100     // Update RTC in one swoop
101     addr_data[0] = 0x00;  // Starting register address
102     for (i = 0;  i < DS_REGS_SIZE;  i++) {
103         addr_data[i+1] = regs[i];
104     }
105     page = 0xD0;
106     if (!hal_ppc405_i2c_put_bytes(page, addr_data, DS_REGS_SIZE+1)) {
107         diag_printf("%s - Can't write registers\n", __FUNCTION__);
108         return;
109     }
110 #ifdef RTC_TEST
111     // Test RTC by copying the registers to some of the RAM
112     addr_data[0] = 0x10;  // Starting register address
113     for (i = 0;  i < DS_REGS_SIZE;  i++) {
114         addr_data[i+1] = regs[i];
115     }
116     page = 0xD0;
117     if (!hal_ppc405_i2c_put_bytes(page, addr_data, DS_REGS_SIZE+1)) {
118         diag_printf("%s - Can't write registers\n", __FUNCTION__);
119         return;
120     }
121 #endif
122 }
123
124 // EOF devs_wallclock_moab.inl