Skip to content

Commit

Permalink
Merge pull request #266 from davidar/colorlight
Browse files Browse the repository at this point in the history
Add support for colorlight i9 board
  • Loading branch information
sylefeb committed Apr 27, 2024
2 parents 0db7d7a + 19edd47 commit 489c1a3
Show file tree
Hide file tree
Showing 14 changed files with 988 additions and 12 deletions.
3 changes: 3 additions & 0 deletions frameworks/boards/boards.json
Expand Up @@ -65,6 +65,9 @@
},
{
"name" : "minimal"
},
{
"name" : "colorlight"
}
]
}
64 changes: 64 additions & 0 deletions frameworks/boards/colorlight/board.json
@@ -0,0 +1,64 @@
{
"name": "colorlight",
"variants": [
{
"name": "i9",
"framework": "colorlight.v",
"pins": [
{
"set": "basic"
},
{
"set": "sdram",
"define": "SDRAM=1"
},
{
"set": "hdmi",
"define": "HDMI=1"
},
{
"set": "uart",
"define": "UART=1"
},
{
"set": "spiflash",
"define": "SPIFLASH=1"
}
],
"builders": [
{
"builder": "edalize",
"description": "Build using Edalize",
"tool": "trellis",
"tool_options": [
{
"yosys_synth_options": [
"-abc9"
],
"nextpnr_options": [
"--45k",
"--freq 65",
"--package CABGA381",
"--timing-allow-fail"
],
"pnr": "next"
}
],
"bitstream": "build.bit",
"constraints": [
{
"name": "colorlight_i9_v7.2.lpf",
"file_type": "LPF"
}
],
"program": [
{
"cmd": "openFPGALoader",
"args": "-b colorlight-i9 build.bit"
}
]
}
]
}
]
}

0 comments on commit 489c1a3

Please sign in to comment.