1 /* Blackfin Real Time Clock (RTC) model.
3 Copyright (C) 2010-2016 Free Software Foundation, Inc.
4 Contributed by Analog Devices, Inc.
6 This file is part of simulators.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 #include "dv-sockser.h"
27 #include "dv-bfin_rtc.h"
29 /* XXX: This read-only stub setup is based on host system clock. */
36 /* Order after here is important -- matches hardware MMR layout. */
38 bu16 BFIN_MMR_16(ictl);
39 bu16 BFIN_MMR_16(istat);
40 bu16 BFIN_MMR_16(swcnt);
42 bu16 BFIN_MMR_16(pren);
44 #define mmr_base() offsetof(struct bfin_rtc, stat)
45 #define mmr_offset(mmr) (offsetof(struct bfin_rtc, mmr) - mmr_base())
47 static const char * const mmr_names[] =
49 "RTC_STAT", "RTC_ICTL", "RTC_ISTAT", "RTC_SWCNT", "RTC_ALARM", "RTC_PREN",
51 #define mmr_name(off) mmr_names[(off) / 4]
54 bfin_rtc_io_write_buffer (struct hw *me, const void *source,
55 int space, address_word addr, unsigned nr_bytes)
57 struct bfin_rtc *rtc = hw_data (me);
64 /* Invalid access mode is higher priority than missing register. */
65 if (!dv_bfin_mmr_require_16_32 (me, addr, nr_bytes, true))
69 value = dv_load_4 (source);
71 value = dv_load_2 (source);
73 mmr_off = addr - rtc->base;
74 valuep = (void *)((unsigned long)rtc + mmr_base() + mmr_off);
80 /* XXX: These probably need more work. */
83 case mmr_offset(stat):
84 /* XXX: Ignore these since we are wired to host. */
86 case mmr_offset(istat):
87 dv_w1c_2 (value16p, value, ~(1 << 14));
89 case mmr_offset(alarm):
91 case mmr_offset(ictl):
92 /* XXX: This should schedule an event handler. */
93 case mmr_offset(swcnt):
94 case mmr_offset(pren):
102 bfin_rtc_io_read_buffer (struct hw *me, void *dest,
103 int space, address_word addr, unsigned nr_bytes)
105 struct bfin_rtc *rtc = hw_data (me);
111 /* Invalid access mode is higher priority than missing register. */
112 if (!dv_bfin_mmr_require_16_32 (me, addr, nr_bytes, false))
115 mmr_off = addr - rtc->base;
116 valuep = (void *)((unsigned long)rtc + mmr_base() + mmr_off);
124 case mmr_offset(stat):
126 time_t t = time (NULL);
127 struct tm *tm = localtime (&t);
129 (((tm->tm_year - 70) * 365 + tm->tm_yday) << 17) |
130 (tm->tm_hour << 12) |
133 dv_store_4 (dest, value);
136 case mmr_offset(alarm):
137 dv_store_4 (dest, *value32p);
139 case mmr_offset(istat):
140 case mmr_offset(ictl):
141 case mmr_offset(swcnt):
142 case mmr_offset(pren):
143 dv_store_2 (dest, *value16p);
150 static const struct hw_port_descriptor bfin_rtc_ports[] =
152 { "rtc", 0, 0, output_port, },
157 attach_bfin_rtc_regs (struct hw *me, struct bfin_rtc *rtc)
159 address_word attach_address;
161 unsigned attach_size;
162 reg_property_spec reg;
164 if (hw_find_property (me, "reg") == NULL)
165 hw_abort (me, "Missing \"reg\" property");
167 if (!hw_find_reg_array_property (me, "reg", 0, ®))
168 hw_abort (me, "\"reg\" property must contain three addr/size entries");
170 hw_unit_address_to_attach_address (hw_parent (me),
172 &attach_space, &attach_address, me);
173 hw_unit_size_to_attach_size (hw_parent (me), ®.size, &attach_size, me);
175 if (attach_size != BFIN_MMR_RTC_SIZE)
176 hw_abort (me, "\"reg\" size must be %#x", BFIN_MMR_RTC_SIZE);
178 hw_attach_address (hw_parent (me),
179 0, attach_space, attach_address, attach_size, me);
181 rtc->base = attach_address;
185 bfin_rtc_finish (struct hw *me)
187 struct bfin_rtc *rtc;
189 rtc = HW_ZALLOC (me, struct bfin_rtc);
191 set_hw_data (me, rtc);
192 set_hw_io_read_buffer (me, bfin_rtc_io_read_buffer);
193 set_hw_io_write_buffer (me, bfin_rtc_io_write_buffer);
194 set_hw_ports (me, bfin_rtc_ports);
196 attach_bfin_rtc_regs (me, rtc);
198 /* Initialize the RTC. */
201 const struct hw_descriptor dv_bfin_rtc_descriptor[] =
203 {"bfin_rtc", bfin_rtc_finish,},