Преглед на файлове

[realtek] Force EEPROM CS low before disabling EEPROM access mode

Some RTL8169 cards seem to drive the EEPROM CS line high (i.e. active)
when 9346CR.EEM is set to "normal operating mode", with the result
that the CS line is never deasserted.  The symptom of this is that the
first read from the EEPROM will work, while all subsequent reads will
return garbage data.

Reported-by: Thomas Miletich <thomas.miletich@gmail.com>
Debugged-by: Thomas Miletich <thomas.miletich@gmail.com>
Tested-by: Thomas Miletich <thomas.miletich@gmail.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown преди 11 години
родител
ревизия
70618161ad
променени са 2 файла, в които са добавени 32 реда и са изтрити 3 реда
  1. 29
    1
      src/drivers/net/realtek.c
  2. 3
    2
      src/drivers/net/realtek.h

+ 29
- 1
src/drivers/net/realtek.c Целия файл

@@ -60,9 +60,35 @@ static const uint8_t realtek_eeprom_bits[] = {
60 60
 	[SPI_BIT_SCLK]	= RTL_9346CR_EESK,
61 61
 	[SPI_BIT_MOSI]	= RTL_9346CR_EEDI,
62 62
 	[SPI_BIT_MISO]	= RTL_9346CR_EEDO,
63
-	[SPI_BIT_SS(0)]	= ( RTL_9346CR_EECS | RTL_9346CR_EEM1 ),
63
+	[SPI_BIT_SS(0)]	= RTL_9346CR_EECS,
64 64
 };
65 65
 
66
+/**
67
+ * Open bit-bashing interface
68
+ *
69
+ * @v basher		Bit-bashing interface
70
+ */
71
+static void realtek_spi_open_bit ( struct bit_basher *basher ) {
72
+	struct realtek_nic *rtl = container_of ( basher, struct realtek_nic,
73
+						 spibit.basher );
74
+
75
+	/* Enable EEPROM access */
76
+	writeb ( RTL_9346CR_EEM_EEPROM, rtl->regs + RTL_9346CR );
77
+}
78
+
79
+/**
80
+ * Close bit-bashing interface
81
+ *
82
+ * @v basher		Bit-bashing interface
83
+ */
84
+static void realtek_spi_close_bit ( struct bit_basher *basher ) {
85
+	struct realtek_nic *rtl = container_of ( basher, struct realtek_nic,
86
+						 spibit.basher );
87
+
88
+	/* Disable EEPROM access */
89
+	writeb ( RTL_9346CR_EEM_NORMAL, rtl->regs + RTL_9346CR );
90
+}
91
+
66 92
 /**
67 93
  * Read input bit
68 94
  *
@@ -108,6 +134,8 @@ static void realtek_spi_write_bit ( struct bit_basher *basher,
108 134
 
109 135
 /** SPI bit-bashing interface */
110 136
 static struct bit_basher_operations realtek_basher_ops = {
137
+	.open = realtek_spi_open_bit,
138
+	.close = realtek_spi_close_bit,
111 139
 	.read = realtek_spi_read_bit,
112 140
 	.write = realtek_spi_write_bit,
113 141
 };

+ 3
- 2
src/drivers/net/realtek.h Целия файл

@@ -158,8 +158,9 @@ enum realtek_legacy_status {
158 158
 
159 159
 /** 93C46 (93C56) Command Register (byte) */
160 160
 #define RTL_9346CR 0x50
161
-#define RTL_9346CR_EEM1		0x80	/**< Mode select bit 1 */
162
-#define RTL_9346CR_EEM0		0x40	/**< Mode select bit 0 */
161
+#define RTL_9346CR_EEM(x)	( (x) << 6 ) /**< Mode select */
162
+#define RTL_9346CR_EEM_EEPROM	RTL_9346CR_EEM ( 0x2 ) /**< EEPROM mode */
163
+#define RTL_9346CR_EEM_NORMAL	RTL_9346CR_EEM ( 0x0 ) /**< Normal mode */
163 164
 #define RTL_9346CR_EECS		0x08	/**< Chip select */
164 165
 #define RTL_9346CR_EESK		0x04	/**< Clock */
165 166
 #define RTL_9346CR_EEDI		0x02	/**< Data in */

Loading…
Отказ
Запис