blob: 6d38a83d90342023d0a47bdd7e383b250f2f312f [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
Mario Sixfe4a9672019-03-29 10:18:10 +010010#ifdef CONFIG_GDSYS_LEGACY_DRIVERS
Dirk Eibach255ef4d2011-10-20 11:12:55 +020011int init_func_fpga(void);
12
Dirk Eibach2da0fc02011-01-21 09:31:21 +010013enum {
14 FPGA_STATE_DONE_FAILED = 1 << 0,
15 FPGA_STATE_REFLECTION_FAILED = 1 << 1,
Dirk Eibach255ef4d2011-10-20 11:12:55 +020016 FPGA_STATE_PLATFORM = 1 << 2,
Dirk Eibach2da0fc02011-01-21 09:31:21 +010017};
18
19int get_fpga_state(unsigned dev);
Dirk Eibach2da0fc02011-01-21 09:31:21 +010020
Dirk Eibachaba27ac2013-06-26 16:04:26 +020021int fpga_set_reg(u32 fpga, u16 *reg, off_t regoff, u16 data);
22int fpga_get_reg(u32 fpga, u16 *reg, off_t regoff, u16 *data);
23
24extern struct ihs_fpga *fpga_ptr[];
25
26#define FPGA_SET_REG(ix, fld, val) \
27 fpga_set_reg((ix), \
28 &fpga_ptr[ix]->fld, \
29 offsetof(struct ihs_fpga, fld), \
30 val)
31
32#define FPGA_GET_REG(ix, fld, val) \
33 fpga_get_reg((ix), \
34 &fpga_ptr[ix]->fld, \
35 offsetof(struct ihs_fpga, fld), \
36 val)
Mario Sixfe4a9672019-03-29 10:18:10 +010037#endif
Dirk Eibachaba27ac2013-06-26 16:04:26 +020038
Dirk Eibach0e60aa82012-04-27 10:33:46 +020039struct ihs_gpio {
Dirk Eibach2da0fc02011-01-21 09:31:21 +010040 u16 read;
41 u16 clear;
42 u16 set;
Dirk Eibach0e60aa82012-04-27 10:33:46 +020043};
Dirk Eibach2da0fc02011-01-21 09:31:21 +010044
Dirk Eibach0e60aa82012-04-27 10:33:46 +020045struct ihs_i2c {
Dirk Eibachb46226b2014-07-03 09:28:18 +020046 u16 interrupt_status;
47 u16 interrupt_enable;
Dirk Eibach2da0fc02011-01-21 09:31:21 +010048 u16 write_mailbox_ext;
Dirk Eibachb46226b2014-07-03 09:28:18 +020049 u16 write_mailbox;
Dirk Eibach2da0fc02011-01-21 09:31:21 +010050 u16 read_mailbox_ext;
Dirk Eibachb46226b2014-07-03 09:28:18 +020051 u16 read_mailbox;
Dirk Eibach0e60aa82012-04-27 10:33:46 +020052};
Dirk Eibach2da0fc02011-01-21 09:31:21 +010053
Dirk Eibach0e60aa82012-04-27 10:33:46 +020054struct ihs_osd {
Dirk Eibach2da0fc02011-01-21 09:31:21 +010055 u16 version;
56 u16 features;
57 u16 control;
58 u16 xy_size;
Dirk Eibach52158e32011-04-06 13:53:47 +020059 u16 xy_scale;
60 u16 x_pos;
61 u16 y_pos;
Dirk Eibach0e60aa82012-04-27 10:33:46 +020062};
Dirk Eibach2da0fc02011-01-21 09:31:21 +010063
Dirk Eibach50dcf892014-11-13 19:21:18 +010064struct ihs_mdio {
65 u16 control;
66 u16 address_data;
67 u16 rx_data;
68};
69
70struct ihs_io_ep {
71 u16 transmit_data;
72 u16 rx_tx_control;
73 u16 receive_data;
74 u16 rx_tx_status;
75 u16 reserved;
76 u16 device_address;
77 u16 target_address;
78};
79
Dirk Eibach6e9e6c32012-04-26 03:54:22 +000080#ifdef CONFIG_NEO
Dirk Eibach0e60aa82012-04-27 10:33:46 +020081struct ihs_fpga {
Dirk Eibach6e9e6c32012-04-26 03:54:22 +000082 u16 reflection_low; /* 0x0000 */
83 u16 versions; /* 0x0002 */
84 u16 fpga_features; /* 0x0004 */
85 u16 fpga_version; /* 0x0006 */
86 u16 reserved_0[8187]; /* 0x0008 */
87 u16 reflection_high; /* 0x3ffe */
Dirk Eibach0e60aa82012-04-27 10:33:46 +020088};
Dirk Eibach6e9e6c32012-04-26 03:54:22 +000089#endif
90
Mario Sixd6918812019-01-21 09:17:45 +010091#if defined(CONFIG_TARGET_HRCON) || defined(CONFIG_STRIDER_CON_DP)
Dirk Eibach50dcf892014-11-13 19:21:18 +010092struct ihs_fpga {
93 u16 reflection_low; /* 0x0000 */
94 u16 versions; /* 0x0002 */
95 u16 fpga_version; /* 0x0004 */
96 u16 fpga_features; /* 0x0006 */
97 u16 reserved_0[1]; /* 0x0008 */
98 u16 top_interrupt; /* 0x000a */
Dirk Eibach7ed45d32015-10-28 11:46:35 +010099 u16 reserved_1[2]; /* 0x000c */
100 u16 control; /* 0x0010 */
101 u16 extended_control; /* 0x0012 */
Dirk Eibach50dcf892014-11-13 19:21:18 +0100102 struct ihs_gpio gpio; /* 0x0014 */
103 u16 mpc3w_control; /* 0x001a */
104 u16 reserved_2[2]; /* 0x001c */
105 struct ihs_io_ep ep; /* 0x0020 */
106 u16 reserved_3[9]; /* 0x002e */
Dirk Eibach071be892015-10-28 11:46:22 +0100107 struct ihs_i2c i2c0; /* 0x0040 */
Dirk Eibach50dcf892014-11-13 19:21:18 +0100108 u16 reserved_4[10]; /* 0x004c */
109 u16 mc_int; /* 0x0060 */
110 u16 mc_int_en; /* 0x0062 */
111 u16 mc_status; /* 0x0064 */
112 u16 mc_control; /* 0x0066 */
113 u16 mc_tx_data; /* 0x0068 */
114 u16 mc_tx_address; /* 0x006a */
115 u16 mc_tx_cmd; /* 0x006c */
116 u16 mc_res; /* 0x006e */
117 u16 mc_rx_cmd_status; /* 0x0070 */
118 u16 mc_rx_data; /* 0x0072 */
119 u16 reserved_5[69]; /* 0x0074 */
120 u16 reflection_high; /* 0x00fe */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100121 struct ihs_osd osd0; /* 0x0100 */
122#ifdef CONFIG_SYS_OSD_DH
123 u16 reserved_6[57]; /* 0x010e */
124 struct ihs_osd osd1; /* 0x0180 */
125 u16 reserved_7[9]; /* 0x018e */
126 struct ihs_i2c i2c1; /* 0x01a0 */
127 u16 reserved_8[1834]; /* 0x01ac */
128 u16 videomem0[2048]; /* 0x1000 */
129 u16 videomem1[2048]; /* 0x2000 */
130#else
Dirk Eibach50dcf892014-11-13 19:21:18 +0100131 u16 reserved_6[889]; /* 0x010e */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100132 u16 videomem0[2048]; /* 0x0800 */
133#endif
Dirk Eibach0e60aa82012-04-27 10:33:46 +0200134};
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100135#endif
136
Dirk Eibacha3f9d6c2015-10-28 11:46:32 +0100137#ifdef CONFIG_STRIDER_CPU
138struct ihs_fpga {
139 u16 reflection_low; /* 0x0000 */
140 u16 versions; /* 0x0002 */
141 u16 fpga_version; /* 0x0004 */
142 u16 fpga_features; /* 0x0006 */
143 u16 reserved_0[1]; /* 0x0008 */
144 u16 top_interrupt; /* 0x000a */
145 u16 reserved_1[3]; /* 0x000c */
146 u16 extended_control; /* 0x0012 */
147 struct ihs_gpio gpio; /* 0x0014 */
148 u16 mpc3w_control; /* 0x001a */
149 u16 reserved_2[2]; /* 0x001c */
150 struct ihs_io_ep ep; /* 0x0020 */
151 u16 reserved_3[9]; /* 0x002e */
152 u16 mc_int; /* 0x0040 */
153 u16 mc_int_en; /* 0x0042 */
154 u16 mc_status; /* 0x0044 */
155 u16 mc_control; /* 0x0046 */
156 u16 mc_tx_data; /* 0x0048 */
157 u16 mc_tx_address; /* 0x004a */
158 u16 mc_tx_cmd; /* 0x004c */
159 u16 mc_res; /* 0x004e */
160 u16 mc_rx_cmd_status; /* 0x0050 */
161 u16 mc_rx_data; /* 0x0052 */
162 u16 reserved_4[62]; /* 0x0054 */
163 struct ihs_i2c i2c0; /* 0x00d0 */
164};
165#endif
166
167#ifdef CONFIG_STRIDER_CON
168struct ihs_fpga {
169 u16 reflection_low; /* 0x0000 */
170 u16 versions; /* 0x0002 */
171 u16 fpga_version; /* 0x0004 */
172 u16 fpga_features; /* 0x0006 */
173 u16 reserved_0[1]; /* 0x0008 */
174 u16 top_interrupt; /* 0x000a */
175 u16 reserved_1[4]; /* 0x000c */
176 struct ihs_gpio gpio; /* 0x0014 */
177 u16 mpc3w_control; /* 0x001a */
178 u16 reserved_2[2]; /* 0x001c */
179 struct ihs_io_ep ep; /* 0x0020 */
180 u16 reserved_3[9]; /* 0x002e */
181 struct ihs_i2c i2c0; /* 0x0040 */
182 u16 reserved_4[10]; /* 0x004c */
183 u16 mc_int; /* 0x0060 */
184 u16 mc_int_en; /* 0x0062 */
185 u16 mc_status; /* 0x0064 */
186 u16 mc_control; /* 0x0066 */
187 u16 mc_tx_data; /* 0x0068 */
188 u16 mc_tx_address; /* 0x006a */
189 u16 mc_tx_cmd; /* 0x006c */
190 u16 mc_res; /* 0x006e */
191 u16 mc_rx_cmd_status; /* 0x0070 */
192 u16 mc_rx_data; /* 0x0072 */
193 u16 reserved_5[70]; /* 0x0074 */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100194 struct ihs_osd osd0; /* 0x0100 */
Dirk Eibacha3f9d6c2015-10-28 11:46:32 +0100195 u16 reserved_6[889]; /* 0x010e */
Dirk Eibach7ed45d32015-10-28 11:46:35 +0100196 u16 videomem0[2048]; /* 0x0800 */
Dirk Eibacha3f9d6c2015-10-28 11:46:32 +0100197};
198#endif
199
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100200#endif