summaryrefslogtreecommitdiffstats
path: root/libpdbg/htm.c
blob: ee6cf1e032924a5c81f86ce5be3474d0b166c25e (plain)
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
/* Copyright 2017 IBM Corp.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * 	http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#define _GNU_SOURCE
#include <fcntl.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>

#include "operations.h"
#include "bitutils.h"
#include "target.h"

#define HTM_ERR(x) ({int rc = x; if (rc) {PR_ERROR("HTM Error %d %s:%d\n", \
			rc, __FILE__, __LINE__);} \
			rc;})
/*
 * #define PR_PERL(x, args...) \
 *	fprintf(stderr, x, ##args)
 */
#define PR_PERL(...)

#define MIN(x,y) ((x < y) ? x : y)

#define DEBUGFS_MEMTRACE "/sys/kernel/debug/powerpc/memtrace"
#define DEBUGFS_MEMTRACE_ENABLE DEBUGFS_MEMTRACE"/enable"

#define HTM_COLLECTION_MODE		0
#define	  HTM_MODE_ENABLE		PPC_BIT(0)
#define	  HTM_MODE_CONTENT_SEL		PPC_BITMASK(1,2)
#define   HTM_MODE_CAPTURE		PPC_BITMASK(4,12)
#define     HTM_MODE_CAPTURE_PMISC	PPC_BIT(5)
#define     HTM_MODE_CRESP_PRECISE	PPC_BIT(6)
#define	  HTM_MODE_WRAP			PPC_BIT(13)
#define HTM_MEMORY_CONF			1
#define   HTM_MEM_ALLOC			PPC_BIT(0)
#define   HTM_MEM_SCOPE			PPC_BITMASK(1,3)
#define   HTM_MEM_PRIORITY		PPC_BIT(4)
#define   HTM_MEM_SIZE_SMALL		PPC_BIT(5)
#define   HTM_MEM_BASE			PPC_BITMASK(8,39)
#define	  HTM_MEM_SIZE			PPC_BITMASK(40,48)
#define HTM_STATUS			2
#define   HTM_STATUS_MASK		PPC_BITMASK(2,19)
#define   HTM_STATUS_CRESP_OV		PPC_BIT(2)
#define	  HTM_STATUS_REPAIR		PPC_BIT(3)
#define   HTM_STATUS_BUF_WAIT		PPC_BIT(4)
#define   HTM_STATUS_TRIG_DROPPED	PPC_BIT(5)
#define   HTM_STATUS_ADDR_ERROR		PPC_BIT(6)
#define   HTM_STATUS_REC_DROPPED	PPC_BIT(7)
#define   HTM_STATUS_INIT		PPC_BIT(8)
#define   HTM_STATUS_PREREQ		PPC_BIT(9)
#define   HTM_STATUS_READY		PPC_BIT(10)
#define   HTM_STATUS_TRACING		PPC_BIT(11)
#define   HTM_STATUS_PAUSED		PPC_BIT(12)
#define   HTM_STATUS_FLUSH		PPC_BIT(13)
#define   HTM_STATUS_COMPLETE		PPC_BIT(14)
#define   HTM_STATUS_ENABLE		PPC_BIT(15)
#define   HTM_STATUS_STAMP		PPC_BIT(16)
#define   HTM_STATUS_SCOM_ERROR		PPC_BIT(17)
#define   HTM_STATUS_PARITY_ERROR	PPC_BIT(18)
#define   HTM_STATUS_INVALID_CRESP	PPC_BIT(19)
#define   HTM_STATUS_STATE_MASK		(PPC_BITMASK(8,16) | HTM_STATUS_REPAIR)
#define	  HTM_STATUS_ERROR_MASK		(HTM_STATUS_CRESP_OV | PPC_BITMASK(4,7) | PPC_BITMASK(17,19))
#define HTM_LAST_ADDRESS		3
#define   HTM_LAST_ADDRESS_MASK		PPC_BITMASK(8,56)
#define HTM_SCOM_TRIGGER		4
#define	  HTM_TRIG_START		PPC_BIT(0)
#define   HTM_TRIG_STOP			PPC_BIT(1)
#define   HTM_TRIG_PAUSE		PPC_BIT(2)
#define   HTM_TRIG_STOP_ALT		PPC_BIT(3)
#define   HTM_TRIG_RESET		PPC_BIT(4)
#define   HTM_TRIG_MARK_VALID		PPC_BIT(5)
#define   HTM_TRIG_MARK_TYPE		PPC_BITMASK(6,15)
#define HTM_TRIGGER_CONTROL		5
#define   HTM_CTRL_TRIG			PPC_BITMASK(0,1)
#define   HTM_CTRL_MASK			PPC_BITMASK(4,5)
#define   HTM_CTRL_XSTOP_STOP		PPC_BIT(13)
#define HTM_FILTER_CONTROL		6
#define   HTM_FILTER_RCMD_SCOPE		PPC_BITMASK(17,19)
#define   HTM_FILTER_RCMD_SOURCE	PPC_BITMASK(20,21)
#define   HTM_FILTER_CRESP_PATTERN	PPC_BITMASK(27,31)
#define   HTM_FILTER_MASK		PPC_BITMASK(32,54)
#define   HTM_FILTER_CRESP_MASK		PPC_BITMASK(59,63)
#define HTM_TTYPE_FILTER_CONTROL	7
#define   HTM_TTYPE_TYPE_MASK		PPC_BITMASK(17,23)
#define   HTM_TTYPE_SIZE_MASK		PPC_BITMASK(24,31)
#define HTM_CONFIGURATION		8
#define   HTM_CONF_HANG_DIV_RATIO	PPC_BITMASK(0,4)
#define   HTM_CONF_RTY_DROP_COUNT	PPC_BITMASK(5,8)
#define   HTM_CONF_DROP_PRIORITY_INC	PPC_BIT(9)
#define   HTM_CONF_RETRY_BACKOFF	PPC_BIT(10)
#define   HTM_CONF_OPERALIONAL_HANG	PPC_BIT(11)
#define HTM_FLEX_MUX			9
#define   HTM_FLEX_MUX_MASK		PPC_BITMASK(0,35)
#define   HTM_FLEX_DEFAULT		0xCB3456129

