Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2010 |
Mario Six | d38826a | 2018-03-06 08:04:58 +0100 | [diff] [blame] | 4 | * Dirk Eibach, Guntermann & Drunck GmbH, dirk.eibach@gdsys.cc |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __GDSYS_FPGA_H |
| 8 | #define __GDSYS_FPGA_H |
| 9 | |
Mario Six | fe4a967 | 2019-03-29 10:18:10 +0100 | [diff] [blame] | 10 | #ifdef CONFIG_GDSYS_LEGACY_DRIVERS |
Dirk Eibach | 255ef4d | 2011-10-20 11:12:55 +0200 | [diff] [blame] | 11 | int init_func_fpga(void); |
| 12 | |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 13 | enum { |
| 14 | FPGA_STATE_DONE_FAILED = 1 << 0, |
| 15 | FPGA_STATE_REFLECTION_FAILED = 1 << 1, |
Dirk Eibach | 255ef4d | 2011-10-20 11:12:55 +0200 | [diff] [blame] | 16 | FPGA_STATE_PLATFORM = 1 << 2, |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 17 | }; |
| 18 | |
| 19 | int get_fpga_state(unsigned dev); |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 20 | |
Dirk Eibach | aba27ac | 2013-06-26 16:04:26 +0200 | [diff] [blame] | 21 | int fpga_set_reg(u32 fpga, u16 *reg, off_t regoff, u16 data); |
| 22 | int fpga_get_reg(u32 fpga, u16 *reg, off_t regoff, u16 *data); |
| 23 | |
| 24 | extern 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 Six | fe4a967 | 2019-03-29 10:18:10 +0100 | [diff] [blame] | 37 | #endif |
Dirk Eibach | aba27ac | 2013-06-26 16:04:26 +0200 | [diff] [blame] | 38 | |
Dirk Eibach | 0e60aa8 | 2012-04-27 10:33:46 +0200 | [diff] [blame] | 39 | struct ihs_gpio { |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 40 | u16 read; |
| 41 | u16 clear; |
| 42 | u16 set; |
Dirk Eibach | 0e60aa8 | 2012-04-27 10:33:46 +0200 | [diff] [blame] | 43 | }; |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 44 | |
Dirk Eibach | 0e60aa8 | 2012-04-27 10:33:46 +0200 | [diff] [blame] | 45 | struct ihs_i2c { |
Dirk Eibach | b46226b | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 46 | u16 interrupt_status; |
| 47 | u16 interrupt_enable; |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 48 | u16 write_mailbox_ext; |
Dirk Eibach | b46226b | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 49 | u16 write_mailbox; |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 50 | u16 read_mailbox_ext; |
Dirk Eibach | b46226b | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 51 | u16 read_mailbox; |
Dirk Eibach | 0e60aa8 | 2012-04-27 10:33:46 +0200 | [diff] [blame] | 52 | }; |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 53 | |
Dirk Eibach | 0e60aa8 | 2012-04-27 10:33:46 +0200 | [diff] [blame] | 54 | struct ihs_osd { |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 55 | u16 version; |
| 56 | u16 features; |
| 57 | u16 control; |
| 58 | u16 xy_size; |
Dirk Eibach | 52158e3 | 2011-04-06 13:53:47 +0200 | [diff] [blame] | 59 | u16 xy_scale; |
| 60 | u16 x_pos; |
| 61 | u16 y_pos; |
Dirk Eibach | 0e60aa8 | 2012-04-27 10:33:46 +0200 | [diff] [blame] | 62 | }; |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 63 | |
Dirk Eibach | 50dcf89 | 2014-11-13 19:21:18 +0100 | [diff] [blame] | 64 | struct ihs_mdio { |
| 65 | u16 control; |
| 66 | u16 address_data; |
| 67 | u16 rx_data; |
| 68 | }; |
| 69 | |
| 70 | struct 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 Eibach | 6e9e6c3 | 2012-04-26 03:54:22 +0000 | [diff] [blame] | 80 | #ifdef CONFIG_NEO |
Dirk Eibach | 0e60aa8 | 2012-04-27 10:33:46 +0200 | [diff] [blame] | 81 | struct ihs_fpga { |
Dirk Eibach | 6e9e6c3 | 2012-04-26 03:54:22 +0000 | [diff] [blame] | 82 | 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 Eibach | 0e60aa8 | 2012-04-27 10:33:46 +0200 | [diff] [blame] | 88 | }; |
Dirk Eibach | 6e9e6c3 | 2012-04-26 03:54:22 +0000 | [diff] [blame] | 89 | #endif |
| 90 | |
Dirk Eibach | 2da0fc0 | 2011-01-21 09:31:21 +0100 | [diff] [blame] | 91 | #endif |