Commit 065054f6587135b212b83e2c5b1bafcfdeb0a247

Adrian Port 2013-10-30T18:02:51

Structure changes for OP_NONCE, add big endian header

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
diff --git a/driver-hashfast.c b/driver-hashfast.c
index 55b61f6..76d5c80 100644
--- a/driver-hashfast.c
+++ b/driver-hashfast.c
@@ -497,7 +497,7 @@ static void search_for_extra_nonce(struct thr_info *thr, struct work *work,
 	int i;
 
 	/* No function to test with ntime offsets yet */
-	if (n->ntime)
+	if (n->ntime & HF_NTIME_MASK)
 		return;
 	for (i = 0; i < 128; i++, nonce++) {
 		/* We could break out of this early if nonce wraps or if we
@@ -520,8 +520,8 @@ static void hfa_parse_nonce(struct thr_info *thr, struct cgpu_info *hashfast,
 	for (i = 0; i < num_nonces; i++, n++) {
 		struct work *work;
 
-		applog(LOG_DEBUG, "HFA %d: OP_NONCE: %2d: %2d: search %1d ntime %2d sequence %4d nonce 0x%08x",
-		       hashfast->device_id, h->chip_address, i, n->search, n->ntime, n->sequence, n->nonce);
+		applog(LOG_DEBUG, "HFA %d: OP_NONCE: %2d: %2d: ntime %2d sequence %4d nonce 0x%08x",
+		       hashfast->device_id, h->chip_address, i, n->ntime & HF_NTIME_MASK, n->sequence, n->nonce);
 
 		// Find the job from the sequence number
 		mutex_lock(&info->lock);
@@ -533,11 +533,11 @@ static void hfa_parse_nonce(struct thr_info *thr, struct cgpu_info *hashfast,
 			applog(LOG_INFO, "HFA %d: No matching work!", hashfast->device_id);
 		} else {
 			applog(LOG_DEBUG, "HFA %d: OP_NONCE: sequence %d: submitting nonce 0x%08x ntime %d",
-			       hashfast->device_id, n->sequence, n->nonce, n->ntime);
+			       hashfast->device_id, n->sequence, n->nonce, n->ntime & HF_NTIME_MASK);
 			if ((n->nonce & 0xffff0000) == 0x42420000)		// XXX REMOVE THIS
 				break;						// XXX PHONEY EMULATOR NONCE
-			submit_noffset_nonce(thr, work, n->nonce, n->ntime);	// XXX Return value from submit_nonce is error if set
-			if (unlikely(n->search)) {
+			submit_noffset_nonce(thr, work, n->nonce, n->ntime & HF_NTIME_MASK);	// XXX Return value from submit_nonce is error if set
+			if (unlikely(n->ntime & HF_NONCE_SEARCH)) {
 				/* This tells us there is another share in the
 				 * next 128 nonces */
 				applog(LOG_DEBUG, "HFA %d: OP_NONCE: SEARCH PROXIMITY EVENT FOUND",
diff --git a/hf_protocol.h b/hf_protocol.h
index 2ba480c..8170797 100644
--- a/hf_protocol.h
+++ b/hf_protocol.h
@@ -1,336 +1,349 @@
-//
-// Copyright 2013 HashFast LLC
-//
-// This program is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 3 of the License, or (at your option)
-// any later version. See COPYING for more details.
-//
-// Useful data structures and values for interfacing with HashFast products
-//
-
-
-#ifndef _HF_PROTOCOL_H_
-#define _HF_PROTOCOL_H_
-
-#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
-#error "This header uses bit fields and has byte ordering assumptions suitable only for Little Endian platforms"
-#endif
-
-#define HF_PREAMBLE             (uint8_t) 0xaa
-#define HF_BROADCAST_ADDRESS    (uint8_t) 0xff
-#define HF_GWQ_ADDRESS          (uint8_t) 254
-
-// Serial protocol operation codes (Second header byte)
-#define OP_NULL         0
-#define OP_ROOT         1
-#define OP_RESET        2
-#define OP_PLL_CONFIG   3
-#define OP_ADDRESS      4
-#define OP_READDRESS    5
-#define OP_HIGHEST      6
-#define OP_BAUD         7
-#define OP_UNROOT       8
-
-#define OP_HASH         9
-#define OP_NONCE        10
-#define OP_ABORT        11
-#define OP_STATUS       12
-#define OP_GPIO         13
-#define OP_CONFIG       14
-#define OP_STATISTICS   15
-#define OP_GROUP        16
-#define OP_CLOCKGATE    17
-
-// Generic header
-struct hf_header {
-	uint8_t  preamble;                      // Always 0xaa
-	uint8_t  operation_code;
-	uint8_t  chip_address;
-	uint8_t  core_address;
-	uint16_t hdata;                         // Header specific data
-	uint8_t  data_length;                   // .. of data frame to follow, in 4 byte blocks, 0=no data
-	uint8_t  crc8;                          // Computed across bytes 1-6 inclusive
-} __attribute__((packed,aligned(4)));           // 8 bytes total
-
-// Header specific to OP_PLL_CONFIG
-struct hf_pll_config {
-	uint8_t  preamble;
-	uint8_t  operation_code;
-	uint8_t  chip_address;
-
-	uint8_t  pll_divr:6;
-	uint8_t  pll_bypass:1;
-	uint8_t  pll_reset:1;
-
-	uint16_t pll_divf:8;
-	uint16_t spare1:1;                      // Must always be 0
-	uint16_t pll_divq:3;
-	uint16_t pll_range:3;
-	uint16_t pll_fse:1;                     // Must always be 1
-
-	uint8_t  data_length;                   // Always 0
-	uint8_t  crc8;                          // Computed across bytes 1-6 inclusive
-} __attribute__((packed,aligned(4)));           // 8 bytes total
-
-// OP_HASH serial data
-struct hf_hash_serial {
-	uint8_t  midstate[32];                  // Computed from first half of block header
-	uint8_t  merkle_residual[4];            // From block header
-	uint32_t timestamp;                     // From block header
-	uint32_t bits;                          // Actual difficulty target for block header
-	uint32_t starting_nonce;                // Usually set to 0
-	uint32_t nonce_loops;                   // How many nonces to search, or 0 for 2^32
-	uint16_t ntime_loops:12;                // How many times to roll timestamp, or 0
-	uint16_t spare1:4;
-	uint8_t  search_difficulty;             // Search difficulty to use, # of '0' digits required
-	uint8_t  option;
-	uint32_t group:8;
-	uint32_t spare3:24;
-	uint32_t crc32;                         // Computed across all preceding data fields
-} __attribute__((packed,aligned(4)));           // 64 bytes total, including CRC
-
-// OP_HASH usb data - squashed so header+data = 64 bytes
-struct hf_hash_usb {
-	uint8_t  midstate[32];                  // Computed from first half of block header
-	uint8_t  merkle_residual[4];            // From block header
-	uint32_t timestamp;                     // From block header
-	uint32_t bits;                          // Actual difficulty target for block header
-	uint32_t starting_nonce;                // Usually set to 0
-	uint32_t nonce_loops;                   // How many nonces to search, or 0 for 2^32
-	uint16_t ntime_loops:12;                // How many times to roll timestamp, or 0
-	uint16_t spare1:4;
-	uint8_t  search_difficulty;             // Search difficulty to use, # of '0' digits required
-	uint8_t  group;                         // Non-zero for valid group
-} __attribute__((packed,aligned(4)));
-
-// OP_NONCE data
-struct hf_candidate_nonce {
-	uint32_t nonce;                         // Candidate nonce
-	uint16_t sequence;                      // Sequence number from corresponding OP_HASH
-	uint16_t ntime:12;                      // ntime offset, if ntime roll occurred
-	uint16_t search:1;                      // Search forward next 128 nonces to find solution
-	uint16_t spare:3;
-} __attribute__((packed,aligned(4)));
-
-// OP_CONFIG data
-struct hf_config_data {
-	uint16_t status_period:11;                  // Periodic status time, msec
-	uint16_t enable_periodic_status:1;          // Send periodic status
-	uint16_t send_status_on_core_idle:1;        // Schedule status whenever core goes idle
-	uint16_t send_status_on_pending_empty:1;    // Schedule status whenever core pending goes idle
-	uint16_t pwm_active_level:1;                // Active level of PWM outputs, if used
-	uint16_t forward_all_privileged_packets:1;  // Forward priv pkts -- diagnostic
-	uint8_t  status_batch_delay;                // Batching delay, time to wait before sending status
-	uint8_t  watchdog:7;                        // Watchdog timeout, seconds
-	uint8_t  disable_sensors:1;                 // Diagnostic
-
-	uint8_t  rx_header_timeout:7;               // Header timeout in char times
-	uint8_t  rx_ignore_header_crc:1;            // Ignore rx header crc's (diagnostic)
-	uint8_t  rx_data_timeout:7;                 // Data timeout in char times / 16
-	uint8_t  rx_ignore_data_crc:1;              // Ignore rx data crc's (diagnostic)
-	uint8_t  stats_interval:7;                  // Minimum interval to report statistics (seconds)
-	uint8_t  stat_diagnostic:1;                 // Never set this
-	uint8_t  measure_interval;                  // Die temperature measurement interval (msec)
-
-	uint32_t one_usec:12;                       // How many LF clocks per usec.
-	uint32_t max_nonces_per_frame:4;            // Maximum # of nonces to combine in a single frame
-	uint32_t voltage_sample_points:8;           // Bit mask for sample points (up to 5 bits set)
-	uint32_t pwm_phases:2;                      // phases - 1
-	uint32_t trim:4;                            // Trim value for temperature measurements
-	uint32_t clock_diagnostic:1;                // Never set this
-	uint32_t forward_all_packets:1;             // Forward everything - diagnostic.
-
-	uint16_t pwm_period;                        // Period of PWM outputs, in reference clock cycles
-	uint16_t pwm_pulse_period;                  // Initial count, phase 0
-} __attribute__((packed,aligned(4)));
-
-// OP_GROUP data
-struct hf_group_data {
-	uint16_t nonce_msoffset;                    // This value << 16 added to starting nonce
-	uint16_t ntime_offset:12;                   // This value added to timestamp
-	uint16_t spare:4;
-} __attribute__((packed,aligned(4)));
-
-// Structure of the monitor fields for G-1, returned in OP_STATUS, core bitmap follows this
-struct hf_g1_monitor { 
-	uint16_t die_temperature:12;                // Die temperature ADC count
-	uint16_t spare:4;                           // Spare
-	uint8_t  core_voltage[6];                   // Core voltage
-						// [0] = main sensor
-						// [1]-[5] = other positions
-} __attribute__((packed,aligned(4)));
-
-// Conversions for the ADC readings from GN on-chip sensors in the above structure
-#define GN_CORE_VOLTAGE(a)              ((float)(a)/256*1.2)
-#define GN_DIE_TEMPERATURE(a)           ((((float)(a)*240)/4096.0)-61.5)
-
-// What comes back in the body of an OP_STATISTICS frame (On die statistics)
-struct hf_statistics {
-	uint8_t rx_header_crc;                      // Header CRC error's
-	uint8_t rx_body_crc;                        // Data CRC error's
-	uint8_t rx_header_timeouts;                 // Header timeouts
-	uint8_t rx_body_timeouts;                   // Data timeouts
-	uint8_t core_nonce_fifo_full;               // Core nonce Q overrun events
-	uint8_t array_nonce_fifo_full;              // System nonce Q overrun events
-	uint8_t stats_overrun;                      // Overrun in statistics reporting
-	uint8_t spare;
-} __attribute__((packed,aligned(4)));
-
-
-// The sequence distance between a sent and received sequence number.
-#define SEQUENCE_DISTANCE(tx,rx)        ((tx)>=(rx)?((tx)-(rx)):(info->num_sequence+(tx)-(rx)))
-
-////////////////////////////////////////////////////////////////////////////////
-// USB protocol data structures
-////////////////////////////////////////////////////////////////////////////////
-
-// Convenience header specific to OP_USB_INIT
-struct hf_usb_init_header {
-	uint8_t  preamble;                      // Always 0xaa
-	uint8_t  operation_code;
-	uint8_t  spare1;
-
-	uint8_t  protocol:3;                    // Which protocol to use
-	uint8_t  user_configuration:1;          // Use the following configuration data
-	uint8_t  spare2:4;
-
-	uint16_t hash_clock:12;                 // Requested hash clock frequency
-	uint16_t pll_bypass:1;                  // Force PLL bypass, hash clock = ref clock
-	uint16_t no_asic_initialization:1;      // Do not perform automatic ASIC initialization
-	uint16_t do_atspeed_core_tests:1;       // Do core tests at speed, return second bitmap
-	uint16_t leave_powered_down:1;          // Init USB only, leave device powered down
-
-	uint8_t  data_length;                   // .. of data frame to follow, in 4 byte blocks
-	uint8_t  crc8;                          // Computed across bytes 1-6 inclusive
-} __attribute__((packed,aligned(4)));           // 8 bytes total
-
-// Values the protocol field in the above structure may take
-#define PROTOCOL_USB_MAPPED_SERIAL      0
-#define PROTOCOL_GLOBAL_WORK_QUEUE      1
-
-// Options (only if present) that may be appended to the above header
-// Each option involving a numerical value will only be in effect if the value is non-zero
-// This allows the user to select only those options desired for modification. Do not
-// use this facility unless you are an expert - loading inconsistent settings will not work.
-struct hf_usb_init_options {
-	uint16_t group_ntime_roll;                  // Total ntime roll amount per group
-	uint16_t core_ntime_roll;                   // Total core ntime roll amount
-	uint8_t  low_operating_temp_limit;          // Lowest normal operating limit
-	uint8_t  high_operating_temp_limit;         // Highest normal operating limit
-	uint16_t spare;
-} __attribute__((packed,aligned(4)));
-
-// Base item returned from device for OP_USB_INIT
-struct hf_usb_init_base { 
-	uint16_t firmware_rev;                      // Firmware revision #
-	uint16_t hardware_rev;                      // Hardware revision #
-	uint32_t serial_number;                     // Board serial number
-	uint8_t  operation_status;                  // Reply status for OP_USB_INIT (0 = success)
-	uint8_t  extra_status_1;                    // Extra reply status information, code specific
-	uint16_t sequence_modulus;                  // Sequence numbers are to be modulo this
-	uint16_t hash_clockrate;                    // Actual hash clock rate used (nearest Mhz)
-	uint16_t inflight_target;                   // Target inflight amount for GWQ protocol
-} __attribute__((packed,aligned(4)));
-
-// The above base item (16 bytes) is followed by the struct hf_config_data (16 bytes) actually
-// used internally (so users may modify non-critical fields by doing subsequent
-// OP_CONFIG operations). This is followed by a device specific "core good" bitmap (unless the
-// user disabled initialization), and optionally by an at-speed "core good" bitmap.
-
-
-// Information in an OP_DIE_STATUS frame. This is for one die - there are four per ASIC.
-// Board level phase current and voltage sensors are likely to disappear in later production models.
-struct hf_g1_die_data {
-	struct hf_g1_monitor die;                   // Die sensors - 8 bytes
-	uint16_t phase_currents[4];                 // Phase currents (0 if unavailable)
-	uint16_t voltage;                           // Voltage at device boundary (0 if unavailable)
-	uint16_t temperature;                       // Regulator temp sensor
-	uint16_t tacho;                             // See documentation
-	uint16_t spare;
-} __attribute__((packed,aligned(4)));               // 24 bytes total
-
-// Conversions for the board/module level sensors
-#define M_VOLTAGE(a)                    ((float)(a)*19.0734e-6)
-#define M_PHASE_CURRENT(a)              ((float)(a)*0.794728597e-3)
-
-// Information for an OP_GWQ_STATUS frame
-// If sequence_head == sequence_tail, then there is no active work and sequence_head is invalid
-struct hf_gwq_data {
-	uint64_t hash_count;                        // Add this to host's cumulative hash count
-	uint16_t sequence_head;                     // The latest, internal, active sequence #
-	uint16_t sequence_tail;                     // The latest, internal, inactive sequence #
-	uint16_t shed_count;                        // # of cores have been shedded for thermal control
-	uint16_t spare;
-} __attribute__((packed,aligned(4)));
-
-
-// Information for an OP_USB_STATS1 frame - Communication statistics
-struct hf_usb_stats1 {
-	// USB incoming
-	uint16_t usb_rx_preambles;
-	uint16_t usb_rx_receive_byte_errors;
-	uint16_t usb_rx_bad_hcrc;
-
-	// USB outgoing
-	uint16_t usb_tx_attempts;
-	uint16_t usb_tx_packets;
-	uint16_t usb_tx_timeouts;
-	uint16_t usb_tx_incompletes;
-	uint16_t usb_tx_endpointstalled;
-	uint16_t usb_tx_disconnected;
-	uint16_t usb_tx_suspended;
-
-	// Internal UART transmit
-	uint16_t uart_tx_queue_dma;
-	uint16_t uart_tx_interrupts;
-
-	// Internal UART receive
-	uint16_t uart_rx_preamble_ints;
-	uint16_t uart_rx_missed_preamble_ints;
-	uint16_t uart_rx_header_done;
-	uint16_t uart_rx_data_done;
-	uint16_t uart_rx_bad_hcrc;
-	uint16_t uart_rx_bad_dma;
-	uint16_t uart_rx_short_dma;
-	uint16_t uart_rx_buffers_full;
-
-	uint8_t  max_tx_buffers;                        // Maximum # of send buffers ever used
-	uint8_t  max_rx_buffers;                        // Maximum # of receive buffers ever used
-} __attribute__((packed,aligned(4)));
-
-// Values info->device_type can take
-#define HFD_G1                            1         // HashFast G-1 GN ASIC
-#define HFD_VC709                       128
-#define HFD_ExpressAGX                  129
-
-// USB interface specific operation codes
-#define OP_USB_INIT                     128         // Initialize USB interface details
-#define OP_GET_TRACE                    129         // Send back the trace buffer if present
-#define OP_LOOPBACK_USB                 130
-#define OP_LOOPBACK_UART                131
-#define OP_DFU                          132         // Jump into the boot loader
-#define OP_USB_SHUTDOWN                 133         // Initialize USB interface details
-#define OP_DIE_STATUS                   134         // Die status. There are 4 die per ASIC
-#define OP_GWQ_STATUS                   135         // Global Work Queue protocol status
-#define OP_WORK_RESTART                 136         // Stratum work restart regime
-#define OP_USB_STATS1                   137
-#define OP_USB_GWQSTATS                 138
-#define OP_USB_DEBUG                    255
-
-// HashFast vendor and product ID's
-#define HF_USB_VENDOR_ID                0x297c
-#define HF_USB_PRODUCT_ID_G1            0x0001
-
-//
-// Fault codes that can be returned in struct hf_usb_init_base.operation_status
-//
-#define E_RESET_TIMEOUT                 1
-#define E_ADDRESS_TIMEOUT               2
-#define E_CLOCKGATE_TIMEOUT             3
-#define E_CONFIG_TIMEOUT                4
-
-#define U32SIZE(x)                      (sizeof(x)/sizeof(uint32_t))
-
-
-#endif
+//
+// Copyright 2013 HashFast LLC
+//
+// This program is free software; you can redistribute it and/or modify it
+// under the terms of the GNU General Public License as published by the Free
+// Software Foundation; either version 3 of the License, or (at your option)
+// any later version. See COPYING for more details.
+//
+// Useful data structures and values for interfacing with HashFast products
+//
+// Version 1.0
+//
+
+#ifndef _HF_PROTOCOL_H_
+#define _HF_PROTOCOL_H_
+
+#define HF_PROTOCOL_VERSION     ((0<<8)|1)
+
+#define HF_PREAMBLE             (uint8_t) 0xaa
+#define HF_BROADCAST_ADDRESS    (uint8_t) 0xff
+#define HF_GWQ_ADDRESS          (uint8_t) 254
+
+// Serial protocol operation codes (Second header byte)
+#define OP_NULL         0
+#define OP_ROOT         1
+#define OP_RESET        2
+#define OP_PLL_CONFIG   3
+#define OP_ADDRESS      4
+#define OP_READDRESS    5
+#define OP_HIGHEST      6
+#define OP_BAUD         7
+#define OP_UNROOT       8
+
+#define OP_HASH         9
+#define OP_NONCE        10
+#define OP_ABORT        11
+#define OP_STATUS       12
+#define OP_GPIO         13
+#define OP_CONFIG       14
+#define OP_STATISTICS   15
+#define OP_GROUP        16
+#define OP_CLOCKGATE    17
+
+// Conversions for the ADC readings from GN on-chip sensors
+#define GN_CORE_VOLTAGE(a)              ((float)(a)/256*1.2)
+#define GN_DIE_TEMPERATURE(a)           ((((float)(a)*240)/4096.0)-61.5)
+
+// The sequence distance between a sent and received sequence number.
+#define SEQUENCE_DISTANCE(tx,rx)        ((tx)>=(rx)?((tx)-(rx)):(info->num_sequence+(tx)-(rx)))
+
+// Values the protocol field in the above structure may take
+#define PROTOCOL_USB_MAPPED_SERIAL      0
+#define PROTOCOL_GLOBAL_WORK_QUEUE      1
+
+// Conversions for the board/module level sensors
+#define M_VOLTAGE(a)                    ((float)(a)*19.0734e-6)
+#define M_PHASE_CURRENT(a)              ((float)(a)*0.794728597e-3)
+
+// Values info->device_type can take
+#define HFD_G1                            1         // HashFast G-1 GN ASIC
+#define HFD_VC709                       128
+#define HFD_ExpressAGX                  129
+
+// USB interface specific operation codes
+#define OP_USB_INIT                     128         // Initialize USB interface details
+#define OP_GET_TRACE                    129         // Send back the trace buffer if present
+#define OP_LOOPBACK_USB                 130
+#define OP_LOOPBACK_UART                131
+#define OP_DFU                          132         // Jump into the boot loader
+#define OP_USB_SHUTDOWN                 133         // Initialize USB interface details
+#define OP_DIE_STATUS                   134         // Die status. There are 4 die per ASIC
+#define OP_GWQ_STATUS                   135         // Global Work Queue protocol status
+#define OP_WORK_RESTART                 136         // Stratum work restart regime
+#define OP_USB_STATS1                   137         // Statistics class 1
+#define OP_USB_GWQSTATS                 138         // GWQ protocol statistics
+#define OP_USB_NOTICE                   139         // Asynchronous notification event
+#define OP_USB_DEBUG                    255
+
+// HashFast vendor and product ID's
+#define HF_USB_VENDOR_ID                0x297c
+#define HF_USB_PRODUCT_ID_G1            0x0001
+
+// If this bit is set, search forward for other nonce(s)
+#define HF_NTIME_MASK                   0xfff       // Mask for for ntime
+#define HF_NONCE_SEARCH                 0x1000      // Search bit in candidate_nonce -> ntime
+
+//
+// Fault codes that can be returned in struct hf_usb_init_base.operation_status
+//
+#define E_RESET_TIMEOUT                 1
+#define E_ADDRESS_TIMEOUT               2
+#define E_CLOCKGATE_TIMEOUT             3
+#define E_CONFIG_TIMEOUT                4
+#define E_EXCESS_CORE_FAILURES          5
+
+#define U32SIZE(x)                      (sizeof(x)/sizeof(uint32_t))
+
+
+// Structure definitions, LE platforms
+
+#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
+#include "hf_protocol_be.h"
+#else
+// Generic header
+struct hf_header {
+	uint8_t  preamble;                      // Always 0xaa
+	uint8_t  operation_code;
+	uint8_t  chip_address;
+	uint8_t  core_address;
+	uint16_t hdata;                         // Header specific data
+	uint8_t  data_length;                   // .. of data frame to follow, in 4 byte blocks, 0=no data
+	uint8_t  crc8;                          // Computed across bytes 1-6 inclusive
+} __attribute__((packed,aligned(4)));           // 8 bytes total
+
+// Header specific to OP_PLL_CONFIG
+struct hf_pll_config {
+	uint8_t  preamble;
+	uint8_t  operation_code;
+	uint8_t  chip_address;
+
+	uint8_t  pll_divr:6;
+	uint8_t  pll_bypass:1;
+	uint8_t  pll_reset:1;
+
+	uint8_t  pll_divf;
+
+	uint8_t  spare1:1;                      // Must always be 0
+	uint8_t  pll_divq:3;
+	uint8_t  pll_range:3;
+	uint8_t  pll_fse:1;                     // Must always be 1
+
+	uint8_t  data_length;                   // Always 0
+	uint8_t  crc8;                          // Computed across bytes 1-6 inclusive
+} __attribute__((packed,aligned(4)));           // 8 bytes total
+
+// OP_HASH serial data
+struct hf_hash_serial {
+	uint8_t  midstate[32];                  // Computed from first half of block header
+	uint8_t  merkle_residual[4];            // From block header
+	uint32_t timestamp;                     // From block header
+	uint32_t bits;                          // Actual difficulty target for block header
+	uint32_t starting_nonce;                // Usually set to 0
+	uint32_t nonce_loops;                   // How many nonces to search, or 0 for 2^32
+	uint16_t ntime_loops;                   // How many times to roll timestamp, or 0
+	uint8_t  search_difficulty;             // Search difficulty to use, # of '0' digits required
+	uint8_t  option;
+	uint8_t  group;
+	uint8_t  spare3[3];
+} __attribute__((packed,aligned(4)));
+
+// OP_HASH usb data - header+data = 64 bytes
+struct hf_hash_usb {
+	uint8_t  midstate[32];                  // Computed from first half of block header
+	uint8_t  merkle_residual[4];            // From block header
+	uint32_t timestamp;                     // From block header
+	uint32_t bits;                          // Actual difficulty target for block header
+	uint32_t starting_nonce;                // Usually set to 0
+	uint32_t nonce_loops;                   // How many nonces to search, or 0 for 2^32
+	uint16_t ntime_loops;                   // How many times to roll timestamp, or 0
+	uint8_t  search_difficulty;             // Search difficulty to use, # of '0' digits required
+	uint8_t  group;                         // Non-zero for valid group
+} __attribute__((packed,aligned(4)));
+
+// OP_NONCE data
+struct hf_candidate_nonce {
+	uint32_t nonce;                         // Candidate nonce
+	uint16_t sequence;                      // Sequence number from corresponding OP_HASH
+	uint16_t ntime;                         // ntime offset, if ntime roll occurred, in LS 12 bits
+						// If b12 set, search forward next 128 nonces to find solution(s)
+} __attribute__((packed,aligned(4)));
+
+// OP_CONFIG data
+struct hf_config_data {
+	uint16_t status_period:11;                  // Periodic status time, msec
+	uint16_t enable_periodic_status:1;          // Send periodic status
+	uint16_t send_status_on_core_idle:1;        // Schedule status whenever core goes idle
+	uint16_t send_status_on_pending_empty:1;    // Schedule status whenever core pending goes idle
+	uint16_t pwm_active_level:1;                // Active level of PWM outputs, if used
+	uint16_t forward_all_privileged_packets:1;  // Forward priv pkts -- diagnostic
+	uint8_t  status_batch_delay;                // Batching delay, time to wait before sending status
+	uint8_t  watchdog:7;                        // Watchdog timeout, seconds
+	uint8_t  disable_sensors:1;                 // Diagnostic
+
+	uint8_t  rx_header_timeout:7;               // Header timeout in char times
+	uint8_t  rx_ignore_header_crc:1;            // Ignore rx header crc's (diagnostic)
+	uint8_t  rx_data_timeout:7;                 // Data timeout in char times / 16
+	uint8_t  rx_ignore_data_crc:1;              // Ignore rx data crc's (diagnostic)
+	uint8_t  stats_interval:7;                  // Minimum interval to report statistics (seconds)
+	uint8_t  stat_diagnostic:1;                 // Never set this
+	uint8_t  measure_interval;                  // Die temperature measurement interval (msec)
+
+	uint32_t one_usec:12;                       // How many LF clocks per usec.
+	uint32_t max_nonces_per_frame:4;            // Maximum # of nonces to combine in a single frame
+	uint32_t voltage_sample_points:8;           // Bit mask for sample points (up to 5 bits set)
+	uint32_t pwm_phases:2;                      // phases - 1
+	uint32_t trim:4;                            // Trim value for temperature measurements
+	uint32_t clock_diagnostic:1;                // Never set this
+	uint32_t forward_all_packets:1;             // Forward everything - diagnostic.
+
+	uint16_t pwm_period;                        // Period of PWM outputs, in reference clock cycles
+	uint16_t pwm_pulse_period;                  // Initial count, phase 0
+} __attribute__((packed,aligned(4)));
+
+// OP_GROUP data
+struct hf_group_data {
+	uint16_t nonce_msoffset;                    // This value << 16 added to starting nonce
+	uint16_t ntime_offset;                      // This value added to timestamp
+} __attribute__((packed,aligned(4)));
+
+// Structure of the monitor fields for G-1, returned in OP_STATUS, core bitmap follows this
+struct hf_g1_monitor { 
+	uint16_t die_temperature;                   // Die temperature ADC count
+	uint8_t  core_voltage[6];                   // Core voltage
+						// [0] = main sensor
+						// [1]-[5] = other positions
+} __attribute__((packed,aligned(4)));
+
+// What comes back in the body of an OP_STATISTICS frame (On die statistics)
+struct hf_statistics {
+	uint8_t rx_header_crc;                      // Header CRC error's
+	uint8_t rx_body_crc;                        // Data CRC error's
+	uint8_t rx_header_timeouts;                 // Header timeouts
+	uint8_t rx_body_timeouts;                   // Data timeouts
+	uint8_t core_nonce_fifo_full;               // Core nonce Q overrun events
+	uint8_t array_nonce_fifo_full;              // System nonce Q overrun events
+	uint8_t stats_overrun;                      // Overrun in statistics reporting
+	uint8_t spare;
+} __attribute__((packed,aligned(4)));
+
+
+////////////////////////////////////////////////////////////////////////////////
+// USB protocol data structures
+////////////////////////////////////////////////////////////////////////////////
+
+// Convenience header specific to OP_USB_INIT
+struct hf_usb_init_header {
+	uint8_t  preamble;                      // Always 0xaa
+	uint8_t  operation_code;
+	uint8_t  spare1;
+
+	uint8_t  protocol:3;                    // Which protocol to use
+	uint8_t  user_configuration:1;          // Use the following configuration data
+	uint8_t  pll_bypass:1;                  // Force PLL bypass, hash clock = ref clock
+	uint8_t  no_asic_initialization:1;      // Do not perform automatic ASIC initialization
+	uint8_t  do_atspeed_core_tests:1;       // Do core tests at speed, return second bitmap
+	uint8_t  leave_powered_down:1;          // Init USB only, leave device powered down
+
+	uint16_t hash_clock;                    // Requested hash clock frequency
+
+	uint8_t  data_length;                   // .. of data frame to follow, in 4 byte blocks
+	uint8_t  crc8;                          // Computed across bytes 1-6 inclusive
+} __attribute__((packed,aligned(4)));           // 8 bytes total
+
+// Options (only if present) that may be appended to the above header
+// Each option involving a numerical value will only be in effect if the value is non-zero
+// This allows the user to select only those options desired for modification. Do not
+// use this facility unless you are an expert - loading inconsistent settings will not work.
+struct hf_usb_init_options {
+	uint16_t group_ntime_roll;                  // Total ntime roll amount per group
+	uint16_t core_ntime_roll;                   // Total core ntime roll amount
+	uint8_t  low_operating_temp_limit;          // Lowest normal operating limit
+	uint8_t  high_operating_temp_limit;         // Highest normal operating limit
+	uint16_t spare;
+} __attribute__((packed,aligned(4)));
+
+// Base item returned from device for OP_USB_INIT
+struct hf_usb_init_base { 
+	uint16_t firmware_rev;                      // Firmware revision #
+	uint16_t hardware_rev;                      // Hardware revision #
+	uint32_t serial_number;                     // Board serial number
+	uint8_t  operation_status;                  // Reply status for OP_USB_INIT (0 = success)
+	uint8_t  extra_status_1;                    // Extra reply status information, code specific
+	uint16_t sequence_modulus;                  // Sequence numbers are to be modulo this
+	uint16_t hash_clockrate;                    // Actual hash clock rate used (nearest Mhz)
+	uint16_t inflight_target;                   // Target inflight amount for GWQ protocol
+} __attribute__((packed,aligned(4)));
+
+// The above base item (16 bytes) is followed by the struct hf_config_data (16 bytes) actually
+// used internally (so users may modify non-critical fields by doing subsequent
+// OP_CONFIG operations). This is followed by a device specific "core good" bitmap (unless the
+// user disabled initialization), and optionally by an at-speed "core good" bitmap.
+
+
+// Information in an OP_DIE_STATUS frame. This is for one die - there are four per ASIC.
+// Board level phase current and voltage sensors are likely to disappear in later production models.
+struct hf_g1_die_data {
+	struct hf_g1_monitor die;                   // Die sensors - 8 bytes
+	uint16_t phase_currents[4];                 // Phase currents (0 if unavailable)
+	uint16_t voltage;                           // Voltage at device boundary (0 if unavailable)
+	uint16_t temperature;                       // Regulator temp sensor
+	uint16_t tacho;                             // See documentation
+	uint16_t spare;
+} __attribute__((packed,aligned(4)));               // 24 bytes total
+
+
+// Information for an OP_GWQ_STATUS frame
+// If sequence_head == sequence_tail, then there is no active work and sequence_head is invalid
+struct hf_gwq_data {
+	uint64_t hash_count;                        // Add this to host's cumulative hash count
+	uint16_t sequence_head;                     // The latest, internal, active sequence #
+	uint16_t sequence_tail;                     // The latest, internal, inactive sequence #
+	uint16_t shed_count;                        // # of cores have been shedded for thermal control
+	uint16_t spare;
+} __attribute__((packed,aligned(4)));
+
+
+// Information for an OP_USB_STATS1 frame - Communication statistics
+struct hf_usb_stats1 {
+	// USB incoming
+	uint16_t usb_rx_preambles;
+	uint16_t usb_rx_receive_byte_errors;
+	uint16_t usb_rx_bad_hcrc;
+
+	// USB outgoing
+	uint16_t usb_tx_attempts;
+	uint16_t usb_tx_packets;
+	uint16_t usb_tx_timeouts;
+	uint16_t usb_tx_incompletes;
+	uint16_t usb_tx_endpointstalled;
+	uint16_t usb_tx_disconnected;
+	uint16_t usb_tx_suspended;
+
+	// Internal UART transmit
+	uint16_t uart_tx_queue_dma;
+	uint16_t uart_tx_interrupts;
+
+	// Internal UART receive
+	uint16_t uart_rx_preamble_ints;
+	uint16_t uart_rx_missed_preamble_ints;
+	uint16_t uart_rx_header_done;
+	uint16_t uart_rx_data_done;
+	uint16_t uart_rx_bad_hcrc;
+	//uint16_t uart_rx_bad_crc32;
+	uint16_t uart_rx_bad_dma;
+	uint16_t uart_rx_short_dma;
+	uint16_t uart_rx_buffers_full;
+
+	uint8_t  max_tx_buffers;                        // Maximum # of send buffers ever used
+	uint8_t  max_rx_buffers;                        // Maximum # of receive buffers ever used
+} __attribute__((packed,aligned(4)));
+
+// Information for an OP_USB_NOTICE frame
+struct hf_usb_notice_data {
+	uint32_t extra_data;                        // Depends on notification code
+	char     message[];                         // NULL terminated, little endian byte order
+};
+#endif
+
+#endif
diff --git a/hf_protocol_be.h b/hf_protocol_be.h
new file mode 100644
index 0000000..20a9e89
--- /dev/null
+++ b/hf_protocol_be.h
@@ -0,0 +1,267 @@
+//
+// Copyright 2013 HashFast LLC
+//
+// This program is free software; you can redistribute it and/or modify it
+// under the terms of the GNU General Public License as published by the Free
+// Software Foundation; either version 3 of the License, or (at your option)
+// any later version. See COPYING for more details.
+//
+// Big endian versions of packed structures
+//
+// Version 1.0
+//
+
+#ifndef _HF_PROTOCOL_BE_H_
+#define _HF_PROTOCOL_BE_H_
+
+// Generic header
+struct hf_header {
+	uint8_t  preamble;                      // Always 0xaa
+	uint8_t  operation_code;
+	uint8_t  chip_address;
+	uint8_t  core_address;
+	uint16_t hdata;                         // Header specific data
+	uint8_t  data_length;                   // .. of data frame to follow, in 4 byte blocks, 0=no data
+	uint8_t  crc8;                          // Computed across bytes 1-6 inclusive
+} __attribute__((packed,aligned(4)));           // 8 bytes total
+
+// Header specific to OP_PLL_CONFIG
+struct hf_pll_config {
+	uint8_t  preamble;
+	uint8_t  operation_code;
+	uint8_t  chip_address;
+
+	uint8_t  pll_reset:1;
+	uint8_t  pll_bypass:1;
+	uint8_t  pll_divr:6;
+
+	uint8_t  pll_divf;
+
+	uint8_t  pll_fse:1;                     // Must always be 1
+	uint8_t  pll_range:3;
+	uint8_t  pll_divq:3;
+	uint8_t  spare1:1;                      // Must always be 0
+
+	uint8_t  data_length;                   // Always 0
+	uint8_t  crc8;                          // Computed across bytes 1-6 inclusive
+} __attribute__((packed,aligned(4)));           // 8 bytes total
+
+// OP_HASH serial data
+struct hf_hash_serial {
+	uint8_t  midstate[32];                  // Computed from first half of block header
+	uint8_t  merkle_residual[4];            // From block header
+	uint32_t timestamp;                     // From block header
+	uint32_t bits;                          // Actual difficulty target for block header
+	uint32_t starting_nonce;                // Usually set to 0
+	uint32_t nonce_loops;                   // How many nonces to search, or 0 for 2^32
+	uint16_t ntime_loops;                   // How many times to roll timestamp, or 0
+	uint8_t  search_difficulty;             // Search difficulty to use, # of '0' digits required
+	uint8_t  option;
+	uint8_t  group;
+	uint8_t  spare3[3];
+} __attribute__((packed,aligned(4)));
+
+// OP_HASH usb data - header+data = 64 bytes
+struct hf_hash_usb {
+	uint8_t  midstate[32];                  // Computed from first half of block header
+	uint8_t  merkle_residual[4];            // From block header
+	uint32_t timestamp;                     // From block header
+	uint32_t bits;                          // Actual difficulty target for block header
+	uint32_t starting_nonce;                // Usually set to 0
+	uint32_t nonce_loops;                   // How many nonces to search, or 0 for 2^32
+	uint16_t ntime_loops;                   // How many times to roll timestamp, or 0
+	uint8_t  search_difficulty;             // Search difficulty to use, # of '0' digits required
+	uint8_t  group;                         // Non-zero for valid group
+} __attribute__((packed,aligned(4)));
+
+// OP_NONCE data
+struct hf_candidate_nonce {
+	uint32_t nonce;                         // Candidate nonce
+	uint16_t sequence;                      // Sequence number from corresponding OP_HASH
+	uint16_t ntime;                         // ntime offset, if ntime roll occurred, in LS 12 bits
+						// If b12 set, search forward next 128 nonces to find solution(s)
+} __attribute__((packed,aligned(4)));
+
+// OP_CONFIG data
+// This is usually internal data only, for serial drivers only
+// Users shouldn't normally need to interpret this, but in the event a Big Endian
+// user requires access to this data, the following structure will get all
+// the fields in the right place, but byte swaps will be required for the
+// uint16_t's and the uint32_t.
+struct hf_config_data {
+	uint16_t forward_all_privileged_packets:1;  // Forward priv pkts -- diagnostic
+	uint16_t pwm_active_level:1;                // Active level of PWM outputs, if used
+	uint16_t send_status_on_pending_empty:1;    // Schedule status whenever core pending goes idle
+	uint16_t send_status_on_core_idle:1;        // Schedule status whenever core goes idle
+	uint16_t enable_periodic_status:1;          // Send periodic status
+	uint16_t status_period:11;                  // Periodic status time, msec
+
+	uint8_t  status_batch_delay;                // Batching delay, time to wait before sending status
+	uint8_t  disable_sensors:1;                 // Diagnostic
+	uint8_t  watchdog:7;                        // Watchdog timeout, seconds
+
+	uint8_t  rx_ignore_header_crc:1;            // Ignore rx header crc's (diagnostic)
+	uint8_t  rx_header_timeout:7;               // Header timeout in char times
+	uint8_t  rx_ignore_data_crc:1;              // Ignore rx data crc's (diagnostic)
+	uint8_t  rx_data_timeout:7;                 // Data timeout in char times / 16
+	uint8_t  stat_diagnostic:1;                 // Never set this
+	uint8_t  stats_interval:7;                  // Minimum interval to report statistics (seconds)
+	uint8_t  measure_interval;                  // Die temperature measurement interval (msec)
+
+	uint32_t forward_all_packets:1;             // Forward everything - diagnostic.
+	uint32_t clock_diagnostic:1;                // Never set this
+	uint32_t trim:4;                            // Trim value for temperature measurements
+	uint32_t pwm_phases:2;                      // phases - 1
+	uint32_t voltage_sample_points:8;           // Bit mask for sample points (up to 5 bits set)
+	uint32_t max_nonces_per_frame:4;            // Maximum # of nonces to combine in a single frame
+	uint32_t one_usec:12;                       // How many LF clocks per usec.
+
+	uint16_t pwm_period;                        // Period of PWM outputs, in reference clock cycles
+	uint16_t pwm_pulse_period;                  // Initial count, phase 0
+} __attribute__((packed,aligned(4)));
+
+// OP_GROUP data
+struct hf_group_data {
+	uint16_t nonce_msoffset;                    // This value << 16 added to starting nonce
+	uint16_t ntime_offset;                      // This value added to timestamp
+} __attribute__((packed,aligned(4)));
+
+// Structure of the monitor fields for G-1, returned in OP_STATUS, core bitmap follows this
+struct hf_g1_monitor { 
+	uint16_t die_temperature;                   // Die temperature ADC count
+	uint8_t  core_voltage[6];                   // Core voltage
+						// [0] = main sensor
+						// [1]-[5] = other positions
+} __attribute__((packed,aligned(4)));
+
+// What comes back in the body of an OP_STATISTICS frame (On die statistics)
+struct hf_statistics {
+	uint8_t rx_header_crc;                      // Header CRC error's
+	uint8_t rx_body_crc;                        // Data CRC error's
+	uint8_t rx_header_timeouts;                 // Header timeouts
+	uint8_t rx_body_timeouts;                   // Data timeouts
+	uint8_t core_nonce_fifo_full;               // Core nonce Q overrun events
+	uint8_t array_nonce_fifo_full;              // System nonce Q overrun events
+	uint8_t stats_overrun;                      // Overrun in statistics reporting
+	uint8_t spare;
+} __attribute__((packed,aligned(4)));
+
+
+////////////////////////////////////////////////////////////////////////////////
+// USB protocol data structures
+////////////////////////////////////////////////////////////////////////////////
+
+// Convenience header specific to OP_USB_INIT
+struct hf_usb_init_header {
+	uint8_t  preamble;                      // Always 0xaa
+	uint8_t  operation_code;
+	uint8_t  spare1;
+
+	uint8_t  leave_powered_down:1;          // Init USB only, leave device powered down
+	uint8_t  do_atspeed_core_tests:1;       // Do core tests at speed, return second bitmap
+	uint8_t  no_asic_initialization:1;      // Do not perform automatic ASIC initialization
+	uint8_t  pll_bypass:1;                  // Force PLL bypass, hash clock = ref clock
+	uint8_t  user_configuration:1;          // Use the following configuration data
+	uint8_t  protocol:3;                    // Which protocol to use
+
+	uint16_t hash_clock;                    // Requested hash clock frequency
+
+	uint8_t  data_length;                   // .. of data frame to follow, in 4 byte blocks
+	uint8_t  crc8;                          // Computed across bytes 1-6 inclusive
+} __attribute__((packed,aligned(4)));           // 8 bytes total
+
+// Options (only if present) that may be appended to the above header
+// Each option involving a numerical value will only be in effect if the value is non-zero
+// This allows the user to select only those options desired for modification. Do not
+// use this facility unless you are an expert - loading inconsistent settings will not work.
+struct hf_usb_init_options {
+	uint16_t group_ntime_roll;                  // Total ntime roll amount per group
+	uint16_t core_ntime_roll;                   // Total core ntime roll amount
+	uint8_t  low_operating_temp_limit;          // Lowest normal operating limit
+	uint8_t  high_operating_temp_limit;         // Highest normal operating limit
+	uint16_t spare;
+} __attribute__((packed,aligned(4)));
+
+// Base item returned from device for OP_USB_INIT
+struct hf_usb_init_base { 
+	uint16_t firmware_rev;                      // Firmware revision #
+	uint16_t hardware_rev;                      // Hardware revision #
+	uint32_t serial_number;                     // Board serial number
+	uint8_t  operation_status;                  // Reply status for OP_USB_INIT (0 = success)
+	uint8_t  extra_status_1;                    // Extra reply status information, code specific
+	uint16_t sequence_modulus;                  // Sequence numbers are to be modulo this
+	uint16_t hash_clockrate;                    // Actual hash clock rate used (nearest Mhz)
+	uint16_t inflight_target;                   // Target inflight amount for GWQ protocol
+} __attribute__((packed,aligned(4)));
+
+// The above base item (16 bytes) is followed by the struct hf_config_data (16 bytes) actually
+// used internally (so users may modify non-critical fields by doing subsequent
+// OP_CONFIG operations). This is followed by a device specific "core good" bitmap (unless the
+// user disabled initialization), and optionally by an at-speed "core good" bitmap.
+
+
+// Information in an OP_DIE_STATUS frame. This is for one die - there are four per ASIC.
+// Board level phase current and voltage sensors are likely to disappear in later production models.
+struct hf_g1_die_data {
+	struct hf_g1_monitor die;                   // Die sensors - 8 bytes
+	uint16_t phase_currents[4];                 // Phase currents (0 if unavailable)
+	uint16_t voltage;                           // Voltage at device boundary (0 if unavailable)
+	uint16_t temperature;                       // Regulator temp sensor
+	uint16_t tacho;                             // See documentation
+	uint16_t spare;
+} __attribute__((packed,aligned(4)));               // 24 bytes total
+
+// Information for an OP_GWQ_STATUS frame
+// If sequence_head == sequence_tail, then there is no active work and sequence_head is invalid
+struct hf_gwq_data {
+	uint64_t hash_count;                        // Add this to host's cumulative hash count
+	uint16_t sequence_head;                     // The latest, internal, active sequence #
+	uint16_t sequence_tail;                     // The latest, internal, inactive sequence #
+	uint16_t shed_count;                        // # of cores have been shedded for thermal control
+	uint16_t spare;
+} __attribute__((packed,aligned(4)));
+
+
+// Information for an OP_USB_STATS1 frame - Communication statistics
+struct hf_usb_stats1 {
+	// USB incoming
+	uint16_t usb_rx_preambles;
+	uint16_t usb_rx_receive_byte_errors;
+	uint16_t usb_rx_bad_hcrc;
+
+	// USB outgoing
+	uint16_t usb_tx_attempts;
+	uint16_t usb_tx_packets;
+	uint16_t usb_tx_timeouts;
+	uint16_t usb_tx_incompletes;
+	uint16_t usb_tx_endpointstalled;
+	uint16_t usb_tx_disconnected;
+	uint16_t usb_tx_suspended;
+
+	// Internal UART transmit
+	uint16_t uart_tx_queue_dma;
+	uint16_t uart_tx_interrupts;
+
+	// Internal UART receive
+	uint16_t uart_rx_preamble_ints;
+	uint16_t uart_rx_missed_preamble_ints;
+	uint16_t uart_rx_header_done;
+	uint16_t uart_rx_data_done;
+	uint16_t uart_rx_bad_hcrc;
+	//uint16_t uart_rx_bad_crc32;
+	uint16_t uart_rx_bad_dma;
+	uint16_t uart_rx_short_dma;
+	uint16_t uart_rx_buffers_full;
+
+	uint8_t  max_tx_buffers;                        // Maximum # of send buffers ever used
+	uint8_t  max_rx_buffers;                        // Maximum # of receive buffers ever used
+	} __attribute__((packed,aligned(4)));
+
+// Information for an OP_USB_NOTICE frame
+struct hf_usb_notice_data {
+	uint32_t extra_data;                        // Depends on notification code
+	char     message[];                         // NULL terminated, little endian byte order
+};
+
+
+#endif