blob: 1b1ceb41167193f13279a1d29aa17446c4886364 [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005 Fen Systems Ltd.
4 * Copyright 2006 Solarflare Communications Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#ifndef EFX_SPI_H
12#define EFX_SPI_H
13
14#include "net_driver.h"
15
16/**************************************************************************
17 *
18 * Basic SPI command set and bit definitions
19 *
20 *************************************************************************/
21
Ben Hutchings4a5b5042008-09-01 12:47:16 +010022#define SPI_WRSR 0x01 /* Write status register */
23#define SPI_WRITE 0x02 /* Write data to memory array */
24#define SPI_READ 0x03 /* Read data from memory array */
25#define SPI_WRDI 0x04 /* Reset write enable latch */
26#define SPI_RDSR 0x05 /* Read status register */
27#define SPI_WREN 0x06 /* Set write enable latch */
Ben Hutchingsf4150722008-11-04 20:34:28 +000028#define SPI_SST_EWSR 0x50 /* SST: Enable write to status register */
Ben Hutchings4a5b5042008-09-01 12:47:16 +010029
30#define SPI_STATUS_WPEN 0x80 /* Write-protect pin enabled */
31#define SPI_STATUS_BP2 0x10 /* Block protection bit 2 */
32#define SPI_STATUS_BP1 0x08 /* Block protection bit 1 */
33#define SPI_STATUS_BP0 0x04 /* Block protection bit 0 */
34#define SPI_STATUS_WEN 0x02 /* State of the write enable latch */
35#define SPI_STATUS_NRDY 0x01 /* Device busy flag */
36
37/**
38 * struct efx_spi_device - an Efx SPI (Serial Peripheral Interface) device
39 * @efx: The Efx controller that owns this device
Ben Hutchingsf4150722008-11-04 20:34:28 +000040 * @mtd: MTD state
Ben Hutchings4a5b5042008-09-01 12:47:16 +010041 * @device_id: Controller's id for the device
42 * @size: Size (in bytes)
43 * @addr_len: Number of address bytes in read/write commands
44 * @munge_address: Flag whether addresses should be munged.
45 * Some devices with 9-bit addresses (e.g. AT25040A EEPROM)
46 * use bit 3 of the command byte as address bit A8, rather
47 * than having a two-byte address. If this flag is set, then
48 * commands should be munged in this way.
Ben Hutchingsf4150722008-11-04 20:34:28 +000049 * @erase_command: Erase command (or 0 if sector erase not needed).
50 * @erase_size: Erase sector size (in bytes)
51 * Erase commands affect sectors with this size and alignment.
52 * This must be a power of two.
Ben Hutchings4a5b5042008-09-01 12:47:16 +010053 * @block_size: Write block size (in bytes).
54 * Write commands are limited to blocks with this size and alignment.
Ben Hutchings8ceee662008-04-27 12:55:59 +010055 */
Ben Hutchings4a5b5042008-09-01 12:47:16 +010056struct efx_spi_device {
57 struct efx_nic *efx;
Ben Hutchingsf4150722008-11-04 20:34:28 +000058#ifdef CONFIG_SFC_MTD
59 void *mtd;
60#endif
Ben Hutchings4a5b5042008-09-01 12:47:16 +010061 int device_id;
62 unsigned int size;
63 unsigned int addr_len;
64 unsigned int munge_address:1;
Ben Hutchingsf4150722008-11-04 20:34:28 +000065 u8 erase_command;
66 unsigned int erase_size;
Ben Hutchings4a5b5042008-09-01 12:47:16 +010067 unsigned int block_size;
68};
Ben Hutchings8ceee662008-04-27 12:55:59 +010069
Ben Hutchingsf4150722008-11-04 20:34:28 +000070int falcon_spi_cmd(const struct efx_spi_device *spi, unsigned int command,
Ben Hutchings23d30f02008-12-12 21:56:11 -080071 int address, const void* in, void *out, size_t len);
Ben Hutchingsbe4ea892008-12-12 21:33:50 -080072int falcon_spi_wait_write(const struct efx_spi_device *spi);
Ben Hutchings4a5b5042008-09-01 12:47:16 +010073int falcon_spi_read(const struct efx_spi_device *spi, loff_t start,
74 size_t len, size_t *retlen, u8 *buffer);
75int falcon_spi_write(const struct efx_spi_device *spi, loff_t start,
76 size_t len, size_t *retlen, const u8 *buffer);
Ben Hutchings8ceee662008-04-27 12:55:59 +010077
Ben Hutchings0a95f562008-11-04 20:33:11 +000078/*
79 * SFC4000 flash is partitioned into:
80 * 0-0x400 chip and board config (see falcon_hwdefs.h)
81 * 0x400-0x8000 unused (or may contain VPD if EEPROM not present)
82 * 0x8000-end boot code (mapped to PCI expansion ROM)
83 * SFC4000 small EEPROM (size < 0x400) is used for VPD only.
84 * SFC4000 large EEPROM (size >= 0x400) is partitioned into:
85 * 0-0x400 chip and board config
86 * configurable VPD
87 * 0x800-0x1800 boot config
88 * Aside from the chip and board config, all of these are optional and may
89 * be absent or truncated depending on the devices used.
90 */
91#define FALCON_NVCONFIG_END 0x400U
Ben Hutchingsf4150722008-11-04 20:34:28 +000092#define FALCON_FLASH_BOOTCODE_START 0x8000U
Ben Hutchings0a95f562008-11-04 20:33:11 +000093#define EFX_EEPROM_BOOTCONFIG_START 0x800U
94#define EFX_EEPROM_BOOTCONFIG_END 0x1800U
95
Ben Hutchings8ceee662008-04-27 12:55:59 +010096#endif /* EFX_SPI_H */