enum htm_state {
	INIT,
	REPAIR,
	PREREQ,
	READY,
	TRACING,
	PAUSED,
	FLUSH,
	COMPLETE,
	ENABLE,
	STAMP,
	UNINITIALIZED,
};

enum htm_error {
	NONE,
	CRESP_OV,
	BUF_WAIT,
	TRIGGER_DROPPED,
	ADDR_ERROR,
	RECORD_DROPPED,
	SCOM_ERROR,
	PARITY_ERROR,
	INVALID_CRESP,
};

enum htm_size {
	MEM_16MB,
	MEM_32MB,
	MEM_64MB,
	MEM_128MB,
	MEM_256MB,
	MEM_512MB,
	MEM_1GB,
	MEM_2GB,
	MEM_4GB,
	MEM_8GB,
	MEM_16GB,
	MEM_32GB,
	MEM_64GB,
	MEM_128GB,
	MEM_256GB,
};

struct htm_status {
	enum htm_state state;
	enum htm_error error;
	bool mem_size_select;
	uint16_t mem_size;
	uint64_t mem_base;
	uint64_t mem_last;
	uint64_t raw;
};

static struct htm *check_and_convert(struct pdbg_target *target)
{
	if (strcmp(target->class,"htm"))
		return NULL;

	return target_to_htm(target);
}

int htm_start(struct pdbg_target *target)
{
	struct htm *htm = check_and_convert(target);

	return htm ? htm->start(htm) : -1;
}

int htm_stop(struct pdbg_target *target)
{
	struct htm *htm = check_and_convert(target);

	return htm ? htm->stop(htm) : -1;
}

