GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / eeprom_93cx6.h
blobc4627cbdb8e038e4f61187db301c13a6acc12742
1 /*
2 Copyright (C) 2004 - 2006 rt2x00 SourceForge Project
3 <http://rt2x00.serialmonkey.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 Module: eeprom_93cx6
23 Abstract: EEPROM reader datastructures for 93cx6 chipsets.
24 Supported chipsets: 93c46, 93c56 and 93c66.
28 * EEPROM operation defines.
30 #define PCI_EEPROM_WIDTH_93C46 6
31 #define PCI_EEPROM_WIDTH_93C56 8
32 #define PCI_EEPROM_WIDTH_93C66 8
33 #define PCI_EEPROM_WIDTH_93C86 8
34 #define PCI_EEPROM_WIDTH_OPCODE 3
35 #define PCI_EEPROM_WRITE_OPCODE 0x05
36 #define PCI_EEPROM_READ_OPCODE 0x06
37 #define PCI_EEPROM_EWDS_OPCODE 0x10
38 #define PCI_EEPROM_EWEN_OPCODE 0x13
40 /**
41 * struct eeprom_93cx6 - control structure for setting the commands
42 * for reading the eeprom data.
43 * @data: private pointer for the driver.
44 * @register_read(struct eeprom_93cx6 *eeprom): handler to
45 * read the eeprom register, this function should set all reg_* fields.
46 * @register_write(struct eeprom_93cx6 *eeprom): handler to
47 * write to the eeprom register by using all reg_* fields.
48 * @width: eeprom width, should be one of the PCI_EEPROM_WIDTH_* defines
49 * @reg_data_in: register field to indicate data input
50 * @reg_data_out: register field to indicate data output
51 * @reg_data_clock: register field to set the data clock
52 * @reg_chip_select: register field to set the chip select
54 * This structure is used for the communication between the driver
55 * and the eeprom_93cx6 handlers for reading the eeprom.
57 struct eeprom_93cx6 {
58 void *data;
60 void (*register_read)(struct eeprom_93cx6 *eeprom);
61 void (*register_write)(struct eeprom_93cx6 *eeprom);
63 int width;
65 char reg_data_in;
66 char reg_data_out;
67 char reg_data_clock;
68 char reg_chip_select;
71 extern void eeprom_93cx6_read(struct eeprom_93cx6 *eeprom,
72 const u8 word, u16 *data);
73 extern void eeprom_93cx6_multiread(struct eeprom_93cx6 *eeprom,
74 const u8 word, __le16 *data, const u16 words);