soc: Remove copyright notices
[coreboot.git] / src / soc / samsung / exynos5250 / chip.h
blobd6b0207e371bc8ef45fb1113f1a428b12158503b
1 /*
2 * This file is part of the coreboot project.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #ifndef CPU_SAMSUNG_EXYNOS5250_H
16 #define CPU_SAMSUNG_EXYNOS5250_H
18 #include <soc/gpio.h>
20 struct soc_samsung_exynos5250_config {
21 /* special magic numbers! */
22 int clkval_f;
23 int upper_margin;
24 int lower_margin;
25 int vsync;
26 int left_margin;
27 int right_margin;
28 int hsync;
30 int xres;
31 int yres;
32 int framebuffer_bits_per_pixel;
34 int usb_vbus_gpio;
35 int usb_hsic_gpio;
37 u32 lcdbase;
40 #endif /* CPU_SAMSUNG_EXYNOS5250_H */