1 /* Blackfin One-Time Programmable Memory (OTP) 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-bfin_otp.h"
28 /* XXX: No public documentation on this interface. This seems to work
29 with the on-chip ROM functions though and was figured out by
30 disassembling & walking that code. */
31 /* XXX: About only thing that should be done here are CRC fields. And
32 supposedly there is an interrupt that could be generated. */
38 /* The actual OTP storage -- 0x200 pages, each page is 128bits.
39 While certain pages have predefined and/or secure access, we don't
40 bother trying to implement that coverage. All pages are open for
44 /* Order after here is important -- matches hardware MMR layout. */
45 bu16
BFIN_MMR_16(control
);
46 bu16
BFIN_MMR_16(ben
);
47 bu16
BFIN_MMR_16(status
);
50 bu32 data0
, data1
, data2
, data3
;
52 #define mmr_base() offsetof(struct bfin_otp, control)
53 #define mmr_offset(mmr) (offsetof(struct bfin_otp, mmr) - mmr_base())
54 #define mmr_idx(mmr) (mmr_offset (mmr) / 4)
56 static const char * const mmr_names
[] =
58 "OTP_CONTROL", "OTP_BEN", "OTP_STATUS", "OTP_TIMING",
59 [mmr_idx (data0
)] = "OTP_DATA0", "OTP_DATA1", "OTP_DATA2", "OTP_DATA3",
61 #define mmr_name(off) (mmr_names[(off) / 4] ? : "<INV>")
63 /* XXX: This probably misbehaves with big endian hosts. */
65 bfin_otp_transfer (struct bfin_otp
*otp
, void *vdst
, void *vsrc
)
67 bu8
*dst
= vdst
, *src
= vsrc
;
69 for (bidx
= 0; bidx
< 16; ++bidx
)
70 if (otp
->ben
& (1 << bidx
))
71 dst
[bidx
] = src
[bidx
];
75 bfin_otp_read_page (struct bfin_otp
*otp
, bu16 page
)
77 bfin_otp_transfer (otp
, &otp
->data0
, &otp
->mem
[page
* 4]);
81 bfin_otp_write_page_val (struct bfin_otp
*otp
, bu16 page
, bu64 val
[2])
83 bfin_otp_transfer (otp
, &otp
->mem
[page
* 4], val
);
86 bfin_otp_write_page_val2 (struct bfin_otp
*otp
, bu16 page
, bu64 lo
, bu64 hi
)
88 bu64 val
[2] = { lo
, hi
};
89 bfin_otp_write_page_val (otp
, page
, val
);
92 bfin_otp_write_page (struct bfin_otp
*otp
, bu16 page
)
94 bfin_otp_write_page_val2 (otp
, page
, ((bu64
)otp
->data1
<< 32) | otp
->data0
,
95 ((bu64
)otp
->data3
<< 32) | otp
->data2
);
99 bfin_otp_io_write_buffer (struct hw
*me
, const void *source
, int space
,
100 address_word addr
, unsigned nr_bytes
)
102 struct bfin_otp
*otp
= hw_data (me
);
109 /* Invalid access mode is higher priority than missing register. */
110 if (!dv_bfin_mmr_require_16_32 (me
, addr
, nr_bytes
, true))
114 value
= dv_load_4 (source
);
116 value
= dv_load_2 (source
);
118 mmr_off
= addr
- otp
->base
;
119 valuep
= (void *)((uintptr_t)otp
+ mmr_base() + mmr_off
);
127 case mmr_offset(control
):
131 if (!dv_bfin_mmr_require_16 (me
, addr
, nr_bytes
, true))
133 /* XXX: Seems like these bits aren't writable. */
134 *value16p
= value
& 0x39FF;
136 /* Low bits seem to be the page address. */
137 page
= value
& PAGE_ADDR
;
139 /* Write operation. */
140 if (value
& DO_WRITE
)
141 bfin_otp_write_page (otp
, page
);
143 /* Read operation. */
145 bfin_otp_read_page (otp
, page
);
147 otp
->status
|= STATUS_DONE
;
151 case mmr_offset(ben
):
152 if (!dv_bfin_mmr_require_16 (me
, addr
, nr_bytes
, true))
154 /* XXX: All bits seem to be writable. */
157 case mmr_offset(status
):
158 if (!dv_bfin_mmr_require_16 (me
, addr
, nr_bytes
, true))
160 /* XXX: All bits seem to be W1C. */
161 dv_w1c_2 (value16p
, value
, -1);
163 case mmr_offset(timing
):
164 case mmr_offset(data0
):
165 case mmr_offset(data1
):
166 case mmr_offset(data2
):
167 case mmr_offset(data3
):
168 if (!dv_bfin_mmr_require_32 (me
, addr
, nr_bytes
, true))
173 dv_bfin_mmr_invalid (me
, addr
, nr_bytes
, true);
181 bfin_otp_io_read_buffer (struct hw
*me
, void *dest
, int space
,
182 address_word addr
, unsigned nr_bytes
)
184 struct bfin_otp
*otp
= hw_data (me
);
190 /* Invalid access mode is higher priority than missing register. */
191 if (!dv_bfin_mmr_require_16_32 (me
, addr
, nr_bytes
, false))
194 mmr_off
= addr
- otp
->base
;
195 valuep
= (void *)((uintptr_t)otp
+ mmr_base() + mmr_off
);
203 case mmr_offset(control
):
204 case mmr_offset(ben
):
205 case mmr_offset(status
):
206 if (!dv_bfin_mmr_require_16 (me
, addr
, nr_bytes
, false))
208 dv_store_2 (dest
, *value16p
);
210 case mmr_offset(timing
):
211 case mmr_offset(data0
):
212 case mmr_offset(data1
):
213 case mmr_offset(data2
):
214 case mmr_offset(data3
):
215 if (!dv_bfin_mmr_require_32 (me
, addr
, nr_bytes
, false))
217 dv_store_4 (dest
, *value32p
);
220 dv_bfin_mmr_invalid (me
, addr
, nr_bytes
, false);
228 attach_bfin_otp_regs (struct hw
*me
, struct bfin_otp
*otp
)
230 address_word attach_address
;
232 unsigned attach_size
;
233 reg_property_spec reg
;
235 if (hw_find_property (me
, "reg") == NULL
)
236 hw_abort (me
, "Missing \"reg\" property");
238 if (!hw_find_reg_array_property (me
, "reg", 0, ®
))
239 hw_abort (me
, "\"reg\" property must contain three addr/size entries");
241 hw_unit_address_to_attach_address (hw_parent (me
),
243 &attach_space
, &attach_address
, me
);
244 hw_unit_size_to_attach_size (hw_parent (me
), ®
.size
, &attach_size
, me
);
246 if (attach_size
!= BFIN_MMR_OTP_SIZE
)
247 hw_abort (me
, "\"reg\" size must be %#x", BFIN_MMR_OTP_SIZE
);
249 hw_attach_address (hw_parent (me
),
250 0, attach_space
, attach_address
, attach_size
, me
);
252 otp
->base
= attach_address
;
255 static const struct hw_port_descriptor bfin_otp_ports
[] =
257 { "stat", 0, 0, output_port
, },
262 bfin_otp_finish (struct hw
*me
)
265 struct bfin_otp
*otp
;
267 int type
= hw_find_integer_property (me
, "type");
269 otp
= HW_ZALLOC (me
, struct bfin_otp
);
271 set_hw_data (me
, otp
);
272 set_hw_io_read_buffer (me
, bfin_otp_io_read_buffer
);
273 set_hw_io_write_buffer (me
, bfin_otp_io_write_buffer
);
274 set_hw_ports (me
, bfin_otp_ports
);
276 attach_bfin_otp_regs (me
, otp
);
278 /* Initialize the OTP. */
280 otp
->timing
= 0x00001485;
282 /* Semi-random value for unique chip id. */
283 bfin_otp_write_page_val2 (otp
, FPS00
, (uintptr_t)otp
, ~(uintptr_t)otp
);
285 memset (part_str
, 0, sizeof (part_str
));
286 sprintf (part_str
, "ADSP-BF%iX", type
);
323 part_str
[14] = (fps03
>> 0);
324 part_str
[15] = (fps03
>> 8);
325 bfin_otp_write_page_val (otp
, FPS03
, (void *)part_str
);
328 const struct hw_descriptor dv_bfin_otp_descriptor
[] =
330 {"bfin_otp", bfin_otp_finish
,},