blob: db4424d3f8a6597a11c93da4dc18a57a8177a443 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dirk Eibach2da0fc02011-01-21 09:31:21 +01002/*
3 * (C) Copyright 2010
Mario Sixd38826a2018-03-06 08:04:58 +01004 * Dirk Eibach, Guntermann & Drunck GmbH, dirk.eibach@gdsys.cc
Dirk Eibach2da0fc02011-01-21 09:31:21 +01005 */
6
7#ifndef __GDSYS_FPGA_H
8#define __GDSYS_FPGA_H
9
Dirk Eibach255ef4d2011-10-20 11:12:55 +020010int init_func_fpga(void);
11
Dirk Eibach2da0fc02011-01-21 09:31:21 +010012enum {
13 FPGA_STATE_DONE_FAILED = 1 << 0,
14 FPGA_STATE_REFLECTION_FAILED = 1 << 1,
Dirk Eibach255ef4d2011-10-20 11:12:55 +020015 FPGA_STATE_PLATFORM = 1 << 2,
Dirk Eibach2da0fc02011-01-21 09:31:21 +010016};
17
18int get_fpga_state(unsigned dev);
Dirk Eibach2da0fc02011-01-21 09:31:21 +010019
Dirk Eibachaba27ac2013-06-26 16:04:26 +020020int fpga_set_reg(u32 fpga, u16 *reg, off_t regoff, u16 data);
21int fpga_get_reg(u32 fpga, u16 *reg, off_t regoff, u16 *data);
22
23extern struct ihs_fpga *fpga_ptr[];
24
25#define FPGA_SET_REG(ix, fld, val) \
26 fpga_set_reg((ix), \
27 &fpga_ptr[ix]->fld, \
28 offsetof(struct ihs_fpga, fld), \
29 val)
30
31#define FPGA_GET_REG(ix, fld, val) \
32 fpga_get_reg((ix), \
33 &fpga_ptr[ix]->fld, \
34 offsetof(struct ihs_fpga, fld), \
35 val)
36
Dirk Eibach0e60aa82012-04-27 10:33:46 +020037struct ihs_gpio {
Dirk Eibach2da0fc02011-01-21 09:31:21 +010038 u16 read;
39 u16 clear;
40 u16 set;
Dirk Eibach0e60aa82012-04-27 10:33:46 +020041};
Dirk Eibach2da0fc02011-01-21 09:31:21 +010042
Dirk Eibach0e60aa82012-04-27 10:33:46 +020043struct ihs_i2c {
Dirk Eibachb46226b2014-07-03 09:28:18 +020044 u16 interrupt_status;
45 u16 interrupt_enable;
Dirk Eibach2da0fc02011-01-21 09:31:21 +010046 u16 write_mailbox_ext;
Dirk Eibachb46226b2014-07-03 09:28:18 +020047 u16 write_mailbox;
Dirk Eibach2da0fc02011-01-21 09:31:21 +010048 u16 read_mailbox_ext;
Dirk Eibachb46226b2014-07-03 09:28:18 +020049 u16 read_mailbox;
Dirk Eibach0e60aa82012-04-27 10:33:46 +020050};
Dirk Eibach2da0fc02011-01-21 09:31:21 +010051
Dirk Eibach0e60aa82012-04-27 10:33:46 +020052struct ihs_osd {
Dirk Eibach2da0fc02011-01-21 09:31:21 +010053 u16 version;
54 u16 features;
55 u16 control;
56 u16 xy_size;
Dirk Eibach52158e32011-04-06 13:53:47 +020057 u16 xy_scale;
58 u16 x_pos;
59 u16 y_pos;
Dirk Eibach0e60aa82012-04-27 10:33:46 +020060};
Dirk Eibach2da0fc02011-01-21 09:31:21 +010061
Dirk Eibach50dcf892014-11-13 19:21:18 +010062struct ihs_mdio {
63 u16 control;
64 u16 address_data;
65 u16 rx_data;
66};
67
68struct ihs_io_ep {
69 u16 transmit_data;
70 u16 rx_tx_control;
71 u16 receive_data;
72 u16 rx_tx_status;
73 u16 reserved;
74 u16 device_address;
75 u16 target_address;
76};
77
Dirk Eibach6e9e6c32012-04-26 03:54:22 +000078#ifdef CONFIG_NEO
Dirk Eibach0e60aa82012-04-27 10:33:46 +020079struct ihs_fpga {
Dirk Eibach6e9e6c32012-04-26 03:54:22 +000080 u16 reflection_low; /* 0x0000 */
81 u16 versions; /* 0x0002 */
82 u16 fpga_features; /* 0x0004 */
83 u16 fpga_version; /* 0x0006 */
84 u16 reserved_0[8187]; /* 0x0008 */
85 u16 reflection_high; /* 0x3ffe */
Dirk Eibach0e60aa82012-04-27 10:33:46 +020086};
Dirk Eibach6e9e6c32012-04-26 03:54:22 +000087#endif
88
Dirk Eibach2da0fc02011-01-21 09:31:21 +010089#ifdef CONFIG_IO
Dirk Eibach0e60aa82012-04-27 10:33:46 +020090struct ihs_fpga {
Dirk Eibach2da0fc02011-01-21 09:31:21 +010091 u16 reflection_low; /* 0x0000 */
92 u16 versions; /* 0x0002 */
93 u16 fpga_features; /* 0x0004 */
94 u16 fpga_version; /* 0x0006 */
95 u16 reserved_0[5]; /* 0x0008 */
96 u16 quad_serdes_reset; /* 0x0012 */
97 u16 reserved_1[8181]; /* 0x0014 */
98 u16 reflection_high; /* 0x3ffe */
Dirk Eibach0e60aa82012-04-27 10:33:46 +020099};
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100100#endif
101
Dirk Eibach255ef4d2011-10-20 11:12:55 +0200102#ifdef CONFIG_IO64
Dirk Eibachaba27ac2013-06-26 16:04:26 +0200103struct ihs_fpga_channel {
104 u16 status_int;
105 u16 config_int;
106 u16 switch_connect_config;
107 u16 tx_destination;
108};
109
110struct ihs_fpga_hicb {
111 u16 status_int;
112 u16 config_int;
113};
114
Dirk Eibach0e60aa82012-04-27 10:33:46 +0200115struct ihs_fpga {
Dirk Eibach255ef4d2011-10-20 11:12:55 +0200116 u16 reflection_low; /* 0x0000 */
117 u16 versions; /* 0x0002 */
118 u16 fpga_features; /* 0x0004 */
119 u16 fpga_version; /* 0x0006 */
120 u16 reserved_0[5]; /* 0x0008 */
121 u16 quad_serdes_reset; /* 0x0012 */
122 u16 reserved_1[502]; /* 0x0014 */
Dirk Eibachaba27ac2013-06-26 16:04:26 +0200123 struct ihs_fpga_channel ch[32]; /* 0x0400 */
124 struct ihs_fpga_channel hicb_ch[32]; /* 0x0500 */
125 u16 reserved_2[7487]; /* 0x0580 */
Dirk Eibach255ef4d2011-10-20 11:12:55 +0200126 u16 reflection_high; /* 0x3ffe */
Dirk Eibach0e60aa82012-04-27 10:33:46 +0200127};
Dirk Eibach255ef4d2011-10-20 11:12:55 +0200128#endif
129
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100130#ifdef CONFIG_IOCON
Dirk Eibach0e60aa82012-04-27 10:33:46 +0200131struct ihs_fpga {
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100132 u16 reflection_low; /* 0x0000 */
133 u16 versions; /* 0x0002 */
134 u16 fpga_version; /* 0x0004 */
135 u16 fpga_features; /* 0x0006 */
Dirk Eibach50dcf892014-11-13 19:21:18 +0100136 u16 reserved_0[1]; /* 0x0008 */
137 u16 top_interrupt; /* 0x000a */
138 u16 reserved_1[4]; /* 0x000c */
Dirk Eibach0e60aa82012-04-27 10:33:46 +0200139 struct ihs_gpio gpio; /* 0x0014 */
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100140 u16 mpc3w_control; /* 0x001a */
Dirk Eibach50dcf892014-11-13 19:21:18 +0100141 u16 reserved_2[2]; /* 0x001c */
142 struct ihs_io_ep ep; /* 0x0020 */
143 u16 reserved_3[9]; /* 0x002e */
Dirk Eibach071be892015-10-28 11:46:22 +0100144 struct ihs_i2c i2c0; /* 0x0040 */
Dirk Eibach50dcf892014-11-13 19:21:18 +0100145 u16 reserved_4[10]; /* 0x004c */
Dirk Eibache50e8962013-07-25 19:28:13 +0200146 u16 mc_int; /* 0x0060 */
147 u16 mc_int_en; /* 0x0062 */
148 u16 mc_status; /* 0x0064 */
149 u16 mc_control; /* 0x0066 */
150 u16 mc_tx_data; /* 0x0068 */
151 u16 mc_tx_address; /* 0x006a */
152 u16 mc_tx_cmd; /* 0x006c */
153 u16 mc_res; /* 0x006e */
154 u16 mc_rx_cmd_status; /* 0x0070 */
155 u16 mc_rx_data; /* 0x0072 */
Dirk Eibach50dcf892014-11-13 19:21:18 +0100156 u16 reserved_5[69]; /* 0x0074 */
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100157 u16 reflection_high; /* 0x00fe */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100158 struct ihs_osd osd0; /* 0x0100 */
Dirk Eibach50dcf892014-11-13 19:21:18 +0100159 u16 reserved_6[889]; /* 0x010e */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100160 u16 videomem0[2048]; /* 0x0800 */
Dirk Eibach50dcf892014-11-13 19:21:18 +0100161};
162#endif
163
Dirk Eibach1d2541b2016-06-02 09:05:41 +0200164#if defined(CONFIG_HRCON) || defined(CONFIG_STRIDER_CON_DP)
Dirk Eibach50dcf892014-11-13 19:21:18 +0100165struct ihs_fpga {
166 u16 reflection_low; /* 0x0000 */
167 u16 versions; /* 0x0002 */
168 u16 fpga_version; /* 0x0004 */
169 u16 fpga_features; /* 0x0006 */
170 u16 reserved_0[1]; /* 0x0008 */
171 u16 top_interrupt; /* 0x000a */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100172 u16 reserved_1[2]; /* 0x000c */
173 u16 control; /* 0x0010 */
174 u16 extended_control; /* 0x0012 */
Dirk Eibach50dcf892014-11-13 19:21:18 +0100175 struct ihs_gpio gpio; /* 0x0014 */
176 u16 mpc3w_control; /* 0x001a */
177 u16 reserved_2[2]; /* 0x001c */
178 struct ihs_io_ep ep; /* 0x0020 */
179 u16 reserved_3[9]; /* 0x002e */
Dirk Eibach071be892015-10-28 11:46:22 +0100180 struct ihs_i2c i2c0; /* 0x0040 */
Dirk Eibach50dcf892014-11-13 19:21:18 +0100181 u16 reserved_4[10]; /* 0x004c */
182 u16 mc_int; /* 0x0060 */
183 u16 mc_int_en; /* 0x0062 */
184 u16 mc_status; /* 0x0064 */
185 u16 mc_control; /* 0x0066 */
186 u16 mc_tx_data; /* 0x0068 */
187 u16 mc_tx_address; /* 0x006a */
188 u16 mc_tx_cmd; /* 0x006c */
189 u16 mc_res; /* 0x006e */
190 u16 mc_rx_cmd_status; /* 0x0070 */
191 u16 mc_rx_data; /* 0x0072 */
192 u16 reserved_5[69]; /* 0x0074 */
193 u16 reflection_high; /* 0x00fe */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100194 struct ihs_osd osd0; /* 0x0100 */
195#ifdef CONFIG_SYS_OSD_DH
196 u16 reserved_6[57]; /* 0x010e */
197 struct ihs_osd osd1; /* 0x0180 */
198 u16 reserved_7[9]; /* 0x018e */
199 struct ihs_i2c i2c1; /* 0x01a0 */
200 u16 reserved_8[1834]; /* 0x01ac */
201 u16 videomem0[2048]; /* 0x1000 */
202 u16 videomem1[2048]; /* 0x2000 */
203#else
Dirk Eibach50dcf892014-11-13 19:21:18 +0100204 u16 reserved_6[889]; /* 0x010e */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100205 u16 videomem0[2048]; /* 0x0800 */
206#endif
Dirk Eibach0e60aa82012-04-27 10:33:46 +0200207};
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100208#endif
209
Dirk Eibacha3f9d6c2015-10-28 11:46:32 +0100210#ifdef CONFIG_STRIDER_CPU
211struct ihs_fpga {
212 u16 reflection_low; /* 0x0000 */
213 u16 versions; /* 0x0002 */
214 u16 fpga_version; /* 0x0004 */
215 u16 fpga_features; /* 0x0006 */
216 u16 reserved_0[1]; /* 0x0008 */
217 u16 top_interrupt; /* 0x000a */
218 u16 reserved_1[3]; /* 0x000c */
219 u16 extended_control; /* 0x0012 */
220 struct ihs_gpio gpio; /* 0x0014 */
221 u16 mpc3w_control; /* 0x001a */
222 u16 reserved_2[2]; /* 0x001c */
223 struct ihs_io_ep ep; /* 0x0020 */
224 u16 reserved_3[9]; /* 0x002e */
225 u16 mc_int; /* 0x0040 */
226 u16 mc_int_en; /* 0x0042 */
227 u16 mc_status; /* 0x0044 */
228 u16 mc_control; /* 0x0046 */
229 u16 mc_tx_data; /* 0x0048 */
230 u16 mc_tx_address; /* 0x004a */
231 u16 mc_tx_cmd; /* 0x004c */
232 u16 mc_res; /* 0x004e */
233 u16 mc_rx_cmd_status; /* 0x0050 */
234 u16 mc_rx_data; /* 0x0052 */
235 u16 reserved_4[62]; /* 0x0054 */
236 struct ihs_i2c i2c0; /* 0x00d0 */
237};
238#endif
239
240#ifdef CONFIG_STRIDER_CON
241struct ihs_fpga {
242 u16 reflection_low; /* 0x0000 */
243 u16 versions; /* 0x0002 */
244 u16 fpga_version; /* 0x0004 */
245 u16 fpga_features; /* 0x0006 */
246 u16 reserved_0[1]; /* 0x0008 */
247 u16 top_interrupt; /* 0x000a */
248 u16 reserved_1[4]; /* 0x000c */
249 struct ihs_gpio gpio; /* 0x0014 */
250 u16 mpc3w_control; /* 0x001a */
251 u16 reserved_2[2]; /* 0x001c */
252 struct ihs_io_ep ep; /* 0x0020 */
253 u16 reserved_3[9]; /* 0x002e */
254 struct ihs_i2c i2c0; /* 0x0040 */
255 u16 reserved_4[10]; /* 0x004c */
256 u16 mc_int; /* 0x0060 */
257 u16 mc_int_en; /* 0x0062 */
258 u16 mc_status; /* 0x0064 */
259 u16 mc_control; /* 0x0066 */
260 u16 mc_tx_data; /* 0x0068 */
261 u16 mc_tx_address; /* 0x006a */
262 u16 mc_tx_cmd; /* 0x006c */
263 u16 mc_res; /* 0x006e */
264 u16 mc_rx_cmd_status; /* 0x0070 */
265 u16 mc_rx_data; /* 0x0072 */
266 u16 reserved_5[70]; /* 0x0074 */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100267 struct ihs_osd osd0; /* 0x0100 */
Dirk Eibacha3f9d6c2015-10-28 11:46:32 +0100268 u16 reserved_6[889]; /* 0x010e */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100269 u16 videomem0[2048]; /* 0x0800 */
Dirk Eibacha3f9d6c2015-10-28 11:46:32 +0100270};
271#endif
272
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100273#ifdef CONFIG_DLVISION_10G
Dirk Eibach0e60aa82012-04-27 10:33:46 +0200274struct ihs_fpga {
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100275 u16 reflection_low; /* 0x0000 */
276 u16 versions; /* 0x0002 */
277 u16 fpga_version; /* 0x0004 */
278 u16 fpga_features; /* 0x0006 */
279 u16 reserved_0[10]; /* 0x0008 */
280 u16 extended_interrupt; /* 0x001c */
Dirk Eibachb46226b2014-07-03 09:28:18 +0200281 u16 reserved_1[29]; /* 0x001e */
Dirk Eibach7749c842011-04-06 13:53:48 +0200282 u16 mpc3w_control; /* 0x0058 */
Dirk Eibachb46226b2014-07-03 09:28:18 +0200283 u16 reserved_2[3]; /* 0x005a */
Dirk Eibach071be892015-10-28 11:46:22 +0100284 struct ihs_i2c i2c0; /* 0x0060 */
285 u16 reserved_3[2]; /* 0x006c */
286 struct ihs_i2c i2c1; /* 0x0070 */
287 u16 reserved_4[194]; /* 0x007c */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100288 struct ihs_osd osd0; /* 0x0200 */
Dirk Eibach071be892015-10-28 11:46:22 +0100289 u16 reserved_5[761]; /* 0x020e */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100290 u16 videomem0[2048]; /* 0x0800 */
Dirk Eibach0e60aa82012-04-27 10:33:46 +0200291};
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100292#endif
293
294#endif