Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | X3xx: Updated firmware to support reading FPGA image data | Paul David | 2017-06-30 | 1 | -1/+40 |
| | |||||
* | made FX2 EEPROMS and firmware build with modern SDCC 3.6 | Marcus Müller | 2017-06-29 | 31 | -472/+472 |
| | |||||
* | Merge branch 'maint' | Martin Braun | 2017-03-24 | 1 | -1/+1 |
|\ | |||||
| * | Docs: Updated FX3 SDK link in readme | Derek Kozel | 2017-03-21 | 1 | -1/+1 |
| | | |||||
* | | Firmware: fix failures due to fw_comm_protocol.h path | Paul David | 2017-03-22 | 4 | -4/+8 |
| | | |||||
* | | Merge branch 'maint' | Martin Braun | 2017-01-30 | 1 | -17/+20 |
|\| | |||||
| * | X300: Made claim status update with every loop of the firmware to make it ↵ | michael-west | 2017-01-30 | 1 | -17/+20 |
| | | | | | | | | atomic from the host perspective | ||||
* | | Added make target to produce C array from eeprom.bin | Marcus Müller | 2017-01-26 | 2 | -0/+12 |
| | | |||||
* | | B200: FX3 performance optimizations based on Cypress AN86947 | michael-west | 2017-01-20 | 2 | -6/+6 |
| | | |||||
* | | Merge branch 'maint' | Martin Braun | 2017-01-17 | 4 | -68/+30 |
|\| | |||||
| * | X300: Prevent MB EEPROM Corruption | michael-west | 2017-01-10 | 4 | -68/+30 |
| | | | | | | | | | | | | | | - Load EEPROM data into firmware memory to access from there instead of driving the I2C bus directly - Fixed firmware performance issues by removing the popcntll() function and reducing frequency of background tasks to once every 10ms - Added x300_mb_eeprom_iface to handle cases of devices with older and newer firmware - Added checks for claim to device before driving the I2C bus | ||||
* | | x300: Updated Aurora BIST script after FPGA changes | Ashish Chaudhari | 2016-12-20 | 1 | -24/+16 |
|/ | | | | | - Fixed latency computation bug - Pulled in new rate throttling mechanism | ||||
* | Merge branch 'UHD-3.9.LTS' into maint | Martin Braun | 2016-09-02 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | This provides the GPS fixes. Conflicts: host/CMakeLists.txt tools/debs/upload_debs.sh | ||||
| * | X300: GPSDO fixes | michael-west | 2016-09-02 | 1 | -1/+1 |
| | | | | | | | | | | - Optimize writes so full 32-bit words are written at a time - Simplify UART so it does not strip or add characters | ||||
* | | changed clk constant to match new zpu clk changes | Ryan | 2016-08-22 | 1 | -1/+1 |
| | | |||||
* | | x300: Added latency test to Aurora tester script | Ashish Chaudhari | 2016-08-18 | 1 | -7/+101 |
| | | |||||
* | | Merging RFNoC support for X310 | Martin Braun | 2016-08-09 | 3 | -59/+90 |
| | | |||||
* | | Merge branch 'maint' | Martin Braun | 2016-08-01 | 1 | -8/+8 |
|\| | | | | | | | | | | | Conflicts: host/lib/usrp/dboard/db_wbx_version2.cpp host/lib/usrp/dboard/db_wbx_version3.cpp | ||||
| * | Close file handlers the python way, changed var bytes to out_bytes | 211217613 | 2016-06-27 | 1 | -8/+8 |
| | | |||||
* | | x300: Made FW utilities python3 compatible | Ashish Chaudhari | 2016-07-12 | 2 | -62/+57 |
| | | |||||
* | | x300: UHD is now compatible with FPGA images with Aurora support | Ashish Chaudhari | 2016-07-07 | 6 | -65/+297 |
| | | | | | | | | | | - UHD and ZPU is now aware of Aurora SFP+ transceivers in the FPGA image - Added script to exercise Aurora BIST features | ||||
* | | x300: Fixed FW debug script after N230 merge breakage | Ashish Chaudhari | 2016-06-23 | 1 | -41/+17 |
| | | |||||
* | | Merge branch 'maint' | Martin Braun | 2016-06-17 | 1 | -106/+102 |
|\| | |||||
| * | octoclock: bugfixes, bumped firmware compat number to 4 | Nicholas Corgan | 2016-06-17 | 1 | -106/+102 |
| | | | | | | | | | | | | | | | | | | * host: consistency in setting packet sequence numbers * firmware: populate packet length field when setting GPSDO cache * both: logic for dealing with mismatching compatibility numbers Reviewed-By: Michael West <michael.west@ettus.com> Reviewed-By: Martin Braun <martin.braun@ettus.com> | ||||
* | | Merge branch 'maint' | Martin Braun | 2016-02-29 | 1 | -1/+1 |
|\| | |||||
| * | Added srec_cat dependency for building the firmware | Derek Kozel | 2016-02-29 | 1 | -1/+1 |
| | | |||||
| * | firmware: e3xx: Bump minor version to 2.2 | Moritz Fischer | 2016-01-26 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
| * | firmware: e3xx: This fixes an issue with the autoboot value. | Moritz Fischer | 2016-01-26 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | The bug is a result of wrong order of evaluation: The '|' operator takes precedence over '?'. Therefore the intended expression a = x | (y ? 1 : 0) got evaluated as a = (x | y) ? 1 : 0. Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
| * | firmware: e3xx: Added .eeprom section that gets written. | Moritz Fischer | 2016-01-26 | 2 | -2/+10 |
| | | | | | | | | | | | | | | The EEPROM section was not getting written by make install, so whatever was in there is in there. Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
| * | firmware: e3xx: Bump minor version. | Moritz Fischer | 2016-01-26 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
| * | firmware: e3xx: Add panic button functionality. | Moritz Fischer | 2016-01-26 | 1 | -0/+12 |
| | | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
| * | firmware: e3xx: Turn off overzealous shutdown. | Moritz Fischer | 2016-01-26 | 2 | -3/+2 |
| | | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
* | | firmware: e3xx: Bump minor version to 2.2 | Moritz Fischer | 2016-01-26 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
* | | firmware: e3xx: This fixes an issue with the autoboot value. | Moritz Fischer | 2016-01-26 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | The bug is a result of wrong order of evaluation: The '|' operator takes precedence over '?'. Therefore the intended expression a = x | (y ? 1 : 0) got evaluated as a = (x | y) ? 1 : 0. Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
* | | firmware: e3xx: Added .eeprom section that gets written. | Moritz Fischer | 2016-01-26 | 2 | -2/+10 |
| | | | | | | | | | | | | | | The EEPROM section was not getting written by make install, so whatever was in there is in there. Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
* | | x300: Fixes bug#768 and a firmware hang issue with Eth Port 0 with the XGS image | patrick-here | 2016-01-18 | 1 | -2/+3 |
| | | |||||
* | | n230: fixed header location | Nicholas Corgan | 2016-01-15 | 5 | -128/+4 |
| | | |||||
* | | n230: Made link state detection more accurate | Ashish Chaudhari | 2016-01-13 | 1 | -3/+11 |
| | | |||||
* | | usrp3,n230: Moved all shared FW-Host headers to the host dir | Ashish Chaudhari | 2016-01-08 | 9 | -376/+11 |
| | | |||||
* | | n230: Added hardware compatibility version checks to UHD | Ashish Chaudhari | 2016-01-08 | 2 | -2/+8 |
| | | |||||
* | | n230: Added N230 device support | Ashish Chaudhari | 2016-01-05 | 2 | -26/+15 |
| | | |||||
* | | n230: Ethernet activity LED is now functional | Ashish Chaudhari | 2016-01-05 | 4 | -11/+30 |
| | | |||||
* | | n230: Added missing FW defs | Ashish Chaudhari | 2016-01-05 | 1 | -0/+2 |
| | | |||||
* | | n230: Output interface ID in echo request | Ashish Chaudhari | 2016-01-05 | 3 | -1/+7 |
| | | |||||
* | | n230: Added dual-eth and link LED support to ZPU FW | Ashish Chaudhari | 2016-01-05 | 4 | -3/+87 |
| | | |||||
* | | n230: Increased FW size to 8192 | Ashish Chaudhari | 2016-01-05 | 3 | -23/+19 |
| | | | | | | | | - Updated to X300 bootloader | ||||
* | | n230: Initial checkin of firmware files | Ashish Chaudhari | 2016-01-05 | 33 | -94/+3181 |
| | | |||||
* | | firmware: e3xx: Bump minor version. | Moritz Fischer | 2015-10-22 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
* | | firmware: e3xx: Add panic button functionality. | Moritz Fischer | 2015-10-22 | 1 | -0/+12 |
| | | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> | ||||
* | | firmware: e3xx: Turn off overzealous shutdown. | Moritz Fischer | 2015-10-22 | 2 | -3/+2 |
|/ | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com> |