Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2008 Stefan Wildemann <stefan.wildemann@kontron.com> |
| 5 | * Copyright (C) 2008 Claus Gindhart <claus.gindhart@kontron.com> |
| 6 | * Copyright (C) 2008 Dominik Geyer <dominik.geyer@kontron.com> |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 7 | * Copyright (C) 2008 coresystems GmbH <info@coresystems.de> |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 8 | * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 9 | * Copyright (C) 2011 Stefan Tauner |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or |
| 14 | * (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 24 | */ |
| 25 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 26 | #if defined(__i386__) || defined(__x86_64__) |
| 27 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 28 | #include <string.h> |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 29 | #include <stdlib.h> |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 30 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 31 | #include "programmer.h" |
Patrick Georgi | 32508eb | 2012-07-20 20:35:14 +0000 | [diff] [blame] | 32 | #include "hwaccess.h" |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 33 | #include "spi.h" |
Stefan Tauner | 1e14639 | 2011-09-15 23:52:55 +0000 | [diff] [blame] | 34 | #include "ich_descriptors.h" |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 35 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 36 | /* ICH9 controller register definition */ |
Stefan Tauner | 5520694 | 2011-06-11 09:53:22 +0000 | [diff] [blame] | 37 | #define ICH9_REG_HSFS 0x04 /* 16 Bits Hardware Sequencing Flash Status */ |
| 38 | #define HSFS_FDONE_OFF 0 /* 0: Flash Cycle Done */ |
| 39 | #define HSFS_FDONE (0x1 << HSFS_FDONE_OFF) |
| 40 | #define HSFS_FCERR_OFF 1 /* 1: Flash Cycle Error */ |
| 41 | #define HSFS_FCERR (0x1 << HSFS_FCERR_OFF) |
| 42 | #define HSFS_AEL_OFF 2 /* 2: Access Error Log */ |
| 43 | #define HSFS_AEL (0x1 << HSFS_AEL_OFF) |
| 44 | #define HSFS_BERASE_OFF 3 /* 3-4: Block/Sector Erase Size */ |
| 45 | #define HSFS_BERASE (0x3 << HSFS_BERASE_OFF) |
| 46 | #define HSFS_SCIP_OFF 5 /* 5: SPI Cycle In Progress */ |
| 47 | #define HSFS_SCIP (0x1 << HSFS_SCIP_OFF) |
| 48 | /* 6-12: reserved */ |
| 49 | #define HSFS_FDOPSS_OFF 13 /* 13: Flash Descriptor Override Pin-Strap Status */ |
| 50 | #define HSFS_FDOPSS (0x1 << HSFS_FDOPSS_OFF) |
| 51 | #define HSFS_FDV_OFF 14 /* 14: Flash Descriptor Valid */ |
| 52 | #define HSFS_FDV (0x1 << HSFS_FDV_OFF) |
| 53 | #define HSFS_FLOCKDN_OFF 15 /* 15: Flash Configuration Lock-Down */ |
| 54 | #define HSFS_FLOCKDN (0x1 << HSFS_FLOCKDN_OFF) |
| 55 | |
| 56 | #define ICH9_REG_HSFC 0x06 /* 16 Bits Hardware Sequencing Flash Control */ |
| 57 | #define HSFC_FGO_OFF 0 /* 0: Flash Cycle Go */ |
| 58 | #define HSFC_FGO (0x1 << HSFC_FGO_OFF) |
| 59 | #define HSFC_FCYCLE_OFF 1 /* 1-2: FLASH Cycle */ |
| 60 | #define HSFC_FCYCLE (0x3 << HSFC_FCYCLE_OFF) |
| 61 | /* 3-7: reserved */ |
| 62 | #define HSFC_FDBC_OFF 8 /* 8-13: Flash Data Byte Count */ |
| 63 | #define HSFC_FDBC (0x3f << HSFC_FDBC_OFF) |
| 64 | /* 14: reserved */ |
| 65 | #define HSFC_SME_OFF 15 /* 15: SPI SMI# Enable */ |
| 66 | #define HSFC_SME (0x1 << HSFC_SME_OFF) |
| 67 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 68 | #define ICH9_REG_FADDR 0x08 /* 32 Bits */ |
| 69 | #define ICH9_REG_FDATA0 0x10 /* 64 Bytes */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 70 | |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 71 | #define ICH9_REG_FRAP 0x50 /* 32 Bytes Flash Region Access Permissions */ |
| 72 | #define ICH9_REG_FREG0 0x54 /* 32 Bytes Flash Region 0 */ |
| 73 | |
| 74 | #define ICH9_REG_PR0 0x74 /* 32 Bytes Protected Range 0 */ |
Stefan Tauner | bf69aaa | 2011-09-17 21:21:48 +0000 | [diff] [blame] | 75 | #define PR_WP_OFF 31 /* 31: write protection enable */ |
| 76 | #define PR_RP_OFF 15 /* 15: read protection enable */ |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 77 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 78 | #define ICH9_REG_SSFS 0x90 /* 08 Bits */ |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 79 | #define SSFS_SCIP_OFF 0 /* SPI Cycle In Progress */ |
| 80 | #define SSFS_SCIP (0x1 << SSFS_SCIP_OFF) |
| 81 | #define SSFS_FDONE_OFF 2 /* Cycle Done Status */ |
| 82 | #define SSFS_FDONE (0x1 << SSFS_FDONE_OFF) |
| 83 | #define SSFS_FCERR_OFF 3 /* Flash Cycle Error */ |
| 84 | #define SSFS_FCERR (0x1 << SSFS_FCERR_OFF) |
| 85 | #define SSFS_AEL_OFF 4 /* Access Error Log */ |
| 86 | #define SSFS_AEL (0x1 << SSFS_AEL_OFF) |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 87 | /* The following bits are reserved in SSFS: 1,5-7. */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 88 | #define SSFS_RESERVED_MASK 0x000000e2 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 89 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 90 | #define ICH9_REG_SSFC 0x91 /* 24 Bits */ |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 91 | /* We combine SSFS and SSFC to one 32-bit word, |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 92 | * therefore SSFC bits are off by 8. */ |
| 93 | /* 0: reserved */ |
| 94 | #define SSFC_SCGO_OFF (1 + 8) /* 1: SPI Cycle Go */ |
| 95 | #define SSFC_SCGO (0x1 << SSFC_SCGO_OFF) |
| 96 | #define SSFC_ACS_OFF (2 + 8) /* 2: Atomic Cycle Sequence */ |
| 97 | #define SSFC_ACS (0x1 << SSFC_ACS_OFF) |
| 98 | #define SSFC_SPOP_OFF (3 + 8) /* 3: Sequence Prefix Opcode Pointer */ |
| 99 | #define SSFC_SPOP (0x1 << SSFC_SPOP_OFF) |
| 100 | #define SSFC_COP_OFF (4 + 8) /* 4-6: Cycle Opcode Pointer */ |
| 101 | #define SSFC_COP (0x7 << SSFC_COP_OFF) |
| 102 | /* 7: reserved */ |
| 103 | #define SSFC_DBC_OFF (8 + 8) /* 8-13: Data Byte Count */ |
| 104 | #define SSFC_DBC (0x3f << SSFC_DBC_OFF) |
| 105 | #define SSFC_DS_OFF (14 + 8) /* 14: Data Cycle */ |
| 106 | #define SSFC_DS (0x1 << SSFC_DS_OFF) |
| 107 | #define SSFC_SME_OFF (15 + 8) /* 15: SPI SMI# Enable */ |
| 108 | #define SSFC_SME (0x1 << SSFC_SME_OFF) |
| 109 | #define SSFC_SCF_OFF (16 + 8) /* 16-18: SPI Cycle Frequency */ |
| 110 | #define SSFC_SCF (0x7 << SSFC_SCF_OFF) |
| 111 | #define SSFC_SCF_20MHZ 0x00000000 |
| 112 | #define SSFC_SCF_33MHZ 0x01000000 |
| 113 | /* 19-23: reserved */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 114 | #define SSFC_RESERVED_MASK 0xf8008100 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 115 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 116 | #define ICH9_REG_PREOP 0x94 /* 16 Bits */ |
| 117 | #define ICH9_REG_OPTYPE 0x96 /* 16 Bits */ |
| 118 | #define ICH9_REG_OPMENU 0x98 /* 64 Bits */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 119 | |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 120 | #define ICH9_REG_BBAR 0xA0 /* 32 Bits BIOS Base Address Configuration */ |
| 121 | #define BBAR_MASK 0x00ffff00 /* 8-23: Bottom of System Flash */ |
| 122 | |
Stefan Tauner | 1e14639 | 2011-09-15 23:52:55 +0000 | [diff] [blame] | 123 | #define ICH8_REG_VSCC 0xC1 /* 32 Bits Vendor Specific Component Capabilities */ |
| 124 | #define ICH9_REG_LVSCC 0xC4 /* 32 Bits Host Lower Vendor Specific Component Capabilities */ |
| 125 | #define ICH9_REG_UVSCC 0xC8 /* 32 Bits Host Upper Vendor Specific Component Capabilities */ |
| 126 | /* The individual fields of the VSCC registers are defined in the file |
| 127 | * ich_descriptors.h. The reason is that the same layout is also used in the |
| 128 | * flash descriptor to define the properties of the different flash chips |
| 129 | * supported. The BIOS (or the ME?) is responsible to populate the ICH registers |
| 130 | * with the information from the descriptor on startup depending on the actual |
| 131 | * chip(s) detected. */ |
| 132 | |
Stefan Tauner | bd649e4 | 2011-07-01 00:39:16 +0000 | [diff] [blame] | 133 | #define ICH9_REG_FPB 0xD0 /* 32 Bits Flash Partition Boundary */ |
| 134 | #define FPB_FPBA_OFF 0 /* 0-12: Block/Sector Erase Size */ |
| 135 | #define FPB_FPBA (0x1FFF << FPB_FPBA_OFF) |
| 136 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 137 | // ICH9R SPI commands |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 138 | #define SPI_OPCODE_TYPE_READ_NO_ADDRESS 0 |
| 139 | #define SPI_OPCODE_TYPE_WRITE_NO_ADDRESS 1 |
| 140 | #define SPI_OPCODE_TYPE_READ_WITH_ADDRESS 2 |
| 141 | #define SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS 3 |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 142 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 143 | // ICH7 registers |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 144 | #define ICH7_REG_SPIS 0x00 /* 16 Bits */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 145 | #define SPIS_SCIP 0x0001 |
| 146 | #define SPIS_GRANT 0x0002 |
| 147 | #define SPIS_CDS 0x0004 |
| 148 | #define SPIS_FCERR 0x0008 |
| 149 | #define SPIS_RESERVED_MASK 0x7ff0 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 150 | |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 151 | /* VIA SPI is compatible with ICH7, but maxdata |
| 152 | to transfer is 16 bytes. |
| 153 | |
| 154 | DATA byte count on ICH7 is 8:13, on VIA 8:11 |
| 155 | |
| 156 | bit 12 is port select CS0 CS1 |
| 157 | bit 13 is FAST READ enable |
| 158 | bit 7 is used with fast read and one shot controls CS de-assert? |
| 159 | */ |
| 160 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 161 | #define ICH7_REG_SPIC 0x02 /* 16 Bits */ |
| 162 | #define SPIC_SCGO 0x0002 |
| 163 | #define SPIC_ACS 0x0004 |
| 164 | #define SPIC_SPOP 0x0008 |
| 165 | #define SPIC_DS 0x4000 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 166 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 167 | #define ICH7_REG_SPIA 0x04 /* 32 Bits */ |
| 168 | #define ICH7_REG_SPID0 0x08 /* 64 Bytes */ |
| 169 | #define ICH7_REG_PREOP 0x54 /* 16 Bits */ |
| 170 | #define ICH7_REG_OPTYPE 0x56 /* 16 Bits */ |
| 171 | #define ICH7_REG_OPMENU 0x58 /* 64 Bits */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 172 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 173 | /* ICH SPI configuration lock-down. May be set during chipset enabling. */ |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 174 | static int ichspi_lock = 0; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 175 | |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 176 | static enum ich_chipset ich_generation = CHIPSET_ICH_UNKNOWN; |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 177 | uint32_t ichspi_bbar = 0; |
| 178 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 179 | static void *ich_spibar = NULL; |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 180 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 181 | typedef struct _OPCODE { |
| 182 | uint8_t opcode; //This commands spi opcode |
| 183 | uint8_t spi_type; //This commands spi type |
| 184 | uint8_t atomic; //Use preop: (0: none, 1: preop0, 2: preop1 |
| 185 | } OPCODE; |
| 186 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 187 | /* Suggested opcode definition: |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 188 | * Preop 1: Write Enable |
| 189 | * Preop 2: Write Status register enable |
| 190 | * |
| 191 | * OP 0: Write address |
| 192 | * OP 1: Read Address |
| 193 | * OP 2: ERASE block |
| 194 | * OP 3: Read Status register |
| 195 | * OP 4: Read ID |
| 196 | * OP 5: Write Status register |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 197 | * OP 6: chip private (read JEDEC id) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 198 | * OP 7: Chip erase |
| 199 | */ |
| 200 | typedef struct _OPCODES { |
| 201 | uint8_t preop[2]; |
| 202 | OPCODE opcode[8]; |
| 203 | } OPCODES; |
| 204 | |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 205 | static OPCODES *curopcodes = NULL; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 206 | |
| 207 | /* HW access functions */ |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 208 | static uint32_t REGREAD32(int X) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 209 | { |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 210 | return mmio_readl(ich_spibar + X); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 211 | } |
| 212 | |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 213 | static uint16_t REGREAD16(int X) |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 214 | { |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 215 | return mmio_readw(ich_spibar + X); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 216 | } |
| 217 | |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 218 | static uint16_t REGREAD8(int X) |
| 219 | { |
| 220 | return mmio_readb(ich_spibar + X); |
| 221 | } |
| 222 | |
Stefan Tauner | ccd92a1 | 2011-07-01 00:39:01 +0000 | [diff] [blame] | 223 | #define REGWRITE32(off, val) mmio_writel(val, ich_spibar+(off)) |
| 224 | #define REGWRITE16(off, val) mmio_writew(val, ich_spibar+(off)) |
| 225 | #define REGWRITE8(off, val) mmio_writeb(val, ich_spibar+(off)) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 226 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 227 | /* Common SPI functions */ |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 228 | static int find_opcode(OPCODES *op, uint8_t opcode); |
| 229 | static int find_preop(OPCODES *op, uint8_t preop); |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 230 | static int generate_opcodes(OPCODES * op); |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 231 | static int program_opcodes(OPCODES *op, int enable_undo); |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 232 | static int run_opcode(const struct flashctx *flash, OPCODE op, uint32_t offset, |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 233 | uint8_t datalength, uint8_t * data); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 234 | |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 235 | /* for pairing opcodes with their required preop */ |
| 236 | struct preop_opcode_pair { |
| 237 | uint8_t preop; |
| 238 | uint8_t opcode; |
| 239 | }; |
| 240 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 241 | /* List of opcodes which need preopcodes and matching preopcodes. Unused. */ |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 242 | const struct preop_opcode_pair pops[] = { |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 243 | {JEDEC_WREN, JEDEC_BYTE_PROGRAM}, |
| 244 | {JEDEC_WREN, JEDEC_SE}, /* sector erase */ |
| 245 | {JEDEC_WREN, JEDEC_BE_52}, /* block erase */ |
| 246 | {JEDEC_WREN, JEDEC_BE_D8}, /* block erase */ |
| 247 | {JEDEC_WREN, JEDEC_CE_60}, /* chip erase */ |
| 248 | {JEDEC_WREN, JEDEC_CE_C7}, /* chip erase */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 249 | /* FIXME: WRSR requires either EWSR or WREN depending on chip type. */ |
| 250 | {JEDEC_WREN, JEDEC_WRSR}, |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 251 | {JEDEC_EWSR, JEDEC_WRSR}, |
| 252 | {0,} |
| 253 | }; |
| 254 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 255 | /* Reasonable default configuration. Needs ad-hoc modifications if we |
| 256 | * encounter unlisted opcodes. Fun. |
| 257 | */ |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 258 | static OPCODES O_ST_M25P = { |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 259 | { |
| 260 | JEDEC_WREN, |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 261 | JEDEC_EWSR, |
| 262 | }, |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 263 | { |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 264 | {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 265 | {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 266 | {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 267 | {JEDEC_RDSR, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read Device Status Reg |
Carl-Daniel Hailfinger | 15aa7c6 | 2009-05-26 21:25:08 +0000 | [diff] [blame] | 268 | {JEDEC_REMS, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Electronic Manufacturer Signature |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 269 | {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 270 | {JEDEC_RDID, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read JDEC ID |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 271 | {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase |
| 272 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 273 | }; |
| 274 | |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 275 | /* List of opcodes with their corresponding spi_type |
| 276 | * It is used to reprogram the chipset OPCODE table on-the-fly if an opcode |
| 277 | * is needed which is currently not in the chipset OPCODE table |
| 278 | */ |
| 279 | static OPCODE POSSIBLE_OPCODES[] = { |
| 280 | {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte |
| 281 | {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data |
| 282 | {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector |
| 283 | {JEDEC_RDSR, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read Device Status Reg |
| 284 | {JEDEC_REMS, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Electronic Manufacturer Signature |
| 285 | {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register |
| 286 | {JEDEC_RDID, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read JDEC ID |
| 287 | {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase |
| 288 | {JEDEC_SE, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Sector erase |
| 289 | {JEDEC_BE_52, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Block erase |
| 290 | {JEDEC_AAI_WORD_PROGRAM, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Auto Address Increment |
| 291 | }; |
| 292 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 293 | static OPCODES O_EXISTING = {}; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 294 | |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 295 | /* pretty printing functions */ |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 296 | static void prettyprint_opcodes(OPCODES *ops) |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 297 | { |
Stefan Tauner | 84e1dde | 2011-09-17 19:53:11 +0000 | [diff] [blame] | 298 | OPCODE oc; |
| 299 | const char *t; |
| 300 | const char *a; |
| 301 | uint8_t i; |
| 302 | static const char *const spi_type[4] = { |
| 303 | "read w/o addr", |
| 304 | "write w/o addr", |
| 305 | "read w/ addr", |
| 306 | "write w/ addr" |
| 307 | }; |
| 308 | static const char *const atomic_type[3] = { |
| 309 | "none", |
| 310 | " 0 ", |
| 311 | " 1 " |
| 312 | }; |
| 313 | |
| 314 | if (ops == NULL) |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 315 | return; |
| 316 | |
Stefan Tauner | 84e1dde | 2011-09-17 19:53:11 +0000 | [diff] [blame] | 317 | msg_pdbg2(" OP Type Pre-OP\n"); |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 318 | for (i = 0; i < 8; i++) { |
| 319 | oc = ops->opcode[i]; |
Stefan Tauner | 84e1dde | 2011-09-17 19:53:11 +0000 | [diff] [blame] | 320 | t = (oc.spi_type > 3) ? "invalid" : spi_type[oc.spi_type]; |
| 321 | a = (oc.atomic > 2) ? "invalid" : atomic_type[oc.atomic]; |
| 322 | msg_pdbg2("op[%d]: 0x%02x, %s, %s\n", i, oc.opcode, t, a); |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 323 | } |
Stefan Tauner | 84e1dde | 2011-09-17 19:53:11 +0000 | [diff] [blame] | 324 | msg_pdbg2("Pre-OP 0: 0x%02x, Pre-OP 1: 0x%02x\n", ops->preop[0], |
| 325 | ops->preop[1]); |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | #define pprint_reg(reg, bit, val, sep) msg_pdbg("%s=%d" sep, #bit, (val & reg##_##bit)>>reg##_##bit##_OFF) |
| 329 | |
Stefan Tauner | 5520694 | 2011-06-11 09:53:22 +0000 | [diff] [blame] | 330 | static void prettyprint_ich9_reg_hsfs(uint16_t reg_val) |
| 331 | { |
| 332 | msg_pdbg("HSFS: "); |
| 333 | pprint_reg(HSFS, FDONE, reg_val, ", "); |
| 334 | pprint_reg(HSFS, FCERR, reg_val, ", "); |
| 335 | pprint_reg(HSFS, AEL, reg_val, ", "); |
| 336 | pprint_reg(HSFS, BERASE, reg_val, ", "); |
| 337 | pprint_reg(HSFS, SCIP, reg_val, ", "); |
| 338 | pprint_reg(HSFS, FDOPSS, reg_val, ", "); |
| 339 | pprint_reg(HSFS, FDV, reg_val, ", "); |
| 340 | pprint_reg(HSFS, FLOCKDN, reg_val, "\n"); |
| 341 | } |
| 342 | |
| 343 | static void prettyprint_ich9_reg_hsfc(uint16_t reg_val) |
| 344 | { |
| 345 | msg_pdbg("HSFC: "); |
| 346 | pprint_reg(HSFC, FGO, reg_val, ", "); |
| 347 | pprint_reg(HSFC, FCYCLE, reg_val, ", "); |
| 348 | pprint_reg(HSFC, FDBC, reg_val, ", "); |
| 349 | pprint_reg(HSFC, SME, reg_val, "\n"); |
| 350 | } |
| 351 | |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 352 | static void prettyprint_ich9_reg_ssfs(uint32_t reg_val) |
| 353 | { |
| 354 | msg_pdbg("SSFS: "); |
| 355 | pprint_reg(SSFS, SCIP, reg_val, ", "); |
| 356 | pprint_reg(SSFS, FDONE, reg_val, ", "); |
| 357 | pprint_reg(SSFS, FCERR, reg_val, ", "); |
| 358 | pprint_reg(SSFS, AEL, reg_val, "\n"); |
| 359 | } |
| 360 | |
| 361 | static void prettyprint_ich9_reg_ssfc(uint32_t reg_val) |
| 362 | { |
| 363 | msg_pdbg("SSFC: "); |
| 364 | pprint_reg(SSFC, SCGO, reg_val, ", "); |
| 365 | pprint_reg(SSFC, ACS, reg_val, ", "); |
| 366 | pprint_reg(SSFC, SPOP, reg_val, ", "); |
| 367 | pprint_reg(SSFC, COP, reg_val, ", "); |
| 368 | pprint_reg(SSFC, DBC, reg_val, ", "); |
| 369 | pprint_reg(SSFC, SME, reg_val, ", "); |
| 370 | pprint_reg(SSFC, SCF, reg_val, "\n"); |
| 371 | } |
| 372 | |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 373 | static uint8_t lookup_spi_type(uint8_t opcode) |
| 374 | { |
| 375 | int a; |
| 376 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 377 | for (a = 0; a < ARRAY_SIZE(POSSIBLE_OPCODES); a++) { |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 378 | if (POSSIBLE_OPCODES[a].opcode == opcode) |
| 379 | return POSSIBLE_OPCODES[a].spi_type; |
| 380 | } |
| 381 | |
| 382 | return 0xFF; |
| 383 | } |
| 384 | |
| 385 | static int reprogram_opcode_on_the_fly(uint8_t opcode, unsigned int writecnt, unsigned int readcnt) |
| 386 | { |
| 387 | uint8_t spi_type; |
| 388 | |
| 389 | spi_type = lookup_spi_type(opcode); |
| 390 | if (spi_type > 3) { |
| 391 | /* Try to guess spi type from read/write sizes. |
| 392 | * The following valid writecnt/readcnt combinations exist: |
| 393 | * writecnt = 4, readcnt >= 0 |
| 394 | * writecnt = 1, readcnt >= 0 |
| 395 | * writecnt >= 4, readcnt = 0 |
| 396 | * writecnt >= 1, readcnt = 0 |
| 397 | * writecnt >= 1 is guaranteed for all commands. |
| 398 | */ |
| 399 | if (readcnt == 0) |
| 400 | /* if readcnt=0 and writecount >= 4, we don't know if it is WRITE_NO_ADDRESS |
| 401 | * or WRITE_WITH_ADDRESS. But if we use WRITE_NO_ADDRESS and the first 3 data |
| 402 | * bytes are actual the address, they go to the bus anyhow |
| 403 | */ |
| 404 | spi_type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS; |
| 405 | else if (writecnt == 1) // and readcnt is > 0 |
| 406 | spi_type = SPI_OPCODE_TYPE_READ_NO_ADDRESS; |
| 407 | else if (writecnt == 4) // and readcnt is > 0 |
| 408 | spi_type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS; |
Stefan Tauner | dc704ed | 2012-05-06 15:11:26 +0000 | [diff] [blame] | 409 | else // we have an invalid case |
| 410 | return SPI_INVALID_LENGTH; |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 411 | } |
Stefan Tauner | dc704ed | 2012-05-06 15:11:26 +0000 | [diff] [blame] | 412 | int oppos = 2; // use original JEDEC_BE_D8 offset |
| 413 | curopcodes->opcode[oppos].opcode = opcode; |
| 414 | curopcodes->opcode[oppos].spi_type = spi_type; |
| 415 | program_opcodes(curopcodes, 0); |
| 416 | oppos = find_opcode(curopcodes, opcode); |
Stefan Tauner | d94d25d | 2012-07-28 03:17:15 +0000 | [diff] [blame] | 417 | msg_pdbg2("on-the-fly OPCODE (0x%02X) re-programmed, op-pos=%d\n", opcode, oppos); |
Stefan Tauner | dc704ed | 2012-05-06 15:11:26 +0000 | [diff] [blame] | 418 | return oppos; |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 419 | } |
| 420 | |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 421 | static int find_opcode(OPCODES *op, uint8_t opcode) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 422 | { |
| 423 | int a; |
| 424 | |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 425 | if (op == NULL) { |
| 426 | msg_perr("\n%s: null OPCODES pointer!\n", __func__); |
| 427 | return -1; |
| 428 | } |
| 429 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 430 | for (a = 0; a < 8; a++) { |
| 431 | if (op->opcode[a].opcode == opcode) |
| 432 | return a; |
| 433 | } |
| 434 | |
| 435 | return -1; |
| 436 | } |
| 437 | |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 438 | static int find_preop(OPCODES *op, uint8_t preop) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 439 | { |
| 440 | int a; |
| 441 | |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 442 | if (op == NULL) { |
| 443 | msg_perr("\n%s: null OPCODES pointer!\n", __func__); |
| 444 | return -1; |
| 445 | } |
| 446 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 447 | for (a = 0; a < 2; a++) { |
| 448 | if (op->preop[a] == preop) |
| 449 | return a; |
| 450 | } |
| 451 | |
| 452 | return -1; |
| 453 | } |
| 454 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 455 | /* Create a struct OPCODES based on what we find in the locked down chipset. */ |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 456 | static int generate_opcodes(OPCODES * op) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 457 | { |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 458 | int a; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 459 | uint16_t preop, optype; |
| 460 | uint32_t opmenu[2]; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 461 | |
| 462 | if (op == NULL) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 463 | msg_perr("\n%s: null OPCODES pointer!\n", __func__); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 464 | return -1; |
| 465 | } |
| 466 | |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 467 | switch (ich_generation) { |
| 468 | case CHIPSET_ICH7: |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 469 | preop = REGREAD16(ICH7_REG_PREOP); |
| 470 | optype = REGREAD16(ICH7_REG_OPTYPE); |
| 471 | opmenu[0] = REGREAD32(ICH7_REG_OPMENU); |
| 472 | opmenu[1] = REGREAD32(ICH7_REG_OPMENU + 4); |
| 473 | break; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 474 | case CHIPSET_ICH8: |
| 475 | default: /* Future version might behave the same */ |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 476 | preop = REGREAD16(ICH9_REG_PREOP); |
| 477 | optype = REGREAD16(ICH9_REG_OPTYPE); |
| 478 | opmenu[0] = REGREAD32(ICH9_REG_OPMENU); |
| 479 | opmenu[1] = REGREAD32(ICH9_REG_OPMENU + 4); |
| 480 | break; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | op->preop[0] = (uint8_t) preop; |
| 484 | op->preop[1] = (uint8_t) (preop >> 8); |
| 485 | |
| 486 | for (a = 0; a < 8; a++) { |
| 487 | op->opcode[a].spi_type = (uint8_t) (optype & 0x3); |
| 488 | optype >>= 2; |
| 489 | } |
| 490 | |
| 491 | for (a = 0; a < 4; a++) { |
| 492 | op->opcode[a].opcode = (uint8_t) (opmenu[0] & 0xff); |
| 493 | opmenu[0] >>= 8; |
| 494 | } |
| 495 | |
| 496 | for (a = 4; a < 8; a++) { |
| 497 | op->opcode[a].opcode = (uint8_t) (opmenu[1] & 0xff); |
| 498 | opmenu[1] >>= 8; |
| 499 | } |
| 500 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 501 | /* No preopcodes used by default. */ |
| 502 | for (a = 0; a < 8; a++) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 503 | op->opcode[a].atomic = 0; |
| 504 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 505 | return 0; |
| 506 | } |
| 507 | |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 508 | static int program_opcodes(OPCODES *op, int enable_undo) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 509 | { |
| 510 | uint8_t a; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 511 | uint16_t preop, optype; |
| 512 | uint32_t opmenu[2]; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 513 | |
| 514 | /* Program Prefix Opcodes */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 515 | /* 0:7 Prefix Opcode 1 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 516 | preop = (op->preop[0]); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 517 | /* 8:16 Prefix Opcode 2 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 518 | preop |= ((uint16_t) op->preop[1]) << 8; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 519 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 520 | /* Program Opcode Types 0 - 7 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 521 | optype = 0; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 522 | for (a = 0; a < 8; a++) { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 523 | optype |= ((uint16_t) op->opcode[a].spi_type) << (a * 2); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 524 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 525 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 526 | /* Program Allowable Opcodes 0 - 3 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 527 | opmenu[0] = 0; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 528 | for (a = 0; a < 4; a++) { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 529 | opmenu[0] |= ((uint32_t) op->opcode[a].opcode) << (a * 8); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 530 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 531 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 532 | /*Program Allowable Opcodes 4 - 7 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 533 | opmenu[1] = 0; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 534 | for (a = 4; a < 8; a++) { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 535 | opmenu[1] |= ((uint32_t) op->opcode[a].opcode) << ((a - 4) * 8); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 536 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 537 | |
Stefan Tauner | d94d25d | 2012-07-28 03:17:15 +0000 | [diff] [blame] | 538 | msg_pdbg2("\n%s: preop=%04x optype=%04x opmenu=%08x%08x\n", __func__, preop, optype, opmenu[0], opmenu[1]); |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 539 | switch (ich_generation) { |
| 540 | case CHIPSET_ICH7: |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 541 | /* Register undo only for enable_undo=1, i.e. first call. */ |
| 542 | if (enable_undo) { |
| 543 | rmmio_valw(ich_spibar + ICH7_REG_PREOP); |
| 544 | rmmio_valw(ich_spibar + ICH7_REG_OPTYPE); |
| 545 | rmmio_vall(ich_spibar + ICH7_REG_OPMENU); |
| 546 | rmmio_vall(ich_spibar + ICH7_REG_OPMENU + 4); |
| 547 | } |
| 548 | mmio_writew(preop, ich_spibar + ICH7_REG_PREOP); |
| 549 | mmio_writew(optype, ich_spibar + ICH7_REG_OPTYPE); |
| 550 | mmio_writel(opmenu[0], ich_spibar + ICH7_REG_OPMENU); |
| 551 | mmio_writel(opmenu[1], ich_spibar + ICH7_REG_OPMENU + 4); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 552 | break; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 553 | case CHIPSET_ICH8: |
| 554 | default: /* Future version might behave the same */ |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 555 | /* Register undo only for enable_undo=1, i.e. first call. */ |
| 556 | if (enable_undo) { |
| 557 | rmmio_valw(ich_spibar + ICH9_REG_PREOP); |
| 558 | rmmio_valw(ich_spibar + ICH9_REG_OPTYPE); |
| 559 | rmmio_vall(ich_spibar + ICH9_REG_OPMENU); |
| 560 | rmmio_vall(ich_spibar + ICH9_REG_OPMENU + 4); |
| 561 | } |
| 562 | mmio_writew(preop, ich_spibar + ICH9_REG_PREOP); |
| 563 | mmio_writew(optype, ich_spibar + ICH9_REG_OPTYPE); |
| 564 | mmio_writel(opmenu[0], ich_spibar + ICH9_REG_OPMENU); |
| 565 | mmio_writel(opmenu[1], ich_spibar + ICH9_REG_OPMENU + 4); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 566 | break; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 567 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 568 | |
| 569 | return 0; |
| 570 | } |
| 571 | |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 572 | /* |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 573 | * Returns -1 if at least one mandatory opcode is inaccessible, 0 otherwise. |
| 574 | * FIXME: this should also check for |
| 575 | * - at least one probing opcode (RDID (incl. AT25F variants?), REMS, RES?) |
| 576 | * - at least one erasing opcode (lots.) |
| 577 | * - at least one program opcode (BYTE_PROGRAM, AAI_WORD_PROGRAM, ...?) |
| 578 | * - necessary preops? (EWSR, WREN, ...?) |
| 579 | */ |
| 580 | static int ich_missing_opcodes() |
| 581 | { |
| 582 | uint8_t ops[] = { |
| 583 | JEDEC_READ, |
| 584 | JEDEC_RDSR, |
| 585 | 0 |
| 586 | }; |
| 587 | int i = 0; |
| 588 | while (ops[i] != 0) { |
| 589 | msg_pspew("checking for opcode 0x%02x\n", ops[i]); |
| 590 | if (find_opcode(curopcodes, ops[i]) == -1) |
| 591 | return -1; |
| 592 | i++; |
| 593 | } |
| 594 | return 0; |
| 595 | } |
| 596 | |
| 597 | /* |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 598 | * Try to set BBAR (BIOS Base Address Register), but read back the value in case |
| 599 | * it didn't stick. |
| 600 | */ |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 601 | static void ich_set_bbar(uint32_t min_addr) |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 602 | { |
Stefan Tauner | e27b2d4 | 2011-07-01 00:39:09 +0000 | [diff] [blame] | 603 | int bbar_off; |
Stefan Tauner | 7783f31 | 2011-09-17 21:21:42 +0000 | [diff] [blame] | 604 | switch (ich_generation) { |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 605 | case CHIPSET_ICH7: |
Stefan Tauner | e27b2d4 | 2011-07-01 00:39:09 +0000 | [diff] [blame] | 606 | bbar_off = 0x50; |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 607 | break; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 608 | case CHIPSET_ICH8: |
Stefan Tauner | 7783f31 | 2011-09-17 21:21:42 +0000 | [diff] [blame] | 609 | msg_perr("BBAR offset is unknown on ICH8!\n"); |
| 610 | return; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 611 | case CHIPSET_ICH9: |
Stefan Tauner | 7783f31 | 2011-09-17 21:21:42 +0000 | [diff] [blame] | 612 | default: /* Future version might behave the same */ |
Stefan Tauner | e27b2d4 | 2011-07-01 00:39:09 +0000 | [diff] [blame] | 613 | bbar_off = ICH9_REG_BBAR; |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 614 | break; |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 615 | } |
Stefan Tauner | e27b2d4 | 2011-07-01 00:39:09 +0000 | [diff] [blame] | 616 | |
| 617 | ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & ~BBAR_MASK; |
| 618 | if (ichspi_bbar) { |
| 619 | msg_pdbg("Reserved bits in BBAR not zero: 0x%08x\n", |
| 620 | ichspi_bbar); |
| 621 | } |
| 622 | min_addr &= BBAR_MASK; |
| 623 | ichspi_bbar |= min_addr; |
| 624 | rmmio_writel(ichspi_bbar, ich_spibar + bbar_off); |
| 625 | ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & BBAR_MASK; |
| 626 | |
| 627 | /* We don't have any option except complaining. And if the write |
| 628 | * failed, the restore will fail as well, so no problem there. |
| 629 | */ |
| 630 | if (ichspi_bbar != min_addr) |
Stefan Tauner | 7783f31 | 2011-09-17 21:21:42 +0000 | [diff] [blame] | 631 | msg_perr("Setting BBAR to 0x%08x failed! New value: 0x%08x.\n", |
| 632 | min_addr, ichspi_bbar); |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 633 | } |
| 634 | |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 635 | /* Read len bytes from the fdata/spid register into the data array. |
| 636 | * |
Carl-Daniel Hailfinger | c40cff7 | 2011-12-20 00:19:29 +0000 | [diff] [blame] | 637 | * Note that using len > flash->pgm->spi.max_data_read will return garbage or |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 638 | * may even crash. |
| 639 | */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 640 | static void ich_read_data(uint8_t *data, int len, int reg0_off) |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 641 | { |
| 642 | int i; |
| 643 | uint32_t temp32 = 0; |
| 644 | |
| 645 | for (i = 0; i < len; i++) { |
| 646 | if ((i % 4) == 0) |
| 647 | temp32 = REGREAD32(reg0_off + i); |
| 648 | |
| 649 | data[i] = (temp32 >> ((i % 4) * 8)) & 0xff; |
| 650 | } |
| 651 | } |
| 652 | |
| 653 | /* Fill len bytes from the data array into the fdata/spid registers. |
| 654 | * |
Carl-Daniel Hailfinger | c40cff7 | 2011-12-20 00:19:29 +0000 | [diff] [blame] | 655 | * Note that using len > flash->pgm->spi.max_data_write will trash the registers |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 656 | * following the data registers. |
| 657 | */ |
| 658 | static void ich_fill_data(const uint8_t *data, int len, int reg0_off) |
| 659 | { |
| 660 | uint32_t temp32 = 0; |
| 661 | int i; |
| 662 | |
| 663 | if (len <= 0) |
| 664 | return; |
| 665 | |
| 666 | for (i = 0; i < len; i++) { |
| 667 | if ((i % 4) == 0) |
| 668 | temp32 = 0; |
| 669 | |
| 670 | temp32 |= ((uint32_t) data[i]) << ((i % 4) * 8); |
| 671 | |
| 672 | if ((i % 4) == 3) /* 32 bits are full, write them to regs. */ |
| 673 | REGWRITE32(reg0_off + (i - (i % 4)), temp32); |
| 674 | } |
| 675 | i--; |
| 676 | if ((i % 4) != 3) /* Write remaining data to regs. */ |
| 677 | REGWRITE32(reg0_off + (i - (i % 4)), temp32); |
| 678 | } |
| 679 | |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 680 | /* This function generates OPCODES from or programs OPCODES to ICH according to |
| 681 | * the chipset's SPI configuration lock. |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 682 | * |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 683 | * It should be called before ICH sends any spi command. |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 684 | */ |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 685 | static int ich_init_opcodes(void) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 686 | { |
| 687 | int rc = 0; |
| 688 | OPCODES *curopcodes_done; |
| 689 | |
| 690 | if (curopcodes) |
| 691 | return 0; |
| 692 | |
| 693 | if (ichspi_lock) { |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 694 | msg_pdbg("Reading OPCODES... "); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 695 | curopcodes_done = &O_EXISTING; |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 696 | rc = generate_opcodes(curopcodes_done); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 697 | } else { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 698 | msg_pdbg("Programming OPCODES... "); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 699 | curopcodes_done = &O_ST_M25P; |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 700 | rc = program_opcodes(curopcodes_done, 1); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 701 | } |
| 702 | |
| 703 | if (rc) { |
| 704 | curopcodes = NULL; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 705 | msg_perr("failed\n"); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 706 | return 1; |
| 707 | } else { |
| 708 | curopcodes = curopcodes_done; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 709 | msg_pdbg("done\n"); |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 710 | prettyprint_opcodes(curopcodes); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 711 | return 0; |
| 712 | } |
| 713 | } |
| 714 | |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 715 | static int ich7_run_opcode(OPCODE op, uint32_t offset, |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 716 | uint8_t datalength, uint8_t * data, int maxdata) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 717 | { |
| 718 | int write_cmd = 0; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 719 | int timeout; |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 720 | uint32_t temp32; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 721 | uint16_t temp16; |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 722 | uint64_t opmenu; |
| 723 | int opcode_index; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 724 | |
| 725 | /* Is it a write command? */ |
| 726 | if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) |
| 727 | || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) { |
| 728 | write_cmd = 1; |
| 729 | } |
| 730 | |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 731 | timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */ |
| 732 | while ((REGREAD16(ICH7_REG_SPIS) & SPIS_SCIP) && --timeout) { |
| 733 | programmer_delay(10); |
| 734 | } |
| 735 | if (!timeout) { |
| 736 | msg_perr("Error: SCIP never cleared!\n"); |
| 737 | return 1; |
| 738 | } |
| 739 | |
Stefan Tauner | 10b3e22 | 2011-07-01 00:39:23 +0000 | [diff] [blame] | 740 | /* Program offset in flash into SPIA while preserving reserved bits. */ |
| 741 | temp32 = REGREAD32(ICH7_REG_SPIA) & ~0x00FFFFFF; |
| 742 | REGWRITE32(ICH7_REG_SPIA, (offset & 0x00FFFFFF) | temp32); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 743 | |
Stefan Tauner | 10b3e22 | 2011-07-01 00:39:23 +0000 | [diff] [blame] | 744 | /* Program data into SPID0 to N */ |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 745 | if (write_cmd && (datalength != 0)) |
| 746 | ich_fill_data(data, datalength, ICH7_REG_SPID0); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 747 | |
| 748 | /* Assemble SPIS */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 749 | temp16 = REGREAD16(ICH7_REG_SPIS); |
| 750 | /* keep reserved bits */ |
| 751 | temp16 &= SPIS_RESERVED_MASK; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 752 | /* clear error status registers */ |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 753 | temp16 |= (SPIS_CDS | SPIS_FCERR); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 754 | REGWRITE16(ICH7_REG_SPIS, temp16); |
| 755 | |
| 756 | /* Assemble SPIC */ |
| 757 | temp16 = 0; |
| 758 | |
| 759 | if (datalength != 0) { |
| 760 | temp16 |= SPIC_DS; |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 761 | temp16 |= ((uint32_t) ((datalength - 1) & (maxdata - 1))) << 8; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | /* Select opcode */ |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 765 | opmenu = REGREAD32(ICH7_REG_OPMENU); |
| 766 | opmenu |= ((uint64_t)REGREAD32(ICH7_REG_OPMENU + 4)) << 32; |
| 767 | |
Uwe Hermann | 7b2969b | 2009-04-15 10:52:49 +0000 | [diff] [blame] | 768 | for (opcode_index = 0; opcode_index < 8; opcode_index++) { |
| 769 | if ((opmenu & 0xff) == op.opcode) { |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 770 | break; |
| 771 | } |
| 772 | opmenu >>= 8; |
| 773 | } |
| 774 | if (opcode_index == 8) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 775 | msg_pdbg("Opcode %x not found.\n", op.opcode); |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 776 | return 1; |
| 777 | } |
| 778 | temp16 |= ((uint16_t) (opcode_index & 0x07)) << 4; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 779 | |
Michael Karcher | 136125a | 2011-04-29 22:11:36 +0000 | [diff] [blame] | 780 | timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */ |
| 781 | /* Handle Atomic. Atomic commands include three steps: |
| 782 | - sending the preop (mainly EWSR or WREN) |
| 783 | - sending the main command |
| 784 | - waiting for the busy bit (WIP) to be cleared |
| 785 | This means the timeout must be sufficient for chip erase |
| 786 | of slow high-capacity chips. |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 787 | */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 788 | switch (op.atomic) { |
| 789 | case 2: |
| 790 | /* Select second preop. */ |
| 791 | temp16 |= SPIC_SPOP; |
| 792 | /* And fall through. */ |
| 793 | case 1: |
| 794 | /* Atomic command (preop+op) */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 795 | temp16 |= SPIC_ACS; |
Michael Karcher | 136125a | 2011-04-29 22:11:36 +0000 | [diff] [blame] | 796 | timeout = 100 * 1000 * 60; /* 60 seconds */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 797 | break; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | /* Start */ |
| 801 | temp16 |= SPIC_SCGO; |
| 802 | |
| 803 | /* write it */ |
| 804 | REGWRITE16(ICH7_REG_SPIC, temp16); |
| 805 | |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 806 | /* Wait for Cycle Done Status or Flash Cycle Error. */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 807 | while (((REGREAD16(ICH7_REG_SPIS) & (SPIS_CDS | SPIS_FCERR)) == 0) && |
| 808 | --timeout) { |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 809 | programmer_delay(10); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 810 | } |
| 811 | if (!timeout) { |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 812 | msg_perr("timeout, ICH7_REG_SPIS=0x%04x\n", |
| 813 | REGREAD16(ICH7_REG_SPIS)); |
| 814 | return 1; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 815 | } |
| 816 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 817 | /* FIXME: make sure we do not needlessly cause transaction errors. */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 818 | temp16 = REGREAD16(ICH7_REG_SPIS); |
| 819 | if (temp16 & SPIS_FCERR) { |
Stefan Tauner | 8ed2934 | 2011-04-29 23:53:09 +0000 | [diff] [blame] | 820 | msg_perr("Transaction error!\n"); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 821 | /* keep reserved bits */ |
| 822 | temp16 &= SPIS_RESERVED_MASK; |
| 823 | REGWRITE16(ICH7_REG_SPIS, temp16 | SPIS_FCERR); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 824 | return 1; |
| 825 | } |
| 826 | |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 827 | if ((!write_cmd) && (datalength != 0)) |
| 828 | ich_read_data(data, datalength, ICH7_REG_SPID0); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 829 | |
| 830 | return 0; |
| 831 | } |
| 832 | |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 833 | static int ich9_run_opcode(OPCODE op, uint32_t offset, |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 834 | uint8_t datalength, uint8_t * data) |
| 835 | { |
| 836 | int write_cmd = 0; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 837 | int timeout; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 838 | uint32_t temp32; |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 839 | uint64_t opmenu; |
| 840 | int opcode_index; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 841 | |
| 842 | /* Is it a write command? */ |
| 843 | if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) |
| 844 | || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) { |
| 845 | write_cmd = 1; |
| 846 | } |
| 847 | |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 848 | timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */ |
| 849 | while ((REGREAD8(ICH9_REG_SSFS) & SSFS_SCIP) && --timeout) { |
| 850 | programmer_delay(10); |
| 851 | } |
| 852 | if (!timeout) { |
| 853 | msg_perr("Error: SCIP never cleared!\n"); |
| 854 | return 1; |
| 855 | } |
| 856 | |
Stefan Tauner | 10b3e22 | 2011-07-01 00:39:23 +0000 | [diff] [blame] | 857 | /* Program offset in flash into FADDR while preserve the reserved bits |
| 858 | * and clearing the 25. address bit which is only useable in hwseq. */ |
| 859 | temp32 = REGREAD32(ICH9_REG_FADDR) & ~0x01FFFFFF; |
| 860 | REGWRITE32(ICH9_REG_FADDR, (offset & 0x00FFFFFF) | temp32); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 861 | |
| 862 | /* Program data into FDATA0 to N */ |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 863 | if (write_cmd && (datalength != 0)) |
| 864 | ich_fill_data(data, datalength, ICH9_REG_FDATA0); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 865 | |
| 866 | /* Assemble SSFS + SSFC */ |
Helge Wagner | a319be1 | 2010-08-11 21:06:10 +0000 | [diff] [blame] | 867 | temp32 = REGREAD32(ICH9_REG_SSFS); |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 868 | /* Keep reserved bits only */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 869 | temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK; |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 870 | /* Clear cycle done and cycle error status registers */ |
| 871 | temp32 |= (SSFS_FDONE | SSFS_FCERR); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 872 | REGWRITE32(ICH9_REG_SSFS, temp32); |
| 873 | |
Uwe Hermann | 4e3d0b3 | 2010-03-25 23:18:41 +0000 | [diff] [blame] | 874 | /* Use 20 MHz */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 875 | temp32 |= SSFC_SCF_20MHZ; |
| 876 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 877 | /* Set data byte count (DBC) and data cycle bit (DS) */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 878 | if (datalength != 0) { |
| 879 | uint32_t datatemp; |
| 880 | temp32 |= SSFC_DS; |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 881 | datatemp = ((((uint32_t)datalength - 1) << SSFC_DBC_OFF) & |
| 882 | SSFC_DBC); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 883 | temp32 |= datatemp; |
| 884 | } |
| 885 | |
| 886 | /* Select opcode */ |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 887 | opmenu = REGREAD32(ICH9_REG_OPMENU); |
| 888 | opmenu |= ((uint64_t)REGREAD32(ICH9_REG_OPMENU + 4)) << 32; |
| 889 | |
Uwe Hermann | 7b2969b | 2009-04-15 10:52:49 +0000 | [diff] [blame] | 890 | for (opcode_index = 0; opcode_index < 8; opcode_index++) { |
| 891 | if ((opmenu & 0xff) == op.opcode) { |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 892 | break; |
| 893 | } |
| 894 | opmenu >>= 8; |
| 895 | } |
| 896 | if (opcode_index == 8) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 897 | msg_pdbg("Opcode %x not found.\n", op.opcode); |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 898 | return 1; |
| 899 | } |
| 900 | temp32 |= ((uint32_t) (opcode_index & 0x07)) << (8 + 4); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 901 | |
Michael Karcher | 136125a | 2011-04-29 22:11:36 +0000 | [diff] [blame] | 902 | timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */ |
| 903 | /* Handle Atomic. Atomic commands include three steps: |
| 904 | - sending the preop (mainly EWSR or WREN) |
| 905 | - sending the main command |
| 906 | - waiting for the busy bit (WIP) to be cleared |
| 907 | This means the timeout must be sufficient for chip erase |
| 908 | of slow high-capacity chips. |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 909 | */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 910 | switch (op.atomic) { |
| 911 | case 2: |
| 912 | /* Select second preop. */ |
| 913 | temp32 |= SSFC_SPOP; |
| 914 | /* And fall through. */ |
| 915 | case 1: |
| 916 | /* Atomic command (preop+op) */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 917 | temp32 |= SSFC_ACS; |
Michael Karcher | 136125a | 2011-04-29 22:11:36 +0000 | [diff] [blame] | 918 | timeout = 100 * 1000 * 60; /* 60 seconds */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 919 | break; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 920 | } |
| 921 | |
| 922 | /* Start */ |
| 923 | temp32 |= SSFC_SCGO; |
| 924 | |
| 925 | /* write it */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 926 | REGWRITE32(ICH9_REG_SSFS, temp32); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 927 | |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 928 | /* Wait for Cycle Done Status or Flash Cycle Error. */ |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 929 | while (((REGREAD32(ICH9_REG_SSFS) & (SSFS_FDONE | SSFS_FCERR)) == 0) && |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 930 | --timeout) { |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 931 | programmer_delay(10); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 932 | } |
| 933 | if (!timeout) { |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 934 | msg_perr("timeout, ICH9_REG_SSFS=0x%08x\n", |
| 935 | REGREAD32(ICH9_REG_SSFS)); |
| 936 | return 1; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 937 | } |
| 938 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 939 | /* FIXME make sure we do not needlessly cause transaction errors. */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 940 | temp32 = REGREAD32(ICH9_REG_SSFS); |
| 941 | if (temp32 & SSFS_FCERR) { |
Stefan Tauner | 8ed2934 | 2011-04-29 23:53:09 +0000 | [diff] [blame] | 942 | msg_perr("Transaction error!\n"); |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 943 | prettyprint_ich9_reg_ssfs(temp32); |
| 944 | prettyprint_ich9_reg_ssfc(temp32); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 945 | /* keep reserved bits */ |
| 946 | temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK; |
| 947 | /* Clear the transaction error. */ |
| 948 | REGWRITE32(ICH9_REG_SSFS, temp32 | SSFS_FCERR); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 949 | return 1; |
| 950 | } |
| 951 | |
Stefan Tauner | 8b391b8 | 2011-08-09 01:49:34 +0000 | [diff] [blame] | 952 | if ((!write_cmd) && (datalength != 0)) |
| 953 | ich_read_data(data, datalength, ICH9_REG_FDATA0); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 954 | |
| 955 | return 0; |
| 956 | } |
| 957 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 958 | static int run_opcode(const struct flashctx *flash, OPCODE op, uint32_t offset, |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 959 | uint8_t datalength, uint8_t * data) |
| 960 | { |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 961 | /* max_data_read == max_data_write for all Intel/VIA SPI masters */ |
Carl-Daniel Hailfinger | c40cff7 | 2011-12-20 00:19:29 +0000 | [diff] [blame] | 962 | uint8_t maxlength = flash->pgm->spi.max_data_read; |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 963 | |
Carl-Daniel Hailfinger | c40cff7 | 2011-12-20 00:19:29 +0000 | [diff] [blame] | 964 | if (ich_generation == CHIPSET_ICH_UNKNOWN) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 965 | msg_perr("%s: unsupported chipset\n", __func__); |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 966 | return -1; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 967 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 968 | |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 969 | if (datalength > maxlength) { |
| 970 | msg_perr("%s: Internal command size error for " |
| 971 | "opcode 0x%02x, got datalength=%i, want <=%i\n", |
| 972 | __func__, op.opcode, datalength, maxlength); |
| 973 | return SPI_INVALID_LENGTH; |
| 974 | } |
| 975 | |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 976 | switch (ich_generation) { |
| 977 | case CHIPSET_ICH7: |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 978 | return ich7_run_opcode(op, offset, datalength, data, maxlength); |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 979 | case CHIPSET_ICH8: |
| 980 | default: /* Future version might behave the same */ |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 981 | return ich9_run_opcode(op, offset, datalength, data); |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 982 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 983 | } |
| 984 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 985 | static int ich_spi_send_command(struct flashctx *flash, unsigned int writecnt, |
| 986 | unsigned int readcnt, |
| 987 | const unsigned char *writearr, |
| 988 | unsigned char *readarr) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 989 | { |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 990 | int result; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 991 | int opcode_index = -1; |
| 992 | const unsigned char cmd = *writearr; |
| 993 | OPCODE *opcode; |
| 994 | uint32_t addr = 0; |
| 995 | uint8_t *data; |
| 996 | int count; |
| 997 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 998 | /* find cmd in opcodes-table */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 999 | opcode_index = find_opcode(curopcodes, cmd); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1000 | if (opcode_index == -1) { |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 1001 | if (!ichspi_lock) |
| 1002 | opcode_index = reprogram_opcode_on_the_fly(cmd, writecnt, readcnt); |
Stefan Tauner | dc704ed | 2012-05-06 15:11:26 +0000 | [diff] [blame] | 1003 | if (opcode_index == SPI_INVALID_LENGTH) { |
| 1004 | msg_pdbg("OPCODE 0x%02x has unsupported length, will not execute.\n", cmd); |
| 1005 | return SPI_INVALID_LENGTH; |
| 1006 | } else if (opcode_index == -1) { |
Stefan Tauner | 355cbfd | 2011-05-28 02:37:14 +0000 | [diff] [blame] | 1007 | msg_pdbg("Invalid OPCODE 0x%02x, will not execute.\n", |
| 1008 | cmd); |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 1009 | return SPI_INVALID_OPCODE; |
| 1010 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1011 | } |
| 1012 | |
| 1013 | opcode = &(curopcodes->opcode[opcode_index]); |
| 1014 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1015 | /* The following valid writecnt/readcnt combinations exist: |
| 1016 | * writecnt = 4, readcnt >= 0 |
| 1017 | * writecnt = 1, readcnt >= 0 |
| 1018 | * writecnt >= 4, readcnt = 0 |
| 1019 | * writecnt >= 1, readcnt = 0 |
| 1020 | * writecnt >= 1 is guaranteed for all commands. |
| 1021 | */ |
| 1022 | if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS) && |
| 1023 | (writecnt != 4)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1024 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1025 | "0x%02x, got writecnt=%i, want =4\n", __func__, cmd, |
| 1026 | writecnt); |
| 1027 | return SPI_INVALID_LENGTH; |
| 1028 | } |
| 1029 | if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_NO_ADDRESS) && |
| 1030 | (writecnt != 1)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1031 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1032 | "0x%02x, got writecnt=%i, want =1\n", __func__, cmd, |
| 1033 | writecnt); |
| 1034 | return SPI_INVALID_LENGTH; |
| 1035 | } |
| 1036 | if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) && |
| 1037 | (writecnt < 4)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1038 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1039 | "0x%02x, got writecnt=%i, want >=4\n", __func__, cmd, |
| 1040 | writecnt); |
| 1041 | return SPI_INVALID_LENGTH; |
| 1042 | } |
| 1043 | if (((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) || |
| 1044 | (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) && |
| 1045 | (readcnt)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1046 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1047 | "0x%02x, got readcnt=%i, want =0\n", __func__, cmd, |
| 1048 | readcnt); |
| 1049 | return SPI_INVALID_LENGTH; |
| 1050 | } |
| 1051 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1052 | /* if opcode-type requires an address */ |
| 1053 | if (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS || |
| 1054 | opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) { |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 1055 | addr = (writearr[1] << 16) | |
| 1056 | (writearr[2] << 8) | (writearr[3] << 0); |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1057 | if (addr < ichspi_bbar) { |
| 1058 | msg_perr("%s: Address 0x%06x below allowed " |
| 1059 | "range 0x%06x-0xffffff\n", __func__, |
| 1060 | addr, ichspi_bbar); |
| 1061 | return SPI_INVALID_ADDRESS; |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 1062 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1063 | } |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 1064 | |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 1065 | /* Translate read/write array/count. |
| 1066 | * The maximum data length is identical for the maximum read length and |
| 1067 | * for the maximum write length excluding opcode and address. Opcode and |
| 1068 | * address are stored in separate registers, not in the data registers |
| 1069 | * and are thus not counted towards data length. The only exception |
| 1070 | * applies if the opcode definition (un)intentionally classifies said |
| 1071 | * opcode incorrectly as non-address opcode or vice versa. */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1072 | if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) { |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 1073 | data = (uint8_t *) (writearr + 1); |
| 1074 | count = writecnt - 1; |
| 1075 | } else if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) { |
| 1076 | data = (uint8_t *) (writearr + 4); |
| 1077 | count = writecnt - 4; |
| 1078 | } else { |
| 1079 | data = (uint8_t *) readarr; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1080 | count = readcnt; |
| 1081 | } |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 1082 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 1083 | result = run_opcode(flash, *opcode, addr, count, data); |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 1084 | if (result) { |
Stefan Tauner | 8ed2934 | 2011-04-29 23:53:09 +0000 | [diff] [blame] | 1085 | msg_pdbg("Running OPCODE 0x%02x failed ", opcode->opcode); |
| 1086 | if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) || |
| 1087 | (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS)) { |
| 1088 | msg_pdbg("at address 0x%06x ", addr); |
| 1089 | } |
| 1090 | msg_pdbg("(payload length was %d).\n", count); |
| 1091 | |
| 1092 | /* Print out the data array if it contains data to write. |
| 1093 | * Errors are detected before the received data is read back into |
| 1094 | * the array so it won't make sense to print it then. */ |
| 1095 | if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) || |
| 1096 | (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) { |
| 1097 | int i; |
| 1098 | msg_pspew("The data was:\n"); |
Stefan Tauner | f382e35 | 2011-11-08 11:55:24 +0000 | [diff] [blame] | 1099 | for (i = 0; i < count; i++){ |
Stefan Tauner | 8ed2934 | 2011-04-29 23:53:09 +0000 | [diff] [blame] | 1100 | msg_pspew("%3d: 0x%02x\n", i, data[i]); |
| 1101 | } |
| 1102 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1103 | } |
| 1104 | |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 1105 | return result; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1106 | } |
Carl-Daniel Hailfinger | 02487aa | 2009-07-22 15:36:50 +0000 | [diff] [blame] | 1107 | |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1108 | static struct hwseq_data { |
| 1109 | uint32_t size_comp0; |
| 1110 | uint32_t size_comp1; |
| 1111 | } hwseq_data; |
| 1112 | |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1113 | /* Sets FLA in FADDR to (addr & 0x01FFFFFF) without touching other bits. */ |
| 1114 | static void ich_hwseq_set_addr(uint32_t addr) |
| 1115 | { |
| 1116 | uint32_t addr_old = REGREAD32(ICH9_REG_FADDR) & ~0x01FFFFFF; |
| 1117 | REGWRITE32(ICH9_REG_FADDR, (addr & 0x01FFFFFF) | addr_old); |
| 1118 | } |
| 1119 | |
| 1120 | /* Sets FADDR.FLA to 'addr' and returns the erase block size in bytes |
| 1121 | * of the block containing this address. May return nonsense if the address is |
| 1122 | * not valid. The erase block size for a specific address depends on the flash |
| 1123 | * partition layout as specified by FPB and the partition properties as defined |
| 1124 | * by UVSCC and LVSCC respectively. An alternative to implement this method |
| 1125 | * would be by querying FPB and the respective VSCC register directly. |
| 1126 | */ |
| 1127 | static uint32_t ich_hwseq_get_erase_block_size(unsigned int addr) |
| 1128 | { |
| 1129 | uint8_t enc_berase; |
Stefan Tauner | 67d163d | 2013-01-15 17:37:48 +0000 | [diff] [blame] | 1130 | static const uint32_t dec_berase[4] = { |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1131 | 256, |
| 1132 | 4 * 1024, |
| 1133 | 8 * 1024, |
| 1134 | 64 * 1024 |
| 1135 | }; |
| 1136 | |
| 1137 | ich_hwseq_set_addr(addr); |
| 1138 | enc_berase = (REGREAD16(ICH9_REG_HSFS) & HSFS_BERASE) >> |
| 1139 | HSFS_BERASE_OFF; |
| 1140 | return dec_berase[enc_berase]; |
| 1141 | } |
| 1142 | |
| 1143 | /* Polls for Cycle Done Status, Flash Cycle Error or timeout in 8 us intervals. |
| 1144 | Resets all error flags in HSFS. |
| 1145 | Returns 0 if the cycle completes successfully without errors within |
| 1146 | timeout us, 1 on errors. */ |
| 1147 | static int ich_hwseq_wait_for_cycle_complete(unsigned int timeout, |
| 1148 | unsigned int len) |
| 1149 | { |
| 1150 | uint16_t hsfs; |
| 1151 | uint32_t addr; |
| 1152 | |
| 1153 | timeout /= 8; /* scale timeout duration to counter */ |
| 1154 | while ((((hsfs = REGREAD16(ICH9_REG_HSFS)) & |
| 1155 | (HSFS_FDONE | HSFS_FCERR)) == 0) && |
| 1156 | --timeout) { |
| 1157 | programmer_delay(8); |
| 1158 | } |
| 1159 | REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS)); |
| 1160 | if (!timeout) { |
| 1161 | addr = REGREAD32(ICH9_REG_FADDR) & 0x01FFFFFF; |
| 1162 | msg_perr("Timeout error between offset 0x%08x and " |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1163 | "0x%08x (= 0x%08x + %d)!\n", |
| 1164 | addr, addr + len - 1, addr, len - 1); |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1165 | prettyprint_ich9_reg_hsfs(hsfs); |
| 1166 | prettyprint_ich9_reg_hsfc(REGREAD16(ICH9_REG_HSFC)); |
| 1167 | return 1; |
| 1168 | } |
| 1169 | |
| 1170 | if (hsfs & HSFS_FCERR) { |
| 1171 | addr = REGREAD32(ICH9_REG_FADDR) & 0x01FFFFFF; |
| 1172 | msg_perr("Transaction error between offset 0x%08x and " |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1173 | "0x%08x (= 0x%08x + %d)!\n", |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1174 | addr, addr + len - 1, addr, len - 1); |
| 1175 | prettyprint_ich9_reg_hsfs(hsfs); |
| 1176 | prettyprint_ich9_reg_hsfc(REGREAD16(ICH9_REG_HSFC)); |
| 1177 | return 1; |
| 1178 | } |
| 1179 | return 0; |
| 1180 | } |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1181 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 1182 | static int ich_hwseq_probe(struct flashctx *flash) |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1183 | { |
| 1184 | uint32_t total_size, boundary; |
| 1185 | uint32_t erase_size_low, size_low, erase_size_high, size_high; |
| 1186 | struct block_eraser *eraser; |
| 1187 | |
| 1188 | total_size = hwseq_data.size_comp0 + hwseq_data.size_comp1; |
| 1189 | msg_cdbg("Found %d attached SPI flash chip", |
| 1190 | (hwseq_data.size_comp1 != 0) ? 2 : 1); |
| 1191 | if (hwseq_data.size_comp1 != 0) |
| 1192 | msg_cdbg("s with a combined"); |
| 1193 | else |
| 1194 | msg_cdbg(" with a"); |
| 1195 | msg_cdbg(" density of %d kB.\n", total_size / 1024); |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 1196 | flash->chip->total_size = total_size / 1024; |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1197 | |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 1198 | eraser = &(flash->chip->block_erasers[0]); |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1199 | boundary = (REGREAD32(ICH9_REG_FPB) & FPB_FPBA) << 12; |
| 1200 | size_high = total_size - boundary; |
| 1201 | erase_size_high = ich_hwseq_get_erase_block_size(boundary); |
| 1202 | |
| 1203 | if (boundary == 0) { |
| 1204 | msg_cdbg("There is only one partition containing the whole " |
| 1205 | "address space (0x%06x - 0x%06x).\n", 0, size_high-1); |
| 1206 | eraser->eraseblocks[0].size = erase_size_high; |
| 1207 | eraser->eraseblocks[0].count = size_high / erase_size_high; |
| 1208 | msg_cdbg("There are %d erase blocks with %d B each.\n", |
| 1209 | size_high / erase_size_high, erase_size_high); |
| 1210 | } else { |
| 1211 | msg_cdbg("The flash address space (0x%06x - 0x%06x) is divided " |
| 1212 | "at address 0x%06x in two partitions.\n", |
| 1213 | 0, size_high-1, boundary); |
| 1214 | size_low = total_size - size_high; |
| 1215 | erase_size_low = ich_hwseq_get_erase_block_size(0); |
| 1216 | |
| 1217 | eraser->eraseblocks[0].size = erase_size_low; |
| 1218 | eraser->eraseblocks[0].count = size_low / erase_size_low; |
| 1219 | msg_cdbg("The first partition ranges from 0x%06x to 0x%06x.\n", |
| 1220 | 0, size_low-1); |
| 1221 | msg_cdbg("In that range are %d erase blocks with %d B each.\n", |
| 1222 | size_low / erase_size_low, erase_size_low); |
| 1223 | |
| 1224 | eraser->eraseblocks[1].size = erase_size_high; |
| 1225 | eraser->eraseblocks[1].count = size_high / erase_size_high; |
| 1226 | msg_cdbg("The second partition ranges from 0x%06x to 0x%06x.\n", |
| 1227 | boundary, size_high-1); |
| 1228 | msg_cdbg("In that range are %d erase blocks with %d B each.\n", |
| 1229 | size_high / erase_size_high, erase_size_high); |
| 1230 | } |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 1231 | flash->chip->tested = TEST_OK_PREW; |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1232 | return 1; |
| 1233 | } |
| 1234 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 1235 | static int ich_hwseq_block_erase(struct flashctx *flash, unsigned int addr, |
| 1236 | unsigned int len) |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1237 | { |
| 1238 | uint32_t erase_block; |
| 1239 | uint16_t hsfc; |
| 1240 | uint32_t timeout = 5000 * 1000; /* 5 s for max 64 kB */ |
| 1241 | |
| 1242 | erase_block = ich_hwseq_get_erase_block_size(addr); |
| 1243 | if (len != erase_block) { |
| 1244 | msg_cerr("Erase block size for address 0x%06x is %d B, " |
| 1245 | "but requested erase block size is %d B. " |
| 1246 | "Not erasing anything.\n", addr, erase_block, len); |
| 1247 | return -1; |
| 1248 | } |
| 1249 | |
| 1250 | /* Although the hardware supports this (it would erase the whole block |
| 1251 | * containing the address) we play safe here. */ |
| 1252 | if (addr % erase_block != 0) { |
| 1253 | msg_cerr("Erase address 0x%06x is not aligned to the erase " |
| 1254 | "block boundary (any multiple of %d). " |
| 1255 | "Not erasing anything.\n", addr, erase_block); |
| 1256 | return -1; |
| 1257 | } |
| 1258 | |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 1259 | if (addr + len > flash->chip->total_size * 1024) { |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1260 | msg_perr("Request to erase some inaccessible memory address(es)" |
| 1261 | " (addr=0x%x, len=%d). " |
| 1262 | "Not erasing anything.\n", addr, len); |
| 1263 | return -1; |
| 1264 | } |
| 1265 | |
| 1266 | msg_pdbg("Erasing %d bytes starting at 0x%06x.\n", len, addr); |
| 1267 | |
| 1268 | /* make sure FDONE, FCERR, AEL are cleared by writing 1 to them */ |
| 1269 | REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS)); |
| 1270 | |
| 1271 | hsfc = REGREAD16(ICH9_REG_HSFC); |
| 1272 | hsfc &= ~HSFC_FCYCLE; /* clear operation */ |
| 1273 | hsfc |= (0x3 << HSFC_FCYCLE_OFF); /* set erase operation */ |
| 1274 | hsfc |= HSFC_FGO; /* start */ |
| 1275 | msg_pdbg("HSFC used for block erasing: "); |
| 1276 | prettyprint_ich9_reg_hsfc(hsfc); |
| 1277 | REGWRITE16(ICH9_REG_HSFC, hsfc); |
| 1278 | |
| 1279 | if (ich_hwseq_wait_for_cycle_complete(timeout, len)) |
| 1280 | return -1; |
| 1281 | return 0; |
| 1282 | } |
| 1283 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 1284 | static int ich_hwseq_read(struct flashctx *flash, uint8_t *buf, |
| 1285 | unsigned int addr, unsigned int len) |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1286 | { |
| 1287 | uint16_t hsfc; |
| 1288 | uint16_t timeout = 100 * 60; |
| 1289 | uint8_t block_len; |
| 1290 | |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 1291 | if (addr + len > flash->chip->total_size * 1024) { |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1292 | msg_perr("Request to read from an inaccessible memory address " |
| 1293 | "(addr=0x%x, len=%d).\n", addr, len); |
| 1294 | return -1; |
| 1295 | } |
| 1296 | |
| 1297 | msg_pdbg("Reading %d bytes starting at 0x%06x.\n", len, addr); |
| 1298 | /* clear FDONE, FCERR, AEL by writing 1 to them (if they are set) */ |
| 1299 | REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS)); |
| 1300 | |
| 1301 | while (len > 0) { |
Carl-Daniel Hailfinger | c40cff7 | 2011-12-20 00:19:29 +0000 | [diff] [blame] | 1302 | block_len = min(len, flash->pgm->opaque.max_data_read); |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1303 | ich_hwseq_set_addr(addr); |
| 1304 | hsfc = REGREAD16(ICH9_REG_HSFC); |
| 1305 | hsfc &= ~HSFC_FCYCLE; /* set read operation */ |
| 1306 | hsfc &= ~HSFC_FDBC; /* clear byte count */ |
| 1307 | /* set byte count */ |
| 1308 | hsfc |= (((block_len - 1) << HSFC_FDBC_OFF) & HSFC_FDBC); |
| 1309 | hsfc |= HSFC_FGO; /* start */ |
| 1310 | REGWRITE16(ICH9_REG_HSFC, hsfc); |
| 1311 | |
| 1312 | if (ich_hwseq_wait_for_cycle_complete(timeout, block_len)) |
| 1313 | return 1; |
| 1314 | ich_read_data(buf, block_len, ICH9_REG_FDATA0); |
| 1315 | addr += block_len; |
| 1316 | buf += block_len; |
| 1317 | len -= block_len; |
| 1318 | } |
| 1319 | return 0; |
| 1320 | } |
| 1321 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 1322 | static int ich_hwseq_write(struct flashctx *flash, uint8_t *buf, |
| 1323 | unsigned int addr, unsigned int len) |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1324 | { |
| 1325 | uint16_t hsfc; |
| 1326 | uint16_t timeout = 100 * 60; |
| 1327 | uint8_t block_len; |
| 1328 | |
Carl-Daniel Hailfinger | 5a7cb84 | 2012-08-25 01:17:58 +0000 | [diff] [blame] | 1329 | if (addr + len > flash->chip->total_size * 1024) { |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1330 | msg_perr("Request to write to an inaccessible memory address " |
| 1331 | "(addr=0x%x, len=%d).\n", addr, len); |
| 1332 | return -1; |
| 1333 | } |
| 1334 | |
| 1335 | msg_pdbg("Writing %d bytes starting at 0x%06x.\n", len, addr); |
| 1336 | /* clear FDONE, FCERR, AEL by writing 1 to them (if they are set) */ |
| 1337 | REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS)); |
| 1338 | |
| 1339 | while (len > 0) { |
| 1340 | ich_hwseq_set_addr(addr); |
Carl-Daniel Hailfinger | c40cff7 | 2011-12-20 00:19:29 +0000 | [diff] [blame] | 1341 | block_len = min(len, flash->pgm->opaque.max_data_write); |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1342 | ich_fill_data(buf, block_len, ICH9_REG_FDATA0); |
| 1343 | hsfc = REGREAD16(ICH9_REG_HSFC); |
| 1344 | hsfc &= ~HSFC_FCYCLE; /* clear operation */ |
| 1345 | hsfc |= (0x2 << HSFC_FCYCLE_OFF); /* set write operation */ |
| 1346 | hsfc &= ~HSFC_FDBC; /* clear byte count */ |
| 1347 | /* set byte count */ |
| 1348 | hsfc |= (((block_len - 1) << HSFC_FDBC_OFF) & HSFC_FDBC); |
| 1349 | hsfc |= HSFC_FGO; /* start */ |
| 1350 | REGWRITE16(ICH9_REG_HSFC, hsfc); |
| 1351 | |
| 1352 | if (ich_hwseq_wait_for_cycle_complete(timeout, block_len)) |
| 1353 | return -1; |
| 1354 | addr += block_len; |
| 1355 | buf += block_len; |
| 1356 | len -= block_len; |
| 1357 | } |
| 1358 | return 0; |
| 1359 | } |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1360 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 1361 | static int ich_spi_send_multicommand(struct flashctx *flash, |
| 1362 | struct spi_command *cmds) |
Carl-Daniel Hailfinger | 02487aa | 2009-07-22 15:36:50 +0000 | [diff] [blame] | 1363 | { |
| 1364 | int ret = 0; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1365 | int i; |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 1366 | int oppos, preoppos; |
| 1367 | for (; (cmds->writecnt || cmds->readcnt) && !ret; cmds++) { |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 1368 | if ((cmds + 1)->writecnt || (cmds + 1)->readcnt) { |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1369 | /* Next command is valid. */ |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 1370 | preoppos = find_preop(curopcodes, cmds->writearr[0]); |
| 1371 | oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]); |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1372 | if ((oppos == -1) && (preoppos != -1)) { |
| 1373 | /* Current command is listed as preopcode in |
| 1374 | * ICH struct OPCODES, but next command is not |
| 1375 | * listed as opcode in that struct. |
| 1376 | * Check for command sanity, then |
| 1377 | * try to reprogram the ICH opcode list. |
| 1378 | */ |
| 1379 | if (find_preop(curopcodes, |
| 1380 | (cmds + 1)->writearr[0]) != -1) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1381 | msg_perr("%s: Two subsequent " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1382 | "preopcodes 0x%02x and 0x%02x, " |
| 1383 | "ignoring the first.\n", |
| 1384 | __func__, cmds->writearr[0], |
| 1385 | (cmds + 1)->writearr[0]); |
| 1386 | continue; |
| 1387 | } |
| 1388 | /* If the chipset is locked down, we'll fail |
| 1389 | * during execution of the next command anyway. |
| 1390 | * No need to bother with fixups. |
| 1391 | */ |
| 1392 | if (!ichspi_lock) { |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 1393 | oppos = reprogram_opcode_on_the_fly((cmds + 1)->writearr[0], (cmds + 1)->writecnt, (cmds + 1)->readcnt); |
| 1394 | if (oppos == -1) |
| 1395 | continue; |
| 1396 | curopcodes->opcode[oppos].atomic = preoppos + 1; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1397 | continue; |
| 1398 | } |
| 1399 | } |
| 1400 | if ((oppos != -1) && (preoppos != -1)) { |
| 1401 | /* Current command is listed as preopcode in |
| 1402 | * ICH struct OPCODES and next command is listed |
| 1403 | * as opcode in that struct. Match them up. |
| 1404 | */ |
| 1405 | curopcodes->opcode[oppos].atomic = preoppos + 1; |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 1406 | continue; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1407 | } |
| 1408 | /* If none of the above if-statements about oppos or |
| 1409 | * preoppos matched, this is a normal opcode. |
| 1410 | */ |
| 1411 | } |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 1412 | ret = ich_spi_send_command(flash, cmds->writecnt, cmds->readcnt, |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 1413 | cmds->writearr, cmds->readarr); |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1414 | /* Reset the type of all opcodes to non-atomic. */ |
| 1415 | for (i = 0; i < 8; i++) |
| 1416 | curopcodes->opcode[i].atomic = 0; |
Carl-Daniel Hailfinger | 02487aa | 2009-07-22 15:36:50 +0000 | [diff] [blame] | 1417 | } |
| 1418 | return ret; |
| 1419 | } |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1420 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1421 | #define ICH_BMWAG(x) ((x >> 24) & 0xff) |
| 1422 | #define ICH_BMRAG(x) ((x >> 16) & 0xff) |
| 1423 | #define ICH_BRWA(x) ((x >> 8) & 0xff) |
| 1424 | #define ICH_BRRA(x) ((x >> 0) & 0xff) |
| 1425 | |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1426 | /* returns 0 if region is unused or r/w */ |
| 1427 | static int ich9_handle_frap(uint32_t frap, int i) |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1428 | { |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 1429 | static const char *const access_names[4] = { |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1430 | "locked", "read-only", "write-only", "read-write" |
| 1431 | }; |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 1432 | static const char *const region_names[5] = { |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1433 | "Flash Descriptor", "BIOS", "Management Engine", |
| 1434 | "Gigabit Ethernet", "Platform Data" |
| 1435 | }; |
| 1436 | uint32_t base, limit; |
| 1437 | int rwperms = (((ICH_BRWA(frap) >> i) & 1) << 1) | |
| 1438 | (((ICH_BRRA(frap) >> i) & 1) << 0); |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1439 | int offset = ICH9_REG_FREG0 + i * 4; |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1440 | uint32_t freg = mmio_readl(ich_spibar + offset); |
| 1441 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1442 | base = ICH_FREG_BASE(freg); |
| 1443 | limit = ICH_FREG_LIMIT(freg); |
Stefan Tauner | e3adea0 | 2012-08-27 15:12:36 +0000 | [diff] [blame] | 1444 | if (base > limit || (freg == 0 && i > 0)) { |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1445 | /* this FREG is disabled */ |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1446 | msg_pdbg2("0x%02X: 0x%08x FREG%i: %s region is unused.\n", |
| 1447 | offset, freg, i, region_names[i]); |
| 1448 | return 0; |
| 1449 | } |
| 1450 | msg_pdbg("0x%02X: 0x%08x ", offset, freg); |
| 1451 | if (rwperms == 0x3) { |
| 1452 | msg_pdbg("FREG%i: %s region (0x%08x-0x%08x) is %s.\n", i, |
| 1453 | region_names[i], base, (limit | 0x0fff), |
| 1454 | access_names[rwperms]); |
| 1455 | return 0; |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1456 | } |
| 1457 | |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 1458 | msg_pwarn("FREG%i: Warning: %s region (0x%08x-0x%08x) is %s.\n", i, |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1459 | region_names[i], base, (limit | 0x0fff), |
| 1460 | access_names[rwperms]); |
| 1461 | return 1; |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1462 | } |
| 1463 | |
Stefan Tauner | bf69aaa | 2011-09-17 21:21:48 +0000 | [diff] [blame] | 1464 | /* In contrast to FRAP and the master section of the descriptor the bits |
| 1465 | * in the PR registers have an inverted meaning. The bits in FRAP |
| 1466 | * indicate read and write access _grant_. Here they indicate read |
| 1467 | * and write _protection_ respectively. If both bits are 0 the address |
| 1468 | * bits are ignored. |
| 1469 | */ |
| 1470 | #define ICH_PR_PERMS(pr) (((~((pr) >> PR_RP_OFF) & 1) << 0) | \ |
| 1471 | ((~((pr) >> PR_WP_OFF) & 1) << 1)) |
| 1472 | |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1473 | /* returns 0 if range is unused (i.e. r/w) */ |
| 1474 | static int ich9_handle_pr(int i) |
Stefan Tauner | bf69aaa | 2011-09-17 21:21:48 +0000 | [diff] [blame] | 1475 | { |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1476 | static const char *const access_names[3] = { |
| 1477 | "locked", "read-only", "write-only" |
Stefan Tauner | bf69aaa | 2011-09-17 21:21:48 +0000 | [diff] [blame] | 1478 | }; |
| 1479 | uint8_t off = ICH9_REG_PR0 + (i * 4); |
| 1480 | uint32_t pr = mmio_readl(ich_spibar + off); |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1481 | unsigned int rwperms = ICH_PR_PERMS(pr); |
Stefan Tauner | bf69aaa | 2011-09-17 21:21:48 +0000 | [diff] [blame] | 1482 | |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1483 | if (rwperms == 0x3) { |
| 1484 | msg_pdbg2("0x%02X: 0x%08x (PR%u is unused)\n", off, pr, i); |
| 1485 | return 0; |
| 1486 | } |
| 1487 | |
| 1488 | msg_pdbg("0x%02X: 0x%08x ", off, pr); |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 1489 | msg_pwarn("PR%u: Warning: 0x%08x-0x%08x is %s.\n", i, ICH_FREG_BASE(pr), |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1490 | ICH_FREG_LIMIT(pr) | 0x0fff, access_names[rwperms]); |
| 1491 | return 1; |
Stefan Tauner | bf69aaa | 2011-09-17 21:21:48 +0000 | [diff] [blame] | 1492 | } |
| 1493 | |
Stefan Tauner | 75da80c | 2011-09-17 22:21:55 +0000 | [diff] [blame] | 1494 | /* Set/Clear the read and write protection enable bits of PR register @i |
| 1495 | * according to @read_prot and @write_prot. */ |
| 1496 | static void ich9_set_pr(int i, int read_prot, int write_prot) |
| 1497 | { |
| 1498 | void *addr = ich_spibar + ICH9_REG_PR0 + (i * 4); |
| 1499 | uint32_t old = mmio_readl(addr); |
| 1500 | uint32_t new; |
| 1501 | |
| 1502 | msg_gspew("PR%u is 0x%08x", i, old); |
| 1503 | new = old & ~((1 << PR_RP_OFF) | (1 << PR_WP_OFF)); |
| 1504 | if (read_prot) |
| 1505 | new |= (1 << PR_RP_OFF); |
| 1506 | if (write_prot) |
| 1507 | new |= (1 << PR_WP_OFF); |
| 1508 | if (old == new) { |
| 1509 | msg_gspew(" already.\n"); |
| 1510 | return; |
| 1511 | } |
| 1512 | msg_gspew(", trying to set it to 0x%08x ", new); |
| 1513 | rmmio_writel(new, addr); |
| 1514 | msg_gspew("resulted in 0x%08x.\n", mmio_readl(addr)); |
| 1515 | } |
| 1516 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1517 | static const struct spi_programmer spi_programmer_ich7 = { |
| 1518 | .type = SPI_CONTROLLER_ICH7, |
| 1519 | .max_data_read = 64, |
| 1520 | .max_data_write = 64, |
| 1521 | .command = ich_spi_send_command, |
| 1522 | .multicommand = ich_spi_send_multicommand, |
| 1523 | .read = default_spi_read, |
| 1524 | .write_256 = default_spi_write_256, |
Nico Huber | 7bca126 | 2012-06-15 22:28:12 +0000 | [diff] [blame] | 1525 | .write_aai = default_spi_write_aai, |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1526 | }; |
| 1527 | |
| 1528 | static const struct spi_programmer spi_programmer_ich9 = { |
| 1529 | .type = SPI_CONTROLLER_ICH9, |
| 1530 | .max_data_read = 64, |
| 1531 | .max_data_write = 64, |
| 1532 | .command = ich_spi_send_command, |
| 1533 | .multicommand = ich_spi_send_multicommand, |
| 1534 | .read = default_spi_read, |
| 1535 | .write_256 = default_spi_write_256, |
Nico Huber | 7bca126 | 2012-06-15 22:28:12 +0000 | [diff] [blame] | 1536 | .write_aai = default_spi_write_aai, |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1537 | }; |
| 1538 | |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1539 | static const struct opaque_programmer opaque_programmer_ich_hwseq = { |
| 1540 | .max_data_read = 64, |
| 1541 | .max_data_write = 64, |
| 1542 | .probe = ich_hwseq_probe, |
| 1543 | .read = ich_hwseq_read, |
| 1544 | .write = ich_hwseq_write, |
| 1545 | .erase = ich_hwseq_block_erase, |
| 1546 | }; |
| 1547 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1548 | int ich_init_spi(struct pci_dev *dev, uint32_t base, void *rcrb, |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1549 | enum ich_chipset ich_gen) |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1550 | { |
| 1551 | int i; |
| 1552 | uint8_t old, new; |
| 1553 | uint16_t spibar_offset, tmp2; |
| 1554 | uint32_t tmp; |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1555 | char *arg; |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1556 | int ich_spi_force = 0; |
| 1557 | int ich_spi_rw_restricted = 0; |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1558 | int desc_valid = 0; |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1559 | struct ich_descriptors desc = {{ 0 }}; |
| 1560 | enum ich_spi_mode { |
| 1561 | ich_auto, |
| 1562 | ich_hwseq, |
| 1563 | ich_swseq |
| 1564 | } ich_spi_mode = ich_auto; |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1565 | |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1566 | ich_generation = ich_gen; |
| 1567 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1568 | switch (ich_generation) { |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1569 | case CHIPSET_ICH_UNKNOWN: |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1570 | return ERROR_FATAL; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1571 | case CHIPSET_ICH7: |
| 1572 | case CHIPSET_ICH8: |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1573 | spibar_offset = 0x3020; |
| 1574 | break; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1575 | case CHIPSET_ICH9: |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1576 | default: /* Future version might behave the same */ |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1577 | spibar_offset = 0x3800; |
| 1578 | break; |
| 1579 | } |
| 1580 | |
| 1581 | /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */ |
| 1582 | msg_pdbg("SPIBAR = 0x%x + 0x%04x\n", base, spibar_offset); |
| 1583 | |
| 1584 | /* Assign Virtual Address */ |
| 1585 | ich_spibar = rcrb + spibar_offset; |
| 1586 | |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1587 | switch (ich_generation) { |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1588 | case CHIPSET_ICH7: |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1589 | msg_pdbg("0x00: 0x%04x (SPIS)\n", |
| 1590 | mmio_readw(ich_spibar + 0)); |
| 1591 | msg_pdbg("0x02: 0x%04x (SPIC)\n", |
| 1592 | mmio_readw(ich_spibar + 2)); |
| 1593 | msg_pdbg("0x04: 0x%08x (SPIA)\n", |
| 1594 | mmio_readl(ich_spibar + 4)); |
| 1595 | for (i = 0; i < 8; i++) { |
| 1596 | int offs; |
| 1597 | offs = 8 + (i * 8); |
| 1598 | msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs, |
| 1599 | mmio_readl(ich_spibar + offs), i); |
| 1600 | msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4, |
| 1601 | mmio_readl(ich_spibar + offs + 4), i); |
| 1602 | } |
| 1603 | ichspi_bbar = mmio_readl(ich_spibar + 0x50); |
| 1604 | msg_pdbg("0x50: 0x%08x (BBAR)\n", |
| 1605 | ichspi_bbar); |
| 1606 | msg_pdbg("0x54: 0x%04x (PREOP)\n", |
| 1607 | mmio_readw(ich_spibar + 0x54)); |
| 1608 | msg_pdbg("0x56: 0x%04x (OPTYPE)\n", |
| 1609 | mmio_readw(ich_spibar + 0x56)); |
| 1610 | msg_pdbg("0x58: 0x%08x (OPMENU)\n", |
| 1611 | mmio_readl(ich_spibar + 0x58)); |
| 1612 | msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n", |
| 1613 | mmio_readl(ich_spibar + 0x5c)); |
Stefan Tauner | 122dd12 | 2011-07-24 15:34:56 +0000 | [diff] [blame] | 1614 | for (i = 0; i < 3; i++) { |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1615 | int offs; |
| 1616 | offs = 0x60 + (i * 4); |
| 1617 | msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs, |
| 1618 | mmio_readl(ich_spibar + offs), i); |
| 1619 | } |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1620 | if (mmio_readw(ich_spibar) & (1 << 15)) { |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 1621 | msg_pwarn("WARNING: SPI Configuration Lockdown activated.\n"); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1622 | ichspi_lock = 1; |
| 1623 | } |
Stefan Tauner | 745f6bb | 2011-11-13 15:17:10 +0000 | [diff] [blame] | 1624 | ich_init_opcodes(); |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1625 | ich_set_bbar(0); |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1626 | register_spi_programmer(&spi_programmer_ich7); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1627 | break; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1628 | case CHIPSET_ICH8: |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1629 | default: /* Future version might behave the same */ |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1630 | arg = extract_programmer_param("ich_spi_mode"); |
| 1631 | if (arg && !strcmp(arg, "hwseq")) { |
| 1632 | ich_spi_mode = ich_hwseq; |
| 1633 | msg_pspew("user selected hwseq\n"); |
| 1634 | } else if (arg && !strcmp(arg, "swseq")) { |
| 1635 | ich_spi_mode = ich_swseq; |
| 1636 | msg_pspew("user selected swseq\n"); |
| 1637 | } else if (arg && !strcmp(arg, "auto")) { |
| 1638 | msg_pspew("user selected auto\n"); |
| 1639 | ich_spi_mode = ich_auto; |
| 1640 | } else if (arg && !strlen(arg)) { |
| 1641 | msg_perr("Missing argument for ich_spi_mode.\n"); |
| 1642 | free(arg); |
| 1643 | return ERROR_FATAL; |
| 1644 | } else if (arg) { |
| 1645 | msg_perr("Unknown argument for ich_spi_mode: %s\n", |
| 1646 | arg); |
| 1647 | free(arg); |
| 1648 | return ERROR_FATAL; |
| 1649 | } |
| 1650 | free(arg); |
| 1651 | |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1652 | arg = extract_programmer_param("ich_spi_force"); |
| 1653 | if (arg && !strcmp(arg, "yes")) { |
| 1654 | ich_spi_force = 1; |
| 1655 | msg_pspew("ich_spi_force enabled.\n"); |
| 1656 | } else if (arg && !strlen(arg)) { |
| 1657 | msg_perr("Missing argument for ich_spi_force.\n"); |
| 1658 | free(arg); |
| 1659 | return ERROR_FATAL; |
| 1660 | } else if (arg) { |
| 1661 | msg_perr("Unknown argument for ich_spi_force: \"%s\" " |
| 1662 | "(not \"yes\").\n", arg); |
| 1663 | free(arg); |
| 1664 | return ERROR_FATAL; |
| 1665 | } |
| 1666 | free(arg); |
| 1667 | |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1668 | tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFS); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1669 | msg_pdbg("0x04: 0x%04x (HSFS)\n", tmp2); |
Stefan Tauner | 5520694 | 2011-06-11 09:53:22 +0000 | [diff] [blame] | 1670 | prettyprint_ich9_reg_hsfs(tmp2); |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1671 | if (tmp2 & HSFS_FLOCKDN) { |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 1672 | msg_pwarn("Warning: SPI Configuration Lockdown activated.\n"); |
Stefan Tauner | 5520694 | 2011-06-11 09:53:22 +0000 | [diff] [blame] | 1673 | ichspi_lock = 1; |
| 1674 | } |
Stefan Tauner | 1e14639 | 2011-09-15 23:52:55 +0000 | [diff] [blame] | 1675 | if (tmp2 & HSFS_FDV) |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1676 | desc_valid = 1; |
| 1677 | if (!(tmp2 & HSFS_FDOPSS) && desc_valid) |
Stefan Tauner | d7d423b | 2012-10-20 09:13:16 +0000 | [diff] [blame] | 1678 | msg_pinfo("The Flash Descriptor Override Strap-Pin is set. Restrictions implied by\n" |
| 1679 | "the Master Section of the flash descriptor are NOT in effect. Please note\n" |
| 1680 | "that Protected Range (PR) restrictions still apply.\n"); |
Stefan Tauner | 745f6bb | 2011-11-13 15:17:10 +0000 | [diff] [blame] | 1681 | ich_init_opcodes(); |
Stefan Tauner | 5520694 | 2011-06-11 09:53:22 +0000 | [diff] [blame] | 1682 | |
Stefan Tauner | f382e35 | 2011-11-08 11:55:24 +0000 | [diff] [blame] | 1683 | if (desc_valid) { |
| 1684 | tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFC); |
| 1685 | msg_pdbg("0x06: 0x%04x (HSFC)\n", tmp2); |
| 1686 | prettyprint_ich9_reg_hsfc(tmp2); |
| 1687 | } |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1688 | |
Stefan Tauner | 5ffe65b | 2011-07-07 04:10:57 +0000 | [diff] [blame] | 1689 | tmp = mmio_readl(ich_spibar + ICH9_REG_FADDR); |
Stefan Tauner | eb58257 | 2012-09-21 12:52:50 +0000 | [diff] [blame] | 1690 | msg_pdbg2("0x08: 0x%08x (FADDR)\n", tmp); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1691 | |
Stefan Tauner | f382e35 | 2011-11-08 11:55:24 +0000 | [diff] [blame] | 1692 | if (desc_valid) { |
| 1693 | tmp = mmio_readl(ich_spibar + ICH9_REG_FRAP); |
| 1694 | msg_pdbg("0x50: 0x%08x (FRAP)\n", tmp); |
| 1695 | msg_pdbg("BMWAG 0x%02x, ", ICH_BMWAG(tmp)); |
| 1696 | msg_pdbg("BMRAG 0x%02x, ", ICH_BMRAG(tmp)); |
| 1697 | msg_pdbg("BRWA 0x%02x, ", ICH_BRWA(tmp)); |
| 1698 | msg_pdbg("BRRA 0x%02x\n", ICH_BRRA(tmp)); |
| 1699 | |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1700 | /* Handle FREGx and FRAP registers */ |
Stefan Tauner | f382e35 | 2011-11-08 11:55:24 +0000 | [diff] [blame] | 1701 | for (i = 0; i < 5; i++) |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1702 | ich_spi_rw_restricted |= ich9_handle_frap(tmp, i); |
Stefan Tauner | f382e35 | 2011-11-08 11:55:24 +0000 | [diff] [blame] | 1703 | } |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1704 | |
Stefan Tauner | eb58257 | 2012-09-21 12:52:50 +0000 | [diff] [blame] | 1705 | /* Handle PR registers */ |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1706 | for (i = 0; i < 5; i++) { |
| 1707 | /* if not locked down try to disable PR locks first */ |
| 1708 | if (!ichspi_lock) |
Stefan Tauner | 75da80c | 2011-09-17 22:21:55 +0000 | [diff] [blame] | 1709 | ich9_set_pr(i, 0, 0); |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1710 | ich_spi_rw_restricted |= ich9_handle_pr(i); |
| 1711 | } |
| 1712 | |
| 1713 | if (ich_spi_rw_restricted) { |
| 1714 | msg_pinfo("Please send a verbose log to " |
| 1715 | "flashrom@flashrom.org if this board is not " |
| 1716 | "listed on\n" |
| 1717 | "http://flashrom.org/Supported_hardware#Supported_mainboards " |
| 1718 | "yet.\n"); |
| 1719 | if (!ich_spi_force) |
| 1720 | programmer_may_write = 0; |
Stefan Tauner | d7d423b | 2012-10-20 09:13:16 +0000 | [diff] [blame] | 1721 | msg_pinfo("Writes have been disabled for safety reasons. You can enforce write\n" |
| 1722 | "support with the ich_spi_force programmer option, but you will most likely\n" |
| 1723 | "harm your hardware! If you force flashrom you will get no support if\n" |
| 1724 | "something breaks. On a few mainboards it is possible to enable write\n" |
| 1725 | "access by setting a jumper (see its documentation or the board itself).\n"); |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1726 | if (ich_spi_force) |
Stefan Tauner | d7d423b | 2012-10-20 09:13:16 +0000 | [diff] [blame] | 1727 | msg_pinfo("Continuing with write support because the user forced us to!\n"); |
Stefan Tauner | 5210e72 | 2012-02-16 01:13:00 +0000 | [diff] [blame] | 1728 | } |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 1729 | |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1730 | tmp = mmio_readl(ich_spibar + ICH9_REG_SSFS); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 1731 | msg_pdbg("0x90: 0x%02x (SSFS)\n", tmp & 0xff); |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 1732 | prettyprint_ich9_reg_ssfs(tmp); |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1733 | if (tmp & SSFS_FCERR) { |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 1734 | msg_pdbg("Clearing SSFS.FCERR\n"); |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1735 | mmio_writeb(SSFS_FCERR, ich_spibar + ICH9_REG_SSFS); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 1736 | } |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 1737 | msg_pdbg("0x91: 0x%06x (SSFC)\n", tmp >> 8); |
| 1738 | prettyprint_ich9_reg_ssfc(tmp); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 1739 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1740 | msg_pdbg("0x94: 0x%04x (PREOP)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1741 | mmio_readw(ich_spibar + ICH9_REG_PREOP)); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1742 | msg_pdbg("0x96: 0x%04x (OPTYPE)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1743 | mmio_readw(ich_spibar + ICH9_REG_OPTYPE)); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1744 | msg_pdbg("0x98: 0x%08x (OPMENU)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1745 | mmio_readl(ich_spibar + ICH9_REG_OPMENU)); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1746 | msg_pdbg("0x9C: 0x%08x (OPMENU+4)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1747 | mmio_readl(ich_spibar + ICH9_REG_OPMENU + 4)); |
Stefan Tauner | f382e35 | 2011-11-08 11:55:24 +0000 | [diff] [blame] | 1748 | if (ich_generation == CHIPSET_ICH8 && desc_valid) { |
Stefan Tauner | 1e14639 | 2011-09-15 23:52:55 +0000 | [diff] [blame] | 1749 | tmp = mmio_readl(ich_spibar + ICH8_REG_VSCC); |
| 1750 | msg_pdbg("0xC1: 0x%08x (VSCC)\n", tmp); |
| 1751 | msg_pdbg("VSCC: "); |
| 1752 | prettyprint_ich_reg_vscc(tmp, MSG_DEBUG); |
| 1753 | } else { |
| 1754 | ichspi_bbar = mmio_readl(ich_spibar + ICH9_REG_BBAR); |
| 1755 | msg_pdbg("0xA0: 0x%08x (BBAR)\n", |
| 1756 | ichspi_bbar); |
Stefan Tauner | bd649e4 | 2011-07-01 00:39:16 +0000 | [diff] [blame] | 1757 | |
Stefan Tauner | f382e35 | 2011-11-08 11:55:24 +0000 | [diff] [blame] | 1758 | if (desc_valid) { |
| 1759 | tmp = mmio_readl(ich_spibar + ICH9_REG_LVSCC); |
| 1760 | msg_pdbg("0xC4: 0x%08x (LVSCC)\n", tmp); |
| 1761 | msg_pdbg("LVSCC: "); |
| 1762 | prettyprint_ich_reg_vscc(tmp, MSG_DEBUG); |
Stefan Tauner | 1e14639 | 2011-09-15 23:52:55 +0000 | [diff] [blame] | 1763 | |
Stefan Tauner | f382e35 | 2011-11-08 11:55:24 +0000 | [diff] [blame] | 1764 | tmp = mmio_readl(ich_spibar + ICH9_REG_UVSCC); |
| 1765 | msg_pdbg("0xC8: 0x%08x (UVSCC)\n", tmp); |
| 1766 | msg_pdbg("UVSCC: "); |
| 1767 | prettyprint_ich_reg_vscc(tmp, MSG_DEBUG); |
Stefan Tauner | 1e14639 | 2011-09-15 23:52:55 +0000 | [diff] [blame] | 1768 | |
Stefan Tauner | f382e35 | 2011-11-08 11:55:24 +0000 | [diff] [blame] | 1769 | tmp = mmio_readl(ich_spibar + ICH9_REG_FPB); |
| 1770 | msg_pdbg("0xD0: 0x%08x (FPB)\n", tmp); |
| 1771 | } |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1772 | ich_set_bbar(0); |
Stefan Tauner | 1e14639 | 2011-09-15 23:52:55 +0000 | [diff] [blame] | 1773 | } |
| 1774 | |
| 1775 | msg_pdbg("\n"); |
Stefan Tauner | d0c5dc2 | 2011-10-20 12:57:14 +0000 | [diff] [blame] | 1776 | if (desc_valid) { |
Stefan Tauner | 1e14639 | 2011-09-15 23:52:55 +0000 | [diff] [blame] | 1777 | if (read_ich_descriptors_via_fdo(ich_spibar, &desc) == |
| 1778 | ICH_RET_OK) |
| 1779 | prettyprint_ich_descriptors(CHIPSET_ICH_UNKNOWN, |
| 1780 | &desc); |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1781 | /* If the descriptor is valid and indicates multiple |
| 1782 | * flash devices we need to use hwseq to be able to |
| 1783 | * access the second flash device. |
| 1784 | */ |
| 1785 | if (ich_spi_mode == ich_auto && desc.content.NC != 0) { |
| 1786 | msg_pinfo("Enabling hardware sequencing due to " |
| 1787 | "multiple flash chips detected.\n"); |
| 1788 | ich_spi_mode = ich_hwseq; |
| 1789 | } |
Stefan Tauner | 1e14639 | 2011-09-15 23:52:55 +0000 | [diff] [blame] | 1790 | } |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 1791 | |
| 1792 | if (ich_spi_mode == ich_auto && ichspi_lock && |
| 1793 | ich_missing_opcodes()) { |
| 1794 | msg_pinfo("Enabling hardware sequencing because " |
| 1795 | "some important opcode is locked.\n"); |
| 1796 | ich_spi_mode = ich_hwseq; |
| 1797 | } |
| 1798 | |
| 1799 | if (ich_spi_mode == ich_hwseq) { |
| 1800 | if (!desc_valid) { |
| 1801 | msg_perr("Hardware sequencing was requested " |
| 1802 | "but the flash descriptor is not " |
| 1803 | "valid. Aborting.\n"); |
| 1804 | return ERROR_FATAL; |
| 1805 | } |
| 1806 | hwseq_data.size_comp0 = getFCBA_component_density(&desc, 0); |
| 1807 | hwseq_data.size_comp1 = getFCBA_component_density(&desc, 1); |
| 1808 | register_opaque_programmer(&opaque_programmer_ich_hwseq); |
| 1809 | } else { |
| 1810 | register_spi_programmer(&spi_programmer_ich9); |
| 1811 | } |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1812 | break; |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1813 | } |
| 1814 | |
| 1815 | old = pci_read_byte(dev, 0xdc); |
| 1816 | msg_pdbg("SPI Read Configuration: "); |
| 1817 | new = (old >> 2) & 0x3; |
| 1818 | switch (new) { |
| 1819 | case 0: |
| 1820 | case 1: |
| 1821 | case 2: |
| 1822 | msg_pdbg("prefetching %sabled, caching %sabled, ", |
| 1823 | (new & 0x2) ? "en" : "dis", |
| 1824 | (new & 0x1) ? "dis" : "en"); |
| 1825 | break; |
| 1826 | default: |
| 1827 | msg_pdbg("invalid prefetching/caching settings, "); |
| 1828 | break; |
| 1829 | } |
| 1830 | return 0; |
| 1831 | } |
| 1832 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1833 | static const struct spi_programmer spi_programmer_via = { |
| 1834 | .type = SPI_CONTROLLER_VIA, |
| 1835 | .max_data_read = 16, |
| 1836 | .max_data_write = 16, |
| 1837 | .command = ich_spi_send_command, |
| 1838 | .multicommand = ich_spi_send_multicommand, |
| 1839 | .read = default_spi_read, |
| 1840 | .write_256 = default_spi_write_256, |
Nico Huber | 7bca126 | 2012-06-15 22:28:12 +0000 | [diff] [blame] | 1841 | .write_aai = default_spi_write_aai, |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1842 | }; |
| 1843 | |
Helge Wagner | dd73d83 | 2012-08-24 23:03:46 +0000 | [diff] [blame] | 1844 | int via_init_spi(struct pci_dev *dev, uint32_t mmio_base) |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1845 | { |
Carl-Daniel Hailfinger | 841d631 | 2010-11-24 23:37:22 +0000 | [diff] [blame] | 1846 | int i; |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1847 | |
Helge Wagner | dd73d83 | 2012-08-24 23:03:46 +0000 | [diff] [blame] | 1848 | ich_spibar = physmap("VIA SPI MMIO registers", mmio_base, 0x70); |
| 1849 | /* Do we really need no write enable? Like the LPC one at D17F0 0x40 */ |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1850 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1851 | /* Not sure if it speaks all these bus protocols. */ |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 1852 | internal_buses_supported = BUS_LPC | BUS_FWH; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1853 | ich_generation = CHIPSET_ICH7; |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1854 | register_spi_programmer(&spi_programmer_via); |
Carl-Daniel Hailfinger | 841d631 | 2010-11-24 23:37:22 +0000 | [diff] [blame] | 1855 | |
| 1856 | msg_pdbg("0x00: 0x%04x (SPIS)\n", mmio_readw(ich_spibar + 0)); |
| 1857 | msg_pdbg("0x02: 0x%04x (SPIC)\n", mmio_readw(ich_spibar + 2)); |
| 1858 | msg_pdbg("0x04: 0x%08x (SPIA)\n", mmio_readl(ich_spibar + 4)); |
| 1859 | for (i = 0; i < 2; i++) { |
| 1860 | int offs; |
| 1861 | offs = 8 + (i * 8); |
| 1862 | msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs, |
| 1863 | mmio_readl(ich_spibar + offs), i); |
| 1864 | msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4, |
| 1865 | mmio_readl(ich_spibar + offs + 4), i); |
| 1866 | } |
| 1867 | ichspi_bbar = mmio_readl(ich_spibar + 0x50); |
| 1868 | msg_pdbg("0x50: 0x%08x (BBAR)\n", ichspi_bbar); |
| 1869 | msg_pdbg("0x54: 0x%04x (PREOP)\n", mmio_readw(ich_spibar + 0x54)); |
| 1870 | msg_pdbg("0x56: 0x%04x (OPTYPE)\n", mmio_readw(ich_spibar + 0x56)); |
| 1871 | msg_pdbg("0x58: 0x%08x (OPMENU)\n", mmio_readl(ich_spibar + 0x58)); |
| 1872 | msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n", mmio_readl(ich_spibar + 0x5c)); |
| 1873 | for (i = 0; i < 3; i++) { |
| 1874 | int offs; |
| 1875 | offs = 0x60 + (i * 4); |
| 1876 | msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs, |
| 1877 | mmio_readl(ich_spibar + offs), i); |
| 1878 | } |
| 1879 | msg_pdbg("0x6c: 0x%04x (CLOCK/DEBUG)\n", |
| 1880 | mmio_readw(ich_spibar + 0x6c)); |
| 1881 | if (mmio_readw(ich_spibar) & (1 << 15)) { |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 1882 | msg_pwarn("Warning: SPI Configuration Lockdown activated.\n"); |
Carl-Daniel Hailfinger | 841d631 | 2010-11-24 23:37:22 +0000 | [diff] [blame] | 1883 | ichspi_lock = 1; |
| 1884 | } |
| 1885 | |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 1886 | ich_set_bbar(0); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1887 | ich_init_opcodes(); |
| 1888 | |
| 1889 | return 0; |
| 1890 | } |
| 1891 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1892 | #endif |