blob: 3656d26081cb50a167b6cbeda0883f716f565c39 [file] [log] [blame]
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009,2010 Carl-Daniel Hailfinger
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +000020/* Driver for various LPT adapters.
21 *
22 * This driver uses non-portable direct I/O port accesses which won't work on
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +000023 * any non-x86 platform, and even on x86 there is a high chance there will be
24 * collisions with any loaded parallel port drivers.
25 * The big advantage of direct port I/O is OS independence and speed because
26 * most OS parport drivers will perform many unnecessary accesses although
27 * this driver just treats the parallel port as a GPIO set.
28 */
29#if defined(__i386__) || defined(__x86_64__)
30
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +000031#include <stdlib.h>
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000032#include <strings.h>
Carl-Daniel Hailfingerae418d82011-09-12 06:17:06 +000033#include <string.h>
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +000034#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000035#include "programmer.h"
Patrick Georgi32508eb2012-07-20 20:35:14 +000036#include "hwaccess.h"
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +000037
38/* We have two sets of pins, out and in. The numbers for both sets are
39 * independent and are bitshift values, not real pin numbers.
Paul Menzel018d4822011-10-21 12:33:07 +000040 * Default settings are for the RayeR hardware.
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +000041 */
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +000042
43struct rayer_programmer {
44 const char *type;
45 const enum test_state status;
46 const char *description;
47 const void *dev_data;
48};
49
50struct rayer_pinout {
51 uint8_t cs_bit;
52 uint8_t sck_bit;
53 uint8_t mosi_bit;
54 uint8_t miso_bit;
55 void (*preinit)(const void *);
56 int (*shutdown)(void *);
57};
58
59static const struct rayer_pinout rayer_spipgm = {
60 .cs_bit = 5,
61 .sck_bit = 6,
62 .mosi_bit = 7,
63 .miso_bit = 6,
64};
65
Kyösti Mälkki1d473792013-10-02 01:22:17 +000066static void dlc5_preinit(const void *);
67static int dlc5_shutdown(void *);
68
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +000069static const struct rayer_pinout xilinx_dlc5 = {
70 .cs_bit = 2,
71 .sck_bit = 1,
72 .mosi_bit = 0,
73 .miso_bit = 4,
Kyösti Mälkki1d473792013-10-02 01:22:17 +000074 .preinit = dlc5_preinit,
75 .shutdown = dlc5_shutdown,
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +000076};
77
Maksim Kuleshov3647b2d2013-10-02 01:21:57 +000078static void byteblaster_preinit(const void *);
79static int byteblaster_shutdown(void *);
80
81static const struct rayer_pinout altera_byteblastermv = {
82 .cs_bit = 1,
83 .sck_bit = 0,
84 .mosi_bit = 6,
85 .miso_bit = 7,
86 .preinit = byteblaster_preinit,
87 .shutdown = byteblaster_shutdown,
88};
89
Maksim Kuleshov4dab5c12013-10-02 01:22:02 +000090static void stk200_preinit(const void *);
91static int stk200_shutdown(void *);
92
93static const struct rayer_pinout atmel_stk200 = {
94 .cs_bit = 7,
95 .sck_bit = 4,
96 .mosi_bit = 5,
97 .miso_bit = 6,
98 .preinit = stk200_preinit,
99 .shutdown = stk200_shutdown,
100};
101
Maksim Kuleshovacba2ac2013-10-02 01:22:11 +0000102static const struct rayer_pinout wiggler_lpt = {
103 .cs_bit = 1,
104 .sck_bit = 2,
105 .mosi_bit = 3,
106 .miso_bit = 7,
107};
108
Stefan Taunerfdb16592016-02-28 17:04:38 +0000109static const struct rayer_pinout spi_tt = {
110 .cs_bit = 2,
111 .sck_bit = 0,
112 .mosi_bit = 4,
113 .miso_bit = 7,
114};
115
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000116static const struct rayer_programmer rayer_spi_types[] = {
117 {"rayer", NT, "RayeR SPIPGM", &rayer_spipgm},
118 {"xilinx", NT, "Xilinx Parallel Cable III (DLC 5)", &xilinx_dlc5},
Maksim Kuleshov3647b2d2013-10-02 01:21:57 +0000119 {"byteblastermv", OK, "Altera ByteBlasterMV", &altera_byteblastermv},
Maksim Kuleshov4dab5c12013-10-02 01:22:02 +0000120 {"stk200", NT, "Atmel STK200/300 adapter", &atmel_stk200},
Maksim Kuleshovacba2ac2013-10-02 01:22:11 +0000121 {"wiggler", OK, "Wiggler LPT", &wiggler_lpt},
Stefan Taunerfdb16592016-02-28 17:04:38 +0000122 {"spi_tt", NT, "SPI Tiny Tools (SPI_TT LPT)", &spi_tt},
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000123 {0},
124};
125
126static const struct rayer_pinout *pinout = NULL;
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000127
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000128static uint16_t lpt_iobase;
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000129
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000130/* Cached value of last byte sent. */
131static uint8_t lpt_outbyte;
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000132
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000133static void rayer_bitbang_set_cs(int val)
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000134{
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000135 lpt_outbyte &= ~(1 << pinout->cs_bit);
136 lpt_outbyte |= (val << pinout->cs_bit);
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000137 OUTB(lpt_outbyte, lpt_iobase);
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000138}
139
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000140static void rayer_bitbang_set_sck(int val)
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000141{
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000142 lpt_outbyte &= ~(1 << pinout->sck_bit);
143 lpt_outbyte |= (val << pinout->sck_bit);
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000144 OUTB(lpt_outbyte, lpt_iobase);
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000145}
146
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000147static void rayer_bitbang_set_mosi(int val)
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000148{
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000149 lpt_outbyte &= ~(1 << pinout->mosi_bit);
150 lpt_outbyte |= (val << pinout->mosi_bit);
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000151 OUTB(lpt_outbyte, lpt_iobase);
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000152}
153
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000154static int rayer_bitbang_get_miso(void)
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000155{
156 uint8_t tmp;
157
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000158 tmp = INB(lpt_iobase + 1) ^ 0x80; // bit.7 inverted
159 tmp = (tmp >> pinout->miso_bit) & 0x1;
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000160 return tmp;
161}
162
163static const struct bitbang_spi_master bitbang_spi_master_rayer = {
164 .type = BITBANG_SPI_MASTER_RAYER,
165 .set_cs = rayer_bitbang_set_cs,
166 .set_sck = rayer_bitbang_set_sck,
167 .set_mosi = rayer_bitbang_set_mosi,
168 .get_miso = rayer_bitbang_get_miso,
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000169 .half_period = 0,
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000170};
171
172int rayer_spi_init(void)
173{
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000174 const struct rayer_programmer *prog = rayer_spi_types;
Carl-Daniel Hailfingerae418d82011-09-12 06:17:06 +0000175 char *arg = NULL;
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000176
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000177 /* Non-default port requested? */
Carl-Daniel Hailfingerae418d82011-09-12 06:17:06 +0000178 arg = extract_programmer_param("iobase");
179 if (arg) {
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000180 char *endptr = NULL;
181 unsigned long tmp;
Carl-Daniel Hailfingerae418d82011-09-12 06:17:06 +0000182 tmp = strtoul(arg, &endptr, 0);
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000183 /* Port 0, port >0x10000, unaligned ports and garbage strings
184 * are rejected.
185 */
186 if (!tmp || (tmp >= 0x10000) || (tmp & 0x3) ||
187 (*endptr != '\0')) {
188 /* Using ports below 0x100 is a really bad idea, and
189 * should only be done if no port between 0x100 and
190 * 0xfffc works due to routing issues.
191 */
192 msg_perr("Error: iobase= specified, but the I/O base "
193 "given was invalid.\nIt must be a multiple of "
194 "0x4 and lie between 0x100 and 0xfffc.\n");
Carl-Daniel Hailfingerae418d82011-09-12 06:17:06 +0000195 free(arg);
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000196 return 1;
197 } else {
198 lpt_iobase = (uint16_t)tmp;
199 msg_pinfo("Non-default I/O base requested. This will "
200 "not change the hardware settings.\n");
201 }
202 } else {
203 /* Pick a default value for the I/O base. */
204 lpt_iobase = 0x378;
205 }
Carl-Daniel Hailfingerae418d82011-09-12 06:17:06 +0000206 free(arg);
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000207
208 msg_pdbg("Using address 0x%x as I/O base for parallel port access.\n",
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000209 lpt_iobase);
210
Carl-Daniel Hailfingerae418d82011-09-12 06:17:06 +0000211 arg = extract_programmer_param("type");
212 if (arg) {
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000213 for (; prog->type != NULL; prog++) {
214 if (strcasecmp(arg, prog->type) == 0) {
215 break;
216 }
217 }
218 if (prog->type == NULL) {
Carl-Daniel Hailfingerae418d82011-09-12 06:17:06 +0000219 msg_perr("Error: Invalid device type specified.\n");
220 free(arg);
221 return 1;
222 }
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000223 free(arg);
Carl-Daniel Hailfingerae418d82011-09-12 06:17:06 +0000224 }
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000225 msg_pinfo("Using %s pinout.\n", prog->description);
226 pinout = (struct rayer_pinout *)prog->dev_data;
Carl-Daniel Hailfingerae418d82011-09-12 06:17:06 +0000227
Carl-Daniel Hailfingerd6bb8282012-07-21 17:27:08 +0000228 if (rget_io_perms())
229 return 1;
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000230
Carl-Daniel Hailfinger37c42522010-10-05 19:19:48 +0000231 /* Get the initial value before writing to any line. */
232 lpt_outbyte = INB(lpt_iobase);
233
Kyösti Mälkki8b1bdf12013-10-02 01:21:45 +0000234 if (pinout->shutdown)
235 register_shutdown(pinout->shutdown, (void*)pinout);
236 if (pinout->preinit)
237 pinout->preinit(pinout);
238
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000239 if (register_spi_bitbang_master(&bitbang_spi_master_rayer))
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000240 return 1;
241
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000242 return 0;
243}
244
Maksim Kuleshov3647b2d2013-10-02 01:21:57 +0000245static void byteblaster_preinit(const void *data){
246 msg_pdbg("byteblaster_preinit\n");
247 /* Assert #EN signal. */
248 OUTB(2, lpt_iobase + 2 );
249}
250
251static int byteblaster_shutdown(void *data){
252 msg_pdbg("byteblaster_shutdown\n");
253 /* De-Assert #EN signal. */
254 OUTB(0, lpt_iobase + 2 );
255 return 0;
256}
257
Maksim Kuleshov4dab5c12013-10-02 01:22:02 +0000258static void stk200_preinit(const void *data) {
259 msg_pdbg("stk200_init\n");
260 /* Assert #EN signals, set LED signal. */
261 lpt_outbyte = (1 << 6) ;
262 OUTB(lpt_outbyte, lpt_iobase);
263}
264
265static int stk200_shutdown(void *data) {
266 msg_pdbg("stk200_shutdown\n");
267 /* Assert #EN signals, clear LED signal. */
268 lpt_outbyte = (1 << 2) | (1 << 3);
269 OUTB(lpt_outbyte, lpt_iobase);
270 return 0;
271}
272
Kyösti Mälkki1d473792013-10-02 01:22:17 +0000273static void dlc5_preinit(const void *data) {
274 msg_pdbg("dlc5_preinit\n");
275 /* Assert pin 6 to receive MISO. */
276 lpt_outbyte |= (1<<4);
277 OUTB(lpt_outbyte, lpt_iobase);
278}
279
280static int dlc5_shutdown(void *data) {
281 msg_pdbg("dlc5_shutdown\n");
282 /* De-assert pin 6 to force MISO low. */
283 lpt_outbyte &= ~(1<<4);
284 OUTB(lpt_outbyte, lpt_iobase);
285 return 0;
286}
287
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000288#else
289#error PCI port I/O access is not supported on this architecture yet.
290#endif