1 |
11 |
juko |
#
|
2 |
|
|
# .--------------. .----------------. .------------.
|
3 |
|
|
# | .------------. | .--------------. | .----------. |
|
4 |
|
|
# | | ____ ____ | | | ____ ____ | | | ______ | |
|
5 |
|
|
# | ||_ || _|| | ||_ \ / _|| | | .' ___ || |
|
6 |
|
|
# ___ _ __ ___ _ __ | | | |__| | | | | | \/ | | | |/ .' \_|| |
|
7 |
|
|
# / _ \| '_ \ / _ \ '_ \ | | | __ | | | | | |\ /| | | | || | | |
|
8 |
|
|
# (_) | |_) | __/ | | || | _| | | |_ | | | _| |_\/_| |_ | | |\ `.___.'\| |
|
9 |
|
|
# \___/| .__/ \___|_| |_|| ||____||____|| | ||_____||_____|| | | `._____.'| |
|
10 |
|
|
# | | | | | | | | | | | |
|
11 |
|
|
# |_| | '------------' | '--------------' | '----------' |
|
12 |
|
|
# '--------------' '----------------' '------------'
|
13 |
|
|
#
|
14 |
|
|
# openHMC - An Open Source Hybrid Memory Cube Controller
|
15 |
|
|
# (C) Copyright 2014 Computer Architecture Group - University of Heidelberg
|
16 |
|
|
# www.ziti.uni-heidelberg.de
|
17 |
|
|
# B6, 26
|
18 |
|
|
# 68159 Mannheim
|
19 |
|
|
# Germany
|
20 |
|
|
#
|
21 |
|
|
# Contact: openhmc@ziti.uni-heidelberg.de
|
22 |
|
|
# http://ra.ziti.uni-heidelberg.de/openhmc
|
23 |
|
|
#
|
24 |
|
|
# This source file is free software: you can redistribute it and/or modify
|
25 |
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
26 |
|
|
# the Free Software Foundation, either version 3 of the License, or
|
27 |
|
|
# (at your option) any later version.
|
28 |
|
|
#
|
29 |
|
|
# This source file is distributed in the hope that it will be useful,
|
30 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
31 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
32 |
|
|
# GNU Lesser General Public License for more details.
|
33 |
|
|
#
|
34 |
|
|
# You should have received a copy of the GNU Lesser General Public License
|
35 |
|
|
# along with this source file. If not, see <http://www.gnu.org/licenses/>.
|
36 |
|
|
#
|
37 |
|
|
#
|
38 |
|
|
|
39 |
|
|
### Make sure to source the path variable first.
|
40 |
|
|
#use: export OPENHMC_PATH=path_to_openhmc_main_folder
|
41 |
|
|
|
42 |
|
|
####HEADER
|
43 |
|
|
-incdir ${OPENHMC_PATH}/rtl/include/
|
44 |
|
|
|
45 |
|
|
####Top
|
46 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/openhmc_top.v
|
47 |
|
|
|
48 |
|
|
####Controller TX
|
49 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/tx/tx_link.v
|
50 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/tx/tx_run_length_limiter.v
|
51 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/tx/tx_scrambler.v
|
52 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/tx/tx_crc_combine.v
|
53 |
|
|
|
54 |
|
|
####Controller RX
|
55 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/rx/rx_link.v
|
56 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/rx/rx_lane_logic.v
|
57 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/rx/rx_descrambler.v
|
58 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/rx/rx_crc_compare.v
|
59 |
|
|
|
60 |
|
|
####CRC
|
61 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/crc/crc_128_init.v
|
62 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/crc/crc_accu.v
|
63 |
|
|
|
64 |
|
|
####Register File
|
65 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/register_file/openhmc_8x_rf.v
|
66 |
|
|
${OPENHMC_PATH}/rtl/hmc_controller/register_file/openhmc_16x_rf.v
|
67 |
|
|
|
68 |
|
|
####Building blocks
|
69 |
|
|
-f ${OPENHMC_PATH}/rtl/building_blocks/fifos/sync/openhmc_sync_fifos.f
|
70 |
|
|
${OPENHMC_PATH}/rtl/building_blocks/fifos/async/openhmc_async_fifo.v
|
71 |
|
|
${OPENHMC_PATH}/rtl/building_blocks/counter/counter48.v
|
72 |
|
|
${OPENHMC_PATH}/rtl/building_blocks/rams/openhmc_ram.v
|