Flashrom

Flashrom Svn Source Tree

Root/trunk/wbsio_spi.c

1/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2008 Peter Stuge <peter@stuge.se>
5 * Copyright (C) 2009,2010 Carl-Daniel Hailfinger
6 *
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#if defined(__i386__) || defined(__x86_64__)
22
23#include "flash.h"
24#include "chipdrivers.h"
25#include "programmer.h"
26#include "spi.h"
27
28#define WBSIO_PORT10x2e
29#define WBSIO_PORT20x4e
30
31static uint16_t wbsio_spibase = 0;
32
33static uint16_t wbsio_get_spibase(uint16_t port)
34{
35uint8_t id;
36uint16_t flashport = 0;
37
38w836xx_ext_enter(port);
39id = sio_read(port, 0x20);
40if (id != 0xa0) {
41msg_perr("\nW83627 not found at 0x%x, id=0x%02x want=0xa0.\n", port, id);
42goto done;
43}
44
45if (0 == (sio_read(port, 0x24) & 2)) {
46msg_perr("\nW83627 found at 0x%x, but SPI pins are not enabled. (CR[0x24] bit 1=0)\n", port);
47goto done;
48}
49
50sio_write(port, 0x07, 0x06);
51if (0 == (sio_read(port, 0x30) & 1)) {
52msg_perr("\nW83627 found at 0x%x, but SPI is not enabled. (LDN6[0x30] bit 0=0)\n", port);
53goto done;
54}
55
56flashport = (sio_read(port, 0x62) << 8) | sio_read(port, 0x63);
57
58done:
59w836xx_ext_leave(port);
60return flashport;
61}
62
63static int wbsio_spi_send_command(struct flashctx *flash, unsigned int writecnt,
64 unsigned int readcnt,
65 const unsigned char *writearr,
66 unsigned char *readarr);
67static int wbsio_spi_read(struct flashctx *flash, uint8_t *buf,
68 unsigned int start, unsigned int len);
69
70static const struct spi_programmer spi_programmer_wbsio = {
71.type = SPI_CONTROLLER_WBSIO,
72.max_data_read = MAX_DATA_UNSPECIFIED,
73.max_data_write = MAX_DATA_UNSPECIFIED,
74.command = wbsio_spi_send_command,
75.multicommand = default_spi_send_multicommand,
76.read = wbsio_spi_read,
77.write_256 = spi_chip_write_1,
78};
79
80int wbsio_check_for_spi(void)
81{
82if (0 == (wbsio_spibase = wbsio_get_spibase(WBSIO_PORT1)))
83if (0 == (wbsio_spibase = wbsio_get_spibase(WBSIO_PORT2)))
84return 1;
85
86msg_pspew("\nwbsio_spibase = 0x%x\n", wbsio_spibase);
87
88msg_pdbg("%s: Winbond saved on 4 register bits so max chip size is "
89 "1024 kB!\n", __func__);
90max_rom_decode.spi = 1024 * 1024;
91register_spi_programmer(&spi_programmer_wbsio);
92
93return 0;
94}
95
96/* W83627DHG has 11 command modes:
97 * 1=1 command only
98 * 2=1 command+1 data write
99 * 3=1 command+2 data read
100 * 4=1 command+3 address
101 * 5=1 command+3 address+1 data write
102 * 6=1 command+3 address+4 data write
103 * 7=1 command+3 address+1 dummy address inserted by wbsio+4 data read
104 * 8=1 command+3 address+1 data read
105 * 9=1 command+3 address+2 data read
106 * a=1 command+3 address+3 data read
107 * b=1 command+3 address+4 data read
108 *
109 * mode[7:4] holds the command mode
110 * mode[3:0] holds SPI address bits [19:16]
111 *
112 * The Winbond SPI master only supports 20 bit addresses on the SPI bus. :\
113 * Would one more byte of RAM in the chip (to get all 24 bits) really make
114 * such a big difference?
115 */
116static int wbsio_spi_send_command(struct flashctx *flash, unsigned int writecnt,
117 unsigned int readcnt,
118 const unsigned char *writearr,
119 unsigned char *readarr)
120{
121int i;
122uint8_t mode = 0;
123
124msg_pspew("%s:", __func__);
125
126if (1 == writecnt && 0 == readcnt) {
127mode = 0x10;
128} else if (2 == writecnt && 0 == readcnt) {
129OUTB(writearr[1], wbsio_spibase + 4);
130msg_pspew(" data=0x%02x", writearr[1]);
131mode = 0x20;
132} else if (1 == writecnt && 2 == readcnt) {
133mode = 0x30;
134} else if (4 == writecnt && 0 == readcnt) {
135msg_pspew(" addr=0x%02x", (writearr[1] & 0x0f));
136for (i = 2; i < writecnt; i++) {
137OUTB(writearr[i], wbsio_spibase + i);
138msg_pspew("%02x", writearr[i]);
139}
140mode = 0x40 | (writearr[1] & 0x0f);
141} else if (5 == writecnt && 0 == readcnt) {
142msg_pspew(" addr=0x%02x", (writearr[1] & 0x0f));
143for (i = 2; i < 4; i++) {
144OUTB(writearr[i], wbsio_spibase + i);
145msg_pspew("%02x", writearr[i]);
146}
147OUTB(writearr[i], wbsio_spibase + i);
148msg_pspew(" data=0x%02x", writearr[i]);
149mode = 0x50 | (writearr[1] & 0x0f);
150} else if (8 == writecnt && 0 == readcnt) {
151msg_pspew(" addr=0x%02x", (writearr[1] & 0x0f));
152for (i = 2; i < 4; i++) {
153OUTB(writearr[i], wbsio_spibase + i);
154msg_pspew("%02x", writearr[i]);
155}
156msg_pspew(" data=0x");
157for (; i < writecnt; i++) {
158OUTB(writearr[i], wbsio_spibase + i);
159msg_pspew("%02x", writearr[i]);
160}
161mode = 0x60 | (writearr[1] & 0x0f);
162} else if (5 == writecnt && 4 == readcnt) {
163/* XXX: TODO not supported by flashrom infrastructure!
164 * This mode, 7, discards the fifth byte in writecnt,
165 * but since we can not express that in flashrom, fail
166 * the operation for now.
167 */
168;
169} else if (4 == writecnt && readcnt >= 1 && readcnt <= 4) {
170msg_pspew(" addr=0x%02x", (writearr[1] & 0x0f));
171for (i = 2; i < writecnt; i++) {
172OUTB(writearr[i], wbsio_spibase + i);
173msg_pspew("%02x", writearr[i]);
174}
175mode = ((7 + readcnt) << 4) | (writearr[1] & 0x0f);
176}
177msg_pspew(" cmd=%02x mode=%02x\n", writearr[0], mode);
178
179if (!mode) {
180msg_perr("%s: unsupported command type wr=%d rd=%d\n",
181__func__, writecnt, readcnt);
182/* Command type refers to the number of bytes read/written. */
183return SPI_INVALID_LENGTH;
184}
185
186OUTB(writearr[0], wbsio_spibase);
187OUTB(mode, wbsio_spibase + 1);
188programmer_delay(10);
189
190if (!readcnt)
191return 0;
192
193msg_pspew("%s: returning data =", __func__);
194for (i = 0; i < readcnt; i++) {
195readarr[i] = INB(wbsio_spibase + 4 + i);
196msg_pspew(" 0x%02x", readarr[i]);
197}
198msg_pspew("\n");
199return 0;
200}
201
202static int wbsio_spi_read(struct flashctx *flash, uint8_t *buf,
203 unsigned int start, unsigned int len)
204{
205mmio_readn((void *)(flash->virtual_memory + start), buf, len);
206return 0;
207}
208
209#endif
210

Archive Download this file

Revision: HEAD