blob: 9e2f39f9814f556a5738f0df17bfb6633b5b8847 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
trem97852892013-09-10 22:08:40 +02002/*
3 * (C) Copyright 2002-2013
4 * Eric Jarrige <eric.jarrige@armadeus.org>
5 *
6 * based on the files by
7 * Rich Ireland, Enterasys Networks, rireland@enterasys.com
8 * and
9 * Keith Outwater, keith_outwater@mvis.com
trem97852892013-09-10 22:08:40 +020010 */
11#include <common.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Simon Glassdbd79542020-05-10 11:40:11 -060013#include <linux/delay.h>
trem97852892013-09-10 22:08:40 +020014
15#include <asm/arch/imx-regs.h>
16#include <asm/gpio.h>
17#include <asm/io.h>
18#include <command.h>
19#include <config.h>
20#include "fpga.h"
21#include <spartan3.h>
22#include "apf27.h"
23
24/*
25 * Note that these are pointers to code that is in Flash. They will be
26 * relocated at runtime.
27 * Spartan2 code is used to download our Spartan 3 :) code is compatible.
28 * Just take care about the file size
29 */
Michal Simek2091a0c2014-03-13 11:28:42 +010030xilinx_spartan3_slave_parallel_fns fpga_fns = {
trem97852892013-09-10 22:08:40 +020031 fpga_pre_fn,
32 fpga_pgm_fn,
33 fpga_init_fn,
34 NULL,
35 fpga_done_fn,
36 fpga_clk_fn,
37 fpga_cs_fn,
38 fpga_wr_fn,
39 fpga_rdata_fn,
40 fpga_wdata_fn,
41 fpga_busy_fn,
42 fpga_abort_fn,
43 fpga_post_fn,
44};
45
Michal Simek25e1e2e2014-03-13 12:49:21 +010046xilinx_desc fpga[CONFIG_FPGA_COUNT] = {
Michal Simek2091a0c2014-03-13 11:28:42 +010047 {xilinx_spartan3,
trem97852892013-09-10 22:08:40 +020048 slave_parallel,
49 1196128l/8,
50 (void *)&fpga_fns,
51 0,
Michal Simek75fafac2014-03-13 13:07:57 +010052 &spartan3_op,
trem97852892013-09-10 22:08:40 +020053 "3s200aft256"}
54};
55
56/*
57 * Initialize GPIO port B before download
58 */
59int fpga_pre_fn(int cookie)
60{
61 /* Initialize GPIO pins */
62 gpio_set_value(ACFG_FPGA_PWR, 1);
63 imx_gpio_mode(ACFG_FPGA_INIT | GPIO_IN | GPIO_PUEN | GPIO_GPIO);
64 imx_gpio_mode(ACFG_FPGA_DONE | GPIO_IN | GPIO_PUEN | GPIO_GPIO);
65 imx_gpio_mode(ACFG_FPGA_PRG | GPIO_OUT | GPIO_PUEN | GPIO_GPIO);
66 imx_gpio_mode(ACFG_FPGA_CLK | GPIO_OUT | GPIO_PUEN | GPIO_GPIO);
67 imx_gpio_mode(ACFG_FPGA_RW | GPIO_OUT | GPIO_PUEN | GPIO_GPIO);
68 imx_gpio_mode(ACFG_FPGA_CS | GPIO_OUT | GPIO_PUEN | GPIO_GPIO);
69 imx_gpio_mode(ACFG_FPGA_SUSPEND|GPIO_OUT|GPIO_PUEN|GPIO_GPIO);
70 gpio_set_value(ACFG_FPGA_RESET, 1);
71 imx_gpio_mode(ACFG_FPGA_RESET | GPIO_OUT | GPIO_PUEN | GPIO_GPIO);
72 imx_gpio_mode(ACFG_FPGA_PWR | GPIO_OUT | GPIO_PUEN | GPIO_GPIO);
73 gpio_set_value(ACFG_FPGA_PRG, 1);
74 gpio_set_value(ACFG_FPGA_CLK, 1);
75 gpio_set_value(ACFG_FPGA_RW, 1);
76 gpio_set_value(ACFG_FPGA_CS, 1);
77 gpio_set_value(ACFG_FPGA_SUSPEND, 0);
78 gpio_set_value(ACFG_FPGA_PWR, 0);
79 udelay(30000); /*wait until supply started*/
80
81 return cookie;
82}
83
84/*
85 * Set the FPGA's active-low program line to the specified level
86 */
87int fpga_pgm_fn(int assert, int flush, int cookie)
88{
89 debug("%s:%d: FPGA PROGRAM %s", __func__, __LINE__,
90 assert ? "high" : "low");
91 gpio_set_value(ACFG_FPGA_PRG, !assert);
92 return assert;
93}
94
95/*
96 * Set the FPGA's active-high clock line to the specified level
97 */
98int fpga_clk_fn(int assert_clk, int flush, int cookie)
99{
100 debug("%s:%d: FPGA CLOCK %s", __func__, __LINE__,
101 assert_clk ? "high" : "low");
102 gpio_set_value(ACFG_FPGA_CLK, !assert_clk);
103 return assert_clk;
104}
105
106/*
107 * Test the state of the active-low FPGA INIT line. Return 1 on INIT
108 * asserted (low).
109 */
110int fpga_init_fn(int cookie)
111{
112 int value;
113 debug("%s:%d: INIT check... ", __func__, __LINE__);
114 value = gpio_get_value(ACFG_FPGA_INIT);
115 /* printf("init value read %x",value); */
116#ifdef CONFIG_SYS_FPGA_IS_PROTO
117 return value;
118#else
119 return !value;
120#endif
121}
122
123/*
124 * Test the state of the active-high FPGA DONE pin
125 */
126int fpga_done_fn(int cookie)
127{
128 debug("%s:%d: DONE check... %s", __func__, __LINE__,
129 gpio_get_value(ACFG_FPGA_DONE) ? "high" : "low");
130 return gpio_get_value(ACFG_FPGA_DONE) ? FPGA_SUCCESS : FPGA_FAIL;
131}
132
133/*
134 * Set the FPGA's wr line to the specified level
135 */
136int fpga_wr_fn(int assert_write, int flush, int cookie)
137{
138 debug("%s:%d: FPGA RW... %s ", __func__, __LINE__,
139 assert_write ? "high" : "low");
140 gpio_set_value(ACFG_FPGA_RW, !assert_write);
141 return assert_write;
142}
143
144int fpga_cs_fn(int assert_cs, int flush, int cookie)
145{
146 debug("%s:%d: FPGA CS %s ", __func__, __LINE__,
147 assert_cs ? "high" : "low");
148 gpio_set_value(ACFG_FPGA_CS, !assert_cs);
149 return assert_cs;
150}
151
152int fpga_rdata_fn(unsigned char *data, int cookie)
153{
154 debug("%s:%d: FPGA READ DATA %02X ", __func__, __LINE__,
155 *((char *)ACFG_FPGA_RDATA));
156 *data = (unsigned char)
157 ((*((unsigned short *)ACFG_FPGA_RDATA))&0x00FF);
158 return *data;
159}
160
161int fpga_wdata_fn(unsigned char data, int flush, int cookie)
162{
163 debug("%s:%d: FPGA WRITE DATA %02X ", __func__, __LINE__,
164 data);
165 *((unsigned short *)ACFG_FPGA_WDATA) = data;
166 return data;
167}
168
169int fpga_abort_fn(int cookie)
170{
171 return fpga_post_fn(cookie);
172}
173
174
175int fpga_busy_fn(int cookie)
176{
177 return 1;
178}
179
180int fpga_post_fn(int cookie)
181{
182 debug("%s:%d: FPGA POST ", __func__, __LINE__);
183
184 imx_gpio_mode(ACFG_FPGA_RW | GPIO_PF | GPIO_PUEN);
185 imx_gpio_mode(ACFG_FPGA_CS | GPIO_PF | GPIO_PUEN);
186 imx_gpio_mode(ACFG_FPGA_CLK | GPIO_PF | GPIO_PUEN);
187 gpio_set_value(ACFG_FPGA_PRG, 1);
188 gpio_set_value(ACFG_FPGA_RESET, 0);
189 imx_gpio_mode(ACFG_FPGA_RESET | GPIO_OUT | GPIO_PUEN | GPIO_GPIO);
190 return cookie;
191}
192
193void apf27_fpga_setup(void)
194{
195 struct pll_regs *pll = (struct pll_regs *)IMX_PLL_BASE;
196 struct system_control_regs *system =
197 (struct system_control_regs *)IMX_SYSTEM_CTL_BASE;
198
199 /* Configure FPGA CLKO */
200 writel(ACFG_CCSR_VAL, &pll->ccsr);
201
202 /* Configure strentgh for FPGA */
203 writel(ACFG_DSCR10_VAL, &system->dscr10);
204 writel(ACFG_DSCR3_VAL, &system->dscr3);
205 writel(ACFG_DSCR7_VAL, &system->dscr7);
206 writel(ACFG_DSCR2_VAL, &system->dscr2);
207}
208
209/*
210 * Initialize the fpga. Return 1 on success, 0 on failure.
211 */
212void APF27_init_fpga(void)
213{
214 int i;
215
216 apf27_fpga_setup();
217
218 fpga_init();
219
220 for (i = 0; i < CONFIG_FPGA_COUNT; i++) {
221 debug("%s:%d: Adding fpga %d\n", __func__, __LINE__, i);
222 fpga_add(fpga_xilinx, &fpga[i]);
223 }
224
225 return;
226}