flash.h 27.4 KB
Newer Older
1
/*
2
 * This file is part of the flashrom project.
3
 *
4 5 6
 * Copyright (C) 2000 Silicon Integrated System Corporation
 * Copyright (C) 2000 Ronald G. Minnich <rminnich@gmail.com>
 * Copyright (C) 2005-2007 coresystems GmbH <stepan@coresystems.de>
7
 *
8 9 10 11
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
12
 *
13 14 15 16
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
17
 *
18 19 20
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
21 22
 */

Ronald G. Minnich's avatar
Ronald G. Minnich committed
23 24 25
#ifndef __FLASH_H__
#define __FLASH_H__ 1

26
#if defined(__GLIBC__)
27
#include <sys/io.h>
28
#endif
29
#include <unistd.h>
30
#include <stdint.h>
31
#include <stdio.h>
32
#include <pci/pci.h>
33

34 35 36 37 38 39 40 41
/* for iopl and outb under Solaris */
#if defined (__sun) && (defined(__i386) || defined(__amd64))
#include <strings.h>
#include <sys/sysi86.h>
#include <sys/psw.h>
#include <asm/sunddi.h>
#endif

Stefan Reinauer's avatar
Stefan Reinauer committed
42 43 44 45
#if (defined(__MACH__) && defined(__APPLE__))
#define __DARWIN__
#endif

46
#if defined(__FreeBSD__) || defined(__DragonFly__)
47 48 49 50 51 52 53 54 55 56
  #include <machine/cpufunc.h>
  #define off64_t off_t
  #define lseek64 lseek
  #define OUTB(x, y) do { u_int tmp = (y); outb(tmp, (x)); } while (0)
  #define OUTW(x, y) do { u_int tmp = (y); outw(tmp, (x)); } while (0)
  #define OUTL(x, y) do { u_int tmp = (y); outl(tmp, (x)); } while (0)
  #define INB(x) __extension__ ({ u_int tmp = (x); inb(tmp); })
  #define INW(x) __extension__ ({ u_int tmp = (x); inw(tmp); })
  #define INL(x) __extension__ ({ u_int tmp = (x); inl(tmp); })
#else
Stefan Reinauer's avatar
Stefan Reinauer committed
57 58 59 60 61
#if defined(__DARWIN__)
    #include <DirectIO/darwinio.h>
    #define off64_t off_t
    #define lseek64 lseek
#endif
62 63 64 65 66 67 68 69 70
#if defined (__sun) && (defined(__i386) || defined(__amd64))
  /* Note different order for outb */
  #define OUTB(x,y) outb(y, x)
  #define OUTW(x,y) outw(y, x)
  #define OUTL(x,y) outl(y, x)
  #define INB  inb
  #define INW  inw
  #define INL  inl
#else
71 72 73 74 75 76 77
  #define OUTB outb
  #define OUTW outw
  #define OUTL outl
  #define INB  inb
  #define INW  inw
  #define INL  inl
#endif
78
#endif
79

80 81
typedef unsigned long chipaddr;

82
extern int programmer;
83 84
#define PROGRAMMER_INTERNAL	0x00
#define PROGRAMMER_DUMMY	0x01
85
#define PROGRAMMER_NIC3COM	0x02
86
#define PROGRAMMER_SATASII	0x03
87 88 89 90 91 92 93 94

struct programmer_entry {
	const char *vendor;
	const char *name;

	int (*init) (void);
	int (*shutdown) (void);

Uwe Hermann's avatar
Uwe Hermann committed
95 96
	void * (*map_flash_region) (const char *descr, unsigned long phys_addr,
				    size_t len);
97 98
	void (*unmap_flash_region) (void *virt_addr, size_t len);

99 100 101 102 103 104
	void (*chip_writeb) (uint8_t val, chipaddr addr);
	void (*chip_writew) (uint16_t val, chipaddr addr);
	void (*chip_writel) (uint32_t val, chipaddr addr);
	uint8_t (*chip_readb) (const chipaddr addr);
	uint16_t (*chip_readw) (const chipaddr addr);
	uint32_t (*chip_readl) (const chipaddr addr);
105 106 107 108
};

extern const struct programmer_entry programmer_table[];

109 110 111 112 113 114 115 116 117 118 119
int programmer_init(void);
int programmer_shutdown(void);
void *programmer_map_flash_region(const char *descr, unsigned long phys_addr,
				  size_t len);
void programmer_unmap_flash_region(void *virt_addr, size_t len);
void chip_writeb(uint8_t val, chipaddr addr);
void chip_writew(uint16_t val, chipaddr addr);
void chip_writel(uint32_t val, chipaddr addr);
uint8_t chip_readb(const chipaddr addr);
uint16_t chip_readw(const chipaddr addr);
uint32_t chip_readl(const chipaddr addr);
120

121 122
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))

123
struct flashchip {
124
	const char *vendor;
125
	const char *name;
126 127
	/*
	 * With 32bit manufacture_id and model_id we can cover IDs up to
128 129 130 131 132
	 * (including) the 4th bank of JEDEC JEP106W Standard Manufacturer's
	 * Identification code.
	 */
	uint32_t manufacture_id;
	uint32_t model_id;
133 134 135 136