int htm_reset(struct pdbg_target *target, uint64_t *base, uint64_t *size)
{
	struct htm *htm = check_and_convert(target);

	return htm ? htm->reset(htm, base, size) : -1;
}

int htm_pause(struct pdbg_target *target)
{
	struct htm *htm = check_and_convert(target);

	return htm ? htm->pause(htm) : -1;
}

int htm_status(struct pdbg_target *target)
{
	struct htm *htm = check_and_convert(target);

	return htm ? htm->status(htm) : -1;
}

int htm_dump(struct pdbg_target *target, uint64_t size, const char *filename)
{
	struct htm *htm = check_and_convert(target);

	if (!htm || !filename)
		return -1;

	return htm->dump(htm, 0, filename);
}

static int get_status(struct htm *htm, struct htm_status *status)
{
	uint64_t val;

	if (HTM_ERR(pib_read(&htm->target, HTM_STATUS, &status->raw)))
		return -1;

	switch (status->raw & HTM_STATUS_ERROR_MASK) {
	case HTM_STATUS_CRESP_OV:
		status->error = CRESP_OV;
		break;
	case HTM_STATUS_BUF_WAIT:
		status->error = BUF_WAIT;
		break;
	case HTM_STATUS_TRIG_DROPPED:
		status->error = TRIGGER_DROPPED;
		break;
	case HTM_STATUS_ADDR_ERROR:
		status->error = ADDR_ERROR;
		break;
	case HTM_STATUS_REC_DROPPED:
		status->error = RECORD_DROPPED;
		break;
	case HTM_STATUS_SCOM_ERROR:
		status->error = SCOM_ERROR;
		break;
	case HTM_STATUS_PARITY_ERROR:
		status->error = PARITY_ERROR;
		break;
	case HTM_STATUS_INVALID_CRESP:
		status->error = INVALID_CRESP;
		break;
	default:
		status->error = NONE;
	}

	switch (status->raw & HTM_STATUS_STATE_MASK) {
	case HTM_STATUS_REPAIR:
		status->state = REPAIR;
		break;
	case HTM_STATUS_INIT:
		status->state = INIT;
		break;
	case HTM_STATUS_PREREQ:
		status->state = PREREQ;
		break;
	case HTM_STATUS_READY:
		status->state = READY;
		break;
	case HTM_STATUS_TRACING:
		status->state = TRACING;
		break;
	case HTM_STATUS_PAUSED:
		status->state = PAUSED;
		break;
	case HTM_STATUS_FLUSH:
		status->state = FLUSH;
		break;
	case HTM_STATUS_COMPLETE:
		status->state = COMPLETE;
		break;
	case HTM_STATUS_ENABLE:
		status->state = ENABLE;
		break;
	case HTM_STATUS_STAMP:
		status->state = STAMP;
		break;
	default:
		status->state = UNINITIALIZED;
	}

	if (HTM_ERR(pib_read(&htm->target, HTM_MEMORY_CONF, &val)))
		return -1;

	status->mem_size_select = val & HTM_MEM_SIZE_SMALL;
	status->mem_size = GETFIELD(HTM_MEM_SIZE,val);
	status->mem_base = val & HTM_MEM_BASE;

	if (HTM_ERR(pib_read(&htm->target, HTM_LAST_ADDRESS, &status->mem_last)))
		return -1;

	return 0;
}

static int do_htm_stop(struct htm *htm)
{
	struct htm_status status;
	get_status(htm, &status);
	if (HTM_ERR(get_status(htm, &status)))
		return -1;

	if (status.state == UNINITIALIZED) {
		PR_PERL("* Skipping STOP trigger, HTM appears uninitialized\n");
		return -1;
	}
	if (status.state == TRACING) {
		PR_PERL("* Sending STOP trigger to HTM\n");
		if (HTM_ERR(pib_write(&htm->target, HTM_SCOM_TRIGGER, HTM_TRIG_STOP)))
			return -1;
	} else {
		PR_PERL("* Skipping STOP trigger, HTM is not running\n");
	}
	return 1;
}

