blob: b2d3eb0c7db498cbfb1566016276cae1682f2076 [file] [log] [blame]
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +00001/*
2 * This file is part of the flashrom project.
3 *
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +00004 * Copyright (C) 2007, 2008, 2009, 2010, 2011 Carl-Daniel Hailfinger
Stefan Reinauera9424d52008-06-27 16:28:34 +00005 * Copyright (C) 2008 coresystems GmbH
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21/*
22 * Contains the generic SPI framework
23 */
24
Patrick Georgi97bc95c2011-03-08 07:17:44 +000025#include <strings.h>
Carl-Daniel Hailfingerec489e42010-09-15 00:13:02 +000026#include <string.h>
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000027#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000028#include "flashchips.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000029#include "chipdrivers.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000030#include "programmer.h"
Carl-Daniel Hailfingerd6cbf762008-05-13 14:58:23 +000031#include "spi.h"
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000032
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000033int spi_send_command(struct flashctx *flash, unsigned int writecnt,
34 unsigned int readcnt, const unsigned char *writearr,
35 unsigned char *readarr)
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +000036{
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +000037 return flash->pgm->spi.command(flash, writecnt, readcnt, writearr,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000038 readarr);
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +000039}
40
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000041int spi_send_multicommand(struct flashctx *flash, struct spi_command *cmds)
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +000042{
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +000043 return flash->pgm->spi.multicommand(flash, cmds);
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000044}
45
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000046int default_spi_send_command(struct flashctx *flash, unsigned int writecnt,
47 unsigned int readcnt,
48 const unsigned char *writearr,
49 unsigned char *readarr)
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000050{
51 struct spi_command cmd[] = {
52 {
53 .writecnt = writecnt,
54 .readcnt = readcnt,
55 .writearr = writearr,
56 .readarr = readarr,
57 }, {
58 .writecnt = 0,
59 .writearr = NULL,
60 .readcnt = 0,
61 .readarr = NULL,
62 }};
63
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000064 return spi_send_multicommand(flash, cmd);
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000065}
66
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000067int default_spi_send_multicommand(struct flashctx *flash,
68 struct spi_command *cmds)
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000069{
70 int result = 0;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +000071 for (; (cmds->writecnt || cmds->readcnt) && !result; cmds++) {
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000072 result = spi_send_command(flash, cmds->writecnt, cmds->readcnt,
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +000073 cmds->writearr, cmds->readarr);
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000074 }
75 return result;
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +000076}
77
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000078int default_spi_read(struct flashctx *flash, uint8_t *buf, unsigned int start,
79 unsigned int len)
Michael Karcher62797512011-05-11 17:07:02 +000080{
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +000081 unsigned int max_data = flash->pgm->spi.max_data_read;
Michael Karcher62797512011-05-11 17:07:02 +000082 if (max_data == MAX_DATA_UNSPECIFIED) {
83 msg_perr("%s called, but SPI read chunk size not defined "
84 "on this hardware. Please report a bug at "
85 "flashrom@flashrom.org\n", __func__);
86 return 1;
87 }
88 return spi_read_chunked(flash, buf, start, len, max_data);
89}
90
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000091int default_spi_write_256(struct flashctx *flash, uint8_t *buf,
92 unsigned int start, unsigned int len)
Michael Karcher62797512011-05-11 17:07:02 +000093{
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +000094 unsigned int max_data = flash->pgm->spi.max_data_write;
Michael Karcher62797512011-05-11 17:07:02 +000095 if (max_data == MAX_DATA_UNSPECIFIED) {
96 msg_perr("%s called, but SPI write chunk size not defined "
97 "on this hardware. Please report a bug at "
98 "flashrom@flashrom.org\n", __func__);
99 return 1;
100 }
101 return spi_write_chunked(flash, buf, start, len, max_data);
102}
103
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000104int spi_chip_read(struct flashctx *flash, uint8_t *buf, unsigned int start,
105 unsigned int len)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000106{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000107 unsigned int addrbase = 0;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000108
Carl-Daniel Hailfingerec489e42010-09-15 00:13:02 +0000109 /* Check if the chip fits between lowest valid and highest possible
110 * address. Highest possible address with the current SPI implementation
111 * means 0xffffff, the highest unsigned 24bit number.
112 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000113 addrbase = spi_get_valid_read_addr(flash);
Carl-Daniel Hailfingerec489e42010-09-15 00:13:02 +0000114 if (addrbase + flash->total_size * 1024 > (1 << 24)) {
115 msg_perr("Flash chip size exceeds the allowed access window. ");
116 msg_perr("Read will probably fail.\n");
117 /* Try to get the best alignment subject to constraints. */
118 addrbase = (1 << 24) - flash->total_size * 1024;
119 }
120 /* Check if alignment is native (at least the largest power of two which
121 * is a factor of the mapped size of the chip).
122 */
123 if (ffs(flash->total_size * 1024) > (ffs(addrbase) ? : 33)) {
124 msg_perr("Flash chip is not aligned natively in the allowed "
125 "access window.\n");
126 msg_perr("Read will probably return garbage.\n");
127 }
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000128 return flash->pgm->spi.read(flash, buf, addrbase + start, len);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000129}
130
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000131/*
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000132 * Program chip using page (256 bytes) programming.
133 * Some SPI masters can't do this, they use single byte programming instead.
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000134 * The redirect to single byte programming is achieved by setting
135 * .write_256 = spi_chip_write_1
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000136 */
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000137/* real chunksize is up to 256, logical chunksize is 256 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000138int spi_chip_write_256(struct flashctx *flash, uint8_t *buf, unsigned int start,
139 unsigned int len)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000140{
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000141 return flash->pgm->spi.write_256(flash, buf, start, len);
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000142}
143
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000144/*
145 * Get the lowest allowed address for read accesses. This often happens to
146 * be the lowest allowed address for all commands which take an address.
147 * This is a programmer limitation.
148 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000149uint32_t spi_get_valid_read_addr(struct flashctx *flash)
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000150{
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000151 switch (flash->pgm->spi.type) {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000152#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000153#if defined(__i386__) || defined(__x86_64__)
154 case SPI_CONTROLLER_ICH7:
155 /* Return BBAR for ICH chipsets. */
156 return ichspi_bbar;
157#endif
158#endif
159 default:
160 return 0;
161 }
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000162}
Michael Karcherb9dbe482011-05-11 17:07:07 +0000163
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000164int register_spi_programmer(const struct spi_programmer *pgm)
Michael Karcherb9dbe482011-05-11 17:07:07 +0000165{
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000166 struct registered_programmer rpgm;
167
168 if (!pgm->write_256 || !pgm->read || !pgm->command ||
169 !pgm->multicommand ||
170 ((pgm->command == default_spi_send_command) &&
171 (pgm->multicommand == default_spi_send_multicommand))) {
172 msg_perr("%s called with incomplete programmer definition. "
173 "Please report a bug at flashrom@flashrom.org\n",
174 __func__);
175 return ERROR_FLASHROM_BUG;
176 }
177
178
179 rpgm.buses_supported = BUS_SPI;
180 rpgm.spi = *pgm;
181 return register_programmer(&rpgm);
Stefan Tauner93f70232011-07-26 14:33:46 +0000182}