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