/*
 * This sequence will trigger all HTM to start at "roughly" the same
 * time.
 * We don't have any documentation on what the commands are, they do
 * work on POWER9 dd2.0
 *
 * Alternatively, writing a 1 into the HTM Start Trigger bit works
 * too, it has to be done for each HTM but its much cleaner and
 * clearly what is going on.
 */
#if 0
static int do_adu_magic(struct pdbg_target *target, uint32_t index, uint64_t *arg1, uint64_t *arg2)
{
	uint64_t val;
	int i = 0;

	/*
	 * pib_write(target, 1, PPC_BIT(11); get the lock, but since
	 * we don't check, why bother?
	 */
	if (HTM_ERR(pib_write(target, 1, PPC_BIT(3) | PPC_BIT(4) | PPC_BIT(14))))
		return -1;

	/* If bothering with the lock, write PPC_BIT(11) here */
	if (HTM_ERR(pib_write(target, 1, 0)))
		return -1;

	if (HTM_ERR(pib_write(target, 0, PPC_BIT(46))))
		return -1;

	if (HTM_ERR(pib_write(target, 1, 0x2210aab140000000)))
		return -1;

	do {
		sleep(1);
		if (HTM_ERR(pib_read(target, 3, &val)))
			return -1;
		i++;
	} while (val != 0x2000000000000004 && i < 10);

	if (val != 0x2000000000000004) {
		PR_PERL("Unexpected status on HTM start trigger PMISC command: 0x%"
				PRIx64 "\n", val);
		return -1;
	}

	/*
	 * If we locked the adu before we should be polite and
	 * pib_write(target, 1, 0);
	 */

	return 1;
}
#endif

static int do_setup(struct htm *htm)
{
	uint64_t memtrace_size, val;
	FILE *file;

	file = fopen(DEBUGFS_MEMTRACE_ENABLE, "r+");
	if (!file) {
		PR_ERROR("Couldn't open %s: %m\n", DEBUGFS_MEMTRACE_ENABLE);
		return -1;
	}

	if (fscanf(file, "0x%016" PRIx64 "\n", &memtrace_size) != 1) {
		PR_ERROR("fscanf() didn't match: %m\n");
		fclose(file);
		return -1;
	}

	if (memtrace_size == 0) {
		uint64_t size = 1 << 30; /* 1GB... TODO */
		int rc = fprintf(file, "0x%016" PRIx64 "\n", size);
		PR_DEBUG("memtrace_size is zero! Informing the kernel!\n");
		if (rc <= 0) {
			PR_ERROR("Couldn't set memtrace_size\n");
			PR_ERROR("Attempted to write: 0x%016" PRIx64 " got %d: %m\n", size, rc);
			fclose(file);
			return -1;
		}

	}
	fclose(file);

	/*
	 * The constant is the VGTARGET field, taken from a cronus
	 * booted system which presumably set it up correctly
	 */
	if (HTM_ERR(pib_write(&htm->target, HTM_COLLECTION_MODE,
					HTM_MODE_ENABLE |
					HTM_MODE_CRESP_PRECISE |
					HTM_MODE_WRAP |
					0xFFFF000000)))
		return -1;

	/* Stop on core xstop */
	if (HTM_ERR(pib_write(&htm->target, HTM_TRIGGER_CONTROL, HTM_CTRL_XSTOP_STOP)))
		return -1;;

	/*
	 * These values are taken from a cronus booted system.
	 */
	if (HTM_ERR(pib_write(&htm->target, HTM_FILTER_CONTROL,
			HTM_FILTER_MASK | /* no pattern matching */
			HTM_FILTER_CRESP_MASK))) /* no pattern matching */
		return -1;

	if (HTM_ERR(pib_write(&htm->target, HTM_TTYPE_FILTER_CONTROL,
			HTM_TTYPE_TYPE_MASK | /* no pattern matching */
			HTM_TTYPE_SIZE_MASK ))) /* no pattern matching */
		return -1;

	if (HTM_ERR(pib_read(&htm->target, HTM_FLEX_MUX, &val)))
		return -1;

	if (GETFIELD(HTM_FLEX_MUX_MASK, val) != HTM_FLEX_DEFAULT) {
		PR_ERROR("The HTM Flex wasn't default value\n");
		return -1;
	}

	return 0;
}

