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) |
Marek Vasut | 8a5c6f1 | 2020-07-08 06:50:41 +0200 | [diff] [blame] | 77 | #define phys_to_bus(dev, a) (a) |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 78 | #else |
Marek Vasut | 8a5c6f1 | 2020-07-08 06:50:41 +0200 | [diff] [blame] | 79 | #define phys_to_bus(dev, a) pci_phys_to_mem((dev), (a)) |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 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 | |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 97 | struct dc2114x_priv { |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 98 | struct de4x5_desc rx_ring[NUM_RX_DESC] __aligned(32); |
| 99 | struct de4x5_desc tx_ring[NUM_TX_DESC] __aligned(32); |
| 100 | int rx_new; /* RX descriptor ring pointer */ |
| 101 | int tx_new; /* TX descriptor ring pointer */ |
| 102 | char rx_ring_size; |
| 103 | char tx_ring_size; |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 104 | struct eth_device dev; |
Marek Vasut | 8a5c6f1 | 2020-07-08 06:50:41 +0200 | [diff] [blame] | 105 | pci_dev_t devno; |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 106 | char *name; |
| 107 | void __iomem *iobase; |
| 108 | u8 *enetaddr; |
| 109 | }; |
| 110 | |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 111 | /* RX and TX descriptor ring */ |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 112 | static u32 dc2114x_inl(struct dc2114x_priv *priv, u32 addr) |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 113 | { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 114 | return le32_to_cpu(readl(priv->iobase + addr)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 115 | } |
| 116 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 117 | static void dc2114x_outl(struct dc2114x_priv *priv, u32 command, u32 addr) |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 118 | { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 119 | writel(cpu_to_le32(command), priv->iobase + addr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 120 | } |
| 121 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 122 | static void reset_de4x5(struct dc2114x_priv *priv) |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 123 | { |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 124 | u32 i; |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 125 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 126 | i = dc2114x_inl(priv, DE4X5_BMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 127 | mdelay(1); |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 128 | dc2114x_outl(priv, i | BMR_SWR, DE4X5_BMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 129 | mdelay(1); |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 130 | dc2114x_outl(priv, i, DE4X5_BMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 131 | mdelay(1); |
| 132 | |
| 133 | for (i = 0; i < 5; i++) { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 134 | dc2114x_inl(priv, DE4X5_BMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 135 | mdelay(10); |
| 136 | } |
| 137 | |
| 138 | mdelay(1); |
| 139 | } |
| 140 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 141 | static void start_de4x5(struct dc2114x_priv *priv) |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 142 | { |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 143 | u32 omr; |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 144 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 145 | omr = dc2114x_inl(priv, DE4X5_OMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 146 | omr |= OMR_ST | OMR_SR; |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 147 | dc2114x_outl(priv, omr, DE4X5_OMR); /* Enable the TX and/or RX */ |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 148 | } |
| 149 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 150 | static void stop_de4x5(struct dc2114x_priv *priv) |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 151 | { |
Marek Vasut | 3b7b9e2 | 2020-04-19 03:40:03 +0200 | [diff] [blame] | 152 | u32 omr; |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 153 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 154 | omr = dc2114x_inl(priv, DE4X5_OMR); |
Marek Vasut | 04da061 | 2020-04-19 03:36:46 +0200 | [diff] [blame] | 155 | omr &= ~(OMR_ST | OMR_SR); |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 156 | dc2114x_outl(priv, omr, DE4X5_OMR); /* Disable the TX and/or RX */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 157 | } |
| 158 | |
Marek Vasut | 171f5e5 | 2020-04-18 01:56:51 +0200 | [diff] [blame] | 159 | /* SROM Read and write routines. */ |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 160 | static void sendto_srom(struct dc2114x_priv *priv, u_int command, u_long addr) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 161 | { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 162 | dc2114x_outl(priv, command, addr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 163 | udelay(1); |
| 164 | } |
| 165 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 166 | static int getfrom_srom(struct dc2114x_priv *priv, u_long addr) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 167 | { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 168 | u32 tmp = dc2114x_inl(priv, addr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 169 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 170 | udelay(1); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 171 | return tmp; |
| 172 | } |
| 173 | |
| 174 | /* Note: this routine returns extra data bits for size detection. */ |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 175 | static int do_read_eeprom(struct dc2114x_priv *priv, u_long ioaddr, int location, |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 176 | int addr_len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 177 | { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 178 | int read_cmd = location | (SROM_READ_CMD << addr_len); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 179 | unsigned int retval = 0; |
| 180 | int i; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 181 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 182 | sendto_srom(priv, SROM_RD | SROM_SR, ioaddr); |
| 183 | sendto_srom(priv, SROM_RD | SROM_SR | DT_CS, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 184 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 185 | debug_cond(SROM_DLEVEL >= 1, " EEPROM read at %d ", location); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 186 | |
| 187 | /* Shift the read command bits out. */ |
| 188 | for (i = 4 + addr_len; i >= 0; i--) { |
| 189 | short dataval = (read_cmd & (1 << i)) ? EE_DATA_WRITE : 0; |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 190 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 191 | sendto_srom(priv, SROM_RD | SROM_SR | DT_CS | dataval, |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 192 | ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 193 | udelay(10); |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 194 | sendto_srom(priv, SROM_RD | SROM_SR | DT_CS | dataval | DT_CLK, |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 195 | ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 196 | udelay(10); |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 197 | debug_cond(SROM_DLEVEL >= 2, "%X", |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 198 | getfrom_srom(priv, ioaddr) & 15); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 199 | retval = (retval << 1) | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 200 | !!(getfrom_srom(priv, ioaddr) & EE_DATA_READ); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 201 | } |
| 202 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 203 | sendto_srom(priv, SROM_RD | SROM_SR | DT_CS, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 204 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 205 | debug_cond(SROM_DLEVEL >= 2, " :%X:", getfrom_srom(priv, ioaddr) & 15); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 206 | |
| 207 | for (i = 16; i > 0; i--) { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 208 | sendto_srom(priv, SROM_RD | SROM_SR | DT_CS | DT_CLK, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 209 | udelay(10); |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 210 | debug_cond(SROM_DLEVEL >= 2, "%X", |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 211 | getfrom_srom(priv, ioaddr) & 15); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 212 | retval = (retval << 1) | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 213 | !!(getfrom_srom(priv, ioaddr) & EE_DATA_READ); |
| 214 | sendto_srom(priv, SROM_RD | SROM_SR | DT_CS, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 215 | udelay(10); |
| 216 | } |
| 217 | |
| 218 | /* Terminate the EEPROM access. */ |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 219 | sendto_srom(priv, SROM_RD | SROM_SR, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 220 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 221 | debug_cond(SROM_DLEVEL >= 2, " EEPROM value at %d is %5.5x.\n", |
| 222 | location, retval); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 223 | |
| 224 | return retval; |
| 225 | } |
| 226 | |
Marek Vasut | 171f5e5 | 2020-04-18 01:56:51 +0200 | [diff] [blame] | 227 | /* |
| 228 | * This executes a generic EEPROM command, typically a write or write |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 229 | * enable. It returns the data output from the EEPROM, and thus may |
| 230 | * also be used for reads. |
| 231 | */ |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 232 | static int do_eeprom_cmd(struct dc2114x_priv *priv, u_long ioaddr, int cmd, |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 233 | int cmd_len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 234 | { |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 235 | unsigned int retval = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 236 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 237 | debug_cond(SROM_DLEVEL >= 1, " EEPROM op 0x%x: ", cmd); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 238 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 239 | sendto_srom(priv, SROM_RD | SROM_SR | DT_CS | DT_CLK, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 240 | |
| 241 | /* Shift the command bits out. */ |
| 242 | do { |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 243 | short dataval = (cmd & BIT(cmd_len)) ? EE_WRITE_1 : EE_WRITE_0; |
| 244 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 245 | sendto_srom(priv, dataval, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 246 | udelay(10); |
| 247 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 248 | debug_cond(SROM_DLEVEL >= 2, "%X", |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 249 | getfrom_srom(priv, ioaddr) & 15); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 250 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 251 | sendto_srom(priv, dataval | DT_CLK, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 252 | udelay(10); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 253 | retval = (retval << 1) | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 254 | !!(getfrom_srom(priv, ioaddr) & EE_DATA_READ); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 255 | } while (--cmd_len >= 0); |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 256 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 257 | sendto_srom(priv, SROM_RD | SROM_SR | DT_CS, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 258 | |
| 259 | /* Terminate the EEPROM access. */ |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 260 | sendto_srom(priv, SROM_RD | SROM_SR, ioaddr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 261 | |
Marek Vasut | c2abfca | 2020-04-19 04:05:44 +0200 | [diff] [blame] | 262 | debug_cond(SROM_DLEVEL >= 1, " EEPROM result is 0x%5.5x.\n", retval); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 263 | |
| 264 | return retval; |
| 265 | } |
| 266 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 267 | static int read_srom(struct dc2114x_priv *priv, u_long ioaddr, int index) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 268 | { |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 269 | int ee_addr_size; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 270 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 271 | ee_addr_size = (do_read_eeprom(priv, ioaddr, 0xff, 8) & BIT(18)) ? 8 : 6; |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 272 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 273 | return do_eeprom_cmd(priv, ioaddr, 0xffff | |
Marek Vasut | 2e5c2a1 | 2020-04-19 03:11:06 +0200 | [diff] [blame] | 274 | (((SROM_READ_CMD << ee_addr_size) | index) << 16), |
| 275 | 3 + ee_addr_size + 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 276 | } |
| 277 | |
Marek Vasut | bc4666a | 2020-07-08 07:20:14 +0200 | [diff] [blame^] | 278 | static void send_setup_frame(struct dc2114x_priv *priv) |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 279 | { |
| 280 | char setup_frame[SETUP_FRAME_LEN]; |
| 281 | char *pa = &setup_frame[0]; |
| 282 | int i; |
| 283 | |
| 284 | memset(pa, 0xff, SETUP_FRAME_LEN); |
| 285 | |
| 286 | for (i = 0; i < ETH_ALEN; i++) { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 287 | *(pa + (i & 1)) = priv->enetaddr[i]; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 288 | if (i & 0x01) |
| 289 | pa += 4; |
| 290 | } |
| 291 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 292 | for (i = 0; priv->tx_ring[priv->tx_new].status & cpu_to_le32(T_OWN); i++) { |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 293 | if (i < TOUT_LOOP) |
| 294 | continue; |
| 295 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 296 | printf("%s: tx error buffer not ready\n", priv->name); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 297 | return; |
| 298 | } |
| 299 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 300 | priv->tx_ring[priv->tx_new].buf = cpu_to_le32(phys_to_bus(priv->devno, |
Marek Vasut | 8a5c6f1 | 2020-07-08 06:50:41 +0200 | [diff] [blame] | 301 | (u32)&setup_frame[0])); |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 302 | priv->tx_ring[priv->tx_new].des1 = cpu_to_le32(TD_TER | TD_SET | SETUP_FRAME_LEN); |
| 303 | priv->tx_ring[priv->tx_new].status = cpu_to_le32(T_OWN); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 304 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 305 | dc2114x_outl(priv, POLL_DEMAND, DE4X5_TPD); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 306 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 307 | for (i = 0; priv->tx_ring[priv->tx_new].status & cpu_to_le32(T_OWN); i++) { |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 308 | if (i < TOUT_LOOP) |
| 309 | continue; |
| 310 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 311 | printf("%s: tx buffer not ready\n", priv->name); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 312 | return; |
| 313 | } |
| 314 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 315 | if (le32_to_cpu(priv->tx_ring[priv->tx_new].status) != 0x7FFFFFFF) { |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 316 | printf("TX error status2 = 0x%08X\n", |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 317 | le32_to_cpu(priv->tx_ring[priv->tx_new].status)); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 318 | } |
| 319 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 320 | priv->tx_new = (priv->tx_new + 1) % NUM_TX_DESC; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 321 | } |
| 322 | |
Marek Vasut | bc4666a | 2020-07-08 07:20:14 +0200 | [diff] [blame^] | 323 | static int dc21x4x_send_common(struct dc2114x_priv *priv, void *packet, int length) |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 324 | { |
| 325 | int status = -1; |
| 326 | int i; |
| 327 | |
| 328 | if (length <= 0) { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 329 | printf("%s: bad packet size: %d\n", priv->name, length); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 330 | goto done; |
| 331 | } |
| 332 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 333 | for (i = 0; priv->tx_ring[priv->tx_new].status & cpu_to_le32(T_OWN); i++) { |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 334 | if (i < TOUT_LOOP) |
| 335 | continue; |
| 336 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 337 | printf("%s: tx error buffer not ready\n", priv->name); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 338 | goto done; |
| 339 | } |
| 340 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 341 | priv->tx_ring[priv->tx_new].buf = cpu_to_le32(phys_to_bus(priv->devno, |
Marek Vasut | 8a5c6f1 | 2020-07-08 06:50:41 +0200 | [diff] [blame] | 342 | (u32)packet)); |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 343 | priv->tx_ring[priv->tx_new].des1 = cpu_to_le32(TD_TER | TD_LS | TD_FS | length); |
| 344 | priv->tx_ring[priv->tx_new].status = cpu_to_le32(T_OWN); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 345 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 346 | dc2114x_outl(priv, POLL_DEMAND, DE4X5_TPD); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 347 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 348 | for (i = 0; priv->tx_ring[priv->tx_new].status & cpu_to_le32(T_OWN); i++) { |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 349 | if (i < TOUT_LOOP) |
| 350 | continue; |
| 351 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 352 | printf(".%s: tx buffer not ready\n", priv->name); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 353 | goto done; |
| 354 | } |
| 355 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 356 | if (le32_to_cpu(priv->tx_ring[priv->tx_new].status) & TD_ES) { |
| 357 | priv->tx_ring[priv->tx_new].status = 0x0; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 358 | goto done; |
| 359 | } |
| 360 | |
| 361 | status = length; |
| 362 | |
| 363 | done: |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 364 | priv->tx_new = (priv->tx_new + 1) % NUM_TX_DESC; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 365 | return status; |
| 366 | } |
| 367 | |
Marek Vasut | 05c4917 | 2020-07-08 07:12:58 +0200 | [diff] [blame] | 368 | static int dc21x4x_recv_check(struct dc2114x_priv *priv) |
| 369 | { |
| 370 | int length = 0; |
| 371 | u32 status; |
| 372 | |
| 373 | status = le32_to_cpu(priv->rx_ring[priv->rx_new].status); |
| 374 | |
| 375 | if (status & R_OWN) |
| 376 | return 0; |
| 377 | |
| 378 | if (status & RD_LS) { |
| 379 | /* Valid frame status. */ |
| 380 | if (status & RD_ES) { |
| 381 | /* There was an error. */ |
| 382 | printf("RX error status = 0x%08X\n", status); |
| 383 | return -EINVAL; |
| 384 | } else { |
| 385 | /* A valid frame received. */ |
| 386 | length = (le32_to_cpu(priv->rx_ring[priv->rx_new].status) |
| 387 | >> 16); |
| 388 | |
| 389 | return length; |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | return -EAGAIN; |
| 394 | } |
| 395 | |
Marek Vasut | bc4666a | 2020-07-08 07:20:14 +0200 | [diff] [blame^] | 396 | static int dc21x4x_init_common(struct dc2114x_priv *priv) |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 397 | { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 398 | int i; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 399 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 400 | reset_de4x5(priv); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 401 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 402 | if (dc2114x_inl(priv, DE4X5_STS) & (STS_TS | STS_RS)) { |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 403 | printf("Error: Cannot reset ethernet controller.\n"); |
| 404 | return -1; |
| 405 | } |
| 406 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 407 | dc2114x_outl(priv, OMR_SDP | OMR_PS | OMR_PM, DE4X5_OMR); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 408 | |
| 409 | for (i = 0; i < NUM_RX_DESC; i++) { |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 410 | priv->rx_ring[i].status = cpu_to_le32(R_OWN); |
| 411 | priv->rx_ring[i].des1 = cpu_to_le32(RX_BUFF_SZ); |
| 412 | priv->rx_ring[i].buf = cpu_to_le32(phys_to_bus(priv->devno, |
Marek Vasut | 8a5c6f1 | 2020-07-08 06:50:41 +0200 | [diff] [blame] | 413 | (u32)net_rx_packets[i])); |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 414 | priv->rx_ring[i].next = 0; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | for (i = 0; i < NUM_TX_DESC; i++) { |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 418 | priv->tx_ring[i].status = 0; |
| 419 | priv->tx_ring[i].des1 = 0; |
| 420 | priv->tx_ring[i].buf = 0; |
| 421 | priv->tx_ring[i].next = 0; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 422 | } |
| 423 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 424 | priv->rx_ring_size = NUM_RX_DESC; |
| 425 | priv->tx_ring_size = NUM_TX_DESC; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 426 | |
| 427 | /* Write the end of list marker to the descriptor lists. */ |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 428 | priv->rx_ring[priv->rx_ring_size - 1].des1 |= cpu_to_le32(RD_RER); |
| 429 | priv->tx_ring[priv->tx_ring_size - 1].des1 |= cpu_to_le32(TD_TER); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 430 | |
| 431 | /* Tell the adapter where the TX/RX rings are located. */ |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 432 | dc2114x_outl(priv, phys_to_bus(priv->devno, (u32)&priv->rx_ring), |
Marek Vasut | 8a5c6f1 | 2020-07-08 06:50:41 +0200 | [diff] [blame] | 433 | DE4X5_RRBA); |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 434 | dc2114x_outl(priv, phys_to_bus(priv->devno, (u32)&priv->tx_ring), |
Marek Vasut | 8a5c6f1 | 2020-07-08 06:50:41 +0200 | [diff] [blame] | 435 | DE4X5_TRBA); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 436 | |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 437 | start_de4x5(priv); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 438 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 439 | priv->tx_new = 0; |
| 440 | priv->rx_new = 0; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 441 | |
Marek Vasut | bc4666a | 2020-07-08 07:20:14 +0200 | [diff] [blame^] | 442 | send_setup_frame(priv); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 443 | |
| 444 | return 0; |
| 445 | } |
| 446 | |
Marek Vasut | bc4666a | 2020-07-08 07:20:14 +0200 | [diff] [blame^] | 447 | static void dc21x4x_halt_common(struct dc2114x_priv *priv) |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 448 | { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 449 | stop_de4x5(priv); |
| 450 | dc2114x_outl(priv, 0, DE4X5_SICR); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 451 | } |
| 452 | |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 453 | static void read_hw_addr(struct dc2114x_priv *priv) |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 454 | { |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 455 | u_short tmp, *p = (u_short *)(&priv->enetaddr[0]); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 456 | int i, j = 0; |
| 457 | |
| 458 | for (i = 0; i < (ETH_ALEN >> 1); i++) { |
Marek Vasut | fcd6217 | 2020-07-08 06:46:09 +0200 | [diff] [blame] | 459 | tmp = read_srom(priv, DE4X5_APROM, (SROM_HWADD >> 1) + i); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 460 | *p = le16_to_cpu(tmp); |
| 461 | j += *p++; |
| 462 | } |
| 463 | |
| 464 | if (!j || j == 0x2fffd) { |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 465 | memset(priv->enetaddr, 0, ETH_ALEN); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 466 | debug("Warning: can't read HW address from SROM.\n"); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 467 | } |
| 468 | } |
| 469 | |
| 470 | static struct pci_device_id supported[] = { |
Marek Vasut | 75e375b | 2020-06-20 17:36:42 +0200 | [diff] [blame] | 471 | { PCI_DEVICE(PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_TULIP_FAST) }, |
| 472 | { PCI_DEVICE(PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_21142) }, |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 473 | { } |
| 474 | }; |
| 475 | |
Marek Vasut | bc4666a | 2020-07-08 07:20:14 +0200 | [diff] [blame^] | 476 | static int dc21x4x_init(struct eth_device *dev, struct bd_info *bis) |
| 477 | { |
| 478 | struct dc2114x_priv *priv = |
| 479 | container_of(dev, struct dc2114x_priv, dev); |
| 480 | |
| 481 | /* Ensure we're not sleeping. */ |
| 482 | pci_write_config_byte(priv->devno, PCI_CFDA_PSM, WAKEUP); |
| 483 | |
| 484 | return dc21x4x_init_common(priv); |
| 485 | } |
| 486 | |
| 487 | static void dc21x4x_halt(struct eth_device *dev) |
| 488 | { |
| 489 | struct dc2114x_priv *priv = |
| 490 | container_of(dev, struct dc2114x_priv, dev); |
| 491 | |
| 492 | dc21x4x_halt_common(priv); |
| 493 | |
| 494 | pci_write_config_byte(priv->devno, PCI_CFDA_PSM, SLEEP); |
| 495 | } |
| 496 | |
| 497 | static int dc21x4x_send(struct eth_device *dev, void *packet, int length) |
| 498 | { |
| 499 | struct dc2114x_priv *priv = |
| 500 | container_of(dev, struct dc2114x_priv, dev); |
| 501 | |
| 502 | return dc21x4x_send_common(priv, packet, length); |
| 503 | } |
| 504 | |
| 505 | static int dc21x4x_recv(struct eth_device *dev) |
| 506 | { |
| 507 | struct dc2114x_priv *priv = |
| 508 | container_of(dev, struct dc2114x_priv, dev); |
| 509 | int length = 0; |
| 510 | int ret; |
| 511 | |
| 512 | while (true) { |
| 513 | ret = dc21x4x_recv_check(priv); |
| 514 | if (!ret) |
| 515 | break; |
| 516 | |
| 517 | if (ret > 0) { |
| 518 | length = ret; |
| 519 | /* Pass the packet up to the protocol layers */ |
| 520 | net_process_received_packet |
| 521 | (net_rx_packets[priv->rx_new], length - 4); |
| 522 | } |
| 523 | |
| 524 | /* |
| 525 | * Change buffer ownership for this frame, |
| 526 | * back to the adapter. |
| 527 | */ |
| 528 | if (ret != -EAGAIN) |
| 529 | priv->rx_ring[priv->rx_new].status = cpu_to_le32(R_OWN); |
| 530 | |
| 531 | /* Update entry information. */ |
| 532 | priv->rx_new = (priv->rx_new + 1) % priv->rx_ring_size; |
| 533 | } |
| 534 | |
| 535 | return length; |
| 536 | } |
| 537 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 538 | int dc21x4x_initialize(struct bd_info *bis) |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 539 | { |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 540 | struct dc2114x_priv *priv; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 541 | struct eth_device *dev; |
| 542 | unsigned short status; |
| 543 | unsigned char timer; |
| 544 | unsigned int iobase; |
| 545 | int card_number = 0; |
| 546 | pci_dev_t devbusfn; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 547 | int idx = 0; |
| 548 | |
| 549 | while (1) { |
| 550 | devbusfn = pci_find_devices(supported, idx++); |
| 551 | if (devbusfn == -1) |
| 552 | break; |
| 553 | |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 554 | pci_read_config_word(devbusfn, PCI_COMMAND, &status); |
| 555 | status |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER; |
| 556 | pci_write_config_word(devbusfn, PCI_COMMAND, status); |
| 557 | |
| 558 | pci_read_config_word(devbusfn, PCI_COMMAND, &status); |
| 559 | if (!(status & PCI_COMMAND_MEMORY)) { |
| 560 | printf("Error: Can not enable MEMORY access.\n"); |
| 561 | continue; |
| 562 | } |
| 563 | |
| 564 | if (!(status & PCI_COMMAND_MASTER)) { |
| 565 | printf("Error: Can not enable Bus Mastering.\n"); |
| 566 | continue; |
| 567 | } |
| 568 | |
| 569 | /* Check the latency timer for values >= 0x60. */ |
| 570 | pci_read_config_byte(devbusfn, PCI_LATENCY_TIMER, &timer); |
| 571 | |
| 572 | if (timer < 0x60) { |
| 573 | pci_write_config_byte(devbusfn, PCI_LATENCY_TIMER, |
| 574 | 0x60); |
| 575 | } |
| 576 | |
| 577 | /* read BAR for memory space access */ |
| 578 | pci_read_config_dword(devbusfn, PCI_BASE_ADDRESS_1, &iobase); |
| 579 | iobase &= PCI_BASE_ADDRESS_MEM_MASK; |
| 580 | debug("dc21x4x: DEC 21142 PCI Device @0x%x\n", iobase); |
| 581 | |
Marek Vasut | 32d8d11 | 2020-07-08 07:01:32 +0200 | [diff] [blame] | 582 | priv = memalign(32, sizeof(*priv)); |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 583 | if (!priv) { |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 584 | printf("Can not allocalte memory of dc21x4x\n"); |
| 585 | break; |
| 586 | } |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 587 | memset(priv, 0, sizeof(*priv)); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 588 | |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 589 | dev = &priv->dev; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 590 | |
| 591 | sprintf(dev->name, "dc21x4x#%d", card_number); |
Marek Vasut | 8a5c6f1 | 2020-07-08 06:50:41 +0200 | [diff] [blame] | 592 | priv->devno = devbusfn; |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 593 | priv->name = dev->name; |
| 594 | priv->enetaddr = dev->enetaddr; |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 595 | |
| 596 | dev->iobase = pci_mem_to_phys(devbusfn, iobase); |
| 597 | dev->priv = (void *)devbusfn; |
| 598 | dev->init = dc21x4x_init; |
| 599 | dev->halt = dc21x4x_halt; |
| 600 | dev->send = dc21x4x_send; |
| 601 | dev->recv = dc21x4x_recv; |
| 602 | |
| 603 | /* Ensure we're not sleeping. */ |
| 604 | pci_write_config_byte(devbusfn, PCI_CFDA_PSM, WAKEUP); |
| 605 | |
| 606 | udelay(10 * 1000); |
| 607 | |
Marek Vasut | 2301a4b | 2020-07-08 06:42:07 +0200 | [diff] [blame] | 608 | read_hw_addr(priv); |
Marek Vasut | dbe9c0c | 2020-04-19 04:00:49 +0200 | [diff] [blame] | 609 | |
| 610 | eth_register(dev); |
| 611 | |
| 612 | card_number++; |
| 613 | } |
| 614 | |
| 615 | return card_number; |
| 616 | } |