Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 1 | /* |
| 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älkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 20 | /* Driver for various LPT adapters. |
| 21 | * |
| 22 | * This driver uses non-portable direct I/O port accesses which won't work on |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 23 | * 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 Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 31 | #include <stdlib.h> |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame] | 32 | #include <strings.h> |
Carl-Daniel Hailfinger | ae418d8 | 2011-09-12 06:17:06 +0000 | [diff] [blame] | 33 | #include <string.h> |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 34 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 35 | #include "programmer.h" |
Patrick Georgi | 32508eb | 2012-07-20 20:35:14 +0000 | [diff] [blame] | 36 | #include "hwaccess.h" |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 37 | |
| 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 Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 40 | * Default settings are for the RayeR hardware. |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 41 | */ |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 42 | |
| 43 | struct rayer_programmer { |
| 44 | const char *type; |
| 45 | const enum test_state status; |
| 46 | const char *description; |
| 47 | const void *dev_data; |
| 48 | }; |
| 49 | |
| 50 | struct 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 | |
| 59 | static 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älkki | 1d47379 | 2013-10-02 01:22:17 +0000 | [diff] [blame] | 66 | static void dlc5_preinit(const void *); |
| 67 | static int dlc5_shutdown(void *); |
| 68 | |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 69 | static 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älkki | 1d47379 | 2013-10-02 01:22:17 +0000 | [diff] [blame] | 74 | .preinit = dlc5_preinit, |
| 75 | .shutdown = dlc5_shutdown, |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 76 | }; |
| 77 | |
Maksim Kuleshov | 3647b2d | 2013-10-02 01:21:57 +0000 | [diff] [blame] | 78 | static void byteblaster_preinit(const void *); |
| 79 | static int byteblaster_shutdown(void *); |
| 80 | |
| 81 | static 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 Kuleshov | 4dab5c1 | 2013-10-02 01:22:02 +0000 | [diff] [blame] | 90 | static void stk200_preinit(const void *); |
| 91 | static int stk200_shutdown(void *); |
| 92 | |
| 93 | static 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 Kuleshov | acba2ac | 2013-10-02 01:22:11 +0000 | [diff] [blame] | 102 | static const struct rayer_pinout wiggler_lpt = { |
| 103 | .cs_bit = 1, |
| 104 | .sck_bit = 2, |
| 105 | .mosi_bit = 3, |
| 106 | .miso_bit = 7, |
| 107 | }; |
| 108 | |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 109 | static const struct rayer_programmer rayer_spi_types[] = { |
| 110 | {"rayer", NT, "RayeR SPIPGM", &rayer_spipgm}, |
| 111 | {"xilinx", NT, "Xilinx Parallel Cable III (DLC 5)", &xilinx_dlc5}, |
Maksim Kuleshov | 3647b2d | 2013-10-02 01:21:57 +0000 | [diff] [blame] | 112 | {"byteblastermv", OK, "Altera ByteBlasterMV", &altera_byteblastermv}, |
Maksim Kuleshov | 4dab5c1 | 2013-10-02 01:22:02 +0000 | [diff] [blame] | 113 | {"stk200", NT, "Atmel STK200/300 adapter", &atmel_stk200}, |
Maksim Kuleshov | acba2ac | 2013-10-02 01:22:11 +0000 | [diff] [blame] | 114 | {"wiggler", OK, "Wiggler LPT", &wiggler_lpt}, |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 115 | {0}, |
| 116 | }; |
| 117 | |
| 118 | static const struct rayer_pinout *pinout = NULL; |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 119 | |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 120 | static uint16_t lpt_iobase; |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 121 | |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 122 | /* Cached value of last byte sent. */ |
| 123 | static uint8_t lpt_outbyte; |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 124 | |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 125 | static void rayer_bitbang_set_cs(int val) |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 126 | { |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 127 | lpt_outbyte &= ~(1 << pinout->cs_bit); |
| 128 | lpt_outbyte |= (val << pinout->cs_bit); |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 129 | OUTB(lpt_outbyte, lpt_iobase); |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 130 | } |
| 131 | |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 132 | static void rayer_bitbang_set_sck(int val) |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 133 | { |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 134 | lpt_outbyte &= ~(1 << pinout->sck_bit); |
| 135 | lpt_outbyte |= (val << pinout->sck_bit); |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 136 | OUTB(lpt_outbyte, lpt_iobase); |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 137 | } |
| 138 | |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 139 | static void rayer_bitbang_set_mosi(int val) |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 140 | { |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 141 | lpt_outbyte &= ~(1 << pinout->mosi_bit); |
| 142 | lpt_outbyte |= (val << pinout->mosi_bit); |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 143 | OUTB(lpt_outbyte, lpt_iobase); |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 146 | static int rayer_bitbang_get_miso(void) |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 147 | { |
| 148 | uint8_t tmp; |
| 149 | |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 150 | tmp = INB(lpt_iobase + 1) ^ 0x80; // bit.7 inverted |
| 151 | tmp = (tmp >> pinout->miso_bit) & 0x1; |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 152 | return tmp; |
| 153 | } |
| 154 | |
| 155 | static const struct bitbang_spi_master bitbang_spi_master_rayer = { |
| 156 | .type = BITBANG_SPI_MASTER_RAYER, |
| 157 | .set_cs = rayer_bitbang_set_cs, |
| 158 | .set_sck = rayer_bitbang_set_sck, |
| 159 | .set_mosi = rayer_bitbang_set_mosi, |
| 160 | .get_miso = rayer_bitbang_get_miso, |
Carl-Daniel Hailfinger | c40cff7 | 2011-12-20 00:19:29 +0000 | [diff] [blame] | 161 | .half_period = 0, |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 162 | }; |
| 163 | |
| 164 | int rayer_spi_init(void) |
| 165 | { |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 166 | const struct rayer_programmer *prog = rayer_spi_types; |
Carl-Daniel Hailfinger | ae418d8 | 2011-09-12 06:17:06 +0000 | [diff] [blame] | 167 | char *arg = NULL; |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 168 | |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 169 | /* Non-default port requested? */ |
Carl-Daniel Hailfinger | ae418d8 | 2011-09-12 06:17:06 +0000 | [diff] [blame] | 170 | arg = extract_programmer_param("iobase"); |
| 171 | if (arg) { |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 172 | char *endptr = NULL; |
| 173 | unsigned long tmp; |
Carl-Daniel Hailfinger | ae418d8 | 2011-09-12 06:17:06 +0000 | [diff] [blame] | 174 | tmp = strtoul(arg, &endptr, 0); |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 175 | /* Port 0, port >0x10000, unaligned ports and garbage strings |
| 176 | * are rejected. |
| 177 | */ |
| 178 | if (!tmp || (tmp >= 0x10000) || (tmp & 0x3) || |
| 179 | (*endptr != '\0')) { |
| 180 | /* Using ports below 0x100 is a really bad idea, and |
| 181 | * should only be done if no port between 0x100 and |
| 182 | * 0xfffc works due to routing issues. |
| 183 | */ |
| 184 | msg_perr("Error: iobase= specified, but the I/O base " |
| 185 | "given was invalid.\nIt must be a multiple of " |
| 186 | "0x4 and lie between 0x100 and 0xfffc.\n"); |
Carl-Daniel Hailfinger | ae418d8 | 2011-09-12 06:17:06 +0000 | [diff] [blame] | 187 | free(arg); |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 188 | return 1; |
| 189 | } else { |
| 190 | lpt_iobase = (uint16_t)tmp; |
| 191 | msg_pinfo("Non-default I/O base requested. This will " |
| 192 | "not change the hardware settings.\n"); |
| 193 | } |
| 194 | } else { |
| 195 | /* Pick a default value for the I/O base. */ |
| 196 | lpt_iobase = 0x378; |
| 197 | } |
Carl-Daniel Hailfinger | ae418d8 | 2011-09-12 06:17:06 +0000 | [diff] [blame] | 198 | free(arg); |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 199 | |
| 200 | msg_pdbg("Using address 0x%x as I/O base for parallel port access.\n", |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 201 | lpt_iobase); |
| 202 | |
Carl-Daniel Hailfinger | ae418d8 | 2011-09-12 06:17:06 +0000 | [diff] [blame] | 203 | arg = extract_programmer_param("type"); |
| 204 | if (arg) { |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 205 | for (; prog->type != NULL; prog++) { |
| 206 | if (strcasecmp(arg, prog->type) == 0) { |
| 207 | break; |
| 208 | } |
| 209 | } |
| 210 | if (prog->type == NULL) { |
Carl-Daniel Hailfinger | ae418d8 | 2011-09-12 06:17:06 +0000 | [diff] [blame] | 211 | msg_perr("Error: Invalid device type specified.\n"); |
| 212 | free(arg); |
| 213 | return 1; |
| 214 | } |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 215 | free(arg); |
Carl-Daniel Hailfinger | ae418d8 | 2011-09-12 06:17:06 +0000 | [diff] [blame] | 216 | } |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 217 | msg_pinfo("Using %s pinout.\n", prog->description); |
| 218 | pinout = (struct rayer_pinout *)prog->dev_data; |
Carl-Daniel Hailfinger | ae418d8 | 2011-09-12 06:17:06 +0000 | [diff] [blame] | 219 | |
Carl-Daniel Hailfinger | d6bb828 | 2012-07-21 17:27:08 +0000 | [diff] [blame] | 220 | if (rget_io_perms()) |
| 221 | return 1; |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 222 | |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 223 | /* Get the initial value before writing to any line. */ |
| 224 | lpt_outbyte = INB(lpt_iobase); |
| 225 | |
Kyösti Mälkki | 8b1bdf1 | 2013-10-02 01:21:45 +0000 | [diff] [blame] | 226 | if (pinout->shutdown) |
| 227 | register_shutdown(pinout->shutdown, (void*)pinout); |
| 228 | if (pinout->preinit) |
| 229 | pinout->preinit(pinout); |
| 230 | |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 231 | if (register_spi_bitbang_master(&bitbang_spi_master_rayer)) |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 232 | return 1; |
| 233 | |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 234 | return 0; |
| 235 | } |
| 236 | |
Maksim Kuleshov | 3647b2d | 2013-10-02 01:21:57 +0000 | [diff] [blame] | 237 | static void byteblaster_preinit(const void *data){ |
| 238 | msg_pdbg("byteblaster_preinit\n"); |
| 239 | /* Assert #EN signal. */ |
| 240 | OUTB(2, lpt_iobase + 2 ); |
| 241 | } |
| 242 | |
| 243 | static int byteblaster_shutdown(void *data){ |
| 244 | msg_pdbg("byteblaster_shutdown\n"); |
| 245 | /* De-Assert #EN signal. */ |
| 246 | OUTB(0, lpt_iobase + 2 ); |
| 247 | return 0; |
| 248 | } |
| 249 | |
Maksim Kuleshov | 4dab5c1 | 2013-10-02 01:22:02 +0000 | [diff] [blame] | 250 | static void stk200_preinit(const void *data) { |
| 251 | msg_pdbg("stk200_init\n"); |
| 252 | /* Assert #EN signals, set LED signal. */ |
| 253 | lpt_outbyte = (1 << 6) ; |
| 254 | OUTB(lpt_outbyte, lpt_iobase); |
| 255 | } |
| 256 | |
| 257 | static int stk200_shutdown(void *data) { |
| 258 | msg_pdbg("stk200_shutdown\n"); |
| 259 | /* Assert #EN signals, clear LED signal. */ |
| 260 | lpt_outbyte = (1 << 2) | (1 << 3); |
| 261 | OUTB(lpt_outbyte, lpt_iobase); |
| 262 | return 0; |
| 263 | } |
| 264 | |
Kyösti Mälkki | 1d47379 | 2013-10-02 01:22:17 +0000 | [diff] [blame] | 265 | static void dlc5_preinit(const void *data) { |
| 266 | msg_pdbg("dlc5_preinit\n"); |
| 267 | /* Assert pin 6 to receive MISO. */ |
| 268 | lpt_outbyte |= (1<<4); |
| 269 | OUTB(lpt_outbyte, lpt_iobase); |
| 270 | } |
| 271 | |
| 272 | static int dlc5_shutdown(void *data) { |
| 273 | msg_pdbg("dlc5_shutdown\n"); |
| 274 | /* De-assert pin 6 to force MISO low. */ |
| 275 | lpt_outbyte &= ~(1<<4); |
| 276 | OUTB(lpt_outbyte, lpt_iobase); |
| 277 | return 0; |
| 278 | } |
| 279 | |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 280 | #else |
| 281 | #error PCI port I/O access is not supported on this architecture yet. |
| 282 | #endif |