- How To Program A Lattice Cpld Software For Pc
- How To Program A Lattice Cpld Software For Windows 7
- How To Program A Lattice Cpld Software For Mac
- How To Program A Lattice Cpld Software For Beginners
- How To Program A Lattice Cpld Software Free
Lattice Semiconductor today announced the immediate availability of Version 1.4 of its ispLEVER(R) Classic design tool suite. The ispLEVER Classic design software has been upgraded with the addition of Synopsys Synplify Pro with the HDL Analyst feature set, and an improved ispMACH(R) 4000ZE CPLD fitter with improved power optimization. There are two ways to program a CPLD/FPGA device using DebugJet JTAG interface. The first is by using a macro command file with DebugJet target server application to specify the jedec file and the functions to be executed on the programmable logic device. Software Development Kit. Windows CE 6.0 Update Logs. Windows 10 IoT Core. Application Notes. The following pictures show the pin assignment for programming Xilinx respectively Lattice CPLD's using Keith & Koep's JTAG debug PCB. Lattice Diamond Programmer offers an easy to use solution for programming all Lattice JTAG-based devices. In addition to FPGAs supported in Lattice Diamond, devices from ispLEVER Classic, PAC-Designers, and iCEcube2 are supported by Programmer when used in standalone mode. Customers: Simply click on the part number below to purchase that evaluation or development kit. LC4064ZE-EVN ispMACH4064ZE Evaluation Kit.
Okay, so we have the main Xilinx FPGA and the utility Altera MAX10 FPGA able to be programmed on the MEGA65 R2 mainboard now.That just leaves the Lattice FPGA in the keyboard to program.
First step is to program the MAX10, so that can route the JTAG to the Xilinx and Lattice FPGAs. This done using the Quartus tools, but remember to hold the reset button in on the MEGA65 mainboard, as that asserts the JTAGEN line on the MAX10. The Arrow FPGA programmer module needs to be plugged in to do this. Then the normal Quartus programmer interface can be used (but remember to first have fixed the problem with the Arrow FTDI USB driver setup by following these instructions).
Actually, we simplified this by making a program.sh script, that does the programming itself -- but you still have to hold the reset button in.
Second step is to program the Xilinx FPGA, because our current MAX10 firmware connects the JTAG interface to the Xilinx FPGA until it asserts the FPGA_DONE signal, i.e., has been programmed. This requires using the TE0790 cable, and if you have the Arrow cable plugged in at the same time, you might need to run fpgajtag with the -s option to specify the serial number of the cable to uses. If that is successful, the MEGA65 will now have the friendly blue boot screen visible.
That leaves the third step. Here we had a bit of fun dealing with a JTAG latency problem with the bypass through the MAX10 FPGA as well as the latency of using a conveniently long keyboard cable. We thought about making a custom programming cable, but would prefer to keep things simple, so decided to explore how we might defeat the latency problem. Setting the 'Programming Speed Settings' in Lattice's Diamond software's programming utility managed to make it work for us, and we were then able to flash the keyboard. Yay!
What we will do, is make the JTAG bypass of the MAX10 dependent on a dip-switch, so that we can talk to either the keyboard or Xilinx FPGA as required, e.g., so that we can flash the SPI flash so that it automatically boots up on power up. This I have now, done, so we can flash the configuration for the Xilinx FPGA as before, using a command line like:
How To Program A Lattice Cpld Software For Pc
./megaphone-write-flash.sh bin/mega65r2.mcsHow To Program A Lattice Cpld Software For Windows 7
This works even though it is the MEGAphone targeted script, because the MEGAphone and MEGA65 R2 mainboards both use the same serial flash chip for storing the configurations.
But before we do that, we really need to flash our updated MAX10 bitstream, because the initial one that is there stops listening to JTAG when the Xilinx FPGA is configured. This means that we need a nice easy way to write to the flash in the MAX10 FPGA, and this turns out to not be that simple.
After talking to Antti, it turns out there is a really simple way to flash the internal flast in the MAX10: Simply program with the .pof file instead of the .sof file. This works nicely, so I have made a script flash.sh in the MAX10 repository for this.
So, let's go over all of this from the top, now that we have the various tools at the ready:
0. Plug in both the TE0790 and Arrow programmers to the board.
1. If Xilinx FPGA is already configured, then unconfigure it by running fpgajtag -s <serial number> <a valid bit stream> and pressing control-c as soon as it says 'starting to send file'.
2. Hold the reset button in to put the MAX10 into JTAG mode, and run the flash.sh script to flash the MAX10 FPGA with our bitstream.
3. Release the reset button, and ensure dipswitch 1 is in the off position, to select the Xilinx FPGA for JTAG bypass.
4. Run ./megaphone-write-flash.sh bin/mega65r2.mcs to flash the Xilinx FPGA.
5. Switch the dipswitch 1 to the on position, to select the keyboard's Lattice FPGA, and unplug the Arrow programmer's USB cable from your computer.
6. Run program.sh from the keyboard cpld directory to program the keyboard.
How To Program A Lattice Cpld Software For Mac
After this, all three items should be finished flashing, so that turning it off and on brings it to the same state.Now, finally, we can start trying to move forward with actually bringing up the functionality on the board.