yosys/techlibs/microchip/uSRAM.txt

70 lines
1.6 KiB
Plaintext
Raw Normal View History

2024-07-02 14:44:30 -05:00
# ISC License
#
# Copyright (C) 2024 Microchip Technology Inc. and its subsidiaries
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# asynchronous read
ram block $__uSRAM_AR_ {
#(LSRAM cost)/3
cost 43;
# INIT supported
init any;
2024-07-02 15:47:18 -05:00
abits 6;
widths 12 per_port;
2024-07-02 14:44:30 -05:00
2024-07-02 15:47:18 -05:00
# single write enable wire
2024-07-02 14:44:30 -05:00
port sw "W" {
clock posedge;
2024-07-02 15:47:18 -05:00
# collision not supported, but write takes precedence and read data is invalid while writing to
# the same address
2024-07-02 14:44:30 -05:00
wrtrans all new;
optional;
}
port ar "R" {
2024-07-02 15:47:18 -05:00
optional;
2024-07-02 14:44:30 -05:00
}
}
# synchronous read
# NOTE: synchronous read can be realized by the address pipeline register or data pipeline register.
2024-07-02 15:51:48 -05:00
# This assumes address is synchronized
2024-07-02 14:44:30 -05:00
ram block $__uSRAM_SR_ {
cost 42;
2024-07-02 15:47:18 -05:00
init any;
abits 6;
widths 12 per_port;
2024-07-02 14:44:30 -05:00
port sw "W" {
clock posedge;
2024-07-02 15:47:18 -05:00
# collision not supported
2024-07-02 14:44:30 -05:00
wrtrans all new;
optional;
}
port sr "R" {
clock posedge;
rden;
rdinit none;
optional;
}
}