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