Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[cascardo/linux.git] / drivers / staging / gs_fpgaboot / io.c
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16  */
17
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/module.h>
21 #include <linux/types.h>
22 #include <linux/device.h>
23 #include <linux/string.h>
24 #include <linux/slab.h>
25 #include <linux/fs.h>
26 #include <linux/platform_device.h>
27 #include <linux/of.h>
28 #include <linux/of_address.h>
29 #include <linux/firmware.h>
30 #include <linux/io.h>
31
32 #include "io.h"
33
34 static inline void byte0_out(unsigned char data);
35 static inline void byte1_out(unsigned char data);
36 static inline void xl_cclk_b(int32_t i);
37
38 /* Assert and Deassert CCLK */
39 void xl_shift_cclk(int count)
40 {
41         int i;
42
43         for (i = 0; i < count; i++) {
44                 xl_cclk_b(1);
45                 xl_cclk_b(0);
46         }
47 }
48
49 int xl_supported_prog_bus_width(enum wbus bus_bytes)
50 {
51         switch (bus_bytes) {
52         case bus_1byte:
53                 break;
54         case bus_2byte:
55                 break;
56         default:
57                 pr_err("unsupported program bus width %d\n",
58                                 bus_bytes);
59                 return 0;
60         }
61
62         return 1;
63 }
64
65 /* Serialize byte and clock each bit on target's DIN and CCLK pins */
66 void xl_shift_bytes_out(enum wbus bus_byte, unsigned char *pdata)
67 {
68         /*
69          * supports 1 and 2 bytes programming mode
70          */
71         if (likely(bus_byte == bus_2byte))
72                 byte0_out(pdata[0]);
73
74         byte1_out(pdata[1]);
75         xl_shift_cclk(1);
76 }
77
78 /*
79  * generic bit swap for xilinx SYSTEMMAP FPGA programming
80  */
81 void xl_program_b(int32_t i)
82 {
83 }
84
85 void xl_rdwr_b(int32_t i)
86 {
87 }
88
89 void xl_csi_b(int32_t i)
90 {
91 }
92
93 int xl_get_init_b(void)
94 {
95         return -1;
96 }
97
98 int xl_get_done_b(void)
99 {
100         return -1;
101 }
102
103 static inline void byte0_out(unsigned char data)
104 {
105 }
106
107 static inline void byte1_out(unsigned char data)
108 {
109 }
110
111 static inline void xl_cclk_b(int32_t i)
112 {
113 }
114
115 /*
116  * configurable per device type for different I/O config
117  */
118 int xl_init_io(void)
119 {
120         return -1;
121 }