aboutsummaryrefslogtreecommitdiffstats
path: root/firmware
Commit message (Collapse)AuthorAgeFilesLines
* cmake: Update coding style to use lowercase commandsMartin Braun2018-11-1416-145/+145
| | | | | | | | | | | | | | | | | Also updates our coding style file. Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code (with GNU compliant sed): cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done > convert.sed \ && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' \ '*CMakeLists.txt' | xargs -0 gsed -i -f convert.sed && rm convert.sed (Make sure the backslashes don't get mangled!)
* Definitions of MASK_GPIO_SHDN_SW and GPIO_AUX_PWR_ON Errorsfenggnef2018-08-011-2/+2
| | | | | MASK_GPIO_SHDN_SW ( GPIO[52] ) should be shifted by "GPIO_SHDN_SW" but "GPIO_FX3_SCLK ". Otherwise GPIOs of FX3 will initial GPIO_FX3_SCLK ( GPIO[53] ) as GPIO and SPI respectively. It will make GPIO[53] conflict between SPI and GPIO, and SHDN_SW will not work properly as a power switch.
* b200: fw: Change USB2 Buffer Size and Buffer CountMartin Braun2018-07-121-2/+2
| | | | | | Change FX3 firmware for USB2 so the eob flag is always seen, particularly on packets that are a multiple of 512 bytes in size.
* x300: Fixed processor clock rate in ZPU firmwareAshish Chaudhari2018-02-231-1/+1
| | | | | - Fix for regression that was introduced after the bus_clk freq change - Firmware compat number bumped to 6.0 (was 5.2)
* rfnoc,x300: Multiple clocking changesAshish Chaudhari2018-02-211-1/+1
| | | | | | - Moved bus_clk <=> ce_clk crossing to axi_wrapper in FPGA which resulted in a noc_shell compat bump - Change x300 bus_clk frequency to 187.5 MHz
* X3xx: Updated firmware to support reading FPGA image dataPaul David2017-06-301-1/+40
|
* made FX2 EEPROMS and firmware build with modern SDCC 3.6Marcus Müller2017-06-2931-472/+472
|
* Merge branch 'maint'Martin Braun2017-03-241-1/+1
|\
| * Docs: Updated FX3 SDK link in readmeDerek Kozel2017-03-211-1/+1
| |
* | Firmware: fix failures due to fw_comm_protocol.h pathPaul David2017-03-224-4/+8
| |
* | Merge branch 'maint'Martin Braun2017-01-301-17/+20
|\|
| * X300: Made claim status update with every loop of the firmware to make it ↵michael-west2017-01-301-17/+20
| | | | | | | | atomic from the host perspective
* | Added make target to produce C array from eeprom.binMarcus Müller2017-01-262-0/+12
| |
* | B200: FX3 performance optimizations based on Cypress AN86947michael-west2017-01-202-6/+6
| |
* | Merge branch 'maint'Martin Braun2017-01-174-68/+30
|\|
| * X300: Prevent MB EEPROM Corruptionmichael-west2017-01-104-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 changesAshish Chaudhari2016-12-201-24/+16
|/ | | | | - Fixed latency computation bug - Pulled in new rate throttling mechanism
* Merge branch 'UHD-3.9.LTS' into maintMartin Braun2016-09-021-1/+1
|\ | | | | | | | | | | | | | | This provides the GPS fixes. Conflicts: host/CMakeLists.txt tools/debs/upload_debs.sh
| * X300: GPSDO fixesmichael-west2016-09-021-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 changesRyan2016-08-221-1/+1
| |
* | x300: Added latency test to Aurora tester scriptAshish Chaudhari2016-08-181-7/+101
| |
* | Merging RFNoC support for X310Martin Braun2016-08-093-59/+90
| |
* | Merge branch 'maint'Martin Braun2016-08-011-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_bytes2112176132016-06-271-8/+8
| |
* | x300: Made FW utilities python3 compatibleAshish Chaudhari2016-07-122-62/+57
| |
* | x300: UHD is now compatible with FPGA images with Aurora supportAshish Chaudhari2016-07-076-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 breakageAshish Chaudhari2016-06-231-41/+17
| |
* | Merge branch 'maint'Martin Braun2016-06-171-106/+102
|\|
| * octoclock: bugfixes, bumped firmware compat number to 4Nicholas Corgan2016-06-171-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 Braun2016-02-291-1/+1
|\|
| * Added srec_cat dependency for building the firmwareDerek Kozel2016-02-291-1/+1
| |
| * firmware: e3xx: Bump minor version to 2.2Moritz Fischer2016-01-261-1/+1
| | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
| * firmware: e3xx: This fixes an issue with the autoboot value.Moritz Fischer2016-01-261-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 Fischer2016-01-262-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 Fischer2016-01-261-1/+1
| | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
| * firmware: e3xx: Add panic button functionality.Moritz Fischer2016-01-261-0/+12
| | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
| * firmware: e3xx: Turn off overzealous shutdown.Moritz Fischer2016-01-262-3/+2
| | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
* | firmware: e3xx: Bump minor version to 2.2Moritz Fischer2016-01-261-1/+1
| | | | | | | | Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
* | firmware: e3xx: This fixes an issue with the autoboot value.Moritz Fischer2016-01-261-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 Fischer2016-01-262-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 imagepatrick-here2016-01-181-2/+3
| |
* | n230: fixed header locationNicholas Corgan2016-01-155-128/+4
| |
* | n230: Made link state detection more accurateAshish Chaudhari2016-01-131-3/+11
| |
* | usrp3,n230: Moved all shared FW-Host headers to the host dirAshish Chaudhari2016-01-089-376/+11
| |
* | n230: Added hardware compatibility version checks to UHDAshish Chaudhari2016-01-082-2/+8
| |
* | n230: Added N230 device supportAshish Chaudhari2016-01-052-26/+15
| |
* | n230: Ethernet activity LED is now functionalAshish Chaudhari2016-01-054-11/+30
| |
* | n230: Added missing FW defsAshish Chaudhari2016-01-051-0/+2
| |
* | n230: Output interface ID in echo requestAshish Chaudhari2016-01-053-1/+7
| |
* | n230: Added dual-eth and link LED support to ZPU FWAshish Chaudhari2016-01-054-3/+87
| |