blob: 09b670e9d881415f20ae0c5c3daa6e43770c92ac [file] [log] [blame]
Ronald G. Minnichb48605d2013-04-09 14:35:35 -07001#include <stdlib.h>
2#include <string.h>
3#include <stddef.h>
4#include <delay.h>
David Hendricks6802dc82013-02-15 16:18:28 -08005#include <console/console.h>
6#include <device/device.h>
Ronald G. Minnichb48605d2013-04-09 14:35:35 -07007#include <cbmem.h>
8#include <cpu/samsung/exynos5250/fimd.h>
9#include <cpu/samsung/exynos5-common/s5p-dp-core.h>
10#include "chip.h"
11#include "cpu.h"
David Hendricks6802dc82013-02-15 16:18:28 -080012
David Hendricks0f5a3fc2013-03-12 20:16:44 -070013#define RAM_BASE_KB (CONFIG_SYS_SDRAM_BASE >> 10)
14#define RAM_SIZE_KB (CONFIG_DRAM_SIZE_MB << 10UL)
David Hendricks6802dc82013-02-15 16:18:28 -080015
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070016/* we distinguish a display port device from a raw graphics device
17 * because there are dramatic differences in startup depending on
18 * graphics usage. To make startup fast and easier to understand and
19 * debug we explicitly name this common case. The alternate approach,
20 * involving lots of machine and callbacks, is hard to debug and
21 * verify.
22 */
23static void exynos_displayport_init(device_t dev)
24{
25 int ret;
26 struct cpu_samsung_exynos5250_config *conf = dev->chip_info;
27 /* put these on the stack. If, at some point, we want to move
28 * this code to a pre-ram stage, it will be much easier.
29 */
30 vidinfo_t vi;
31 struct exynos5_fimd_panel panel;
32 unsigned long int fb_size;
33 u32 lcdbase;
34
35 printk(BIOS_SPEW, "%s: dev 0x%p, conf 0x%p\n", __func__, dev, conf);
36 memset(&vi, 0, sizeof(vi));
37 memset(&panel, 0, sizeof(panel));
38
39 panel.is_dp = 1; /* Display I/F is eDP */
40 /* while it is true that we did a memset to zero,
41 * we leave some 'set to zero' entries here to make
42 * it clear what's going on. Graphics is confusing.
43 */
44 panel.is_mipi = 0;
45 panel.fixvclk = 0;
46 panel.ivclk = 0;
47 panel.clkval_f = conf->clkval_f;
48 panel.upper_margin = conf->upper_margin;
49 panel.lower_margin = conf->lower_margin;
50 panel.vsync = conf->vsync;
51 panel.left_margin = conf->left_margin;
52 panel.right_margin = conf->right_margin;
53 panel.hsync = conf->hsync;
Ronald G. Minnichd83c1172013-04-18 16:10:29 -070054 panel.xres = conf->xres;
55 panel.yres = conf->yres;
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070056
57 vi.vl_col = conf->xres;
58 vi.vl_row = conf->yres;
59 vi.vl_bpix = conf->bpp;
60 /*
61 * The size is a magic number from hardware. Allocate enough for the
62 * frame buffer and color map.
63 */
64 fb_size = conf->xres * conf->yres * sizeof(unsigned long);
65 lcdbase = (uintptr_t)cbmem_add(CBMEM_ID_CONSOLE, fb_size + 64*KiB);
66 printk(BIOS_SPEW, "lcd colormap base is %p\n", (void *)(lcdbase));
67 mmio_resource(dev, 0, lcdbase/KiB, 64);
68 vi.cmap = (void *)lcdbase;
69
70 lcdbase += 64*KiB;
71 mmio_resource(dev, 1, lcdbase/KiB, fb_size + (KiB-1)/KiB);
72 printk(BIOS_DEBUG,
73 "Initializing exynos VGA, base %p\n",(void *)lcdbase);
74 ret = lcd_ctrl_init(&vi, &panel, (void *)lcdbase);
75}
76
David Hendricks6802dc82013-02-15 16:18:28 -080077static void cpu_init(device_t dev)
78{
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070079 exynos_displayport_init(dev);
David Hendricks3cc0d1e2013-03-26 16:28:21 -070080 ram_resource(dev, 0, RAM_BASE_KB, RAM_SIZE_KB);
David Hendricks6802dc82013-02-15 16:18:28 -080081}
82
83static void cpu_noop(device_t dev)
84{
85}
86
87static struct device_operations cpu_ops = {
88 .read_resources = cpu_noop,
89 .set_resources = cpu_noop,
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070090 .enable_resources = cpu_init,
91 .init = cpu_noop,
David Hendricks6802dc82013-02-15 16:18:28 -080092 .scan_bus = 0,
93};
94
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070095static void enable_exynos5250_dev(device_t dev)
David Hendricks6802dc82013-02-15 16:18:28 -080096{
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070097 dev->ops = &cpu_ops;
David Hendricks6802dc82013-02-15 16:18:28 -080098}
99
100struct chip_operations cpu_samsung_exynos5250_ops = {
101 CHIP_NAME("CPU Samsung Exynos 5250")
Ronald G. Minnichb48605d2013-04-09 14:35:35 -0700102 .enable_dev = enable_exynos5250_dev,
David Hendricks6802dc82013-02-15 16:18:28 -0800103};
David Hendricksc01d1382013-03-28 19:04:58 -0700104
105void exynos5250_config_l2_cache(void)
106{
107 uint32_t val;
108
109 /*
110 * Bit 9 - L2 tag RAM setup (1 cycle)
111 * Bits 8:6 - L2 tag RAM latency (3 cycles)
112 * Bit 5 - L2 data RAM setup (1 cycle)
113 * Bits 2:0 - L2 data RAM latency (3 cycles)
114 */
115 val = (1 << 9) | (0x2 << 6) | (1 << 5) | (0x2);
116 write_l2ctlr(val);
117}