	int total_size;
	int page_size;

137 138
	/*
	 * Indicate if flashrom has been tested with this flash chip and if
139 140 141 142
	 * everything worked correctly.
	 */
	uint32_t tested;

Uwe Hermann's avatar
Uwe Hermann committed
143 144 145 146
	int (*probe) (struct flashchip *flash);
	int (*erase) (struct flashchip *flash);
	int (*write) (struct flashchip *flash, uint8_t *buf);
	int (*read) (struct flashchip *flash, uint8_t *buf);
Ronald G. Minnich's avatar
Ronald G. Minnich committed
147

148
	/* Some flash devices have an additional register space. */
149 150
	chipaddr virtual_memory;
	chipaddr virtual_registers;
151 152
};

153 154
#define TEST_UNTESTED	0

Uwe Hermann's avatar
Uwe Hermann committed
155 156 157 158 159 160 161
#define TEST_OK_PROBE	(1 << 0)
#define TEST_OK_READ	(1 << 1)
#define TEST_OK_ERASE	(1 << 2)
#define TEST_OK_WRITE	(1 << 3)
#define TEST_OK_PR	(TEST_OK_PROBE | TEST_OK_READ)
#define TEST_OK_PRE	(TEST_OK_PROBE | TEST_OK_READ | TEST_OK_ERASE)
#define TEST_OK_PREW	(TEST_OK_PROBE | TEST_OK_READ | TEST_OK_ERASE | TEST_OK_WRITE)
162 163
#define TEST_OK_MASK	0x0f

Uwe Hermann's avatar
Uwe Hermann committed
164 165 166 167 168
#define TEST_BAD_PROBE	(1 << 4)
#define TEST_BAD_READ	(1 << 5)
#define TEST_BAD_ERASE	(1 << 6)
#define TEST_BAD_WRITE	(1 << 7)
#define TEST_BAD_PREW	(TEST_BAD_PROBE | TEST_BAD_READ | TEST_BAD_ERASE | TEST_BAD_WRITE)
169 170
#define TEST_BAD_MASK	0xf0

171 172
extern struct flashchip flashchips[];

Uwe Hermann's avatar
Uwe Hermann committed
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
struct penable {
	uint16_t vendor_id;
	uint16_t device_id;
	int status;
	const char *vendor_name;
	const char *device_name;
	int (*doit) (struct pci_dev *dev, const char *name);
};

extern const struct penable chipset_enables[];

struct board_pciid_enable {
	/* Any device, but make it sensible, like the ISA bridge. */
	uint16_t first_vendor;
	uint16_t first_device;
	uint16_t first_card_vendor;
	uint16_t first_card_device;

	/* Any device, but make it sensible, like
	 * the host bridge. May be NULL.
	 */
	uint16_t second_vendor;
	uint16_t second_device;
	uint16_t second_card_vendor;
	uint16_t second_card_device;

	/* The vendor / part name from the coreboot table. */
	const char *lb_vendor;
	const char *lb_part;

	const char *vendor_name;
	const char *board_name;

	int (*enable) (const char *name);
};

extern struct board_pciid_enable board_pciid_enables[];

struct board_info {
	const char *vendor;
	const char *name;
};

extern const struct board_info boards_ok[];
extern const struct board_info boards_bad[];

219 220
/*
 * Please keep this list sorted alphabetically by manufacturer. The first
221 222
 * entry of each section should be the manufacturer ID, followed by the
 * list of devices from that manufacturer (sorted by device IDs).
223
 *
224 225
 * All LPC/FWH parts (parallel flash) have 8-bit device IDs if there is no
 * continuation code.
226
 * SPI parts have 16-bit device IDs if they support RDID.
227 228
 */

229 230
#define GENERIC_DEVICE_ID	0xffff	/* Only match the vendor ID */

231
#define ALLIANCE_ID		0x52	/* Alliance Semiconductor */
232

233
#define AMD_ID			0x01	/* AMD */
234 235
#define AM_29F002BT		0xB0
#define AM_29F002BB		0x34
Uwe Hermann's avatar
Uwe Hermann committed
236
#define AM_29F040B		0xA4
Peter Lemenkov's avatar
Peter Lemenkov committed
237
#define AM_29LV040B		0x4F
Uwe Hermann's avatar
Uwe Hermann committed
238 239
#define AM_29F016D		0xAD

240
#define AMIC_ID			0x7F37	/* AMIC */
241
#define AMIC_ID_NOPREFIX	0x37	/* AMIC */
242
#define AMIC_A25L40P		0x2013
243 244 245
#define AMIC_A29002B		0x0d
#define AMIC_A29002T		0x8c
#define AMIC_A29040B		0x86
246
#define AMIC_A49LF040A		0x9d
247

248
/* This chip vendor/device ID is probably a misinterpreted LHA header. */
249
#define ASD_ID			0x25	/* ASD, not listed in JEP106W */
Uwe Hermann's avatar
Uwe Hermann committed
250 251
#define ASD_AE49F2008		0x52

