thodg/cgminer/libztex.c

Branch :


Log

Author Commit Date CI Message
eeac9d81 2013-08-20 19:23:49 Replace all references to the old n*sleep functions with the equivalent cgsleep_*s replacements.
6ca0eaa9 2013-06-15 23:08:40 fix windows log warnings
d3955b89 2013-05-02 23:44:47 ztx correct applog typing
f553c50b 2012-12-22 01:22:42 ztex: if we had only errors in one round we do not count the errors to detect a totally non working fpga we only do that if the last round had some valid nonces. if we would count the errors the automatic megahertz adaption would drop and never recover.
ccee686a 2012-12-22 01:12:00 ztex: precheck the secondary solutions to avoid hw errors the ztex bitstreams gives back the latest checked nonce and its hash7 value and two possible solutions. every 250ms the latest nonce is checked and compared with hash7 to count hw errors and adapt the MHz value. one change is to use the solutions even if the latest nonce is not correct. the original java ztex code also does it this way. since the second solution is often not correct we have alot of hw errors. now we always check the second solution before we submit it to the cgminer main code. the java code also ignores all hw errors 500ms after a sendHash. we now do the same. this can possibly yield in a higher MHz rate. but the chance is so low nobody will ever notice in practice.
01d7b261 2012-12-14 15:05:34 libztex: fixed a typo
29ff1074 2012-12-21 04:52:13 libztex: check returnvalue of libusb_claim_interface() and release the interface in case of early exit
e2c8a1d0 2012-12-10 09:49:44 libztex: avoid the use of libusb_error_name() libusb_error_name() is only available in libusb-1.0.9 and newer
0559d0bb 2012-12-09 23:56:36 libztex: in case the selectFpga() failed set the selected fpga to unknown after libztex_selectFpga() failed we can not be sure which fpga is now selected. can be the old one or maybe even the new one. so set the selected fpga variable to unknown so that the next call must set it again.
f5a57596 2012-12-09 12:06:42 libztex: use a function for the twice called firmware reset code
9b1d0c9d 2012-12-09 11:39:56 libztex: removed an unused struct member (ztex->valid)
b53fa540 2012-12-08 12:38:58 Merge pull request #347 from denis2342/ztex Ztex: more whitespace and style fixes
dba00728 2012-12-08 13:09:24 ztex: more style and whitespace fixes
c1b0143d 2012-12-08 03:58:44 Merge pull request #346 from denis2342/ztex libztex: silenced another warning
44c0f72a 2012-12-08 12:55:26 libztex: silenced another warning
77ef4c21 2012-12-08 21:19:22 Include the correct config header in libztex and include it before other includes.
b7753e33 2012-12-07 14:11:31 libztex: fixed some warnings and removed some whitespaces
69a688f5 2012-12-07 05:02:26 libztex: silenced some warnings
b48b2cc8 2012-12-06 14:06:30 libztex: Read bitstream file in 2kb blocks with simpler and faster code optimized libztex_configureFpgaLS() like it was done some commits ago to libztex_configureFpgaHS()
1203f1f6 2012-12-04 05:34:52 libztex: Add firmware download support for ZTEX 1.15d and 1.15x The correct firmware file is automatically determined based on the ZTEX descriptor in the dummy firmware.
f9673928 2012-12-04 11:30:04 libztex: Factor out local version of libusb_get_string_descriptor_ascii()
90b3e6ad 2012-12-04 05:09:23 libztex: Make log messages say bitstream when refering to bitstreams
d9479b2c 2012-12-03 08:55:00 libztex: Don't return error when a bitstream was already configured The high speed and low speed configureFpga functions should not return an error when no bitstream needs to be downloaded. These codepaths are not executed for now, because all calls to configureFpga set the force parameter to true. Future commits may change that, allowing cgminer to start mining immediately if each hardware has already been correctly configured with firmware and bitstream(s).
b70edef9 2012-12-03 08:53:22 libztex: Read bitstream file in 64kb blocks with simpler and faster code
a5b28450 2012-12-02 00:05:20 libztex: Verify that the mining firmware is not a dummy firmware
843e9120 2012-12-01 08:41:25 libztex: Match mining firmware ZTEX descriptor against the dummy firmware The first 8 bytes are matched, which ensures that the mining firmware actually fits the hardware, assuming that the correct dummy firmware is present in the device.
8d7ad828 2012-12-01 03:29:58 libztex: Start download sequence only after reading in the new firmware The download sequence starts with a reset command, which tells the board that a new firmware is about to be downloaded. The board gets unhappy if no new firmware is actually sent, so only send the reset command AFTER the new firmware has actually been successfully read.
584dc5ac 2012-11-30 03:21:12 libztex: Download mining firmware to all devices with dummy firmware When one or more ZTEX devices with dummy firmware are found on startup, the correct firmware is downloaded to each device, and then USB devices are rescanned until all devices have reattached with the mining firmware. This allows to discover and configure all ZTEX devices and start mining directly, without first running the ZTEX Java software to download a firmware to the device.
b28dbc2e 2012-11-26 02:38:20 ztex: Harmonize low-speed FPGA configuration code with high-speed code
4629553a 2012-11-26 02:34:27 ztex: Display FPGA clock frequency with only one decimal
1c204dc9 2012-11-25 03:51:46 libztex: Silence warning: comparison between signed and unsigned
972ddf74 2012-11-23 03:42:47 libztex: Work around ZTEX USB firmware bug exposed by the FreeBSD libusb The ZTEX USB firmware doesn't correctly support GET_DESCRIPTOR requests for string descriptors, specifically the device always returns the full string descriptor, even if the request wLength is shorter. The FreeBSD implementation of libusb_get_string_descriptor_ascii() first requests 4 (four) bytes to validate the start of the string descriptor, and since the device sends back too many bytes the USB host controller signals an error to FreeBSD which returns the error to us. In order to avoid this mess the libusb_get_string_descriptor_ascii() call is replaced with the way libusb-1.0 works; which makes only a single request to read the entire string descriptor.
dc7fc13e 2012-11-18 22:23:03 Convert libztex to nmsleep where possible.
346d09c3 2012-09-24 14:37:23 Reorder libztex header include order to fix missing struct definition.
9e76aed6 2012-08-18 23:21:24 Initialise cnt in libztex.c
9065c63f 2012-08-17 16:42:14 Repeating on timeout in ztex could make the code never return.
0954a229 2012-08-16 22:30:06 Offset libusb reads/writes by length written as well in ztex.
e796284c 2012-08-16 22:26:19 Cope with timeouts and partial reads in ztex code.
a916be0b 2012-08-17 16:42:14 Repeating on timeout in ztex could make the code never return.
56775141 2012-08-16 22:30:06 Offset libusb reads/writes by length written as well in ztex.
280539bf 2012-08-16 22:26:19 Cope with timeouts and partial reads in ztex code.
d3fa59d7 2012-06-05 02:17:09 Abstract generally useful FPGA code into fpgautils.c
ed60e33a 2012-05-04 08:33:13 Some tweaks to reporting and logging. - Adding fpga number to the ztex string representation - Removing usb details from the ztex string representation - First frequency set no longer reports a bogus old freq
0080aea4 2012-05-03 13:24:59 Trying harder to get 1.15y working
57a72d51 2012-05-02 07:26:52 Blind implementation of multi-fpga board 1.15y.
719b0c7c 2012-04-30 09:29:36 HS bitstream configuration
316ebc3b 2012-04-25 03:52:52 Code style cleanup
6bb3c40d 2012-04-25 01:57:15 Annotating frequency changes with the changed from value
5f5e1063 2012-04-22 08:14:54 Firmware 15d4 support Not yet using suspend and while we have fpga counting implemented it isn't being used yet, thus only the groundwork for quad board support is done, not actually working yet.
b97e6aa5 2012-04-22 10:57:23 Presumably we should return false when the capability is missing in libztex_checkCapability.
bd46119c 2012-04-21 14:02:22 Style police on libztex.c.
9ba2e217 2012-04-18 01:54:51 Some cleanup
c280dd0d 2012-04-17 01:51:53 Moving space indentation to tabs For consistency with cgminer sources
f9d4d92b 2012-04-17 01:25:55 Some cleanup
3067a414 2012-04-13 01:37:26 leak fix
57a2764e 2012-04-02 21:51:01 Small tweaks to freq reporting
a960087c 2012-03-21 20:41:03 Ztex device removal segfault fixed
3197ca54 2012-03-18 22:35:10 Better cleanup and error handling
95d17e98 2012-03-16 19:17:24 NULLing handle on destroy
c5897683 2012-03-14 21:32:57 changing the bitstream read and push strategy. It seems that thread heap space is neither large nor consistent across OSs. Specifically on windows I couldn't get a large enough buffer for the whole bitstream in one go, so I'm reading incrementally now
dc6e2f4e 2012-03-13 16:19:55 Reading actual bitfilename
5bbce4c4 2012-03-12 00:55:38 nonce check and error driven freq scaling Following BTCMiner's algorithm.
0902f21a 2012-03-11 16:58:50 add license headers and some cleanup
99a188f9 2012-03-11 00:49:25 initial commit with some support for ztex 1.15x board. This version is just a rough draft, but it does alredy mine. Conflicts: cgminer.c configure.ac