Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 1 | /* |
| 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. |
| 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 | |
Stefan Tauner | 8868db3 | 2012-03-13 00:18:19 +0000 | [diff] [blame] | 20 | #if CONFIG_LINUX_SPI == 1 |
| 21 | |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 22 | #include <stdio.h> |
| 23 | #include <string.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <sys/fcntl.h> |
| 26 | #include <errno.h> |
| 27 | #include <ctype.h> |
| 28 | #include <unistd.h> |
Stefan Tauner | 8868db3 | 2012-03-13 00:18:19 +0000 | [diff] [blame] | 29 | #include <linux/types.h> |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 30 | #include <linux/spi/spidev.h> |
| 31 | #include <sys/ioctl.h> |
| 32 | #include "flash.h" |
| 33 | #include "chipdrivers.h" |
| 34 | #include "programmer.h" |
| 35 | #include "spi.h" |
| 36 | |
| 37 | static int fd = -1; |
| 38 | |
| 39 | static int linux_spi_shutdown(void *data); |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 40 | static int linux_spi_send_command(struct flashctx *flash, unsigned int writecnt, |
| 41 | unsigned int readcnt, |
| 42 | const unsigned char *txbuf, |
| 43 | unsigned char *rxbuf); |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 44 | static int linux_spi_read(struct flashctx *flash, uint8_t *buf, |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 45 | unsigned int start, unsigned int len); |
Mark Marshall | f20b7be | 2014-05-09 21:16:21 +0000 | [diff] [blame] | 46 | static int linux_spi_write_256(struct flashctx *flash, const uint8_t *buf, |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 47 | unsigned int start, unsigned int len); |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 48 | |
| 49 | static const struct spi_programmer spi_programmer_linux = { |
| 50 | .type = SPI_CONTROLLER_LINUX, |
| 51 | .max_data_read = MAX_DATA_UNSPECIFIED, /* TODO? */ |
| 52 | .max_data_write = MAX_DATA_UNSPECIFIED, /* TODO? */ |
| 53 | .command = linux_spi_send_command, |
| 54 | .multicommand = default_spi_send_multicommand, |
| 55 | .read = linux_spi_read, |
| 56 | .write_256 = linux_spi_write_256, |
Nico Huber | 7bca126 | 2012-06-15 22:28:12 +0000 | [diff] [blame] | 57 | .write_aai = default_spi_write_aai, |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 58 | }; |
| 59 | |
| 60 | int linux_spi_init(void) |
| 61 | { |
| 62 | char *p, *endp, *dev; |
Alexandru Gagniuc | 69dd09d | 2014-03-19 17:17:06 +0000 | [diff] [blame] | 63 | uint32_t speed_hz = 0; |
Stefan Tauner | 2c3e9d5 | 2012-03-03 18:09:33 +0000 | [diff] [blame] | 64 | /* FIXME: make the following configurable by CLI options. */ |
| 65 | /* SPI mode 0 (beware this also includes: MSB first, CS active low and others */ |
| 66 | const uint8_t mode = SPI_MODE_0; |
| 67 | const uint8_t bits = 8; |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 68 | |
Stefan Tauner | 0554ca5 | 2013-07-25 22:54:25 +0000 | [diff] [blame] | 69 | p = extract_programmer_param("spispeed"); |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 70 | if (p && strlen(p)) { |
Alexandru Gagniuc | 69dd09d | 2014-03-19 17:17:06 +0000 | [diff] [blame] | 71 | speed_hz = (uint32_t)strtoul(p, &endp, 10) * 1000; |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 72 | if (p == endp) { |
| 73 | msg_perr("%s: invalid clock: %s kHz\n", __func__, p); |
Stefan Tauner | 0554ca5 | 2013-07-25 22:54:25 +0000 | [diff] [blame] | 74 | free(p); |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 75 | return 1; |
| 76 | } |
| 77 | } |
Stefan Tauner | 0554ca5 | 2013-07-25 22:54:25 +0000 | [diff] [blame] | 78 | free(p); |
| 79 | |
| 80 | dev = extract_programmer_param("dev"); |
| 81 | if (!dev || !strlen(dev)) { |
| 82 | msg_perr("No SPI device given. Use flashrom -p " |
| 83 | "linux_spi:dev=/dev/spidevX.Y\n"); |
| 84 | free(dev); |
| 85 | return 1; |
| 86 | } |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 87 | |
Sven Schnelle | cb24ddb | 2011-09-07 20:48:34 +0000 | [diff] [blame] | 88 | msg_pdbg("Using device %s\n", dev); |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 89 | if ((fd = open(dev, O_RDWR)) == -1) { |
| 90 | msg_perr("%s: failed to open %s: %s\n", __func__, |
| 91 | dev, strerror(errno)); |
Stefan Tauner | 0554ca5 | 2013-07-25 22:54:25 +0000 | [diff] [blame] | 92 | free(dev); |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 93 | return 1; |
| 94 | } |
Stefan Tauner | 0554ca5 | 2013-07-25 22:54:25 +0000 | [diff] [blame] | 95 | free(dev); |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 96 | |
Stefan Tauner | 2c3e9d5 | 2012-03-03 18:09:33 +0000 | [diff] [blame] | 97 | if (register_shutdown(linux_spi_shutdown, NULL)) |
| 98 | return 1; |
| 99 | /* We rely on the shutdown function for cleanup from here on. */ |
| 100 | |
Alexandru Gagniuc | 69dd09d | 2014-03-19 17:17:06 +0000 | [diff] [blame] | 101 | if (speed_hz > 0) { |
| 102 | if (ioctl(fd, SPI_IOC_WR_MAX_SPEED_HZ, &speed_hz) == -1) { |
Stefan Tauner | 2c3e9d5 | 2012-03-03 18:09:33 +0000 | [diff] [blame] | 103 | msg_perr("%s: failed to set speed to %d Hz: %s\n", |
Alexandru Gagniuc | 69dd09d | 2014-03-19 17:17:06 +0000 | [diff] [blame] | 104 | __func__, speed_hz, strerror(errno)); |
Sven Schnelle | cb24ddb | 2011-09-07 20:48:34 +0000 | [diff] [blame] | 105 | return 1; |
| 106 | } |
| 107 | |
Alexandru Gagniuc | 69dd09d | 2014-03-19 17:17:06 +0000 | [diff] [blame] | 108 | msg_pdbg("Using %d kHz clock\n", speed_hz/1000); |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Stefan Tauner | 2c3e9d5 | 2012-03-03 18:09:33 +0000 | [diff] [blame] | 111 | if (ioctl(fd, SPI_IOC_WR_MODE, &mode) == -1) { |
| 112 | msg_perr("%s: failed to set SPI mode to 0x%02x: %s\n", |
| 113 | __func__, mode, strerror(errno)); |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 114 | return 1; |
Stefan Tauner | 2c3e9d5 | 2012-03-03 18:09:33 +0000 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | if (ioctl(fd, SPI_IOC_WR_BITS_PER_WORD, &bits) == -1) { |
| 118 | msg_perr("%s: failed to set the number of bits per SPI word to %u: %s\n", |
| 119 | __func__, bits == 0 ? 8 : bits, strerror(errno)); |
| 120 | return 1; |
| 121 | } |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 122 | |
| 123 | register_spi_programmer(&spi_programmer_linux); |
| 124 | |
| 125 | return 0; |
| 126 | } |
| 127 | |
| 128 | static int linux_spi_shutdown(void *data) |
| 129 | { |
| 130 | if (fd != -1) { |
| 131 | close(fd); |
| 132 | fd = -1; |
| 133 | } |
| 134 | return 0; |
| 135 | } |
| 136 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 137 | static int linux_spi_send_command(struct flashctx *flash, unsigned int writecnt, |
| 138 | unsigned int readcnt, |
| 139 | const unsigned char *txbuf, |
| 140 | unsigned char *rxbuf) |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 141 | { |
Michael Karcher | 8371d72 | 2012-03-06 22:17:06 +0000 | [diff] [blame] | 142 | int iocontrol_code; |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 143 | struct spi_ioc_transfer msg[2] = { |
| 144 | { |
Uwe Hermann | 48446c8 | 2011-09-06 18:17:02 +0000 | [diff] [blame] | 145 | .tx_buf = (uint64_t)(ptrdiff_t)txbuf, |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 146 | .len = writecnt, |
| 147 | }, |
| 148 | { |
Uwe Hermann | 48446c8 | 2011-09-06 18:17:02 +0000 | [diff] [blame] | 149 | .rx_buf = (uint64_t)(ptrdiff_t)rxbuf, |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 150 | .len = readcnt, |
| 151 | }, |
| 152 | }; |
| 153 | |
| 154 | if (fd == -1) |
| 155 | return -1; |
Michael Karcher | 8371d72 | 2012-03-06 22:17:06 +0000 | [diff] [blame] | 156 | /* The implementation currently does not support requests that |
| 157 | don't start with sending a command. */ |
| 158 | if (writecnt == 0) |
| 159 | return SPI_INVALID_LENGTH; |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 160 | |
Michael Karcher | 8371d72 | 2012-03-06 22:17:06 +0000 | [diff] [blame] | 161 | /* Just submit the first (write) request in case there is nothing |
| 162 | to read. Otherwise submit both requests. */ |
| 163 | if (readcnt == 0) |
| 164 | iocontrol_code = SPI_IOC_MESSAGE(1); |
| 165 | else |
| 166 | iocontrol_code = SPI_IOC_MESSAGE(2); |
| 167 | |
| 168 | if (ioctl(fd, iocontrol_code, msg) == -1) { |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 169 | msg_cerr("%s: ioctl: %s\n", __func__, strerror(errno)); |
| 170 | return -1; |
| 171 | } |
| 172 | return 0; |
| 173 | } |
| 174 | |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 175 | static int linux_spi_read(struct flashctx *flash, uint8_t *buf, |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 176 | unsigned int start, unsigned int len) |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 177 | { |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 178 | return spi_read_chunked(flash, buf, start, len, |
| 179 | (unsigned int)getpagesize()); |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 180 | } |
| 181 | |
Mark Marshall | f20b7be | 2014-05-09 21:16:21 +0000 | [diff] [blame] | 182 | static int linux_spi_write_256(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len) |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 183 | { |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 184 | return spi_write_chunked(flash, buf, start, len, |
| 185 | ((unsigned int)getpagesize()) - 4); |
Sven Schnelle | 5ce5f70 | 2011-09-03 18:37:52 +0000 | [diff] [blame] | 186 | } |
Stefan Tauner | 8868db3 | 2012-03-13 00:18:19 +0000 | [diff] [blame] | 187 | |
| 188 | #endif // CONFIG_LINUX_SPI == 1 |