252
#define ATMEL_ID		0x1F	/* Atmel */
253 254 255 256 257 258 259
#define AT_25DF021		0x4300
#define AT_25DF041A		0x4401
#define AT_25DF081		0x4502
#define AT_25DF161		0x4602
#define AT_25DF321		0x4700	/* also 26DF321 */
#define AT_25DF321A		0x4701
#define AT_25DF641		0x4800
260 261 262 263
#define AT_25F512A		0x65 /* Needs special RDID. AT25F512A_RDID 15 1d */
#define AT_25F512B		0x6500
#define AT_25FS010		0x6601
#define AT_25FS040		0x6604
264 265 266 267 268
#define AT_26DF041		0x4400
#define AT_26DF081		0x4500	/* guessed, no datasheet available */
#define AT_26DF081A		0x4501
#define AT_26DF161		0x4600
#define AT_26DF161A		0x4601
269 270
#define AT_26DF321		0x4700	/* also 25DF321 */
#define AT_26F004		0x0400
271
#define AT_29C040A		0xA4
272
#define AT_29C010A		0xD5	
273
#define AT_29C020		0xDA
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
#define AT_45BR3214B		/* No ID available */
#define AT_45CS1282		0x2920
#define AT_45D011		/* No ID available */
#define AT_45D021A		/* No ID available */
#define AT_45D041A		/* No ID available */
#define AT_45D081A		/* No ID available */
#define AT_45D161		/* No ID available */
#define AT_45DB011		/* No ID available */
#define AT_45DB011B		/* No ID available */
#define AT_45DB011D		0x2200
#define AT_45DB021A		/* No ID available */
#define AT_45DB021B		/* No ID available */
#define AT_45DB021D		0x2300
#define AT_45DB041A		/* No ID available */
#define AT_45DB041D		0x2400
#define AT_45DB081A		/* No ID available */
#define AT_45DB081D		0x2500
#define AT_45DB161		/* No ID available */
#define AT_45DB161B		/* No ID available */
#define AT_45DB161D		0x2600
#define AT_45DB321		/* No ID available */
#define AT_45DB321B		/* No ID available */
#define AT_45DB321C		0x2700
#define AT_45DB321D		0x2701 /* Buggy data sheet */
#define AT_45DB642		/* No ID available */
#define AT_45DB642D		0x2800
300
#define AT_49BV512		0x03
301 302
#define AT_49F002N		0x07	/* for AT49F002(N)  */
#define AT_49F002NT		0x08	/* for AT49F002(N)T */
Uwe Hermann's avatar
Uwe Hermann committed
303

304 305
#define CATALYST_ID		0x31	/* Catalyst */

306
#define EMST_ID			0x8C	/* EMST / EFST Elite Flash Storage */
307 308
#define EMST_F49B002UA		0x00

309 310 311
/*
 * EN25 chips are SPI, first byte of device ID is memory type,
 * second byte of device ID is log(bitsize)-9.
312 313 314 315 316
 * Vendor and device ID of EN29 series are both prefixed with 0x7F, which
 * is the continuation code for IDs in bank 2.
 * Vendor ID of EN25 series is NOT prefixed with 0x7F, this results in
 * a collision with Mitsubishi. Mitsubishi once manufactured flash chips.
 * Let's hope they are not manufacturing SPI flash chips as well.
317
 */
318 319
#define EON_ID			0x7F1C	/* EON Silicon Devices */
#define EON_ID_NOPREFIX		0x1C	/* EON, missing 0x7F prefix */
320 321 322 323 324 325 326
#define EN_25B05		0x2010	/* 2^19 kbit or 2^16 kByte */
#define EN_25B10		0x2011
#define EN_25B20		0x2012
#define EN_25B40		0x2013
#define EN_25B80		0x2014
#define EN_25B16		0x2015
#define EN_25B32		0x2016
327 328 329 330 331
#define EN_29F512		0x7F21
#define EN_29F010		0x7F20
#define EN_29F040A		0x7F04
#define EN_29LV010		0x7F6E
#define EN_29LV040A		0x7F4F	/* EN_29LV040(A) */
332 333
#define EN_29F002T		0x7F92
#define EN_29F002B		0x7F97
334

335
#define FUJITSU_ID		0x04	/* Fujitsu */
336 337 338 339
#define MBM29F400BC		0xAB
#define MBM29F400TC		0x23
#define MBM29F004BC		0x7B
#define MBM29F004TC		0x77
340 341 342

#define HYUNDAI_ID		0xAD	/* Hyundai */

343 344 345
#define IMT_ID			0x7F1F	/* Integrated Memory Technologies */
#define IM_29F004B		0xAE
#define IM_29F004T		0xAF
346 347

#define INTEL_ID		0x89	/* Intel */
348 349
#define P28F001BXT		0x94	/* 28F001BX-T */
#define P28F001BXB		0x95	/* 28F001BX-B */
350

351
#define ISSI_ID			0xD5	/* ISSI Integrated Silicon Solutions */
352

353 354 355
/*
 * MX25 chips are SPI, first byte of device ID is memory type,
 * second byte of device ID is log(bitsize)-9.
356 357
 * Generalplus SPI chips seem to be compatible with Macronix
 * and use the same set of IDs.
358
 */
