blob: 295ee07b72473fc2c8b0ff3ff4ce811953f28a55 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassaa532332014-06-11 23:29:41 -06002/*
3 * Copyright (c) 2014 Google, Inc.
Simon Glassaa532332014-06-11 23:29:41 -06004 */
5
6#define IOTRACE_IMPL
7
8#include <common.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -05009#include <mapmem.h>
Simon Glass10453152019-11-14 12:57:30 -070010#include <time.h>
Simon Glassaa532332014-06-11 23:29:41 -060011#include <asm/io.h>
Simon Glass3db71102019-11-14 12:57:16 -070012#include <u-boot/crc.h>
Simon Glassaa532332014-06-11 23:29:41 -060013
14DECLARE_GLOBAL_DATA_PTR;
15
Simon Glassaa532332014-06-11 23:29:41 -060016/**
17 * struct iotrace - current trace status and checksum
18 *
19 * @start: Start address of iotrace buffer
Ramon Friede0212df2018-06-08 20:53:27 +030020 * @size: Actual size of iotrace buffer in bytes
21 * @needed_size: Needed of iotrace buffer in bytes
Simon Glassaa532332014-06-11 23:29:41 -060022 * @offset: Current write offset into iotrace buffer
Ramon Frieda74440b2018-05-30 23:09:58 +030023 * @region_start: Address of IO region to trace
24 * @region_size: Size of region to trace. if 0 will trace all address space
Simon Glassaa532332014-06-11 23:29:41 -060025 * @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;
Ramon Friede0212df2018-06-08 20:53:27 +030031 ulong needed_size;
Simon Glassaa532332014-06-11 23:29:41 -060032 ulong offset;
Ramon Frieda74440b2018-05-30 23:09:58 +030033 ulong region_start;
34 ulong region_size;
Simon Glassaa532332014-06-11 23:29:41 -060035 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
Ramon Frieda74440b2018-05-30 23:09:58 +030052 if (iotrace.region_size)
53 if ((ulong)ptr < iotrace.region_start ||
54 (ulong)ptr > iotrace.region_start + iotrace.region_size)
55 return;
56
Simon Glassaa532332014-06-11 23:29:41 -060057 /* 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));
Ramon Friede0212df2018-06-08 20:53:27 +030062 } 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;
Simon Glassaa532332014-06-11 23:29:41 -060066 }
Ramon Friede0212df2018-06-08 20:53:27 +030067
Ramon Friedb5e0e362018-05-30 23:09:59 +030068 rec->timestamp = timer_get_us();
Simon Glassaa532332014-06-11 23:29:41 -060069 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
Ramon Friede0212df2018-06-08 20:53:27 +030077 iotrace.needed_size += sizeof(struct iotrace_record);
Simon Glassaa532332014-06-11 23:29:41 -060078 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
Simon Glass9859dc72019-09-25 08:56:57 -060091void iotrace_writel(ulong value, void *ptr)
Simon Glassaa532332014-06-11 23:29:41 -060092{
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
Simon Glass9859dc72019-09-25 08:56:57 -0600107void iotrace_writew(ulong value, void *ptr)
Simon Glassaa532332014-06-11 23:29:41 -0600108{
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
Simon Glass9859dc72019-09-25 08:56:57 -0600123void iotrace_writeb(ulong value, void *ptr)
Simon Glassaa532332014-06-11 23:29:41 -0600124{
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
Ramon Frieda74440b2018-05-30 23:09:58 +0300139void 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
Simon Glassaa532332014-06-11 23:29:41 -0600157void 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
Ramon Friede0212df2018-06-08 20:53:27 +0300175void iotrace_get_buffer(ulong *start, ulong *size, ulong *needed_size, ulong *offset, ulong *count)
Simon Glassaa532332014-06-11 23:29:41 -0600176{
177 *start = iotrace.start;
178 *size = iotrace.size;
Ramon Friede0212df2018-06-08 20:53:27 +0300179 *needed_size = iotrace.needed_size;
Simon Glassaa532332014-06-11 23:29:41 -0600180 *offset = iotrace.offset;
181 *count = iotrace.offset / sizeof(struct iotrace_record);
182}