blob: b87fc52c6a7ee851a5da7f00850f04cbb88ade95 [file] [log] [blame]
Yuri Tikhonovc147d482008-02-04 14:10:42 +01001/*
2 * (C) Copyright 2008 Dmitry Rakhchev, EmCraft Systems, rda@emcraft.com
3 *
4 * Developed for DENX Software Engineering GmbH
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24#include <common.h>
25
26#ifdef CONFIG_POST
27
28/* This test performs testing of FPGA SCRATCH register,
29 * gets FPGA version and run get_ram_size() on FPGA memory
30 */
31
32#include <post.h>
33
34#include <asm/io.h>
35
36DECLARE_GLOBAL_DATA_PTR;
37
38#define FPGA_SCRATCH_REG 0xC4000050
39#define FPGA_VERSION_REG 0xC4000040
40#define FPGA_RAM_START 0xC4200000
41#define FPGA_RAM_END 0xC4203FFF
Yuri Tikhonovaacbc732008-02-04 17:09:55 +010042#define FPGA_STAT 0xC400000C
Yuri Tikhonovc147d482008-02-04 14:10:42 +010043
44#define FPGA_PWM_CTRL_REG 0xC4000020
45#define FPGA_PWM_TV_REG 0xC4000024
46
47/* Turn on backlight, set brightness */
48void fpga_backlight_enable(int pwm)
49{
50 out_be16((void *)FPGA_PWM_CTRL_REG, 0x0701);
51 out_be16((void *)FPGA_PWM_TV_REG, pwm);
52}
53
54#if CONFIG_POST & CFG_POST_BSPEC3
55
56static int one_scratch_test(uint value)
57{
58 uint read_value;
59 int ret = 0;
60
61 out_be32((void *)FPGA_SCRATCH_REG, value);
62 /* read other location (protect against data lines capacity) */
63 ret = in_be16((void *)FPGA_VERSION_REG);
64 /* verify test pattern */
65 read_value = in_be32((void *)FPGA_SCRATCH_REG);
66 if (read_value != value) {
67 post_log("FPGA SCRATCH test failed write %08X, read %08X\n",
68 value, read_value);
69 ret = 1;
70 }
71
72 return ret;
73}
74
75/* Verify FPGA, get version & memory size */
76int fpga_post_test(int flags)
77{
78 uint old_value;
79 ushort version;
80 uint read_value;
81 int ret = 0;
82
83 post_log("\n");
84 old_value = in_be32((void *)FPGA_SCRATCH_REG);
85
86 if (one_scratch_test(0x55555555))
87 ret = 1;
88 if (one_scratch_test(0xAAAAAAAA))
89 ret = 1;
90
91 out_be32((void *)FPGA_SCRATCH_REG, old_value);
92
93 version = in_be16((void *)FPGA_VERSION_REG);
94 post_log("FPGA : version %u.%u\n",
95 (version >> 8) & 0xFF, version & 0xFF);
96
Yuri Tikhonovaacbc732008-02-04 17:09:55 +010097 /* Enable write to FPGA RAM */
98 out_be32((void *)FPGA_STAT, in_be32((void *)FPGA_STAT) | 0x1000);
99
Yuri Tikhonovc147d482008-02-04 14:10:42 +0100100 read_value = get_ram_size((void *)CFG_FPGA_BASE_1, 0x4000);
101 post_log("FPGA RAM size: %d bytes\n", read_value);
102
103 return ret;
104}
105
106#endif /* CONFIG_POST & CFG_POST_BSPEC3 */
107#endif /* CONFIG_POST */
108