359
#define MX_ID			0xC2	/* Macronix (MX) */
360 361 362 363 364 365 366 367
#define MX_25L512		0x2010	/* 2^19 kbit or 2^16 kByte */
#define MX_25L1005		0x2011
#define MX_25L2005		0x2012
#define MX_25L4005		0x2013	/* MX25L4005{,A} */
#define MX_25L8005		0x2014
#define MX_25L1605		0x2015	/* MX25L1605{,A,D} */
#define MX_25L3205		0x2016	/* MX25L3205{,A} */
#define MX_25L6405		0x2017	/* MX25L3205{,D} */
368
#define MX_25L12805		0x2018	/* MX25L12805 */
369
#define MX_25L1635D		0x2415
Stephan Guilloux's avatar
Stephan Guilloux committed
370
#define MX_25L3235D		0x5E16	/* MX25L3225D/MX25L3235D/MX25L3237D */
371 372
#define MX_29F002B		0x34
#define MX_29F002T		0xB0
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
#define MX_29LV002CB		0x5A
#define MX_29LV002CT		0x59
#define MX_29LV004CB		0xB6
#define MX_29LV004CT		0xB5
#define MX_29LV008CB		0x37
#define MX_29LV008CT		0x3E
#define MX_29F040C		0xA4
#define MX_29F200CB		0x57
#define MX_29F200CT		0x51
#define MX_29F400CB		0xAB
#define MX_29F400CT		0x23
#define MX_29LV040C		0x4F
#define MX_29LV128DB		0x7A
#define MX_29LV128DT		0x7E
#define MX_29LV160DB		0x49	/* Same as MX29LV161DB/MX29LV160CB */
#define MX_29LV160DT		0xC4	/* Same as MX29LV161DT/MX29LV160CT */
#define MX_29LV320DB		0xA8	/* Same as MX29LV321DB */
#define MX_29LV320DT		0xA7	/* Same as MX29LV321DT */
#define MX_29LV400CB		0xBA
#define MX_29LV400CT		0xB9
#define MX_29LV800CB		0x5B
#define MX_29LV800CT		0xDA
#define MX_29LV640DB		0xCB	/* Same as MX29LV640EB */
#define MX_29LV640DT		0xC9	/* Same as MX29LV640ET */
#define MX_29SL402CB		0xF1
#define MX_29SL402CT		0x70
#define MX_29SL800CB		0x6B	/* Same as MX29SL802CB */
#define MX_29SL800CT		0xEA	/* Same as MX29SL802CT */
Uwe Hermann's avatar
Uwe Hermann committed
401

402 403 404
/*
 * Programmable Micro Corp is listed in JEP106W in bank 2, so it should
 * have a 0x7F continuation code prefix.
405
 */
406 407 408 409 410 411 412 413 414 415 416 417 418 419
#define PMC_ID			0x7F9D	/* PMC */
#define PMC_ID_NOPREFIX		0x9D	/* PMC, missing 0x7F prefix */
#define PMC_25LV512		0x7B
#define PMC_25LV010		0x7C
#define PMC_25LV020		0x7D
#define PMC_25LV040		0x7E
#define PMC_25LV080B		0x13
#define PMC_25LV016B		0x14
#define PMC_39LV512		0x1B
#define PMC_39F010		0x1C	/* also Pm39LV010 */
#define PMC_39LV020		0x3D
#define PMC_39LV040		0x3E
#define PMC_39F020		0x4D
#define PMC_39F040		0x4E
420 421 422
#define PMC_49FL002		0x6D
#define PMC_49FL004		0x6E

423
#define SHARP_ID		0xB0	/* Sharp */
Uwe Hermann's avatar
Uwe Hermann committed
424 425
#define SHARP_LHF00L04		0xCF

426 427 428 429 430 431 432 433
/*
 * Spansion was previously a joint venture of AMD and Fujitsu.
 * S25 chips are SPI. The first device ID byte is memory type and
 * the second device ID byte is memory capacity.
 */
#define SPANSION_ID		0x01	/* Spansion */
#define SPANSION_S25FL016A	0x0214

434 435 436 437
/*
 * SST25 chips are SPI, first byte of device ID is memory type, second
 * byte of device ID is related to log(bitsize) at least for some chips.
 */
