]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/iotrace.c
usb: dwc3: add dwc3 folder from linux kernel to u-boot
[people/ms/u-boot.git] / common / iotrace.c
CommitLineData
aa53233a
SG
1/*
2 * Copyright (c) 2014 Google, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#define IOTRACE_IMPL
8
9#include <common.h>
10#include <asm/io.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
14/* Support up to the machine word length for now */
15typedef ulong iovalue_t;
16
17enum iotrace_flags {
18 IOT_8 = 0,
19 IOT_16,
20 IOT_32,
21
22 IOT_READ = 0 << 3,
23 IOT_WRITE = 1 << 3,
24};
25
26/**
27 * struct iotrace_record - Holds a single I/O trace record
28 *
29 * @flags: I/O access type
30 * @addr: Address of access
31 * @value: Value written or read
32 */
33struct iotrace_record {
34 enum iotrace_flags flags;
35 phys_addr_t addr;
36 iovalue_t value;
37};
38
39/**
40 * struct iotrace - current trace status and checksum
41 *
42 * @start: Start address of iotrace buffer
43 * @size: Size of iotrace buffer in bytes
44 * @offset: Current write offset into iotrace buffer
45 * @crc32: Current value of CRC chceksum of trace records
46 * @enabled: true if enabled, false if disabled
47 */
48static struct iotrace {
49 ulong start;
50 ulong size;
51 ulong offset;
52 u32 crc32;
53 bool enabled;
54} iotrace;
55
56static void add_record(int flags, const void *ptr, ulong value)
57{
58 struct iotrace_record srec, *rec = &srec;
59
60 /*
61 * We don't support iotrace before relocation. Since the trace buffer
62 * is set up by a command, it can't be enabled at present. To change
63 * this we would need to set the iotrace buffer at build-time. See
64 * lib/trace.c for how this might be done if you are interested.
65 */
66 if (!(gd->flags & GD_FLG_RELOC) || !iotrace.enabled)
67 return;
68
69 /* Store it if there is room */
70 if (iotrace.offset + sizeof(*rec) < iotrace.size) {
71 rec = (struct iotrace_record *)map_sysmem(
72 iotrace.start + iotrace.offset,
73 sizeof(value));
74 }
75
76 rec->flags = flags;
77 rec->addr = map_to_sysmem(ptr);
78 rec->value = value;
79
80 /* Update our checksum */
81 iotrace.crc32 = crc32(iotrace.crc32, (unsigned char *)rec,
82 sizeof(*rec));
83
84 iotrace.offset += sizeof(struct iotrace_record);
85}
86
87u32 iotrace_readl(const void *ptr)
88{
89 u32 v;
90
91 v = readl(ptr);
92 add_record(IOT_32 | IOT_READ, ptr, v);
93
94 return v;
95}
96
97void iotrace_writel(ulong value, const void *ptr)
98{
99 add_record(IOT_32 | IOT_WRITE, ptr, value);
100 writel(value, ptr);
101}
102
103u16 iotrace_readw(const void *ptr)
104{
105 u32 v;
106
107 v = readw(ptr);
108 add_record(IOT_16 | IOT_READ, ptr, v);
109
110 return v;
111}
112
113void iotrace_writew(ulong value, const void *ptr)
114{
115 add_record(IOT_16 | IOT_WRITE, ptr, value);
116 writew(value, ptr);
117}
118
119u8 iotrace_readb(const void *ptr)
120{
121 u32 v;
122
123 v = readb(ptr);
124 add_record(IOT_8 | IOT_READ, ptr, v);
125
126 return v;
127}
128
129void iotrace_writeb(ulong value, const void *ptr)
130{
131 add_record(IOT_8 | IOT_WRITE, ptr, value);
132 writeb(value, ptr);
133}
134
135void iotrace_reset_checksum(void)
136{
137 iotrace.crc32 = 0;
138}
139
140u32 iotrace_get_checksum(void)
141{
142 return iotrace.crc32;
143}
144
145void iotrace_set_enabled(int enable)
146{
147 iotrace.enabled = enable;
148}
149
150int iotrace_get_enabled(void)
151{
152 return iotrace.enabled;
153}
154
155void iotrace_set_buffer(ulong start, ulong size)
156{
157 iotrace.start = start;
158 iotrace.size = size;
159 iotrace.offset = 0;
160 iotrace.crc32 = 0;
161}
162
163void iotrace_get_buffer(ulong *start, ulong *size, ulong *offset, ulong *count)
164{
165 *start = iotrace.start;
166 *size = iotrace.size;
167 *offset = iotrace.offset;
168 *count = iotrace.offset / sizeof(struct iotrace_record);
169}