Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
Jason Wang | 13f98ce | 2008-11-29 15:07:15 +0000 | [diff] [blame] | 4 | * Copyright (C) 2008 Wang Qingpei <Qingpei.Wang@amd.com> |
| 5 | * Copyright (C) 2008 Joe Bao <Zheng.Bao@amd.com> |
Uwe Hermann | 97e8f22 | 2009-04-13 21:35:49 +0000 | [diff] [blame] | 6 | * Copyright (C) 2008 Advanced Micro Devices, Inc. |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 7 | * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 22 | */ |
| 23 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 24 | #if defined(__i386__) || defined(__x86_64__) |
| 25 | |
Rudolf Marek | 70e1459 | 2013-07-25 22:58:56 +0000 | [diff] [blame] | 26 | #include <string.h> |
| 27 | #include <stdlib.h> |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 28 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 29 | #include "programmer.h" |
Patrick Georgi | 32508eb | 2012-07-20 20:35:14 +0000 | [diff] [blame] | 30 | #include "hwaccess.h" |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 31 | #include "spi.h" |
| 32 | |
Carl-Daniel Hailfinger | 2c7ba8c | 2009-06-23 00:47:26 +0000 | [diff] [blame] | 33 | /* This struct is unused, but helps visualize the SB600 SPI BAR layout. |
| 34 | *struct sb600_spi_controller { |
| 35 | * unsigned int spi_cntrl0; / * 00h * / |
| 36 | * unsigned int restrictedcmd1; / * 04h * / |
| 37 | * unsigned int restrictedcmd2; / * 08h * / |
| 38 | * unsigned int spi_cntrl1; / * 0ch * / |
| 39 | * unsigned int spi_cmdvalue0; / * 10h * / |
| 40 | * unsigned int spi_cmdvalue1; / * 14h * / |
| 41 | * unsigned int spi_cmdvalue2; / * 18h * / |
| 42 | * unsigned int spi_fakeid; / * 1Ch * / |
| 43 | *}; |
| 44 | */ |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 45 | |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 46 | static uint8_t *sb600_spibar = NULL; |
Stefan Tauner | 463dd69 | 2013-08-08 12:00:19 +0000 | [diff] [blame] | 47 | enum amd_chipset { |
| 48 | CHIPSET_AMD_UNKNOWN, |
| 49 | CHIPSET_SB6XX, |
| 50 | CHIPSET_SB7XX, /* SP5100 too */ |
| 51 | CHIPSET_SB89XX, /* Hudson-1 too */ |
| 52 | CHIPSET_HUDSON234, |
| 53 | CHIPSET_YANGTZE, |
| 54 | }; |
| 55 | static enum amd_chipset amd_gen = CHIPSET_AMD_UNKNOWN; |
| 56 | |
| 57 | static void determine_generation(struct pci_dev *dev) |
| 58 | { |
| 59 | amd_gen = CHIPSET_AMD_UNKNOWN; |
Stefan Tauner | 4442b81 | 2013-09-12 15:48:35 +0000 | [diff] [blame] | 60 | msg_pdbg2("Trying to determine the generation of the SPI interface... "); |
| 61 | if (dev->device_id == 0x438d) { |
| 62 | amd_gen = CHIPSET_SB6XX; |
| 63 | msg_pdbg("SB6xx detected.\n"); |
| 64 | } else if (dev->device_id == 0x439d) { |
| 65 | struct pci_dev *smbus_dev = pci_dev_find(0x1002, 0x4385); |
| 66 | if (smbus_dev == NULL) |
| 67 | return; |
| 68 | uint8_t rev = pci_read_byte(smbus_dev, PCI_REVISION_ID); |
| 69 | if (rev >= 0x39 && rev <= 0x3D) { |
| 70 | amd_gen = CHIPSET_SB7XX; |
| 71 | msg_pdbg("SB7xx/SP5100 detected.\n"); |
| 72 | } else if (rev >= 0x40 && rev <= 0x42) { |
| 73 | amd_gen = CHIPSET_SB89XX; |
| 74 | msg_pdbg("SB8xx/SB9xx/Hudson-1 detected.\n"); |
| 75 | } else { |
| 76 | msg_pwarn("SB device found but SMBus revision 0x%02x does not match known values.\n" |
| 77 | "Assuming SB8xx/SB9xx/Hudson-1. Please send a log to flashrom@flashrom.org\n", |
| 78 | rev); |
| 79 | amd_gen = CHIPSET_SB89XX; |
| 80 | } |
| 81 | } else if (dev->device_id == 0x780e) { |
Stefan Tauner | 463dd69 | 2013-08-08 12:00:19 +0000 | [diff] [blame] | 82 | /* The PCI ID of the LPC bridge doesn't change between Hudson-2/3/4 and Yangtze (Kabini/Temash) |
| 83 | * although they use different SPI interfaces. */ |
| 84 | #ifdef USE_YANGTZE_HEURISTICS |
| 85 | /* This heuristic accesses the SPI interface MMIO BAR at locations beyond those supported by |
| 86 | * Hudson in the hope of getting 0xff readback on older chipsets and non-0xff readback on |
| 87 | * Yangtze (and newer, compatible chipsets). */ |
| 88 | int i; |
| 89 | msg_pdbg("Checking for AMD Yangtze (Kabini/Temash) or later... "); |
| 90 | for (i = 0x20; i <= 0x4f; i++) { |
| 91 | if (mmio_readb(sb600_spibar + i) != 0xff) { |
| 92 | amd_gen = CHIPSET_YANGTZE; |
| 93 | msg_pdbg("found.\n"); |
| 94 | return; |
| 95 | } |
| 96 | } |
| 97 | msg_pdbg("not found. Assuming Hudson.\n"); |
| 98 | amd_gen = CHIPSET_HUDSON234; |
| 99 | #else |
| 100 | struct pci_dev *smbus_dev = pci_dev_find(0x1022, 0x780B); |
| 101 | if (smbus_dev == NULL) { |
| 102 | msg_pdbg("No SMBus device with ID 1022:780B found.\n"); |
| 103 | return; |
| 104 | } |
| 105 | uint8_t rev = pci_read_byte(smbus_dev, PCI_REVISION_ID); |
| 106 | if (rev >= 0x11 && rev <= 0x15) { |
| 107 | amd_gen = CHIPSET_HUDSON234; |
| 108 | msg_pdbg("Hudson-2/3/4 detected.\n"); |
| 109 | } else if (rev >= 0x39 && rev <= 0x3A) { |
| 110 | amd_gen = CHIPSET_YANGTZE; |
| 111 | msg_pdbg("Yangtze detected.\n"); |
| 112 | } else { |
| 113 | msg_pwarn("FCH device found but SMBus revision 0x%02x does not match known values.\n" |
| 114 | "Please report this to flashrom@flashrom.org and include this log and\n" |
| 115 | "the output of lspci -nnvx, thanks!.\n", rev); |
| 116 | } |
| 117 | #endif |
Stefan Tauner | 4442b81 | 2013-09-12 15:48:35 +0000 | [diff] [blame] | 118 | } else |
| 119 | msg_pwarn("%s: Unknown LPC device %" PRIx16 ":%" PRIx16 ".\n" |
| 120 | "Please report this to flashrom@flashrom.org and include this log and\n" |
| 121 | "the output of lspci -nnvx, thanks!\n", |
| 122 | __func__, dev->vendor_id, dev->device_id); |
Stefan Tauner | 463dd69 | 2013-08-08 12:00:19 +0000 | [diff] [blame] | 123 | } |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 124 | |
Carl-Daniel Hailfinger | 2c7ba8c | 2009-06-23 00:47:26 +0000 | [diff] [blame] | 125 | static void reset_internal_fifo_pointer(void) |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 126 | { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 127 | mmio_writeb(mmio_readb(sb600_spibar + 2) | 0x10, sb600_spibar + 2); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 128 | |
Rudolf Marek | 70e1459 | 2013-07-25 22:58:56 +0000 | [diff] [blame] | 129 | /* FIXME: This loop needs a timeout and a clearer message. */ |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 130 | while (mmio_readb(sb600_spibar + 0xD) & 0x7) |
Carl-Daniel Hailfinger | 643415b | 2010-01-10 01:59:50 +0000 | [diff] [blame] | 131 | msg_pspew("reset\n"); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 134 | static int compare_internal_fifo_pointer(uint8_t want) |
| 135 | { |
| 136 | uint8_t tmp; |
| 137 | |
| 138 | tmp = mmio_readb(sb600_spibar + 0xd) & 0x07; |
| 139 | want &= 0x7; |
| 140 | if (want != tmp) { |
Rudolf Marek | 70e1459 | 2013-07-25 22:58:56 +0000 | [diff] [blame] | 141 | msg_perr("FIFO pointer corruption! Pointer is %d, wanted %d\n", tmp, want); |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 142 | msg_perr("Something else is accessing the flash chip and " |
| 143 | "causes random corruption.\nPlease stop all " |
| 144 | "applications and drivers and IPMI which access the " |
| 145 | "flash chip.\n"); |
| 146 | return 1; |
| 147 | } else { |
| 148 | msg_pspew("SB600 FIFO pointer is %d, wanted %d\n", tmp, want); |
| 149 | return 0; |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | static int reset_compare_internal_fifo_pointer(uint8_t want) |
| 154 | { |
| 155 | int ret; |
| 156 | |
| 157 | ret = compare_internal_fifo_pointer(want); |
| 158 | reset_internal_fifo_pointer(); |
| 159 | return ret; |
| 160 | } |
| 161 | |
Carl-Daniel Hailfinger | 2c7ba8c | 2009-06-23 00:47:26 +0000 | [diff] [blame] | 162 | static void execute_command(void) |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 163 | { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 164 | mmio_writeb(mmio_readb(sb600_spibar + 2) | 1, sb600_spibar + 2); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 165 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 166 | while (mmio_readb(sb600_spibar + 2) & 1) |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 167 | ; |
| 168 | } |
| 169 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 170 | static int sb600_spi_send_command(struct flashctx *flash, unsigned int writecnt, |
| 171 | unsigned int readcnt, |
| 172 | const unsigned char *writearr, |
| 173 | unsigned char *readarr) |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 174 | { |
| 175 | int count; |
| 176 | /* First byte is cmd which can not being sent through FIFO. */ |
| 177 | unsigned char cmd = *writearr++; |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 178 | unsigned int readoffby1; |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 179 | unsigned char readwrite; |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 180 | |
| 181 | writecnt--; |
| 182 | |
Carl-Daniel Hailfinger | 643415b | 2010-01-10 01:59:50 +0000 | [diff] [blame] | 183 | msg_pspew("%s, cmd=%x, writecnt=%x, readcnt=%x\n", |
| 184 | __func__, cmd, writecnt, readcnt); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 185 | |
| 186 | if (readcnt > 8) { |
Carl-Daniel Hailfinger | 643415b | 2010-01-10 01:59:50 +0000 | [diff] [blame] | 187 | msg_pinfo("%s, SB600 SPI controller can not receive %d bytes, " |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 188 | "it is limited to 8 bytes\n", __func__, readcnt); |
| 189 | return SPI_INVALID_LENGTH; |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | if (writecnt > 8) { |
Carl-Daniel Hailfinger | 643415b | 2010-01-10 01:59:50 +0000 | [diff] [blame] | 193 | msg_pinfo("%s, SB600 SPI controller can not send %d bytes, " |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 194 | "it is limited to 8 bytes\n", __func__, writecnt); |
| 195 | return SPI_INVALID_LENGTH; |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 196 | } |
| 197 | |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 198 | /* This is a workaround for a bug in SB600 and SB700. If we only send |
| 199 | * an opcode and no additional data/address, the SPI controller will |
| 200 | * read one byte too few from the chip. Basically, the last byte of |
| 201 | * the chip response is discarded and will not end up in the FIFO. |
| 202 | * It is unclear if the CS# line is set high too early as well. |
| 203 | */ |
| 204 | readoffby1 = (writecnt) ? 0 : 1; |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 205 | readwrite = (readcnt + readoffby1) << 4 | (writecnt); |
| 206 | mmio_writeb(readwrite, sb600_spibar + 1); |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 207 | mmio_writeb(cmd, sb600_spibar + 0); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 208 | |
| 209 | /* Before we use the FIFO, reset it first. */ |
| 210 | reset_internal_fifo_pointer(); |
| 211 | |
| 212 | /* Send the write byte to FIFO. */ |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 213 | msg_pspew("Writing: "); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 214 | for (count = 0; count < writecnt; count++, writearr++) { |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 215 | msg_pspew("[%02x]", *writearr); |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 216 | mmio_writeb(*writearr, sb600_spibar + 0xC); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 217 | } |
Carl-Daniel Hailfinger | 643415b | 2010-01-10 01:59:50 +0000 | [diff] [blame] | 218 | msg_pspew("\n"); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 219 | |
| 220 | /* |
| 221 | * We should send the data by sequence, which means we need to reset |
| 222 | * the FIFO pointer to the first byte we want to send. |
| 223 | */ |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 224 | if (reset_compare_internal_fifo_pointer(writecnt)) |
| 225 | return SPI_PROGRAMMER_ERROR; |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 226 | |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 227 | msg_pspew("Executing: \n"); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 228 | execute_command(); |
| 229 | |
| 230 | /* |
| 231 | * After the command executed, we should find out the index of the |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 232 | * received byte. Here we just reset the FIFO pointer and skip the |
| 233 | * writecnt. |
| 234 | * It would be possible to increase the FIFO pointer by one instead |
| 235 | * of reading and discarding one byte from the FIFO. |
| 236 | * The FIFO is implemented on top of an 8 byte ring buffer and the |
| 237 | * buffer is never cleared. For every byte that is shifted out after |
| 238 | * the opcode, the FIFO already stores the response from the chip. |
| 239 | * Usually, the chip will respond with 0x00 or 0xff. |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 240 | */ |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 241 | if (reset_compare_internal_fifo_pointer(writecnt + readcnt)) |
| 242 | return SPI_PROGRAMMER_ERROR; |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 243 | |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 244 | /* Skip the bytes we sent. */ |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 245 | msg_pspew("Skipping: "); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 246 | for (count = 0; count < writecnt; count++) { |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 247 | cmd = mmio_readb(sb600_spibar + 0xC); |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 248 | msg_pspew("[%02x]", cmd); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 249 | } |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 250 | msg_pspew("\n"); |
| 251 | if (compare_internal_fifo_pointer(writecnt)) |
| 252 | return SPI_PROGRAMMER_ERROR; |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 253 | |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 254 | msg_pspew("Reading: "); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 255 | for (count = 0; count < readcnt; count++, readarr++) { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 256 | *readarr = mmio_readb(sb600_spibar + 0xC); |
Carl-Daniel Hailfinger | 643415b | 2010-01-10 01:59:50 +0000 | [diff] [blame] | 257 | msg_pspew("[%02x]", *readarr); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 258 | } |
Carl-Daniel Hailfinger | 643415b | 2010-01-10 01:59:50 +0000 | [diff] [blame] | 259 | msg_pspew("\n"); |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 260 | if (reset_compare_internal_fifo_pointer(readcnt + writecnt)) |
| 261 | return SPI_PROGRAMMER_ERROR; |
| 262 | |
| 263 | if (mmio_readb(sb600_spibar + 1) != readwrite) { |
| 264 | msg_perr("Unexpected change in SB600 read/write count!\n"); |
| 265 | msg_perr("Something else is accessing the flash chip and " |
| 266 | "causes random corruption.\nPlease stop all " |
| 267 | "applications and drivers and IPMI which access the " |
| 268 | "flash chip.\n"); |
| 269 | return SPI_PROGRAMMER_ERROR; |
| 270 | } |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 271 | |
| 272 | return 0; |
| 273 | } |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 274 | |
Rudolf Marek | 70e1459 | 2013-07-25 22:58:56 +0000 | [diff] [blame] | 275 | static int sb600_handle_imc(struct pci_dev *dev, bool amd_imc_force) |
| 276 | { |
| 277 | /* Handle IMC everywhere but sb600 which does not have one. */ |
Stefan Tauner | 4442b81 | 2013-09-12 15:48:35 +0000 | [diff] [blame] | 278 | if (amd_gen == CHIPSET_SB6XX) |
Rudolf Marek | 70e1459 | 2013-07-25 22:58:56 +0000 | [diff] [blame] | 279 | return 0; |
| 280 | |
| 281 | /* TODO: we should not only look at IntegratedImcPresent (LPC Dev 20, Func 3, 40h) but also at |
| 282 | * IMCEnable(Strap) and Override EcEnable(Strap) (sb8xx, sb9xx?, a50: Misc_Reg: 80h-87h; |
| 283 | * sb7xx, sp5100: PM_Reg: B0h-B1h) etc. */ |
| 284 | uint8_t reg = pci_read_byte(dev, 0x40); |
| 285 | if ((reg & (1 << 7)) == 0) { |
| 286 | msg_pdbg("IMC is not active.\n"); |
| 287 | return 0; |
| 288 | } |
| 289 | |
| 290 | if (!amd_imc_force) |
| 291 | programmer_may_write = 0; |
Stefan Tauner | 463dd69 | 2013-08-08 12:00:19 +0000 | [diff] [blame] | 292 | msg_pinfo("Writes have been disabled for safety reasons because the presence of the IMC\n" |
| 293 | "was detected and it could interfere with accessing flash memory. Flashrom will\n" |
| 294 | "try to disable it temporarily but even then this might not be safe:\n" |
Rudolf Marek | 70e1459 | 2013-07-25 22:58:56 +0000 | [diff] [blame] | 295 | "when it is reenabled and after a reboot it expects to find working code\n" |
| 296 | "in the flash and it is unpredictable what happens if there is none.\n" |
| 297 | "\n" |
| 298 | "To be safe make sure that there is a working IMC firmware at the right\n" |
| 299 | "location in the image you intend to write and do not attempt to erase.\n" |
| 300 | "\n" |
| 301 | "You can enforce write support with the amd_imc_force programmer option.\n"); |
| 302 | if (amd_imc_force) |
| 303 | msg_pinfo("Continuing with write support because the user forced us to!\n"); |
| 304 | |
| 305 | return amd_imc_shutdown(dev); |
| 306 | } |
| 307 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 308 | static const struct spi_programmer spi_programmer_sb600 = { |
| 309 | .type = SPI_CONTROLLER_SB600, |
| 310 | .max_data_read = 8, |
| 311 | .max_data_write = 5, |
| 312 | .command = sb600_spi_send_command, |
| 313 | .multicommand = default_spi_send_multicommand, |
| 314 | .read = default_spi_read, |
| 315 | .write_256 = default_spi_write_256, |
Nico Huber | 7bca126 | 2012-06-15 22:28:12 +0000 | [diff] [blame] | 316 | .write_aai = default_spi_write_aai, |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 317 | }; |
| 318 | |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 319 | int sb600_probe_spi(struct pci_dev *dev) |
| 320 | { |
| 321 | struct pci_dev *smbus_dev; |
| 322 | uint32_t tmp; |
| 323 | uint8_t reg; |
Rudolf Marek | 70e1459 | 2013-07-25 22:58:56 +0000 | [diff] [blame] | 324 | bool amd_imc_force = false; |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 325 | static const char *const speed_names[4] = { |
Stefan Tauner | 0466c81 | 2013-06-16 10:30:08 +0000 | [diff] [blame] | 326 | "66/reserved", "33", "22", "16.5" |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 327 | }; |
| 328 | |
Rudolf Marek | 70e1459 | 2013-07-25 22:58:56 +0000 | [diff] [blame] | 329 | char *arg = extract_programmer_param("amd_imc_force"); |
| 330 | if (arg && !strcmp(arg, "yes")) { |
| 331 | amd_imc_force = true; |
| 332 | msg_pspew("amd_imc_force enabled.\n"); |
| 333 | } else if (arg && !strlen(arg)) { |
| 334 | msg_perr("Missing argument for amd_imc_force.\n"); |
| 335 | free(arg); |
| 336 | return ERROR_FATAL; |
| 337 | } else if (arg) { |
| 338 | msg_perr("Unknown argument for amd_imc_force: \"%s\" (not \"yes\").\n", arg); |
| 339 | free(arg); |
| 340 | return ERROR_FATAL; |
| 341 | } |
| 342 | free(arg); |
| 343 | |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 344 | /* Read SPI_BaseAddr */ |
| 345 | tmp = pci_read_long(dev, 0xa0); |
| 346 | tmp &= 0xffffffe0; /* remove bits 4-0 (reserved) */ |
| 347 | msg_pdbg("SPI base address is at 0x%x\n", tmp); |
| 348 | |
| 349 | /* If the BAR has address 0, it is unlikely SPI is used. */ |
| 350 | if (!tmp) |
| 351 | return 0; |
| 352 | |
| 353 | /* Physical memory has to be mapped at page (4k) boundaries. */ |
Stefan Tauner | 7fb5aa0 | 2013-08-14 15:48:44 +0000 | [diff] [blame] | 354 | sb600_spibar = rphysmap("SB600 SPI registers", tmp & 0xfffff000, 0x1000); |
| 355 | if (sb600_spibar == ERROR_PTR) |
Niklas Söderlund | 5d30720 | 2013-09-14 09:02:27 +0000 | [diff] [blame] | 356 | return ERROR_FATAL; |
Stefan Tauner | 7fb5aa0 | 2013-08-14 15:48:44 +0000 | [diff] [blame] | 357 | |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 358 | /* The low bits of the SPI base address are used as offset into |
| 359 | * the mapped page. |
| 360 | */ |
| 361 | sb600_spibar += tmp & 0xfff; |
| 362 | |
Stefan Tauner | 463dd69 | 2013-08-08 12:00:19 +0000 | [diff] [blame] | 363 | determine_generation(dev); |
Stefan Tauner | 4442b81 | 2013-09-12 15:48:35 +0000 | [diff] [blame] | 364 | if (amd_gen == CHIPSET_AMD_UNKNOWN) { |
| 365 | msg_perr("Could not determine chipset generation."); |
| 366 | return ERROR_NONFATAL; |
| 367 | } |
Stefan Tauner | 463dd69 | 2013-08-08 12:00:19 +0000 | [diff] [blame] | 368 | |
| 369 | if (amd_gen == CHIPSET_YANGTZE) { |
| 370 | msg_perr("SPI on Kabini/Temash and newer chipsets are not yet supported.\n" |
| 371 | "Please try a newer version of flashrom.\n"); |
| 372 | return ERROR_NONFATAL; |
| 373 | } |
| 374 | |
Stefan Tauner | 4442b81 | 2013-09-12 15:48:35 +0000 | [diff] [blame] | 375 | /* How to read the following table and similar ones in this file: |
| 376 | * "?" means we have no datasheet for this chipset generation or it doesn't have any relevant info. |
| 377 | * "<-" means the bit/register meaning is identical to the next non-"?" chipset to the left. "<-" thus |
| 378 | * never refers to another "?". |
| 379 | * If a "?" chipset is between two chipsets with identical meaning, we assume the meaning didn't change |
| 380 | * twice in between, i.e. the meaning is unchanged for the "?" chipset. Usually we assume that |
| 381 | * succeeding hardware supports the same functionality as its predecessor unless proven different by |
| 382 | * tests or documentation, hence "?" will often be implemented equally to "<-". |
| 383 | * |
| 384 | * Chipset support matrix for SPI Base_Addr (LPC PCI reg 0xa0) |
| 385 | * bit 6xx 7xx/SP5100 8xx 9xx hudson1 hudson2+ yangtze |
| 386 | * 3 rsvd <- <- ? <- ? RouteTpm2Spi |
| 387 | * 2 rsvd AbortEnable rsvd ? <- ? <- |
| 388 | * 1 rsvd SpiRomEnable <- ? <- ? <- |
| 389 | * 0 rsvd AltSpiCSEnable rsvd ? <- ? <- |
| 390 | */ |
| 391 | if (amd_gen >= CHIPSET_SB7XX) { |
| 392 | tmp = pci_read_long(dev, 0xa0); |
| 393 | msg_pdbg("SpiRomEnable=%i", (tmp >> 1) & 0x1); |
| 394 | if (amd_gen == CHIPSET_SB7XX) |
| 395 | msg_pdbg(", AltSpiCSEnable=%i, AbortEnable=%i", tmp & 0x1, (tmp >> 2) & 0x1); |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 396 | |
Stefan Tauner | 4442b81 | 2013-09-12 15:48:35 +0000 | [diff] [blame] | 397 | tmp = pci_read_byte(dev, 0xba); |
| 398 | msg_pdbg(", PrefetchEnSPIFromIMC=%i", (tmp & 0x4) >> 2); |
| 399 | |
| 400 | tmp = pci_read_byte(dev, 0xbb); |
| 401 | /* FIXME: Set bit 3,6,7 if not already set. |
| 402 | * Set bit 5, otherwise SPI accesses are pointless in LPC mode. |
| 403 | * See doc 42413 AMD SB700/710/750 RPR. |
| 404 | */ |
| 405 | if (amd_gen == CHIPSET_SB7XX) |
| 406 | msg_pdbg(", SpiOpEnInLpcMode=%i", (tmp >> 5) & 0x1); |
| 407 | msg_pdbg(", PrefetchEnSPIFromHost=%i\n", tmp & 0x1); |
| 408 | } |
| 409 | |
| 410 | /* Chipset support matrix for SPI_Cntrl0 (spibar + 0x0) |
| 411 | * See the chipset support matrix for SPI Base_Addr above for an explanation of the symbols used. |
| 412 | * bit 6xx 7xx/SP5100 8xx 9xx hudson1 hudson2+ yangtze |
| 413 | * 17 rsvd <- <- ? <- ? <- |
| 414 | * 18 rsvd <- fastReadEnable<1> ? <- ? SpiReadMode[0] |
| 415 | * 19 SpiArbEnable <- <- ? <- ? <- |
| 416 | * 20 (FifoPtrClr) <- <- ? <- ? <- |
| 417 | * 21 (FifoPtrInc) <- <- ? <- ? IllegalAccess |
| 418 | * 22 SpiAccessMacRomEn <- <- ? <- ? <- |
| 419 | * 23 SpiHostAccessRomEn <- <- ? <- ? <- |
| 420 | * 24:26 ArbWaitCount <- <- ? <- ? <- |
| 421 | * 27 SpiBridgeDisable <- <- ? <- ? rsvd |
| 422 | * 28 rsvd DropOneClkOnRd = SPIClkGate ? <- ? <- |
| 423 | * 29:30 rsvd <- <- ? <- ? SpiReadMode[2:1] |
| 424 | * 31 rsvd <- SpiBusy ? <- ? <- |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 425 | */ |
Stefan Tauner | 4442b81 | 2013-09-12 15:48:35 +0000 | [diff] [blame] | 426 | tmp = mmio_readl(sb600_spibar + 0x00); |
| 427 | msg_pdbg("(0x%08" PRIx32 ") SpiArbEnable=%i", tmp, (tmp >> 19) & 0x1); |
| 428 | |
| 429 | msg_pdbg(", SpiAccessMacRomEn=%i, SpiHostAccessRomEn=%i, ArbWaitCount=%i", |
| 430 | (tmp >> 22) & 0x1, (tmp >> 23) & 0x1, (tmp >> 24) & 0x7); |
| 431 | |
| 432 | if (amd_gen != CHIPSET_YANGTZE) |
| 433 | msg_pdbg(", SpiBridgeDisable=%i", (tmp >> 27) & 0x1); |
| 434 | |
| 435 | switch (amd_gen) { |
| 436 | case CHIPSET_SB7XX: |
| 437 | msg_pdbg(", DropOneClkOnRd/SpiClkGate=%i", (tmp >> 28) & 0x1); |
| 438 | case CHIPSET_SB89XX: |
| 439 | case CHIPSET_HUDSON234: |
| 440 | msg_pdbg(", SpiBusy=%i", (tmp >> 31) & 0x1); |
| 441 | default: break; |
| 442 | } |
| 443 | msg_pdbg("\n"); |
| 444 | |
| 445 | if (((tmp >> 22) & 0x1) == 0 || ((tmp >> 23) & 0x1) == 0) { |
| 446 | msg_perr("ERROR: State of SpiAccessMacRomEn or SpiHostAccessRomEn prohibits full access.\n"); |
| 447 | return ERROR_NONFATAL; |
| 448 | } |
| 449 | |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 450 | tmp = (mmio_readb(sb600_spibar + 0xd) >> 4) & 0x3; |
| 451 | msg_pdbg("NormSpeed is %s MHz\n", speed_names[tmp]); |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 452 | |
Stefan Tauner | 4442b81 | 2013-09-12 15:48:35 +0000 | [diff] [blame] | 453 | if (amd_gen >= CHIPSET_SB89XX) { |
| 454 | tmp = mmio_readb(sb600_spibar + 0x1D); |
| 455 | msg_pdbg("Using SPI_CS%d\n", tmp & 0x3); |
| 456 | } |
| 457 | |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 458 | /* Look for the SMBus device. */ |
| 459 | smbus_dev = pci_dev_find(0x1002, 0x4385); |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 460 | if (!smbus_dev) { |
Stefan Tauner | 463dd69 | 2013-08-08 12:00:19 +0000 | [diff] [blame] | 461 | smbus_dev = pci_dev_find(0x1022, 0x780b); /* AMD FCH */ |
Wang Qing Pei | 6e9e2ee | 2011-08-26 21:11:41 +0000 | [diff] [blame] | 462 | if (!smbus_dev) { |
| 463 | msg_perr("ERROR: SMBus device not found. Not enabling SPI.\n"); |
| 464 | return ERROR_NONFATAL; |
| 465 | } |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | /* Note about the bit tests below: If a bit is zero, the GPIO is SPI. */ |
| 469 | /* GPIO11/SPI_DO and GPIO12/SPI_DI status */ |
| 470 | reg = pci_read_byte(smbus_dev, 0xAB); |
| 471 | reg &= 0xC0; |
| 472 | msg_pdbg("GPIO11 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_DO"); |
| 473 | msg_pdbg("GPIO12 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_DI"); |
| 474 | if (reg != 0x00) { |
| 475 | msg_pdbg("Not enabling SPI"); |
| 476 | return 0; |
| 477 | } |
| 478 | /* GPIO31/SPI_HOLD and GPIO32/SPI_CS status */ |
| 479 | reg = pci_read_byte(smbus_dev, 0x83); |
| 480 | reg &= 0xC0; |
| 481 | msg_pdbg("GPIO31 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_HOLD"); |
| 482 | msg_pdbg("GPIO32 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_CS"); |
| 483 | /* SPI_HOLD is not used on all boards, filter it out. */ |
| 484 | if ((reg & 0x80) != 0x00) { |
| 485 | msg_pdbg("Not enabling SPI"); |
| 486 | return 0; |
| 487 | } |
| 488 | /* GPIO47/SPI_CLK status */ |
| 489 | reg = pci_read_byte(smbus_dev, 0xA7); |
| 490 | reg &= 0x40; |
| 491 | msg_pdbg("GPIO47 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_CLK"); |
| 492 | if (reg != 0x00) { |
| 493 | msg_pdbg("Not enabling SPI"); |
| 494 | return 0; |
| 495 | } |
| 496 | |
Rudolf Marek | 70e1459 | 2013-07-25 22:58:56 +0000 | [diff] [blame] | 497 | if (sb600_handle_imc(dev, amd_imc_force) != 0) |
| 498 | return ERROR_FATAL; |
Carl-Daniel Hailfinger | 39446e3 | 2010-09-15 12:02:07 +0000 | [diff] [blame] | 499 | |
Carl-Daniel Hailfinger | eb0e7fc | 2010-08-18 15:12:43 +0000 | [diff] [blame] | 500 | /* Bring the FIFO to a clean state. */ |
| 501 | reset_internal_fifo_pointer(); |
| 502 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 503 | register_spi_programmer(&spi_programmer_sb600); |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 504 | return 0; |
| 505 | } |
| 506 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 507 | #endif |