| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #include "driver-cpu.h"
- #include <stdint.h>
- #include <stdlib.h>
- #include <string.h>
- #include <stdio.h>
- #include <sys/time.h>
- #include "miner.h"
- #ifdef WANT_VIA_PADLOCK
- static void via_sha256(void *hash, void *buf, unsigned len)
- {
- unsigned stat = 0;
- asm volatile(".byte 0xf3, 0x0f, 0xa6, 0xd0"
- :"+S"(buf), "+a"(stat)
- :"c"(len), "D" (hash)
- :"memory");
- }
- bool scanhash_via(struct thr_info*thr, const unsigned char *pmidstate,
- unsigned char *data_inout,
- unsigned char *phash1, unsigned char *phash,
- const unsigned char *target,
- uint32_t max_nonce, uint32_t *last_nonce,
- uint32_t n)
- {
- unsigned char data[128] __attribute__((aligned(128)));
- unsigned char tmp_hash[32] __attribute__((aligned(128)));
- unsigned char tmp_hash1[32] __attribute__((aligned(128)));
- uint32_t *data32 = (uint32_t *) data;
- uint32_t *hash32 = (uint32_t *) tmp_hash;
- uint32_t *nonce = (uint32_t *)(data + 64 + 12);
- uint32_t *nonce_inout = (uint32_t *)(data_inout + 64 + 12);
- unsigned long stat_ctr = 0;
- /* bitcoin gives us big endian input, but via wants LE,
- * so we reverse the swapping bitcoin has already done (extra work)
- * in order to permit the hardware to swap everything
- * back to BE again (extra work).
- */
- swap32yes(data32, data_inout, 128/4);
- while (1) {
- n++;
- *nonce = n;
- /* first SHA256 transform */
- memcpy(tmp_hash1, sha256_init_state, 32);
- via_sha256(tmp_hash1, data, 80); /* or maybe 128? */
- swap32yes(tmp_hash1, tmp_hash1, 32/4);
- /* second SHA256 transform */
- memcpy(tmp_hash, sha256_init_state, 32);
- via_sha256(tmp_hash, tmp_hash1, 32);
- stat_ctr++;
- if (unlikely((hash32[7] == 0) && fulltest(tmp_hash, target))) {
- /* swap nonce'd data back into original storage area;
- */
- *nonce_inout = bswap_32(n);
- *last_nonce = n;
- return true;
- }
- if ((n >= max_nonce) || thr->work_restart) {
- *last_nonce = n;
- return false;
- }
- }
- }
- #endif /* WANT_VIA_PADLOCK */
|