summaryrefslogtreecommitdiffstats
path: root/src/soc/nvidia/tegra210/chip.h
blob: d6afddeed0013a89122ca1d2e86411d38efba8ca (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
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef __SOC_NVIDIA_TEGRA210_CHIP_H__
#define __SOC_NVIDIA_TEGRA210_CHIP_H__
#include <soc/addressmap.h>
#include <stdint.h>
#include <soc/nvidia/tegra/dc.h>

struct soc_nvidia_tegra210_config {
	/*
	 * panel resolution
	 *  The two parameters below provides dc about panel spec.
	 */
	u32 xres;		/* the width of H display active area */
	u32 yres;		/* the height of V display active area */
	u32 framebuffer_bits_per_pixel;
	u32 color_depth;	/* color format */

	u64 display_controller;	/* dc block base address */
	u32 framebuffer_base;

	/*
	 * Technically, we can compute this. At the same time, some platforms
	 * might want to specify a specific size for their own reasons. If it
	 * is zero the soc code will compute it as
	 * xres*yres*framebuffer_bits_per_pixel/8
	 */
	u32 framebuffer_size;

	/*
	 * Framebuffer resolution
	 *  The two parameters below provides dc about framebuffer's sdram size.
	 *  When they are not the same as panel resolution, we need to program
	 *  dc's DDA_INCREMENT and some other registers to resize dc output.
	 */
	u32 display_xres;
	u32 display_yres;

	int href_to_sync;	/* HSYNC position with respect to line start */
	int hsync_width;	/* the width of HSYNC pulses */
	int hback_porch;	/* the distance between HSYNC trailing edge to
				   beginning of H display active area */
	int hfront_porch;	/* the distance between end of H display active
				   area to the leading edge of HSYNC */
	int vref_to_sync;
	int vsync_width;
	int vback_porch;
	int vfront_porch;
	int refresh;		/* display refresh rate */

	int pixel_clock;	/* dc pixel clock source rate */

	u32 panel_bits_per_pixel;

	/* dp specific fields */
	struct {
		/* pwm to use to set display contrast */
		int pwm;

		/* HPD related timing */
		int vdd_to_hpd_delay_ms;
		int hpd_unplug_min_us;
		int hpd_plug_min_us;
		int hpd_irq_min_us;

		/* The minimum link configuration settings */
		u32 lane_count;
		u32 enhanced_framing;
		u32 link_bw;
		u32 drive_current;
		u32 preemphasis;
		u32 postcursor;
	} dp;

	int win_opt;
	void *dc_data;
};

#endif /* __SOC_NVIDIA_TEGRA210_CHIP_H__ */