driver-bitmain.c 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463
  1. /*
  2. * Copyright 2012-2013 Lingchao Xu <lingchao.xu@bitmaintech.com>
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the Free
  6. * Software Foundation; either version 3 of the License, or (at your option)
  7. * any later version. See COPYING for more details.
  8. */
  9. #include "config.h"
  10. #include <limits.h>
  11. #include <pthread.h>
  12. #include <stdio.h>
  13. #include <sys/time.h>
  14. #include <sys/types.h>
  15. #include <dirent.h>
  16. #include <unistd.h>
  17. #ifndef WIN32
  18. #include <sys/select.h>
  19. #include <termios.h>
  20. #include <sys/stat.h>
  21. #include <fcntl.h>
  22. #ifndef O_CLOEXEC
  23. #define O_CLOEXEC 0
  24. #endif
  25. #else
  26. #include "compat.h"
  27. #include <windows.h>
  28. #include <io.h>
  29. #endif
  30. #include "elist.h"
  31. #include "miner.h"
  32. #include "usbutils.h"
  33. #include "driver-bitmain.h"
  34. #include "hexdump.c"
  35. #include "util.h"
  36. #define BITMAIN_CALC_DIFF1 1
  37. #ifdef WIN32
  38. #define BITMAIN_TEST
  39. #endif
  40. #define BITMAIN_TEST_PRINT_WORK 0
  41. #ifdef BITMAIN_TEST
  42. #define BITMAIN_TEST_NUM 19
  43. #define BITMAIN_TEST_USENUM 1
  44. int g_test_index = 0;
  45. const char btm_work_test_data[BITMAIN_TEST_NUM][256] = {
  46. "00000002ddc1ce5579dbec17f17fbb8f31ae218a814b2a0c1900f0d90000000100000000b58aa6ca86546b07a5a46698f736c7ca9c0eedc756d8f28ac33c20cc24d792675276f879190afc85b6888022000000800000000000000000000000000000000000000000000000000000000000000000",
  47. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b190000000000000000eb2d45233c5b02de50ddcb9049ba16040e0ba00e9750a474eec75891571d925b52dfda4a190266667145b02f000000800000000000000000000000000000000000000000000000000000000000000000",
  48. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b19000000000000000090c7d3743e0b0562e4f56d3dd35cece3c5e8275d0abb21bf7e503cb72bd7ed3b52dfda4a190266667bbb58d7000000800000000000000000000000000000000000000000000000000000000000000000",
  49. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b1900000000000000006e0561da06022bfbb42c5ecd74a46bfd91934f201b777e9155cc6c3674724ec652dfda4a19026666a0cd827b000000800000000000000000000000000000000000000000000000000000000000000000",
  50. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b1900000000000000000312f42ce4964cc23f2d8c039f106f25ddd58e10a1faed21b3bba4b0e621807b52dfda4a1902666629c9497d000000800000000000000000000000000000000000000000000000000000000000000000",
  51. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b19000000000000000033093a6540dbe8f7f3d19e3d2af05585ac58dafad890fa9a942e977334a23d6e52dfda4a190266665ae95079000000800000000000000000000000000000000000000000000000000000000000000000",
  52. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b190000000000000000bd7893057d06e69705bddf9a89c7bac6b40c5b32f15e2295fc8c5edf491ea24952dfda4a190266664b89b4d3000000800000000000000000000000000000000000000000000000000000000000000000",
  53. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b19000000000000000075e66f533e53837d14236a793ee4e493985642bc39e016b9e63adf14a584a2aa52dfda4a19026666ab5d638d000000800000000000000000000000000000000000000000000000000000000000000000",
  54. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b190000000000000000d936f90c5db5f0fe1d017344443854fbf9e40a07a9b7e74fedc8661c23162bff52dfda4a19026666338e79cb000000800000000000000000000000000000000000000000000000000000000000000000",
  55. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b190000000000000000d2c1a7d279a4355b017bc0a4b0a9425707786729f21ee18add3fda4252a31a4152dfda4a190266669bc90806000000800000000000000000000000000000000000000000000000000000000000000000",
  56. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b190000000000000000ad36d19f33d04ca779942843890bc3b083cec83a4b60b6c45cf7d21fc187746552dfda4a1902666675d81ab7000000800000000000000000000000000000000000000000000000000000000000000000",
  57. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b19000000000000000093b809cf82b76082eacb55bc35b79f31882ed0976fd102ef54783cd24341319b52dfda4a1902666642ab4e42000000800000000000000000000000000000000000000000000000000000000000000000",
  58. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b1900000000000000007411ff315430a7bbf41de8a685d457e82d5177c05640d6a4436a40f39e99667852dfda4a190266662affa4b5000000800000000000000000000000000000000000000000000000000000000000000000",
  59. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b1900000000000000001ad0db5b9e1e2b57c8d3654c160f5a51067521eab7e340a270639d97f00a3fa252dfda4a1902666601a47bb6000000800000000000000000000000000000000000000000000000000000000000000000",
  60. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b19000000000000000022e055c442c46bbe16df68603a26891f6e4cf85b90102b39fd7cadb602b4e34552dfda4a1902666695d33cea000000800000000000000000000000000000000000000000000000000000000000000000",
  61. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b1900000000000000009c8baf5a8a1e16de2d6ae949d5fec3ed751f10dcd4c99810f2ce08040fb9e31d52dfda4a19026666fe78849d000000800000000000000000000000000000000000000000000000000000000000000000",
  62. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b190000000000000000e5655532b414887f35eb4652bc7b11ebac12891f65bc08cbe0ce5b277b9e795152dfda4a19026666fcc0d1d1000000800000000000000000000000000000000000000000000000000000000000000000",
  63. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b190000000000000000f272c5508704e2b62dd1c30ea970372c40bf00f9203f9bf69d456b4a7fbfffe352dfda4a19026666c03d4399000000800000000000000000000000000000000000000000000000000000000000000000",
  64. "0000000256ccc4c8aeae2b1e41490bc352893605f284e4be043f7b190000000000000000fca3b4531ba627ad9b0e23cdd84c888952c23810df196e9c6db0bcecba6a830952dfda4a19026666c14009cb000000800000000000000000000000000000000000000000000000000000000000000000"
  65. };
  66. const char btm_work_test_midstate[BITMAIN_TEST_NUM][256] = {
  67. "2d8738e7f5bcf76dcb8316fec772e20e240cd58c88d47f2d3f5a6a9547ed0a35",
  68. "d31b6ce09c0bfc2af6f3fe3a03475ebefa5aa191fa70a327a354b2c22f9692f1",
  69. "84a8c8224b80d36caeb42eff2a100f634e1ff873e83fd02ef1306a34abef9dbe",
  70. "059882159439b9b32968c79a93c5521e769dbea9d840f56c2a17b9ad87e530b8",
  71. "17fa435d05012574f8f1da26994cc87b6cb9660b5e82072dc6a0881cec150a0d",
  72. "92a28cc5ec4ba6a2688471dfe2032b5fe97c805ca286c503e447d6749796c6af",
  73. "1677a03516d6e9509ac37e273d2482da9af6e077abe8392cdca6a30e916a7ae9",
  74. "50bbe09f1b8ac18c97aeb745d5d2c3b5d669b6ac7803e646f65ac7b763a392d1",
  75. "e46a0022ebdc303a7fb1a0ebfa82b523946c312e745e5b8a116b17ae6b4ce981",
  76. "8f2f61e7f5b4d76d854e6d266acfff4d40347548216838ccc4ef3b9e43d3c9ea",
  77. "0a450588ae99f75d676a08d0326e1ea874a3497f696722c78a80c7b6ee961ea6",
  78. "3c4c0fc2cf040b806c51b46de9ec0dcc678a7cc5cf3eff11c6c03de3bc7818cc",
  79. "f6c7c785ab5daddb8f98e5f854f2cb41879fcaf47289eb2b4196fefc1b28316f",
  80. "005312351ccb0d0794779f5023e4335b5cad221accf0dfa3da7b881266fa9f5a",
  81. "7b26d189c6bba7add54143179aadbba7ccaeff6887bd8d5bec9597d5716126e6",
  82. "a4718f4c801e7ddf913a9474eb71774993525684ffea1915f767ab16e05e6889",
  83. "6b6226a8c18919d0e55684638d33a6892a00d22492cc2f5906ca7a4ac21c74a7",
  84. "383114dccd1cb824b869158aa2984d157fcb02f46234ceca65943e919329e697",
  85. "d4d478df3016852b27cb1ae9e1e98d98617f8d0943bf9dc1217f47f817236222"
  86. };
  87. #endif
  88. char opt_bitmain_dev[256] = {0};
  89. bool opt_bitmain_hwerror = false;
  90. bool opt_bitmain_checkall = false;
  91. bool opt_bitmain_checkn2diff = false;
  92. bool opt_bitmain_dev_usb = true;
  93. bool opt_bitmain_nobeeper = false;
  94. bool opt_bitmain_notempoverctrl = false;
  95. bool opt_bitmain_homemode = false;
  96. int opt_bitmain_temp = BITMAIN_TEMP_TARGET;
  97. int opt_bitmain_overheat = BITMAIN_TEMP_OVERHEAT;
  98. int opt_bitmain_fan_min = BITMAIN_DEFAULT_FAN_MIN_PWM;
  99. int opt_bitmain_fan_max = BITMAIN_DEFAULT_FAN_MAX_PWM;
  100. int opt_bitmain_freq_min = BITMAIN_MIN_FREQUENCY;
  101. int opt_bitmain_freq_max = BITMAIN_MAX_FREQUENCY;
  102. bool opt_bitmain_auto;
  103. static int option_offset = -1;
  104. // --------------------------------------------------------------
  105. // CRC16 check table
  106. // --------------------------------------------------------------
  107. const uint8_t chCRCHTalbe[] = // CRC high byte table
  108. {
  109. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  110. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
  111. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  112. 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  113. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  114. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
  115. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
  116. 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
  117. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  118. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
  119. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  120. 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  121. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  122. 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  123. 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  124. 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  125. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  126. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40,
  127. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  128. 0x00, 0xC1, 0x81, 0x40, 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41,
  129. 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41,
  130. 0x00, 0xC1, 0x81, 0x40
  131. };
  132. const uint8_t chCRCLTalbe[] = // CRC low byte table
  133. {
  134. 0x00, 0xC0, 0xC1, 0x01, 0xC3, 0x03, 0x02, 0xC2, 0xC6, 0x06, 0x07, 0xC7,
  135. 0x05, 0xC5, 0xC4, 0x04, 0xCC, 0x0C, 0x0D, 0xCD, 0x0F, 0xCF, 0xCE, 0x0E,
  136. 0x0A, 0xCA, 0xCB, 0x0B, 0xC9, 0x09, 0x08, 0xC8, 0xD8, 0x18, 0x19, 0xD9,
  137. 0x1B, 0xDB, 0xDA, 0x1A, 0x1E, 0xDE, 0xDF, 0x1F, 0xDD, 0x1D, 0x1C, 0xDC,
  138. 0x14, 0xD4, 0xD5, 0x15, 0xD7, 0x17, 0x16, 0xD6, 0xD2, 0x12, 0x13, 0xD3,
  139. 0x11, 0xD1, 0xD0, 0x10, 0xF0, 0x30, 0x31, 0xF1, 0x33, 0xF3, 0xF2, 0x32,
  140. 0x36, 0xF6, 0xF7, 0x37, 0xF5, 0x35, 0x34, 0xF4, 0x3C, 0xFC, 0xFD, 0x3D,
  141. 0xFF, 0x3F, 0x3E, 0xFE, 0xFA, 0x3A, 0x3B, 0xFB, 0x39, 0xF9, 0xF8, 0x38,
  142. 0x28, 0xE8, 0xE9, 0x29, 0xEB, 0x2B, 0x2A, 0xEA, 0xEE, 0x2E, 0x2F, 0xEF,
  143. 0x2D, 0xED, 0xEC, 0x2C, 0xE4, 0x24, 0x25, 0xE5, 0x27, 0xE7, 0xE6, 0x26,
  144. 0x22, 0xE2, 0xE3, 0x23, 0xE1, 0x21, 0x20, 0xE0, 0xA0, 0x60, 0x61, 0xA1,
  145. 0x63, 0xA3, 0xA2, 0x62, 0x66, 0xA6, 0xA7, 0x67, 0xA5, 0x65, 0x64, 0xA4,
  146. 0x6C, 0xAC, 0xAD, 0x6D, 0xAF, 0x6F, 0x6E, 0xAE, 0xAA, 0x6A, 0x6B, 0xAB,
  147. 0x69, 0xA9, 0xA8, 0x68, 0x78, 0xB8, 0xB9, 0x79, 0xBB, 0x7B, 0x7A, 0xBA,
  148. 0xBE, 0x7E, 0x7F, 0xBF, 0x7D, 0xBD, 0xBC, 0x7C, 0xB4, 0x74, 0x75, 0xB5,
  149. 0x77, 0xB7, 0xB6, 0x76, 0x72, 0xB2, 0xB3, 0x73, 0xB1, 0x71, 0x70, 0xB0,
  150. 0x50, 0x90, 0x91, 0x51, 0x93, 0x53, 0x52, 0x92, 0x96, 0x56, 0x57, 0x97,
  151. 0x55, 0x95, 0x94, 0x54, 0x9C, 0x5C, 0x5D, 0x9D, 0x5F, 0x9F, 0x9E, 0x5E,
  152. 0x5A, 0x9A, 0x9B, 0x5B, 0x99, 0x59, 0x58, 0x98, 0x88, 0x48, 0x49, 0x89,
  153. 0x4B, 0x8B, 0x8A, 0x4A, 0x4E, 0x8E, 0x8F, 0x4F, 0x8D, 0x4D, 0x4C, 0x8C,
  154. 0x44, 0x84, 0x85, 0x45, 0x87, 0x47, 0x46, 0x86, 0x82, 0x42, 0x43, 0x83,
  155. 0x41, 0x81, 0x80, 0x40
  156. };
  157. static uint16_t CRC16(const uint8_t* p_data, uint16_t w_len)
  158. {
  159. uint8_t chCRCHi = 0xFF; // CRC high byte initialize
  160. uint8_t chCRCLo = 0xFF; // CRC low byte initialize
  161. uint16_t wIndex = 0; // CRC cycling index
  162. while (w_len--) {
  163. wIndex = chCRCLo ^ *p_data++;
  164. chCRCLo = chCRCHi ^ chCRCHTalbe[wIndex];
  165. chCRCHi = chCRCLTalbe[wIndex];
  166. }
  167. return ((chCRCHi << 8) | chCRCLo);
  168. }
  169. static uint32_t num2bit(int num) {
  170. switch(num) {
  171. case 0: return 0x80000000;
  172. case 1: return 0x40000000;
  173. case 2: return 0x20000000;
  174. case 3: return 0x10000000;
  175. case 4: return 0x08000000;
  176. case 5: return 0x04000000;
  177. case 6: return 0x02000000;
  178. case 7: return 0x01000000;
  179. case 8: return 0x00800000;
  180. case 9: return 0x00400000;
  181. case 10: return 0x00200000;
  182. case 11: return 0x00100000;
  183. case 12: return 0x00080000;
  184. case 13: return 0x00040000;
  185. case 14: return 0x00020000;
  186. case 15: return 0x00010000;
  187. case 16: return 0x00008000;
  188. case 17: return 0x00004000;
  189. case 18: return 0x00002000;
  190. case 19: return 0x00001000;
  191. case 20: return 0x00000800;
  192. case 21: return 0x00000400;
  193. case 22: return 0x00000200;
  194. case 23: return 0x00000100;
  195. case 24: return 0x00000080;
  196. case 25: return 0x00000040;
  197. case 26: return 0x00000020;
  198. case 27: return 0x00000010;
  199. case 28: return 0x00000008;
  200. case 29: return 0x00000004;
  201. case 30: return 0x00000002;
  202. case 31: return 0x00000001;
  203. default: return 0x00000000;
  204. }
  205. }
  206. static bool get_options(int this_option_offset, int *baud, int *chain_num,
  207. int *asic_num, int *timeout, int *frequency, char * frequency_t, uint8_t * reg_data, uint8_t * voltage, char * voltage_t)
  208. {
  209. char buf[BUFSIZ+1];
  210. char *ptr, *comma, *colon, *colon2, *colon3, *colon4, *colon5, *colon6;
  211. size_t max;
  212. int i, tmp;
  213. if (opt_bitmain_options == NULL)
  214. buf[0] = '\0';
  215. else {
  216. ptr = opt_bitmain_options;
  217. for (i = 0; i < this_option_offset; i++) {
  218. comma = strchr(ptr, ',');
  219. if (comma == NULL)
  220. break;
  221. ptr = comma + 1;
  222. }
  223. comma = strchr(ptr, ',');
  224. if (comma == NULL)
  225. max = strlen(ptr);
  226. else
  227. max = comma - ptr;
  228. if (max > BUFSIZ)
  229. max = BUFSIZ;
  230. strncpy(buf, ptr, max);
  231. buf[max] = '\0';
  232. }
  233. if (!(*buf))
  234. return false;
  235. colon = strchr(buf, ':');
  236. if (colon)
  237. *(colon++) = '\0';
  238. tmp = atoi(buf);
  239. switch (tmp) {
  240. case 115200:
  241. *baud = 115200;
  242. break;
  243. case 57600:
  244. *baud = 57600;
  245. break;
  246. case 38400:
  247. *baud = 38400;
  248. break;
  249. case 19200:
  250. *baud = 19200;
  251. break;
  252. default:
  253. quit(1, "Invalid bitmain-options for baud (%s) "
  254. "must be 115200, 57600, 38400 or 19200", buf);
  255. }
  256. if (colon && *colon) {
  257. colon2 = strchr(colon, ':');
  258. if (colon2)
  259. *(colon2++) = '\0';
  260. if (*colon) {
  261. tmp = atoi(colon);
  262. if (tmp > 0) {
  263. *chain_num = tmp;
  264. } else {
  265. quit(1, "Invalid bitmain-options for "
  266. "chain_num (%s) must be 1 ~ %d",
  267. colon, BITMAIN_DEFAULT_CHAIN_NUM);
  268. }
  269. }
  270. if (colon2 && *colon2) {
  271. colon3 = strchr(colon2, ':');
  272. if (colon3)
  273. *(colon3++) = '\0';
  274. tmp = atoi(colon2);
  275. if (tmp > 0 && tmp <= BITMAIN_DEFAULT_ASIC_NUM)
  276. *asic_num = tmp;
  277. else {
  278. quit(1, "Invalid bitmain-options for "
  279. "asic_num (%s) must be 1 ~ %d",
  280. colon2, BITMAIN_DEFAULT_ASIC_NUM);
  281. }
  282. if (colon3 && *colon3) {
  283. colon4 = strchr(colon3, ':');
  284. if (colon4)
  285. *(colon4++) = '\0';
  286. tmp = atoi(colon3);
  287. if (tmp > 0 && tmp <= 0xff)
  288. *timeout = tmp;
  289. else {
  290. quit(1, "Invalid bitmain-options for "
  291. "timeout (%s) must be 1 ~ %d",
  292. colon3, 0xff);
  293. }
  294. if (colon4 && *colon4) {
  295. colon5 = strchr(colon4, ':');
  296. if(colon5)
  297. *(colon5++) = '\0';
  298. tmp = atoi(colon4);
  299. if (tmp < BITMAIN_MIN_FREQUENCY || tmp > BITMAIN_MAX_FREQUENCY) {
  300. quit(1, "Invalid bitmain-options for frequency, must be %d <= frequency <= %d",
  301. BITMAIN_MIN_FREQUENCY, BITMAIN_MAX_FREQUENCY);
  302. } else {
  303. *frequency = tmp;
  304. strcpy(frequency_t, colon4);
  305. }
  306. if (colon5 && *colon5) {
  307. colon6 = strchr(colon5, ':');
  308. if(colon6)
  309. *(colon6++) = '\0';
  310. if(strlen(colon5) > 8 || strlen(colon5)%2 != 0 || strlen(colon5)/2 == 0) {
  311. quit(1, "Invalid bitmain-options for reg data, must be hex now: %s",
  312. colon5);
  313. }
  314. memset(reg_data, 0, 4);
  315. if(!hex2bin(reg_data, colon5, strlen(colon5)/2)) {
  316. quit(1, "Invalid bitmain-options for reg data, hex2bin error now: %s",
  317. colon5);
  318. }
  319. if (colon6 && *colon6) {
  320. if(strlen(colon6) > 4 || strlen(colon6)%2 != 0 || strlen(colon6)/2 == 0) {
  321. quit(1, "Invalid bitmain-options for voltage data, must be hex now: %s",
  322. colon6);
  323. }
  324. memset(voltage, 0, 2);
  325. if(!hex2bin(voltage, colon6, strlen(colon6)/2)) {
  326. quit(1, "Invalid bitmain-options for voltage data, hex2bin error now: %s",
  327. colon5);
  328. } else {
  329. sprintf(voltage_t, "%02x%02x", voltage[0], voltage[1]);
  330. voltage_t[5] = 0;
  331. voltage_t[4] = voltage_t[3];
  332. voltage_t[3] = voltage_t[2];
  333. voltage_t[2] = voltage_t[1];
  334. voltage_t[1] = '.';
  335. }
  336. }
  337. }
  338. }
  339. }
  340. }
  341. }
  342. return true;
  343. }
  344. static bool get_option_freq(int *timeout, int *frequency, char * frequency_t, uint8_t * reg_data)
  345. {
  346. char buf[BUFSIZ+1];
  347. char *ptr, *comma, *colon, *colon2;
  348. size_t max;
  349. int i, tmp;
  350. if (opt_bitmain_freq == NULL)
  351. return true;
  352. else {
  353. ptr = opt_bitmain_freq;
  354. comma = strchr(ptr, ',');
  355. if (comma == NULL)
  356. max = strlen(ptr);
  357. else
  358. max = comma - ptr;
  359. if (max > BUFSIZ)
  360. max = BUFSIZ;
  361. strncpy(buf, ptr, max);
  362. buf[max] = '\0';
  363. }
  364. if (!(*buf))
  365. return false;
  366. colon = strchr(buf, ':');
  367. if (colon)
  368. *(colon++) = '\0';
  369. tmp = atoi(buf);
  370. if (tmp > 0 && tmp <= 0xff)
  371. *timeout = tmp;
  372. else {
  373. quit(1, "Invalid bitmain-freq for "
  374. "timeout (%s) must be 1 ~ %d",
  375. buf, 0xff);
  376. }
  377. if (colon && *colon) {
  378. colon2 = strchr(colon, ':');
  379. if (colon2)
  380. *(colon2++) = '\0';
  381. tmp = atoi(colon);
  382. if (tmp < BITMAIN_MIN_FREQUENCY || tmp > BITMAIN_MAX_FREQUENCY) {
  383. quit(1, "Invalid bitmain-freq for frequency, must be %d <= frequency <= %d",
  384. BITMAIN_MIN_FREQUENCY, BITMAIN_MAX_FREQUENCY);
  385. } else {
  386. *frequency = tmp;
  387. strcpy(frequency_t, colon);
  388. }
  389. if (colon2 && *colon2) {
  390. if(strlen(colon2) > 8 || strlen(colon2)%2 != 0 || strlen(colon2)/2 == 0) {
  391. quit(1, "Invalid bitmain-freq for reg data, must be hex now: %s",
  392. colon2);
  393. }
  394. memset(reg_data, 0, 4);
  395. if(!hex2bin(reg_data, colon2, strlen(colon2)/2)) {
  396. quit(1, "Invalid bitmain-freq for reg data, hex2bin error now: %s",
  397. colon2);
  398. }
  399. }
  400. }
  401. return true;
  402. }
  403. static bool get_option_voltage(uint8_t * voltage, char * voltage_t)
  404. {
  405. if(opt_bitmain_voltage) {
  406. if(strlen(opt_bitmain_voltage) > 4 || strlen(opt_bitmain_voltage)%2 != 0 || strlen(opt_bitmain_voltage)/2 == 0) {
  407. applog(LOG_ERR, "Invalid bitmain-voltage for voltage data, must be hex now: %s,set default_volttage",
  408. opt_bitmain_voltage);
  409. return false;
  410. }
  411. memset(voltage, 0, 2);
  412. if(!hex2bin(voltage, opt_bitmain_voltage, strlen(opt_bitmain_voltage)/2)) {
  413. quit(1, "Invalid bitmain-voltage for voltage data, hex2bin error now: %s",
  414. opt_bitmain_voltage);
  415. } else {
  416. sprintf(voltage_t, "%02x%02x", voltage[0], voltage[1]);
  417. voltage_t[5] = 0;
  418. voltage_t[4] = voltage_t[3];
  419. voltage_t[3] = voltage_t[2];
  420. voltage_t[2] = voltage_t[1];
  421. voltage_t[1] = '.';
  422. }
  423. }
  424. return true;
  425. }
  426. static int bitmain_set_txconfig(struct bitmain_txconfig_token *bm,
  427. uint8_t reset, uint8_t fan_eft, uint8_t timeout_eft, uint8_t frequency_eft,
  428. uint8_t voltage_eft, uint8_t chain_check_time_eft, uint8_t chip_config_eft, uint8_t hw_error_eft,
  429. uint8_t beeper_ctrl, uint8_t temp_over_ctrl,uint8_t fan_home_mode,
  430. uint8_t chain_num, uint8_t asic_num, uint8_t fan_pwm_data, uint8_t timeout_data,
  431. uint16_t frequency, uint8_t * voltage, uint8_t chain_check_time,
  432. uint8_t chip_address, uint8_t reg_address, uint8_t * reg_data)
  433. {
  434. uint16_t crc = 0;
  435. int datalen = 0;
  436. uint8_t version = 0;
  437. uint8_t * sendbuf = (uint8_t *)bm;
  438. if (unlikely(!bm)) {
  439. applog(LOG_WARNING, "bitmain_set_txconfig bitmain_txconfig_token is null");
  440. return -1;
  441. }
  442. if (unlikely(timeout_data <= 0 || asic_num <= 0 || chain_num <= 0)) {
  443. applog(LOG_WARNING, "bitmain_set_txconfig parameter invalid timeout_data(%d) asic_num(%d) chain_num(%d)",
  444. timeout_data, asic_num, chain_num);
  445. return -1;
  446. }
  447. datalen = sizeof(struct bitmain_txconfig_token);
  448. memset(bm, 0, datalen);
  449. bm->token_type = BITMAIN_TOKEN_TYPE_TXCONFIG;
  450. bm->version = version;
  451. bm->length = datalen-4;
  452. bm->length = htole16(bm->length);
  453. bm->reset = reset;
  454. bm->fan_eft = fan_eft;
  455. bm->timeout_eft = timeout_eft;
  456. bm->frequency_eft = frequency_eft;
  457. bm->voltage_eft = voltage_eft;
  458. bm->chain_check_time_eft = chain_check_time_eft;
  459. bm->chip_config_eft = chip_config_eft;
  460. bm->hw_error_eft = hw_error_eft;
  461. bm->beeper_ctrl = beeper_ctrl;
  462. bm->temp_over_ctrl = temp_over_ctrl;
  463. bm->fan_home_mode = fan_home_mode;
  464. sendbuf[4] = htole8(sendbuf[4]);
  465. sendbuf[5] = htole8(sendbuf[5]);
  466. bm->chain_num = chain_num;
  467. bm->asic_num = asic_num;
  468. bm->fan_pwm_data = fan_pwm_data;
  469. bm->timeout_data = timeout_data;
  470. bm->frequency = htole16(frequency);
  471. memcpy(bm->voltage, voltage, 2);
  472. bm->chain_check_time = chain_check_time;
  473. memcpy(bm->reg_data, reg_data, 4);
  474. bm->chip_address = chip_address;
  475. bm->reg_address = reg_address;
  476. crc = CRC16((uint8_t *)bm, datalen-2);
  477. bm->crc = htole16(crc);
  478. applog(LOG_ERR, "BTM TxConfigToken:v(%d) reset(%d) fan_e(%d) tout_e(%d) fq_e(%d) vt_e(%d) chainc_e(%d) chipc_e(%d) hw_e(%d) b_c(%d) t_c(%d) f_m(%d) mnum(%d) anum(%d) fanpwmdata(%d) toutdata(%d) freq(%d) volt(%02x%02x) chainctime(%d) regdata(%02x%02x%02x%02x) chipaddr(%02x) regaddr(%02x) crc(%04x)",
  479. version, reset, fan_eft, timeout_eft, frequency_eft, voltage_eft,
  480. chain_check_time_eft, chip_config_eft, hw_error_eft, beeper_ctrl, temp_over_ctrl,fan_home_mode,chain_num, asic_num,
  481. fan_pwm_data, timeout_data, frequency, voltage[0], voltage[1],
  482. chain_check_time, reg_data[0], reg_data[1], reg_data[2], reg_data[3], chip_address, reg_address, crc);
  483. return datalen;
  484. }
  485. static int bitmain_set_txtask(uint8_t * sendbuf,
  486. unsigned int * last_work_block, struct work **works, int work_array_size, int work_array, int sendworkcount, int * sendcount)
  487. {
  488. uint16_t crc = 0;
  489. uint32_t work_id = 0;
  490. uint8_t version = 0;
  491. int datalen = 0;
  492. int i = 0;
  493. int index = work_array;
  494. uint8_t new_block= 0;
  495. char * ob_hex = NULL;
  496. struct bitmain_txtask_token *bm = (struct bitmain_txtask_token *)sendbuf;
  497. *sendcount = 0;
  498. int cursendcount = 0;
  499. int diff = 0;
  500. unsigned int difftmp = 0;
  501. unsigned int pooldiff = 0;
  502. uint64_t netdifftmp = 0;
  503. int netdiff = 0;
  504. if (unlikely(!bm)) {
  505. applog(LOG_WARNING, "bitmain_set_txtask bitmain_txtask_token is null");
  506. return -1;
  507. }
  508. if (unlikely(!works)) {
  509. applog(LOG_WARNING, "bitmain_set_txtask work is null");
  510. return -1;
  511. }
  512. memset(bm, 0, sizeof(struct bitmain_txtask_token));
  513. bm->token_type = BITMAIN_TOKEN_TYPE_TXTASK;
  514. bm->version = version;
  515. datalen = 10;
  516. applog(LOG_DEBUG, "BTM send work count %d -----", sendworkcount);
  517. for(i = 0; i < sendworkcount; i++) {
  518. if(index > work_array_size) {
  519. index = 0;
  520. }
  521. if(works[index]) {
  522. if(works[index]->work_block > *last_work_block) {
  523. applog(LOG_ERR, "BTM send task new block %d old(%d)", works[index]->work_block, *last_work_block);
  524. new_block = 1;
  525. *last_work_block = works[index]->work_block;
  526. }
  527. #ifdef BITMAIN_TEST
  528. if(!hex2bin(works[index]->data, btm_work_test_data[g_test_index], 128)) {
  529. applog(LOG_DEBUG, "BTM send task set test data error");
  530. }
  531. if(!hex2bin(works[index]->midstate, btm_work_test_midstate[g_test_index], 32)) {
  532. applog(LOG_DEBUG, "BTM send task set test midstate error");
  533. }
  534. g_test_index++;
  535. if(g_test_index >= BITMAIN_TEST_USENUM) {
  536. g_test_index = 0;
  537. }
  538. applog(LOG_DEBUG, "BTM test index = %d", g_test_index);
  539. #endif
  540. work_id = works[index]->id;
  541. bm->works[cursendcount].work_id = htole32(work_id);
  542. applog(LOG_DEBUG, "BTM send task work id:%d %d", bm->works[cursendcount].work_id, work_id);
  543. memcpy(bm->works[cursendcount].midstate, works[index]->midstate, 32);
  544. memcpy(bm->works[cursendcount].data2, works[index]->data + 64, 12);
  545. if(cursendcount == 0) {
  546. pooldiff = (unsigned int)(works[index]->sdiff);
  547. difftmp = pooldiff;
  548. while(1) {
  549. difftmp = difftmp >> 1;
  550. if(difftmp > 0) {
  551. diff++;
  552. if(diff >= 255) {
  553. break;
  554. }
  555. } else {
  556. break;
  557. }
  558. }
  559. }
  560. if(BITMAIN_TEST_PRINT_WORK) {
  561. ob_hex = bin2hex(works[index]->data, 76);
  562. applog(LOG_ERR, "work %d data: %s", works[index]->id, ob_hex);
  563. free(ob_hex);
  564. }
  565. cursendcount++;
  566. }
  567. index++;
  568. }
  569. if(cursendcount <= 0) {
  570. applog(LOG_ERR, "BTM send work count %d", cursendcount);
  571. return 0;
  572. }
  573. netdifftmp = current_diff;
  574. while(netdifftmp > 0) {
  575. netdifftmp = netdifftmp >> 1;
  576. netdiff++;
  577. }
  578. datalen += 48*cursendcount;
  579. bm->length = datalen-4;
  580. bm->length = htole16(bm->length);
  581. //len = datalen-3;
  582. //len = htole16(len);
  583. //memcpy(sendbuf+1, &len, 2);
  584. bm->new_block = new_block;
  585. bm->diff = diff;
  586. bm->net_diff = htole16(netdiff);
  587. sendbuf[4] = htole8(sendbuf[4]);
  588. applog(LOG_DEBUG, "BitMain TxTask Token: %d %d %02x%02x%02x%02x%02x%02x",
  589. datalen, bm->length, sendbuf[0],sendbuf[1],sendbuf[2],sendbuf[3],sendbuf[4],sendbuf[5]);
  590. *sendcount = cursendcount;
  591. crc = CRC16(sendbuf, datalen-2);
  592. crc = htole16(crc);
  593. memcpy(sendbuf+datalen-2, &crc, 2);
  594. applog(LOG_DEBUG, "BitMain TxTask Token: v(%d) new_block(%d) diff(%d pool:%d net:%d) work_num(%d) crc(%04x)",
  595. version, new_block, diff, pooldiff,netdiff, cursendcount, crc);
  596. applog(LOG_DEBUG, "BitMain TxTask Token: %d %d %02x%02x%02x%02x%02x%02x",
  597. datalen, bm->length, sendbuf[0],sendbuf[1],sendbuf[2],sendbuf[3],sendbuf[4],sendbuf[5]);
  598. return datalen;
  599. }
  600. static int bitmain_set_rxstatus(struct bitmain_rxstatus_token *bm,
  601. uint8_t chip_status_eft, uint8_t detect_get, uint8_t chip_address, uint8_t reg_address)
  602. {
  603. uint16_t crc = 0;
  604. uint8_t version = 0;
  605. int datalen = 0;
  606. uint8_t * sendbuf = (uint8_t *)bm;
  607. if (unlikely(!bm)) {
  608. applog(LOG_WARNING, "bitmain_set_rxstatus bitmain_rxstatus_token is null");
  609. return -1;
  610. }
  611. datalen = sizeof(struct bitmain_rxstatus_token);
  612. memset(bm, 0, datalen);
  613. bm->token_type = BITMAIN_TOKEN_TYPE_RXSTATUS;
  614. bm->version = version;
  615. bm->length = datalen-4;
  616. bm->length = htole16(bm->length);
  617. bm->chip_status_eft = chip_status_eft;
  618. bm->detect_get = detect_get;
  619. sendbuf[4] = htole8(sendbuf[4]);
  620. bm->chip_address = chip_address;
  621. bm->reg_address = reg_address;
  622. crc = CRC16((uint8_t *)bm, datalen-2);
  623. bm->crc = htole16(crc);
  624. applog(LOG_ERR, "BitMain RxStatus Token: v(%d) chip_status_eft(%d) detect_get(%d) chip_address(%02x) reg_address(%02x) crc(%04x)",
  625. version, chip_status_eft, detect_get, chip_address, reg_address, crc);
  626. return datalen;
  627. }
  628. static int bitmain_parse_rxstatus(const uint8_t * data, int datalen, struct bitmain_rxstatus_data *bm)
  629. {
  630. uint16_t crc = 0;
  631. uint8_t version = 0;
  632. int i = 0, j = 0;
  633. int asic_num = 0;
  634. int dataindex = 0;
  635. uint8_t tmp = 0x01;
  636. if (unlikely(!bm)) {
  637. applog(LOG_WARNING, "bitmain_parse_rxstatus bitmain_rxstatus_data is null");
  638. return -1;
  639. }
  640. if (unlikely(!data || datalen <= 0)) {
  641. applog(LOG_WARNING, "bitmain_parse_rxstatus parameter invalid data is null or datalen(%d) error", datalen);
  642. return -1;
  643. }
  644. memset(bm, 0, sizeof(struct bitmain_rxstatus_data));
  645. memcpy(bm, data, 28);
  646. if (bm->data_type != BITMAIN_DATA_TYPE_RXSTATUS) {
  647. applog(LOG_ERR, "bitmain_parse_rxstatus datatype(%02x) error", bm->data_type);
  648. return -1;
  649. }
  650. if (bm->version != version) {
  651. applog(LOG_ERR, "bitmain_parse_rxstatus version(%02x) error", bm->version);
  652. return -1;
  653. }
  654. bm->length = htole16(bm->length);
  655. if (bm->length+4 != datalen) {
  656. applog(LOG_ERR, "bitmain_parse_rxstatus length(%d) datalen(%d) error", bm->length, datalen);
  657. return -1;
  658. }
  659. crc = CRC16(data, datalen-2);
  660. memcpy(&(bm->crc), data+datalen-2, 2);
  661. bm->crc = htole16(bm->crc);
  662. if(crc != bm->crc) {
  663. applog(LOG_ERR, "bitmain_parse_rxstatus check crc(%d) != bm crc(%d) datalen(%d)", crc, bm->crc, datalen);
  664. return -1;
  665. }
  666. bm->fifo_space = htole16(bm->fifo_space);
  667. bm->fan_exist = htole16(bm->fan_exist);
  668. bm->temp_exist = htole32(bm->temp_exist);
  669. bm->nonce_error = htole32(bm->nonce_error);
  670. if(bm->chain_num > BITMAIN_MAX_CHAIN_NUM) {
  671. applog(LOG_ERR, "bitmain_parse_rxstatus chain_num=%d error", bm->chain_num);
  672. return -1;
  673. }
  674. dataindex = 28;
  675. if(bm->chain_num > 0) {
  676. memcpy(bm->chain_asic_num, data+datalen-2-bm->chain_num-bm->temp_num-bm->fan_num, bm->chain_num);
  677. }
  678. for(i = 0; i < bm->chain_num; i++) {
  679. asic_num = bm->chain_asic_num[i];
  680. if(asic_num <= 0) {
  681. asic_num = 1;
  682. } else {
  683. if(asic_num % 32 == 0) {
  684. asic_num = asic_num / 32;
  685. } else {
  686. asic_num = asic_num / 32 + 1;
  687. }
  688. }
  689. memcpy((uint8_t *)bm->chain_asic_exist+i*32, data+dataindex, asic_num*4);
  690. dataindex += asic_num*4;
  691. }
  692. for(i = 0; i < bm->chain_num; i++) {
  693. asic_num = bm->chain_asic_num[i];
  694. if(asic_num <= 0) {
  695. asic_num = 1;
  696. } else {
  697. if(asic_num % 32 == 0) {
  698. asic_num = asic_num / 32;
  699. } else {
  700. asic_num = asic_num / 32 + 1;
  701. }
  702. }
  703. memcpy((uint8_t *)bm->chain_asic_status+i*32, data+dataindex, asic_num*4);
  704. dataindex += asic_num*4;
  705. }
  706. dataindex += bm->chain_num;
  707. if(dataindex + bm->temp_num + bm->fan_num + 2 != datalen) {
  708. applog(LOG_ERR, "bitmain_parse_rxstatus dataindex(%d) chain_num(%d) temp_num(%d) fan_num(%d) not match datalen(%d)",
  709. dataindex, bm->chain_num, bm->temp_num, bm->fan_num, datalen);
  710. return -1;
  711. }
  712. for(i = 0; i < bm->chain_num; i++) {
  713. //bm->chain_asic_status[i] = swab32(bm->chain_asic_status[i]);
  714. for(j = 0; j < 8; j++) {
  715. bm->chain_asic_exist[i*8+j] = htole32(bm->chain_asic_exist[i*8+j]);
  716. bm->chain_asic_status[i*8+j] = htole32(bm->chain_asic_status[i*8+j]);
  717. }
  718. }
  719. if(bm->temp_num > 0) {
  720. memcpy(bm->temp, data+dataindex, bm->temp_num);
  721. dataindex += bm->temp_num;
  722. }
  723. if(bm->fan_num > 0) {
  724. memcpy(bm->fan, data+dataindex, bm->fan_num);
  725. dataindex += bm->fan_num;
  726. }
  727. if(!opt_bitmain_checkall){
  728. if(tmp != htole8(tmp)){
  729. applog(LOG_ERR, "BitMain RxStatus byte4 0x%02x chip_value_eft %d reserved %d get_blk_num %d ",*((uint8_t* )bm +4),bm->chip_value_eft,bm->reserved1,bm->get_blk_num);
  730. memcpy(&tmp,data+4,1);
  731. bm->chip_value_eft = tmp >>7;
  732. bm->get_blk_num = tmp >> 4;
  733. bm->reserved1 = ((tmp << 4) & 0xff) >> 5;
  734. }
  735. found_blocks = bm->get_blk_num;
  736. applog(LOG_ERR, "BitMain RxStatus tmp :0x%02x byte4 0x%02x chip_value_eft %d reserved %d get_blk_num %d ",tmp,*((uint8_t* )bm +4),bm->chip_value_eft,bm->reserved1,bm->get_blk_num);
  737. }
  738. applog(LOG_DEBUG, "BitMain RxStatusData: chipv_e(%d) chainnum(%d) fifos(%d) v1(%d) v2(%d) v3(%d) v4(%d) fann(%d) tempn(%d) fanet(%04x) tempet(%08x) ne(%d) regvalue(%d) crc(%04x)",
  739. bm->chip_value_eft, bm->chain_num, bm->fifo_space, bm->hw_version[0], bm->hw_version[1], bm->hw_version[2], bm->hw_version[3], bm->fan_num, bm->temp_num, bm->fan_exist, bm->temp_exist, bm->nonce_error, bm->reg_value, bm->crc);
  740. applog(LOG_DEBUG, "BitMain RxStatus Data chain info:");
  741. for(i = 0; i < bm->chain_num; i++) {
  742. applog(LOG_DEBUG, "BitMain RxStatus Data chain(%d) asic num=%d asic_exist=%08x asic_status=%08x", i+1, bm->chain_asic_num[i], bm->chain_asic_exist[i*8], bm->chain_asic_status[i*8]);
  743. }
  744. applog(LOG_DEBUG, "BitMain RxStatus Data temp info:");
  745. for(i = 0; i < bm->temp_num; i++) {
  746. applog(LOG_DEBUG, "BitMain RxStatus Data temp(%d) temp=%d", i+1, bm->temp[i]);
  747. }
  748. applog(LOG_DEBUG, "BitMain RxStatus Data fan info:");
  749. for(i = 0; i < bm->fan_num; i++) {
  750. applog(LOG_DEBUG, "BitMain RxStatus Data fan(%d) fan=%d", i+1, bm->fan[i]);
  751. }
  752. return 0;
  753. }
  754. static int bitmain_parse_rxnonce(const uint8_t * data, int datalen, struct bitmain_rxnonce_data *bm, int * nonce_num)
  755. {
  756. int i = 0;
  757. uint16_t crc = 0;
  758. uint8_t version = 0;
  759. int curnoncenum = 0;
  760. if (unlikely(!bm)) {
  761. applog(LOG_ERR, "bitmain_parse_rxnonce bitmain_rxstatus_data null");
  762. return -1;
  763. }
  764. if (unlikely(!data || datalen <= 0)) {
  765. applog(LOG_ERR, "bitmain_parse_rxnonce data null or datalen(%d) error", datalen);
  766. return -1;
  767. }
  768. memcpy(bm, data, sizeof(struct bitmain_rxnonce_data));
  769. if (bm->data_type != BITMAIN_DATA_TYPE_RXNONCE) {
  770. applog(LOG_ERR, "bitmain_parse_rxnonce datatype(%02x) error", bm->data_type);
  771. return -1;
  772. }
  773. if (bm->version != version) {
  774. applog(LOG_ERR, "bitmain_parse_rxnonce version(%02x) error", bm->version);
  775. return -1;
  776. }
  777. bm->length = htole16(bm->length);
  778. if (bm->length+4 != datalen) {
  779. applog(LOG_ERR, "bitmain_parse_rxnonce length(%d) error", bm->length);
  780. return -1;
  781. }
  782. crc = CRC16(data, datalen-2);
  783. memcpy(&(bm->crc), data+datalen-2, 2);
  784. bm->crc = htole16(bm->crc);
  785. if(crc != bm->crc) {
  786. applog(LOG_ERR, "bitmain_parse_rxnonce check crc(%d) != bm crc(%d) datalen(%d)", crc, bm->crc, datalen);
  787. return -1;
  788. }
  789. bm->fifo_space = htole16(bm->fifo_space);
  790. bm->diff = htole16(bm->diff);
  791. bm->total_nonce_num = htole64(bm->total_nonce_num);
  792. curnoncenum = (datalen-14)/8;
  793. applog(LOG_DEBUG, "BitMain RxNonce Data: nonce_num(%d) fifo_space(%d) diff(%d) tnn(%lld)", curnoncenum, bm->fifo_space, bm->diff, bm->total_nonce_num);
  794. for(i = 0; i < curnoncenum; i++) {
  795. bm->nonces[i].work_id = htole32(bm->nonces[i].work_id);
  796. bm->nonces[i].nonce = htole32(bm->nonces[i].nonce);
  797. applog(LOG_DEBUG, "BitMain RxNonce Data %d: work_id(%d) nonce(%08x)(%d)",
  798. i, bm->nonces[i].work_id, bm->nonces[i].nonce, bm->nonces[i].nonce);
  799. }
  800. *nonce_num = curnoncenum;
  801. return 0;
  802. }
  803. static int bitmain_read(struct cgpu_info *bitmain, unsigned char *buf,
  804. size_t bufsize, int timeout, int ep)
  805. {
  806. int err = 0, readlen = 0;
  807. size_t total = 0;
  808. if(bitmain == NULL || buf == NULL || bufsize <= 0) {
  809. applog(LOG_WARNING, "bitmain_read parameter error bufsize(%d)", bufsize);
  810. return -1;
  811. }
  812. if(opt_bitmain_dev_usb) {
  813. #ifdef WIN32
  814. char readbuf[BITMAIN_READBUF_SIZE];
  815. int ofs = 2, cp = 0;
  816. err = usb_read_once_timeout(bitmain, readbuf, bufsize, &readlen, timeout, ep);
  817. applog(LOG_DEBUG, "%s%i: Get bitmain read got readlen %d err %d",
  818. bitmain->drv->name, bitmain->device_id, readlen, err);
  819. if (readlen < 2)
  820. goto out;
  821. while (readlen > 2) {
  822. cp = readlen - 2;
  823. if (cp > 62)
  824. cp = 62;
  825. memcpy(&buf[total], &readbuf[ofs], cp);
  826. total += cp;
  827. readlen -= cp + 2;
  828. ofs += 64;
  829. }
  830. #else
  831. err = usb_read_once_timeout(bitmain, buf, bufsize, &readlen, timeout, ep);
  832. applog(LOG_DEBUG, "%s%i: Get bitmain read got readlen %d err %d",
  833. bitmain->drv->name, bitmain->device_id, readlen, err);
  834. total = readlen;
  835. #endif
  836. } else {
  837. err = btm_read(bitmain, buf, bufsize);
  838. total = err;
  839. }
  840. out:
  841. return total;
  842. }
  843. static int bitmain_write(struct cgpu_info *bitmain, char *buf, ssize_t len, int ep)
  844. {
  845. int err, amount;
  846. if(opt_bitmain_dev_usb) {
  847. err = usb_write(bitmain, buf, len, &amount, ep);
  848. applog(LOG_DEBUG, "%s%i: usb_write got err %d", bitmain->drv->name,
  849. bitmain->device_id, err);
  850. if (unlikely(err != 0)) {
  851. applog(LOG_ERR, "usb_write error on bitmain_write err=%d", err);
  852. return BTM_SEND_ERROR;
  853. }
  854. if (amount != len) {
  855. applog(LOG_ERR, "usb_write length mismatch on bitmain_write amount=%d len=%d", amount, len);
  856. return BTM_SEND_ERROR;
  857. }
  858. } else {
  859. int havelen = 0;
  860. while(havelen < len) {
  861. err = btm_write(bitmain, buf+havelen, len-havelen);
  862. if(err < 0) {
  863. applog(LOG_DEBUG, "%s%i: btm_write got err %d", bitmain->drv->name,
  864. bitmain->device_id, err);
  865. applog(LOG_WARNING, "usb_write error on bitmain_write");
  866. return BTM_SEND_ERROR;
  867. } else {
  868. havelen += err;
  869. }
  870. }
  871. }
  872. return BTM_SEND_OK;
  873. }
  874. static int bitmain_send_data(const uint8_t * data, int datalen, struct cgpu_info *bitmain)
  875. {
  876. int delay, ret, ep = C_BITMAIN_SEND;
  877. struct bitmain_info *info = NULL;
  878. cgtimer_t ts_start;
  879. if(datalen <= 0) {
  880. return 0;
  881. }
  882. if(data[0] == BITMAIN_TOKEN_TYPE_TXCONFIG) {
  883. ep = C_BITMAIN_TOKEN_TXCONFIG;
  884. } else if(data[0] == BITMAIN_TOKEN_TYPE_TXTASK) {
  885. ep = C_BITMAIN_TOKEN_TXTASK;
  886. } else if(data[0] == BITMAIN_TOKEN_TYPE_RXSTATUS) {
  887. ep = C_BITMAIN_TOKEN_RXSTATUS;
  888. }
  889. info = bitmain->device_data;
  890. //delay = datalen * 10 * 1000000;
  891. //delay = delay / info->baud;
  892. //delay += 4000;
  893. if(opt_debug) {
  894. applog(LOG_DEBUG, "BitMain: Sent(%d):", datalen);
  895. hexdump(data, datalen);
  896. }
  897. //cgsleep_prepare_r(&ts_start);
  898. //applog(LOG_DEBUG, "----bitmain_send_data start");
  899. ret = bitmain_write(bitmain, (char *)data, datalen, ep);
  900. applog(LOG_DEBUG, "----bitmain_send_data stop ret=%d datalen=%d", ret, datalen);
  901. //cgsleep_us_r(&ts_start, delay);
  902. //applog(LOG_DEBUG, "BitMain: Sent: Buffer delay: %dus", delay);
  903. return ret;
  904. }
  905. static bool bitmain_decode_nonce(struct thr_info *thr, struct cgpu_info *bitmain,
  906. struct bitmain_info *info, uint32_t nonce, struct work *work)
  907. {
  908. info = bitmain->device_data;
  909. //info->matching_work[work->subid]++;
  910. if(opt_bitmain_hwerror) {
  911. applog(LOG_DEBUG, "BitMain: submit direct nonce = %08x", nonce);
  912. if(opt_bitmain_checkall) {
  913. applog(LOG_DEBUG, "BitMain check all");
  914. return submit_nonce(thr, work, nonce);
  915. } else {
  916. if(opt_bitmain_checkn2diff) {
  917. int diff = 0;
  918. diff = work->sdiff;
  919. if(diff&&(diff&(diff-1))) {
  920. applog(LOG_DEBUG, "BitMain %d not diff 2 submit_nonce", diff);
  921. return submit_nonce(thr, work, nonce);
  922. } else {
  923. applog(LOG_DEBUG, "BitMain %d diff 2 submit_nonce_direct", diff);
  924. return submit_nonce_direct(thr, work, nonce);
  925. }
  926. } else {
  927. return submit_nonce_direct(thr, work, nonce);
  928. }
  929. }
  930. } else {
  931. applog(LOG_DEBUG, "BitMain: submit nonce = %08x", nonce);
  932. return submit_nonce(thr, work, nonce);
  933. }
  934. }
  935. static void bitmain_inc_nvw(struct bitmain_info *info, struct thr_info *thr)
  936. {
  937. applog(LOG_INFO, "%s%d: No matching work - HW error",
  938. thr->cgpu->drv->name, thr->cgpu->device_id);
  939. inc_hw_errors(thr);
  940. info->no_matching_work++;
  941. }
  942. static inline void record_temp_fan(struct bitmain_info *info, struct bitmain_rxstatus_data *bm, double *temp_avg)
  943. {
  944. int i = 0;
  945. int maxfan = 0, maxtemp = 0;
  946. *temp_avg = 0;
  947. info->fan_num = bm->fan_num;
  948. for(i = 0; i < bm->fan_num; i++) {
  949. info->fan[i] = bm->fan[i] * BITMAIN_FAN_FACTOR;
  950. if(info->fan[i] > maxfan)
  951. maxfan = info->fan[i];
  952. }
  953. info->temp_num = bm->temp_num;
  954. for(i = 0; i < bm->temp_num; i++) {
  955. info->temp[i] = bm->temp[i];
  956. /*
  957. if(bm->temp[i] & 0x80) {
  958. bm->temp[i] &= 0x7f;
  959. info->temp[i] = 0 - ((~bm->temp[i] & 0x7f) + 1);
  960. }*/
  961. *temp_avg += info->temp[i];
  962. if(info->temp[i] > info->temp_max) {
  963. info->temp_max = info->temp[i];
  964. }
  965. if(info->temp[i] > maxtemp)
  966. maxtemp = info->temp[i];
  967. }
  968. if(bm->temp_num > 0) {
  969. *temp_avg = *temp_avg / bm->temp_num;
  970. info->temp_avg = *temp_avg;
  971. }
  972. inc_dev_status(maxfan, maxtemp);
  973. }
  974. static void bitmain_update_temps(struct cgpu_info *bitmain, struct bitmain_info *info,
  975. struct bitmain_rxstatus_data *bm)
  976. {
  977. char tmp[64] = {0};
  978. char msg[10240] = {0};
  979. int i = 0;
  980. record_temp_fan(info, bm, &(bitmain->temp));
  981. strcpy(msg, "BitMain: ");
  982. for(i = 0; i < bm->fan_num; i++) {
  983. if(i != 0) {
  984. strcat(msg, ", ");
  985. }
  986. sprintf(tmp, "Fan%d: %d/m", i+1, info->fan[i]);
  987. strcat(msg, tmp);
  988. }
  989. strcat(msg, "\t");
  990. for(i = 0; i < bm->temp_num; i++) {
  991. if(i != 0) {
  992. strcat(msg, ", ");
  993. }
  994. sprintf(tmp, "Temp%d: %dC", i+1, info->temp[i]);
  995. strcat(msg, tmp);
  996. }
  997. sprintf(tmp, ", TempMAX: %dC", info->temp_max);
  998. strcat(msg, tmp);
  999. applog(LOG_INFO, msg);
  1000. info->temp_history_index++;
  1001. info->temp_sum += bitmain->temp;
  1002. applog(LOG_DEBUG, "BitMain: temp_index: %d, temp_count: %d, temp_old: %d",
  1003. info->temp_history_index, info->temp_history_count, info->temp_old);
  1004. if (info->temp_history_index == info->temp_history_count) {
  1005. info->temp_history_index = 0;
  1006. info->temp_sum = 0;
  1007. }
  1008. if (unlikely(info->temp_old >= opt_bitmain_overheat)) {
  1009. applog(LOG_WARNING, "BTM%d overheat! Idling", bitmain->device_id);
  1010. info->overheat = true;
  1011. } else if (info->overheat && info->temp_old <= opt_bitmain_temp) {
  1012. applog(LOG_WARNING, "BTM%d cooled, restarting", bitmain->device_id);
  1013. info->overheat = false;
  1014. }
  1015. }
  1016. extern void cg_logwork_uint32(struct work *work, uint32_t nonce, bool ok);
  1017. static void bitmain_parse_results(struct cgpu_info *bitmain, struct bitmain_info *info,
  1018. struct thr_info *thr, uint8_t *buf, int *offset)
  1019. {
  1020. int i, j, n, m, r, errordiff, spare = BITMAIN_READ_SIZE;
  1021. uint32_t checkbit = 0x00000000;
  1022. bool found = false;
  1023. struct work *work = NULL;
  1024. char * ob_hex = NULL;
  1025. struct bitmain_packet_head packethead;
  1026. int asicnum = 0;
  1027. int idiff = 0;
  1028. int mod = 0,tmp = 0;
  1029. for (i = 0; i <= spare; i++) {
  1030. if(buf[i] == 0xa1) {
  1031. struct bitmain_rxstatus_data rxstatusdata;
  1032. applog(LOG_DEBUG, "bitmain_parse_results RxStatus Data");
  1033. if(*offset < 4) {
  1034. return;
  1035. }
  1036. memcpy(&packethead, buf+i, sizeof(struct bitmain_packet_head));
  1037. packethead.length = htole16(packethead.length);
  1038. if(packethead.length > 1130) {
  1039. applog(LOG_ERR, "bitmain_parse_results bitmain_parse_rxstatus datalen=%d error", packethead.length+4);
  1040. continue;
  1041. }
  1042. if(*offset < packethead.length + 4) {
  1043. return;
  1044. }
  1045. if(bitmain_parse_rxstatus(buf+i, packethead.length+4, &rxstatusdata) != 0) {
  1046. applog(LOG_ERR, "bitmain_parse_results bitmain_parse_rxstatus error len=%d", packethead.length+4);
  1047. } else {
  1048. mutex_lock(&info->qlock);
  1049. info->chain_num = rxstatusdata.chain_num;
  1050. info->fifo_space = rxstatusdata.fifo_space;
  1051. info->hw_version[0] = rxstatusdata.hw_version[0];
  1052. info->hw_version[1] = rxstatusdata.hw_version[1];
  1053. info->hw_version[2] = rxstatusdata.hw_version[2];
  1054. info->hw_version[3] = rxstatusdata.hw_version[3];
  1055. info->nonce_error = rxstatusdata.nonce_error;
  1056. errordiff = info->nonce_error-info->last_nonce_error;
  1057. //sprintf(g_miner_version, "%d.%d.%d.%d", info->hw_version[0], info->hw_version[1], info->hw_version[2], info->hw_version[3]);
  1058. applog(LOG_ERR, "bitmain_parse_results v=%d chain=%d fifo=%d hwv1=%d hwv2=%d hwv3=%d hwv4=%d nerr=%d-%d freq=%d chain info:",
  1059. rxstatusdata.version, info->chain_num, info->fifo_space, info->hw_version[0], info->hw_version[1], info->hw_version[2], info->hw_version[3],
  1060. info->last_nonce_error, info->nonce_error, info->frequency);
  1061. memcpy(info->chain_asic_exist, rxstatusdata.chain_asic_exist, BITMAIN_MAX_CHAIN_NUM*32);
  1062. memcpy(info->chain_asic_status, rxstatusdata.chain_asic_status, BITMAIN_MAX_CHAIN_NUM*32);
  1063. for(n = 0; n < rxstatusdata.chain_num; n++) {
  1064. info->chain_asic_num[n] = rxstatusdata.chain_asic_num[n];
  1065. memset(info->chain_asic_status_t[n], 0, 320);
  1066. j = 0;
  1067. mod = 0;
  1068. if(info->chain_asic_num[n] <= 0) {
  1069. asicnum = 0;
  1070. } else {
  1071. mod = info->chain_asic_num[n] % 32;
  1072. if(mod == 0) {
  1073. asicnum = info->chain_asic_num[n] / 32;
  1074. } else {
  1075. asicnum = info->chain_asic_num[n] / 32 + 1;
  1076. }
  1077. }
  1078. if(asicnum > 0) {
  1079. for(m = asicnum-1; m >= 0; m--) {
  1080. tmp = mod ? (32-mod): 0;
  1081. for(r = tmp;r < 32;r++){
  1082. if((r-tmp)%8 == 0 && (r-tmp) !=0){
  1083. info->chain_asic_status_t[n][j] = ' ';
  1084. j++;
  1085. }
  1086. checkbit = num2bit(r);
  1087. if(rxstatusdata.chain_asic_exist[n*8+m] & checkbit) {
  1088. if(rxstatusdata.chain_asic_status[n*8+m] & checkbit) {
  1089. info->chain_asic_status_t[n][j] = 'o';
  1090. } else {
  1091. info->chain_asic_status_t[n][j] = 'x';
  1092. }
  1093. } else {
  1094. info->chain_asic_status_t[n][j] = '-';
  1095. }
  1096. j++;
  1097. }
  1098. info->chain_asic_status_t[n][j] = ' ';
  1099. j++;
  1100. mod = 0;
  1101. }
  1102. }
  1103. applog(LOG_DEBUG, "bitmain_parse_results chain(%d) asic_num=%d asic_exist=%08x%08x%08x%08x%08x%08x%08x%08x asic_status=%08x%08x%08x%08x%08x%08x%08x%08x",
  1104. n, info->chain_asic_num[n],
  1105. info->chain_asic_exist[n*8+0], info->chain_asic_exist[n*8+1], info->chain_asic_exist[n*8+2], info->chain_asic_exist[n*8+3], info->chain_asic_exist[n*8+4], info->chain_asic_exist[n*8+5], info->chain_asic_exist[n*8+6], info->chain_asic_exist[n*8+7],
  1106. info->chain_asic_status[n*8+0], info->chain_asic_status[n*8+1], info->chain_asic_status[n*8+2], info->chain_asic_status[n*8+3], info->chain_asic_status[n*8+4], info->chain_asic_status[n*8+5], info->chain_asic_status[n*8+6], info->chain_asic_status[n*8+7]);
  1107. applog(LOG_ERR, "bitmain_parse_results chain(%d) asic_num=%d asic_status=%s", n, info->chain_asic_num[n], info->chain_asic_status_t[n]);
  1108. }
  1109. mutex_unlock(&info->qlock);
  1110. if(errordiff > 0) {
  1111. for(j = 0; j < errordiff; j++) {
  1112. bitmain_inc_nvw(info, thr);
  1113. }
  1114. mutex_lock(&info->qlock);
  1115. info->last_nonce_error += errordiff;
  1116. mutex_unlock(&info->qlock);
  1117. }
  1118. bitmain_update_temps(bitmain, info, &rxstatusdata);
  1119. }
  1120. found = true;
  1121. spare = packethead.length + 4 + i;
  1122. if(spare > *offset) {
  1123. applog(LOG_ERR, "bitmain_parse_rxresults space(%d) > offset(%d)", spare, *offset);
  1124. spare = *offset;
  1125. }
  1126. break;
  1127. } else if(buf[i] == 0xa2) {
  1128. struct bitmain_rxnonce_data rxnoncedata;
  1129. int nonce_num = 0;
  1130. applog(LOG_DEBUG, "bitmain_parse_results RxNonce Data");
  1131. if(*offset < 4) {
  1132. return;
  1133. }
  1134. memcpy(&packethead, buf+i, sizeof(struct bitmain_packet_head));
  1135. packethead.length = htole16(packethead.length);
  1136. if(packethead.length > 1030) {
  1137. applog(LOG_ERR, "bitmain_parse_results bitmain_parse_rxnonce datalen=%d error", packethead.length+4);
  1138. continue;
  1139. }
  1140. if(*offset < packethead.length + 4) {
  1141. return;
  1142. }
  1143. if(bitmain_parse_rxnonce(buf+i, packethead.length+4, &rxnoncedata, &nonce_num) != 0) {
  1144. applog(LOG_ERR, "bitmain_parse_results bitmain_parse_rxnonce error len=%d", packethead.length+4);
  1145. } else {
  1146. struct pool * pool = NULL;
  1147. for(j = 0; j < nonce_num; j++) {
  1148. work = clone_queued_work_byid(bitmain, rxnoncedata.nonces[j].work_id);
  1149. if(work) {
  1150. pool = work->pool;
  1151. if(BITMAIN_TEST_PRINT_WORK) {
  1152. applog(LOG_ERR, "bitmain_parse_results nonce find work(%d-%d)(%08x)", work->id, rxnoncedata.nonces[j].work_id, rxnoncedata.nonces[j].nonce);
  1153. ob_hex = bin2hex(work->midstate, 32);
  1154. applog(LOG_ERR, "work %d midstate: %s", work->id, ob_hex);
  1155. free(ob_hex);
  1156. ob_hex = bin2hex(work->data+64, 12);
  1157. applog(LOG_ERR, "work %d data2: %s", work->id, ob_hex);
  1158. free(ob_hex);
  1159. }
  1160. if(work->work_block < info->last_work_block) {
  1161. applog(LOG_ERR, "BitMain: bitmain_parse_rxnonce work(%d) nonce stale", rxnoncedata.nonces[j].work_id);
  1162. } else {
  1163. if (bitmain_decode_nonce(thr, bitmain, info, rxnoncedata.nonces[j].nonce, work)) {
  1164. cg_logwork_uint32(work, rxnoncedata.nonces[j].nonce, true);
  1165. if(opt_bitmain_hwerror) {
  1166. #ifndef BITMAIN_CALC_DIFF1
  1167. mutex_lock(&info->qlock);
  1168. idiff = (int)work->sdiff;
  1169. info->nonces+=idiff;
  1170. info->auto_nonces+=idiff;
  1171. mutex_unlock(&info->qlock);
  1172. inc_work_status(thr, pool, idiff);
  1173. #endif
  1174. } else {
  1175. mutex_lock(&info->qlock);
  1176. info->nonces++;
  1177. info->auto_nonces++;
  1178. mutex_unlock(&info->qlock);
  1179. }
  1180. } else {
  1181. //bitmain_inc_nvw(info, thr);
  1182. applog(LOG_ERR, "BitMain: bitmain_decode_nonce error work(%d)", rxnoncedata.nonces[j].work_id);
  1183. }
  1184. }
  1185. free_work(work);
  1186. } else {
  1187. //bitmain_inc_nvw(info, thr);
  1188. applog(LOG_ERR, "BitMain: Nonce not find work(%d)", rxnoncedata.nonces[j].work_id);
  1189. }
  1190. }
  1191. #ifdef BITMAIN_CALC_DIFF1
  1192. if(opt_bitmain_hwerror) {
  1193. int difftmp = 0;
  1194. difftmp = rxnoncedata.diff;
  1195. idiff = 1;
  1196. while(difftmp > 0) {
  1197. difftmp--;
  1198. idiff = idiff << 1;
  1199. }
  1200. mutex_lock(&info->qlock);
  1201. difftmp = idiff*(rxnoncedata.total_nonce_num-info->total_nonce_num);
  1202. if(difftmp < 0)
  1203. difftmp = 0;
  1204. info->nonces = info->nonces+difftmp;
  1205. info->auto_nonces = info->auto_nonces+difftmp;
  1206. info->total_nonce_num = rxnoncedata.total_nonce_num;
  1207. info->fifo_space = rxnoncedata.fifo_space;
  1208. mutex_unlock(&info->qlock);
  1209. inc_work_stats(thr, pool, difftmp);
  1210. applog(LOG_DEBUG, "bitmain_parse_rxnonce fifo space=%d diff=%d rxtnn=%lld tnn=%lld", info->fifo_space, idiff, rxnoncedata.total_nonce_num, info->total_nonce_num);
  1211. } else {
  1212. mutex_lock(&info->qlock);
  1213. info->fifo_space = rxnoncedata.fifo_space;
  1214. mutex_unlock(&info->qlock);
  1215. applog(LOG_DEBUG, "bitmain_parse_rxnonce fifo space=%d", info->fifo_space);
  1216. }
  1217. #else
  1218. mutex_lock(&info->qlock);
  1219. info->fifo_space = rxnoncedata.fifo_space;
  1220. mutex_unlock(&info->qlock);
  1221. applog(LOG_DEBUG, "bitmain_parse_rxnonce fifo space=%d", info->fifo_space);
  1222. #endif
  1223. #ifndef WIN32
  1224. if(nonce_num < BITMAIN_MAX_NONCE_NUM)
  1225. cgsleep_ms(5);
  1226. #endif
  1227. }
  1228. found = true;
  1229. spare = packethead.length + 4 + i;
  1230. if(spare > *offset) {
  1231. applog(LOG_ERR, "bitmain_parse_rxnonce space(%d) > offset(%d)", spare, *offset);
  1232. spare = *offset;
  1233. }
  1234. break;
  1235. } else {
  1236. applog(LOG_ERR, "bitmain_parse_results data type error=%02x", buf[i]);
  1237. }
  1238. }
  1239. if (!found) {
  1240. spare = *offset - BITMAIN_READ_SIZE;
  1241. /* We are buffering and haven't accumulated one more corrupt
  1242. * work result. */
  1243. if (spare < (int)BITMAIN_READ_SIZE)
  1244. return;
  1245. bitmain_inc_nvw(info, thr);
  1246. }
  1247. *offset -= spare;
  1248. memmove(buf, buf + spare, *offset);
  1249. }
  1250. static void bitmain_running_reset(struct cgpu_info *bitmain, struct bitmain_info *info)
  1251. {
  1252. bitmain->results = 0;
  1253. info->reset = false;
  1254. }
  1255. static void *bitmain_get_results(void *userdata)
  1256. {
  1257. struct cgpu_info *bitmain = (struct cgpu_info *)userdata;
  1258. struct bitmain_info *info = bitmain->device_data;
  1259. int offset = 0, read_delay = 0, ret = 0;
  1260. const int rsize = BITMAIN_FTDI_READSIZE;
  1261. char readbuf[BITMAIN_READBUF_SIZE];
  1262. struct thr_info *thr = info->thr;
  1263. char threadname[24];
  1264. int errorcount = 0;
  1265. snprintf(threadname, 24, "btm_recv/%d", bitmain->device_id);
  1266. RenameThread(threadname);
  1267. while (likely(!bitmain->shutdown)) {
  1268. unsigned char buf[rsize];
  1269. //applog(LOG_DEBUG, "+++++++bitmain_get_results offset=%d", offset);
  1270. if (offset >= (int)BITMAIN_READ_SIZE) {
  1271. //applog(LOG_DEBUG, "======start bitmain_get_results ");
  1272. bitmain_parse_results(bitmain, info, thr, readbuf, &offset);
  1273. //applog(LOG_DEBUG, "======stop bitmain_get_results ");
  1274. }
  1275. if (unlikely(offset + rsize >= BITMAIN_READBUF_SIZE)) {
  1276. /* This should never happen */
  1277. applog(LOG_DEBUG, "BitMain readbuf overflow, resetting buffer");
  1278. offset = 0;
  1279. }
  1280. if (unlikely(info->reset)) {
  1281. bitmain_running_reset(bitmain, info);
  1282. /* Discard anything in the buffer */
  1283. offset = 0;
  1284. }
  1285. /* As the usb read returns after just 1ms, sleep long enough
  1286. * to leave the interface idle for writes to occur, but do not
  1287. * sleep if we have been receiving data as more may be coming. */
  1288. //if (offset == 0) {
  1289. // cgsleep_ms_r(&ts_start, BITMAIN_READ_TIMEOUT);
  1290. //}
  1291. //cgsleep_prepare_r(&ts_start);
  1292. //applog(LOG_DEBUG, "======start bitmain_get_results bitmain_read");
  1293. ret = bitmain_read(bitmain, buf, rsize, BITMAIN_READ_TIMEOUT, C_BITMAIN_READ);
  1294. //applog(LOG_DEBUG, "======stop bitmain_get_results bitmain_read=%d", ret);
  1295. if ((ret < 1) || (ret == 18)) {
  1296. errorcount++;
  1297. #ifdef WIN32
  1298. if(errorcount > 200) {
  1299. //applog(LOG_ERR, "bitmain_read errorcount ret=%d", ret);
  1300. cgsleep_ms(20);
  1301. errorcount = 0;
  1302. }
  1303. #else
  1304. if(errorcount > 3) {
  1305. //applog(LOG_ERR, "bitmain_read errorcount ret=%d", ret);
  1306. cgsleep_ms(20);
  1307. errorcount = 0;
  1308. }
  1309. #endif
  1310. if(ret < 1)
  1311. {
  1312. cgsleep_ms(1); // add by clement : we just wait a little time for RX data...
  1313. continue;
  1314. }
  1315. }
  1316. if (opt_debug) {
  1317. applog(LOG_DEBUG, "BitMain: get:");
  1318. hexdump((uint8_t *)buf, ret);
  1319. }
  1320. memcpy(readbuf+offset, buf, ret);
  1321. offset += ret;
  1322. }
  1323. return NULL;
  1324. }
  1325. static void bitmain_set_timeout(struct bitmain_info *info)
  1326. {
  1327. info->timeout = BITMAIN_TIMEOUT_FACTOR / info->frequency;
  1328. }
  1329. static void *bitmain_send_tasks(void *userdata)
  1330. {
  1331. return NULL;
  1332. }
  1333. static void bitmain_init(struct cgpu_info *bitmain)
  1334. {
  1335. applog(LOG_INFO, "BitMain: Opened on %s", bitmain->device_path);
  1336. }
  1337. static bool bitmain_prepare(struct thr_info *thr)
  1338. {
  1339. struct cgpu_info *bitmain = thr->cgpu;
  1340. struct bitmain_info *info = bitmain->device_data;
  1341. free(bitmain->works);
  1342. bitmain->works = calloc(BITMAIN_MAX_WORK_NUM * sizeof(struct work *),
  1343. BITMAIN_ARRAY_SIZE);
  1344. if (!bitmain->works)
  1345. quit(1, "Failed to calloc bitmain works in bitmain_prepare");
  1346. info->thr = thr;
  1347. mutex_init(&info->lock);
  1348. mutex_init(&info->qlock);
  1349. if (unlikely(pthread_cond_init(&info->qcond, NULL)))
  1350. quit(1, "Failed to pthread_cond_init bitmain qcond");
  1351. cgsem_init(&info->write_sem);
  1352. if (pthread_create(&info->read_thr, NULL, bitmain_get_results, (void *)bitmain))
  1353. quit(1, "Failed to create bitmain read_thr");
  1354. //if (pthread_create(&info->write_thr, NULL, bitmain_send_tasks, (void *)bitmain))
  1355. // quit(1, "Failed to create bitmain write_thr");
  1356. bitmain_init(bitmain);
  1357. return true;
  1358. }
  1359. static int bitmain_initialize(struct cgpu_info *bitmain)
  1360. {
  1361. uint8_t data[BITMAIN_READBUF_SIZE];
  1362. struct bitmain_info *info = NULL;
  1363. int ret = 0, spare = 0;
  1364. uint8_t sendbuf[BITMAIN_SENDBUF_SIZE];
  1365. int readlen = 0;
  1366. int sendlen = 0;
  1367. int trycount = 3;
  1368. struct timespec p;
  1369. struct bitmain_rxstatus_data rxstatusdata;
  1370. int i = 0, j = 0, m = 0, r = 0, statusok = 0;
  1371. uint32_t checkbit = 0x00000000;
  1372. int hwerror_eft = 0;
  1373. int beeper_ctrl = 1;
  1374. int tempover_ctrl = 1;
  1375. int home_mode = 0;
  1376. struct bitmain_packet_head packethead;
  1377. int asicnum = 0;
  1378. int mod = 0,tmp = 0;
  1379. /* Send reset, then check for result */
  1380. if(!bitmain) {
  1381. applog(LOG_WARNING, "bitmain_initialize cgpu_info is null");
  1382. return -1;
  1383. }
  1384. info = bitmain->device_data;
  1385. /* clear read buf */
  1386. ret = bitmain_read(bitmain, data, BITMAIN_READBUF_SIZE,
  1387. BITMAIN_RESET_TIMEOUT, C_BITMAIN_READ);
  1388. if(ret > 0) {
  1389. if (opt_debug) {
  1390. applog(LOG_DEBUG, "BTM%d Clear Read(%d):", bitmain->device_id, ret);
  1391. hexdump(data, ret);
  1392. }
  1393. }
  1394. sendlen = bitmain_set_rxstatus((struct bitmain_rxstatus_token *)sendbuf, 0, 1, 0, 0);
  1395. if(sendlen <= 0) {
  1396. applog(LOG_ERR, "bitmain_initialize bitmain_set_rxstatus error(%d)", sendlen);
  1397. return -1;
  1398. }
  1399. ret = bitmain_send_data(sendbuf, sendlen, bitmain);
  1400. if (unlikely(ret == BTM_SEND_ERROR)) {
  1401. applog(LOG_ERR, "bitmain_initialize bitmain_send_data error");
  1402. return -1;
  1403. }
  1404. while(trycount >= 0) {
  1405. ret = bitmain_read(bitmain, data+readlen, BITMAIN_READBUF_SIZE, BITMAIN_RESET_TIMEOUT, C_BITMAIN_DATA_RXSTATUS);
  1406. if(ret > 0) {
  1407. readlen += ret;
  1408. if(readlen > BITMAIN_READ_SIZE) {
  1409. for(i = 0; i < readlen; i++) {
  1410. if(data[i] == 0xa1) {
  1411. if (opt_debug) {
  1412. applog(LOG_DEBUG, "%s%d initset: get:", bitmain->drv->name, bitmain->device_id);
  1413. hexdump(data, readlen);
  1414. }
  1415. memcpy(&packethead, data+i, sizeof(struct bitmain_packet_head));
  1416. packethead.length = htole16(packethead.length);
  1417. if(packethead.length > 1130) {
  1418. applog(LOG_ERR, "bitmain_initialize rxstatus datalen=%d error", packethead.length+4);
  1419. continue;
  1420. }
  1421. if(readlen-i < packethead.length+4) {
  1422. applog(LOG_ERR, "bitmain_initialize rxstatus datalen=%d<%d low", readlen-i, packethead.length+4);
  1423. continue;
  1424. }
  1425. if (bitmain_parse_rxstatus(data+i, packethead.length+4, &rxstatusdata) != 0) {
  1426. applog(LOG_ERR, "bitmain_initialize bitmain_parse_rxstatus error");
  1427. continue;
  1428. }
  1429. info->chain_num = rxstatusdata.chain_num;
  1430. info->fifo_space = rxstatusdata.fifo_space;
  1431. info->hw_version[0] = rxstatusdata.hw_version[0];
  1432. info->hw_version[1] = rxstatusdata.hw_version[1];
  1433. info->hw_version[2] = rxstatusdata.hw_version[2];
  1434. info->hw_version[3] = rxstatusdata.hw_version[3];
  1435. info->nonce_error = 0;
  1436. info->last_nonce_error = 0;
  1437. sprintf(g_miner_version, "%d.%d.%d.%d", info->hw_version[0], info->hw_version[1], info->hw_version[2], info->hw_version[3]);
  1438. applog(LOG_ERR, "bitmain_initialize rxstatus v(%d) chain(%d) fifo(%d) hwv1(%d) hwv2(%d) hwv3(%d) hwv4(%d) nerr(%d) freq=%d",
  1439. rxstatusdata.version, info->chain_num, info->fifo_space, info->hw_version[0], info->hw_version[1], info->hw_version[2], info->hw_version[3],
  1440. rxstatusdata.nonce_error, info->frequency);
  1441. memcpy(info->chain_asic_exist, rxstatusdata.chain_asic_exist, BITMAIN_MAX_CHAIN_NUM*32);
  1442. memcpy(info->chain_asic_status, rxstatusdata.chain_asic_status, BITMAIN_MAX_CHAIN_NUM*32);
  1443. for(i = 0; i < rxstatusdata.chain_num; i++) {
  1444. info->chain_asic_num[i] = rxstatusdata.chain_asic_num[i];
  1445. memset(info->chain_asic_status_t[i], 0, 320);
  1446. j = 0;
  1447. mod = 0;
  1448. if(info->chain_asic_num[i] <= 0) {
  1449. asicnum = 0;
  1450. } else {
  1451. mod = info->chain_asic_num[i] % 32;
  1452. if(mod == 0) {
  1453. asicnum = info->chain_asic_num[i] / 32;
  1454. } else {
  1455. asicnum = info->chain_asic_num[i] / 32 + 1;
  1456. }
  1457. }
  1458. if(asicnum > 0) {
  1459. for(m = asicnum-1; m >= 0; m--) {
  1460. tmp = mod ? (32-mod):0;
  1461. for(r = tmp;r < 32;r++){
  1462. if((r-tmp)%8 == 0 && (r-tmp) !=0){
  1463. info->chain_asic_status_t[i][j] = ' ';
  1464. j++;
  1465. }
  1466. checkbit = num2bit(r);
  1467. if(rxstatusdata.chain_asic_exist[i*8+m] & checkbit) {
  1468. if(rxstatusdata.chain_asic_status[i*8+m] & checkbit) {
  1469. info->chain_asic_status_t[i][j] = 'o';
  1470. } else {
  1471. info->chain_asic_status_t[i][j] = 'x';
  1472. }
  1473. } else {
  1474. info->chain_asic_status_t[i][j] = '-';
  1475. }
  1476. j++;
  1477. }
  1478. info->chain_asic_status_t[i][j] = ' ';
  1479. j++;
  1480. mod = 0;
  1481. }
  1482. }
  1483. applog(LOG_DEBUG, "bitmain_initialize chain(%d) asic_num=%d asic_exist=%08x%08x%08x%08x%08x%08x%08x%08x asic_status=%08x%08x%08x%08x%08x%08x%08x%08x",
  1484. i, info->chain_asic_num[i],
  1485. info->chain_asic_exist[i*8+0], info->chain_asic_exist[i*8+1], info->chain_asic_exist[i*8+2], info->chain_asic_exist[i*8+3], info->chain_asic_exist[i*8+4], info->chain_asic_exist[i*8+5], info->chain_asic_exist[i*8+6], info->chain_asic_exist[i*8+7],
  1486. info->chain_asic_status[i*8+0], info->chain_asic_status[i*8+1], info->chain_asic_status[i*8+2], info->chain_asic_status[i*8+3], info->chain_asic_status[i*8+4], info->chain_asic_status[i*8+5], info->chain_asic_status[i*8+6], info->chain_asic_status[i*8+7]);
  1487. applog(LOG_ERR, "bitmain_initialize chain(%d) asic_num=%d asic_status=%s", i, info->chain_asic_num[i], info->chain_asic_status_t[i]);
  1488. }
  1489. bitmain_update_temps(bitmain, info, &rxstatusdata);
  1490. statusok = 1;
  1491. break;
  1492. }
  1493. }
  1494. if(statusok) {
  1495. break;
  1496. }
  1497. }
  1498. }
  1499. trycount--;
  1500. p.tv_sec = 0;
  1501. p.tv_nsec = BITMAIN_RESET_PITCH;
  1502. nanosleep(&p, NULL);
  1503. }
  1504. p.tv_sec = 0;
  1505. p.tv_nsec = BITMAIN_RESET_PITCH;
  1506. nanosleep(&p, NULL);
  1507. cgtime(&info->last_status_time);
  1508. if(statusok) {
  1509. applog(LOG_ERR, "bitmain_initialize start send txconfig");
  1510. if(opt_bitmain_hwerror)
  1511. hwerror_eft = 1;
  1512. else
  1513. hwerror_eft = 0;
  1514. if(opt_bitmain_nobeeper)
  1515. beeper_ctrl = 0;
  1516. else
  1517. beeper_ctrl = 1;
  1518. if(opt_bitmain_notempoverctrl)
  1519. tempover_ctrl = 0;
  1520. else
  1521. tempover_ctrl = 1;
  1522. if(opt_bitmain_homemode)
  1523. home_mode= 1;
  1524. else
  1525. home_mode= 0;
  1526. sendlen = bitmain_set_txconfig((struct bitmain_txconfig_token *)sendbuf, 1, 1, 1, 1, 1, 0, 1, hwerror_eft, beeper_ctrl, tempover_ctrl,home_mode,
  1527. info->chain_num, info->asic_num, BITMAIN_DEFAULT_FAN_MAX_PWM, info->timeout,
  1528. info->frequency, info->voltage, 0, 0, 0x04, info->reg_data);
  1529. if(sendlen <= 0) {
  1530. applog(LOG_ERR, "bitmain_initialize bitmain_set_txconfig error(%d)", sendlen);
  1531. return -1;
  1532. }
  1533. ret = bitmain_send_data(sendbuf, sendlen, bitmain);
  1534. if (unlikely(ret == BTM_SEND_ERROR)) {
  1535. applog(LOG_ERR, "bitmain_initialize bitmain_send_data error");
  1536. return -1;
  1537. }
  1538. applog(LOG_WARNING, "BMM%d: InitSet succeeded", bitmain->device_id);
  1539. } else {
  1540. applog(LOG_WARNING, "BMS%d: InitSet error", bitmain->device_id);
  1541. return -1;
  1542. }
  1543. return 0;
  1544. }
  1545. static void bitmain_usb_init(struct cgpu_info *bitmain)
  1546. {
  1547. int err, interface;
  1548. #ifndef WIN32
  1549. return;
  1550. #endif
  1551. if (bitmain->usbinfo.nodev)
  1552. return;
  1553. interface = usb_interface(bitmain);
  1554. // Reset
  1555. err = usb_transfer(bitmain, FTDI_TYPE_OUT, FTDI_REQUEST_RESET,
  1556. FTDI_VALUE_RESET, interface, C_RESET);
  1557. applog(LOG_DEBUG, "%s%i: reset got err %d",
  1558. bitmain->drv->name, bitmain->device_id, err);
  1559. if (bitmain->usbinfo.nodev)
  1560. return;
  1561. // Set latency
  1562. err = usb_transfer(bitmain, FTDI_TYPE_OUT, FTDI_REQUEST_LATENCY,
  1563. BITMAIN_LATENCY, interface, C_LATENCY);
  1564. applog(LOG_DEBUG, "%s%i: latency got err %d",
  1565. bitmain->drv->name, bitmain->device_id, err);
  1566. if (bitmain->usbinfo.nodev)
  1567. return;
  1568. // Set data
  1569. err = usb_transfer(bitmain, FTDI_TYPE_OUT, FTDI_REQUEST_DATA,
  1570. FTDI_VALUE_DATA_BTM, interface, C_SETDATA);
  1571. applog(LOG_DEBUG, "%s%i: data got err %d",
  1572. bitmain->drv->name, bitmain->device_id, err);
  1573. if (bitmain->usbinfo.nodev)
  1574. return;
  1575. // Set the baud
  1576. err = usb_transfer(bitmain, FTDI_TYPE_OUT, FTDI_REQUEST_BAUD, FTDI_VALUE_BAUD_BTM,
  1577. (FTDI_INDEX_BAUD_BTM & 0xff00) | interface,
  1578. C_SETBAUD);
  1579. applog(LOG_DEBUG, "%s%i: setbaud got err %d",
  1580. bitmain->drv->name, bitmain->device_id, err);
  1581. if (bitmain->usbinfo.nodev)
  1582. return;
  1583. // Set Modem Control
  1584. err = usb_transfer(bitmain, FTDI_TYPE_OUT, FTDI_REQUEST_MODEM,
  1585. FTDI_VALUE_MODEM, interface, C_SETMODEM);
  1586. applog(LOG_DEBUG, "%s%i: setmodemctrl got err %d",
  1587. bitmain->drv->name, bitmain->device_id, err);
  1588. if (bitmain->usbinfo.nodev)
  1589. return;
  1590. // Set Flow Control
  1591. err = usb_transfer(bitmain, FTDI_TYPE_OUT, FTDI_REQUEST_FLOW,
  1592. FTDI_VALUE_FLOW, interface, C_SETFLOW);
  1593. applog(LOG_DEBUG, "%s%i: setflowctrl got err %d",
  1594. bitmain->drv->name, bitmain->device_id, err);
  1595. if (bitmain->usbinfo.nodev)
  1596. return;
  1597. /* BitMain repeats the following */
  1598. // Set Modem Control
  1599. err = usb_transfer(bitmain, FTDI_TYPE_OUT, FTDI_REQUEST_MODEM,
  1600. FTDI_VALUE_MODEM, interface, C_SETMODEM);
  1601. applog(LOG_DEBUG, "%s%i: setmodemctrl 2 got err %d",
  1602. bitmain->drv->name, bitmain->device_id, err);
  1603. if (bitmain->usbinfo.nodev)
  1604. return;
  1605. // Set Flow Control
  1606. err = usb_transfer(bitmain, FTDI_TYPE_OUT, FTDI_REQUEST_FLOW,
  1607. FTDI_VALUE_FLOW, interface, C_SETFLOW);
  1608. applog(LOG_DEBUG, "%s%i: setflowctrl 2 got err %d",
  1609. bitmain->drv->name, bitmain->device_id, err);
  1610. }
  1611. static struct cgpu_info * bitmain_usb_detect_one(libusb_device *dev, struct usb_find_devices *found)
  1612. {
  1613. int baud, chain_num, asic_num, timeout, frequency = 0;
  1614. char frequency_t[256] = {0};
  1615. uint8_t reg_data[4] = {0};
  1616. uint8_t voltage[2] = {0};
  1617. char voltage_t[8] = {0};
  1618. int this_option_offset = ++option_offset;
  1619. struct bitmain_info *info;
  1620. struct cgpu_info *bitmain;
  1621. bool configured;
  1622. int ret;
  1623. if (opt_bitmain_options == NULL)
  1624. return NULL;
  1625. bitmain = usb_alloc_cgpu(&bitmain_drv, BITMAIN_MINER_THREADS);
  1626. baud = BITMAIN_IO_SPEED;
  1627. chain_num = BITMAIN_DEFAULT_CHAIN_NUM;
  1628. asic_num = BITMAIN_DEFAULT_ASIC_NUM;
  1629. timeout = BITMAIN_DEFAULT_TIMEOUT;
  1630. frequency = BITMAIN_DEFAULT_FREQUENCY;
  1631. if (!usb_init(bitmain, dev, found))
  1632. goto shin;
  1633. configured = get_options(this_option_offset, &baud, &chain_num,
  1634. &asic_num, &timeout, &frequency, frequency_t, reg_data, voltage, voltage_t);
  1635. get_option_freq(&timeout, &frequency, frequency_t, reg_data);
  1636. get_option_voltage(voltage, voltage_t);
  1637. /* Even though this is an FTDI type chip, we want to do the parsing
  1638. * all ourselves so set it to std usb type */
  1639. bitmain->usbdev->usb_type = USB_TYPE_STD;
  1640. /* We have a real BitMain! */
  1641. bitmain_usb_init(bitmain);
  1642. bitmain->device_data = calloc(sizeof(struct bitmain_info), 1);
  1643. if (unlikely(!(bitmain->device_data)))
  1644. quit(1, "Failed to calloc bitmain_info data");
  1645. info = bitmain->device_data;
  1646. if (configured) {
  1647. info->baud = baud;
  1648. info->chain_num = chain_num;
  1649. info->asic_num = asic_num;
  1650. info->timeout = timeout;
  1651. info->frequency = frequency;
  1652. strcpy(info->frequency_t, frequency_t);
  1653. memcpy(info->reg_data, reg_data, 4);
  1654. memcpy(info->voltage, voltage, 2);
  1655. strcpy(info->voltage_t, voltage_t);
  1656. } else {
  1657. info->baud = BITMAIN_IO_SPEED;
  1658. info->chain_num = BITMAIN_DEFAULT_CHAIN_NUM;
  1659. info->asic_num = BITMAIN_DEFAULT_ASIC_NUM;
  1660. info->timeout = BITMAIN_DEFAULT_TIMEOUT;
  1661. info->frequency = BITMAIN_DEFAULT_FREQUENCY;
  1662. sprintf(info->frequency_t, "%d", BITMAIN_DEFAULT_FREQUENCY);
  1663. memset(info->reg_data, 0, 4);
  1664. info->voltage[0] = BITMAIN_DEFAULT_VOLTAGE0;
  1665. info->voltage[1] = BITMAIN_DEFAULT_VOLTAGE1;
  1666. strcpy(info->voltage_t, BITMAIN_DEFAULT_VOLTAGE_T);
  1667. }
  1668. info->fan_pwm = BITMAIN_DEFAULT_FAN_MIN_PWM;
  1669. info->temp_max = 0;
  1670. /* This is for check the temp/fan every 3~4s */
  1671. info->temp_history_count = (4 / (float)((float)info->timeout * ((float)1.67/0x32))) + 1;
  1672. if (info->temp_history_count <= 0)
  1673. info->temp_history_count = 1;
  1674. info->temp_history_index = 0;
  1675. info->temp_sum = 0;
  1676. info->temp_old = 0;
  1677. if (!add_cgpu(bitmain))
  1678. goto unshin;
  1679. applog(LOG_ERR, "------bitmain usb detect one------");
  1680. ret = bitmain_initialize(bitmain);
  1681. if (ret && !configured)
  1682. goto unshin;
  1683. update_usb_stats(bitmain);
  1684. info->errorcount = 0;
  1685. applog(LOG_DEBUG, "BitMain Detected: %s "
  1686. "(chain_num=%d asic_num=%d timeout=%d frequency=%d)",
  1687. bitmain->device_path, info->chain_num, info->asic_num, info->timeout,
  1688. info->frequency);
  1689. return bitmain;
  1690. unshin:
  1691. usb_uninit(bitmain);
  1692. shin:
  1693. free(bitmain->device_data);
  1694. bitmain->device_data = NULL;
  1695. bitmain = usb_free_cgpu(bitmain);
  1696. return NULL;
  1697. }
  1698. static bool bitmain_detect_one(const char * devpath)
  1699. {
  1700. int baud, chain_num, asic_num, timeout, frequency = 0;
  1701. char frequency_t[256] = {0};
  1702. uint8_t reg_data[4] = {0};
  1703. uint8_t voltage[2] = {0};
  1704. char voltage_t[8] = {0};
  1705. int this_option_offset = ++option_offset;
  1706. struct bitmain_info *info;
  1707. struct cgpu_info *bitmain;
  1708. bool configured;
  1709. int ret;
  1710. if (opt_bitmain_options == NULL)
  1711. return false;
  1712. bitmain = btm_alloc_cgpu(&bitmain_drv, BITMAIN_MINER_THREADS);
  1713. configured = get_options(this_option_offset, &baud, &chain_num,
  1714. &asic_num, &timeout, &frequency, frequency_t, reg_data, voltage, voltage_t);
  1715. get_option_freq(&timeout, &frequency, frequency_t, reg_data);
  1716. get_option_voltage(voltage, voltage_t);
  1717. if (!btm_init(bitmain, opt_bitmain_dev))
  1718. goto shin;
  1719. applog(LOG_ERR, "bitmain_detect_one btm init ok");
  1720. bitmain->device_data = calloc(sizeof(struct bitmain_info), 1);
  1721. /* make sure initialize successfully*/
  1722. memset(bitmain->device_data,0,sizeof(struct bitmain_info));
  1723. if (unlikely(!(bitmain->device_data)))
  1724. quit(1, "Failed to calloc bitmain_info data");
  1725. info = bitmain->device_data;
  1726. if (configured) {
  1727. info->baud = baud;
  1728. info->chain_num = chain_num;
  1729. info->asic_num = asic_num;
  1730. info->timeout = timeout;
  1731. info->frequency = frequency;
  1732. strcpy(info->frequency_t, frequency_t);
  1733. memcpy(info->reg_data, reg_data, 4);
  1734. memcpy(info->voltage, voltage, 2);
  1735. strcpy(info->voltage_t, voltage_t);
  1736. } else {
  1737. info->baud = BITMAIN_IO_SPEED;
  1738. info->chain_num = BITMAIN_DEFAULT_CHAIN_NUM;
  1739. info->asic_num = BITMAIN_DEFAULT_ASIC_NUM;
  1740. info->timeout = BITMAIN_DEFAULT_TIMEOUT;
  1741. info->frequency = BITMAIN_DEFAULT_FREQUENCY;
  1742. sprintf(info->frequency_t, "%d", BITMAIN_DEFAULT_FREQUENCY);
  1743. memset(info->reg_data, 0, 4);
  1744. info->voltage[0] = BITMAIN_DEFAULT_VOLTAGE0;
  1745. info->voltage[1] = BITMAIN_DEFAULT_VOLTAGE1;
  1746. strcpy(info->voltage_t, BITMAIN_DEFAULT_VOLTAGE_T);
  1747. }
  1748. info->fan_pwm = BITMAIN_DEFAULT_FAN_MIN_PWM;
  1749. info->temp_max = 0;
  1750. /* This is for check the temp/fan every 3~4s */
  1751. info->temp_history_count = (4 / (float)((float)info->timeout * ((float)1.67/0x32))) + 1;
  1752. if (info->temp_history_count <= 0)
  1753. info->temp_history_count = 1;
  1754. info->temp_history_index = 0;
  1755. info->temp_sum = 0;
  1756. info->temp_old = 0;
  1757. if (!add_cgpu(bitmain))
  1758. goto unshin;
  1759. ret = bitmain_initialize(bitmain);
  1760. applog(LOG_ERR, "bitmain_detect_one stop bitmain_initialize %d", ret);
  1761. if (ret && !configured)
  1762. goto unshin;
  1763. info->errorcount = 0;
  1764. applog(LOG_ERR, "BitMain Detected: %s "
  1765. "(chain_num=%d asic_num=%d timeout=%d freq=%d-%s volt=%02x%02x-%s)",
  1766. bitmain->device_path, info->chain_num, info->asic_num, info->timeout,
  1767. info->frequency, info->frequency_t, info->voltage[0], info->voltage[1], info->voltage_t);
  1768. return true;
  1769. unshin:
  1770. btm_uninit(bitmain);
  1771. shin:
  1772. free(bitmain->device_data);
  1773. bitmain->device_data = NULL;
  1774. bitmain = usb_free_cgpu(bitmain);
  1775. return false;
  1776. }
  1777. static void bitmain_detect(bool __maybe_unused hotplug)
  1778. {
  1779. applog(LOG_DEBUG, "BTM detect dev: %s", opt_bitmain_dev);
  1780. if(strlen(opt_bitmain_dev) <= 0) {
  1781. opt_bitmain_dev_usb = true;
  1782. } else {
  1783. opt_bitmain_dev_usb = false;
  1784. }
  1785. if(opt_bitmain_dev_usb) {
  1786. usb_detect(&bitmain_drv, bitmain_usb_detect_one);
  1787. } else {
  1788. btm_detect(&bitmain_drv, bitmain_detect_one);
  1789. }
  1790. }
  1791. static void do_bitmain_close(struct thr_info *thr)
  1792. {
  1793. struct cgpu_info *bitmain = thr->cgpu;
  1794. struct bitmain_info *info = bitmain->device_data;
  1795. pthread_join(info->read_thr, NULL);
  1796. pthread_join(info->write_thr, NULL);
  1797. bitmain_running_reset(bitmain, info);
  1798. info->no_matching_work = 0;
  1799. cgsem_destroy(&info->write_sem);
  1800. }
  1801. static void get_bitmain_statline_before(char *buf, size_t bufsiz, struct cgpu_info *bitmain)
  1802. {
  1803. struct bitmain_info *info = bitmain->device_data;
  1804. int lowfan = 10000;
  1805. int i = 0;
  1806. /* Find the lowest fan speed of the ASIC cooling fans. */
  1807. for(i = 0; i < info->fan_num; i++) {
  1808. if (info->fan[i] >= 0 && info->fan[i] < lowfan)
  1809. lowfan = info->fan[i];
  1810. }
  1811. tailsprintf(buf, bufsiz, "%2d/%3dC %04dR | ", info->temp_avg, info->temp_max, lowfan);
  1812. }
  1813. /* We use a replacement algorithm to only remove references to work done from
  1814. * the buffer when we need the extra space for new work. */
  1815. static bool bitmain_fill(struct cgpu_info *bitmain)
  1816. {
  1817. struct bitmain_info *info = bitmain->device_data;
  1818. int subid, slot;
  1819. struct work *work;
  1820. bool ret = true;
  1821. int sendret = 0, sendcount = 0, neednum = 0, queuednum = 0, sendnum = 0, sendlen = 0;
  1822. uint8_t sendbuf[BITMAIN_SENDBUF_SIZE];
  1823. cgtimer_t ts_start;
  1824. int senderror = 0;
  1825. struct timeval now;
  1826. int timediff = 0;
  1827. int needwait=0; // add by clement. use a flag to indicate need sleep or not.
  1828. //applog(LOG_DEBUG, "BTM bitmain_fill start--------");
  1829. mutex_lock(&info->qlock);
  1830. if(info->fifo_space <= 0) {
  1831. //applog(LOG_DEBUG, "BTM bitmain_fill fifo space empty--------");
  1832. ret = true;
  1833. needwait=1; // add by clement. DEVICE FIFO is full, no space for new works. So we need sleep.
  1834. goto out_unlock;
  1835. }
  1836. if (bitmain->queued >= BITMAIN_MAX_WORK_QUEUE_NUM) {
  1837. ret = true;
  1838. } else {
  1839. ret = false;
  1840. }
  1841. while(info->fifo_space > 0) {
  1842. neednum = info->fifo_space<BITMAIN_MAX_WORK_NUM?info->fifo_space:BITMAIN_MAX_WORK_NUM;
  1843. queuednum = bitmain->queued;
  1844. applog(LOG_DEBUG, "BTM: Work task queued(%d) fifo space(%d) needsend(%d)", queuednum, info->fifo_space, neednum);
  1845. if(queuednum < neednum) {
  1846. while(true) {
  1847. work = get_queued(bitmain);
  1848. if (unlikely(!work)) {
  1849. break;
  1850. } else {
  1851. applog(LOG_DEBUG, "BTM get work queued number:%d neednum:%d", queuednum, neednum);
  1852. subid = bitmain->queued++;
  1853. work->subid = subid;
  1854. slot = bitmain->work_array + subid;
  1855. if (slot >= BITMAIN_ARRAY_SIZE) { // slot=edited by clement , old code is if (slot > BITMAIN_ARRAY_SIZE), not sure ,just fixed it.
  1856. applog(LOG_DEBUG, "bitmain_fill array cyc %d", BITMAIN_ARRAY_SIZE);
  1857. slot = 0;
  1858. }
  1859. if (likely(bitmain->works[slot])) {
  1860. applog(LOG_DEBUG, "bitmain_fill work_completed %d", slot);
  1861. work_completed(bitmain, bitmain->works[slot]);
  1862. }
  1863. bitmain->works[slot] = work;
  1864. queuednum++;
  1865. if(queuednum >= neednum) {
  1866. break;
  1867. }
  1868. }
  1869. }
  1870. }
  1871. if(queuednum < BITMAIN_MAX_DEAL_QUEUE_NUM) {
  1872. /* by clement
  1873. if(queuednum < neednum) {
  1874. applog(LOG_DEBUG, "BTM: No enough work to send, queue num=%d", queuednum);
  1875. break;
  1876. }
  1877. */
  1878. needwait=1; // if queuednum is not enough, we just wait and sleep. queuednum must be >= BITMAIN_MAX_DEAL_QUEUE_NUM, then send to device
  1879. break;
  1880. }
  1881. sendnum = queuednum < neednum ? queuednum : neednum;
  1882. sendlen = bitmain_set_txtask(sendbuf, &(info->last_work_block), bitmain->works, BITMAIN_ARRAY_SIZE, bitmain->work_array, sendnum, &sendcount);
  1883. bitmain->queued -= sendnum;
  1884. info->send_full_space += sendnum;
  1885. if (bitmain->queued < 0)
  1886. bitmain->queued = 0;
  1887. if (bitmain->work_array + sendnum > BITMAIN_ARRAY_SIZE) {
  1888. bitmain->work_array = bitmain->work_array + sendnum-BITMAIN_ARRAY_SIZE;
  1889. } else {
  1890. bitmain->work_array += sendnum;
  1891. }
  1892. applog(LOG_DEBUG, "BTM: Send work array %d", bitmain->work_array);
  1893. if (sendlen > 0) {
  1894. info->fifo_space -= sendcount;
  1895. if (info->fifo_space < 0)
  1896. info->fifo_space = 0;
  1897. sendret = bitmain_send_data(sendbuf, sendlen, bitmain);
  1898. if (unlikely(sendret == BTM_SEND_ERROR)) {
  1899. applog(LOG_ERR, "BTM%i: Comms error(buffer)", bitmain->device_id);
  1900. //dev_error(bitmain, REASON_DEV_COMMS_ERROR);
  1901. info->reset = true;
  1902. info->errorcount++;
  1903. senderror = 1;
  1904. if (info->errorcount > 1000) {
  1905. info->errorcount = 0;
  1906. applog(LOG_ERR, "%s%d: Device disappeared, shutting down thread", bitmain->drv->name, bitmain->device_id);
  1907. bitmain->shutdown = true;
  1908. }
  1909. break;
  1910. } else {
  1911. applog(LOG_DEBUG, "bitmain_send_data send ret=%d", sendret);
  1912. info->errorcount = 0;
  1913. }
  1914. } else {
  1915. applog(LOG_DEBUG, "BTM: Send work bitmain_set_txtask error: %d", sendlen);
  1916. break;
  1917. }
  1918. }
  1919. out_unlock:
  1920. cgtime(&now);
  1921. timediff = now.tv_sec - info->last_status_time.tv_sec;
  1922. if(timediff < 0) timediff = -timediff;
  1923. if (timediff > BITMAIN_SEND_STATUS_TIME) {
  1924. applog(LOG_DEBUG, "BTM: Send RX Status Token fifo_space(%d) timediff(%d)", info->fifo_space, timediff);
  1925. copy_time(&(info->last_status_time), &now);
  1926. sendlen = bitmain_set_rxstatus((struct bitmain_rxstatus_token *) sendbuf, 0, 0, 0, 0);
  1927. if (sendlen > 0) {
  1928. sendret = bitmain_send_data(sendbuf, sendlen, bitmain);
  1929. if (unlikely(sendret == BTM_SEND_ERROR)) {
  1930. applog(LOG_ERR, "BTM%i: Comms error(buffer)", bitmain->device_id);
  1931. //dev_error(bitmain, REASON_DEV_COMMS_ERROR);
  1932. info->reset = true;
  1933. info->errorcount++;
  1934. senderror = 1;
  1935. if (info->errorcount > 1000) {
  1936. info->errorcount = 0;
  1937. applog(LOG_ERR, "%s%d: Device disappeared, shutting down thread", bitmain->drv->name, bitmain->device_id);
  1938. bitmain->shutdown = true;
  1939. }
  1940. } else {
  1941. info->errorcount = 0;
  1942. if (info->fifo_space <= 0) {
  1943. senderror = 1;
  1944. }
  1945. }
  1946. }
  1947. }
  1948. if(info->send_full_space > BITMAIN_SEND_FULL_SPACE) {
  1949. info->send_full_space = 0;
  1950. mutex_unlock(&info->qlock); // add by clement. we need unlock first, then sleep. So we can let other thread run as soon as possible.
  1951. ret = true;
  1952. cgsleep_ms(1); // just sleep a liitle.
  1953. }
  1954. else
  1955. {
  1956. mutex_unlock(&info->qlock); // add by clement. we need unlock first, then sleep. So we can let other thread run as soon as possible.
  1957. if(needwait)
  1958. cgsleep_ms(1); // add by clement. if there is no work on queue, we need wait for a little time. Or this thread will hold CPU near 99%.
  1959. // In fact, we need more time in gen_hash thread!!!
  1960. }
  1961. if(senderror) {
  1962. ret = true;
  1963. applog(LOG_DEBUG, "bitmain_fill send task sleep");
  1964. //cgsleep_ms(1);
  1965. }
  1966. return ret;
  1967. }
  1968. static int64_t bitmain_scanhash(struct thr_info *thr)
  1969. {
  1970. struct cgpu_info *bitmain = thr->cgpu;
  1971. struct bitmain_info *info = bitmain->device_data;
  1972. const int chain_num = info->chain_num;
  1973. struct timeval now, then, tdiff;
  1974. int64_t hash_count, us_timeout;
  1975. struct timespec abstime;
  1976. int ret;
  1977. /* Half nonce range */
  1978. us_timeout = 0x80000000ll / info->asic_num / info->frequency;
  1979. tdiff.tv_sec = us_timeout / 1000000;
  1980. tdiff.tv_usec = us_timeout - (tdiff.tv_sec * 1000000);
  1981. cgtime(&now);
  1982. timeradd(&now, &tdiff, &then);
  1983. abstime.tv_sec = then.tv_sec;
  1984. abstime.tv_nsec = then.tv_usec * 1000;
  1985. //applog(LOG_DEBUG, "bitmain_scanhash info->qlock start");
  1986. mutex_lock(&info->qlock);
  1987. hash_count = 0xffffffffull * (uint64_t)info->nonces;
  1988. bitmain->results += info->nonces + info->idle;
  1989. if (bitmain->results > chain_num)
  1990. bitmain->results = chain_num;
  1991. if (!info->reset)
  1992. bitmain->results--;
  1993. info->nonces = info->idle = 0;
  1994. mutex_unlock(&info->qlock);
  1995. //applog(LOG_DEBUG, "bitmain_scanhash info->qlock stop");
  1996. /* Check for nothing but consecutive bad results or consistently less
  1997. * results than we should be getting and reset the FPGA if necessary */
  1998. //if (bitmain->results < -chain_num && !info->reset) {
  1999. // applog(LOG_ERR, "BTM%d: Result return rate low, resetting!",
  2000. // bitmain->device_id);
  2001. // info->reset = true;
  2002. //}
  2003. if (unlikely(bitmain->usbinfo.nodev)) {
  2004. applog(LOG_ERR, "BTM%d: Device disappeared, shutting down thread",
  2005. bitmain->device_id);
  2006. bitmain->shutdown = true;
  2007. }
  2008. /* This hashmeter is just a utility counter based on returned shares */
  2009. return hash_count;
  2010. }
  2011. static void bitmain_flush_work(struct cgpu_info *bitmain)
  2012. {
  2013. struct bitmain_info *info = bitmain->device_data;
  2014. int i = 0;
  2015. mutex_lock(&info->qlock);
  2016. /* Will overwrite any work queued */
  2017. applog(LOG_ERR, "bitmain_flush_work queued=%d array=%d", bitmain->queued, bitmain->work_array);
  2018. if(bitmain->queued > 0) {
  2019. if (bitmain->work_array + bitmain->queued > BITMAIN_ARRAY_SIZE) {
  2020. bitmain->work_array = bitmain->work_array + bitmain->queued-BITMAIN_ARRAY_SIZE;
  2021. } else {
  2022. bitmain->work_array += bitmain->queued;
  2023. }
  2024. }
  2025. bitmain->queued = 0;
  2026. //bitmain->work_array = 0;
  2027. //for(i = 0; i < BITMAIN_ARRAY_SIZE; i++) {
  2028. // bitmain->works[i] = NULL;
  2029. //}
  2030. //pthread_cond_signal(&info->qcond);
  2031. mutex_unlock(&info->qlock);
  2032. }
  2033. static struct api_data *bitmain_api_stats(struct cgpu_info *cgpu)
  2034. {
  2035. struct api_data *root = NULL;
  2036. struct bitmain_info *info = cgpu->device_data;
  2037. char buf[64];
  2038. int i = 0;
  2039. double hwp = (cgpu->hw_errors + cgpu->diff1) ?
  2040. (double)(cgpu->hw_errors) / (double)(cgpu->hw_errors + cgpu->diff1) : 0;
  2041. root = api_add_int(root, "baud", &(info->baud), false);
  2042. root = api_add_int(root, "miner_count", &(info->chain_num), false);
  2043. root = api_add_int(root, "asic_count", &(info->asic_num), false);
  2044. root = api_add_int(root, "timeout", &(info->timeout), false);
  2045. root = api_add_string(root, "frequency", info->frequency_t, false);
  2046. root = api_add_string(root, "voltage", info->voltage_t, false);
  2047. root = api_add_int(root, "hwv1", &(info->hw_version[0]), false);
  2048. root = api_add_int(root, "hwv2", &(info->hw_version[1]), false);
  2049. root = api_add_int(root, "hwv3", &(info->hw_version[2]), false);
  2050. root = api_add_int(root, "hwv4", &(info->hw_version[3]), false);
  2051. root = api_add_int(root, "fan_num", &(info->fan_num), false);
  2052. root = api_add_int(root, "fan1", &(info->fan[0]), false);
  2053. root = api_add_int(root, "fan2", &(info->fan[1]), false);
  2054. root = api_add_int(root, "fan3", &(info->fan[2]), false);
  2055. root = api_add_int(root, "fan4", &(info->fan[3]), false);
  2056. root = api_add_int(root, "fan5", &(info->fan[4]), false);
  2057. root = api_add_int(root, "fan6", &(info->fan[5]), false);
  2058. root = api_add_int(root, "fan7", &(info->fan[6]), false);
  2059. root = api_add_int(root, "fan8", &(info->fan[7]), false);
  2060. root = api_add_int(root, "fan9", &(info->fan[8]), false);
  2061. root = api_add_int(root, "fan10", &(info->fan[9]), false);
  2062. root = api_add_int(root, "fan11", &(info->fan[10]), false);
  2063. root = api_add_int(root, "fan12", &(info->fan[11]), false);
  2064. root = api_add_int(root, "fan13", &(info->fan[12]), false);
  2065. root = api_add_int(root, "fan14", &(info->fan[13]), false);
  2066. root = api_add_int(root, "fan15", &(info->fan[14]), false);
  2067. root = api_add_int(root, "fan16", &(info->fan[15]), false);
  2068. root = api_add_int(root, "temp_num", &(info->temp_num), false);
  2069. root = api_add_int(root, "temp1", &(info->temp[0]), false);
  2070. root = api_add_int(root, "temp2", &(info->temp[1]), false);
  2071. root = api_add_int(root, "temp3", &(info->temp[2]), false);
  2072. root = api_add_int(root, "temp4", &(info->temp[3]), false);
  2073. root = api_add_int(root, "temp5", &(info->temp[4]), false);
  2074. root = api_add_int(root, "temp6", &(info->temp[5]), false);
  2075. root = api_add_int(root, "temp7", &(info->temp[6]), false);
  2076. root = api_add_int(root, "temp8", &(info->temp[7]), false);
  2077. root = api_add_int(root, "temp9", &(info->temp[8]), false);
  2078. root = api_add_int(root, "temp10", &(info->temp[9]), false);
  2079. root = api_add_int(root, "temp11", &(info->temp[10]), false);
  2080. root = api_add_int(root, "temp12", &(info->temp[11]), false);
  2081. root = api_add_int(root, "temp13", &(info->temp[12]), false);
  2082. root = api_add_int(root, "temp14", &(info->temp[13]), false);
  2083. root = api_add_int(root, "temp15", &(info->temp[14]), false);
  2084. root = api_add_int(root, "temp16", &(info->temp[15]), false);
  2085. root = api_add_int(root, "temp_avg", &(info->temp_avg), false);
  2086. root = api_add_int(root, "temp_max", &(info->temp_max), false);
  2087. root = api_add_percent(root, "Device Hardware%", &hwp, true);
  2088. root = api_add_int(root, "no_matching_work", &(info->no_matching_work), false);
  2089. /*
  2090. for (i = 0; i < info->chain_num; i++) {
  2091. char mcw[24];
  2092. sprintf(mcw, "match_work_count%d", i + 1);
  2093. root = api_add_int(root, mcw, &(info->matching_work[i]), false);
  2094. }*/
  2095. root = api_add_int(root, "chain_acn1", &(info->chain_asic_num[0]), false);
  2096. root = api_add_int(root, "chain_acn2", &(info->chain_asic_num[1]), false);
  2097. root = api_add_int(root, "chain_acn3", &(info->chain_asic_num[2]), false);
  2098. root = api_add_int(root, "chain_acn4", &(info->chain_asic_num[3]), false);
  2099. root = api_add_int(root, "chain_acn5", &(info->chain_asic_num[4]), false);
  2100. root = api_add_int(root, "chain_acn6", &(info->chain_asic_num[5]), false);
  2101. root = api_add_int(root, "chain_acn7", &(info->chain_asic_num[6]), false);
  2102. root = api_add_int(root, "chain_acn8", &(info->chain_asic_num[7]), false);
  2103. root = api_add_int(root, "chain_acn9", &(info->chain_asic_num[8]), false);
  2104. root = api_add_int(root, "chain_acn10", &(info->chain_asic_num[9]), false);
  2105. root = api_add_int(root, "chain_acn11", &(info->chain_asic_num[10]), false);
  2106. root = api_add_int(root, "chain_acn12", &(info->chain_asic_num[11]), false);
  2107. root = api_add_int(root, "chain_acn13", &(info->chain_asic_num[12]), false);
  2108. root = api_add_int(root, "chain_acn14", &(info->chain_asic_num[13]), false);
  2109. root = api_add_int(root, "chain_acn15", &(info->chain_asic_num[14]), false);
  2110. root = api_add_int(root, "chain_acn16", &(info->chain_asic_num[15]), false);
  2111. //applog(LOG_ERR, "chain asic status:%s", info->chain_asic_status_t[0]);
  2112. root = api_add_string(root, "chain_acs1", info->chain_asic_status_t[0], false);
  2113. root = api_add_string(root, "chain_acs2", info->chain_asic_status_t[1], false);
  2114. root = api_add_string(root, "chain_acs3", info->chain_asic_status_t[2], false);
  2115. root = api_add_string(root, "chain_acs4", info->chain_asic_status_t[3], false);
  2116. root = api_add_string(root, "chain_acs5", info->chain_asic_status_t[4], false);
  2117. root = api_add_string(root, "chain_acs6", info->chain_asic_status_t[5], false);
  2118. root = api_add_string(root, "chain_acs7", info->chain_asic_status_t[6], false);
  2119. root = api_add_string(root, "chain_acs8", info->chain_asic_status_t[7], false);
  2120. root = api_add_string(root, "chain_acs9", info->chain_asic_status_t[8], false);
  2121. root = api_add_string(root, "chain_acs10", info->chain_asic_status_t[9], false);
  2122. root = api_add_string(root, "chain_acs11", info->chain_asic_status_t[10], false);
  2123. root = api_add_string(root, "chain_acs12", info->chain_asic_status_t[11], false);
  2124. root = api_add_string(root, "chain_acs13", info->chain_asic_status_t[12], false);
  2125. root = api_add_string(root, "chain_acs14", info->chain_asic_status_t[13], false);
  2126. root = api_add_string(root, "chain_acs15", info->chain_asic_status_t[14], false);
  2127. root = api_add_string(root, "chain_acs16", info->chain_asic_status_t[15], false);
  2128. //root = api_add_int(root, "chain_acs1", &(info->chain_asic_status[0]), false);
  2129. //root = api_add_int(root, "chain_acs2", &(info->chain_asic_status[1]), false);
  2130. //root = api_add_int(root, "chain_acs3", &(info->chain_asic_status[2]), false);
  2131. //root = api_add_int(root, "chain_acs4", &(info->chain_asic_status[3]), false);
  2132. return root;
  2133. }
  2134. static void bitmain_shutdown(struct thr_info *thr)
  2135. {
  2136. do_bitmain_close(thr);
  2137. }
  2138. char *set_bitmain_dev(char *arg)
  2139. {
  2140. if(arg == NULL || strlen(arg) <= 0) {
  2141. memcpy(opt_bitmain_dev, 0, 256);
  2142. } else {
  2143. strncpy(opt_bitmain_dev, arg, 256);
  2144. }
  2145. applog(LOG_DEBUG, "BTM set device: %s", opt_bitmain_dev);
  2146. return NULL;
  2147. }
  2148. char *set_bitmain_fan(char *arg)
  2149. {
  2150. int val1, val2, ret;
  2151. ret = sscanf(arg, "%d-%d", &val1, &val2);
  2152. if (ret < 1)
  2153. return "No values passed to bitmain-fan";
  2154. if (ret == 1)
  2155. val2 = val1;
  2156. if (val1 < 0 || val1 > 100 || val2 < 0 || val2 > 100 || val2 < val1)
  2157. return "Invalid value passed to bitmain-fan";
  2158. opt_bitmain_fan_min = val1 * BITMAIN_PWM_MAX / 100;
  2159. opt_bitmain_fan_max = val2 * BITMAIN_PWM_MAX / 100;
  2160. return NULL;
  2161. }
  2162. char *set_bitmain_freq(char *arg)
  2163. {
  2164. int val1, val2, ret;
  2165. ret = sscanf(arg, "%d-%d", &val1, &val2);
  2166. if (ret < 1)
  2167. return "No values passed to bitmain-freq";
  2168. if (ret == 1)
  2169. val2 = val1;
  2170. if (val1 < BITMAIN_MIN_FREQUENCY || val1 > BITMAIN_MAX_FREQUENCY ||
  2171. val2 < BITMAIN_MIN_FREQUENCY || val2 > BITMAIN_MAX_FREQUENCY ||
  2172. val2 < val1)
  2173. return "Invalid value passed to bitmain-freq";
  2174. opt_bitmain_freq_min = val1;
  2175. opt_bitmain_freq_max = val2;
  2176. return NULL;
  2177. }
  2178. struct device_drv bitmain_drv = {
  2179. .drv_id = DRIVER_bitmain,
  2180. .dname = "Bitmain",
  2181. .name = "BTM",
  2182. .drv_detect = bitmain_detect,
  2183. .thread_prepare = bitmain_prepare,
  2184. .hash_work = hash_queued_work,
  2185. .queue_full = bitmain_fill,
  2186. .scanwork = bitmain_scanhash,
  2187. .flush_work = bitmain_flush_work,
  2188. .get_api_stats = bitmain_api_stats,
  2189. .get_statline_before = get_bitmain_statline_before,
  2190. .reinit_device = bitmain_init,
  2191. .thread_shutdown = bitmain_shutdown,
  2192. };