]> Git Repo - J-u-boot.git/blame - common/iotrace.c
efi_loader: round the memory area in efi_add_memory_map()
[J-u-boot.git] / common / iotrace.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
aa53233a
SG
2/*
3 * Copyright (c) 2014 Google, Inc.
aa53233a
SG
4 */
5
6#define IOTRACE_IMPL
7
8#include <common.h>
0eb25b61 9#include <mapmem.h>
1045315d 10#include <time.h>
aa53233a 11#include <asm/io.h>
3db71108 12#include <u-boot/crc.h>
aa53233a
SG
13
14DECLARE_GLOBAL_DATA_PTR;
15
aa53233a
SG
16/**
17 * struct iotrace - current trace status and checksum
18 *
19 * @start: Start address of iotrace buffer
e0212dfa
RF
20 * @size: Actual size of iotrace buffer in bytes
21 * @needed_size: Needed of iotrace buffer in bytes
aa53233a 22 * @offset: Current write offset into iotrace buffer
a74440b2
RF
23 * @region_start: Address of IO region to trace
24 * @region_size: Size of region to trace. if 0 will trace all address space
aa53233a
SG
25 * @crc32: Current value of CRC chceksum of trace records
26 * @enabled: true if enabled, false if disabled
27 */
28static struct iotrace {
29 ulong start;
30 ulong size;
e0212dfa 31 ulong needed_size;
aa53233a 32 ulong offset;
a74440b2
RF
33 ulong region_start;
34 ulong region_size;
aa53233a
SG
35 u32 crc32;
36 bool enabled;
37} iotrace;
38
39static void add_record(int flags, const void *ptr, ulong value)
40{
41 struct iotrace_record srec, *rec = &srec;
42
43 /*
44 * We don't support iotrace before relocation. Since the trace buffer
45 * is set up by a command, it can't be enabled at present. To change
46 * this we would need to set the iotrace buffer at build-time. See
47 * lib/trace.c for how this might be done if you are interested.
48 */
49 if (!(gd->flags & GD_FLG_RELOC) || !iotrace.enabled)
50 return;
51
a74440b2
RF
52 if (iotrace.region_size)
53 if ((ulong)ptr < iotrace.region_start ||
54 (ulong)ptr > iotrace.region_start + iotrace.region_size)
55 return;
56
aa53233a
SG
57 /* Store it if there is room */
58 if (iotrace.offset + sizeof(*rec) < iotrace.size) {
59 rec = (struct iotrace_record *)map_sysmem(
60 iotrace.start + iotrace.offset,
61 sizeof(value));
e0212dfa
RF
62 } else {
63 WARN_ONCE(1, "WARNING: iotrace buffer exhausted, please check needed length using \"iotrace stats\"\n");
64 iotrace.needed_size += sizeof(struct iotrace_record);
65 return;
aa53233a 66 }
e0212dfa 67
b5e0e360 68 rec->timestamp = timer_get_us();
aa53233a
SG
69 rec->flags = flags;
70 rec->addr = map_to_sysmem(ptr);
71 rec->value = value;
72
73 /* Update our checksum */
74 iotrace.crc32 = crc32(iotrace.crc32, (unsigned char *)rec,
75 sizeof(*rec));
76
e0212dfa 77 iotrace.needed_size += sizeof(struct iotrace_record);
aa53233a
SG
78 iotrace.offset += sizeof(struct iotrace_record);
79}
80
81u32 iotrace_readl(const void *ptr)
82{
83 u32 v;
84
85 v = readl(ptr);
86 add_record(IOT_32 | IOT_READ, ptr, v);
87
88 return v;
89}
90
9859dc76 91void iotrace_writel(ulong value, void *ptr)
aa53233a
SG
92{
93 add_record(IOT_32 | IOT_WRITE, ptr, value);
94 writel(value, ptr);
95}
96
97u16 iotrace_readw(const void *ptr)
98{
99 u32 v;
100
101 v = readw(ptr);
102 add_record(IOT_16 | IOT_READ, ptr, v);
103
104 return v;
105}
106
9859dc76 107void iotrace_writew(ulong value, void *ptr)
aa53233a
SG
108{
109 add_record(IOT_16 | IOT_WRITE, ptr, value);
110 writew(value, ptr);
111}
112
113u8 iotrace_readb(const void *ptr)
114{
115 u32 v;
116
117 v = readb(ptr);
118 add_record(IOT_8 | IOT_READ, ptr, v);
119
120 return v;
121}
122
9859dc76 123void iotrace_writeb(ulong value, void *ptr)
aa53233a
SG
124{
125 add_record(IOT_8 | IOT_WRITE, ptr, value);
126 writeb(value, ptr);
127}
128
129void iotrace_reset_checksum(void)
130{
131 iotrace.crc32 = 0;
132}
133
134u32 iotrace_get_checksum(void)
135{
136 return iotrace.crc32;
137}
138
a74440b2
RF
139void iotrace_set_region(ulong start, ulong size)
140{
141 iotrace.region_start = start;
142 iotrace.region_size = size;
143}
144
145void iotrace_reset_region(void)
146{
147 iotrace.region_start = 0;
148 iotrace.region_size = 0;
149}
150
151void iotrace_get_region(ulong *start, ulong *size)
152{
153 *start = iotrace.region_start;
154 *size = iotrace.region_size;
155}
156
aa53233a
SG
157void iotrace_set_enabled(int enable)
158{
159 iotrace.enabled = enable;
160}
161
162int iotrace_get_enabled(void)
163{
164 return iotrace.enabled;
165}
166
167void iotrace_set_buffer(ulong start, ulong size)
168{
169 iotrace.start = start;
170 iotrace.size = size;
171 iotrace.offset = 0;
172 iotrace.crc32 = 0;
173}
174
e0212dfa 175void iotrace_get_buffer(ulong *start, ulong *size, ulong *needed_size, ulong *offset, ulong *count)
aa53233a
SG
176{
177 *start = iotrace.start;
178 *size = iotrace.size;
e0212dfa 179 *needed_size = iotrace.needed_size;
aa53233a
SG
180 *offset = iotrace.offset;
181 *count = iotrace.offset / sizeof(struct iotrace_record);
182}
This page took 0.341648 seconds and 4 git commands to generate.