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