Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 2 | |
| 3 | #include <common.h> |
Marek Vasut | 02b95a4 | 2020-07-08 06:31:54 +0200 | [diff] [blame^] | 4 | #include <asm/io.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 5 | #include <env.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 6 | #include <malloc.h> |
| 7 | #include <net.h> |
Ben Warren | 8ca0b3f | 2008-08-31 10:45:44 -0700 | [diff] [blame] | 8 | #include <netdev.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 9 | #include <pci.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 10 | #include <linux/bitops.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 11 | #include <linux/delay.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 12 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 13 | #define SROM_DLEVEL 0 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 14 | |
Marek Vasut | eb216f1 | 2020-04-19 03:09:26 +0200 | [diff] [blame] | 15 | /* PCI Registers. */ |
| 16 | #define PCI_CFDA_PSM 0x43 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 17 | |
| 18 | #define CFRV_RN 0x000000f0 /* Revision Number */ |
| 19 | |
| 20 | #define WAKEUP 0x00 /* Power Saving Wakeup */ |
| 21 | #define SLEEP 0x80 /* Power Saving Sleep Mode */ |
| 22 | |
Marek Vasut | eb216f1 | 2020-04-19 03:09:26 +0200 | [diff] [blame] | 23 | #define DC2114x_BRK 0x0020 /* CFRV break between DC21142 & DC21143 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 24 | |
Marek Vasut | eb216f1 | 2020-04-19 03:09:26 +0200 | [diff] [blame] | 25 | /* Ethernet chip registers. */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 26 | #define DE4X5_BMR 0x000 /* Bus Mode Register */ |
| 27 | #define DE4X5_TPD 0x008 /* Transmit Poll Demand Reg */ |
| 28 | #define DE4X5_RRBA 0x018 /* RX Ring Base Address Reg */ |
| 29 | #define DE4X5_TRBA 0x020 /* TX Ring Base Address Reg */ |
| 30 | #define DE4X5_STS 0x028 /* Status Register */ |
| 31 | #define DE4X5_OMR 0x030 /* Operation Mode Register */ |
| 32 | #define DE4X5_SICR 0x068 /* SIA Connectivity Register */ |
| 33 | #define DE4X5_APROM 0x048 /* Ethernet Address PROM */ |
| 34 | |
Marek Vasut | eb216f1 | 2020-04-19 03:09:26 +0200 | [diff] [blame] | 35 | /* Register bits. */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 36 | #define BMR_SWR 0x00000001 /* Software Reset */ |
| 37 | #define STS_TS 0x00700000 /* Transmit Process State */ |
| 38 | #define STS_RS 0x000e0000 /* Receive Process State */ |
| 39 | #define OMR_ST 0x00002000 /* Start/Stop Transmission Command */ |
| 40 | #define OMR_SR 0x00000002 /* Start/Stop Receive */ |
| 41 | #define OMR_PS 0x00040000 /* Port Select */ |
| 42 | #define OMR_SDP 0x02000000 /* SD Polarity - MUST BE ASSERTED */ |
| 43 | #define OMR_PM 0x00000080 /* Pass All Multicast */ |
| 44 | |
Marek Vasut | eb216f1 | 2020-04-19 03:09:26 +0200 | [diff] [blame] | 45 | /* Descriptor bits. */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 46 | #define R_OWN 0x80000000 /* Own Bit */ |
| 47 | #define RD_RER 0x02000000 /* Receive End Of Ring */ |
| 48 | #define RD_LS 0x00000100 /* Last Descriptor */ |
| 49 | #define RD_ES 0x00008000 /* Error Summary */ |
| 50 | #define TD_TER 0x02000000 /* Transmit End Of Ring */ |
| 51 | #define T_OWN 0x80000000 /* Own Bit */ |
| 52 | #define TD_LS 0x40000000 /* Last Segment */ |
| 53 | #define TD_FS 0x20000000 /* First Segment */ |
| 54 | #define TD_ES 0x00008000 /* Error Summary */ |
| 55 | #define TD_SET 0x08000000 /* Setup Packet */ |
| 56 | |
| 57 | /* The EEPROM commands include the alway-set leading bit. */ |
| 58 | #define SROM_WRITE_CMD 5 |
| 59 | #define SROM_READ_CMD 6 |
| 60 | #define SROM_ERASE_CMD 7 |
| 61 | |
Marek Vasut | eb216f1 | 2020-04-19 03:09:26 +0200 | [diff] [blame] | 62 | #define SROM_HWADD 0x0014 /* Hardware Address offset in SROM */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 63 | #define SROM_RD 0x00004000 /* Read from Boot ROM */ |
Marek Vasut | eb216f1 | 2020-04-19 03:09:26 +0200 | [diff] [blame] | 64 | #define EE_DATA_WRITE 0x04 /* EEPROM chip data in. */ |
| 65 | #define EE_WRITE_0 0x4801 |
| 66 | #define EE_WRITE_1 0x4805 |
| 67 | #define EE_DATA_READ 0x08 /* EEPROM chip data out. */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 68 | #define SROM_SR 0x00000800 /* Select Serial ROM when set */ |
| 69 | |
| 70 | #define DT_IN 0x00000004 /* Serial Data In */ |
| 71 | #define DT_CLK 0x00000002 /* Serial ROM Clock */ |
| 72 | #define DT_CS 0x00000001 /* Serial ROM Chip Select */ |
| 73 | |
| 74 | #define POLL_DEMAND 1 |
| 75 | |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 76 | #if defined(CONFIG_E500) |
| 77 | #define phys_to_bus(a) (a) |
| 78 | #else |
| 79 | #define phys_to_bus(a) pci_phys_to_mem((pci_dev_t)dev->priv, a) |
| 80 | #endif |
| 81 | |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 82 | #define NUM_RX_DESC PKTBUFSRX |
| 83 | #define NUM_TX_DESC 1 /* Number of TX descriptors */ |
| 84 | #define RX_BUFF_SZ PKTSIZE_ALIGN |
| 85 | |
| 86 | #define TOUT_LOOP 1000000 |
| 87 | |
| 88 | #define SETUP_FRAME_LEN 192 |
| 89 | |
| 90 | struct de4x5_desc { |
| 91 | volatile s32 status; |
| 92 | u32 des1; |
| 93 | u32 buf; |
| 94 | u32 next; |
| 95 | }; |
| 96 | |
| 97 | /* RX and TX descriptor ring */ |
| 98 | static struct de4x5_desc rx_ring[NUM_RX_DESC] __aligned(32); |
| 99 | static struct de4x5_desc tx_ring[NUM_TX_DESC] __aligned(32); |
| 100 | static int rx_new; /* RX descriptor ring pointer */ |
| 101 | static int tx_new; /* TX descriptor ring pointer */ |
| 102 | |
| 103 | static char rx_ring_size; |
| 104 | static char tx_ring_size; |
| 105 | |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 106 | static u32 dc2114x_inl(struct eth_device *dev, u32 addr) |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 107 | { |
Marek Vasut | 02b95a4 | 2020-07-08 06:31:54 +0200 | [diff] [blame^] | 108 | return le32_to_cpu(readl(dev->iobase + addr)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 111 | static void dc2114x_outl(struct eth_device *dev, u32 command, u32 addr) |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 112 | { |
Marek Vasut | 02b95a4 | 2020-07-08 06:31:54 +0200 | [diff] [blame^] | 113 | writel(cpu_to_le32(command), dev->iobase + addr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 116 | static void reset_de4x5(struct eth_device *dev) |
| 117 | { |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 118 | u32 i; |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 119 | |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 120 | i = dc2114x_inl(dev, DE4X5_BMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 121 | mdelay(1); |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 122 | dc2114x_outl(dev, i | BMR_SWR, DE4X5_BMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 123 | mdelay(1); |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 124 | dc2114x_outl(dev, i, DE4X5_BMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 125 | mdelay(1); |
| 126 | |
| 127 | for (i = 0; i < 5; i++) { |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 128 | dc2114x_inl(dev, DE4X5_BMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 129 | mdelay(10); |
| 130 | } |
| 131 | |
| 132 | mdelay(1); |
| 133 | } |
| 134 | |
| 135 | static void start_de4x5(struct eth_device *dev) |
| 136 | { |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 137 | u32 omr; |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 138 | |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 139 | omr = dc2114x_inl(dev, DE4X5_OMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 140 | omr |= OMR_ST | OMR_SR; |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 141 | dc2114x_outl(dev, omr, DE4X5_OMR); /* Enable the TX and/or RX */ |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | static void stop_de4x5(struct eth_device *dev) |
| 145 | { |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 146 | u32 omr; |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 147 | |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 148 | omr = dc2114x_inl(dev, DE4X5_OMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 149 | omr &= ~(OMR_ST | OMR_SR); |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 150 | dc2114x_outl(dev, omr, DE4X5_OMR); /* Disable the TX and/or RX */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 151 | } |
| 152 | |
Marek Vasut | 171f5e5 | 2020-04-18 01:56:51 +0200 | [diff] [blame] | 153 | /* SROM Read and write routines. */ |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 154 | static void sendto_srom(struct eth_device *dev, u_int command, u_long addr) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 155 | { |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 156 | dc2114x_outl(dev, command, addr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 157 | udelay(1); |
| 158 | } |
| 159 | |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 160 | static int getfrom_srom(struct eth_device *dev, u_long addr) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 161 | { |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 162 | u32 tmp = dc2114x_inl(dev, addr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 163 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 164 | udelay(1); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 165 | return tmp; |
| 166 | } |
| 167 | |
| 168 | /* Note: this routine returns extra data bits for size detection. */ |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 169 | static int do_read_eeprom(struct eth_device *dev, u_long ioaddr, int location, |
| 170 | int addr_len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 171 | { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 172 | int read_cmd = location | (SROM_READ_CMD << addr_len); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 173 | unsigned int retval = 0; |
| 174 | int i; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 175 | |
| 176 | sendto_srom(dev, SROM_RD | SROM_SR, ioaddr); |
| 177 | sendto_srom(dev, SROM_RD | SROM_SR | DT_CS, ioaddr); |
| 178 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 179 | debug_cond(SROM_DLEVEL >= 1, " EEPROM read at %d ", location); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 180 | |
| 181 | /* Shift the read command bits out. */ |
| 182 | for (i = 4 + addr_len; i >= 0; i--) { |
| 183 | short dataval = (read_cmd & (1 << i)) ? EE_DATA_WRITE : 0; |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 184 | |
| 185 | sendto_srom(dev, SROM_RD | SROM_SR | DT_CS | dataval, |
| 186 | ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 187 | udelay(10); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 188 | sendto_srom(dev, SROM_RD | SROM_SR | DT_CS | dataval | DT_CLK, |
| 189 | ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 190 | udelay(10); |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 191 | debug_cond(SROM_DLEVEL >= 2, "%X", |
| 192 | getfrom_srom(dev, ioaddr) & 15); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 193 | retval = (retval << 1) | |
| 194 | !!(getfrom_srom(dev, ioaddr) & EE_DATA_READ); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | sendto_srom(dev, SROM_RD | SROM_SR | DT_CS, ioaddr); |
| 198 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 199 | debug_cond(SROM_DLEVEL >= 2, " :%X:", getfrom_srom(dev, ioaddr) & 15); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 200 | |
| 201 | for (i = 16; i > 0; i--) { |
| 202 | sendto_srom(dev, SROM_RD | SROM_SR | DT_CS | DT_CLK, ioaddr); |
| 203 | udelay(10); |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 204 | debug_cond(SROM_DLEVEL >= 2, "%X", |
| 205 | getfrom_srom(dev, ioaddr) & 15); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 206 | retval = (retval << 1) | |
| 207 | !!(getfrom_srom(dev, ioaddr) & EE_DATA_READ); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 208 | sendto_srom(dev, SROM_RD | SROM_SR | DT_CS, ioaddr); |
| 209 | udelay(10); |
| 210 | } |
| 211 | |
| 212 | /* Terminate the EEPROM access. */ |
| 213 | sendto_srom(dev, SROM_RD | SROM_SR, ioaddr); |
| 214 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 215 | debug_cond(SROM_DLEVEL >= 2, " EEPROM value at %d is %5.5x.\n", |
| 216 | location, retval); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 217 | |
| 218 | return retval; |
| 219 | } |
| 220 | |
Marek Vasut | 171f5e5 | 2020-04-18 01:56:51 +0200 | [diff] [blame] | 221 | /* |
| 222 | * This executes a generic EEPROM command, typically a write or write |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 223 | * enable. It returns the data output from the EEPROM, and thus may |
| 224 | * also be used for reads. |
| 225 | */ |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 226 | static int do_eeprom_cmd(struct eth_device *dev, u_long ioaddr, int cmd, |
| 227 | int cmd_len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 228 | { |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 229 | unsigned int retval = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 230 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 231 | debug_cond(SROM_DLEVEL >= 1, " EEPROM op 0x%x: ", cmd); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 232 | |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 233 | sendto_srom(dev, SROM_RD | SROM_SR | DT_CS | DT_CLK, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 234 | |
| 235 | /* Shift the command bits out. */ |
| 236 | do { |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 237 | short dataval = (cmd & BIT(cmd_len)) ? EE_WRITE_1 : EE_WRITE_0; |
| 238 | |
| 239 | sendto_srom(dev, dataval, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 240 | udelay(10); |
| 241 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 242 | debug_cond(SROM_DLEVEL >= 2, "%X", |
| 243 | getfrom_srom(dev, ioaddr) & 15); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 244 | |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 245 | sendto_srom(dev, dataval | DT_CLK, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 246 | udelay(10); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 247 | retval = (retval << 1) | |
| 248 | !!(getfrom_srom(dev, ioaddr) & EE_DATA_READ); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 249 | } while (--cmd_len >= 0); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 250 | |
| 251 | sendto_srom(dev, SROM_RD | SROM_SR | DT_CS, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 252 | |
| 253 | /* Terminate the EEPROM access. */ |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 254 | sendto_srom(dev, SROM_RD | SROM_SR, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 255 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 256 | debug_cond(SROM_DLEVEL >= 1, " EEPROM result is 0x%5.5x.\n", retval); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 257 | |
| 258 | return retval; |
| 259 | } |
| 260 | |
| 261 | static int read_srom(struct eth_device *dev, u_long ioaddr, int index) |
| 262 | { |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 263 | int ee_addr_size; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 264 | |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 265 | ee_addr_size = (do_read_eeprom(dev, ioaddr, 0xff, 8) & BIT(18)) ? 8 : 6; |
| 266 | |
| 267 | return do_eeprom_cmd(dev, ioaddr, 0xffff | |
| 268 | (((SROM_READ_CMD << ee_addr_size) | index) << 16), |
| 269 | 3 + ee_addr_size + 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 270 | } |
| 271 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 272 | static void send_setup_frame(struct eth_device *dev, struct bd_info *bis) |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 273 | { |
| 274 | char setup_frame[SETUP_FRAME_LEN]; |
| 275 | char *pa = &setup_frame[0]; |
| 276 | int i; |
| 277 | |
| 278 | memset(pa, 0xff, SETUP_FRAME_LEN); |
| 279 | |
| 280 | for (i = 0; i < ETH_ALEN; i++) { |
| 281 | *(pa + (i & 1)) = dev->enetaddr[i]; |
| 282 | if (i & 0x01) |
| 283 | pa += 4; |
| 284 | } |
| 285 | |
| 286 | for (i = 0; tx_ring[tx_new].status & cpu_to_le32(T_OWN); i++) { |
| 287 | if (i < TOUT_LOOP) |
| 288 | continue; |
| 289 | |
| 290 | printf("%s: tx error buffer not ready\n", dev->name); |
| 291 | return; |
| 292 | } |
| 293 | |
| 294 | tx_ring[tx_new].buf = cpu_to_le32(phys_to_bus((u32)&setup_frame[0])); |
| 295 | tx_ring[tx_new].des1 = cpu_to_le32(TD_TER | TD_SET | SETUP_FRAME_LEN); |
| 296 | tx_ring[tx_new].status = cpu_to_le32(T_OWN); |
| 297 | |
| 298 | dc2114x_outl(dev, POLL_DEMAND, DE4X5_TPD); |
| 299 | |
| 300 | for (i = 0; tx_ring[tx_new].status & cpu_to_le32(T_OWN); i++) { |
| 301 | if (i < TOUT_LOOP) |
| 302 | continue; |
| 303 | |
| 304 | printf("%s: tx buffer not ready\n", dev->name); |
| 305 | return; |
| 306 | } |
| 307 | |
| 308 | if (le32_to_cpu(tx_ring[tx_new].status) != 0x7FFFFFFF) { |
| 309 | printf("TX error status2 = 0x%08X\n", |
| 310 | le32_to_cpu(tx_ring[tx_new].status)); |
| 311 | } |
| 312 | |
| 313 | tx_new = (tx_new + 1) % NUM_TX_DESC; |
| 314 | } |
| 315 | |
| 316 | static int dc21x4x_send(struct eth_device *dev, void *packet, int length) |
| 317 | { |
| 318 | int status = -1; |
| 319 | int i; |
| 320 | |
| 321 | if (length <= 0) { |
| 322 | printf("%s: bad packet size: %d\n", dev->name, length); |
| 323 | goto done; |
| 324 | } |
| 325 | |
| 326 | for (i = 0; tx_ring[tx_new].status & cpu_to_le32(T_OWN); i++) { |
| 327 | if (i < TOUT_LOOP) |
| 328 | continue; |
| 329 | |
| 330 | printf("%s: tx error buffer not ready\n", dev->name); |
| 331 | goto done; |
| 332 | } |
| 333 | |
| 334 | tx_ring[tx_new].buf = cpu_to_le32(phys_to_bus((u32)packet)); |
| 335 | tx_ring[tx_new].des1 = cpu_to_le32(TD_TER | TD_LS | TD_FS | length); |
| 336 | tx_ring[tx_new].status = cpu_to_le32(T_OWN); |
| 337 | |
| 338 | dc2114x_outl(dev, POLL_DEMAND, DE4X5_TPD); |
| 339 | |
| 340 | for (i = 0; tx_ring[tx_new].status & cpu_to_le32(T_OWN); i++) { |
| 341 | if (i < TOUT_LOOP) |
| 342 | continue; |
| 343 | |
| 344 | printf(".%s: tx buffer not ready\n", dev->name); |
| 345 | goto done; |
| 346 | } |
| 347 | |
| 348 | if (le32_to_cpu(tx_ring[tx_new].status) & TD_ES) { |
| 349 | tx_ring[tx_new].status = 0x0; |
| 350 | goto done; |
| 351 | } |
| 352 | |
| 353 | status = length; |
| 354 | |
| 355 | done: |
| 356 | tx_new = (tx_new + 1) % NUM_TX_DESC; |
| 357 | return status; |
| 358 | } |
| 359 | |
| 360 | static int dc21x4x_recv(struct eth_device *dev) |
| 361 | { |
| 362 | int length = 0; |
| 363 | u32 status; |
| 364 | |
| 365 | while (true) { |
| 366 | status = le32_to_cpu(rx_ring[rx_new].status); |
| 367 | |
| 368 | if (status & R_OWN) |
| 369 | break; |
| 370 | |
| 371 | if (status & RD_LS) { |
| 372 | /* Valid frame status. */ |
| 373 | if (status & RD_ES) { |
| 374 | /* There was an error. */ |
| 375 | printf("RX error status = 0x%08X\n", status); |
| 376 | } else { |
| 377 | /* A valid frame received. */ |
| 378 | length = (le32_to_cpu(rx_ring[rx_new].status) |
| 379 | >> 16); |
| 380 | |
| 381 | /* Pass the packet up to the protocol layers */ |
| 382 | net_process_received_packet |
| 383 | (net_rx_packets[rx_new], length - 4); |
| 384 | } |
| 385 | |
| 386 | /* |
| 387 | * Change buffer ownership for this frame, |
| 388 | * back to the adapter. |
| 389 | */ |
| 390 | rx_ring[rx_new].status = cpu_to_le32(R_OWN); |
| 391 | } |
| 392 | |
| 393 | /* Update entry information. */ |
| 394 | rx_new = (rx_new + 1) % rx_ring_size; |
| 395 | } |
| 396 | |
| 397 | return length; |
| 398 | } |
| 399 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 400 | static int dc21x4x_init(struct eth_device *dev, struct bd_info *bis) |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 401 | { |
| 402 | int i; |
| 403 | int devbusfn = (int)dev->priv; |
| 404 | |
| 405 | /* Ensure we're not sleeping. */ |
| 406 | pci_write_config_byte(devbusfn, PCI_CFDA_PSM, WAKEUP); |
| 407 | |
| 408 | reset_de4x5(dev); |
| 409 | |
| 410 | if (dc2114x_inl(dev, DE4X5_STS) & (STS_TS | STS_RS)) { |
| 411 | printf("Error: Cannot reset ethernet controller.\n"); |
| 412 | return -1; |
| 413 | } |
| 414 | |
| 415 | dc2114x_outl(dev, OMR_SDP | OMR_PS | OMR_PM, DE4X5_OMR); |
| 416 | |
| 417 | for (i = 0; i < NUM_RX_DESC; i++) { |
| 418 | rx_ring[i].status = cpu_to_le32(R_OWN); |
| 419 | rx_ring[i].des1 = cpu_to_le32(RX_BUFF_SZ); |
| 420 | rx_ring[i].buf = |
| 421 | cpu_to_le32(phys_to_bus((u32)net_rx_packets[i])); |
| 422 | rx_ring[i].next = 0; |
| 423 | } |
| 424 | |
| 425 | for (i = 0; i < NUM_TX_DESC; i++) { |
| 426 | tx_ring[i].status = 0; |
| 427 | tx_ring[i].des1 = 0; |
| 428 | tx_ring[i].buf = 0; |
| 429 | tx_ring[i].next = 0; |
| 430 | } |
| 431 | |
| 432 | rx_ring_size = NUM_RX_DESC; |
| 433 | tx_ring_size = NUM_TX_DESC; |
| 434 | |
| 435 | /* Write the end of list marker to the descriptor lists. */ |
| 436 | rx_ring[rx_ring_size - 1].des1 |= cpu_to_le32(RD_RER); |
| 437 | tx_ring[tx_ring_size - 1].des1 |= cpu_to_le32(TD_TER); |
| 438 | |
| 439 | /* Tell the adapter where the TX/RX rings are located. */ |
| 440 | dc2114x_outl(dev, phys_to_bus((u32)&rx_ring), DE4X5_RRBA); |
| 441 | dc2114x_outl(dev, phys_to_bus((u32)&tx_ring), DE4X5_TRBA); |
| 442 | |
| 443 | start_de4x5(dev); |
| 444 | |
| 445 | tx_new = 0; |
| 446 | rx_new = 0; |
| 447 | |
| 448 | send_setup_frame(dev, bis); |
| 449 | |
| 450 | return 0; |
| 451 | } |
| 452 | |
| 453 | static void dc21x4x_halt(struct eth_device *dev) |
| 454 | { |
| 455 | int devbusfn = (int)dev->priv; |
| 456 | |
| 457 | stop_de4x5(dev); |
| 458 | dc2114x_outl(dev, 0, DE4X5_SICR); |
| 459 | |
| 460 | pci_write_config_byte(devbusfn, PCI_CFDA_PSM, SLEEP); |
| 461 | } |
| 462 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 463 | static void read_hw_addr(struct eth_device *dev, struct bd_info *bis) |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 464 | { |
| 465 | u_short tmp, *p = (u_short *)(&dev->enetaddr[0]); |
| 466 | int i, j = 0; |
| 467 | |
| 468 | for (i = 0; i < (ETH_ALEN >> 1); i++) { |
| 469 | tmp = read_srom(dev, DE4X5_APROM, (SROM_HWADD >> 1) + i); |
| 470 | *p = le16_to_cpu(tmp); |
| 471 | j += *p++; |
| 472 | } |
| 473 | |
| 474 | if (!j || j == 0x2fffd) { |
| 475 | memset(dev->enetaddr, 0, ETH_ALEN); |
| 476 | debug("Warning: can't read HW address from SROM.\n"); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 477 | } |
| 478 | } |
| 479 | |
| 480 | static struct pci_device_id supported[] = { |
Marek Vasut | 75e375b | 2020-06-20 17:36:42 +0200 | [diff] [blame] | 481 | { PCI_DEVICE(PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_TULIP_FAST) }, |
| 482 | { PCI_DEVICE(PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_21142) }, |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 483 | { } |
| 484 | }; |
| 485 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 486 | int dc21x4x_initialize(struct bd_info *bis) |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 487 | { |
| 488 | struct eth_device *dev; |
| 489 | unsigned short status; |
| 490 | unsigned char timer; |
| 491 | unsigned int iobase; |
| 492 | int card_number = 0; |
| 493 | pci_dev_t devbusfn; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 494 | int idx = 0; |
| 495 | |
| 496 | while (1) { |
| 497 | devbusfn = pci_find_devices(supported, idx++); |
| 498 | if (devbusfn == -1) |
| 499 | break; |
| 500 | |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 501 | pci_read_config_word(devbusfn, PCI_COMMAND, &status); |
| 502 | status |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; |
| 503 | pci_write_config_word(devbusfn, PCI_COMMAND, status); |
| 504 | |
| 505 | pci_read_config_word(devbusfn, PCI_COMMAND, &status); |
| 506 | if (!(status & PCI_COMMAND_MEMORY)) { |
| 507 | printf("Error: Can not enable MEMORY access.\n"); |
| 508 | continue; |
| 509 | } |
| 510 | |
| 511 | if (!(status & PCI_COMMAND_MASTER)) { |
| 512 | printf("Error: Can not enable Bus Mastering.\n"); |
| 513 | continue; |
| 514 | } |
| 515 | |
| 516 | /* Check the latency timer for values >= 0x60. */ |
| 517 | pci_read_config_byte(devbusfn, PCI_LATENCY_TIMER, &timer); |
| 518 | |
| 519 | if (timer < 0x60) { |
| 520 | pci_write_config_byte(devbusfn, PCI_LATENCY_TIMER, |
| 521 | 0x60); |
| 522 | } |
| 523 | |
| 524 | /* read BAR for memory space access */ |
| 525 | pci_read_config_dword(devbusfn, PCI_BASE_ADDRESS_1, &iobase); |
| 526 | iobase &= PCI_BASE_ADDRESS_MEM_MASK; |
| 527 | debug("dc21x4x: DEC 21142 PCI Device @0x%x\n", iobase); |
| 528 | |
| 529 | dev = (struct eth_device *)malloc(sizeof(*dev)); |
| 530 | if (!dev) { |
| 531 | printf("Can not allocalte memory of dc21x4x\n"); |
| 532 | break; |
| 533 | } |
| 534 | |
| 535 | memset(dev, 0, sizeof(*dev)); |
| 536 | |
| 537 | sprintf(dev->name, "dc21x4x#%d", card_number); |
| 538 | |
| 539 | dev->iobase = pci_mem_to_phys(devbusfn, iobase); |
| 540 | dev->priv = (void *)devbusfn; |
| 541 | dev->init = dc21x4x_init; |
| 542 | dev->halt = dc21x4x_halt; |
| 543 | dev->send = dc21x4x_send; |
| 544 | dev->recv = dc21x4x_recv; |
| 545 | |
| 546 | /* Ensure we're not sleeping. */ |
| 547 | pci_write_config_byte(devbusfn, PCI_CFDA_PSM, WAKEUP); |
| 548 | |
| 549 | udelay(10 * 1000); |
| 550 | |
| 551 | read_hw_addr(dev, bis); |
| 552 | |
| 553 | eth_register(dev); |
| 554 | |
| 555 | card_number++; |
| 556 | } |
| 557 | |
| 558 | return card_number; |
| 559 | } |