1
2
3
4
5
6
7
8
9
10#include <common.h>
11#include <init.h>
12#include <asm/global_data.h>
13#include <asm/immap.h>
14#include <asm/io.h>
15#include <dm.h>
16#include <dm/platform_data/serial_coldfire.h>
17
18DECLARE_GLOBAL_DATA_PTR;
19
20void init_lcd(void)
21{
22
23 sim_t *sim = (sim_t *)(MMAP_SIM);
24
25 out_be16(&sim->par, 0x300);
26
27 gpio_t *gpio = (gpio_t *)(MMAP_GPIO);
28
29 out_be16(&gpio->paddr, 0xfcff);
30 out_be16(&gpio->padat, 0x0c00);
31}
32
33int checkboard(void)
34{
35 puts("Board: ");
36 puts("AMCORE v.001(alpha)\n");
37
38 init_lcd();
39
40 return 0;
41}
42
43
44
45
46
47
48
49void fudelay(int usec)
50{
51 while (usec--)
52 asm volatile ("nop");
53}
54
55int dram_init(void)
56{
57 u32 dramsize, RC;
58
59 sdramctrl_t *dc = (sdramctrl_t *)(MMAP_DRAMC);
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74 fudelay(100);
75
76
77
78
79
80 RC = (CONFIG_SYS_CPU_CLK / 1000000) >> 1;
81 RC = (RC * 15) >> 4;
82
83
84 out_be16(&dc->dcr, 0x8200 | RC);
85
86
87
88
89 out_be32(&dc->dacr0, 0x00003304);
90
91 dramsize = ((CONFIG_SYS_SDRAM_SIZE)-1) & 0xfffc0000;
92 out_be32(&dc->dmr0, dramsize|1);
93
94
95 out_be32(&dc->dacr0, 0x0000330c);
96 out_be32((u32 *)0x00000004, 0xbeaddeed);
97
98 out_be32(&dc->dacr0, 0x0000b304);
99
100 fudelay(1);
101
102 out_be32(&dc->dacr0, 0x0000b344);
103 out_be32((u32 *)0x00000c00, 0xbeaddeed);
104
105 gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE,
106 CONFIG_SYS_SDRAM_SIZE);
107
108 return 0;
109}
110
111static struct coldfire_serial_plat mcf5307_serial_plat = {
112 .base = CONFIG_SYS_UART_BASE,
113 .port = 0,
114 .baudrate = CONFIG_BAUDRATE,
115};
116
117U_BOOT_DRVINFO(coldfire_serial) = {
118 .name = "serial_coldfire",
119 .plat = &mcf5307_serial_plat,
120};
121