1 /* Blackfin Real Time Clock (RTC) model.
3 Copyright (C) 2010-2024 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/>. */
21 /* This must come before any other includes. */
26 #include "dv-sockser.h"
28 #include "dv-bfin_rtc.h"
30 /* XXX: This read-only stub setup is based on host system clock. */
37 /* Order after here is important -- matches hardware MMR layout. */
39 bu16
BFIN_MMR_16(ictl
);
40 bu16
BFIN_MMR_16(istat
);
41 bu16
BFIN_MMR_16(swcnt
);
43 bu16
BFIN_MMR_16(pren
);
45 #define mmr_base() offsetof(struct bfin_rtc, stat)
46 #define mmr_offset(mmr) (offsetof(struct bfin_rtc, mmr) - mmr_base())
48 static const char * const mmr_names
[] =
50 "RTC_STAT", "RTC_ICTL", "RTC_ISTAT", "RTC_SWCNT", "RTC_ALARM", "RTC_PREN",
52 #define mmr_name(off) mmr_names[(off) / 4]
55 bfin_rtc_io_write_buffer (struct hw
*me
, const void *source
,
56 int space
, address_word addr
, unsigned nr_bytes
)
58 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 *)((uintptr_t)rtc
+ mmr_base() + mmr_off
);
79 /* XXX: These probably need more work. */
82 case mmr_offset(stat
):
83 /* XXX: Ignore these since we are wired to host. */
85 case mmr_offset(istat
):
86 dv_w1c_2 (value16p
, value
, ~(1 << 14));
88 case mmr_offset(alarm
):
90 case mmr_offset(ictl
):
91 /* XXX: This should schedule an event handler. */
92 case mmr_offset(swcnt
):
93 case mmr_offset(pren
):
101 bfin_rtc_io_read_buffer (struct hw
*me
, void *dest
,
102 int space
, address_word addr
, unsigned nr_bytes
)
104 struct bfin_rtc
*rtc
= hw_data (me
);
110 /* Invalid access mode is higher priority than missing register. */
111 if (!dv_bfin_mmr_require_16_32 (me
, addr
, nr_bytes
, false))
114 mmr_off
= addr
- rtc
->base
;
115 valuep
= (void *)((uintptr_t)rtc
+ mmr_base() + mmr_off
);
123 case mmr_offset(stat
):
125 time_t t
= time (NULL
);
126 struct tm
*tm
= localtime (&t
);
128 (((tm
->tm_year
- 70) * 365 + tm
->tm_yday
) << 17) |
129 (tm
->tm_hour
<< 12) |
132 dv_store_4 (dest
, value
);
135 case mmr_offset(alarm
):
136 dv_store_4 (dest
, *value32p
);
138 case mmr_offset(istat
):
139 case mmr_offset(ictl
):
140 case mmr_offset(swcnt
):
141 case mmr_offset(pren
):
142 dv_store_2 (dest
, *value16p
);
149 static const struct hw_port_descriptor bfin_rtc_ports
[] =
151 { "rtc", 0, 0, output_port
, },
156 attach_bfin_rtc_regs (struct hw
*me
, struct bfin_rtc
*rtc
)
158 address_word attach_address
;
160 unsigned attach_size
;
161 reg_property_spec reg
;
163 if (hw_find_property (me
, "reg") == NULL
)
164 hw_abort (me
, "Missing \"reg\" property");
166 if (!hw_find_reg_array_property (me
, "reg", 0, ®
))
167 hw_abort (me
, "\"reg\" property must contain three addr/size entries");
169 hw_unit_address_to_attach_address (hw_parent (me
),
171 &attach_space
, &attach_address
, me
);
172 hw_unit_size_to_attach_size (hw_parent (me
), ®
.size
, &attach_size
, me
);
174 if (attach_size
!= BFIN_MMR_RTC_SIZE
)
175 hw_abort (me
, "\"reg\" size must be %#x", BFIN_MMR_RTC_SIZE
);
177 hw_attach_address (hw_parent (me
),
178 0, attach_space
, attach_address
, attach_size
, me
);
180 rtc
->base
= attach_address
;
184 bfin_rtc_finish (struct hw
*me
)
186 struct bfin_rtc
*rtc
;
188 rtc
= HW_ZALLOC (me
, struct bfin_rtc
);
190 set_hw_data (me
, rtc
);
191 set_hw_io_read_buffer (me
, bfin_rtc_io_read_buffer
);
192 set_hw_io_write_buffer (me
, bfin_rtc_io_write_buffer
);
193 set_hw_ports (me
, bfin_rtc_ports
);
195 attach_bfin_rtc_regs (me
, rtc
);
197 /* Initialize the RTC. */
200 const struct hw_descriptor dv_bfin_rtc_descriptor
[] =
202 {"bfin_rtc", bfin_rtc_finish
,},