blob: 8e028fe9f3a35670436004b407a8a05e713d0086 [file] [log] [blame]
hailfinger52c4fa02010-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 *
hailfinger52c4fa02010-07-21 10:26:01 +000015 */
16
17/* Driver for the SPIPGM hardware by "RayeR" Martin Rehak.
18 * See http://rayer.ic.cz/elektro/spipgm.htm for schematics and instructions.
19 */
20
21/* This driver uses non-portable direct I/O port accesses which won't work on
22 * any non-x86 platform, and even on x86 there is a high chance there will be
23 * collisions with any loaded parallel port drivers.
24 * The big advantage of direct port I/O is OS independence and speed because
25 * most OS parport drivers will perform many unnecessary accesses although
26 * this driver just treats the parallel port as a GPIO set.
27 */
28#if defined(__i386__) || defined(__x86_64__)
29
hailfinger08cf2ed2010-10-05 19:19:48 +000030#include <stdlib.h>
Edward O'Callaghanb4300ca2019-09-03 16:15:21 +100031#include <strings.h>
hailfingerb9b9ccf2011-09-12 06:17:06 +000032#include <string.h>
hailfinger52c4fa02010-07-21 10:26:01 +000033#include "flash.h"
hailfinger428f6852010-07-27 22:41:39 +000034#include "programmer.h"
Mayur Panchalf4796862019-08-05 15:46:12 +100035#include "hwaccess.h"
hailfinger52c4fa02010-07-21 10:26:01 +000036
hailfingerb9b9ccf2011-09-12 06:17:06 +000037enum rayer_type {
38 TYPE_RAYER,
39 TYPE_XILINX_DLC5,
40};
41
hailfinger52c4fa02010-07-21 10:26:01 +000042/* We have two sets of pins, out and in. The numbers for both sets are
43 * independent and are bitshift values, not real pin numbers.
stefanct98d917c2011-10-21 12:33:07 +000044 * Default settings are for the RayeR hardware.
hailfinger52c4fa02010-07-21 10:26:01 +000045 */
46/* Pins for master->slave direction */
hailfingerb9b9ccf2011-09-12 06:17:06 +000047static int rayer_cs_bit = 5;
48static int rayer_sck_bit = 6;
49static int rayer_mosi_bit = 7;
hailfinger52c4fa02010-07-21 10:26:01 +000050/* Pins for slave->master direction */
hailfingerb9b9ccf2011-09-12 06:17:06 +000051static int rayer_miso_bit = 6;
hailfinger52c4fa02010-07-21 10:26:01 +000052
hailfinger08cf2ed2010-10-05 19:19:48 +000053static uint16_t lpt_iobase;
hailfinger52c4fa02010-07-21 10:26:01 +000054
hailfinger08cf2ed2010-10-05 19:19:48 +000055/* Cached value of last byte sent. */
56static uint8_t lpt_outbyte;
hailfinger52c4fa02010-07-21 10:26:01 +000057
hailfinger08cf2ed2010-10-05 19:19:48 +000058static void rayer_bitbang_set_cs(int val)
hailfinger52c4fa02010-07-21 10:26:01 +000059{
hailfingerb9b9ccf2011-09-12 06:17:06 +000060 lpt_outbyte &= ~(1 << rayer_cs_bit);
61 lpt_outbyte |= (val << rayer_cs_bit);
hailfinger08cf2ed2010-10-05 19:19:48 +000062 OUTB(lpt_outbyte, lpt_iobase);
hailfinger52c4fa02010-07-21 10:26:01 +000063}
64
hailfinger08cf2ed2010-10-05 19:19:48 +000065static void rayer_bitbang_set_sck(int val)
hailfinger52c4fa02010-07-21 10:26:01 +000066{
hailfingerb9b9ccf2011-09-12 06:17:06 +000067 lpt_outbyte &= ~(1 << rayer_sck_bit);
68 lpt_outbyte |= (val << rayer_sck_bit);
hailfinger08cf2ed2010-10-05 19:19:48 +000069 OUTB(lpt_outbyte, lpt_iobase);
hailfinger52c4fa02010-07-21 10:26:01 +000070}
71
hailfinger08cf2ed2010-10-05 19:19:48 +000072static void rayer_bitbang_set_mosi(int val)
hailfinger52c4fa02010-07-21 10:26:01 +000073{
hailfingerb9b9ccf2011-09-12 06:17:06 +000074 lpt_outbyte &= ~(1 << rayer_mosi_bit);
75 lpt_outbyte |= (val << rayer_mosi_bit);
hailfinger08cf2ed2010-10-05 19:19:48 +000076 OUTB(lpt_outbyte, lpt_iobase);
hailfinger52c4fa02010-07-21 10:26:01 +000077}
78
hailfinger08cf2ed2010-10-05 19:19:48 +000079static int rayer_bitbang_get_miso(void)
hailfinger52c4fa02010-07-21 10:26:01 +000080{
81 uint8_t tmp;
82
83 tmp = INB(lpt_iobase + 1);
hailfingerb9b9ccf2011-09-12 06:17:06 +000084 tmp = (tmp >> rayer_miso_bit) & 0x1;
hailfinger52c4fa02010-07-21 10:26:01 +000085 return tmp;
86}
87
88static const struct bitbang_spi_master bitbang_spi_master_rayer = {
89 .type = BITBANG_SPI_MASTER_RAYER,
90 .set_cs = rayer_bitbang_set_cs,
91 .set_sck = rayer_bitbang_set_sck,
92 .set_mosi = rayer_bitbang_set_mosi,
93 .get_miso = rayer_bitbang_get_miso,
Patrick Georgie081d5d2017-03-22 21:18:18 +010094 .half_period = 0,
hailfinger52c4fa02010-07-21 10:26:01 +000095};
96
David Hendricksac1d25c2016-08-09 17:00:58 -070097int rayer_spi_init(void)
hailfinger52c4fa02010-07-21 10:26:01 +000098{
hailfingerb9b9ccf2011-09-12 06:17:06 +000099 char *arg = NULL;
100 enum rayer_type rayer_type = TYPE_RAYER;
hailfinger52c4fa02010-07-21 10:26:01 +0000101
hailfinger08cf2ed2010-10-05 19:19:48 +0000102 /* Non-default port requested? */
hailfingerb9b9ccf2011-09-12 06:17:06 +0000103 arg = extract_programmer_param("iobase");
104 if (arg) {
hailfinger08cf2ed2010-10-05 19:19:48 +0000105 char *endptr = NULL;
106 unsigned long tmp;
hailfingerb9b9ccf2011-09-12 06:17:06 +0000107 tmp = strtoul(arg, &endptr, 0);
hailfinger08cf2ed2010-10-05 19:19:48 +0000108 /* Port 0, port >0x10000, unaligned ports and garbage strings
109 * are rejected.
110 */
111 if (!tmp || (tmp >= 0x10000) || (tmp & 0x3) ||
112 (*endptr != '\0')) {
113 /* Using ports below 0x100 is a really bad idea, and
114 * should only be done if no port between 0x100 and
115 * 0xfffc works due to routing issues.
116 */
117 msg_perr("Error: iobase= specified, but the I/O base "
118 "given was invalid.\nIt must be a multiple of "
119 "0x4 and lie between 0x100 and 0xfffc.\n");
hailfingerb9b9ccf2011-09-12 06:17:06 +0000120 free(arg);
hailfinger08cf2ed2010-10-05 19:19:48 +0000121 return 1;
122 } else {
123 lpt_iobase = (uint16_t)tmp;
124 msg_pinfo("Non-default I/O base requested. This will "
125 "not change the hardware settings.\n");
126 }
127 } else {
128 /* Pick a default value for the I/O base. */
129 lpt_iobase = 0x378;
130 }
hailfingerb9b9ccf2011-09-12 06:17:06 +0000131 free(arg);
hailfinger08cf2ed2010-10-05 19:19:48 +0000132
133 msg_pdbg("Using address 0x%x as I/O base for parallel port access.\n",
hailfinger52c4fa02010-07-21 10:26:01 +0000134 lpt_iobase);
135
hailfingerb9b9ccf2011-09-12 06:17:06 +0000136 arg = extract_programmer_param("type");
137 if (arg) {
138 if (!strcasecmp(arg, "rayer")) {
139 rayer_type = TYPE_RAYER;
140 } else if (!strcasecmp(arg, "xilinx")) {
141 rayer_type = TYPE_XILINX_DLC5;
142 } else {
143 msg_perr("Error: Invalid device type specified.\n");
144 free(arg);
145 return 1;
146 }
147 }
148 free(arg);
149 switch (rayer_type) {
150 case TYPE_RAYER:
151 msg_pdbg("Using RayeR SPIPGM pinout.\n");
152 /* Bits for master->slave direction */
153 rayer_cs_bit = 5;
154 rayer_sck_bit = 6;
155 rayer_mosi_bit = 7;
156 /* Bits for slave->master direction */
157 rayer_miso_bit = 6;
158 break;
159 case TYPE_XILINX_DLC5:
160 msg_pdbg("Using Xilinx Parallel Cable III (DLC 5) pinout.\n");
161 /* Bits for master->slave direction */
162 rayer_cs_bit = 2;
163 rayer_sck_bit = 1;
164 rayer_mosi_bit = 0;
165 /* Bits for slave->master direction */
166 rayer_miso_bit = 4;
167 }
168
Patrick Georgi2a2d67f2017-03-09 10:15:39 +0100169 if (rget_io_perms())
170 return 1;
hailfinger52c4fa02010-07-21 10:26:01 +0000171
hailfinger08cf2ed2010-10-05 19:19:48 +0000172 /* Get the initial value before writing to any line. */
173 lpt_outbyte = INB(lpt_iobase);
174
Craig Hesling65eb8812019-08-01 09:33:56 -0700175 if (register_spi_bitbang_master(&bitbang_spi_master_rayer))
hailfinger52c4fa02010-07-21 10:26:01 +0000176 return 1;
177
hailfinger52c4fa02010-07-21 10:26:01 +0000178 return 0;
179}
180
181#else
182#error PCI port I/O access is not supported on this architecture yet.
183#endif