1 /* Driver for Realtek PCI-Express card reader
4 * Copyright(c) 2009-2013 Realtek Semiconductor Corp. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, see <http://www.gnu.org/licenses/>.
20 * Wei WANG (wei_wang@realsil.com.cn)
21 * Micky Ching (micky_ching@realsil.com.cn)
24 #ifndef __REALTEK_RTSX_SPI_H
25 #define __REALTEK_RTSX_SPI_H
27 /* SPI operation error */
28 #define SPI_NO_ERR 0x00
29 #define SPI_HW_ERR 0x01
30 #define SPI_INVALID_COMMAND 0x02
31 #define SPI_READ_ERR 0x03
32 #define SPI_WRITE_ERR 0x04
33 #define SPI_ERASE_ERR 0x05
34 #define SPI_BUSY_ERR 0x06
36 /* Serial flash instruction */
38 #define SPI_FAST_READ 0x0B
43 #define SF_PAGE_LEN 256
45 #define BYTE_PROGRAM 0
47 #define PAGE_PROGRAM 2
52 int spi_erase_eeprom_chip(struct rtsx_chip
*chip
);
53 int spi_erase_eeprom_byte(struct rtsx_chip
*chip
, u16 addr
);
54 int spi_read_eeprom(struct rtsx_chip
*chip
, u16 addr
, u8
*val
);
55 int spi_write_eeprom(struct rtsx_chip
*chip
, u16 addr
, u8 val
);
56 int spi_get_status(struct scsi_cmnd
*srb
, struct rtsx_chip
*chip
);
57 int spi_set_parameter(struct scsi_cmnd
*srb
, struct rtsx_chip
*chip
);
58 int spi_read_flash_id(struct scsi_cmnd
*srb
, struct rtsx_chip
*chip
);
59 int spi_read_flash(struct scsi_cmnd
*srb
, struct rtsx_chip
*chip
);
60 int spi_write_flash(struct scsi_cmnd
*srb
, struct rtsx_chip
*chip
);
61 int spi_erase_flash(struct scsi_cmnd
*srb
, struct rtsx_chip
*chip
);
62 int spi_write_flash_status(struct scsi_cmnd
*srb
, struct rtsx_chip
*chip
);
65 #endif /* __REALTEK_RTSX_SPI_H */