438
#define SST_ID			0xBF	/* SST */
439 440 441 442
#define SST_25WF512		0x2501
#define SST_25WF010		0x2502
#define SST_25WF020		0x2503
#define SST_25WF040		0x2504
443 444 445 446
#define SST_25VF512A_REMS	0x48	/* REMS or RES opcode */
#define SST_25VF010_REMS	0x49	/* REMS or RES opcode */
#define SST_25VF020_REMS	0x43	/* REMS or RES opcode */
#define SST_25VF040_REMS	0x44	/* REMS or RES opcode */
447
#define SST_25VF040B		0x258D
448 449
#define SST_25VF040B_REMS	0x8D	/* REMS or RES opcode */
#define SST_25VF080_REMS	0x80	/* REMS or RES opcode */
450
#define SST_25VF080B		0x258E
451 452 453 454 455 456
#define SST_25VF080B_REMS	0x8E	/* REMS or RES opcode */
#define SST_25VF016B		0x2541
#define SST_25VF032B		0x254A
#define SST_25VF032B_REMS	0x4A	/* REMS or RES opcode */
#define SST_26VF016		0x2601
#define SST_26VF032		0x2602
457 458 459 460 461
#define SST_27SF512		0xA4
#define SST_27SF010		0xA5
#define SST_27SF020		0xA6
#define SST_27VF010		0xA9
#define SST_27VF020		0xAA
462
#define SST_28SF040		0x04
463 464 465 466 467 468 469 470 471
#define SST_29EE512		0x5D
#define SST_29EE010		0x07
#define SST_29LE010		0x08	/* also SST29VE010 */
#define SST_29EE020A		0x10
#define SST_29LE020		0x12	/* also SST29VE020 */
#define SST_29SF020		0x24
#define SST_29VF020		0x25
#define SST_29SF040		0x13
#define SST_29VF040		0x14
472 473 474
#define SST_39SF010		0xB5
#define SST_39SF020		0xB6
#define SST_39SF040		0xB7
475 476
#define SST_39VF512		0xD4
#define SST_39VF010		0xD5
477
#define SST_39VF020		0xD6
478
#define SST_39VF040		0xD7
479 480
#define SST_49LF040B		0x50
#define SST_49LF040		0x51
Sven Schnelle's avatar
Sven Schnelle committed
481
#define SST_49LF020		0x61
482 483 484 485 486 487 488 489 490 491 492
#define SST_49LF020A		0x52
#define SST_49LF080A		0x5B
#define SST_49LF002A		0x57
#define SST_49LF003A		0x1B
#define SST_49LF004A		0x60
#define SST_49LF008A		0x5A
#define SST_49LF004C		0x54
#define SST_49LF008C		0x59
#define SST_49LF016C		0x5C
#define SST_49LF160C		0x4C

493 494 495 496
/*
 * ST25P chips are SPI, first byte of device ID is memory type, second
 * byte of device ID is related to log(bitsize) at least for some chips.
 */
497
#define ST_ID			0x20	/* ST / SGS/Thomson */
498 499 500 501
#define ST_M25P05A		0x2010
#define ST_M25P10A		0x2011
#define ST_M25P20		0x2012
#define ST_M25P40		0x2013
502
#define ST_M25P40_RES		0x12
503
#define ST_M25P80		0x2014
504 505 506 507
#define ST_M25P16		0x2015
#define ST_M25P32		0x2016
#define ST_M25P64		0x2017
#define ST_M25P128		0x2018
508 509 510 511
#define ST_M50FLW040A		0x08
#define ST_M50FLW040B		0x28
#define ST_M50FLW080A		0x80
#define ST_M50FLW080B		0x81
512
#define ST_M50FW002		0x29
513
#define ST_M50FW040		0x2C
514 515 516
#define ST_M50FW080		0x2D
#define ST_M50FW016		0x2E
#define ST_M50LPW116		0x30
517 518
#define ST_M29F002B		0x34
#define ST_M29F002T		0xB0	/* M29F002T / M29F002NT */
Uwe Hermann's avatar
Uwe Hermann committed
519
#define ST_M29F400BT		0xD5
520
#define ST_M29F040B		0xE2
521
#define ST_M29W010B		0x23
522
#define ST_M29W040B		0xE3
Uwe Hermann's avatar
Uwe Hermann committed
523

524
#define SYNCMOS_ID		0x40	/* SyncMOS and Mosel Vitelic */
525 526 527 528
#define S29C51001T		0x01
#define S29C51002T		0x02
#define S29C51004T		0x03
#define S29C31004T		0x63
529

530
#define TI_ID			0x97	/* Texas Instruments */
531 532 533
#define TI_OLD_ID		0x01	/* TI chips from last century */
#define TI_TMS29F002RT		0xB0
#define TI_TMS29F002RB		0x34
534

535 536 537 538
/*
 * W25X chips are SPI, first byte of device ID is memory type, second
 * byte of device ID is related to log(bitsize).
 */
539
#define WINBOND_ID		0xDA	/* Winbond */
Uwe Hermann's avatar
Uwe Hermann committed
540
#define WINBOND_NEX_ID		0xEF	/* Winbond (ex Nexcom) serial flashes */
541 542 543 544
#define W_25X10			0x3011
#define W_25X20			0x3012
#define W_25X40			0x3013
#define W_25X80			0x3014
545 546 547
#define W_25X16			0x3015
#define W_25X32			0x3016
#define W_25X64			0x3017
548 549 550 551 552 553 554 555
#define W_29C011		0xC1
#define W_29C020C		0x45
#define W_29C040P		0x46
#define W_29EE011		0xC1
#define W_39V040FA		0x34
#define W_39V040A		0x3D
#define W_39V040B		0x54
#define W_39V080A		0xD0
556 557
#define W_39V080FA		0xD3
#define W_39V080FA_DM		0x93
558 559 560 561
#define W_49F002U		0x0B
#define W_49V002A		0xB0
#define W_49V002FA		0x32

562
/* udelay.c */
Stefan Reinauer's avatar
Stefan Reinauer committed
563
void myusec_delay(int time);
564
void myusec_calibrate_delay(void);
565

566 567 568
/* pcidev.c */
#define PCI_OK 0
#define PCI_NT 1    /* Not tested */
569

570 571 572
extern uint32_t io_base_addr;
extern struct pci_access *pacc;
extern struct pci_filter filter;
573
extern struct pci_dev *pcidev_dev;
574 575 576 577 578 579 580 581 582 583 584
struct pcidev_status {
	uint16_t vendor_id;
	uint16_t device_id;
	int status;
	const char *vendor_name;
	const char *device_name;
};
uint32_t pcidev_validate(struct pci_dev *dev, struct pcidev_status *devs);
uint32_t pcidev_init(uint16_t vendor_id, struct pcidev_status *devs);
void print_supported_pcidevs(struct pcidev_status *devs);

