blob: c2e7fb500d3f943cadd5afe503998c8d128f6945 [file] [log] [blame]
Ronald G. Minnich161ccc72013-04-05 13:35:29 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2013 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef CPU_SAMSUNG_EXYNOS5250_H
21#define CPU_SAMSUNG_EXYNOS5250_H
22
Stefan Reinauer2ad63c22013-05-17 11:52:45 -070023#include "gpio.h"
24
Ronald G. Minnich161ccc72013-04-05 13:35:29 -070025struct cpu_samsung_exynos5250_config {
26 /* special magic numbers! */
27 int clkval_f;
28 int upper_margin;
29 int lower_margin;
30 int vsync;
31 int left_margin;
32 int right_margin;
33 int hsync;
34
35 int xres;
36 int yres;
Ronald G. Minnich9518b562013-09-19 16:45:22 -070037 int framebuffer_bits_per_pixel;
Ronald G. Minnich161ccc72013-04-05 13:35:29 -070038
Stefan Reinauer2ad63c22013-05-17 11:52:45 -070039 int usb_vbus_gpio;
40 int usb_hsic_gpio;
41
Ronald G. Minnich161ccc72013-04-05 13:35:29 -070042 u32 lcdbase;
43};
44
45#endif /* CPU_SAMSUNG_EXYNOS5250_H */