blob: 3e60492ac7e2aa8b2e66c379a20a91b9c207eff2 [file] [log] [blame]
Sven Schnelle5ce5f702011-09-03 18:37:52 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
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.
Sven Schnelle5ce5f702011-09-03 18:37:52 +000014 */
15
Stefan Tauner8868db32012-03-13 00:18:19 +000016#if CONFIG_LINUX_SPI == 1
17
Sven Schnelle5ce5f702011-09-03 18:37:52 +000018#include <stdio.h>
19#include <string.h>
20#include <stdlib.h>
Gwenhael Goavec-Merou8cd0c732015-11-14 02:55:12 +000021#include <fcntl.h>
Sven Schnelle5ce5f702011-09-03 18:37:52 +000022#include <errno.h>
23#include <ctype.h>
24#include <unistd.h>
Gwenhael Goavec-Merou8cd0c732015-11-14 02:55:12 +000025#include <sys/ioctl.h>
Stefan Tauner8868db32012-03-13 00:18:19 +000026#include <linux/types.h>
Sven Schnelle5ce5f702011-09-03 18:37:52 +000027#include <linux/spi/spidev.h>
Gwenhael Goavec-Merou8cd0c732015-11-14 02:55:12 +000028#include <linux/ioctl.h>
Sven Schnelle5ce5f702011-09-03 18:37:52 +000029#include "flash.h"
30#include "chipdrivers.h"
31#include "programmer.h"
32#include "spi.h"
33
Stefan Tauner23e10b82016-01-23 16:16:49 +000034/* Devices known to work with this module (FIXME: export as struct dev_entry):
35 * Beagle Bone Black
36 * Raspberry Pi
37 * HummingBoard
38 */
39
Sven Schnelle5ce5f702011-09-03 18:37:52 +000040static int fd = -1;
Keno Fischer1f33cb52015-11-15 14:58:25 +000041#define BUF_SIZE_FROM_SYSFS "/sys/module/spidev/parameters/bufsiz"
42static size_t max_kernel_buf_size;
Sven Schnelle5ce5f702011-09-03 18:37:52 +000043
44static int linux_spi_shutdown(void *data);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000045static int linux_spi_send_command(struct flashctx *flash, unsigned int writecnt,
46 unsigned int readcnt,
47 const unsigned char *txbuf,
48 unsigned char *rxbuf);
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000049static int linux_spi_read(struct flashctx *flash, uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +000050 unsigned int start, unsigned int len);
Mark Marshallf20b7be2014-05-09 21:16:21 +000051static int linux_spi_write_256(struct flashctx *flash, const uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +000052 unsigned int start, unsigned int len);
Sven Schnelle5ce5f702011-09-03 18:37:52 +000053
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +000054static const struct spi_master spi_master_linux = {
Sven Schnelle5ce5f702011-09-03 18:37:52 +000055 .type = SPI_CONTROLLER_LINUX,
Nico Huber1cf407b2017-11-10 20:18:23 +010056 .features = SPI_MASTER_4BA,
Sven Schnelle5ce5f702011-09-03 18:37:52 +000057 .max_data_read = MAX_DATA_UNSPECIFIED, /* TODO? */
58 .max_data_write = MAX_DATA_UNSPECIFIED, /* TODO? */
59 .command = linux_spi_send_command,
60 .multicommand = default_spi_send_multicommand,
61 .read = linux_spi_read,
62 .write_256 = linux_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +000063 .write_aai = default_spi_write_aai,
Sven Schnelle5ce5f702011-09-03 18:37:52 +000064};
65
66int linux_spi_init(void)
67{
68 char *p, *endp, *dev;
Alexandru Gagniuc69dd09d2014-03-19 17:17:06 +000069 uint32_t speed_hz = 0;
Stefan Tauner2c3e9d52012-03-03 18:09:33 +000070 /* FIXME: make the following configurable by CLI options. */
71 /* SPI mode 0 (beware this also includes: MSB first, CS active low and others */
72 const uint8_t mode = SPI_MODE_0;
73 const uint8_t bits = 8;
Sven Schnelle5ce5f702011-09-03 18:37:52 +000074
Stefan Tauner0554ca52013-07-25 22:54:25 +000075 p = extract_programmer_param("spispeed");
Sven Schnelle5ce5f702011-09-03 18:37:52 +000076 if (p && strlen(p)) {
Alexandru Gagniuc69dd09d2014-03-19 17:17:06 +000077 speed_hz = (uint32_t)strtoul(p, &endp, 10) * 1000;
Sven Schnelle5ce5f702011-09-03 18:37:52 +000078 if (p == endp) {
79 msg_perr("%s: invalid clock: %s kHz\n", __func__, p);
Stefan Tauner0554ca52013-07-25 22:54:25 +000080 free(p);
Sven Schnelle5ce5f702011-09-03 18:37:52 +000081 return 1;
82 }
83 }
Stefan Tauner0554ca52013-07-25 22:54:25 +000084 free(p);
85
86 dev = extract_programmer_param("dev");
87 if (!dev || !strlen(dev)) {
88 msg_perr("No SPI device given. Use flashrom -p "
89 "linux_spi:dev=/dev/spidevX.Y\n");
90 free(dev);
91 return 1;
92 }
Sven Schnelle5ce5f702011-09-03 18:37:52 +000093
Sven Schnellecb24ddb2011-09-07 20:48:34 +000094 msg_pdbg("Using device %s\n", dev);
Sven Schnelle5ce5f702011-09-03 18:37:52 +000095 if ((fd = open(dev, O_RDWR)) == -1) {
96 msg_perr("%s: failed to open %s: %s\n", __func__,
97 dev, strerror(errno));
Stefan Tauner0554ca52013-07-25 22:54:25 +000098 free(dev);
Sven Schnelle5ce5f702011-09-03 18:37:52 +000099 return 1;
100 }
Stefan Tauner0554ca52013-07-25 22:54:25 +0000101 free(dev);
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000102
Stefan Tauner2c3e9d52012-03-03 18:09:33 +0000103 if (register_shutdown(linux_spi_shutdown, NULL))
104 return 1;
105 /* We rely on the shutdown function for cleanup from here on. */
106
Alexandru Gagniuc69dd09d2014-03-19 17:17:06 +0000107 if (speed_hz > 0) {
108 if (ioctl(fd, SPI_IOC_WR_MAX_SPEED_HZ, &speed_hz) == -1) {
Stefan Tauner2c3e9d52012-03-03 18:09:33 +0000109 msg_perr("%s: failed to set speed to %d Hz: %s\n",
Alexandru Gagniuc69dd09d2014-03-19 17:17:06 +0000110 __func__, speed_hz, strerror(errno));
Sven Schnellecb24ddb2011-09-07 20:48:34 +0000111 return 1;
112 }
113
Alexandru Gagniuc69dd09d2014-03-19 17:17:06 +0000114 msg_pdbg("Using %d kHz clock\n", speed_hz/1000);
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000115 }
116
Stefan Tauner2c3e9d52012-03-03 18:09:33 +0000117 if (ioctl(fd, SPI_IOC_WR_MODE, &mode) == -1) {
118 msg_perr("%s: failed to set SPI mode to 0x%02x: %s\n",
119 __func__, mode, strerror(errno));
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000120 return 1;
Stefan Tauner2c3e9d52012-03-03 18:09:33 +0000121 }
122
123 if (ioctl(fd, SPI_IOC_WR_BITS_PER_WORD, &bits) == -1) {
124 msg_perr("%s: failed to set the number of bits per SPI word to %u: %s\n",
125 __func__, bits == 0 ? 8 : bits, strerror(errno));
126 return 1;
127 }
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000128
Keno Fischer1f33cb52015-11-15 14:58:25 +0000129 /* Read max buffer size from sysfs, or use page size as fallback. */
130 FILE *fp;
131 fp = fopen(BUF_SIZE_FROM_SYSFS, "r");
132 if (!fp) {
133 msg_pwarn("Cannot open %s: %s.\n", BUF_SIZE_FROM_SYSFS, strerror(errno));
134 goto out;
135 }
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000136
Keno Fischer1f33cb52015-11-15 14:58:25 +0000137 char buf[10];
138 memset(buf, 0, sizeof(buf));
139 if (!fread(buf, 1, sizeof(buf) - 1, fp)) {
140 if (feof(fp))
141 msg_pwarn("Cannot read %s: file is empty.\n", BUF_SIZE_FROM_SYSFS);
142 else
143 msg_pwarn("Cannot read %s: %s.\n", BUF_SIZE_FROM_SYSFS, strerror(errno));
144 goto out;
145 }
146
147 long int tmp;
148 errno = 0;
149 tmp = strtol(buf, NULL, 0);
150 if ((tmp < 0) || errno) {
151 msg_pwarn("Buffer size %ld from %s seems wrong.\n", tmp, BUF_SIZE_FROM_SYSFS);
152 } else {
153 msg_pdbg("%s: Using value from %s as max buffer size.\n", __func__, BUF_SIZE_FROM_SYSFS);
154 max_kernel_buf_size = (size_t)tmp;
155 }
156
157out:
158 if (fp)
159 fclose(fp);
160
161 if (!max_kernel_buf_size) {
162 msg_pdbg("%s: Using page size as max buffer size.\n", __func__);
163 max_kernel_buf_size = (size_t)getpagesize();
164 }
165
166 msg_pdbg("%s: max_kernel_buf_size: %zu\n", __func__, max_kernel_buf_size);
167 register_spi_master(&spi_master_linux);
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000168 return 0;
169}
170
171static int linux_spi_shutdown(void *data)
172{
173 if (fd != -1) {
174 close(fd);
175 fd = -1;
176 }
177 return 0;
178}
179
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000180static int linux_spi_send_command(struct flashctx *flash, unsigned int writecnt,
181 unsigned int readcnt,
182 const unsigned char *txbuf,
183 unsigned char *rxbuf)
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000184{
Michael Karcher8371d722012-03-06 22:17:06 +0000185 int iocontrol_code;
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000186 struct spi_ioc_transfer msg[2] = {
187 {
David Riley18f50972014-08-05 22:16:01 +0000188 .tx_buf = (uint64_t)(uintptr_t)txbuf,
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000189 .len = writecnt,
190 },
191 {
David Riley18f50972014-08-05 22:16:01 +0000192 .rx_buf = (uint64_t)(uintptr_t)rxbuf,
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000193 .len = readcnt,
194 },
195 };
196
197 if (fd == -1)
198 return -1;
Michael Karcher8371d722012-03-06 22:17:06 +0000199 /* The implementation currently does not support requests that
200 don't start with sending a command. */
201 if (writecnt == 0)
202 return SPI_INVALID_LENGTH;
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000203
Michael Karcher8371d722012-03-06 22:17:06 +0000204 /* Just submit the first (write) request in case there is nothing
205 to read. Otherwise submit both requests. */
206 if (readcnt == 0)
207 iocontrol_code = SPI_IOC_MESSAGE(1);
208 else
209 iocontrol_code = SPI_IOC_MESSAGE(2);
210
211 if (ioctl(fd, iocontrol_code, msg) == -1) {
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000212 msg_cerr("%s: ioctl: %s\n", __func__, strerror(errno));
213 return -1;
214 }
215 return 0;
216}
217
Keno Fischer1f33cb52015-11-15 14:58:25 +0000218static int linux_spi_read(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len)
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000219{
Nico Huber22418422018-03-08 16:14:15 +0100220 /* Older kernels use a single buffer for combined input and output
221 data. So account for longest possible command + address, too. */
222 return spi_read_chunked(flash, buf, start, len, max_kernel_buf_size - 5);
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000223}
224
Mark Marshallf20b7be2014-05-09 21:16:21 +0000225static int linux_spi_write_256(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len)
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000226{
Keno Fischer1f33cb52015-11-15 14:58:25 +0000227 /* 5 bytes must be reserved for longest possible command + address. */
228 return spi_write_chunked(flash, buf, start, len, max_kernel_buf_size - 5);
Sven Schnelle5ce5f702011-09-03 18:37:52 +0000229}
Stefan Tauner8868db32012-03-13 00:18:19 +0000230
231#endif // CONFIG_LINUX_SPI == 1