585
/* board_enable.c */
586 587
void w836xx_ext_enter(uint16_t port);
void w836xx_ext_leave(uint16_t port);
588 589 590
uint8_t sio_read(uint16_t port, uint8_t reg);
void sio_write(uint16_t port, uint8_t reg, uint8_t data);
void sio_mask(uint16_t port, uint8_t reg, uint8_t data, uint8_t mask);
591
int board_flash_enable(const char *vendor, const char *part);
592
void print_supported_boards(void);
593

594 595
/* chipset_enable.c */
int chipset_flash_enable(void);
596
void print_supported_chipsets(void);
597

598 599
extern unsigned long flashbase;

600 601 602 603 604
typedef enum {
	BUS_TYPE_LPC,
	BUS_TYPE_ICH7_SPI,
	BUS_TYPE_ICH9_SPI,
	BUS_TYPE_IT87XX_SPI,
605
	BUS_TYPE_SB600_SPI,
Peter Stuge's avatar
Peter Stuge committed
606
	BUS_TYPE_VIA_SPI,
607 608
	BUS_TYPE_WBSIO_SPI,
	BUS_TYPE_DUMMY_SPI
609 610 611 612
} flashbus_t;

extern flashbus_t flashbus;
extern void *spibar;
613

614 615 616 617
/* physmap.c */
void *physmap(const char *descr, unsigned long phys_addr, size_t len);
void physunmap(void *virt_addr, size_t len);

618
/* internal.c */
619 620 621 622
struct pci_dev *pci_dev_find_filter(struct pci_filter filter);
struct pci_dev *pci_dev_find(uint16_t vendor, uint16_t device);
struct pci_dev *pci_card_find(uint16_t vendor, uint16_t device,
			      uint16_t card_vendor, uint16_t card_device);
623
void get_io_perms(void);
624 625
int internal_init(void);
int internal_shutdown(void);
626 627 628 629 630 631
void internal_chip_writeb(uint8_t val, chipaddr addr);
void internal_chip_writew(uint16_t val, chipaddr addr);
void internal_chip_writel(uint32_t val, chipaddr addr);
uint8_t internal_chip_readb(const chipaddr addr);
uint16_t internal_chip_readw(const chipaddr addr);
uint32_t internal_chip_readl(const chipaddr addr);
632 633 634 635 636 637
void mmio_writeb(uint8_t val, void *addr);
void mmio_writew(uint16_t val, void *addr);
void mmio_writel(uint32_t val, void *addr);
uint8_t mmio_readb(void *addr);
uint16_t mmio_readw(void *addr);
uint32_t mmio_readl(void *addr);
638 639
void *fallback_map(const char *descr, unsigned long phys_addr, size_t len);
void fallback_unmap(void *virt_addr, size_t len);
640 641 642 643
void fallback_chip_writew(uint16_t val, chipaddr addr);
void fallback_chip_writel(uint32_t val, chipaddr addr);
uint16_t fallback_chip_readw(const chipaddr addr);
uint32_t fallback_chip_readl(const chipaddr addr);
644 645 646
#if defined(__FreeBSD__) || defined(__DragonFly__)
extern int io_fd;
#endif
647

648 649 650
/* dummyflasher.c */
int dummy_init(void);
int dummy_shutdown(void);
651 652
void *dummy_map(const char *descr, unsigned long phys_addr, size_t len);
void dummy_unmap(void *virt_addr, size_t len);
653 654 655 656 657 658
void dummy_chip_writeb(uint8_t val, chipaddr addr);
void dummy_chip_writew(uint16_t val, chipaddr addr);
void dummy_chip_writel(uint32_t val, chipaddr addr);
uint8_t dummy_chip_readb(const chipaddr addr);
uint16_t dummy_chip_readw(const chipaddr addr);
uint32_t dummy_chip_readl(const chipaddr addr);
659 660
int dummy_spi_command(unsigned int writecnt, unsigned int readcnt,
		      const unsigned char *writearr, unsigned char *readarr);
661

662 663 664
/* nic3com.c */
int nic3com_init(void);
int nic3com_shutdown(void);
665 666
void nic3com_chip_writeb(uint8_t val, chipaddr addr);
uint8_t nic3com_chip_readb(const chipaddr addr);
667
extern struct pcidev_status nics_3com[];
668

669 670 671 672 673 674 675
/* satasii.c */
int satasii_init(void);
int satasii_shutdown(void);
void satasii_chip_writeb(uint8_t val, chipaddr addr);
uint8_t satasii_chip_readb(const chipaddr addr);
extern struct pcidev_status satas_sii[];

676
/* flashrom.c */
Uwe Hermann's avatar
Uwe Hermann committed
677 678
extern int verbose;
#define printf_debug(x...) { if (verbose) printf(x); }
679
void map_flash_registers(struct flashchip *flash);
680
int read_memmapped(struct flashchip *flash, uint8_t *buf);
681
extern char *pcidev_bdf;
682 683

