blob: 0abc0a3022a5904e41ab0afbbad147d4ef53a5f0 [file] [log] [blame]
Gabe Black607c0b62013-05-16 05:45:57 -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#include <stdlib.h>
21#include <string.h>
22#include <stddef.h>
23#include <delay.h>
24#include <console/console.h>
25#include <device/device.h>
26#include <cbmem.h>
27#include <arch/cache.h>
28#include "fimd.h"
29#include "dp-core.h"
30#include "cpu.h"
31#include "clk.h"
32#include "chip.h"
33
34#define RAM_BASE_KB (CONFIG_SYS_SDRAM_BASE >> 10)
35#define RAM_SIZE_KB (CONFIG_DRAM_SIZE_MB << 10UL)
36
37static unsigned int cpu_id;
38static unsigned int cpu_rev;
39
40static void set_cpu_id(void)
41{
42 cpu_id = readl((void *)EXYNOS_PRO_ID);
43 cpu_id = (0xC000 | ((cpu_id & 0x00FFF000) >> 12));
44
45 /*
46 * 0xC200: EXYNOS4210 EVT0
47 * 0xC210: EXYNOS4210 EVT1
48 */
49 if (cpu_id == 0xC200) {
50 cpu_id |= 0x10;
51 cpu_rev = 0;
52 } else if (cpu_id == 0xC210) {
53 cpu_rev = 1;
54 }
55}
56
57/* we distinguish a display port device from a raw graphics device
58 * because there are dramatic differences in startup depending on
59 * graphics usage. To make startup fast and easier to understand and
60 * debug we explicitly name this common case. The alternate approach,
61 * involving lots of machine and callbacks, is hard to debug and
62 * verify.
63 */
64static void exynos_displayport_init(device_t dev)
65{
66 int ret;
67 struct cpu_samsung_exynos5420_config *conf = dev->chip_info;
68 /* put these on the stack. If, at some point, we want to move
69 * this code to a pre-ram stage, it will be much easier.
70 */
71 vidinfo_t vi;
72 struct exynos5_fimd_panel panel;
73 unsigned long int fb_size;
74 u32 lcdbase;
75
76 memset(&vi, 0, sizeof(vi));
77 memset(&panel, 0, sizeof(panel));
78
79 panel.is_dp = 1; /* Display I/F is eDP */
80 /* while it is true that we did a memset to zero,
81 * we leave some 'set to zero' entries here to make
82 * it clear what's going on. Graphics is confusing.
83 */
84 panel.is_mipi = 0;
85 panel.fixvclk = 0;
86 panel.ivclk = 0;
87 panel.clkval_f = conf->clkval_f;
88 panel.upper_margin = conf->upper_margin;
89 panel.lower_margin = conf->lower_margin;
90 panel.vsync = conf->vsync;
91 panel.left_margin = conf->left_margin;
92 panel.right_margin = conf->right_margin;
93 panel.hsync = conf->hsync;
94 panel.xres = conf->xres;
95 panel.yres = conf->yres;
96
97 vi.vl_col = conf->xres;
98 vi.vl_row = conf->yres;
99 vi.vl_bpix = conf->bpp;
100 /*
101 * The size is a magic number from hardware. Allocate enough for the
102 * frame buffer and color map.
103 */
104 fb_size = conf->xres * conf->yres * (conf->bpp / 8);
105 lcdbase = (uintptr_t)cbmem_add(CBMEM_ID_CONSOLE, fb_size + 64*KiB);
106 printk(BIOS_SPEW, "LCD colormap base is %p\n", (void *)(lcdbase));
107 mmio_resource(dev, 0, lcdbase/KiB, 64);
108 vi.cmap = (void *)lcdbase;
109
110 /*
111 * We need to clean and invalidate the framebuffer region and disable
112 * caching as well. We assume that our dcache <--> memory address
113 * space is identity-mapped in 1MB chunks, so align accordingly.
114 *
115 * Note: We may want to do something clever to ensure the framebuffer
116 * region is aligned such that we don't change dcache policy for other
117 * stuff inadvertantly.
118 *
119 * FIXME: Is disabling/re-enabling the MMU entirely necessary?
120 */
121 uint32_t lower = ALIGN_DOWN(lcdbase, MiB);
122 uint32_t upper = ALIGN_UP(lcdbase + fb_size + 64*KiB, MiB);
123 dcache_clean_invalidate_by_mva(lower, upper - lower);
124 dcache_mmu_disable();
125 mmu_config_range(lower/MiB, (upper - lower)/MiB, DCACHE_OFF);
126 dcache_mmu_enable();
127
128 lcdbase += 64*KiB;
129 mmio_resource(dev, 1, lcdbase/KiB, (fb_size + KiB - 1)/KiB);
130 printk(BIOS_DEBUG,
131 "Initializing Exynos VGA, base %p\n", (void *)lcdbase);
132 memset((void *)lcdbase, 0, fb_size); /* clear the framebuffer */
133 ret = lcd_ctrl_init(&vi, &panel, (void *)lcdbase);
134}
135
136static void cpu_init(device_t dev)
137{
138 exynos_displayport_init(dev);
139 ram_resource(dev, 0, RAM_BASE_KB, RAM_SIZE_KB);
140
141 set_cpu_id();
142
143 printk(BIOS_INFO, "CPU: S5P%X @ %ldMHz\n",
144 cpu_id, get_arm_clk() / (1024*1024));
145}
146
147static void cpu_noop(device_t dev)
148{
149}
150
151static struct device_operations cpu_ops = {
152 .read_resources = cpu_noop,
153 .set_resources = cpu_noop,
154 .enable_resources = cpu_init,
155 .init = cpu_noop,
156 .scan_bus = 0,
157};
158
159static void enable_exynos5420_dev(device_t dev)
160{
161 dev->ops = &cpu_ops;
162}
163
164struct chip_operations cpu_samsung_exynos5420_ops = {
165 CHIP_NAME("CPU Samsung Exynos 5420")
166 .enable_dev = enable_exynos5420_dev,
167};
168
169void exynos5420_config_l2_cache(void)
170{
171 uint32_t val;
172
173 /*
174 * Bit 9 - L2 tag RAM setup (1 cycle)
175 * Bits 8:6 - L2 tag RAM latency (3 cycles)
176 * Bit 5 - L2 data RAM setup (1 cycle)
177 * Bits 2:0 - L2 data RAM latency (3 cycles)
178 */
179 val = (1 << 9) | (0x2 << 6) | (1 << 5) | (0x2);
180 write_l2ctlr(val);
181}