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 |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * This module is designed for supporting the devices |
| 27 | * ST M25P40 |
| 28 | * ST M25P80 |
| 29 | * ST M25P16 |
| 30 | * ST M25P32 already tested |
| 31 | * ST M25P64 |
| 32 | * AT 25DF321 already tested |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 33 | * ... and many more SPI flash devices |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 34 | * |
| 35 | */ |
| 36 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 37 | #if defined(__i386__) || defined(__x86_64__) |
| 38 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 39 | #include <string.h> |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 40 | #include "flash.h" |
Sean Nelson | 14ba668 | 2010-02-26 05:48:29 +0000 | [diff] [blame] | 41 | #include "chipdrivers.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 42 | #include "programmer.h" |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 43 | #include "spi.h" |
| 44 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 45 | /* ICH9 controller register definition */ |
Stefan Tauner | 5520694 | 2011-06-11 09:53:22 +0000 | [diff] [blame] | 46 | #define ICH9_REG_HSFS 0x04 /* 16 Bits Hardware Sequencing Flash Status */ |
| 47 | #define HSFS_FDONE_OFF 0 /* 0: Flash Cycle Done */ |
| 48 | #define HSFS_FDONE (0x1 << HSFS_FDONE_OFF) |
| 49 | #define HSFS_FCERR_OFF 1 /* 1: Flash Cycle Error */ |
| 50 | #define HSFS_FCERR (0x1 << HSFS_FCERR_OFF) |
| 51 | #define HSFS_AEL_OFF 2 /* 2: Access Error Log */ |
| 52 | #define HSFS_AEL (0x1 << HSFS_AEL_OFF) |
| 53 | #define HSFS_BERASE_OFF 3 /* 3-4: Block/Sector Erase Size */ |
| 54 | #define HSFS_BERASE (0x3 << HSFS_BERASE_OFF) |
| 55 | #define HSFS_SCIP_OFF 5 /* 5: SPI Cycle In Progress */ |
| 56 | #define HSFS_SCIP (0x1 << HSFS_SCIP_OFF) |
| 57 | /* 6-12: reserved */ |
| 58 | #define HSFS_FDOPSS_OFF 13 /* 13: Flash Descriptor Override Pin-Strap Status */ |
| 59 | #define HSFS_FDOPSS (0x1 << HSFS_FDOPSS_OFF) |
| 60 | #define HSFS_FDV_OFF 14 /* 14: Flash Descriptor Valid */ |
| 61 | #define HSFS_FDV (0x1 << HSFS_FDV_OFF) |
| 62 | #define HSFS_FLOCKDN_OFF 15 /* 15: Flash Configuration Lock-Down */ |
| 63 | #define HSFS_FLOCKDN (0x1 << HSFS_FLOCKDN_OFF) |
| 64 | |
| 65 | #define ICH9_REG_HSFC 0x06 /* 16 Bits Hardware Sequencing Flash Control */ |
| 66 | #define HSFC_FGO_OFF 0 /* 0: Flash Cycle Go */ |
| 67 | #define HSFC_FGO (0x1 << HSFC_FGO_OFF) |
| 68 | #define HSFC_FCYCLE_OFF 1 /* 1-2: FLASH Cycle */ |
| 69 | #define HSFC_FCYCLE (0x3 << HSFC_FCYCLE_OFF) |
| 70 | /* 3-7: reserved */ |
| 71 | #define HSFC_FDBC_OFF 8 /* 8-13: Flash Data Byte Count */ |
| 72 | #define HSFC_FDBC (0x3f << HSFC_FDBC_OFF) |
| 73 | /* 14: reserved */ |
| 74 | #define HSFC_SME_OFF 15 /* 15: SPI SMI# Enable */ |
| 75 | #define HSFC_SME (0x1 << HSFC_SME_OFF) |
| 76 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 77 | #define ICH9_REG_FADDR 0x08 /* 32 Bits */ |
| 78 | #define ICH9_REG_FDATA0 0x10 /* 64 Bytes */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 79 | |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 80 | #define ICH9_REG_FRAP 0x50 /* 32 Bytes Flash Region Access Permissions */ |
| 81 | #define ICH9_REG_FREG0 0x54 /* 32 Bytes Flash Region 0 */ |
| 82 | |
| 83 | #define ICH9_REG_PR0 0x74 /* 32 Bytes Protected Range 0 */ |
| 84 | #define ICH9_REG_PR1 0x78 /* 32 Bytes Protected Range 1 */ |
| 85 | #define ICH9_REG_PR2 0x7c /* 32 Bytes Protected Range 2 */ |
| 86 | #define ICH9_REG_PR3 0x80 /* 32 Bytes Protected Range 3 */ |
| 87 | #define ICH9_REG_PR4 0x84 /* 32 Bytes Protected Range 4 */ |
| 88 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 89 | #define ICH9_REG_SSFS 0x90 /* 08 Bits */ |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 90 | #define SSFS_SCIP_OFF 0 /* SPI Cycle In Progress */ |
| 91 | #define SSFS_SCIP (0x1 << SSFS_SCIP_OFF) |
| 92 | #define SSFS_FDONE_OFF 2 /* Cycle Done Status */ |
| 93 | #define SSFS_FDONE (0x1 << SSFS_FDONE_OFF) |
| 94 | #define SSFS_FCERR_OFF 3 /* Flash Cycle Error */ |
| 95 | #define SSFS_FCERR (0x1 << SSFS_FCERR_OFF) |
| 96 | #define SSFS_AEL_OFF 4 /* Access Error Log */ |
| 97 | #define SSFS_AEL (0x1 << SSFS_AEL_OFF) |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 98 | /* The following bits are reserved in SSFS: 1,5-7. */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 99 | #define SSFS_RESERVED_MASK 0x000000e2 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 100 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 101 | #define ICH9_REG_SSFC 0x91 /* 24 Bits */ |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 102 | /* We combine SSFS and SSFC to one 32-bit word, |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 103 | * therefore SSFC bits are off by 8. */ |
| 104 | /* 0: reserved */ |
| 105 | #define SSFC_SCGO_OFF (1 + 8) /* 1: SPI Cycle Go */ |
| 106 | #define SSFC_SCGO (0x1 << SSFC_SCGO_OFF) |
| 107 | #define SSFC_ACS_OFF (2 + 8) /* 2: Atomic Cycle Sequence */ |
| 108 | #define SSFC_ACS (0x1 << SSFC_ACS_OFF) |
| 109 | #define SSFC_SPOP_OFF (3 + 8) /* 3: Sequence Prefix Opcode Pointer */ |
| 110 | #define SSFC_SPOP (0x1 << SSFC_SPOP_OFF) |
| 111 | #define SSFC_COP_OFF (4 + 8) /* 4-6: Cycle Opcode Pointer */ |
| 112 | #define SSFC_COP (0x7 << SSFC_COP_OFF) |
| 113 | /* 7: reserved */ |
| 114 | #define SSFC_DBC_OFF (8 + 8) /* 8-13: Data Byte Count */ |
| 115 | #define SSFC_DBC (0x3f << SSFC_DBC_OFF) |
| 116 | #define SSFC_DS_OFF (14 + 8) /* 14: Data Cycle */ |
| 117 | #define SSFC_DS (0x1 << SSFC_DS_OFF) |
| 118 | #define SSFC_SME_OFF (15 + 8) /* 15: SPI SMI# Enable */ |
| 119 | #define SSFC_SME (0x1 << SSFC_SME_OFF) |
| 120 | #define SSFC_SCF_OFF (16 + 8) /* 16-18: SPI Cycle Frequency */ |
| 121 | #define SSFC_SCF (0x7 << SSFC_SCF_OFF) |
| 122 | #define SSFC_SCF_20MHZ 0x00000000 |
| 123 | #define SSFC_SCF_33MHZ 0x01000000 |
| 124 | /* 19-23: reserved */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 125 | #define SSFC_RESERVED_MASK 0xf8008100 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 126 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 127 | #define ICH9_REG_PREOP 0x94 /* 16 Bits */ |
| 128 | #define ICH9_REG_OPTYPE 0x96 /* 16 Bits */ |
| 129 | #define ICH9_REG_OPMENU 0x98 /* 64 Bits */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 130 | |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 131 | #define ICH9_REG_BBAR 0xA0 /* 32 Bits BIOS Base Address Configuration */ |
| 132 | #define BBAR_MASK 0x00ffff00 /* 8-23: Bottom of System Flash */ |
| 133 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 134 | // ICH9R SPI commands |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 135 | #define SPI_OPCODE_TYPE_READ_NO_ADDRESS 0 |
| 136 | #define SPI_OPCODE_TYPE_WRITE_NO_ADDRESS 1 |
| 137 | #define SPI_OPCODE_TYPE_READ_WITH_ADDRESS 2 |
| 138 | #define SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS 3 |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 139 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 140 | // ICH7 registers |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 141 | #define ICH7_REG_SPIS 0x00 /* 16 Bits */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 142 | #define SPIS_SCIP 0x0001 |
| 143 | #define SPIS_GRANT 0x0002 |
| 144 | #define SPIS_CDS 0x0004 |
| 145 | #define SPIS_FCERR 0x0008 |
| 146 | #define SPIS_RESERVED_MASK 0x7ff0 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 147 | |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 148 | /* VIA SPI is compatible with ICH7, but maxdata |
| 149 | to transfer is 16 bytes. |
| 150 | |
| 151 | DATA byte count on ICH7 is 8:13, on VIA 8:11 |
| 152 | |
| 153 | bit 12 is port select CS0 CS1 |
| 154 | bit 13 is FAST READ enable |
| 155 | bit 7 is used with fast read and one shot controls CS de-assert? |
| 156 | */ |
| 157 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 158 | #define ICH7_REG_SPIC 0x02 /* 16 Bits */ |
| 159 | #define SPIC_SCGO 0x0002 |
| 160 | #define SPIC_ACS 0x0004 |
| 161 | #define SPIC_SPOP 0x0008 |
| 162 | #define SPIC_DS 0x4000 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 163 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 164 | #define ICH7_REG_SPIA 0x04 /* 32 Bits */ |
| 165 | #define ICH7_REG_SPID0 0x08 /* 64 Bytes */ |
| 166 | #define ICH7_REG_PREOP 0x54 /* 16 Bits */ |
| 167 | #define ICH7_REG_OPTYPE 0x56 /* 16 Bits */ |
| 168 | #define ICH7_REG_OPMENU 0x58 /* 64 Bits */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 169 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 170 | /* ICH SPI configuration lock-down. May be set during chipset enabling. */ |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 171 | static int ichspi_lock = 0; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 172 | |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 173 | uint32_t ichspi_bbar = 0; |
| 174 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 175 | static void *ich_spibar = NULL; |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 176 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 177 | typedef struct _OPCODE { |
| 178 | uint8_t opcode; //This commands spi opcode |
| 179 | uint8_t spi_type; //This commands spi type |
| 180 | uint8_t atomic; //Use preop: (0: none, 1: preop0, 2: preop1 |
| 181 | } OPCODE; |
| 182 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 183 | /* Suggested opcode definition: |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 184 | * Preop 1: Write Enable |
| 185 | * Preop 2: Write Status register enable |
| 186 | * |
| 187 | * OP 0: Write address |
| 188 | * OP 1: Read Address |
| 189 | * OP 2: ERASE block |
| 190 | * OP 3: Read Status register |
| 191 | * OP 4: Read ID |
| 192 | * OP 5: Write Status register |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 193 | * OP 6: chip private (read JEDEC id) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 194 | * OP 7: Chip erase |
| 195 | */ |
| 196 | typedef struct _OPCODES { |
| 197 | uint8_t preop[2]; |
| 198 | OPCODE opcode[8]; |
| 199 | } OPCODES; |
| 200 | |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 201 | static OPCODES *curopcodes = NULL; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 202 | |
| 203 | /* HW access functions */ |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 204 | static uint32_t REGREAD32(int X) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 205 | { |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 206 | return mmio_readl(ich_spibar + X); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 209 | static uint16_t REGREAD16(int X) |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 210 | { |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 211 | return mmio_readw(ich_spibar + X); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 212 | } |
| 213 | |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 214 | static uint16_t REGREAD8(int X) |
| 215 | { |
| 216 | return mmio_readb(ich_spibar + X); |
| 217 | } |
| 218 | |
Stefan Tauner | ccd92a1 | 2011-07-01 00:39:01 +0000 | [diff] [blame^] | 219 | #define REGWRITE32(off, val) mmio_writel(val, ich_spibar+(off)) |
| 220 | #define REGWRITE16(off, val) mmio_writew(val, ich_spibar+(off)) |
| 221 | #define REGWRITE8(off, val) mmio_writeb(val, ich_spibar+(off)) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 222 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 223 | /* Common SPI functions */ |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 224 | static int find_opcode(OPCODES *op, uint8_t opcode); |
| 225 | static int find_preop(OPCODES *op, uint8_t preop); |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 226 | static int generate_opcodes(OPCODES * op); |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 227 | static int program_opcodes(OPCODES *op, int enable_undo); |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 228 | static int run_opcode(OPCODE op, uint32_t offset, |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 229 | uint8_t datalength, uint8_t * data); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 230 | |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 231 | /* for pairing opcodes with their required preop */ |
| 232 | struct preop_opcode_pair { |
| 233 | uint8_t preop; |
| 234 | uint8_t opcode; |
| 235 | }; |
| 236 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 237 | /* List of opcodes which need preopcodes and matching preopcodes. Unused. */ |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 238 | const struct preop_opcode_pair pops[] = { |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 239 | {JEDEC_WREN, JEDEC_BYTE_PROGRAM}, |
| 240 | {JEDEC_WREN, JEDEC_SE}, /* sector erase */ |
| 241 | {JEDEC_WREN, JEDEC_BE_52}, /* block erase */ |
| 242 | {JEDEC_WREN, JEDEC_BE_D8}, /* block erase */ |
| 243 | {JEDEC_WREN, JEDEC_CE_60}, /* chip erase */ |
| 244 | {JEDEC_WREN, JEDEC_CE_C7}, /* chip erase */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 245 | /* FIXME: WRSR requires either EWSR or WREN depending on chip type. */ |
| 246 | {JEDEC_WREN, JEDEC_WRSR}, |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 247 | {JEDEC_EWSR, JEDEC_WRSR}, |
| 248 | {0,} |
| 249 | }; |
| 250 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 251 | /* Reasonable default configuration. Needs ad-hoc modifications if we |
| 252 | * encounter unlisted opcodes. Fun. |
| 253 | */ |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 254 | static OPCODES O_ST_M25P = { |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 255 | { |
| 256 | JEDEC_WREN, |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 257 | JEDEC_EWSR, |
| 258 | }, |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 259 | { |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 260 | {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 261 | {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 262 | {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 263 | {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] | 264 | {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] | 265 | {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 266 | {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] | 267 | {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase |
| 268 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 269 | }; |
| 270 | |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 271 | /* List of opcodes with their corresponding spi_type |
| 272 | * It is used to reprogram the chipset OPCODE table on-the-fly if an opcode |
| 273 | * is needed which is currently not in the chipset OPCODE table |
| 274 | */ |
| 275 | static OPCODE POSSIBLE_OPCODES[] = { |
| 276 | {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte |
| 277 | {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data |
| 278 | {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector |
| 279 | {JEDEC_RDSR, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read Device Status Reg |
| 280 | {JEDEC_REMS, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Electronic Manufacturer Signature |
| 281 | {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register |
| 282 | {JEDEC_RDID, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read JDEC ID |
| 283 | {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase |
| 284 | {JEDEC_SE, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Sector erase |
| 285 | {JEDEC_BE_52, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Block erase |
| 286 | {JEDEC_AAI_WORD_PROGRAM, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Auto Address Increment |
| 287 | }; |
| 288 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 289 | static OPCODES O_EXISTING = {}; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 290 | |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 291 | /* pretty printing functions */ |
| 292 | static void pretty_print_opcodes(OPCODES *ops) |
| 293 | { |
| 294 | if(ops == NULL) |
| 295 | return; |
| 296 | |
| 297 | msg_pdbg("preop0=0x%02x, preop1=0x%02x\n", ops->preop[0], |
| 298 | ops->preop[1]); |
| 299 | |
| 300 | OPCODE oc; |
| 301 | uint8_t i; |
| 302 | for (i = 0; i < 8; i++) { |
| 303 | oc = ops->opcode[i]; |
| 304 | msg_pdbg("op[%d]=0x%02x, %d, %d\n", |
| 305 | i, |
| 306 | oc.opcode, |
| 307 | oc.spi_type, |
| 308 | oc.atomic); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | #define pprint_reg(reg, bit, val, sep) msg_pdbg("%s=%d" sep, #bit, (val & reg##_##bit)>>reg##_##bit##_OFF) |
| 313 | |
Stefan Tauner | 5520694 | 2011-06-11 09:53:22 +0000 | [diff] [blame] | 314 | static void prettyprint_ich9_reg_hsfs(uint16_t reg_val) |
| 315 | { |
| 316 | msg_pdbg("HSFS: "); |
| 317 | pprint_reg(HSFS, FDONE, reg_val, ", "); |
| 318 | pprint_reg(HSFS, FCERR, reg_val, ", "); |
| 319 | pprint_reg(HSFS, AEL, reg_val, ", "); |
| 320 | pprint_reg(HSFS, BERASE, reg_val, ", "); |
| 321 | pprint_reg(HSFS, SCIP, reg_val, ", "); |
| 322 | pprint_reg(HSFS, FDOPSS, reg_val, ", "); |
| 323 | pprint_reg(HSFS, FDV, reg_val, ", "); |
| 324 | pprint_reg(HSFS, FLOCKDN, reg_val, "\n"); |
| 325 | } |
| 326 | |
| 327 | static void prettyprint_ich9_reg_hsfc(uint16_t reg_val) |
| 328 | { |
| 329 | msg_pdbg("HSFC: "); |
| 330 | pprint_reg(HSFC, FGO, reg_val, ", "); |
| 331 | pprint_reg(HSFC, FCYCLE, reg_val, ", "); |
| 332 | pprint_reg(HSFC, FDBC, reg_val, ", "); |
| 333 | pprint_reg(HSFC, SME, reg_val, "\n"); |
| 334 | } |
| 335 | |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 336 | static void prettyprint_ich9_reg_ssfs(uint32_t reg_val) |
| 337 | { |
| 338 | msg_pdbg("SSFS: "); |
| 339 | pprint_reg(SSFS, SCIP, reg_val, ", "); |
| 340 | pprint_reg(SSFS, FDONE, reg_val, ", "); |
| 341 | pprint_reg(SSFS, FCERR, reg_val, ", "); |
| 342 | pprint_reg(SSFS, AEL, reg_val, "\n"); |
| 343 | } |
| 344 | |
| 345 | static void prettyprint_ich9_reg_ssfc(uint32_t reg_val) |
| 346 | { |
| 347 | msg_pdbg("SSFC: "); |
| 348 | pprint_reg(SSFC, SCGO, reg_val, ", "); |
| 349 | pprint_reg(SSFC, ACS, reg_val, ", "); |
| 350 | pprint_reg(SSFC, SPOP, reg_val, ", "); |
| 351 | pprint_reg(SSFC, COP, reg_val, ", "); |
| 352 | pprint_reg(SSFC, DBC, reg_val, ", "); |
| 353 | pprint_reg(SSFC, SME, reg_val, ", "); |
| 354 | pprint_reg(SSFC, SCF, reg_val, "\n"); |
| 355 | } |
| 356 | |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 357 | static uint8_t lookup_spi_type(uint8_t opcode) |
| 358 | { |
| 359 | int a; |
| 360 | |
| 361 | for (a = 0; a < sizeof(POSSIBLE_OPCODES)/sizeof(POSSIBLE_OPCODES[0]); a++) { |
| 362 | if (POSSIBLE_OPCODES[a].opcode == opcode) |
| 363 | return POSSIBLE_OPCODES[a].spi_type; |
| 364 | } |
| 365 | |
| 366 | return 0xFF; |
| 367 | } |
| 368 | |
| 369 | static int reprogram_opcode_on_the_fly(uint8_t opcode, unsigned int writecnt, unsigned int readcnt) |
| 370 | { |
| 371 | uint8_t spi_type; |
| 372 | |
| 373 | spi_type = lookup_spi_type(opcode); |
| 374 | if (spi_type > 3) { |
| 375 | /* Try to guess spi type from read/write sizes. |
| 376 | * The following valid writecnt/readcnt combinations exist: |
| 377 | * writecnt = 4, readcnt >= 0 |
| 378 | * writecnt = 1, readcnt >= 0 |
| 379 | * writecnt >= 4, readcnt = 0 |
| 380 | * writecnt >= 1, readcnt = 0 |
| 381 | * writecnt >= 1 is guaranteed for all commands. |
| 382 | */ |
| 383 | if (readcnt == 0) |
| 384 | /* if readcnt=0 and writecount >= 4, we don't know if it is WRITE_NO_ADDRESS |
| 385 | * or WRITE_WITH_ADDRESS. But if we use WRITE_NO_ADDRESS and the first 3 data |
| 386 | * bytes are actual the address, they go to the bus anyhow |
| 387 | */ |
| 388 | spi_type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS; |
| 389 | else if (writecnt == 1) // and readcnt is > 0 |
| 390 | spi_type = SPI_OPCODE_TYPE_READ_NO_ADDRESS; |
| 391 | else if (writecnt == 4) // and readcnt is > 0 |
| 392 | spi_type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS; |
| 393 | // else we have an invalid case, will be handled below |
| 394 | } |
| 395 | if (spi_type <= 3) { |
| 396 | int oppos=2; // use original JEDEC_BE_D8 offset |
| 397 | curopcodes->opcode[oppos].opcode = opcode; |
| 398 | curopcodes->opcode[oppos].spi_type = spi_type; |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 399 | program_opcodes(curopcodes, 0); |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 400 | oppos = find_opcode(curopcodes, opcode); |
| 401 | msg_pdbg ("on-the-fly OPCODE (0x%02X) re-programmed, op-pos=%d\n", opcode, oppos); |
| 402 | return oppos; |
| 403 | } |
| 404 | return -1; |
| 405 | } |
| 406 | |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 407 | static int find_opcode(OPCODES *op, uint8_t opcode) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 408 | { |
| 409 | int a; |
| 410 | |
| 411 | for (a = 0; a < 8; a++) { |
| 412 | if (op->opcode[a].opcode == opcode) |
| 413 | return a; |
| 414 | } |
| 415 | |
| 416 | return -1; |
| 417 | } |
| 418 | |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 419 | static int find_preop(OPCODES *op, uint8_t preop) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 420 | { |
| 421 | int a; |
| 422 | |
| 423 | for (a = 0; a < 2; a++) { |
| 424 | if (op->preop[a] == preop) |
| 425 | return a; |
| 426 | } |
| 427 | |
| 428 | return -1; |
| 429 | } |
| 430 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 431 | /* 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] | 432 | static int generate_opcodes(OPCODES * op) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 433 | { |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 434 | int a; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 435 | uint16_t preop, optype; |
| 436 | uint32_t opmenu[2]; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 437 | |
| 438 | if (op == NULL) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 439 | msg_perr("\n%s: null OPCODES pointer!\n", __func__); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 440 | return -1; |
| 441 | } |
| 442 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 443 | switch (spi_programmer->type) { |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 444 | case SPI_CONTROLLER_ICH7: |
| 445 | case SPI_CONTROLLER_VIA: |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 446 | preop = REGREAD16(ICH7_REG_PREOP); |
| 447 | optype = REGREAD16(ICH7_REG_OPTYPE); |
| 448 | opmenu[0] = REGREAD32(ICH7_REG_OPMENU); |
| 449 | opmenu[1] = REGREAD32(ICH7_REG_OPMENU + 4); |
| 450 | break; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 451 | case SPI_CONTROLLER_ICH9: |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 452 | preop = REGREAD16(ICH9_REG_PREOP); |
| 453 | optype = REGREAD16(ICH9_REG_OPTYPE); |
| 454 | opmenu[0] = REGREAD32(ICH9_REG_OPMENU); |
| 455 | opmenu[1] = REGREAD32(ICH9_REG_OPMENU + 4); |
| 456 | break; |
| 457 | default: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 458 | msg_perr("%s: unsupported chipset\n", __func__); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 459 | return -1; |
| 460 | } |
| 461 | |
| 462 | op->preop[0] = (uint8_t) preop; |
| 463 | op->preop[1] = (uint8_t) (preop >> 8); |
| 464 | |
| 465 | for (a = 0; a < 8; a++) { |
| 466 | op->opcode[a].spi_type = (uint8_t) (optype & 0x3); |
| 467 | optype >>= 2; |
| 468 | } |
| 469 | |
| 470 | for (a = 0; a < 4; a++) { |
| 471 | op->opcode[a].opcode = (uint8_t) (opmenu[0] & 0xff); |
| 472 | opmenu[0] >>= 8; |
| 473 | } |
| 474 | |
| 475 | for (a = 4; a < 8; a++) { |
| 476 | op->opcode[a].opcode = (uint8_t) (opmenu[1] & 0xff); |
| 477 | opmenu[1] >>= 8; |
| 478 | } |
| 479 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 480 | /* No preopcodes used by default. */ |
| 481 | for (a = 0; a < 8; a++) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 482 | op->opcode[a].atomic = 0; |
| 483 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 484 | return 0; |
| 485 | } |
| 486 | |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 487 | static int program_opcodes(OPCODES *op, int enable_undo) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 488 | { |
| 489 | uint8_t a; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 490 | uint16_t preop, optype; |
| 491 | uint32_t opmenu[2]; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 492 | |
| 493 | /* Program Prefix Opcodes */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 494 | /* 0:7 Prefix Opcode 1 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 495 | preop = (op->preop[0]); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 496 | /* 8:16 Prefix Opcode 2 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 497 | preop |= ((uint16_t) op->preop[1]) << 8; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 498 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 499 | /* Program Opcode Types 0 - 7 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 500 | optype = 0; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 501 | for (a = 0; a < 8; a++) { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 502 | optype |= ((uint16_t) op->opcode[a].spi_type) << (a * 2); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 503 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 504 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 505 | /* Program Allowable Opcodes 0 - 3 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 506 | opmenu[0] = 0; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 507 | for (a = 0; a < 4; a++) { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 508 | opmenu[0] |= ((uint32_t) op->opcode[a].opcode) << (a * 8); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 509 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 510 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 511 | /*Program Allowable Opcodes 4 - 7 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 512 | opmenu[1] = 0; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 513 | for (a = 4; a < 8; a++) { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 514 | opmenu[1] |= ((uint32_t) op->opcode[a].opcode) << ((a - 4) * 8); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 515 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 516 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 517 | msg_pdbg("\n%s: preop=%04x optype=%04x opmenu=%08x%08x\n", __func__, preop, optype, opmenu[0], opmenu[1]); |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 518 | switch (spi_programmer->type) { |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 519 | case SPI_CONTROLLER_ICH7: |
| 520 | case SPI_CONTROLLER_VIA: |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 521 | /* Register undo only for enable_undo=1, i.e. first call. */ |
| 522 | if (enable_undo) { |
| 523 | rmmio_valw(ich_spibar + ICH7_REG_PREOP); |
| 524 | rmmio_valw(ich_spibar + ICH7_REG_OPTYPE); |
| 525 | rmmio_vall(ich_spibar + ICH7_REG_OPMENU); |
| 526 | rmmio_vall(ich_spibar + ICH7_REG_OPMENU + 4); |
| 527 | } |
| 528 | mmio_writew(preop, ich_spibar + ICH7_REG_PREOP); |
| 529 | mmio_writew(optype, ich_spibar + ICH7_REG_OPTYPE); |
| 530 | mmio_writel(opmenu[0], ich_spibar + ICH7_REG_OPMENU); |
| 531 | mmio_writel(opmenu[1], ich_spibar + ICH7_REG_OPMENU + 4); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 532 | break; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 533 | case SPI_CONTROLLER_ICH9: |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 534 | /* Register undo only for enable_undo=1, i.e. first call. */ |
| 535 | if (enable_undo) { |
| 536 | rmmio_valw(ich_spibar + ICH9_REG_PREOP); |
| 537 | rmmio_valw(ich_spibar + ICH9_REG_OPTYPE); |
| 538 | rmmio_vall(ich_spibar + ICH9_REG_OPMENU); |
| 539 | rmmio_vall(ich_spibar + ICH9_REG_OPMENU + 4); |
| 540 | } |
| 541 | mmio_writew(preop, ich_spibar + ICH9_REG_PREOP); |
| 542 | mmio_writew(optype, ich_spibar + ICH9_REG_OPTYPE); |
| 543 | mmio_writel(opmenu[0], ich_spibar + ICH9_REG_OPMENU); |
| 544 | mmio_writel(opmenu[1], ich_spibar + ICH9_REG_OPMENU + 4); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 545 | break; |
| 546 | default: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 547 | msg_perr("%s: unsupported chipset\n", __func__); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 548 | return -1; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 549 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 550 | |
| 551 | return 0; |
| 552 | } |
| 553 | |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 554 | /* |
| 555 | * Try to set BBAR (BIOS Base Address Register), but read back the value in case |
| 556 | * it didn't stick. |
| 557 | */ |
| 558 | void ich_set_bbar(uint32_t minaddr) |
| 559 | { |
Carl-Daniel Hailfinger | 841d631 | 2010-11-24 23:37:22 +0000 | [diff] [blame] | 560 | minaddr &= BBAR_MASK; |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 561 | switch (spi_programmer->type) { |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 562 | case SPI_CONTROLLER_ICH7: |
Carl-Daniel Hailfinger | 841d631 | 2010-11-24 23:37:22 +0000 | [diff] [blame] | 563 | case SPI_CONTROLLER_VIA: |
| 564 | ichspi_bbar = mmio_readl(ich_spibar + 0x50) & ~BBAR_MASK; |
| 565 | if (ichspi_bbar) |
| 566 | msg_pdbg("Reserved bits in BBAR not zero: 0x%04x", |
| 567 | ichspi_bbar); |
| 568 | ichspi_bbar |= minaddr; |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 569 | rmmio_writel(ichspi_bbar, ich_spibar + 0x50); |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 570 | ichspi_bbar = mmio_readl(ich_spibar + 0x50); |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 571 | /* We don't have any option except complaining. And if the write |
| 572 | * failed, the restore will fail as well, so no problem there. |
| 573 | */ |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 574 | if (ichspi_bbar != minaddr) |
| 575 | msg_perr("Setting BBAR failed!\n"); |
| 576 | break; |
| 577 | case SPI_CONTROLLER_ICH9: |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 578 | ichspi_bbar = mmio_readl(ich_spibar + ICH9_REG_BBAR) & ~BBAR_MASK; |
Carl-Daniel Hailfinger | 841d631 | 2010-11-24 23:37:22 +0000 | [diff] [blame] | 579 | if (ichspi_bbar) |
| 580 | msg_pdbg("Reserved bits in BBAR not zero: 0x%04x", |
| 581 | ichspi_bbar); |
| 582 | ichspi_bbar |= minaddr; |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 583 | rmmio_writel(ichspi_bbar, ich_spibar + ICH9_REG_BBAR); |
| 584 | ichspi_bbar = mmio_readl(ich_spibar + ICH9_REG_BBAR); |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 585 | /* We don't have any option except complaining. And if the write |
| 586 | * failed, the restore will fail as well, so no problem there. |
| 587 | */ |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 588 | if (ichspi_bbar != minaddr) |
| 589 | msg_perr("Setting BBAR failed!\n"); |
| 590 | break; |
| 591 | default: |
Carl-Daniel Hailfinger | 841d631 | 2010-11-24 23:37:22 +0000 | [diff] [blame] | 592 | msg_perr("Unknown chipset for BBAR setting!\n"); |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 593 | break; |
| 594 | } |
| 595 | } |
| 596 | |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 597 | /* This function generates OPCODES from or programs OPCODES to ICH according to |
| 598 | * the chipset's SPI configuration lock. |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 599 | * |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 600 | * It should be called before ICH sends any spi command. |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 601 | */ |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 602 | static int ich_init_opcodes(void) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 603 | { |
| 604 | int rc = 0; |
| 605 | OPCODES *curopcodes_done; |
| 606 | |
| 607 | if (curopcodes) |
| 608 | return 0; |
| 609 | |
| 610 | if (ichspi_lock) { |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 611 | msg_pdbg("Reading OPCODES... "); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 612 | curopcodes_done = &O_EXISTING; |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 613 | rc = generate_opcodes(curopcodes_done); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 614 | } else { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 615 | msg_pdbg("Programming OPCODES... "); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 616 | curopcodes_done = &O_ST_M25P; |
Carl-Daniel Hailfinger | 54ce73a | 2011-05-03 21:49:41 +0000 | [diff] [blame] | 617 | rc = program_opcodes(curopcodes_done, 1); |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 618 | /* Technically not part of opcode init, but it allows opcodes |
| 619 | * to run without transaction errors by setting the lowest |
| 620 | * allowed address to zero. |
| 621 | */ |
| 622 | ich_set_bbar(0); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | if (rc) { |
| 626 | curopcodes = NULL; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 627 | msg_perr("failed\n"); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 628 | return 1; |
| 629 | } else { |
| 630 | curopcodes = curopcodes_done; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 631 | msg_pdbg("done\n"); |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 632 | pretty_print_opcodes(curopcodes); |
| 633 | msg_pdbg("\n"); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 634 | return 0; |
| 635 | } |
| 636 | } |
| 637 | |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 638 | static int ich7_run_opcode(OPCODE op, uint32_t offset, |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 639 | uint8_t datalength, uint8_t * data, int maxdata) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 640 | { |
| 641 | int write_cmd = 0; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 642 | int timeout; |
Peter Stuge | 7e2c079 | 2008-06-29 01:30:41 +0000 | [diff] [blame] | 643 | uint32_t temp32 = 0; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 644 | uint16_t temp16; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 645 | uint32_t a; |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 646 | uint64_t opmenu; |
| 647 | int opcode_index; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 648 | |
| 649 | /* Is it a write command? */ |
| 650 | if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) |
| 651 | || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) { |
| 652 | write_cmd = 1; |
| 653 | } |
| 654 | |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 655 | timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */ |
| 656 | while ((REGREAD16(ICH7_REG_SPIS) & SPIS_SCIP) && --timeout) { |
| 657 | programmer_delay(10); |
| 658 | } |
| 659 | if (!timeout) { |
| 660 | msg_perr("Error: SCIP never cleared!\n"); |
| 661 | return 1; |
| 662 | } |
| 663 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 664 | /* Programm Offset in Flash into FADDR */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 665 | REGWRITE32(ICH7_REG_SPIA, (offset & 0x00FFFFFF)); /* SPI addresses are 24 BIT only */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 666 | |
| 667 | /* Program data into FDATA0 to N */ |
| 668 | if (write_cmd && (datalength != 0)) { |
| 669 | temp32 = 0; |
| 670 | for (a = 0; a < datalength; a++) { |
| 671 | if ((a % 4) == 0) { |
| 672 | temp32 = 0; |
| 673 | } |
| 674 | |
| 675 | temp32 |= ((uint32_t) data[a]) << ((a % 4) * 8); |
| 676 | |
| 677 | if ((a % 4) == 3) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 678 | REGWRITE32(ICH7_REG_SPID0 + (a - (a % 4)), |
| 679 | temp32); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 680 | } |
| 681 | } |
| 682 | if (((a - 1) % 4) != 3) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 683 | REGWRITE32(ICH7_REG_SPID0 + |
| 684 | ((a - 1) - ((a - 1) % 4)), temp32); |
| 685 | } |
| 686 | |
| 687 | } |
| 688 | |
| 689 | /* Assemble SPIS */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 690 | temp16 = REGREAD16(ICH7_REG_SPIS); |
| 691 | /* keep reserved bits */ |
| 692 | temp16 &= SPIS_RESERVED_MASK; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 693 | /* clear error status registers */ |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 694 | temp16 |= (SPIS_CDS | SPIS_FCERR); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 695 | REGWRITE16(ICH7_REG_SPIS, temp16); |
| 696 | |
| 697 | /* Assemble SPIC */ |
| 698 | temp16 = 0; |
| 699 | |
| 700 | if (datalength != 0) { |
| 701 | temp16 |= SPIC_DS; |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 702 | temp16 |= ((uint32_t) ((datalength - 1) & (maxdata - 1))) << 8; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | /* Select opcode */ |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 706 | opmenu = REGREAD32(ICH7_REG_OPMENU); |
| 707 | opmenu |= ((uint64_t)REGREAD32(ICH7_REG_OPMENU + 4)) << 32; |
| 708 | |
Uwe Hermann | 7b2969b | 2009-04-15 10:52:49 +0000 | [diff] [blame] | 709 | for (opcode_index = 0; opcode_index < 8; opcode_index++) { |
| 710 | if ((opmenu & 0xff) == op.opcode) { |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 711 | break; |
| 712 | } |
| 713 | opmenu >>= 8; |
| 714 | } |
| 715 | if (opcode_index == 8) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 716 | msg_pdbg("Opcode %x not found.\n", op.opcode); |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 717 | return 1; |
| 718 | } |
| 719 | temp16 |= ((uint16_t) (opcode_index & 0x07)) << 4; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 720 | |
Michael Karcher | 136125a | 2011-04-29 22:11:36 +0000 | [diff] [blame] | 721 | timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */ |
| 722 | /* Handle Atomic. Atomic commands include three steps: |
| 723 | - sending the preop (mainly EWSR or WREN) |
| 724 | - sending the main command |
| 725 | - waiting for the busy bit (WIP) to be cleared |
| 726 | This means the timeout must be sufficient for chip erase |
| 727 | of slow high-capacity chips. |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 728 | */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 729 | switch (op.atomic) { |
| 730 | case 2: |
| 731 | /* Select second preop. */ |
| 732 | temp16 |= SPIC_SPOP; |
| 733 | /* And fall through. */ |
| 734 | case 1: |
| 735 | /* Atomic command (preop+op) */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 736 | temp16 |= SPIC_ACS; |
Michael Karcher | 136125a | 2011-04-29 22:11:36 +0000 | [diff] [blame] | 737 | timeout = 100 * 1000 * 60; /* 60 seconds */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 738 | break; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | /* Start */ |
| 742 | temp16 |= SPIC_SCGO; |
| 743 | |
| 744 | /* write it */ |
| 745 | REGWRITE16(ICH7_REG_SPIC, temp16); |
| 746 | |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 747 | /* Wait for Cycle Done Status or Flash Cycle Error. */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 748 | while (((REGREAD16(ICH7_REG_SPIS) & (SPIS_CDS | SPIS_FCERR)) == 0) && |
| 749 | --timeout) { |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 750 | programmer_delay(10); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 751 | } |
| 752 | if (!timeout) { |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 753 | msg_perr("timeout, ICH7_REG_SPIS=0x%04x\n", |
| 754 | REGREAD16(ICH7_REG_SPIS)); |
| 755 | return 1; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 756 | } |
| 757 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 758 | /* FIXME: make sure we do not needlessly cause transaction errors. */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 759 | temp16 = REGREAD16(ICH7_REG_SPIS); |
| 760 | if (temp16 & SPIS_FCERR) { |
Stefan Tauner | 8ed2934 | 2011-04-29 23:53:09 +0000 | [diff] [blame] | 761 | msg_perr("Transaction error!\n"); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 762 | /* keep reserved bits */ |
| 763 | temp16 &= SPIS_RESERVED_MASK; |
| 764 | REGWRITE16(ICH7_REG_SPIS, temp16 | SPIS_FCERR); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 765 | return 1; |
| 766 | } |
| 767 | |
| 768 | if ((!write_cmd) && (datalength != 0)) { |
| 769 | for (a = 0; a < datalength; a++) { |
| 770 | if ((a % 4) == 0) { |
| 771 | temp32 = REGREAD32(ICH7_REG_SPID0 + (a)); |
| 772 | } |
| 773 | |
| 774 | data[a] = |
| 775 | (temp32 & (((uint32_t) 0xff) << ((a % 4) * 8))) |
| 776 | >> ((a % 4) * 8); |
| 777 | } |
| 778 | } |
| 779 | |
| 780 | return 0; |
| 781 | } |
| 782 | |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 783 | static int ich9_run_opcode(OPCODE op, uint32_t offset, |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 784 | uint8_t datalength, uint8_t * data) |
| 785 | { |
| 786 | int write_cmd = 0; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 787 | int timeout; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 788 | uint32_t temp32; |
| 789 | uint32_t a; |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 790 | uint64_t opmenu; |
| 791 | int opcode_index; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 792 | |
| 793 | /* Is it a write command? */ |
| 794 | if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) |
| 795 | || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) { |
| 796 | write_cmd = 1; |
| 797 | } |
| 798 | |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 799 | timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */ |
| 800 | while ((REGREAD8(ICH9_REG_SSFS) & SSFS_SCIP) && --timeout) { |
| 801 | programmer_delay(10); |
| 802 | } |
| 803 | if (!timeout) { |
| 804 | msg_perr("Error: SCIP never cleared!\n"); |
| 805 | return 1; |
| 806 | } |
| 807 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 808 | /* Programm Offset in Flash into FADDR */ |
| 809 | REGWRITE32(ICH9_REG_FADDR, (offset & 0x00FFFFFF)); /* SPI addresses are 24 BIT only */ |
| 810 | |
| 811 | /* Program data into FDATA0 to N */ |
| 812 | if (write_cmd && (datalength != 0)) { |
| 813 | temp32 = 0; |
| 814 | for (a = 0; a < datalength; a++) { |
| 815 | if ((a % 4) == 0) { |
| 816 | temp32 = 0; |
| 817 | } |
| 818 | |
| 819 | temp32 |= ((uint32_t) data[a]) << ((a % 4) * 8); |
| 820 | |
| 821 | if ((a % 4) == 3) { |
| 822 | REGWRITE32(ICH9_REG_FDATA0 + (a - (a % 4)), |
| 823 | temp32); |
| 824 | } |
| 825 | } |
| 826 | if (((a - 1) % 4) != 3) { |
| 827 | REGWRITE32(ICH9_REG_FDATA0 + |
| 828 | ((a - 1) - ((a - 1) % 4)), temp32); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 829 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 830 | } |
| 831 | |
| 832 | /* Assemble SSFS + SSFC */ |
Helge Wagner | a319be1 | 2010-08-11 21:06:10 +0000 | [diff] [blame] | 833 | temp32 = REGREAD32(ICH9_REG_SSFS); |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 834 | /* Keep reserved bits only */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 835 | temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK; |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 836 | /* Clear cycle done and cycle error status registers */ |
| 837 | temp32 |= (SSFS_FDONE | SSFS_FCERR); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 838 | REGWRITE32(ICH9_REG_SSFS, temp32); |
| 839 | |
Uwe Hermann | 4e3d0b3 | 2010-03-25 23:18:41 +0000 | [diff] [blame] | 840 | /* Use 20 MHz */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 841 | temp32 |= SSFC_SCF_20MHZ; |
| 842 | |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 843 | /* Set data byte count (DBC) and data cycle bit (DS) */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 844 | if (datalength != 0) { |
| 845 | uint32_t datatemp; |
| 846 | temp32 |= SSFC_DS; |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 847 | datatemp = ((((uint32_t)datalength - 1) << SSFC_DBC_OFF) & |
| 848 | SSFC_DBC); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 849 | temp32 |= datatemp; |
| 850 | } |
| 851 | |
| 852 | /* Select opcode */ |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 853 | opmenu = REGREAD32(ICH9_REG_OPMENU); |
| 854 | opmenu |= ((uint64_t)REGREAD32(ICH9_REG_OPMENU + 4)) << 32; |
| 855 | |
Uwe Hermann | 7b2969b | 2009-04-15 10:52:49 +0000 | [diff] [blame] | 856 | for (opcode_index = 0; opcode_index < 8; opcode_index++) { |
| 857 | if ((opmenu & 0xff) == op.opcode) { |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 858 | break; |
| 859 | } |
| 860 | opmenu >>= 8; |
| 861 | } |
| 862 | if (opcode_index == 8) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 863 | msg_pdbg("Opcode %x not found.\n", op.opcode); |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 864 | return 1; |
| 865 | } |
| 866 | temp32 |= ((uint32_t) (opcode_index & 0x07)) << (8 + 4); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 867 | |
Michael Karcher | 136125a | 2011-04-29 22:11:36 +0000 | [diff] [blame] | 868 | timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */ |
| 869 | /* Handle Atomic. Atomic commands include three steps: |
| 870 | - sending the preop (mainly EWSR or WREN) |
| 871 | - sending the main command |
| 872 | - waiting for the busy bit (WIP) to be cleared |
| 873 | This means the timeout must be sufficient for chip erase |
| 874 | of slow high-capacity chips. |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 875 | */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 876 | switch (op.atomic) { |
| 877 | case 2: |
| 878 | /* Select second preop. */ |
| 879 | temp32 |= SSFC_SPOP; |
| 880 | /* And fall through. */ |
| 881 | case 1: |
| 882 | /* Atomic command (preop+op) */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 883 | temp32 |= SSFC_ACS; |
Michael Karcher | 136125a | 2011-04-29 22:11:36 +0000 | [diff] [blame] | 884 | timeout = 100 * 1000 * 60; /* 60 seconds */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 885 | break; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | /* Start */ |
| 889 | temp32 |= SSFC_SCGO; |
| 890 | |
| 891 | /* write it */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 892 | REGWRITE32(ICH9_REG_SSFS, temp32); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 893 | |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 894 | /* Wait for Cycle Done Status or Flash Cycle Error. */ |
Stefan Tauner | 0c1ec45 | 2011-06-11 09:53:09 +0000 | [diff] [blame] | 895 | while (((REGREAD32(ICH9_REG_SSFS) & (SSFS_FDONE | SSFS_FCERR)) == 0) && |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 896 | --timeout) { |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 897 | programmer_delay(10); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 898 | } |
| 899 | if (!timeout) { |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 900 | msg_perr("timeout, ICH9_REG_SSFS=0x%08x\n", |
| 901 | REGREAD32(ICH9_REG_SSFS)); |
| 902 | return 1; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 903 | } |
| 904 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 905 | /* FIXME make sure we do not needlessly cause transaction errors. */ |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 906 | temp32 = REGREAD32(ICH9_REG_SSFS); |
| 907 | if (temp32 & SSFS_FCERR) { |
Stefan Tauner | 8ed2934 | 2011-04-29 23:53:09 +0000 | [diff] [blame] | 908 | msg_perr("Transaction error!\n"); |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 909 | prettyprint_ich9_reg_ssfs(temp32); |
| 910 | prettyprint_ich9_reg_ssfc(temp32); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 911 | /* keep reserved bits */ |
| 912 | temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK; |
| 913 | /* Clear the transaction error. */ |
| 914 | REGWRITE32(ICH9_REG_SSFS, temp32 | SSFS_FCERR); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 915 | return 1; |
| 916 | } |
| 917 | |
| 918 | if ((!write_cmd) && (datalength != 0)) { |
| 919 | for (a = 0; a < datalength; a++) { |
| 920 | if ((a % 4) == 0) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 921 | temp32 = REGREAD32(ICH9_REG_FDATA0 + (a)); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 922 | } |
| 923 | |
| 924 | data[a] = |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 925 | (temp32 & (((uint32_t) 0xff) << ((a % 4) * 8))) |
| 926 | >> ((a % 4) * 8); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 927 | } |
| 928 | } |
| 929 | |
| 930 | return 0; |
| 931 | } |
| 932 | |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 933 | static int run_opcode(OPCODE op, uint32_t offset, |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 934 | uint8_t datalength, uint8_t * data) |
| 935 | { |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 936 | /* max_data_read == max_data_write for all Intel/VIA SPI masters */ |
| 937 | uint8_t maxlength = spi_programmer->max_data_read; |
| 938 | |
| 939 | if (spi_programmer->type == SPI_CONTROLLER_NONE) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 940 | msg_perr("%s: unsupported chipset\n", __func__); |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 941 | return -1; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 942 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 943 | |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 944 | if (datalength > maxlength) { |
| 945 | msg_perr("%s: Internal command size error for " |
| 946 | "opcode 0x%02x, got datalength=%i, want <=%i\n", |
| 947 | __func__, op.opcode, datalength, maxlength); |
| 948 | return SPI_INVALID_LENGTH; |
| 949 | } |
| 950 | |
| 951 | switch (spi_programmer->type) { |
| 952 | case SPI_CONTROLLER_VIA: |
| 953 | case SPI_CONTROLLER_ICH7: |
| 954 | return ich7_run_opcode(op, offset, datalength, data, maxlength); |
| 955 | case SPI_CONTROLLER_ICH9: |
| 956 | return ich9_run_opcode(op, offset, datalength, data); |
| 957 | default: |
| 958 | /* If we ever get here, something really weird happened */ |
| 959 | return -1; |
| 960 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 961 | } |
| 962 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 963 | static int ich_spi_send_command(unsigned int writecnt, unsigned int readcnt, |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 964 | const unsigned char *writearr, unsigned char *readarr) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 965 | { |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 966 | int result; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 967 | int opcode_index = -1; |
| 968 | const unsigned char cmd = *writearr; |
| 969 | OPCODE *opcode; |
| 970 | uint32_t addr = 0; |
| 971 | uint8_t *data; |
| 972 | int count; |
| 973 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 974 | /* find cmd in opcodes-table */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 975 | opcode_index = find_opcode(curopcodes, cmd); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 976 | if (opcode_index == -1) { |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 977 | if (!ichspi_lock) |
| 978 | opcode_index = reprogram_opcode_on_the_fly(cmd, writecnt, readcnt); |
| 979 | if (opcode_index == -1) { |
Stefan Tauner | 355cbfd | 2011-05-28 02:37:14 +0000 | [diff] [blame] | 980 | msg_pdbg("Invalid OPCODE 0x%02x, will not execute.\n", |
| 981 | cmd); |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 982 | return SPI_INVALID_OPCODE; |
| 983 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | opcode = &(curopcodes->opcode[opcode_index]); |
| 987 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 988 | /* The following valid writecnt/readcnt combinations exist: |
| 989 | * writecnt = 4, readcnt >= 0 |
| 990 | * writecnt = 1, readcnt >= 0 |
| 991 | * writecnt >= 4, readcnt = 0 |
| 992 | * writecnt >= 1, readcnt = 0 |
| 993 | * writecnt >= 1 is guaranteed for all commands. |
| 994 | */ |
| 995 | if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS) && |
| 996 | (writecnt != 4)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 997 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 998 | "0x%02x, got writecnt=%i, want =4\n", __func__, cmd, |
| 999 | writecnt); |
| 1000 | return SPI_INVALID_LENGTH; |
| 1001 | } |
| 1002 | if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_NO_ADDRESS) && |
| 1003 | (writecnt != 1)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1004 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1005 | "0x%02x, got writecnt=%i, want =1\n", __func__, cmd, |
| 1006 | writecnt); |
| 1007 | return SPI_INVALID_LENGTH; |
| 1008 | } |
| 1009 | if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) && |
| 1010 | (writecnt < 4)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1011 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1012 | "0x%02x, got writecnt=%i, want >=4\n", __func__, cmd, |
| 1013 | writecnt); |
| 1014 | return SPI_INVALID_LENGTH; |
| 1015 | } |
| 1016 | if (((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) || |
| 1017 | (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) && |
| 1018 | (readcnt)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1019 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1020 | "0x%02x, got readcnt=%i, want =0\n", __func__, cmd, |
| 1021 | readcnt); |
| 1022 | return SPI_INVALID_LENGTH; |
| 1023 | } |
| 1024 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1025 | /* if opcode-type requires an address */ |
| 1026 | if (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS || |
| 1027 | opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) { |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 1028 | addr = (writearr[1] << 16) | |
| 1029 | (writearr[2] << 8) | (writearr[3] << 0); |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1030 | switch (spi_programmer->type) { |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 1031 | case SPI_CONTROLLER_ICH7: |
Carl-Daniel Hailfinger | 841d631 | 2010-11-24 23:37:22 +0000 | [diff] [blame] | 1032 | case SPI_CONTROLLER_VIA: |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 1033 | case SPI_CONTROLLER_ICH9: |
| 1034 | if (addr < ichspi_bbar) { |
| 1035 | msg_perr("%s: Address 0x%06x below allowed " |
| 1036 | "range 0x%06x-0xffffff\n", __func__, |
| 1037 | addr, ichspi_bbar); |
| 1038 | return SPI_INVALID_ADDRESS; |
| 1039 | } |
| 1040 | break; |
| 1041 | default: |
| 1042 | break; |
| 1043 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1044 | } |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 1045 | |
Stefan Tauner | b2d5f6a | 2011-06-11 19:44:31 +0000 | [diff] [blame] | 1046 | /* Translate read/write array/count. |
| 1047 | * The maximum data length is identical for the maximum read length and |
| 1048 | * for the maximum write length excluding opcode and address. Opcode and |
| 1049 | * address are stored in separate registers, not in the data registers |
| 1050 | * and are thus not counted towards data length. The only exception |
| 1051 | * applies if the opcode definition (un)intentionally classifies said |
| 1052 | * opcode incorrectly as non-address opcode or vice versa. */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1053 | if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) { |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 1054 | data = (uint8_t *) (writearr + 1); |
| 1055 | count = writecnt - 1; |
| 1056 | } else if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) { |
| 1057 | data = (uint8_t *) (writearr + 4); |
| 1058 | count = writecnt - 4; |
| 1059 | } else { |
| 1060 | data = (uint8_t *) readarr; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1061 | count = readcnt; |
| 1062 | } |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 1063 | |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 1064 | result = run_opcode(*opcode, addr, count, data); |
| 1065 | if (result) { |
Stefan Tauner | 8ed2934 | 2011-04-29 23:53:09 +0000 | [diff] [blame] | 1066 | msg_pdbg("Running OPCODE 0x%02x failed ", opcode->opcode); |
| 1067 | if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) || |
| 1068 | (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS)) { |
| 1069 | msg_pdbg("at address 0x%06x ", addr); |
| 1070 | } |
| 1071 | msg_pdbg("(payload length was %d).\n", count); |
| 1072 | |
| 1073 | /* Print out the data array if it contains data to write. |
| 1074 | * Errors are detected before the received data is read back into |
| 1075 | * the array so it won't make sense to print it then. */ |
| 1076 | if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) || |
| 1077 | (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) { |
| 1078 | int i; |
| 1079 | msg_pspew("The data was:\n"); |
| 1080 | for(i=0; i<count; i++){ |
| 1081 | msg_pspew("%3d: 0x%02x\n", i, data[i]); |
| 1082 | } |
| 1083 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1084 | } |
| 1085 | |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 1086 | return result; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1087 | } |
Carl-Daniel Hailfinger | 02487aa | 2009-07-22 15:36:50 +0000 | [diff] [blame] | 1088 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1089 | static int ich_spi_send_multicommand(struct spi_command *cmds) |
Carl-Daniel Hailfinger | 02487aa | 2009-07-22 15:36:50 +0000 | [diff] [blame] | 1090 | { |
| 1091 | int ret = 0; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1092 | int i; |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 1093 | int oppos, preoppos; |
| 1094 | for (; (cmds->writecnt || cmds->readcnt) && !ret; cmds++) { |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 1095 | if ((cmds + 1)->writecnt || (cmds + 1)->readcnt) { |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1096 | /* Next command is valid. */ |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 1097 | preoppos = find_preop(curopcodes, cmds->writearr[0]); |
| 1098 | oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]); |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1099 | if ((oppos == -1) && (preoppos != -1)) { |
| 1100 | /* Current command is listed as preopcode in |
| 1101 | * ICH struct OPCODES, but next command is not |
| 1102 | * listed as opcode in that struct. |
| 1103 | * Check for command sanity, then |
| 1104 | * try to reprogram the ICH opcode list. |
| 1105 | */ |
| 1106 | if (find_preop(curopcodes, |
| 1107 | (cmds + 1)->writearr[0]) != -1) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1108 | msg_perr("%s: Two subsequent " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1109 | "preopcodes 0x%02x and 0x%02x, " |
| 1110 | "ignoring the first.\n", |
| 1111 | __func__, cmds->writearr[0], |
| 1112 | (cmds + 1)->writearr[0]); |
| 1113 | continue; |
| 1114 | } |
| 1115 | /* If the chipset is locked down, we'll fail |
| 1116 | * during execution of the next command anyway. |
| 1117 | * No need to bother with fixups. |
| 1118 | */ |
| 1119 | if (!ichspi_lock) { |
Helge Wagner | 738e252 | 2010-10-05 22:06:05 +0000 | [diff] [blame] | 1120 | oppos = reprogram_opcode_on_the_fly((cmds + 1)->writearr[0], (cmds + 1)->writecnt, (cmds + 1)->readcnt); |
| 1121 | if (oppos == -1) |
| 1122 | continue; |
| 1123 | curopcodes->opcode[oppos].atomic = preoppos + 1; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1124 | continue; |
| 1125 | } |
| 1126 | } |
| 1127 | if ((oppos != -1) && (preoppos != -1)) { |
| 1128 | /* Current command is listed as preopcode in |
| 1129 | * ICH struct OPCODES and next command is listed |
| 1130 | * as opcode in that struct. Match them up. |
| 1131 | */ |
| 1132 | curopcodes->opcode[oppos].atomic = preoppos + 1; |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 1133 | continue; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1134 | } |
| 1135 | /* If none of the above if-statements about oppos or |
| 1136 | * preoppos matched, this is a normal opcode. |
| 1137 | */ |
| 1138 | } |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 1139 | ret = ich_spi_send_command(cmds->writecnt, cmds->readcnt, |
| 1140 | cmds->writearr, cmds->readarr); |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 1141 | /* Reset the type of all opcodes to non-atomic. */ |
| 1142 | for (i = 0; i < 8; i++) |
| 1143 | curopcodes->opcode[i].atomic = 0; |
Carl-Daniel Hailfinger | 02487aa | 2009-07-22 15:36:50 +0000 | [diff] [blame] | 1144 | } |
| 1145 | return ret; |
| 1146 | } |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1147 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1148 | #define ICH_BMWAG(x) ((x >> 24) & 0xff) |
| 1149 | #define ICH_BMRAG(x) ((x >> 16) & 0xff) |
| 1150 | #define ICH_BRWA(x) ((x >> 8) & 0xff) |
| 1151 | #define ICH_BRRA(x) ((x >> 0) & 0xff) |
| 1152 | |
| 1153 | #define ICH_FREG_BASE(x) ((x >> 0) & 0x1fff) |
| 1154 | #define ICH_FREG_LIMIT(x) ((x >> 16) & 0x1fff) |
| 1155 | |
| 1156 | static void do_ich9_spi_frap(uint32_t frap, int i) |
| 1157 | { |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 1158 | static const char *const access_names[4] = { |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1159 | "locked", "read-only", "write-only", "read-write" |
| 1160 | }; |
Mathias Krause | a60faab | 2011-01-17 07:50:42 +0000 | [diff] [blame] | 1161 | static const char *const region_names[5] = { |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1162 | "Flash Descriptor", "BIOS", "Management Engine", |
| 1163 | "Gigabit Ethernet", "Platform Data" |
| 1164 | }; |
| 1165 | uint32_t base, limit; |
| 1166 | int rwperms = (((ICH_BRWA(frap) >> i) & 1) << 1) | |
| 1167 | (((ICH_BRRA(frap) >> i) & 1) << 0); |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1168 | int offset = ICH9_REG_FREG0 + i * 4; |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1169 | uint32_t freg = mmio_readl(ich_spibar + offset); |
| 1170 | |
| 1171 | msg_pdbg("0x%02X: 0x%08x (FREG%i: %s)\n", |
| 1172 | offset, freg, i, region_names[i]); |
| 1173 | |
| 1174 | base = ICH_FREG_BASE(freg); |
| 1175 | limit = ICH_FREG_LIMIT(freg); |
Joshua Roys | d172ecd | 2011-05-26 13:30:51 +0000 | [diff] [blame] | 1176 | if (base > limit) { |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1177 | /* this FREG is disabled */ |
| 1178 | msg_pdbg("%s region is unused.\n", region_names[i]); |
| 1179 | return; |
| 1180 | } |
| 1181 | |
| 1182 | msg_pdbg("0x%08x-0x%08x is %s\n", |
| 1183 | (base << 12), (limit << 12) | 0x0fff, |
| 1184 | access_names[rwperms]); |
| 1185 | } |
| 1186 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1187 | static const struct spi_programmer spi_programmer_ich7 = { |
| 1188 | .type = SPI_CONTROLLER_ICH7, |
| 1189 | .max_data_read = 64, |
| 1190 | .max_data_write = 64, |
| 1191 | .command = ich_spi_send_command, |
| 1192 | .multicommand = ich_spi_send_multicommand, |
| 1193 | .read = default_spi_read, |
| 1194 | .write_256 = default_spi_write_256, |
| 1195 | }; |
| 1196 | |
| 1197 | static const struct spi_programmer spi_programmer_ich9 = { |
| 1198 | .type = SPI_CONTROLLER_ICH9, |
| 1199 | .max_data_read = 64, |
| 1200 | .max_data_write = 64, |
| 1201 | .command = ich_spi_send_command, |
| 1202 | .multicommand = ich_spi_send_multicommand, |
| 1203 | .read = default_spi_read, |
| 1204 | .write_256 = default_spi_write_256, |
| 1205 | }; |
| 1206 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1207 | int ich_init_spi(struct pci_dev *dev, uint32_t base, void *rcrb, |
| 1208 | int ich_generation) |
| 1209 | { |
| 1210 | int i; |
| 1211 | uint8_t old, new; |
| 1212 | uint16_t spibar_offset, tmp2; |
| 1213 | uint32_t tmp; |
| 1214 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1215 | switch (ich_generation) { |
| 1216 | case 7: |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1217 | register_spi_programmer(&spi_programmer_ich7); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1218 | spibar_offset = 0x3020; |
| 1219 | break; |
| 1220 | case 8: |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1221 | register_spi_programmer(&spi_programmer_ich9); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1222 | spibar_offset = 0x3020; |
| 1223 | break; |
| 1224 | case 9: |
| 1225 | case 10: |
| 1226 | default: /* Future version might behave the same */ |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1227 | register_spi_programmer(&spi_programmer_ich9); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1228 | spibar_offset = 0x3800; |
| 1229 | break; |
| 1230 | } |
| 1231 | |
| 1232 | /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */ |
| 1233 | msg_pdbg("SPIBAR = 0x%x + 0x%04x\n", base, spibar_offset); |
| 1234 | |
| 1235 | /* Assign Virtual Address */ |
| 1236 | ich_spibar = rcrb + spibar_offset; |
| 1237 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1238 | switch (spi_programmer->type) { |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1239 | case SPI_CONTROLLER_ICH7: |
| 1240 | msg_pdbg("0x00: 0x%04x (SPIS)\n", |
| 1241 | mmio_readw(ich_spibar + 0)); |
| 1242 | msg_pdbg("0x02: 0x%04x (SPIC)\n", |
| 1243 | mmio_readw(ich_spibar + 2)); |
| 1244 | msg_pdbg("0x04: 0x%08x (SPIA)\n", |
| 1245 | mmio_readl(ich_spibar + 4)); |
| 1246 | for (i = 0; i < 8; i++) { |
| 1247 | int offs; |
| 1248 | offs = 8 + (i * 8); |
| 1249 | msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs, |
| 1250 | mmio_readl(ich_spibar + offs), i); |
| 1251 | msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4, |
| 1252 | mmio_readl(ich_spibar + offs + 4), i); |
| 1253 | } |
| 1254 | ichspi_bbar = mmio_readl(ich_spibar + 0x50); |
| 1255 | msg_pdbg("0x50: 0x%08x (BBAR)\n", |
| 1256 | ichspi_bbar); |
| 1257 | msg_pdbg("0x54: 0x%04x (PREOP)\n", |
| 1258 | mmio_readw(ich_spibar + 0x54)); |
| 1259 | msg_pdbg("0x56: 0x%04x (OPTYPE)\n", |
| 1260 | mmio_readw(ich_spibar + 0x56)); |
| 1261 | msg_pdbg("0x58: 0x%08x (OPMENU)\n", |
| 1262 | mmio_readl(ich_spibar + 0x58)); |
| 1263 | msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n", |
| 1264 | mmio_readl(ich_spibar + 0x5c)); |
| 1265 | for (i = 0; i < 4; i++) { |
| 1266 | int offs; |
| 1267 | offs = 0x60 + (i * 4); |
| 1268 | msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs, |
| 1269 | mmio_readl(ich_spibar + offs), i); |
| 1270 | } |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1271 | if (mmio_readw(ich_spibar) & (1 << 15)) { |
| 1272 | msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n"); |
| 1273 | ichspi_lock = 1; |
| 1274 | } |
| 1275 | ich_init_opcodes(); |
| 1276 | break; |
| 1277 | case SPI_CONTROLLER_ICH9: |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1278 | tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFS); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1279 | msg_pdbg("0x04: 0x%04x (HSFS)\n", tmp2); |
Stefan Tauner | 5520694 | 2011-06-11 09:53:22 +0000 | [diff] [blame] | 1280 | prettyprint_ich9_reg_hsfs(tmp2); |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1281 | if (tmp2 & HSFS_FLOCKDN) { |
Stefan Tauner | 5520694 | 2011-06-11 09:53:22 +0000 | [diff] [blame] | 1282 | msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n"); |
| 1283 | ichspi_lock = 1; |
| 1284 | } |
| 1285 | |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1286 | tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFC); |
Stefan Tauner | 5520694 | 2011-06-11 09:53:22 +0000 | [diff] [blame] | 1287 | msg_pdbg("0x06: 0x%04x (HSFC)\n", tmp2); |
| 1288 | prettyprint_ich9_reg_hsfc(tmp2); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1289 | |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1290 | tmp = mmio_readl(ich_spibar + ICH9_REG_FRAP); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1291 | msg_pdbg("0x50: 0x%08x (FRAP)\n", tmp); |
| 1292 | msg_pdbg("BMWAG 0x%02x, ", ICH_BMWAG(tmp)); |
| 1293 | msg_pdbg("BMRAG 0x%02x, ", ICH_BMRAG(tmp)); |
| 1294 | msg_pdbg("BRWA 0x%02x, ", ICH_BRWA(tmp)); |
| 1295 | msg_pdbg("BRRA 0x%02x\n", ICH_BRRA(tmp)); |
| 1296 | |
| 1297 | /* print out the FREGx registers along with FRAP access bits */ |
| 1298 | for(i = 0; i < 5; i++) |
| 1299 | do_ich9_spi_frap(tmp, i); |
| 1300 | |
| 1301 | msg_pdbg("0x74: 0x%08x (PR0)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1302 | mmio_readl(ich_spibar + ICH9_REG_PR0)); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1303 | msg_pdbg("0x78: 0x%08x (PR1)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1304 | mmio_readl(ich_spibar + ICH9_REG_PR1)); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1305 | msg_pdbg("0x7C: 0x%08x (PR2)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1306 | mmio_readl(ich_spibar + ICH9_REG_PR2)); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1307 | msg_pdbg("0x80: 0x%08x (PR3)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1308 | mmio_readl(ich_spibar + ICH9_REG_PR3)); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1309 | msg_pdbg("0x84: 0x%08x (PR4)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1310 | mmio_readl(ich_spibar + ICH9_REG_PR4)); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 1311 | |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1312 | tmp = mmio_readl(ich_spibar + ICH9_REG_SSFS); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 1313 | msg_pdbg("0x90: 0x%02x (SSFS)\n", tmp & 0xff); |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 1314 | prettyprint_ich9_reg_ssfs(tmp); |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1315 | if (tmp & SSFS_FCERR) { |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 1316 | msg_pdbg("Clearing SSFS.FCERR\n"); |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1317 | mmio_writeb(SSFS_FCERR, ich_spibar + ICH9_REG_SSFS); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 1318 | } |
Stefan Tauner | 2a8b262 | 2011-06-11 09:53:16 +0000 | [diff] [blame] | 1319 | msg_pdbg("0x91: 0x%06x (SSFC)\n", tmp >> 8); |
| 1320 | prettyprint_ich9_reg_ssfc(tmp); |
Carl-Daniel Hailfinger | eacbd16 | 2011-03-17 00:10:25 +0000 | [diff] [blame] | 1321 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1322 | msg_pdbg("0x94: 0x%04x (PREOP)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1323 | mmio_readw(ich_spibar + ICH9_REG_PREOP)); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1324 | msg_pdbg("0x96: 0x%04x (OPTYPE)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1325 | mmio_readw(ich_spibar + ICH9_REG_OPTYPE)); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1326 | msg_pdbg("0x98: 0x%08x (OPMENU)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1327 | mmio_readl(ich_spibar + ICH9_REG_OPMENU)); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1328 | msg_pdbg("0x9C: 0x%08x (OPMENU+4)\n", |
Stefan Tauner | 29c8083 | 2011-06-12 08:14:10 +0000 | [diff] [blame] | 1329 | mmio_readl(ich_spibar + ICH9_REG_OPMENU + 4)); |
| 1330 | ichspi_bbar = mmio_readl(ich_spibar + ICH9_REG_BBAR); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1331 | msg_pdbg("0xA0: 0x%08x (BBAR)\n", |
| 1332 | ichspi_bbar); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1333 | ich_init_opcodes(); |
| 1334 | break; |
| 1335 | default: |
| 1336 | /* Nothing */ |
| 1337 | break; |
| 1338 | } |
| 1339 | |
| 1340 | old = pci_read_byte(dev, 0xdc); |
| 1341 | msg_pdbg("SPI Read Configuration: "); |
| 1342 | new = (old >> 2) & 0x3; |
| 1343 | switch (new) { |
| 1344 | case 0: |
| 1345 | case 1: |
| 1346 | case 2: |
| 1347 | msg_pdbg("prefetching %sabled, caching %sabled, ", |
| 1348 | (new & 0x2) ? "en" : "dis", |
| 1349 | (new & 0x1) ? "dis" : "en"); |
| 1350 | break; |
| 1351 | default: |
| 1352 | msg_pdbg("invalid prefetching/caching settings, "); |
| 1353 | break; |
| 1354 | } |
| 1355 | return 0; |
| 1356 | } |
| 1357 | |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1358 | static const struct spi_programmer spi_programmer_via = { |
| 1359 | .type = SPI_CONTROLLER_VIA, |
| 1360 | .max_data_read = 16, |
| 1361 | .max_data_write = 16, |
| 1362 | .command = ich_spi_send_command, |
| 1363 | .multicommand = ich_spi_send_multicommand, |
| 1364 | .read = default_spi_read, |
| 1365 | .write_256 = default_spi_write_256, |
| 1366 | }; |
| 1367 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1368 | int via_init_spi(struct pci_dev *dev) |
| 1369 | { |
| 1370 | uint32_t mmio_base; |
Carl-Daniel Hailfinger | 841d631 | 2010-11-24 23:37:22 +0000 | [diff] [blame] | 1371 | int i; |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1372 | |
| 1373 | mmio_base = (pci_read_long(dev, 0xbc)) << 8; |
| 1374 | msg_pdbg("MMIO base at = 0x%x\n", mmio_base); |
| 1375 | ich_spibar = physmap("VT8237S MMIO registers", mmio_base, 0x70); |
| 1376 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1377 | /* Not sure if it speaks all these bus protocols. */ |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 1378 | buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH; |
| 1379 | register_spi_programmer(&spi_programmer_via); |
Carl-Daniel Hailfinger | 841d631 | 2010-11-24 23:37:22 +0000 | [diff] [blame] | 1380 | |
| 1381 | msg_pdbg("0x00: 0x%04x (SPIS)\n", mmio_readw(ich_spibar + 0)); |
| 1382 | msg_pdbg("0x02: 0x%04x (SPIC)\n", mmio_readw(ich_spibar + 2)); |
| 1383 | msg_pdbg("0x04: 0x%08x (SPIA)\n", mmio_readl(ich_spibar + 4)); |
| 1384 | for (i = 0; i < 2; i++) { |
| 1385 | int offs; |
| 1386 | offs = 8 + (i * 8); |
| 1387 | msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs, |
| 1388 | mmio_readl(ich_spibar + offs), i); |
| 1389 | msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4, |
| 1390 | mmio_readl(ich_spibar + offs + 4), i); |
| 1391 | } |
| 1392 | ichspi_bbar = mmio_readl(ich_spibar + 0x50); |
| 1393 | msg_pdbg("0x50: 0x%08x (BBAR)\n", ichspi_bbar); |
| 1394 | msg_pdbg("0x54: 0x%04x (PREOP)\n", mmio_readw(ich_spibar + 0x54)); |
| 1395 | msg_pdbg("0x56: 0x%04x (OPTYPE)\n", mmio_readw(ich_spibar + 0x56)); |
| 1396 | msg_pdbg("0x58: 0x%08x (OPMENU)\n", mmio_readl(ich_spibar + 0x58)); |
| 1397 | msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n", mmio_readl(ich_spibar + 0x5c)); |
| 1398 | for (i = 0; i < 3; i++) { |
| 1399 | int offs; |
| 1400 | offs = 0x60 + (i * 4); |
| 1401 | msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs, |
| 1402 | mmio_readl(ich_spibar + offs), i); |
| 1403 | } |
| 1404 | msg_pdbg("0x6c: 0x%04x (CLOCK/DEBUG)\n", |
| 1405 | mmio_readw(ich_spibar + 0x6c)); |
| 1406 | if (mmio_readw(ich_spibar) & (1 << 15)) { |
| 1407 | msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n"); |
| 1408 | ichspi_lock = 1; |
| 1409 | } |
| 1410 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1411 | ich_init_opcodes(); |
| 1412 | |
| 1413 | return 0; |
| 1414 | } |
| 1415 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1416 | #endif |