/* layout.c */
Peter Stuge's avatar
Peter Stuge committed
684
int show_id(uint8_t *bios, int size, int force);
685 686 687 688
int read_romlayout(char *name);
int find_romentry(char *name);
int handle_romentries(uint8_t *buffer, uint8_t *content);

Uwe Hermann's avatar
Uwe Hermann committed
689
/* cbtable.c */
Stefan Reinauer's avatar
Stefan Reinauer committed
690
int coreboot_init(void);
691 692
extern char *lb_part, *lb_vendor;

693
/* spi.c */
694
int probe_spi_rdid(struct flashchip *flash);
695
int probe_spi_rdid4(struct flashchip *flash);
696
int probe_spi_rems(struct flashchip *flash);
697
int probe_spi_res(struct flashchip *flash);
698 699
int spi_command(unsigned int writecnt, unsigned int readcnt,
		const unsigned char *writearr, unsigned char *readarr);
700 701
int spi_write_enable(void);
int spi_write_disable(void);
702
int spi_chip_erase_60(struct flashchip *flash);
703
int spi_chip_erase_c7(struct flashchip *flash);
704
int spi_chip_erase_60_c7(struct flashchip *flash);
705
int spi_chip_erase_d8(struct flashchip *flash);
706 707
int spi_block_erase_52(const struct flashchip *flash, unsigned long addr);
int spi_block_erase_d8(const struct flashchip *flash, unsigned long addr);
708
int spi_chip_write_1(struct flashchip *flash, uint8_t *buf);
709
int spi_chip_write_256(struct flashchip *flash, uint8_t *buf);
710
int spi_chip_read(struct flashchip *flash, uint8_t *buf);
711
uint8_t spi_read_status_register(void);
712
int spi_disable_blockprotect(void);
713
void spi_byte_program(int address, uint8_t byte);
714
int spi_nbyte_read(int address, uint8_t *bytes, int len);
715
int spi_aai_write(struct flashchip *flash, uint8_t *buf);
716
uint32_t spi_get_valid_read_addr(void);
717

718
/* 82802ab.c */
Uwe Hermann's avatar
Uwe Hermann committed
719 720 721
int probe_82802ab(struct flashchip *flash);
int erase_82802ab(struct flashchip *flash);
int write_82802ab(struct flashchip *flash, uint8_t *buf);
722 723

/* am29f040b.c */
Uwe Hermann's avatar
Uwe Hermann committed
724 725 726
int probe_29f040b(struct flashchip *flash);
int erase_29f040b(struct flashchip *flash);
int write_29f040b(struct flashchip *flash, uint8_t *buf);
727 728 729 730 731

/* en29f002a.c */
int probe_en29f002a(struct flashchip *flash);
int erase_en29f002a(struct flashchip *flash);
int write_en29f002a(struct flashchip *flash, uint8_t *buf);
732

733
/* ichspi.c */
734
int ich_init_opcodes(void);
735 736
int ich_spi_command(unsigned int writecnt, unsigned int readcnt,
		    const unsigned char *writearr, unsigned char *readarr);
737
int ich_spi_read(struct flashchip *flash, uint8_t * buf);
738
int ich_spi_write_256(struct flashchip *flash, uint8_t * buf);
739

740 741
/* it87spi.c */
extern uint16_t it8716f_flashport;
742 743
void enter_conf_mode_ite(uint16_t port);
void exit_conf_mode_ite(uint16_t port);
744
int it87xx_probe_spi_flash(const char *name);
745 746
int it8716f_spi_command(unsigned int writecnt, unsigned int readcnt,
			const unsigned char *writearr, unsigned char *readarr);
747
int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf);
748 749
int it8716f_spi_chip_write_1(struct flashchip *flash, uint8_t *buf);
int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf);
750

751 752 753 754
/* sb600spi.c */
int sb600_spi_command(unsigned int writecnt, unsigned int readcnt,
		      const unsigned char *writearr, unsigned char *readarr);
int sb600_spi_read(struct flashchip *flash, uint8_t *buf);
755
int sb600_spi_write_1(struct flashchip *flash, uint8_t *buf);
756
uint8_t sb600_read_status_register(void);
757
extern uint8_t *sb600_spibar;
758

759
/* jedec.c */
760
uint8_t oddparity(uint8_t val);
761 762 763 764 765 766
void toggle_ready_jedec(chipaddr dst);
void data_polling_jedec(chipaddr dst, uint8_t data);
void unprotect_jedec(chipaddr bios);
void protect_jedec(chipaddr bios);
int write_byte_program_jedec(chipaddr bios, uint8_t *src,
			     chipaddr dst);
Uwe Hermann's avatar
Uwe Hermann committed
767 768 769
int probe_jedec(struct flashchip *flash);
int erase_chip_jedec(struct flashchip *flash);
int write_jedec(struct flashchip *flash, uint8_t *buf);
770 771 772 773
int erase_sector_jedec(chipaddr bios, unsigned int page);
int erase_block_jedec(chipaddr bios, unsigned int page);
int write_sector_jedec(chipaddr bios, uint8_t *src,
		       chipaddr dst, unsigned int page_size);
774