static int is_startable(struct htm_status *status)
{
	return (status->state == READY || status->state == PAUSED);
}

static int do_htm_start(struct htm *htm)
{
	struct htm_status status;

	if (HTM_ERR(get_status(htm, &status)))
		return -1;

	if (!is_startable(&status)) {
		PR_ERROR("HTM not in a startable state!\n");
		return -1;
	}

	PR_PERL("* Sending START trigger to HTM\n");
	if (HTM_ERR(pib_write(&htm->target, HTM_SCOM_TRIGGER, HTM_TRIG_MARK_VALID)))
		return -1;

	if (HTM_ERR(pib_write(&htm->target, HTM_SCOM_TRIGGER, HTM_TRIG_START)))
		return -1;

	/*
	 * Instead of the HTM_TRIG_START, this is where you might want
	 * to call do_adu_magic()
	 * for_each_child_target("adu", htm->target.dn->parent->target, do_adu_magic, NULL, NULL);
	 * see what I mean?
	 */

	return 1;
}

static char *get_debugfs_file(struct htm *htm, const char *file)
{
	uint32_t chip_id;
	char *filename;

	chip_id = dt_get_chip_id(htm->target.dn);
	if (chip_id == -1) {
		PR_ERROR("Couldn't find a chip id\n");
		return NULL;
	}

	if (asprintf(&filename, "%s/%08x/%s", DEBUGFS_MEMTRACE, chip_id, file) == -1) {
		PR_ERROR("Couldn't asprintf() '%s/%08x/size': %m\n",
				DEBUGFS_MEMTRACE, chip_id);
		return NULL;
	}

	return filename;
}

static int get_trace_size(struct htm *htm, uint64_t *size)
{
	char *filename;
	FILE *file;
	int rc;

	filename = get_debugfs_file(htm, "size");
	if (!filename)
		return -1;

	file = fopen(filename, "r");
	if (file == NULL) {
		PR_ERROR("Failed to open %s: %m\n", filename);
		free(filename);
		return -1;
	}

	rc = fscanf(file, "0x%016" PRIx64 "\n", size);
	fclose(file);
	free(filename);

	return !(rc == 1);
}

static int get_trace_base(struct htm *htm, uint64_t *base)
{
	char *filename;
	FILE *file;
	int rc;

	filename = get_debugfs_file(htm, "start");
	if (!filename)
		return -1;

	file = fopen(filename, "r");
	if (file == NULL) {
		PR_ERROR("Failed to open %s: %m\n", filename);
		free(filename);
		return -1;
	}


	rc = fscanf(file, "0x%016" PRIx64 "\n", base);
	fclose(file);
	free(filename);

	return !(rc == 1);
}

static bool is_resetable(struct htm_status *status)
{
	return status->state == COMPLETE || status->state == REPAIR || status->state == INIT;
}

static bool is_configured(struct htm *htm)
{
	struct htm_status status;
	uint64_t val;

	if (HTM_ERR(get_status(htm, &status)))
		return false;

	/*
	 * We've most likely just booted and everything is zeroed
	 */
	if (status.raw == 0 && status.mem_base == 0 && status.mem_size == 0)
		return false;

	if (HTM_ERR(pib_read(&htm->target, HTM_COLLECTION_MODE, &val)))
		return false;

	if (!(val & HTM_MODE_ENABLE))
		return false;

	return true;
}

