blob: 66e596077370a88ef341c179145b71598ad2fe37 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass2ea09c82015-04-28 20:25:07 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 *
5 * (C) Copyright 2000-2002
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glass2ea09c82015-04-28 20:25:07 -06007 */
8
9#ifndef __DISPLAY_OPTIONS_H
10#define __DISPLAY_OPTIONS_H
11
Tom Rinidcda1f22023-11-01 12:28:07 -040012#include <linux/types.h>
13
Simon Glass2ea09c82015-04-28 20:25:07 -060014/**
15 * print_size() - Print a size with a suffix
16 *
17 * Print sizes as "xxx KiB", "xxx.y KiB", "xxx MiB", "xxx.y MiB",
18 * xxx GiB, xxx.y GiB, etc as needed; allow for optional trailing string
19 * (like "\n")
20 *
21 * @size: Size to print
22 * @suffix String to print after the size
23 */
24void print_size(uint64_t size, const char *suffix);
25
26/**
Simon Glass33eac2d2015-04-29 07:56:43 -060027 * print_freq() - Print a frequency with a suffix
28 *
Heinrich Schuchardtdcf16722020-10-08 22:23:23 +020029 * Print frequencies as "x.xx GHz", "xxx kHz", etc as needed; allow for
Simon Glass33eac2d2015-04-29 07:56:43 -060030 * optional trailing string (like "\n")
31 *
32 * @freq: Frequency to print in Hz
33 * @suffix String to print after the frequency
34 */
35void print_freq(uint64_t freq, const char *suffix);
36
37/**
Simon Glass2ea09c82015-04-28 20:25:07 -060038 * print_buffer() - Print data buffer in hex and ascii form
39 *
40 * Data reads are buffered so that each memory address is only read once.
41 * This is useful when displaying the contents of volatile registers.
42 *
43 * @addr: Starting address to display at start of line
44 * @data: pointer to data buffer
45 * @width: data value width. May be 1, 2, or 4.
46 * @count: number of values to display
47 * @linelen: Number of values to print per line; specify 0 for default length
48 */
49int print_buffer(ulong addr, const void *data, uint width, uint count,
50 uint linelen);
51
Simon Glass0cceb992021-05-08 07:00:05 -060052/*
53 * Maximum length of an output line is when width == 1
54 * 9 for address,
55 * a space, two hex digits and an ASCII character for each byte
56 * 2 spaces between the hex and ASCII
57 * \0 terminator
58 */
59#define HEXDUMP_MAX_BUF_LENGTH(bytes) (9 + (bytes) * 4 + 3)
60
61/**
62 * hexdump_line() - Print out a single line of a hex dump
63 *
64 * @addr: Starting address to display at start of line
65 * @data: pointer to data buffer
66 * @width: data value width. May be 1, 2, or 4.
67 * @count: number of values to display
68 * @linelen: Number of values to print per line; specify 0 for default length
69 * @out: Output buffer to hold the dump
70 * @size: Size of output buffer in bytes
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010071 * Return: number of bytes processed, if OK, -ENOSPC if buffer too small
Simon Glass0cceb992021-05-08 07:00:05 -060072 *
73 */
74int hexdump_line(ulong addr, const void *data, uint width, uint count,
75 uint linelen, char *out, int size);
76
Simon Glass2ea09c82015-04-28 20:25:07 -060077/**
78 * display_options() - display the version string / build tag
79 *
80 * This displays the U-Boot version string. If a build tag is available this
81 * is displayed also.
82 */
83int display_options(void);
84
Simon Glass6c519f22017-06-16 12:51:42 -060085/* Suggested length of the buffer to pass to display_options_get_banner() */
86#define DISPLAY_OPTIONS_BANNER_LENGTH 200
87
88/**
89 * display_options_get_banner() - Get the U-Boot banner as a string
90 *
91 * This returns the U-Boot banner string
92 *
93 * @newlines: true to include two newlines at the start
94 * @buf: place to put string
95 * @size: Size of buf (string is truncated to fit)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010096 * Return: buf
Simon Glass6c519f22017-06-16 12:51:42 -060097 */
98char *display_options_get_banner(bool newlines, char *buf, int size);
99
100/* This function is used for testing only */
101char *display_options_get_banner_priv(bool newlines, const char *build_tag,
102 char *buf, int size);
103
Simon Glass2ea09c82015-04-28 20:25:07 -0600104#endif