Peter Stuge's avatar
Peter Stuge committed
775 776 777 778 779
/* m29f002.c */
int erase_m29f002(struct flashchip *flash);
int write_m29f002t(struct flashchip *flash, uint8_t *buf);
int write_m29f002b(struct flashchip *flash, uint8_t *buf);

780
/* m29f400bt.c */
Uwe Hermann's avatar
Uwe Hermann committed
781 782
int probe_m29f400bt(struct flashchip *flash);
int erase_m29f400bt(struct flashchip *flash);
783 784
int block_erase_m29f400bt(chipaddr bios,
				 chipaddr dst);
Uwe Hermann's avatar
Uwe Hermann committed
785
int write_m29f400bt(struct flashchip *flash, uint8_t *buf);
Stefan Reinauer's avatar
Stefan Reinauer committed
786
int write_coreboot_m29f400bt(struct flashchip *flash, uint8_t *buf);
787 788 789 790 791
void toggle_ready_m29f400bt(chipaddr dst);
void data_polling_m29f400bt(chipaddr dst, uint8_t data);
void protect_m29f400bt(chipaddr bios);
void write_page_m29f400bt(chipaddr bios, uint8_t *src,
			  chipaddr dst, int page_size);
792 793

/* mx29f002.c */
Uwe Hermann's avatar
Uwe Hermann committed
794 795 796
int probe_29f002(struct flashchip *flash);
int erase_29f002(struct flashchip *flash);
int write_29f002(struct flashchip *flash, uint8_t *buf);
797

798 799 800 801
/* pm49fl00x.c */
int probe_49fl00x(struct flashchip *flash);
int erase_49fl00x(struct flashchip *flash);
int write_49fl00x(struct flashchip *flash, uint8_t *buf);
802 803

/* sharplhf00l04.c */
Uwe Hermann's avatar
Uwe Hermann committed
804 805 806
int probe_lhf00l04(struct flashchip *flash);
int erase_lhf00l04(struct flashchip *flash);
int write_lhf00l04(struct flashchip *flash, uint8_t *buf);
807 808 809
void toggle_ready_lhf00l04(chipaddr dst);
void data_polling_lhf00l04(chipaddr dst, uint8_t data);
void protect_lhf00l04(chipaddr bios);
810 811

/* sst28sf040.c */
Uwe Hermann's avatar
Uwe Hermann committed
812 813 814
int probe_28sf040(struct flashchip *flash);
int erase_28sf040(struct flashchip *flash);
int write_28sf040(struct flashchip *flash, uint8_t *buf);
815 816

/* sst39sf020.c */
Uwe Hermann's avatar
Uwe Hermann committed
817 818
int probe_39sf020(struct flashchip *flash);
int write_39sf020(struct flashchip *flash, uint8_t *buf);
819 820

/* sst49lf040.c */
Uwe Hermann's avatar
Uwe Hermann committed
821 822
int erase_49lf040(struct flashchip *flash);
int write_49lf040(struct flashchip *flash, uint8_t *buf);
823 824

/* sst49lfxxxc.c */
Uwe Hermann's avatar
Uwe Hermann committed
825 826 827
int probe_49lfxxxc(struct flashchip *flash);
int erase_49lfxxxc(struct flashchip *flash);
int write_49lfxxxc(struct flashchip *flash, uint8_t *buf);
828 829

/* sst_fwhub.c */
Uwe Hermann's avatar
Uwe Hermann committed
830 831 832
int probe_sst_fwhub(struct flashchip *flash);
int erase_sst_fwhub(struct flashchip *flash);
int write_sst_fwhub(struct flashchip *flash, uint8_t *buf);
833

834 835 836 837 838
/* w39v040c.c */
int probe_w39v040c(struct flashchip *flash);
int erase_w39v040c(struct flashchip *flash);
int write_w39v040c(struct flashchip *flash, uint8_t *buf);

839 840 841 842 843
/* w39V080fa.c */
int probe_winbond_fwhub(struct flashchip *flash);
int erase_winbond_fwhub(struct flashchip *flash);
int write_winbond_fwhub(struct flashchip *flash, uint8_t *buf);

844
/* w29ee011.c */
Uwe Hermann's avatar
Uwe Hermann committed
845
int probe_w29ee011(struct flashchip *flash);
846

847
/* w49f002u.c */
Uwe Hermann's avatar
Uwe Hermann committed
848
int write_49f002(struct flashchip *flash, uint8_t *buf);
849

Peter Stuge's avatar
Peter Stuge committed
850 851
/* wbsio_spi.c */
int wbsio_check_for_spi(const char *name);
Uwe Hermann's avatar
Uwe Hermann committed
852 853
int wbsio_spi_command(unsigned int writecnt, unsigned int readcnt,
		      const unsigned char *writearr, unsigned char *readarr);
Peter Stuge's avatar
Peter Stuge committed
854
int wbsio_spi_read(struct flashchip *flash, uint8_t *buf);
855
int wbsio_spi_write_1(struct flashchip *flash, uint8_t *buf);
Peter Stuge's avatar
Peter Stuge committed
856

857 858 859 860
/* stm50flw0x0x.c */
int probe_stm50flw0x0x(struct flashchip *flash);
int erase_stm50flw0x0x(struct flashchip *flash);
int write_stm50flw0x0x(struct flashchip *flash, uint8_t *buf);
861

862
#endif				/* !__FLASH_H__ */