static int do_htm_reset(struct htm *htm, uint64_t *r_base, uint64_t *r_size)
{
	struct htm_status status;
	uint64_t i, size, base, val;
	uint16_t mem_size;

	if (HTM_ERR(get_status(htm, &status)))
		return -1;

	if (!is_resetable(&status) || !is_configured(htm)) {
		if (HTM_ERR(do_setup(htm))) {
			PR_ERROR("Couldn't setup HTM during reset\n");
			return -1;
		}
	}

	if (HTM_ERR(get_trace_size(htm, &size)))
		return -1;

	if (HTM_ERR(get_trace_base(htm, &base)))
		return -1;

	if (HTM_ERR(pib_read(&htm->target, HTM_MEMORY_CONF, &val)))
		return -1;

	/*
	 * Tell HTM that we've alloced mem, perhaps do this in probe(),
	 * HTM searches for 0 -> 1 transition, so clear it now
	 */
	val &= ~HTM_MEM_ALLOC;
	if (HTM_ERR(pib_write(&htm->target, HTM_MEMORY_CONF, val)))
		return -1;

	if (HTM_ERR(pib_read(&htm->target, HTM_MEMORY_CONF, &val)))
		return -1;

	/* Put mem alloc back in */
	val |= HTM_MEM_ALLOC;

	mem_size = 0;
	i = size;
	while ((!((val & HTM_MEM_SIZE_SMALL) && i>>20 == 16)) && (!(!(val & HTM_MEM_SIZE_SMALL) && i>>20 == 512))) {
		mem_size <<= 1;
		mem_size++;
		i >>= 1;
	}

	val = SETFIELD(HTM_MEM_SIZE, val, mem_size);
	/*
	 * Clear out the base
	 * Don't use SETFIELD to write the base in since the value is
	 * already shifted correct as read from the kernel, or'ing it
	 * in works fine.
	 */
	val = SETFIELD(HTM_MEM_BASE, val, 0);
	val |= base;

	if (HTM_ERR(pib_write(&htm->target, HTM_MEMORY_CONF, val)))
		return -1;

	if (HTM_ERR(pib_write(&htm->target, HTM_SCOM_TRIGGER, HTM_TRIG_RESET)))
		return -1;

	if (r_size)
		*r_size = size;
	if (r_base)
		*r_base = base;
	return 1;
}

static int do_htm_pause(struct htm *htm)
{
	struct htm_status status;

	if (HTM_ERR(get_status(htm, &status)))
		return -1;

	if (status.state == UNINITIALIZED) {
		PR_PERL("* Skipping PAUSE trigger, HTM appears uninitialized\n");
		return 0;
	}

	PR_PERL("* Sending PAUSE trigger to HTM\n");
	if (HTM_ERR(pib_write(&htm->target, HTM_SCOM_TRIGGER, HTM_TRIG_PAUSE)))
		return -1;

	return 0;
}

static int do_htm_status(struct htm *htm)
{
	struct htm_status status;
	uint64_t val, total;
	int i;

	PR_DEBUG("HTM register dump:\n");
	for (i = 0; i < 10; i++) {
		if (HTM_ERR(pib_read(&htm->target, i, &val)))
			PR_ERROR("Couldn't read HTM reg: %d\n", i);

		PR_DEBUG(" %d: 0x%016" PRIx64 "\n", i, val);
	}
	putchar('\n');

	PR_INFO("* Checking HTM status...\n");
	if (HTM_ERR(get_status(htm, &status)))
		return -1;

	if (status.mem_size_select)
		total = 16;
	else
		total = 512;

	while (status.mem_size) {
		total <<= 1;
		status.mem_size >>= 1;
	}

	PR_DEBUG("HTM status : 0x%016" PRIx64 "\n", status.raw);
	PR_INFO("State: ");
	switch (status.state) {
	case INIT:
		PR_INFO("INIT");
		break;
	case PREREQ:
		PR_INFO("PREREQ");
		break;
	case READY:
		PR_INFO("READY");
		break;
	case TRACING:
		PR_INFO("TRACING");
		break;
	case PAUSED:
		PR_INFO("PAUSED");
		break;
	case FLUSH:
		PR_INFO("FLUSH");
		break;
	case COMPLETE:
		PR_INFO("COMPLETE");
		break;
	case ENABLE:
		PR_INFO("ENABLE");
		break;
	case STAMP:
		PR_INFO("STAMP");
		break;
	default:
		PR_INFO("UNINITIALIZED");
	}
	PR_INFO("\n");

	PR_INFO("HTM base addr : 0x%016" PRIx64 ", size: 0x%016" PRIx64 " ",
			status.mem_base, total << 20);
	if (total > 512)
		PR_INFO("[ %" PRIu64 "GB ]", total >> 10);
	else
		PR_INFO("[ %" PRIu64 "MB ]", total);
	PR_INFO("\n");
	return 1;
}

