blob: c49dec453d639bdaaefc24c22363ac870b33f214 [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>
Ronald G. Minnich2810afa2013-04-18 18:09:24 -07008#include <arch/cache.h>
Ronald G. Minnichb48605d2013-04-09 14:35:35 -07009#include <cpu/samsung/exynos5250/fimd.h>
10#include <cpu/samsung/exynos5-common/s5p-dp-core.h>
Stefan Reinauer043eb0e2013-05-10 16:21:58 -070011#include <cpu/samsung/exynos5-common/cpu.h>
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070012#include "chip.h"
13#include "cpu.h"
David Hendricks6802dc82013-02-15 16:18:28 -080014
David Hendricks0f5a3fc2013-03-12 20:16:44 -070015#define RAM_BASE_KB (CONFIG_SYS_SDRAM_BASE >> 10)
16#define RAM_SIZE_KB (CONFIG_DRAM_SIZE_MB << 10UL)
David Hendricks6802dc82013-02-15 16:18:28 -080017
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070018/* we distinguish a display port device from a raw graphics device
19 * because there are dramatic differences in startup depending on
20 * graphics usage. To make startup fast and easier to understand and
21 * debug we explicitly name this common case. The alternate approach,
22 * involving lots of machine and callbacks, is hard to debug and
23 * verify.
24 */
25static void exynos_displayport_init(device_t dev)
26{
27 int ret;
28 struct cpu_samsung_exynos5250_config *conf = dev->chip_info;
29 /* put these on the stack. If, at some point, we want to move
30 * this code to a pre-ram stage, it will be much easier.
31 */
32 vidinfo_t vi;
33 struct exynos5_fimd_panel panel;
34 unsigned long int fb_size;
35 u32 lcdbase;
36
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070037 memset(&vi, 0, sizeof(vi));
38 memset(&panel, 0, sizeof(panel));
39
40 panel.is_dp = 1; /* Display I/F is eDP */
41 /* while it is true that we did a memset to zero,
42 * we leave some 'set to zero' entries here to make
43 * it clear what's going on. Graphics is confusing.
44 */
45 panel.is_mipi = 0;
46 panel.fixvclk = 0;
47 panel.ivclk = 0;
48 panel.clkval_f = conf->clkval_f;
49 panel.upper_margin = conf->upper_margin;
50 panel.lower_margin = conf->lower_margin;
51 panel.vsync = conf->vsync;
52 panel.left_margin = conf->left_margin;
53 panel.right_margin = conf->right_margin;
54 panel.hsync = conf->hsync;
Ronald G. Minnichd83c1172013-04-18 16:10:29 -070055 panel.xres = conf->xres;
56 panel.yres = conf->yres;
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070057
58 vi.vl_col = conf->xres;
59 vi.vl_row = conf->yres;
60 vi.vl_bpix = conf->bpp;
61 /*
62 * The size is a magic number from hardware. Allocate enough for the
63 * frame buffer and color map.
64 */
Ronald G. Minnich2810afa2013-04-18 18:09:24 -070065 fb_size = conf->xres * conf->yres * (conf->bpp / 8);
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070066 lcdbase = (uintptr_t)cbmem_add(CBMEM_ID_CONSOLE, fb_size + 64*KiB);
67 printk(BIOS_SPEW, "lcd colormap base is %p\n", (void *)(lcdbase));
68 mmio_resource(dev, 0, lcdbase/KiB, 64);
69 vi.cmap = (void *)lcdbase;
70
Ronald G. Minnich2810afa2013-04-18 18:09:24 -070071 /*
72 * We need to clean and invalidate the framebuffer region and disable
73 * caching as well. We assume that our dcache <--> memory address
74 * space is identity-mapped in 1MB chunks, so align accordingly.
75 *
76 * Note: We may want to do something clever to ensure the framebuffer
77 * region is aligned such that we don't change dcache policy for other
78 * stuff inadvertantly.
79 *
80 * FIXME: Is disabling/re-enabling the MMU entirely necessary?
81 */
82 uint32_t lower = ALIGN_DOWN(lcdbase, MiB);
83 uint32_t upper = ALIGN_UP(lcdbase + fb_size + 64*KiB, MiB);
84 dcache_clean_invalidate_by_mva(lower, upper - lower);
85 dcache_mmu_disable();
86 mmu_config_range(lower/MiB, (upper - lower)/MiB, DCACHE_OFF);
87 dcache_mmu_enable();
88
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070089 lcdbase += 64*KiB;
Ronald G. Minniche8a91342013-04-22 10:46:53 -070090 mmio_resource(dev, 1, lcdbase/KiB, (fb_size + KiB - 1)/KiB);
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070091 printk(BIOS_DEBUG,
Ronald G. Minnich2810afa2013-04-18 18:09:24 -070092 "Initializing exynos VGA, base %p\n", (void *)lcdbase);
93 memset((void *)lcdbase, 0, fb_size); /* clear the framebuffer */
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070094 ret = lcd_ctrl_init(&vi, &panel, (void *)lcdbase);
95}
96
David Hendricks6802dc82013-02-15 16:18:28 -080097static void cpu_init(device_t dev)
98{
Ronald G. Minnichb48605d2013-04-09 14:35:35 -070099 exynos_displayport_init(dev);
David Hendricks3cc0d1e2013-03-26 16:28:21 -0700100 ram_resource(dev, 0, RAM_BASE_KB, RAM_SIZE_KB);
Stefan Reinauer043eb0e2013-05-10 16:21:58 -0700101
102 arch_cpu_init();
David Hendricks6802dc82013-02-15 16:18:28 -0800103}
104
105static void cpu_noop(device_t dev)
106{
107}
108
109static struct device_operations cpu_ops = {
110 .read_resources = cpu_noop,
111 .set_resources = cpu_noop,
Ronald G. Minnichb48605d2013-04-09 14:35:35 -0700112 .enable_resources = cpu_init,
113 .init = cpu_noop,
David Hendricks6802dc82013-02-15 16:18:28 -0800114 .scan_bus = 0,
115};
116
Ronald G. Minnichb48605d2013-04-09 14:35:35 -0700117static void enable_exynos5250_dev(device_t dev)
David Hendricks6802dc82013-02-15 16:18:28 -0800118{
Ronald G. Minnichb48605d2013-04-09 14:35:35 -0700119 dev->ops = &cpu_ops;
David Hendricks6802dc82013-02-15 16:18:28 -0800120}
121
122struct chip_operations cpu_samsung_exynos5250_ops = {
123 CHIP_NAME("CPU Samsung Exynos 5250")
Ronald G. Minnichb48605d2013-04-09 14:35:35 -0700124 .enable_dev = enable_exynos5250_dev,
David Hendricks6802dc82013-02-15 16:18:28 -0800125};
David Hendricksc01d1382013-03-28 19:04:58 -0700126
127void exynos5250_config_l2_cache(void)
128{
129 uint32_t val;
130
131 /*
132 * Bit 9 - L2 tag RAM setup (1 cycle)
133 * Bits 8:6 - L2 tag RAM latency (3 cycles)
134 * Bit 5 - L2 data RAM setup (1 cycle)
135 * Bits 2:0 - L2 data RAM latency (3 cycles)
136 */
137 val = (1 << 9) | (0x2 << 6) | (1 << 5) | (0x2);
138 write_l2ctlr(val);
139}