static int do_htm_dump(struct htm *htm, uint64_t size, const char *basename)
{
	char *trace_file, *dump_file;
	struct htm_status status;
	uint64_t trace[0x1000];
	int trace_fd, dump_fd;
	uint32_t chip_id;
	size_t r;

	if (!basename)
		return -1;

	if (HTM_ERR(get_status(htm, &status)))
		return -1;

	if (status.state != COMPLETE) {
		PR_PERL("* Skipping DUMP tigger, HTM is not in complete state\n");
		return -1;
	}

	chip_id = dt_get_chip_id(htm->target.dn);
	if (chip_id == -1)
		return -1;

	/* If size is zero they must want the entire thing */
	if (size == 0)
		size = status.mem_last - status.mem_base;

	if (status.mem_last - status.mem_base > size) {
		PR_INFO("Requested size is larger than trace 0x%" PRIx64" vs 0x%" PRIx64 "\n",
				size, status.mem_last - status.mem_base);
		size = status.mem_last - status.mem_base;
		PR_INFO("Truncating request to a maxiumum of 0x%" PRIx64 "bytes\n", size);
	}

	trace_file = get_debugfs_file(htm, "trace");
	if (!trace_file)
		return -1;

	trace_fd = open(trace_file, O_RDWR);
	if (trace_fd == -1) {
		PR_ERROR("Failed to open %s: %m\n", trace_file);
		free(trace_file);
		return -1;
	}

	if (asprintf(&dump_file, "%d.%d-%s", chip_id, htm->target.index, basename) == -1) {
		free(trace_file);
		close(trace_fd);
		return -1;
	}
	dump_fd = open(dump_file, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
	if (dump_fd == -1) {
		PR_ERROR("Failed to open %s: %m\n", dump_file);
		free(dump_file);
		free(trace_file);
		close(trace_fd);
		return -1;
	}

	while (size) {
		r = read(trace_fd, &trace, MIN(sizeof(trace), size));
		if (r == -1) {
			PR_ERROR("Failed to read from %s: %m\n", trace_file);
			free(trace_file);
			free(dump_file);
			close(trace_fd);
			close(dump_fd);
			return -1;
		}

		if (write(dump_fd, &trace, r) != r)
			PR_ERROR("Short write!\n");

		size -= r;
	}

	free(trace_file);
	free(dump_file);
	close(trace_fd);
	close(dump_fd);
	return 1;
}

static int htm_probe(struct pdbg_target *target)
{
	uint64_t val;

	if (access(DEBUGFS_MEMTRACE, F_OK) != 0) {
		PR_DEBUG("Couldn't open debugfs\n");
		return -1;
	}

	pib_read(target, HTM_FLEX_MUX, &val);
	if (GETFIELD(HTM_FLEX_MUX_MASK, val) != HTM_FLEX_DEFAULT) {
		PR_DEBUG("FLEX_MUX not default\n");
		return -1;
	}

	return 0;
}

struct htm htm = {
	.target = {
		.name =	"HTM",
		.compatible = "ibm,htm",
		.class = "htm",
		.probe = htm_probe,
	},
	.start = do_htm_start,
	.stop = do_htm_stop,
	.reset = do_htm_reset,
	.pause = do_htm_pause,
	.status = do_htm_status,
	.dump = do_htm_dump,
};
DECLARE_HW_UNIT(htm);
OpenPOWER on IntegriCloud